rust/src/librustc_codegen_llvm
Yuki Okushi a02aecba21
Rollup merge of #74623 - lcnr:polymorphize-functions, r=eddyb
polymorphize GlobalAlloc::Function

this sadly does not change #74614

r? @eddyb
2020-07-24 18:56:31 +09:00
..
back Avoid "whitelist" 2020-07-10 07:39:28 -04:00
coverageinfo Generating the coverage map 2020-07-17 11:49:35 -07:00
debuginfo mir: unused_generic_params query 2020-07-20 19:35:30 +01:00
llvm Generating the coverage map 2020-07-17 11:49:35 -07: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 Add initial asm!() support for hexagon 2020-06-16 08:58:13 -05: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 Rollup merge of #73655 - JamieCunliffe:jamie_va-args-c, r=nikic 2020-07-22 09:29:00 -07:00
callee.rs mir: unused_generic_params query 2020-07-20 19:35:30 +01:00
Cargo.toml Make things build again 2020-06-02 20:38:24 +03:00
common.rs polymorphize GlobalAlloc::Function 2020-07-22 17:02:58 +02:00
consts.rs [AVR] Correctly set the pointer address space when constructing pointers to functions 2020-07-22 05:16:22 +12:00
context.rs Improve codegen for unchecked float casts on wasm 2020-07-22 15:05:05 -07:00
declare.rs rustc -> rustc_middle part 3 (rustfmt) 2020-03-30 07:19:55 +02:00
intrinsic.rs Improve codegen for unchecked float casts on wasm 2020-07-22 15:05:05 -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 Avoid "whitelist" 2020-07-10 07:39:28 -04: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.