| Age | Commit message (Expand) | Author | Lines |
| 2022-10-01 | Correct Key impl for HirId. | Camille GILLOT | -2/+2 |
| 2022-10-01 | Compute `lint_levels` by definition | Deadbeef | -1/+17 |
| 2022-09-26 | Auto merge of #101785 - jyn514:query-struct-fn-ptrs, r=cjgillot | bors | -56/+95 |
| 2022-09-25 | Move the `codegen_unit` debug assert from `rustc_query_system` to `query_impl` | Joshua Nelson | -0/+18 |
| 2022-09-25 | Use function pointers instead of macro-unrolled loops in rustc_query_impl | Joshua Nelson | -56/+95 |
| 2022-09-24 | separate definitions and `HIR` owners | Takayuki Maeda | -0/+14 |
| 2022-09-24 | Auto merge of #102064 - cjgillot:revert, r=Mark-Simulacrum | bors | -17/+0 |
| 2022-09-23 | rename Unevaluated to UnevaluatedConst | b-naber | -1/+1 |
| 2022-09-22 | Revert "Auto merge of #101620 - cjgillot:compute_lint_levels_by_def, r=oli-obk" | Camille GILLOT | -17/+0 |
| 2022-09-22 | introduce mir::Unevaluated | b-naber | -1/+1 |
| 2022-09-17 | Rollup merge of #101801 - SparrowLii:query_depth_note, r=estebank | Matthias Krüger | -2/+27 |
| 2022-09-16 | Rollup merge of #101787 - compiler-errors:cache-rpitit, r=petrochenkov | Dylan DPC | -0/+6 |
| 2022-09-15 | Auto merge of #101173 - jyn514:simplify-macro-arguments, r=cjgillot | bors | -8/+20 |
| 2022-09-15 | correct span, add help message and add UI test when query depth overflows | SparrowLii | -1/+26 |
| 2022-09-15 | add note for `layout_of` when query depth overflows | SparrowLii | -1/+1 |
| 2022-09-14 | cache collect_trait_impl_trait_tys | Michael Goulet | -0/+6 |
| 2022-09-14 | Correct Key impl for HirId. | Camille GILLOT | -2/+2 |
| 2022-09-14 | Compute `lint_levels` by definition | Deadbeef | -0/+17 |
| 2022-09-14 | Auto merge of #101307 - jyn514:simplify-storage, r=cjgillot | bors | -3/+26 |
| 2022-09-10 | Rollup merge of #101635 - jyn514:queries-new-derived, r=cjgillot | Dylan DPC | -15/+20 |
| 2022-09-09 | Remove unnecessary `TRY_LOAD_FROM_DISK` constant | Joshua Nelson | -5/+1 |
| 2022-09-09 | Move `TRY_LOAD_FROM_DISK` out of `rustc_queries` to `rustc_query_impl` | Joshua Nelson | -0/+3 |
| 2022-09-09 | Remove `cache_on_disk` from `QueryVTable` | Joshua Nelson | -2/+1 |
| 2022-09-09 | Don't create a new `try_load_from_disk` closure for each query | Joshua Nelson | -1/+26 |
| 2022-09-06 | Get rid of the emitted `rustc_query_names` and `rustc_cached_queries` macro | Joshua Nelson | -9/+21 |
| 2022-09-06 | Support doc-comments in `define_dep_nodes` | Joshua Nelson | -2/+2 |
| 2022-09-06 | Further simplify the macros generated by `rustc_queries` | Joshua Nelson | -2/+2 |
| 2022-09-06 | Move `Queries::new` out of the macro | Joshua Nelson | -15/+20 |
| 2022-09-06 | Make `HandleCycleError` an enum instead of a macro-generated closure | Joshua Nelson | -81/+11 |
| 2022-09-01 | Don't create two new closures for each query | Joshua Nelson | -30/+21 |
| 2022-09-01 | Simplify `try_load_from_on_disk_cache` | Joshua Nelson | -8/+9 |
| 2022-09-01 | Move almost all of the function in `query_callbacks` to a generic function | Joshua Nelson | -28/+47 |
| 2022-09-01 | Get rid of `fn recover` | Joshua Nelson | -18/+8 |
| 2022-09-01 | Move `force_with_dep_node` outside the giant macro | Joshua Nelson | -16/+26 |
| 2022-09-01 | Move `try_on_disk_cache` out of the giant macro | Joshua Nelson | -11/+19 |
| 2022-09-01 | Get rid of `make_query` module | Joshua Nelson | -13/+6 |
| 2022-09-01 | tracing::instrument cleanup | Oli Scherer | -1/+1 |
| 2022-08-29 | Replace `rustc_data_structures::thin_vec::ThinVec` with `thin_vec::ThinVec`. | Nicholas Nethercote | -6/+4 |
| 2022-08-27 | Auto merge of #100946 - jyn514:query-system-3, r=cjgillot | bors | -3/+3 |
| 2022-08-25 | Auto merge of #100748 - SparrowLii:query_depth, r=cjgillot | bors | -1/+19 |
| 2022-08-25 | Auto merge of #100436 - jyn514:macro-query-system, r=cjgillot | bors | -80/+89 |
| 2022-08-24 | Remove the `$tcx:tt` parameter from `rustc_query_description` | Joshua Nelson | -1/+1 |
| 2022-08-24 | Simplify the syntax for macros generated by `rustc_queries` | Joshua Nelson | -2/+2 |
| 2022-08-23 | Move most of `make_query` into a generic function, away from the macro | Joshua Nelson | -42/+56 |
| 2022-08-23 | Get rid of some usages of `query_keys` | Joshua Nelson | -7/+6 |
| 2022-08-23 | Remove `$tcx` metavariable from `rustc_query_append` | Joshua Nelson | -34/+30 |
| 2022-08-24 | add `depth_limit` in `QueryVTable` | SparrowLii | -1/+19 |
| 2022-08-20 | rmeta/query cache: don't write string values of preinterned symbols | klensy | -11/+23 |
| 2022-08-20 | Rollup merge of #100723 - 5225225:the-easy-ones, r=compiler-errors | Matthias Krüger | -0/+2 |
| 2022-08-18 | Auto merge of #98851 - klensy:encode_symbols, r=cjgillot | bors | -1/+57 |