summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/dep_graph/graph.rs
AgeCommit message (Expand)AuthorLines
2022-07-13Rename `debugging_opts` to `unstable_opts`Joshua Nelson-1/+1
2022-07-09Auto merge of #99028 - tmiasko:inline, r=estebankbors-0/+1
2022-07-07Miscellaneous inlining improvementsTomasz Miąsko-0/+1
2022-07-07Auto merge of #95573 - cjgillot:lower-query, r=michaelwoeristerbors-7/+21
2022-07-06Use a dedicated DepKind for the forever-red node.Camille GILLOT-6/+4
2022-07-06Create a forever red node and use it to force side effects.Camille GILLOT-2/+20
2022-07-06Allow to create definitions inside the query system.Camille GILLOT-4/+2
2022-07-06incr: cache dwarf objects in work productsDavid Wood-2/+6
2022-06-18Remove `likely!` and `unlikely!` macro from compilerGary Guo-1/+1
2022-06-08Use delayed error handling for `Encodable` and `Encoder` infallible.Nicholas Nethercote-1/+1
2022-06-06Make saved_file field of WorkProduct non-optionalbjorn3-1/+1
2022-03-20Take &mut Diagnostic in emit_diagnostic.Camille GILLOT-2/+2
2022-01-08Introduce new `TaskDepsRef` enum to track allow/ignore/forbid statusAaron Hill-51/+70
2022-01-08Auto merge of #91919 - Aaron1011:query-recursive-read, r=michaelwoeristerbors-0/+69
2021-12-23Adjust wording of commentAaron Hill-8/+13
2021-12-23Address review commentsAaron Hill-1/+57
2021-12-23Error if we try to read dep during deserializationAaron Hill-0/+8
2021-12-21Add `#[rustc_clean(loaded_from_disk)]` to assert loading of query resultAaron Hill-0/+14
2021-10-20Store node_intern_event_id in CurrentDepGraph.Camille GILLOT-22/+24
2021-10-20Build jump table at runtime.Camille GILLOT-2/+2
2021-10-20Invoke callbacks from rustc_middle.Camille GILLOT-4/+3
2021-10-20Merge two query callbacks arrays.Camille GILLOT-5/+5
2021-10-20Make hash_result an Option.Camille GILLOT-7/+8
2021-10-03Access StableHashingContext in rustc_query_system.Camille GILLOT-6/+6
2021-09-14Remove RawDefId tracking infrastructure from incr. comp. framework.Michael Woerister-14/+0
2021-08-22Unify `with_task` functions.Camille GILLOT-86/+69
2021-08-22Remove try_mark_green_and_read.Camille GILLOT-13/+2
2021-08-22Move assertion inwards.Camille GILLOT-3/+18
2021-07-25Create `QuerySideEffects` and use it for diagnosticsAaron Hill-49/+14
2021-07-07Add docs to new methodsRyan Levick-1/+2
2021-07-07Profile incremental hashingRyan Levick-3/+24
2021-06-01Make the reasoning more explicit.Camille GILLOT-5/+9
2021-06-01Avoid creating anonymous nodes with zero or one dependency.Camille GILLOT-27/+49
2021-05-30Auto merge of #85319 - cjgillot:query-simp, r=Mark-Simulacrumbors-118/+113
2021-05-22Get rid of PreviousDepGraph.Camille GILLOT-8/+7
2021-05-15Make the fast path faster.Camille GILLOT-1/+1
2021-05-15Refactor try_mark_previous_green.Camille GILLOT-117/+112
2021-03-30Also profile finishing the encoding.Camille GILLOT-2/+6
2021-03-30Adjust profiling.Camille GILLOT-10/+29
2021-03-30Address review.Camille GILLOT-40/+32
2021-03-30Stream the dep-graph to a file.Camille GILLOT-734/+188
2021-03-27Remove (lots of) dead codeJoshua Nelson-2/+2
2021-02-20Access the session directly from DepContext.Camille GILLOT-3/+3
2021-02-19Use a QueryContext for try_mark_green.Camille GILLOT-4/+4
2021-02-19Move try_load_from_on_disk_cache to the QueryContext.Camille GILLOT-2/+4
2021-02-19Decouple QueryContext from DepContext.Camille GILLOT-6/+7
2021-02-18Print -Ztime-passes (and misc stats/logs) on stderr, not stdout.Eduard-Mihai Burtescu-14/+14
2021-01-19Auto merge of #80957 - tgnottingham:direct_serialize_depgraph, r=michaelwoeri...bors-93/+242
2021-01-14Use Option::map_or instead of `.map(..).unwrap_or(..)`LingMan-1/+1
2021-01-12Serialize dependency graph directly from DepGraphTyson Nottingham-93/+242