about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/query/plumbing.rs
AgeCommit message (Expand)AuthorLines
2023-01-05Fix `uninlined_format_args` for some compiler cratesnils-7/+5
2023-01-02Abolish `QueryVTable` in favour of more assoc items on `QueryConfig`Nilstrieb-64/+49
2022-12-24Rollup merge of #105975 - jeremystucki:rustc-remove-needless-lifetimes, r=eholkMatthias Krüger-2/+2
2022-12-23Use DepKind instead of &strgimbles-37/+42
2022-12-20rustc: Remove needless lifetimesJeremy Stucki-2/+2
2022-11-29Sanity check computed value for feeable queries.Camille GILLOT-1/+17
2022-11-29Expand hash check.Camille GILLOT-14/+18
2022-11-06Rename `Ctxt` and `CTX` to `Tcx` and `Qcx`Nilstrieb-56/+56
2022-11-06Rename `tcx` to `qcx` when it's a `QueryContext`Nilstrieb-73/+73
2022-11-06Improve tracing loggingNilstrieb-2/+2
2022-11-06Rename `incremental_verify_ich_cold` to `incremental_verify_ich_failed`Nilstrieb-8/+12
2022-11-05Merge `QueryDescription` into `QueryConfig`Nilstrieb-3/+5
2022-10-07Rewrite representabilityCameron Steffen-5/+6
2022-09-09Remove `cache_on_disk` from `QueryVTable`Joshua Nelson-3/+3
2022-09-06Make `HandleCycleError` an enum instead of a macro-generated closureJoshua Nelson-3/+35
2022-09-01Auto merge of #100869 - nnethercote:replace-ThinVec, r=spastorinobors-1/+1
2022-08-31migrate rustc_query_system to use SessionDiagnosticYuanheng Li-9/+5
2022-08-29Replace `rustc_data_structures::thin_vec::ThinVec` with `thin_vec::ThinVec`.Nicholas Nethercote-1/+1
2022-08-24add `depth_limit` in `QueryVTable`SparrowLii-12/+16
2022-07-20consistently use VTable over Vtable (matching stable stdlib API RawWakerVTable)Ralf Jung-6/+6
2022-07-13Rename `debugging_opts` to `unstable_opts`Joshua Nelson-2/+2
2022-07-06Allow to create definitions inside the query system.Camille GILLOT-2/+1
2022-06-18Remove `likely!` and `unlikely!` macro from compilerGary Guo-7/+9
2022-05-04Enable tracing for all queryiesOli Scherer-1/+1
2022-04-05errors: implement fallback diagnostic translationDavid Wood-2/+2
2022-03-02rename ErrorReported -> ErrorGuaranteedmark-2/+2
2022-02-27Auto merge of #94084 - Mark-Simulacrum:drop-sharded, r=cjgillotbors-109/+71
2022-02-23rustc_errors: let `DiagnosticBuilder::emit` return a "guarantee of emission".Eduard-Mihai Burtescu-2/+2
2022-02-20Refactor Sharded out of non-parallel active query mapMark Rousskov-27/+51
2022-02-20Inline QueryStateShard into QueryStateMark Rousskov-17/+7
2022-02-20Delete QueryLookupMark Rousskov-24/+8
2022-02-20Move Sharded maps into each QueryCache implMark Rousskov-46/+10
2022-02-08Switch QueryJobId to a single global counterMark Rousskov-58/+31
2022-01-08Auto merge of #91919 - Aaron1011:query-recursive-read, r=michaelwoeristerbors-2/+7
2021-12-23Address review commentsAaron Hill-8/+7
2021-12-23Some cleanupAaron Hill-4/+4
2021-12-23Ban deps only during query loading from diskAaron Hill-3/+9
2021-12-23Error if we try to read dep during deserializationAaron Hill-3/+3
2021-12-21Add `#[rustc_clean(loaded_from_disk)]` to assert loading of query resultAaron Hill-0/+4
2021-11-22Manually outline error on incremental_verify_ichMark Rousskov-24/+73
2021-10-28Enable verification for 1/32th of queries loaded from diskMark Rousskov-1/+14
2021-10-23Build the query vtable directly.Camille GILLOT-4/+4
2021-10-21Do not depend on the stored value when trying to cache on disk.Camille GILLOT-1/+1
2021-10-20Address review.Camille GILLOT-1/+1
2021-10-20Compute query vtable manually.Camille GILLOT-17/+11
2021-10-20Build jump table at runtime.Camille GILLOT-55/+16
2021-10-20Merge two query callbacks arrays.Camille GILLOT-9/+9
2021-10-20Make hash_result an Option.Camille GILLOT-5/+5
2021-10-16Adopt let_else across the compilerest31-4/+2
2021-10-11Remove built-in cache_hit trackingMark Rousskov-22/+1