Files
wasmtime/cranelift/codegen
Benjamin Bouvier 47e5d6c83e [regalloc] Transform the program_input_abi function into a Context method;
It was implemented this way before to avoid borrow-checking issues,
where self would be both mutably borrowed (because of the solver) and
immutably borrowed (because of the ABI parameters list). This is worked
around by adding a local AbiParams struct which contains a summary of
the information that's needed by program_input_abi, allowing to retrieve
the ABI params within the method's body itself.
2019-09-03 14:08:37 +02:00
..
2019-08-30 23:22:48 -07:00

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