about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/query/plumbing.rs
AgeCommit message (Expand)AuthorLines
2025-07-24Use LocalKey<Cell> methods moreCameron Steffen-2/+2
2025-07-05use `is_multiple_of` instead of manual moduloFolkert de Vries-1/+1
2025-04-29Add a jobserver proxy to ensure at least one token is always heldJohn Kåre Alsaker-1/+1
2025-03-26Avoiding calling queries when collecting active queriesJohn Kåre Alsaker-26/+35
2025-03-25Rollup merge of #138581 - Zoxc:abort-handler-if-locked, r=SparrowLiiMatthias Krüger-2/+5
2025-03-21Address commentsJohn Kåre Alsaker-2/+1
2025-03-21Optimize hash map operations in the query systemJohn Kåre Alsaker-29/+41
2025-03-21Update commentsJohn Kåre Alsaker-0/+3
2025-03-21Abort in deadlock handler if we fail to get a query mapJohn Kåre Alsaker-2/+3
2025-03-14Represent diagnostic side effects as dep nodesJohn Kåre Alsaker-38/+22
2025-02-03Notes on types/traits used for in-memory query cachingZalathar-4/+4
2024-12-04Make sure to record deps from cached task in new solver on first runMichael Goulet-3/+5
2024-11-12Delete the `cfg(not(parallel))` serial compilerNoratrieb-7/+2
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-3/+3
2024-08-19Prevent double panic in query system, improve diagnosticsFelix Rath-2/+9
2024-07-29Reformat `use` declarations.Nicholas Nethercote-15/+16
2024-04-30Remove `extern crate tracing` from numerous crates.Nicholas Nethercote-0/+1
2024-03-02Don't panic when waiting on poisoned queriesJohn Kåre Alsaker-3/+2
2024-02-29Overhaul how stashed diagnostics work, again.Nicholas Nethercote-2/+1
2024-02-28Rename `DiagnosticBuilder` as `Diag`.Nicholas Nethercote-2/+2
2024-02-14Use fewer delayed bugs.Nicholas Nethercote-4/+4
2024-01-20Avoid code generation for ThinVec<Diagnostic>'s destructor in the query systemJohn Kåre Alsaker-3/+2
2024-01-10Add `DiagCtxt::delayed_bug`.Nicholas Nethercote-10/+7
2024-01-08Value recovery can take the whole CycleErrorMichael Goulet-4/+4
2024-01-08Make `DiagnosticBuilder::emit` consuming.Nicholas Nethercote-1/+1
2024-01-03Rollup merge of #119086 - RossSmyth:query_panics, r=compiler-errorsLeón Orell Valerian Liehr-11/+21
2024-01-03Add useful panic messages if queries fail to startRoss Smyth-11/+21
2023-12-24Remove more `Session` methods that duplicate `DiagCtxt` methods.Nicholas Nethercote-1/+1
2023-12-24Remove `Session` methods that duplicate `DiagCtxt` methods.Nicholas Nethercote-4/+4
2023-12-23Give `DiagnosticBuilder` a default type.Nicholas Nethercote-2/+2
2023-12-02Rename `HandlerInner::delay_span_bug` as `HandlerInner::span_delayed_bug`.Nicholas Nethercote-2/+2
2023-11-27QueryContext: rename try_collect_active_jobs -> collect_active_jobs and chang...klensy-5/+2
2023-11-22print query map for deadlock when using parallel front endSparrowLii-1/+1
2023-11-21Fix `clippy::needless_borrow` in the compilerNilstrieb-5/+5
2023-10-26Stash and cancel cycle errors for auto trait leakage in opaquesMichael Goulet-1/+12
2023-10-13Format all the let chains in compilerMichael Goulet-1/+3
2023-09-25Rename `cold_path` to `outline`John Kåre Alsaker-2/+2
2023-09-21Move `DepKind` to `rustc_query_system` and define it as `u16`John Kåre Alsaker-38/+32
2023-09-08Add optimized lock methods for `Sharded`John Kåre Alsaker-3/+3
2023-08-30Don't use `wait_for_query` without the Rayon thread poolJohn Kåre Alsaker-12/+13
2023-08-29Auto merge of #114894 - Zoxc:sharded-cfg-cleanup2, r=cjgillotbors-43/+8
2023-08-27Pass ErrorGuaranteed to cycle errorMichael Goulet-4/+4
2023-08-25Fix waiting on a query that panickedJohn Kåre Alsaker-1/+12
2023-08-24Optimize `lock_shards`John Kåre Alsaker-5/+3
2023-08-24Remove conditional use of `Sharded` from query stateJohn Kåre Alsaker-43/+10
2023-07-05Remove a redundant argumentOli Scherer-11/+5
2023-06-06Don't hold the active queries lock while calling `make_query`John Kåre Alsaker-4/+11
2023-05-17Delay a bug when overwriting fed value.Camille GILLOT-10/+16
2023-05-14Specialize query execution for incremental and non-incrementalJohn Kåre Alsaker-10/+36
2023-04-30Use dynamic dispatch for queriesJohn Kåre Alsaker-48/+33