rust/src/librustc_codegen_llvm
bors 4fec737f9a Auto merge of #58605 - nagisa:fix-the-metadata, r=michaelwoerister
Use informational target machine for metadata

Since there is nothing to optimise there...

Should fix #58323 but haven’t tested locally.

r? @michaelwoerister
2019-03-29 05:00:58 +00:00
..
back Use informational target machine for metadata 2019-03-27 04:03:42 +02:00
debuginfo Rollup merge of #58717 - hellow554:nonzero_parse, r=oli-obk 2019-03-28 13:35:29 +01:00
llvm make asm diagnostic instruction optional 2019-03-24 12:21:03 -04:00
abi.rs Rename variadic to c_variadic 2019-02-27 10:21:54 -05:00
allocator.rs librustc_codegen_llvm: deny(elided_lifetimes_in_paths) 2019-02-25 08:40:18 +01:00
asm.rs librustc_codegen_llvm => 2018 2019-02-18 03:58:58 +09:00
attributes.rs librustc_codegen_llvm: deny(elided_lifetimes_in_paths) 2019-02-25 08:40:18 +01:00
base.rs Use informational target machine for metadata 2019-03-27 04:03:42 +02:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
builder.rs librustc_codegen_llvm: deny(elided_lifetimes_in_paths) 2019-02-25 08:40:18 +01:00
callee.rs Use non_erasable_generics for codegen 2019-03-05 22:07:37 +00:00
Cargo.toml librustc_codegen_llvm => 2018 2019-02-18 03:58:58 +09:00
common.rs librustc_codegen_llvm => 2018 2019-02-18 03:58:58 +09:00
consts.rs HirIdification: replace NodeId method calls 2019-03-07 09:22:43 +01:00
context.rs Use informational target machine for metadata 2019-03-27 04:03:42 +02:00
declare.rs librustc_codegen_llvm => 2018 2019-02-18 03:58:58 +09:00
diagnostics.rs Remove licenses 2018-12-25 21:08:33 -07:00
intrinsic.rs rustc: tie the 'tcx between Print and PrintCx in ty::print. 2019-03-15 09:26:13 +02:00
lib.rs Use informational target machine for metadata 2019-03-27 04:03:42 +02:00
llvm_util.rs librustc_codegen_llvm => 2018 2019-02-18 03:58:58 +09:00
metadata.rs librustc_codegen_llvm => 2018 2019-02-18 03:58:58 +09:00
mono_item.rs Support defining C compatible variadic functions 2019-02-27 10:21:35 -05:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
type_.rs librustc_codegen_llvm: deny(elided_lifetimes_in_paths) 2019-02-25 08:40:18 +01:00
type_of.rs librustc_codegen_llvm => 2018 2019-02-18 03:58:58 +09:00
va_arg.rs Fix AArch64 typo in comments 2019-03-19 17:07:09 +00:00
value.rs librustc_codegen_llvm: deny(elided_lifetimes_in_paths) 2019-02-25 08:40:18 +01: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.