| Age | Commit message (Expand) | Author | Lines |
| 2024-03-14 | hir: Remove `opt_local_def_id_to_hir_id` and `opt_hir_node_by_def_id` | Vadim Petrochenkov | -2/+2 |
| 2024-03-12 | Ensure nested allocations in statics do not get deduplicated | Oli Scherer | -3/+6 |
| 2024-03-12 | Change `DefKind::Static` to a struct variant | Oli Scherer | -12/+12 |
| 2024-03-07 | Apply `EarlyBinder` only to `TraitRef` in `ImplTraitHeader` | Yoshitomo Nakanishi | -2/+1 |
| 2024-03-06 | Auto merge of #119455 - Mark-Simulacrum:relative-spans, r=cjgillot | bors | -4/+16 |
| 2024-03-05 | Auto merge of #120675 - oli-obk:intrinsics3.0, r=pnkfelix | bors | -4/+7 |
| 2024-03-05 | Rename all `ParseSess` variables/fields/lifetimes as `psess`. | Nicholas Nethercote | -1/+1 |
| 2024-03-04 | make `intrinsic` query legal for any `DefId` | Oli Scherer | -8/+6 |
| 2024-03-04 | Add a scheme for moving away from `extern "rust-intrinsic"` entirely | Oli Scherer | -2/+7 |
| 2024-02-16 | Auto merge of #120500 - oli-obk:intrinsics2.0, r=WaffleLapkin | bors | -1/+3 |
| 2024-02-16 | Auto merge of #120486 - reitermarkus:use-generic-nonzero, r=dtolnay | bors | -4/+4 |
| 2024-02-15 | Return ConstAllocation from eval_static_initializer query directly | Oli Scherer | -2/+2 |
| 2024-02-15 | Store static initializers in metadata instead of the MIR of statics. | Oli Scherer | -5/+9 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -3/+3 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -4/+4 |
| 2024-02-12 | Remove impl_polarity query | Oli Scherer | -1/+0 |
| 2024-02-12 | Implement intrinsics with fallback bodies | Oli Scherer | -1/+3 |
| 2024-02-12 | Use a struct instead of a tuple | Oli Scherer | -1/+1 |
| 2024-02-12 | Make impl_trait_ref into a query also returning more information about the impl | Oli Scherer | -2/+3 |
| 2024-02-12 | Make `is_intrinsic` query return the intrinsic name | Oli Scherer | -1/+1 |
| 2024-02-10 | Encode coroutine_for_closure for foreign crates | Michael Goulet | -0/+7 |
| 2024-02-07 | hir: Make sure all `HirId`s have corresponding HIR `Node`s | Vadim Petrochenkov | -8/+2 |
| 2024-02-05 | rustc_metadata: fix typo | klensy | -2/+2 |
| 2024-01-23 | Remove track_errors entirely | Oli Scherer | -1/+1 |
| 2024-01-17 | Make crate_inherent_impls fallible and stop using `track_errors` for it | Oli Scherer | -2/+2 |
| 2024-01-06 | Embed length of offset/position into Span tag byte | Mark Rousskov | -4/+16 |
| 2024-01-06 | Auto merge of #119478 - bjorn3:no_serialize_specialization, r=wesleywiser | bors | -59/+54 |
| 2024-01-04 | Make iteration order of crate_inherent_impls query result stable. | Michael Woerister | -9/+3 |
| 2024-01-04 | Replace a number of FxHashMaps/Sets with stable-iteration-order alternatives. | Michael Woerister | -2/+3 |
| 2024-01-03 | Rollup merge of #119510 - saethlin:fatal-io-errors, r=WaffleLapkin,Nilstrieb | León Orell Valerian Liehr | -2/+2 |
| 2024-01-02 | Report I/O errors with emit_fatal not emit_err | Ben Kimock | -2/+2 |
| 2023-12-31 | Remove almost all uses of specialization from the metadata encoding code | bjorn3 | -49/+44 |
| 2023-12-31 | Avoid specialization for the Span Encodable and Decodable impls | bjorn3 | -11/+11 |
| 2023-12-29 | Shrink span encoding further | Mark Rousskov | -15/+29 |
| 2023-12-28 | Movability doesn't need to be a query anymore | Michael Goulet | -2/+1 |
| 2023-12-28 | Remove movability from TyKind::Coroutine | Michael Goulet | -0/+1 |
| 2023-12-27 | Auto merge of #119302 - Mark-Simulacrum:relative-spans, r=WaffleLapkin | bors | -1/+13 |
| 2023-12-27 | Support relative offsets when encoding spans | Mark Rousskov | -1/+13 |
| 2023-12-26 | Auto merge of #119146 - nnethercote:rm-DiagCtxt-api-duplication, r=compiler-e... | bors | -3/+3 |
| 2023-12-24 | Auto merge of #119139 - michaelwoerister:cleanup-stable-source-file-id, r=cjg... | bors | -21/+23 |
| 2023-12-24 | Auto merge of #119238 - Mark-Simulacrum:def-hash-efficiency, r=cjgillot | bors | -2/+2 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -3/+3 |
| 2023-12-23 | Specialize DefPathHash table to skip crate IDs | Mark Rousskov | -2/+2 |
| 2023-12-23 | Auto merge of #119225 - Mark-Simulacrum:remove-option, r=compiler-errors | bors | -1/+1 |
| 2023-12-22 | Avoid redundant Option for cross_crate_inlinable | Mark Rousskov | -1/+1 |
| 2023-12-21 | Encode CoroutineKind directly | Michael Goulet | -2/+2 |
| 2023-12-19 | Unify SourceFile::name_hash and StableSourceFileId | Michael Woerister | -21/+23 |
| 2023-12-12 | Move some methods from `tcx.hir()` to `tcx` | zetanumbers | -3/+3 |
| 2023-12-11 | Auto merge of #118344 - saethlin:rmeta-header-pos, r=WaffleLapkin | bors | -2/+2 |
| 2023-12-10 | remove redundant imports | surechen | -22/+8 |