| Age | Commit message (Expand) | Author | Lines |
| 2022-03-31 | Merge impl_constness and is_const_fn_raw. | Camille GILLOT | -0/+4 |
| 2022-03-31 | Create trait_def table. | Camille GILLOT | -11/+8 |
| 2022-03-31 | Store fn constness in impl_constness. | Camille GILLOT | -37/+26 |
| 2022-03-31 | Introduce repr_options table. | Camille GILLOT | -22/+23 |
| 2022-03-31 | Rollup merge of #95497 - nyurik:compiler-spell-comments, r=compiler-errors | Dylan DPC | -1/+1 |
| 2022-03-30 | Auto merge of #95436 - cjgillot:static-mut, r=oli-obk | bors | -12/+8 |
| 2022-03-30 | Spellchecking compiler comments | Yuri Astrakhan | -1/+1 |
| 2022-03-30 | rework implementation for inherent impls for builtin types | lcnr | -3/+35 |
| 2022-03-29 | Remember mutability in `DefKind::Static`. | Camille GILLOT | -12/+8 |
| 2022-03-11 | Improve `AdtDef` interning. | Nicholas Nethercote | -15/+15 |
| 2022-03-03 | Rollup merge of #94057 - lcnr:simplify_type-uwu, r=nikomatsakis | Matthias Krüger | -2/+2 |
| 2022-02-25 | Rollup merge of #94252 - lcnr:def_kind-encoding, r=cjgillot | Matthias Krüger | -7/+2 |
| 2022-02-24 | metadata: Tweak the way in which declarative macros are encoded | Vadim Petrochenkov | -1/+1 |
| 2022-02-24 | resolve: Fix incorrect results of `opt_def_kind` query for some built-in macros | Vadim Petrochenkov | -1/+1 |
| 2022-02-24 | don't special case `DefKind::Ctor` in encoding | lcnr | -7/+2 |
| 2022-02-21 | update docs for `simplify_type` | lcnr | -2/+2 |
| 2022-02-19 | Add generator_kind table. | Camille GILLOT | -1/+2 |
| 2022-02-19 | Add fn_arg_names table. | Camille GILLOT | -18/+12 |
| 2022-02-19 | Add asyncness table. | Camille GILLOT | -8/+5 |
| 2022-02-19 | Add rendered_const table. | Camille GILLOT | -16/+13 |
| 2022-02-19 | Add mir_const_qualifs table. | Camille GILLOT | -4/+6 |
| 2022-02-19 | Drop ImplData. | Camille GILLOT | -27/+19 |
| 2022-02-19 | Encode metadata using queries. | Camille GILLOT | -22/+22 |
| 2022-02-19 | Stop interning stability. | Camille GILLOT | -1/+1 |
| 2022-02-17 | Rollup merge of #94011 - est31:let_else, r=lcnr | Matthias Krüger | -1/+1 |
| 2022-02-16 | Adopt let_else in even more places | est31 | -1/+1 |
| 2022-02-14 | fast_reject: remove `StripReferences` | lcnr | -2/+1 |
| 2022-02-09 | Ensure that queries only return Copy types. | Camille GILLOT | -1/+1 |
| 2022-01-25 | Auto merge of #93095 - Aaron1011:remove-assoc-ident, r=cjgillot | bors | -1/+1 |
| 2022-01-22 | Use an `indexmap` to avoid sorting `LocalDefId`s | pierwill | -3/+1 |
| 2022-01-19 | Store a `Symbol` instead of an `Ident` in `AssocItem` | Aaron Hill | -1/+1 |
| 2022-01-17 | Rollup merge of #92164 - WaffleLapkin:rustc_must_implement_one_of_attr, r=Aar... | Matthias Krüger | -0/+1 |
| 2022-01-16 | Replace NestedVisitorMap with NestedFilter | Cameron Steffen | -5/+5 |
| 2022-01-15 | Reduce use of local_def_id_to_hir_id. | Camille GILLOT | -8/+6 |
| 2022-01-11 | Store a `Symbol` instead of an `Ident` in `VariantDef`/`FieldDef` | Aaron Hill | -2/+2 |
| 2022-01-09 | Auto merge of #92086 - petrochenkov:modchild, r=jackh726 | bors | -2/+1 |
| 2022-01-09 | Implement `#[rustc_must_implement_one_of]` attribute | Maybe Waffle | -0/+1 |
| 2022-01-09 | Auto merge of #92497 - bjorn3:remove_lazy_meta_min_size, r=eddyb | bors | -8/+8 |
| 2022-01-09 | rustc_middle: Rename `Export` to `ModChild` and add some comments | Vadim Petrochenkov | -1/+1 |
| 2022-01-09 | rustc_metadata: Optimize and document module children decoding | Vadim Petrochenkov | -1/+0 |
| 2022-01-08 | Remove LazyMeta::min_size | bjorn3 | -8/+8 |
| 2022-01-07 | Add `trait_item_def_id` to `AssocItem` | Matthew Jasper | -0/+3 |
| 2022-01-06 | rustc_middle: Add a method for getting a `SimplifiedType` definition/ID | Vadim Petrochenkov | -2/+2 |
| 2022-01-01 | Stabilize -Z symbol-mangling-version as -C symbol-mangling-version | Josh Triplett | -1/+1 |
| 2022-01-01 | rustc_metadata: Use a query for collecting all traits in encoder | Vadim Petrochenkov | -21/+53 |
| 2021-12-29 | Auto merge of #92244 - petrochenkov:alltraits, r=cjgillot | bors | -22/+37 |
| 2021-12-28 | rustc_metadata: Encode list of all crate's traits into metadata | Vadim Petrochenkov | -22/+37 |
| 2021-12-28 | rustc_metadata: Merge items from `extern` blocks into their parent modules | Vadim Petrochenkov | -8/+15 |
| 2021-12-22 | Remove `PartialOrd` and `Ord` from `LocalDefId` | pierwill | -1/+1 |
| 2021-12-18 | Rollup merge of #91926 - SylvanB:remove_in_band_lifetimes_from_rustc_metadata... | Matthias Krüger | -3/+3 |