rust/compiler/rustc_codegen_llvm
Vadim Petrochenkov c83553da31 rustc_middle: Remove trait DefIdTree
This trait was a way to generalize over both `TyCtxt` and `Resolver`, but now `Resolver` has access to `TyCtxt`, so this trait is no longer necessary.
2023-03-02 23:46:44 +04:00
..
locales errors: generate typed identifiers in each crate 2023-02-22 09:15:53 +00:00
src rustc_middle: Remove trait DefIdTree 2023-03-02 23:46:44 +04:00
Cargo.toml record llvm cgu instruction stats 2023-02-25 16:18:56 +08:00
README.md mv compiler to compiler/ 2020-08-30 18:45:07 +03:00

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.