| Age | Commit message (Expand) | Author | Lines |
| 2018-11-29 | Rename StaticMethods::static_ptrcast to ConstMethods::const_ptrcast | bjorn3 | -5/+5 |
| 2018-11-29 | Remove static_bitcast from cg_ssa | bjorn3 | -7/+8 |
| 2018-11-29 | Remove an unnecessary reference | bjorn3 | -1/+1 |
| 2018-11-29 | Move IntrinsicCallMethods::call_overflow_intrinsics to BuilderMethods::checke... | bjorn3 | -74/+74 |
| 2018-11-29 | Remove call_lifetime_intrinsic from cg_ssa | bjorn3 | -16/+18 |
| 2018-11-29 | Don't use llvm intrinsic names in cg_ssa | bjorn3 | -2/+91 |
| 2018-11-29 | Remove static_replace_all_uses and statics_to_rauw from cg_ssa | bjorn3 | -10/+7 |
| 2018-11-29 | Make ConstMethods and StaticMethods require BackendTypes instead of Backend | bjorn3 | -1/+1 |
| 2018-11-29 | Some refactorings | bjorn3 | -16/+16 |
| 2018-11-29 | Rename conversion util; remove duplicate util in librustc_codegen_llvm. | Corey Farwell | -23/+11 |
| 2018-11-29 | Rollup merge of #56257 - mark-i-m:rustc-guide-links, r=nikomatsakis | Guillaume Gomez | -1/+1 |
| 2018-11-29 | rustc_codegen_llvm: don't overalign loads of pair operands. | Eduard-Mihai Burtescu | -3/+9 |
| 2018-11-26 | libcore: Add va_list lang item and intrinsics | Dan Robertson | -13/+215 |
| 2018-11-26 | rustc-guide has moved | Mark Mansi | -1/+1 |
| 2018-11-25 | Rollup merge of #56075 - alexcrichton:wasm-producer-section, r=estebank | Pietro Albini | -0/+112 |
| 2018-11-24 | Introduce `TyKind::Placeholder` variant | scalexm | -0/+1 |
| 2018-11-24 | Rollup merge of #56154 - petrhosek:fuchsia-linker-args, r=alexcrichton | kennytm | -1/+9 |
| 2018-11-24 | Rollup merge of #56048 - bjorn3:cg_ssa_sysroot, r=eddyb | kennytm | -1/+0 |
| 2018-11-23 | Auto merge of #54071 - eddyb:alignsssss, r=oli-obk | bors | -77/+74 |
| 2018-11-22 | Add rustc_codegen_ssa to sysroot | bjorn3 | -1/+0 |
| 2018-11-22 | Pass additional linker flags when targeting Fuchsia | Petr Hosek | -1/+9 |
| 2018-11-22 | rustc_target: avoid using AbiAndPrefAlign where possible. | Eduard-Mihai Burtescu | -84/+84 |
| 2018-11-22 | rustc_target: separate out an individual Align from AbiAndPrefAlign. | Eduard-Mihai Burtescu | -42/+42 |
| 2018-11-22 | rustc_target: rename abi::Align to AbiAndPrefAlign. | Eduard-Mihai Burtescu | -39/+36 |
| 2018-11-21 | rustc: remove {FxHash,Node,DefId,HirId,ItemLocal}{Map,Set} "constructor" fns. | Eduard-Mihai Burtescu | -1/+1 |
| 2018-11-19 | Encode a custom "producers" section in wasm files | Alex Crichton | -0/+112 |
| 2018-11-16 | [eddyb] rustc_codegen_llvm: remove unused parametrization of `CodegenCx` and ... | Eduard-Mihai Burtescu | -18/+18 |
| 2018-11-16 | [eddyb] rustc_codegen_ssa: rename `interfaces` to `traits`. | Eduard-Mihai Burtescu | -23/+23 |
| 2018-11-16 | [eddyb] rustc_codegen_ssa: avoid a `Clone` bound on `TargetMachine`. | Eduard-Mihai Burtescu | -12/+1 |
| 2018-11-16 | [eddyb] rustc_codegen_llvm: remove unnecessary `'a` from `LlvmCodegenBackend`... | Eduard-Mihai Burtescu | -3/+3 |
| 2018-11-16 | [eddyb] rustc_codegen_ssa: handle LLVM unsafety correctly. | Eduard-Mihai Burtescu | -16/+21 |
| 2018-11-16 | Separating the back folder between backend-agnostic and LLVM-specific code | Denis Merigoux | -2351/+319 |
| 2018-11-16 | Added default impl for DerivedTypeMethods + empty impl for Cranelift BaseType... | Denis Merigoux | -120/+5 |
| 2018-11-16 | All Builder methods now take &mut self instead of &self | Denis Merigoux | -264/+276 |
| 2018-11-16 | Added some docs + start to &mut self builder methods | Denis Merigoux | -14/+14 |
| 2018-11-16 | Finished moving backend-agnostic code to rustc_codegen_ssa | Denis Merigoux | -134/+90 |
| 2018-11-16 | Great separation of librustc_codegen_llvm: librustc_codegen_ssa compiles | Denis Merigoux | -6656/+94 |
| 2018-11-16 | Moved DeclareMethods, MiscMethods and StaticMethods | Denis Merigoux | -159/+4 |
| 2018-11-16 | Beginning of moving all backend-agnostic code to rustc_codegen_ssa | Denis Merigoux | -102/+104 |
| 2018-11-16 | Moved Backend interface into rustc_codegen_utils | Denis Merigoux | -176/+16 |
| 2018-11-16 | [eddyb/rebase cleanup] move type_{needs_drop,is_sized,is_freeze} to rustc_cod... | Eduard-Mihai Burtescu | -3/+4 |
| 2018-11-16 | [eddyb/rebase cleanup] abstracted Funclet | Eduard-Mihai Burtescu | -86/+59 |
| 2018-11-16 | Moved common.rs enums | Denis Merigoux | -155/+95 |
| 2018-11-16 | Starting to move backend-agnostic code into codegen_utils | Denis Merigoux | -29/+22 |
| 2018-11-16 | Added compile codegen to backend trait | Denis Merigoux | -30/+18 |
| 2018-11-16 | Preparing the generalization of base:compile_coodegen_unit | Denis Merigoux | -57/+114 |
| 2018-11-16 | Renamed lifetimes for better understanding | Denis Merigoux | -14/+13 |
| 2018-11-16 | Generalized base:codegen_crate | Denis Merigoux | -66/+160 |
| 2018-11-16 | Move doc to trait declarations | Denis Merigoux | -111/+124 |
| 2018-11-16 | Generalized base:maybe_create_entry_wrapper | Denis Merigoux | -24/+39 |