rust/src/librustc_codegen_llvm
2020-08-18 21:06:45 -07:00
..
back Merge branch 'master' into feature/incorporate-tracing 2020-08-15 08:59:12 +05:30
coverageinfo Moved coverage counter injection from BasicBlock to Statement. 2020-08-18 21:06:45 -07:00
debuginfo rust_ast::ast => rustc_ast 2020-08-17 20:32:32 +00:00
llvm rust_ast::ast => rustc_ast 2020-08-17 20:32:32 +00:00
abi.rs [AVR] Correctly set the pointer address space when constructing pointers to functions 2020-07-22 05:16:22 +12:00
allocator.rs Add Option to Force Unwind Tables 2020-05-04 12:08:35 +01:00
asm.rs rust_ast::ast => rustc_ast 2020-08-17 20:32:32 +00:00
attributes.rs Generating the coverage map 2020-07-17 11:49:35 -07:00
base.rs Generating the coverage map 2020-07-17 11:49:35 -07:00
builder.rs Moved coverage counter injection from BasicBlock to Statement. 2020-08-18 21:06:45 -07:00
callee.rs Incorporate tracing crate 2020-08-06 16:56:56 +05:30
Cargo.toml Incorporate tracing crate 2020-08-06 16:56:56 +05:30
common.rs rust_ast::ast => rustc_ast 2020-08-17 20:32:32 +00:00
consts.rs Auto merge of #75187 - pawanbisht62:feature/incorporate-tracing, r=oli-obk 2020-08-17 16:40:10 +00:00
context.rs Auto merge of #72049 - mati865:mingw-lld, r=petrochenkov 2020-07-29 13:58:19 +00:00
declare.rs Incorporate tracing crate 2020-08-06 16:56:56 +05:30
intrinsic.rs Moved coverage counter injection from BasicBlock to Statement. 2020-08-18 21:06:45 -07:00
lib.rs Use for<'tcx> fn pointers in Providers, instead of having Providers<'tcx>. 2020-07-05 23:00:14 +03:00
llvm_util.rs Change registered "program name" for -Cllvm-args usage messages 2020-08-12 16:11:17 -07:00
metadata.rs Incorporate tracing crate 2020-08-06 16:56:56 +05:30
mono_item.rs Incorporate tracing crate 2020-08-06 16:56:56 +05:30
README.md Fix broken link in README 2020-03-30 10:09:51 -04:00
type_.rs rust_ast::ast => rustc_ast 2020-08-17 20:32:32 +00:00
type_of.rs Incorporate tracing crate 2020-08-06 16:56:56 +05:30
va_arg.rs Remove the assert on alignment check. 2020-07-21 15:24:26 +01:00
value.rs Format the world 2019-12-22 17:42:47 -05: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.