| Age | Commit message (Expand) | Author | Lines |
| 2020-07-22 | [AVR] Ensure that function pointers stored within aggregates are annotated wi... | Dylan McKay | -4/+29 |
| 2020-07-20 | index: introduce and use `FiniteBitSet` | David Wood | -5/+5 |
| 2020-07-20 | ty: normalize fn sigs before subst | David Wood | -17/+26 |
| 2020-07-20 | mir: `unused_generic_params` query | David Wood | -29/+45 |
| 2020-07-20 | ty: add doc comments to `Generics` methods | David Wood | -1/+3 |
| 2020-07-20 | ty: `STILL_FURTHER_SPECIALIZABLE` w/out prnt subst | David Wood | -8/+66 |
| 2020-07-17 | Rollup merge of #74069 - erikdesjardins:bad-niche, r=nikomatsakis | Manish Goregaokar | -4/+22 |
| 2020-07-17 | compare tagged/niche-filling layout and pick the best one | Erik Desjardins | -1/+15 |
| 2020-07-17 | [experiment] ty/layout: compute both niche-filling and tagged layouts for enums. | Eduard-Mihai Burtescu | -4/+8 |
| 2020-07-17 | Rename TypeckTables to TypeckResults. | Valentin Lazureanu | -34/+34 |
| 2020-07-17 | Remove some `Symbol:as_str()` calls. | Nicholas Nethercote | -6/+7 |
| 2020-07-16 | Group the try_eval functions before the eval functions | Oliver Scherer | -10/+10 |
| 2020-07-16 | Make `try_eval` private | Oliver Scherer | -2/+2 |
| 2020-07-16 | Move `ty::Const` and `ty::ConstKind` into their own modules | Oliver Scherer | -426/+445 |
| 2020-07-15 | s/try_to_usize/try_to_machine_usize/ | Oliver Scherer | -3/+3 |
| 2020-07-15 | Reduce the amount of interning and `layout_of` calls in const eval. | Oliver Scherer | -17/+58 |
| 2020-07-15 | Auto merge of #74113 - lcnr:type-dependent-consts-2, r=eddyb | bors | -45/+240 |
| 2020-07-15 | unify Instance::resolve | Bastian Kauschke | -11/+14 |
| 2020-07-15 | WithOptConstParam::dummy -> WithOptConstParam::unknown | Bastian Kauschke | -4/+5 |
| 2020-07-15 | ty_def_id -> def_id_for_type_of | Bastian Kauschke | -3/+3 |
| 2020-07-15 | improve naming | Bastian Kauschke | -29/+31 |
| 2020-07-15 | cleanup | Bastian Kauschke | -2/+34 |
| 2020-07-15 | update const arg queries | Bastian Kauschke | -12/+50 |
| 2020-07-15 | only call `typeck_tables_of_const_arg` for const args | Bastian Kauschke | -0/+11 |
| 2020-07-15 | const generics work! | Bastian Kauschke | -4/+12 |
| 2020-07-15 | continue mir pipeline | Bastian Kauschke | -4/+4 |
| 2020-07-15 | optimized_mir | Bastian Kauschke | -1/+7 |
| 2020-07-15 | InstanceDef::Item | Bastian Kauschke | -16/+32 |
| 2020-07-15 | typeck all the tables | Bastian Kauschke | -0/+11 |
| 2020-07-15 | const_eval_resolve | Bastian Kauschke | -5/+27 |
| 2020-07-15 | ConstKind::Unevaluated | Bastian Kauschke | -11/+23 |
| 2020-07-15 | begin using `WithOptParam` | Bastian Kauschke | -6/+39 |
| 2020-07-15 | Change `SymbolName::name` to a `&str`. | Nicholas Nethercote | -27/+44 |
| 2020-07-14 | Rollup merge of #74227 - erikdesjardins:layun, r=estebank | Manish Goregaokar | -3/+3 |
| 2020-07-11 | Rollup merge of #74240 - da-x:fix-74081, r=Manishearth | Manish Goregaokar | -1/+1 |
| 2020-07-11 | Fix try_print_visible_def_path_recur for opt_def_id usage | Dan Aloni | -1/+1 |
| 2020-07-10 | Rollup merge of #74162 - lcnr:ToPredicate-no-ref, r=varkor | Manish Goregaokar | -13/+13 |
| 2020-07-10 | Rollup merge of #73862 - oli-obk:const_array_to_slice, r=RalfJung | Manish Goregaokar | -1/+1 |
| 2020-07-10 | Remove an unwrap in layout computation | Erik Desjardins | -3/+3 |
| 2020-07-09 | Rollup merge of #74079 - nnethercote:session-globals, r=nikomatsakis | Manish Goregaokar | -8/+7 |
| 2020-07-09 | Rollup merge of #74070 - eddyb:forall-tcx-providers, r=nikomatsakis | Manish Goregaokar | -17/+39 |
| 2020-07-09 | Eliminate confusing "globals" terminology. | Nicholas Nethercote | -8/+7 |
| 2020-07-08 | ToPredicate by value | Bastian Kauschke | -13/+13 |
| 2020-07-06 | Auto merge of #73978 - Mark-Simulacrum:shrink-paramenv, r=nnethercote | bors | -16/+115 |
| 2020-07-05 | Rollup merge of #74057 - lcnr:expected_found, r=davidtwco | Manish Goregaokar | -31/+26 |
| 2020-07-05 | Rollup merge of #74000 - lcnr:lazy_normalisation_consts, r=varkor | Manish Goregaokar | -1/+1 |
| 2020-07-05 | Rollup merge of #73871 - da-x:private-types-2018-no-extern, r=petrochenkov | Manish Goregaokar | -17/+18 |
| 2020-07-05 | Use for<'tcx> fn pointers in Providers, instead of having Providers<'tcx>. | Eduard-Mihai Burtescu | -15/+18 |
| 2020-07-05 | Replace early-bound normalization hack with per-query key/value type aliases. | Eduard-Mihai Burtescu | -2/+21 |
| 2020-07-05 | Avoid deconstructing pointer for hashing | Mark Rousskov | -2/+3 |