rust/compiler/rustc_codegen_llvm
Amanieu d'Antras e1c3f5e017 Add clobber-only register classes for asm!
These are needed to properly express a function call ABI using a clobber
list, even though we don't support passing actual values into/out of
these registers.
2021-07-10 17:29:00 +02:00
..
src Add clobber-only register classes for asm! 2021-07-10 17:29:00 +02:00
Cargo.toml Revert "Reduce the amount of untracked state in TyCtxt" 2021-06-01 09:05:22 +02:00
README.md

The codegen crate contains the code to convert from MIR into LLVM IR, and then from LLVM IR into machine code. In general it contains code that runs towards the end of the compilation process.

For more information about how codegen works, see the rustc dev guide.