rust/src/librustc_codegen_llvm
Dan Robertson f8b6449f80
Fix style nits
Fix style nits discovered in reading code.
2019-02-18 22:22:19 +00:00
..
back Rollup merge of #58378 - alexcrichton:incremental-lto, r=michaelwoerister 2019-02-14 08:24:15 +01:00
debuginfo rustc: doc comments 2019-02-10 23:42:32 +00:00
llvm Rollup merge of #58378 - alexcrichton:incremental-lto, r=michaelwoerister 2019-02-14 08:24:15 +01:00
abi.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
allocator.rs Remove licenses 2018-12-25 21:08:33 -07:00
asm.rs Remove licenses 2018-12-25 21:08:33 -07:00
attributes.rs Resolve breakage 2019-01-25 19:20:38 +02:00
base.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
builder.rs Remove licenses 2018-12-25 21:08:33 -07:00
callee.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
Cargo.toml Add rustc_codegen_ssa to sysroot 2018-11-22 20:20:23 +01:00
common.rs Remove licenses 2018-12-25 21:08:33 -07:00
consts.rs Stabilize linker-plugin based LTO. 2019-02-12 15:10:29 +01:00
context.rs Rollup merge of #58308 - gnzlbg:context_insert_intr, r=eddyb 2019-02-14 02:41:24 +01:00
declare.rs Resolve breakage 2019-01-25 19:20:38 +02:00
diagnostics.rs Remove licenses 2018-12-25 21:08:33 -07:00
intrinsic.rs Fix style nits 2019-02-18 22:22:19 +00:00
lib.rs Rollup merge of #58074 - scottmcm:stabilize-sort_by_cached_key, r=SimonSapin 2019-02-16 14:11:28 +08:00
llvm_util.rs Whitelist the ARM v8 target-feature 2019-02-14 22:00:33 +01:00
metadata.rs Remove licenses 2018-12-25 21:08:33 -07:00
mono_item.rs Remove licenses 2018-12-25 21:08:33 -07:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
type_.rs Fix style nits 2019-02-18 22:22:19 +00:00
type_of.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
va_arg.rs Remove licenses 2018-12-25 21:08:33 -07:00
value.rs Use ptr::eq where applicable 2019-01-12 16:18:55 +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.