| Age | Commit message (Expand) | Author | Lines |
| 2023-03-04 | Rollup merge of #108405 - Nilstrieb:lazy-crate-name-optimization-fuel, r=Waff... | Dylan DPC | -2/+1 |
| 2023-03-03 | Match unmatched backticks in comments in compiler/ | est31 | -1/+1 |
| 2023-03-03 | Match unmatched backticks in compiler/ that are part of rustdoc | est31 | -2/+2 |
| 2023-02-27 | Rollup merge of #108363 - cjgillot:unused-crate, r=WaffleLapkin | Matthias Krüger | -2/+0 |
| 2023-02-26 | Auto merge of #108375 - Zoxc:query-inline, r=cjgillot | bors | -0/+1 |
| 2023-02-25 | Add inlining attributes for query system functions | John Kåre Alsaker | -0/+1 |
| 2023-02-24 | Add `mk_canonical_var_infos_from_iter`. | Nicholas Nethercote | -0/+8 |
| 2023-02-24 | Rename `mk_{ty,region}` as `mk_{ty,region}_from_kind`. | Nicholas Nethercote | -30/+38 |
| 2023-02-24 | Rename many interner functions. | Nicholas Nethercote | -64/+70 |
| 2023-02-24 | Tweak the slice interners. | Nicholas Nethercote | -59/+24 |
| 2023-02-23 | Lazily compute crate name for consider_optimizing | Nilstrieb | -2/+1 |
| 2023-02-23 | Auto merge of #108369 - compiler-errors:ty-error-more, r=BoxyUwU | bors | -3/+3 |
| 2023-02-23 | Rollup merge of #108350 - compiler-errors:assoc-type-bound-dogfooding, r=oli-obk | Matthias Krüger | -6/+6 |
| 2023-02-22 | Rename ty_error_with_guaranteed to ty_error, ty_error to ty_error_misc | Michael Goulet | -3/+3 |
| 2023-02-22 | Remove some resolver outputs. | Camille GILLOT | -2/+0 |
| 2023-02-22 | diagnostics: if AssocFn has self argument, describe as method | Michael Howell | -7/+2 |
| 2023-02-22 | Auto merge of #108300 - oli-obk:elsa, r=eholk | bors | -3/+2 |
| 2023-02-21 | Rollup merge of #108141 - spastorino:add_rpitit_queries, r=compiler-errors | Dylan DPC | -0/+4 |
| 2023-02-21 | Use a lock-free datastructure for `source_span` | Oli Scherer | -3/+2 |
| 2023-02-21 | Associated type bounds in some places in the compiler | Michael Goulet | -6/+6 |
| 2023-02-20 | Run the resolver after TyCtxt construction | Oli Scherer | -0/+4 |
| 2023-02-20 | Make untracked.source_span lockable so that resolution can still write to it ... | Oli Scherer | -2/+2 |
| 2023-02-20 | Make untracked.cstore lockable so that resolution can still write to it when ... | Oli Scherer | -10/+10 |
| 2023-02-17 | Make encode_attrs use opt_local_def_id_to_hir_id so we can feed it with None ... | Santiago Pastorino | -0/+4 |
| 2023-02-17 | Replace more `mk_foo` calls with `infer_foo`. | Nicholas Nethercote | -4/+4 |
| 2023-02-17 | Use `IntoIterator` for `mk_fn_sig`. | Nicholas Nethercote | -5/+10 |
| 2023-02-17 | Clarify iterator interners. | Nicholas Nethercote | -41/+54 |
| 2023-02-17 | Remove the `InternIteratorElement` impl for `&'a T`. | Nicholas Nethercote | -1/+1 |
| 2023-02-17 | Clarify `mk_fn_sig` signature. | Nicholas Nethercote | -3/+4 |
| 2023-02-17 | Replace `mk_foo` calls with `infer_foo` where possible. | Nicholas Nethercote | -1/+1 |
| 2023-02-17 | Auto merge of #107753 - kylematsuda:type-of, r=BoxyUwU | bors | -4/+6 |
| 2023-02-17 | Auto merge of #108145 - matthiaskrgr:rollup-bgadak1, r=matthiaskrgr | bors | -3/+3 |
| 2023-02-16 | changes from review | Kyle Matsuda | -1/+3 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -4/+4 |
| 2023-02-16 | change usages of type_of to bound_type_of | Kyle Matsuda | -2/+2 |
| 2023-02-17 | Rollup merge of #107489 - compiler-errors:non_lifetime_binders, r=cjgillot | Matthias Krüger | -3/+3 |
| 2023-02-16 | Auto merge of #107833 - Zoxc:arena-query-clean, r=cjgillot | bors | -2/+2 |
| 2023-02-16 | Auto merge of #108127 - matthiaskrgr:rollup-kpzfc6j, r=matthiaskrgr | bors | -20/+16 |
| 2023-02-16 | Auto merge of #108020 - nnethercote:opt-mk_region, r=compiler-errors | bors | -16/+110 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -20/+16 |
| 2023-02-16 | Move provider fields back to rustc_query_impl | John Kåre Alsaker | -5/+1 |
| 2023-02-16 | Factor query arena allocation out from query caches | John Kåre Alsaker | -2/+6 |
| 2023-02-16 | Rename some region-specific stuff | Michael Goulet | -3/+3 |
| 2023-02-15 | Rollup merge of #107163 - mikebenfield:parameters-pr, r=TaKO8Ki | Dylan DPC | -2/+2 |
| 2023-02-15 | Pre-intern some `ReVar`s and `ReLateBound`s. | Nicholas Nethercote | -4/+59 |
| 2023-02-15 | Add specialized variants of `mk_region`. | Nicholas Nethercote | -8/+54 |
| 2023-02-15 | Remove `reuse_or_mk_region`. | Nicholas Nethercote | -7/+0 |
| 2023-02-14 | s/eval_usize/eval_target_usize/ for clarity | Oli Scherer | -1/+1 |
| 2023-02-13 | Project Binder and Predicate from Interner trait | Alan Egerton | -0/+2 |
| 2023-02-13 | Avoid interning empty tuples. | Nicholas Nethercote | -2/+2 |