| Age | Commit message (Expand) | Author | Lines |
| 2019-12-02 | rustc: allow non-empty ParamEnv's in global trait select/eval caches. | Eduard-Mihai Burtescu | -8/+4 |
| 2019-12-02 | rustc: include ParamEnv in global trait select/eval cache keys. | Eduard-Mihai Burtescu | -10/+15 |
| 2019-11-29 | allow customising ty::TraitRef's printing behavior | Mikhail Babenko | -2/+2 |
| 2019-11-21 | Applied suggestions from code review. | Alexander Regueiro | -15/+15 |
| 2019-11-21 | Aggregation of drive-by cosmetic changes. | Alexander Regueiro | -146/+142 |
| 2019-11-19 | More HashStable. | Camille GILLOT | -13/+2 |
| 2019-11-13 | Use TypeFoldable derive macro. | Camille GILLOT | -18/+1 |
| 2019-11-10 | Merge hir::GeneratorMovability into ast::Movability. | Camille GILLOT | -2/+2 |
| 2019-11-10 | Merge hir::Mutability into ast::Mutability. | Camille GILLOT | -2/+2 |
| 2019-10-22 | RFC 2027: "first draft" of implementation | Mathias Blikstad | -1/+7 |
| 2019-10-08 | Remove `InferCtxt::in_snapshot()`. | Nicholas Nethercote | -17/+18 |
| 2019-10-04 | generate GeneratorSubsts from SubstsRef | csmoe | -5/+6 |
| 2019-10-04 | Rollup merge of #64817 - csmoe:closure, r=nikomatsakis | Mazdak Farrokhzad | -6/+16 |
| 2019-10-03 | generate ClosureSubsts from SubstsRef | csmoe | -9/+15 |
| 2019-09-29 | remove ClosureSubsts with SubstsRef | csmoe | -3/+6 |
| 2019-09-29 | introduce from_ref helper for replacement | csmoe | -3/+4 |
| 2019-09-29 | remove bit_set re-export from rustc_data_structures | csmoe | -1/+1 |
| 2019-09-27 | Remove global_tcx from TyCtxt | Mark Rousskov | -1/+1 |
| 2019-09-26 | Auto merge of #62661 - arielb1:never-reserve, r=nikomatsakis | bors | -10/+48 |
| 2019-09-25 | Rename `sty` to `kind` | varkor | -16/+16 |
| 2019-09-24 | Remove blanket silencing of "type annotation needed" errors | Esteban Küber | -1/+1 |
| 2019-09-24 | add error message for case | Ariel Ben-Yehuda | -2/+29 |
| 2019-09-24 | improve comments | Ariel Ben-Yehuda | -1/+1 |
| 2019-09-24 | resolve the rustc_reservation_impl attribute in 1 place | Ariel Ben-Yehuda | -13/+11 |
| 2019-09-24 | reserve `impl<T> From<!> for T` | Ariel Ben-Yehuda | -4/+17 |
| 2019-09-19 | Fix a minor grammar nit, update UI tests | James Munns | -1/+1 |
| 2019-08-28 | Add Option<Span> to `require_lang_item` | Yuki Okushi | -1/+1 |
| 2019-08-08 | Use associated_type_bounds where applicable - closes #61738 | Ilija Tovilo | -1/+1 |
| 2019-08-05 | Fiddle param env through to `try_eval_bits` in most places | Oliver Scherer | -2/+4 |
| 2019-08-02 | Fix typos in doc comments. | Bruce Mitchener | -2/+2 |
| 2019-06-26 | Don't use lift to detect local types | John Kåre Alsaker | -22/+37 |
| 2019-06-18 | rustc: reintroduce lifetime bounds where necessary. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-18 | rustc: remove unused lifetimes. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-18 | rustc: remove leftover lifetimes with no bounds from where clauses. | Eduard-Mihai Burtescu | -1/+0 |
| 2019-06-18 | rustc: remove 'x: 'y bounds (except from comments/strings). | Eduard-Mihai Burtescu | -5/+5 |
| 2019-06-16 | Auto merge of #61754 - nikomatsakis:trait-caching-perf-3, r=pnkfelix | bors | -81/+405 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -16/+16 |
| 2019-06-12 | correctly set the `reached_depth` field | Niko Matsakis | -3/+13 |
| 2019-06-12 | add more debug logs | Niko Matsakis | -2/+40 |
| 2019-06-12 | add the "provisional cache" | Niko Matsakis | -4/+192 |
| 2019-06-12 | add in a depth-first number for stack entries | Niko Matsakis | -0/+16 |
| 2019-06-12 | introduce ProvisionalEvaluationCache | Niko Matsakis | -5/+16 |
| 2019-06-12 | execute cycle check before we consider caching | Niko Matsakis | -62/+83 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-11 | propagate depth that was reached, not just whether there was a cycle | Niko Matsakis | -18/+43 |
| 2019-06-11 | introduce a stack depth | Niko Matsakis | -2/+16 |
| 2019-06-11 | rename `evaluate_obligation_recursively` | Niko Matsakis | -4/+5 |
| 2019-06-11 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -4/+1 |