| Age | Commit message (Expand) | Author | Lines |
| 2023-08-27 | Pass ErrorGuaranteed to cycle error | Michael Goulet | -2/+2 |
| 2023-07-23 | fix couple of clippy findings: | Matthias Krüger | -1/+1 |
| 2023-06-27 | Avoid calling queries during query stack printing | Oli Scherer | -3/+3 |
| 2023-06-21 | Make queries traceable again | Oli Scherer | -1/+9 |
| 2023-05-21 | Add comment | John Kåre Alsaker | -0/+2 |
| 2023-05-21 | Replace `QueryStruct` with arrays local to `rustc_query_impl` | John Kåre Alsaker | -64/+66 |
| 2023-05-19 | Merge some query impl modules into one | John Kåre Alsaker | -143/+125 |
| 2023-05-18 | Merge query property modules into one | John Kåre Alsaker | -22/+23 |
| 2023-05-18 | Auto merge of #108938 - chenyukang:yukang/fix-107910-shorten-ice, r=cjgillot | bors | -35/+58 |
| 2023-05-17 | Fix #107910, Shorten backtraces in ICEs | yukang | -35/+58 |
| 2023-05-17 | Finish move of query.rs | John Kåre Alsaker | -2/+1 |
| 2023-05-14 | Specialize query execution for incremental and non-incremental | John Kåre Alsaker | -5/+33 |
| 2023-04-30 | Use dynamic dispatch for queries | John Kåre Alsaker | -143/+105 |
| 2023-04-26 | Remove QueryEngine trait | John Kåre Alsaker | -176/+127 |
| 2023-04-18 | Store hashes in special types so they aren't accidentally encoded as numbers | Ben Kimock | -2/+2 |
| 2023-04-06 | Address comments | John Kåre Alsaker | -12/+5 |
| 2023-04-06 | Don't rely on `Debug` impl for `Erased` | John Kåre Alsaker | -1/+6 |
| 2023-04-06 | Erase query cache values | John Kåre Alsaker | -12/+38 |
| 2023-03-21 | Use local key in providers | Michael Goulet | -9/+9 |
| 2023-03-11 | Ensure value is on the on-disk cache before returning. | Camille GILLOT | -0/+23 |
| 2023-02-26 | Derive Default for query structs | John Kåre Alsaker | -9/+1 |
| 2023-02-26 | Avoid implementing Debug for QueryConfig | John Kåre Alsaker | -1/+1 |
| 2023-02-26 | Make `rustc_query_system` take `QueryConfig` by instance. | John Kåre Alsaker | -33/+87 |
| 2023-02-25 | Move `ensure_sufficient_stack` to `try_execute_query` callers | John Kåre Alsaker | -3/+1 |
| 2023-02-17 | Auto merge of #108058 - Zoxc:query-ctxtx-byval, r=cjgillot | bors | -13/+13 |
| 2023-02-16 | Move provider fields back to rustc_query_impl | John Kåre Alsaker | -9/+16 |
| 2023-02-16 | Factor query arena allocation out from query caches | John Kåre Alsaker | -29/+36 |
| 2023-02-14 | Pass `DepContext` and `QueryContext` by value when practical | John Kåre Alsaker | -13/+13 |
| 2023-02-09 | Simplify `tls::enter_context`. | Nicholas Nethercote | -1/+1 |
| 2023-02-02 | Don't cause a cycle when formatting query description that references a FnDef | Michael Goulet | -5/+8 |
| 2023-01-05 | Fix `uninlined_format_args` for some compiler crates | nils | -1/+1 |
| 2023-01-02 | Abolish `QueryVTable` in favour of more assoc items on `QueryConfig` | Nilstrieb | -18/+22 |
| 2022-12-23 | Use DepKind instead of &str | gimbles | -11/+13 |
| 2022-11-29 | Sanity check computed value for feeable queries. | Camille GILLOT | -0/+13 |
| 2022-11-29 | Make verbose query description more useful. | Camille GILLOT | -1/+1 |
| 2022-11-24 | Auto merge of #103808 - cjgillot:vec-cache, r=TaKO8Ki | bors | -1/+1 |
| 2022-11-05 | Merge `QueryDescription` into `QueryConfig` | Nilstrieb | -16/+13 |
| 2022-11-01 | Move keys module. | Camille GILLOT | -1/+1 |
| 2022-10-14 | Remove the `describe` method from the `QueryDescription` trait | nils | -8/+4 |
| 2022-10-14 | Get rid of `rustc_query_description!` | Nilstrieb | -1/+8 |
| 2022-10-07 | Rewrite representability | Cameron Steffen | -4/+4 |
| 2022-09-26 | Auto merge of #101785 - jyn514:query-struct-fn-ptrs, r=cjgillot | bors | -38/+86 |
| 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 | -38/+86 |
| 2022-09-17 | Rollup merge of #101801 - SparrowLii:query_depth_note, r=estebank | Matthias Krüger | -2/+27 |
| 2022-09-15 | Auto merge of #101173 - jyn514:simplify-macro-arguments, r=cjgillot | bors | -4/+16 |
| 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 | Auto merge of #101307 - jyn514:simplify-storage, r=cjgillot | bors | -2/+25 |
| 2022-09-10 | Rollup merge of #101635 - jyn514:queries-new-derived, r=cjgillot | Dylan DPC | -15/+20 |