rust/src/librustc_codegen_llvm
bors 5f88bea878 Auto merge of #75014 - Amanieu:fix_asm_reg, r=nagisa
Work around LLVM issues with explicit register in inline asm

Fixes #74658
2020-08-17 01:57:50 +00:00
..
back Remove CodeGenOptLevel::Other 2020-08-12 12:01:31 -04:00
coverageinfo Auto merge of #75416 - richkadel:llvm-coverage-map-gen-5.3, r=richkadel 2020-08-14 16:27:00 +00:00
debuginfo Auto merge of #74932 - nnethercote:rm-ast-session-globals, r=petrochenkov 2020-08-08 05:58:57 +00:00
llvm Auto merge of #75416 - richkadel:llvm-coverage-map-gen-5.3, r=richkadel 2020-08-14 16:27:00 +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 Work around LLVM issues with explicit register in inline asm 2020-08-03 10:43:09 +01: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 Don't try to use wasm intrinsics on vectors 2020-08-08 18:09:40 -07:00
callee.rs Auto merge of #72049 - mati865:mingw-lld, r=petrochenkov 2020-07-29 13:58:19 +00:00
Cargo.toml Move from log to tracing 2020-07-31 22:38:20 +02:00
common.rs polymorphize GlobalAlloc::Function 2020-07-22 17:02:58 +02:00
consts.rs merge as_local_hir_id with local_def_id_to_hir_id 2020-08-13 16:55:16 +02:00
context.rs Auto merge of #72049 - mati865:mingw-lld, r=petrochenkov 2020-07-29 13:58:19 +00:00
declare.rs rustc -> rustc_middle part 3 (rustfmt) 2020-03-30 07:19:55 +02:00
intrinsic.rs LLVM IR coverage encoding aligns closer to Clang's 2020-08-14 02:24:35 -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 rustc -> rustc_middle part 2 2020-03-30 07:16:56 +02:00
mono_item.rs mir: unused_generic_params query 2020-07-20 19:35:30 +01:00
README.md Fix broken link in README 2020-03-30 10:09:51 -04:00
type_.rs [AVR] Correctly set the pointer address space when constructing pointers to functions 2020-07-22 05:16:22 +12:00
type_of.rs [AVR] Ensure that function pointers stored within aggregates are annotated with the correct space 2020-07-22 05:16:26 +12:00
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.