Files
wasmtime/cranelift/codegen
Andrew Brown 079fcafcb1 Expand x86 registers to include 32 XMM registers
The EVEX encoding format (e.g. in AVX-512) allows addressing 32 registers instead of 16. The FPR register class currently defines 16 registers, `%xmm0`-`%xmm15`; that class is kept as-is with this change. A larger class, FPR32, is added as a super-class of FPR using a larger bank of registers, `%xmm0`-`%xmm31`.
2020-03-06 10:53:22 -08:00
..
2020-02-24 15:10:08 -08:00
2019-12-07 09:47:43 -08:00

This crate contains the core Cranelift code generator. It translates code from an intermediate representation into executable machine code.