| Age | Commit message (Expand) | Author | Lines |
| 2019-12-03 | rustc_codegen_llvm: take an Instance in attributes::from_fn_attrs. | Eduard-Mihai Burtescu | -36/+24 |
| 2019-12-03 | rustc_codegen_llvm: rewrite debuginfo::get_function_signature to use FnAbi. | Eduard-Mihai Burtescu | -33/+12 |
| 2019-12-03 | rustc: take a PolyFnSig instead of an FnSig in FnAbi::of_fn_ptr. | Eduard-Mihai Burtescu | -8/+4 |
| 2019-12-03 | rustc: rename FnAbi::new to FnAbi::of_fn_ptr. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-12-03 | rustc: compute FnAbi's for virtual calls through FnAbi::of_instance. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-12-03 | rustc_codegen_ssa: use FnAbi::of_instance wherever possible. | Eduard-Mihai Burtescu | -23/+29 |
| 2019-12-03 | rustc_codegen_llvm: move NoReturn attribute to apply_attrs_llfn. | Eduard-Mihai Burtescu | -7/+5 |
| 2019-12-03 | rustc_codegen_ssa: take a FnAbi instead of a FnSig in declare_fn. | Eduard-Mihai Burtescu | -37/+42 |
| 2019-12-03 | rustc_codegen_ssa: remove define_fn and define_internal_fn. | Eduard-Mihai Burtescu | -23/+3 |
| 2019-12-03 | Change linker for x86_64-fortanix-unknown-sgx to rust-lld | Parth Sane | -2/+4 |
| 2019-12-02 | Update the minimum external LLVM to 7 | Josh Stone | -26/+5 |
| 2019-12-02 | Use Module::print() instead of a PrintModulePass | Victor Ding | -10/+6 |
| 2019-12-02 | Rollup merge of #66918 - makotokato:aarch32-crc-crypto, r=petrochenkov | Mazdak Farrokhzad | -0/+2 |
| 2019-12-01 | rustc_plugin: Remove support for plugins adding LLVM passes | Vadim Petrochenkov | -14/+0 |
| 2019-11-30 | Rollup merge of #66895 - Centril:rustc_feature, r=oli-obk | Mazdak Farrokhzad | -1/+2 |
| 2019-11-30 | Add crc and crypto to target feature whitelist on arm | Makoto Kato | -0/+2 |
| 2019-11-30 | move UnstableFeatures -> rustc_feature | Mazdak Farrokhzad | -1/+2 |
| 2019-11-29 | Use LLVMAddAnalysisPasses instead of Rust's wrapper | Victor Ding | -5/+6 |
| 2019-11-27 | Rollup merge of #66534 - immunant:multiple_global_decls, r=eddyb | Tyler Mandry | -3/+5 |
| 2019-11-27 | rustc: move debug info from LocalDecl and UpvarDecl into a dedicated VarDebug... | Eduard-Mihai Burtescu | -24/+82 |
| 2019-11-26 | Rollup merge of #66719 - Mark-Simulacrum:int-normalization, r=Centril | Tyler Mandry | -4/+4 |
| 2019-11-24 | Store ptr_width as u32 on Config | Mark Rousskov | -4/+4 |
| 2019-11-22 | Create sanitizer passes in a separate function | Tomasz Miąsko | -20/+26 |
| 2019-11-22 | Add support for tracking origins of uninitialized memory | Tomasz Miąsko | -2/+2 |
| 2019-11-22 | Add support for sanitizer recovery | Tomasz Miąsko | -2/+1 |
| 2019-11-22 | Move sanitizer passes creation from ssa to llvm | Tomasz Miąsko | -4/+30 |
| 2019-11-21 | Applied suggestions from code review. | Alexander Regueiro | -15/+15 |
| 2019-11-21 | Aggregation of drive-by cosmetic changes. | Alexander Regueiro | -136/+132 |
| 2019-11-21 | Rollup merge of #66515 - Centril:cheaper-inline-asm, r=oli-obk | Mazdak Farrokhzad | -1/+1 |
| 2019-11-21 | Rollup merge of #66468 - RalfJung:simd-cleanup, r=oli-obk | Mazdak Farrokhzad | -13/+14 |
| 2019-11-21 | reduce size of hir::ExprKind | Mazdak Farrokhzad | -1/+1 |
| 2019-11-18 | Allow different global references to the same name | Stephen Crane | -3/+5 |
| 2019-11-18 | Generate DWARF address ranges for faster lookups | Josh Stone | -0/+3 |
| 2019-11-16 | avoid some casts | Ralf Jung | -9/+6 |
| 2019-11-16 | make simd_size return a u64 | Ralf Jung | -9/+13 |
| 2019-11-14 | Auto merge of #66378 - rkruppe:revert-pr-65134, r=pnkfelix | bors | -2/+3 |
| 2019-11-13 | Revert "Auto merge of #65134 - davidtwco:issue-19834-improper-ctypes-in-exter... | Robin Kruppe | -2/+3 |
| 2019-11-12 | Rename in librustc_codegen_llvm. | Camille GILLOT | -2/+2 |
| 2019-11-10 | Merge hir::Mutability into ast::Mutability. | Camille GILLOT | -1/+1 |
| 2019-11-07 | rustc_target: inline abi::FloatTy into abi::Primitive. | Eduard-Mihai Burtescu | -8/+8 |
| 2019-11-07 | syntax: use distinct FloatTy from rustc_target. | Mazdak Farrokhzad | -6/+6 |
| 2019-11-06 | Auto merge of #65134 - davidtwco:issue-19834-improper-ctypes-in-extern-C-fn, ... | bors | -3/+2 |
| 2019-11-06 | Rollup merge of #66062 - smaeul:patch/pic-level, r=estebank | Mazdak Farrokhzad | -0/+5 |
| 2019-11-06 | Rollup merge of #65776 - nnethercote:rename-LocalInternedString-and-more, r=e... | Mazdak Farrokhzad | -4/+4 |
| 2019-11-05 | Rollup merge of #65953 - keystone-enclave:llvm_abiname, r=alexcrichton | Pietro Albini | -1/+3 |
| 2019-11-05 | codegen_llvm: remove unnecessary "extern C" | David Wood | -4/+1 |
| 2019-11-05 | improper_ctypes: `extern "C"` fns | David Wood | -0/+2 |
| 2019-11-05 | Auto merge of #66109 - pietroalbini:rollup-2npidna, r=pietroalbini | bors | -0/+1 |
| 2019-11-05 | Rollup merge of #65720 - icefoxen:LLVMgetInstructionCount, r=rkruppe | Pietro Albini | -0/+1 |
| 2019-11-05 | Auto merge of #65938 - eddyb:fn-abi-rename, r=oli-obk | bors | -37/+37 |