| Age | Commit message (Expand) | Author | Lines |
| 2025-05-07 | Auto merge of #139758 - Zoxc:thread-local-graph, r=oli-obk | bors | -171/+287 |
| 2025-05-06 | Use the portable `AtomicU64` | John Kåre Alsaker | -2/+2 |
| 2025-05-06 | Rename `graph::implementation::Graph` to `LinkedGraph` | Zalathar | -3/+3 |
| 2025-05-05 | Add some comments about thread local indices | John Kåre Alsaker | -1/+5 |
| 2025-05-05 | Tweak index chunk allocation | John Kåre Alsaker | -5/+9 |
| 2025-05-01 | Add some comments | John Kåre Alsaker | -1/+3 |
| 2025-05-01 | Use thread local dep graph encoding | John Kåre Alsaker | -170/+276 |
| 2025-04-29 | Add some comments | John Kåre Alsaker | -0/+2 |
| 2025-04-29 | Add a jobserver proxy to ensure at least one token is always held | John Kåre Alsaker | -6/+10 |
| 2025-04-25 | Auto merge of #139756 - Zoxc:out-of-order-dep-graph, r=oli-obk | bors | -43/+85 |
| 2025-04-23 | Make #![feature(let_chains)] bootstrap conditional in compiler/ | est31 | -1/+1 |
| 2025-04-22 | Make sure there's no duplicate indices in the dep graph | John Kåre Alsaker | -1/+5 |
| 2025-04-22 | Tweak edges | John Kåre Alsaker | -8/+5 |
| 2025-04-22 | Use `IndexVec::from_elem_n` | John Kåre Alsaker | -10/+7 |
| 2025-04-22 | Add index to the dep graph format and encode via `MemEncoder` | John Kåre Alsaker | -39/+83 |
| 2025-04-17 | Rollup merge of #139236 - Zoxc:anon-counter, r=davidtwco | Matthias Krüger | -8/+16 |
| 2025-04-13 | Rollup merge of #139636 - Zoxc:graph-edges-len-u32, r=compiler-errors | Jacob Pratt | -8/+10 |
| 2025-04-10 | Encode dep node edge count as u32 instead of usize | John Kåre Alsaker | -8/+10 |
| 2025-04-05 | Reuse the index from promoted nodes when coloring executed tasks | John Kåre Alsaker | -36/+88 |
| 2025-04-02 | Add a dep kind for use of the anon node with zero dependencies | John Kåre Alsaker | -5/+8 |
| 2025-04-02 | Use a session counter to make anon dep nodes unique | John Kåre Alsaker | -8/+16 |
| 2025-03-30 | Encode synthetic by-move coroutine body with a different DefPathData | Michael Goulet | -3/+4 |
| 2025-03-27 | Rollup merge of #138844 - petrochenkov:cfgtrace2, r=nnethercote | Jacob Pratt | -1/+1 |
| 2025-03-27 | Rollup merge of #138672 - Zoxc:deferred-queries-in-deadlock-handler, r=oli-obk | Stuart Cook | -100/+217 |
| 2025-03-26 | Auto merge of #138824 - Zoxc:dep-graph-no-prev-map, r=oli-obk | bors | -185/+144 |
| 2025-03-26 | expand: Leave traces when expanding `cfg` attributes | Vadim Petrochenkov | -1/+1 |
| 2025-03-26 | Use a function to create `QueryStackDeferred` to ensure context is Copy | John Kåre Alsaker | -3/+7 |
| 2025-03-26 | Avoiding calling queries when collecting active queries | John Kåre Alsaker | -100/+213 |
| 2025-03-25 | Rollup merge of #138874 - Zoxc:waiter-race, r=SparrowLii,davidtwco | Jacob Pratt | -25/+12 |
| 2025-03-25 | Rollup merge of #138581 - Zoxc:abort-handler-if-locked, r=SparrowLii | Matthias Krüger | -4/+12 |
| 2025-03-24 | Remove `prev_index_to_index` field from `CurrentDepGraph` | John Kåre Alsaker | -185/+144 |
| 2025-03-24 | Auto merge of #138629 - Zoxc:graph-anon-hashmap, r=oli-obk | bors | -49/+115 |
| 2025-03-24 | Remove `QueryWaiter::notify` | John Kåre Alsaker | -8/+2 |
| 2025-03-24 | Batch mark waiters as unblocked when resuming in the deadlock handler | John Kåre Alsaker | -2/+8 |
| 2025-03-24 | Revert "resume one waiter at a call" | John Kåre Alsaker | -15/+2 |
| 2025-03-21 | Address comments | John Kåre Alsaker | -4/+8 |
| 2025-03-21 | Use hashbrown from crates.io | John Kåre Alsaker | -2/+5 |
| 2025-03-21 | Optimize hash map operations in the query system | John Kåre Alsaker | -29/+43 |
| 2025-03-21 | Update comments | John Kåre Alsaker | -0/+3 |
| 2025-03-21 | Abort in deadlock handler if we fail to get a query map | John Kåre Alsaker | -4/+5 |
| 2025-03-20 | Use `-Wunused_crate_dependencies` for compiler crates. | Nicholas Nethercote | -1/+0 |
| 2025-03-19 | Allow duplicates for side effect nodes | John Kåre Alsaker | -2/+5 |
| 2025-03-19 | Pass in dep kind names to the duplicate dep node check | John Kåre Alsaker | -4/+7 |
| 2025-03-19 | Rename `intern_new_node` to `alloc_new_node` | John Kåre Alsaker | -4/+4 |
| 2025-03-19 | Use `ShardedHashMap` for `anon_node_to_index` | John Kåre Alsaker | -28/+9 |
| 2025-03-19 | Use `nodes_newly_allocated_in_current_session` to lookup forbidden reads | John Kåre Alsaker | -5/+18 |
| 2025-03-19 | Check for duplicate dep nodes when creating the index | John Kåre Alsaker | -1/+8 |
| 2025-03-19 | Add fixme | John Kåre Alsaker | -0/+1 |
| 2025-03-19 | Outline some cold code and turn on hash collision detection with debug_assert... | John Kåre Alsaker | -16/+21 |
| 2025-03-19 | Only use the new node hashmap for anonymous nodes. | Camille GILLOT | -48/+101 |