| Age | Commit message (Expand) | Author | Lines |
| 2018-11-24 | Introduce `TyKind::Placeholder` variant | scalexm | -0/+1 |
| 2018-11-22 | Rollup merge of #56106 - bjorn3:patch-1, r=alexcrichton | Guillaume Gomez | -6/+0 |
| 2018-11-21 | rustc: remove {FxHash,Node,DefId,HirId,ItemLocal}{Map,Set} "constructor" fns. | Eduard-Mihai Burtescu | -1/+1 |
| 2018-11-20 | Remove incorrect doc comment in rustc_mir::monomorphize::item | bjorn3 | -6/+0 |
| 2018-11-17 | Refactor local monomorphization logic to be easier to comprehend | Oliver Scherer | -22/+21 |
| 2018-11-17 | We're looking at the miri memory for constants instead of their initializers'... | Oliver Scherer | -4/+0 |
| 2018-11-06 | Rollup merge of #55601 - petrochenkov:featissue, r=pnkfelix | kennytm | -1/+1 |
| 2018-11-04 | Auto merge of #55349 - bjorn3:rustc_mir_collect_and_partition_mono_items, r=o... | bors | -7/+156 |
| 2018-11-03 | Update src/librustc_mir/monomorphize/partitioning.rs | Oliver S̶c̶h̶n̶e̶i̶d̶e̶r Scherer | -1/+1 |
| 2018-11-03 | Move collect_and_partition_mono_items to rustc_mir | bjorn3 | -7/+156 |
| 2018-11-03 | Rename `Binder::no_late_bound_regions` to `Binder::no_bound_vars` | scalexm | -1/+1 |
| 2018-11-03 | Shift both late bound regions and bound types | scalexm | -3/+3 |
| 2018-11-03 | Move `BoundTy` to `ty::TyKind` | scalexm | -0/+1 |
| 2018-11-02 | Remove deprecated unstable `#[panic_implementation]` | Vadim Petrochenkov | -1/+1 |
| 2018-10-27 | Auto merge of #54183 - qnighy:by-value-object-safety, r=oli-obk | bors | -1/+6 |
| 2018-10-25 | Report const eval error inside the query | Oliver Schneider | -18/+23 |
| 2018-10-24 | Resolve to Instance::VtableShim when necessary. | Masaki Hara | -1/+1 |
| 2018-10-24 | Add InstanceDef::VtableShim. | Masaki Hara | -0/+5 |
| 2018-10-19 | Prefer `Default::default` over `FxHash*::default` in struct constructors | Oliver Scherer | -1/+1 |
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -9/+9 |
| 2018-10-13 | Check the invariant for `principal` inside the method | Oliver Scherer | -22/+21 |
| 2018-10-10 | miri engine: basic support for pointer provenance tracking | Ralf Jung | -2/+2 |
| 2018-10-03 | Introduce `TyKind::UnnormalizedProjection` | scalexm | -0/+1 |
| 2018-09-30 | do not normalize non-scalar constants to a ConstValue::ScalarPair | Ralf Jung | -3/+3 |
| 2018-09-20 | Improve handling of type bounds in `bit_set.rs`. | Nicholas Nethercote | -1/+1 |
| 2018-09-18 | Merge indexed_set.rs into bitvec.rs, and rename it bit_set.rs. | Nicholas Nethercote | -3/+3 |
| 2018-09-11 | renamed is_nil to is_unit | kenta7777 | -1/+1 |
| 2018-09-11 | Revert "renamed is_nil to is_unit" | kenta7777 | -1/+1 |
| 2018-09-10 | renamed is_nil to is_unit | kenta7777 | -1/+1 |
| 2018-09-05 | Changing TyAnon -> TyOpaque and relevant functions | ms2300 | -1/+1 |
| 2018-08-31 | Support local ThinLTO with incremental compilation. | Michael Woerister | -1/+10 |
| 2018-08-31 | Make codegen not be a query (since it's not a real query anyway). | Michael Woerister | -1/+5 |
| 2018-08-29 | Auto merge of #53671 - RalfJung:miri-refactor, r=oli-obk | bors | -1/+1 |
| 2018-08-27 | Rename hir::map::NodeKind to hir::Node | varkor | -2/+2 |
| 2018-08-27 | Remove path prefixes from NodeKind | varkor | -2/+2 |
| 2018-08-27 | Rename hir::map::Node to hir::map::NodeKind | varkor | -1/+1 |
| 2018-08-27 | Miri Memory Work | Ralf Jung | -1/+1 |
| 2018-08-26 | rustc: Continue to tweak "std internal symbols" | Alex Crichton | -5/+2 |
| 2018-08-22 | Remove Ty prefix from Ty{Bool|Char|Int|Uint|Float|Str} | varkor | -18/+18 |
| 2018-08-22 | Remove Ty prefix from Ty{Foreign|Param} | varkor | -3/+3 |
| 2018-08-22 | Remove Ty prefix from Ty{Adt|Array|Slice|RawPtr|Ref|FnDef|FnPtr|Dynamic|Closu... | varkor | -30/+30 |
| 2018-08-19 | mv (mod) codemap source_map | Donato Sciarra | -1/+1 |
| 2018-08-18 | Use the new Entry::or_default method where possible. | Eduard-Mihai Burtescu | -1/+1 |
| 2018-08-15 | Use CGU name as LLVM module name and add some caching to CGU name generation. | Michael Woerister | -29/+79 |
| 2018-08-15 | Clean up CodegenUnit name generation. | Michael Woerister | -45/+21 |
| 2018-08-07 | rustc: Tweak visibility of some lang items | Alex Crichton | -41/+95 |
| 2018-08-07 | rustc: Refactor MonoItem linkage/visibility calculation | Alex Crichton | -140/+151 |
| 2018-08-04 | Move share_generics getter onto options directly | Mark Rousskov | -2/+2 |
| 2018-08-04 | Normalize EntryFnType variants to standard style | Mark Rousskov | -1/+1 |
| 2018-08-03 | Auto merge of #52712 - oli-obk:const_eval_cleanups, r=RalfJung | bors | -3/+3 |