rust/src/librustc_codegen_llvm
Michael Woerister 72df804d8e When doing linker-plugin based LTO, write LLVM bitcode obj-files
instead of embedding the bitcode into the regular object file.
2018-07-06 13:58:25 +02:00
..
2018-06-30 01:53:32 +03:00
2018-05-24 20:46:07 +02:00
2018-06-28 11:04:25 +02:00
2018-06-24 00:16:10 +01:00
2018-05-24 16:04:39 +02:00
2018-05-24 20:49:37 +02: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 guide.