| Age | Commit message (Expand) | Author | Lines |
| 2019-07-20 | normalize use of backticks in compiler messages for librustc_incremental | Samy Kacimi | -1/+1 |
| 2019-07-04 | rename hir::map::local_def_id_from_hir_id to local_def_id | ljedrz | -1/+1 |
| 2019-07-03 | Remove needless lifetimes | Jeremy Stucki | -1/+1 |
| 2019-06-14 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -5/+1 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -4/+4 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -4/+5 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -4/+4 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -6/+6 |
| 2019-06-11 | rustc_incremental: deny(unused_lifetimes). | Eduard-Mihai Burtescu | -2/+2 |
| 2019-03-16 | Refactor away `NestedMetaItemKind` | Vadim Petrochenkov | -1/+1 |
| 2019-03-16 | syntax: Do not accidentally treat multi-segment meta-items as single-segment | Vadim Petrochenkov | -3/+3 |
| 2019-03-15 | rustc: rename item_path to def_path (except the module in ty). | Eduard-Mihai Burtescu | -1/+1 |
| 2019-03-01 | hir: remove NodeId from TraitItem | ljedrz | -9/+9 |
| 2019-02-10 | rustc: doc comments | Alexander Regueiro | -1/+1 |
| 2019-02-08 | librustc_incremental => 2018 | Taiki Endo | -6/+6 |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 |
| 2018-12-06 | Use a function to access the Hir map to be able to turn it into a query later | John Kåre Alsaker | -4/+4 |
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -1/+1 |
| 2018-10-05 | Remove graphviz::IntoCow | ljedrz | -3/+2 |
| 2018-07-28 | Don't format!() string literals | ljedrz | -1/+1 |
| 2018-07-12 | rename `control_flow_graph` to `graph` | Niko Matsakis | -1/+1 |
| 2018-07-12 | rename `graph` to `control_flow_graph::implementation` | Niko Matsakis | -1/+3 |
| 2018-05-17 | Rename trans to codegen everywhere. | Irina Popa | -3/+3 |
| 2018-05-02 | make it compile again | flip1995 | -1/+1 |
| 2018-04-06 | Use `Ident` instead of `Name` in `MetaItem` | Vadim Petrochenkov | -1/+1 |
| 2018-03-05 | Turn features() into a query. | Michael Woerister | -1/+1 |
| 2018-01-13 | Rollup merge of #47328 - mbrubeck:fs_read, r=sfackler | kennytm | -2/+2 |
| 2018-01-10 | Use the new fs_read_write functions in rustc internals | Matt Brubeck | -2/+2 |
| 2018-01-09 | Replace uses of DepGraph.in_ignore with DepGraph.with_ignore | John Kåre Alsaker | -29/+29 |
| 2017-10-02 | incr.comp.: Build DepGraphQuery from new dep-graph impl. | Michael Woerister | -1/+1 |
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -1/+1 |
| 2017-06-09 | incr.comp.: Uniformly represent DepNodes as (Kind, StableHash) pairs. | Michael Woerister | -35/+36 |
| 2017-05-08 | Remove need for &format!(...) or &&"" dances in `span_label` calls | Oliver Schneider | -3/+3 |
| 2017-05-03 | allow dep-graph assertions on fields | Niko Matsakis | -3/+15 |
| 2017-03-22 | Move some constants to rustc::ich. | Michael Woerister | -1/+1 |
| 2017-01-26 | rustc: rename TyCtxt's `map` field to `hir`. | Eduard-Mihai Burtescu | -3/+3 |
| 2016-12-28 | rustc: separate TraitItem from their parent Item, just like ImplItem. | Eduard-Mihai Burtescu | -0/+4 |
| 2016-11-20 | Refactor `MetaItemKind` to use `Name`s instead of `InternedString`s. | Jeffrey Seyfried | -8/+7 |
| 2016-11-16 | fix dep-graph checking to account for implitems | Niko Matsakis | -2/+2 |
| 2016-11-16 | fallout from separating impl-items from impls | Niko Matsakis | -0/+4 |
| 2016-11-16 | refactor Visitor into ItemLikeVisitor and intravisit::Visitor | Niko Matsakis | -3/+3 |
| 2016-11-08 | Replace FnvHasher use with FxHasher. | Nicholas Nethercote | -13/+13 |
| 2016-09-23 | ICH: Add ability to test the ICH of exported metadata items. | Michael Woerister | -6/+4 |
| 2016-09-06 | allow testing DepNode::Krate edges directly | Niko Matsakis | -87/+71 |
| 2016-09-04 | Replace `_, _` with `..` | Vadim Petrochenkov | -1/+1 |
| 2016-08-25 | Refactor away `AttrMetaMethods`. | Jeffrey Seyfried | -1/+0 |
| 2016-08-25 | Refactor away `AttrNestedMetaItemMethods`. | Jeffrey Seyfried | -1/+1 |
| 2016-08-25 | Implement RFC#1559: allow all literals in attributes. | Sergio Benitez | -15/+24 |
| 2016-08-03 | skip assert-dep-graph unless unit testing | Niko Matsakis | -0/+7 |