| Age | Commit message (Expand) | Author | Lines |
| 2024-06-20 | Only compute specializes query if specialization is enabled in the crate of t... | Michael Goulet | -0/+5 |
| 2024-06-06 | Revert "Rollup merge of #124976 - petrochenkov:usedcrates, r=oli-obk" | Rémy Rakic | -13/+4 |
| 2024-06-03 | check_is_object_safe -> is_object_safe | Michael Goulet | -1/+1 |
| 2024-05-29 | Start implementing needs_async_drop and related | Daria Sukhonina | -8/+9 |
| 2024-05-26 | Give EarlyBinder a tcx parameter | Michael Goulet | -13/+13 |
| 2024-05-24 | Use regular type equating instead of a custom query | Oli Scherer | -9/+0 |
| 2024-05-23 | Improve the doc of query associated_item | r0cky | -1/+1 |
| 2024-05-22 | rustc: Use `tcx.used_crates(())` more | Vadim Petrochenkov | -4/+13 |
| 2024-04-30 | Give items related to issue 33140 a more meaningful name | León Orell Valerian Liehr | -2/+4 |
| 2024-04-29 | Remove `extern crate rustc_macros` from `rustc_middle`. | Nicholas Nethercote | -0/+1 |
| 2024-04-23 | Auto merge of #123992 - compiler-errors:no-has-typeck-results, r=jackh726 | bors | -4/+0 |
| 2024-04-17 | has_typeck_results doesnt need to be a query | Michael Goulet | -4/+0 |
| 2024-04-16 | Add simple async drop glue generation | zetanumbers | -0/+8 |
| 2024-04-16 | Rollup merge of #123995 - compiler-errors:thir-hooks, r=oli-obk | Guillaume Gomez | -14/+0 |
| 2024-04-15 | Make thir_tree and thir_flat into hooks | Michael Goulet | -14/+0 |
| 2024-04-15 | Just use type_dependent_def_id to figure out what the method is for an expr | Michael Goulet | -3/+0 |
| 2024-04-11 | Auto merge of #122213 - estebank:issue-50195, r=oli-obk,estebank | bors | -0/+3 |
| 2024-04-05 | Provide suggestion to dereference closure tail if appropriate | Esteban Küber | -0/+3 |
| 2024-04-04 | cache type info for ParamEnv | Lukas Markeffsky | -4/+4 |
| 2024-04-03 | Remove MIR unsafe check | Matthew Jasper | -6/+0 |
| 2024-03-26 | Remove `CacheSelector` trait now that we can use GATs | Oli Scherer | -1/+1 |
| 2024-03-25 | Auto merge of #122721 - oli-obk:merge_queries, r=davidtwco | bors | -11/+5 |
| 2024-03-22 | Rollup merge of #122784 - jswrenn:tag_for_variant, r=compiler-errors | Matthias Krüger | -0/+7 |
| 2024-03-22 | Add `tag_for_variant` query | Jack Wrenn | -0/+7 |
| 2024-03-20 | Split item bounds and item super predicates | Michael Goulet | -6/+26 |
| 2024-03-20 | Update documentation | Oli Scherer | -4/+5 |
| 2024-03-20 | Rename mir_const query to mir_built | Oli Scherer | -1/+1 |
| 2024-03-20 | Replace `mir_built` query with a hook and use mir_const everywhere instead | Oli Scherer | -7/+0 |
| 2024-03-18 | address nits | Lukas Markeffsky | -1/+1 |
| 2024-03-14 | clean up ADT sized constraint computation | Lukas Markeffsky | -2/+2 |
| 2024-03-13 | Create some minimal HIR for associated opaque types | Vadim Petrochenkov | -4/+4 |
| 2024-03-12 | Ensure nested allocations in statics do not get deduplicated | Oli Scherer | -0/+2 |
| 2024-03-09 | Auto merge of #122010 - oli-obk:intrinsics3.0, r=pnkfelix | bors | -1/+1 |
| 2024-03-08 | Auto merge of #121500 - oli-obk:track_errors12, r=petrochenkov | bors | -4/+1 |
| 2024-03-07 | Rollup merge of #121089 - oli-obk:create_def_feed, r=petrochenkov | Guillaume Gomez | -3/+1 |
| 2024-03-07 | Merge collect_mod_item_types query into check_well_formed | Oli Scherer | -4/+1 |
| 2024-03-07 | Apply `EarlyBinder` only to `TraitRef` in `ImplTraitHeader` | Yoshitomo Nakanishi | -1/+1 |
| 2024-03-07 | Merge `check_mod_impl_wf` and `check_mod_type_wf` | Oli Scherer | -5/+0 |
| 2024-03-06 | Rollup merge of #122027 - compiler-errors:rpitit-cycle, r=spastorino | Matthias Krüger | -2/+2 |
| 2024-03-05 | Merge `impl_trait_in_assoc_types_defined_by` query back into `opaque_types_de... | Oli Scherer | -9/+0 |
| 2024-03-05 | Uplift some feeding out of associated_type_for_impl_trait_in_impl and into qu... | Michael Goulet | -2/+2 |
| 2024-03-05 | Avoid using feed_unit_query from within queries | Oli Scherer | -2/+1 |
| 2024-03-05 | Remove a use of feed_local_crate and make it fail if used within queries | Oli Scherer | -1/+0 |
| 2024-03-05 | Avoid invoking the `intrinsic` query for DefKinds other than `Fn` or `AssocFn` | Oli Scherer | -1/+1 |
| 2024-03-04 | Return a struct from `query intrinsic` to be able to add another field in the... | Oli Scherer | -1/+1 |
| 2024-02-20 | Rollup merge of #121344 - fmease:lta-constr-by-input, r=oli-obk | Matthias Krüger | -10/+22 |
| 2024-02-20 | Rename some normalization-related items | León Orell Valerian Liehr | -10/+22 |
| 2024-02-18 | resolve: Scale back unloading of speculatively loaded crates | Vadim Petrochenkov | -0/+7 |
| 2024-02-16 | Auto merge of #120500 - oli-obk:intrinsics2.0, r=WaffleLapkin | bors | -2/+2 |
| 2024-02-15 | Return ConstAllocation from eval_static_initializer query directly | Oli Scherer | -1/+1 |