| Age | Commit message (Expand) | Author | Lines |
| 2023-05-24 | Use `Option::is_some_and` and `Result::is_ok_and` in the compiler | Maybe Waffle | -3/+3 |
| 2023-04-27 | Rollup merge of #110886 - nnethercote:dep-graph-cleanups, r=cjgillot | Matthias Krüger | -64/+32 |
| 2023-04-27 | Factor out common code in `intern_node`. | Nicholas Nethercote | -54/+26 |
| 2023-04-27 | Clean up `with_task`. | Nicholas Nethercote | -10/+6 |
| 2023-04-26 | Auto merge of #110634 - saethlin:pointy-decoder, r=cjgillot | bors | -9/+7 |
| 2023-04-24 | Split `{Idx, IndexVec, IndexSlice}` into their own modules | Maybe Waffle | -3/+3 |
| 2023-04-23 | Rewrite MemDecoder around pointers not a slice | Ben Kimock | -9/+7 |
| 2023-04-17 | Spelling - compiler | Josh Soref | -1/+1 |
| 2023-04-16 | Various minor Idx-related tweaks | Scott McMurray | -4/+1 |
| 2023-04-12 | Auto merge of #109935 - michaelwoerister:fix-feed-in-eval-always, r=cjgillot | bors | -11/+33 |
| 2023-04-06 | Don't rely on `Debug` impl for `Erased` | John Kåre Alsaker | -1/+8 |
| 2023-04-04 | incr.comp.: Make sure dependencies are recorded when feeding queries during e... | Michael Woerister | -11/+33 |
| 2023-03-27 | Rollup merge of #109587 - cjgillot:no-hashmap-fingerprint, r=Nilstrieb | Matthias Krüger | -10/+4 |
| 2023-03-25 | Use an IndexVec to debug fingerprints. | Camille GILLOT | -10/+4 |
| 2023-03-25 | Pass `tcx` directly | John Kåre Alsaker | -4/+0 |
| 2023-03-25 | Split the `if` to release the lock earlier | John Kåre Alsaker | -9/+14 |
| 2023-03-25 | Optimize `incremental_verify_ich` | John Kåre Alsaker | -14/+20 |
| 2023-03-20 | Auto merge of #109046 - Zoxc:split-execute-job, r=cjgillot,michaelwoerister | bors | -0/+1 |
| 2023-03-19 | Add some assertions | John Kåre Alsaker | -0/+1 |
| 2023-03-12 | Use `Debug` for formatting the dep nodes | John Kåre Alsaker | -2/+1 |
| 2023-03-12 | Remove `graph` parameter from `try_force_from_dep_node` | John Kåre Alsaker | -7/+8 |
| 2023-03-12 | Optimize dep node backtrace and ignore fatal errors | John Kåre Alsaker | -50/+63 |
| 2023-03-09 | Remove `dep_node_index_of_opt` and `dep_node_index_of` | John Kåre Alsaker | -12/+2 |
| 2023-03-09 | Address comments | John Kåre Alsaker | -2/+2 |
| 2023-03-09 | Move dep graph methods to DepGraphData to avoid branches and `unwrap`s | John Kåre Alsaker | -124/+168 |
| 2023-02-26 | Avoid implementing Debug for QueryConfig | John Kåre Alsaker | -0/+9 |
| 2023-02-25 | Add inlining attributes for query system functions | John Kåre Alsaker | -0/+5 |
| 2023-02-24 | Auto merge of #91742 - cjgillot:force-backtrace, r=estebank | bors | -11/+45 |
| 2023-02-17 | Auto merge of #108058 - Zoxc:query-ctxtx-byval, r=cjgillot | bors | -3/+3 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -2/+1 |
| 2023-02-14 | Pass `DepContext` and `QueryContext` by value when practical | John Kåre Alsaker | -3/+3 |
| 2023-02-06 | Make an optimal cold path for query_cache_hit | John Kåre Alsaker | -1/+1 |
| 2023-01-28 | Use OnDrop. | Camille GILLOT | -39/+32 |
| 2023-01-28 | Attempt to reduce perf impact. | Camille GILLOT | -10/+17 |
| 2023-01-28 | Print a backtrace when query forcing fails. | Camille GILLOT | -11/+45 |
| 2023-01-17 | Remove double spaces after dots in comments | Maybe Waffle | -7/+7 |
| 2023-01-05 | Fix `uninlined_format_args` for some compiler crates | nils | -24/+17 |
| 2022-12-25 | Ignore span references from diagnostics. | Camille GILLOT | -2/+4 |
| 2022-12-18 | A few small cleanups for `newtype_index` | Nilstrieb | -4/+3 |
| 2022-12-18 | Make `#[max]` an attribute in `newtype_index` | Nilstrieb | -1/+1 |
| 2022-12-10 | compiler: remove unnecessary imports and qualified paths | KaDiWa | -2/+1 |
| 2022-12-05 | feed resolver_for_lowering instead of storing it in a field | Oli Scherer | -6/+9 |
| 2022-12-01 | Fill in `def_span` when creating def ids. | Oli Scherer | -1/+2 |
| 2022-11-29 | Expand hash check. | Camille GILLOT | -7/+10 |
| 2022-11-29 | Allow to set a query's result as a side effect. | Camille GILLOT | -0/+82 |
| 2022-11-29 | Sanity check fingerprints in the dep-graph. | Camille GILLOT | -19/+35 |
| 2022-11-27 | Prefer doc comments over `//`-comments in compiler | Maybe Waffle | -12/+12 |
| 2022-11-24 | make `error_reported` check for delayed bugs | Boxy | -1/+1 |
| 2022-11-06 | Rename `Ctxt` and `CTX` to `Tcx` and `Qcx` | Nilstrieb | -29/+29 |
| 2022-11-06 | Rename `tcx` to `qcx` when it's a `QueryContext` | Nilstrieb | -19/+19 |