| Age | Commit message (Expand) | Author | Lines |
| 2019-07-26 | Introduce built-in macros through libcore | Vadim Petrochenkov | -1/+4 |
| 2019-07-25 | Rollup merge of #62735 - petrochenkov:galloc, r=alexcrichton | Mazdak Farrokhzad | -14/+1 |
| 2019-07-25 | Rollup merge of #62901 - petrochenkov:serde, r=Centril | Mazdak Farrokhzad | -1/+1 |
| 2019-07-24 | Gate binary dependency information behind -Zbinary-dep-depinfo | Mark Rousskov | -11/+13 |
| 2019-07-24 | Add binary dependencies to dep-info files | Mark Rousskov | -3/+20 |
| 2019-07-24 | syntax_ext: Turn `#[global_allocator]` into a regular attribute macro | Vadim Petrochenkov | -14/+1 |
| 2019-07-24 | Merge `rustc_allocator` into `libsyntax_ext` | Vadim Petrochenkov | -1/+1 |
| 2019-07-23 | cleanup: Remove `extern crate serialize as rustc_serialize`s | Vadim Petrochenkov | -1/+1 |
| 2019-07-19 | hygiene: Tweak naming some more | Vadim Petrochenkov | -1/+1 |
| 2019-07-19 | Adjust other names after the `Mark` renaming | Vadim Petrochenkov | -1/+1 |
| 2019-07-18 | Emit artifact notifications for dependency files | Jeremy Fitzhardinge | -6/+14 |
| 2019-07-11 | Move rustc_borrowck -> rustc_ast_borrowck | Matthew Jasper | -1/+1 |
| 2019-07-04 | rename hir::map::local_def_id to local_def_id_from_node_id | ljedrz | -6/+7 |
| 2019-07-03 | Remove needless lifetimes | Jeremy Stucki | -3/+3 |
| 2019-06-22 | Prefer to use `has_errors` to `err_count` | Matthew Jasper | -1/+1 |
| 2019-06-14 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -7/+7 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -5/+2 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -4/+4 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-06-01 | rustc: collect upvars from HIR, instead of during name resolution. | Eduard-Mihai Burtescu | -2/+0 |
| 2019-05-23 | Rollup merge of #61014 - jsgf:emit-artifact-type, r=alexcrichton | Mazdak Farrokhzad | -1/+2 |
| 2019-05-21 | Make -Zemit-artifact-notifications also emit the artifact type | Jeremy Fitzhardinge | -1/+2 |
| 2019-05-21 | Move `edition` outside the hygiene lock and avoid accessing it | John Kåre Alsaker | -4/+2 |
| 2019-05-13 | Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions. | Nicholas Nethercote | -1/+1 |
| 2019-05-07 | rustc: rename -Z emit-directives to -Z emit-artifact-notifications and simpli... | Eduard-Mihai Burtescu | -8/+5 |
| 2019-05-05 | rustc: rename all occurences of "freevar" to "upvar". | Eduard-Mihai Burtescu | -2/+2 |
| 2019-05-01 | Move metadata writing earlier. | Nicholas Nethercote | -5/+38 |
| 2019-04-30 | Move metadata encoding earlier. | Nicholas Nethercote | -3/+41 |
| 2019-04-23 | Auto merge of #60125 - estebank:continue-evaluating, r=oli-obk | bors | -7/+0 |
| 2019-04-22 | Never stop due to errors before borrow checking | Esteban Küber | -7/+0 |
| 2019-04-22 | Continue evaluating after item-type checking | Esteban Küber | -2/+1 |
| 2019-04-16 | Rollup merge of #59903 - estebank:after-main, r=oli-obk | Mazdak Farrokhzad | -2/+6 |
| 2019-04-12 | Use measureme in self-profiler | Wesley Wiser | -8/+6 |
| 2019-04-11 | Continue evaluating after missing main | Esteban Küber | -2/+6 |
| 2019-03-28 | Remove LintSession and run incremental and whole crate lints in parallel | John Kåre Alsaker | -1/+1 |
| 2019-03-28 | Combine all builtin late lints | John Kåre Alsaker | -2/+5 |
| 2019-03-27 | Rollup merge of #58837 - Centril:librustc_interface_2018, r=petrochenkov | Josh Stone | -5/+7 |
| 2019-03-27 | librustc_interface => 2018 | Mazdak Farrokhzad | -5/+7 |
| 2019-03-25 | Make some lints incremental | John Kåre Alsaker | -1/+1 |
| 2019-03-22 | Do not `track_errors` in `register_plugins` | Esteban Küber | -14/+12 |
| 2019-03-14 | Add `-Z allow_features=...` flag | Tyler Mandry | -0/+1 |
| 2019-03-10 | Replace TimeLine with SelfProfiler | Wesley Wiser | -6/+6 |
| 2019-03-10 | Make the rustc driver and interface demand driven | John Kåre Alsaker | -12/+744 |
| 2019-03-06 | Rename check_privacy to check_private_in_public | John Kåre Alsaker | -2/+2 |
| 2019-03-06 | Make misc checking 1 more parallel | John Kåre Alsaker | -19/+17 |
| 2019-03-06 | Make misc checking 2 more parallel | John Kåre Alsaker | -16/+17 |
| 2019-03-06 | Split up privacy checking so privacy_access_levels only does computations req... | John Kåre Alsaker | -9/+20 |
| 2019-02-28 | Introduce rustc_interface and move some methods there | John Kåre Alsaker | -0/+296 |