summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/dep_graph
AgeCommit message (Expand)AuthorLines
2021-10-20Inline DepNodeParams methods.Camille GILLOT-1/+4
2021-10-20Store node_intern_event_id in CurrentDepGraph.Camille GILLOT-22/+24
2021-10-20Build jump table at runtime.Camille GILLOT-4/+4
2021-10-20Invoke callbacks from rustc_middle.Camille GILLOT-4/+9
2021-10-20Merge two query callbacks arrays.Camille GILLOT-13/+16
2021-10-20Drop has_params.Camille GILLOT-5/+2
2021-10-20Make hash_result an Option.Camille GILLOT-7/+8
2021-10-20Rollup merge of #87404 - rylev:artifact-size-profiling, r=wesleywiserYuki Okushi-3/+7
2021-10-07Add support for artifact size profilingRyan Levick-3/+7
2021-10-06Query the fingerprint style during key reconstructionMark Rousskov-7/+28
2021-10-03Access StableHashingContext in rustc_query_system.Camille GILLOT-16/+11
2021-09-18Auto merge of #82183 - michaelwoerister:lazier-defpathhash-loading2, r=wesley...bors-28/+0
2021-09-15Use explicit log level in tracing instrument macroTomasz Miąsko-2/+2
2021-09-14Remove RawDefId tracking infrastructure from incr. comp. framework.Michael Woerister-28/+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-07Auto merge of #85903 - bjorn3:rustc_serialize_cleanup, r=varkorbors-6/+6
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-06-01Remove unused functions and arguments from rustc_serializebjorn3-6/+6
2021-05-30Auto merge of #85319 - cjgillot:query-simp, r=Mark-Simulacrumbors-118/+113
2021-05-22Get rid of PreviousDepGraph.Camille GILLOT-71/+42
2021-05-15Make the fast path faster.Camille GILLOT-1/+1
2021-05-15Refactor try_mark_previous_green.Camille GILLOT-117/+112
2021-04-08Fix outdated crate names in compiler docspierwill-1/+1
2021-03-31Enable debugging the dep-graph without debug-assertions.Camille GILLOT-9/+5
2021-03-30Also profile finishing the encoding.Camille GILLOT-3/+8
2021-03-30Adjust profiling.Camille GILLOT-10/+32
2021-03-30Address review.Camille GILLOT-49/+43
2021-03-30Add documentation.Camille GILLOT-0/+12
2021-03-30Simplify tracking the encoder state.Camille GILLOT-80/+72
2021-03-30Remove the parallel version.Camille GILLOT-135/+13
2021-03-30Fix parallel compiler.Camille GILLOT-1/+3
2021-03-30Fix tests.Camille GILLOT-5/+21
2021-03-30Do not allocate in decoder.Camille GILLOT-24/+34
2021-03-30Stream the dep-graph to a file.Camille GILLOT-832/+568
2021-03-27Remove (lots of) dead codeJoshua Nelson-11/+3
2021-02-20Access the session directly from DepContext.Camille GILLOT-7/+11
2021-02-19Use a QueryContext for try_mark_green.Camille GILLOT-28/+4
2021-02-19Move try_load_from_on_disk_cache to the QueryContext.Camille GILLOT-5/+4
2021-02-19Decouple QueryContext from DepContext.Camille GILLOT-6/+28
2021-02-19Don't require a QueryContext to access the DepGraph.Camille GILLOT-1/+4
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-95/+321
2021-01-14Use Option::map_or instead of `.map(..).unwrap_or(..)`LingMan-1/+1
2021-01-12Serialize dependency graph directly from DepGraphTyson Nottingham-95/+321