about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/dep_graph
AgeCommit message (Expand)AuthorLines
2023-10-08Remove -Zdep-tasks.Camille GILLOT-22/+4
2023-09-21Move `DepKind` to `rustc_query_system` and define it as `u16`John Kåre Alsaker-216/+266
2023-09-20Auto merge of #115542 - saethlin:fileencoder-is-bufwriter, r=WaffleLapkinbors-3/+5
2023-09-20PR feedbackBen Kimock-4/+1
2023-09-12Use `UnhashMap` for the indexJohn Kåre Alsaker-2/+3
2023-09-12Encode the number of dep kinds encountered in the dep graphJohn Kåre Alsaker-3/+15
2023-09-12Store a index per dep node kindJohn Kåre Alsaker-7/+14
2023-09-10Reimplement FileEncoder with a small-write optimizationBen Kimock-3/+8
2023-09-08Add optimized lock methods for `Sharded`John Kåre Alsaker-9/+3
2023-09-06Add comments with the same level of detail as the PR descriptionBen Kimock-12/+54
2023-09-04Use a specialized varint + bitpacking scheme for DepGraph encodingBen Kimock-44/+339
2023-08-16Keep SHARDS fixed instead of a function of `cfg!(parallel_compiler)`John Kåre Alsaker-1/+1
2023-08-13Pass WorkProductMap to build_dep_graph instead of FxIndexMapbjorn3-5/+7
2023-08-04replace few explicit use of parking_lot with rustc_data_structures::sync oncesklensy-2/+1
2023-07-30inline format!() args up to and including rustc_middleMatthias Krüger-2/+2
2023-06-08Removed stable/unstable sort arg from into_sorted_stable_ord, fixed a few mis...Andrew Xie-1/+5
2023-06-04Fixed failing test + minor cleanupAndrew Xie-1/+2
2023-06-04Switched some uses to UnordMapAndrew Xie-1/+8
2023-06-04Removed use of iteration through a HashMap/HashSet in rustc_incremental and r...Andrew Xie-5/+5
2023-05-24Use `Option::is_some_and` and `Result::is_ok_and` in the compilerMaybe Waffle-3/+3
2023-04-27Rollup merge of #110886 - nnethercote:dep-graph-cleanups, r=cjgillotMatthias Krüger-64/+32
2023-04-27Factor out common code in `intern_node`.Nicholas Nethercote-54/+26
2023-04-27Clean up `with_task`.Nicholas Nethercote-10/+6
2023-04-26Auto merge of #110634 - saethlin:pointy-decoder, r=cjgillotbors-9/+7
2023-04-24Split `{Idx, IndexVec, IndexSlice}` into their own modulesMaybe Waffle-3/+3
2023-04-23Rewrite MemDecoder around pointers not a sliceBen Kimock-9/+7
2023-04-17Spelling - compilerJosh Soref-1/+1
2023-04-16Various minor Idx-related tweaksScott McMurray-4/+1
2023-04-12Auto merge of #109935 - michaelwoerister:fix-feed-in-eval-always, r=cjgillotbors-11/+33
2023-04-06Don't rely on `Debug` impl for `Erased`John Kåre Alsaker-1/+8
2023-04-04incr.comp.: Make sure dependencies are recorded when feeding queries during e...Michael Woerister-11/+33
2023-03-27Rollup merge of #109587 - cjgillot:no-hashmap-fingerprint, r=NilstriebMatthias Krüger-10/+4
2023-03-25Use an IndexVec to debug fingerprints.Camille GILLOT-10/+4
2023-03-25Pass `tcx` directlyJohn Kåre Alsaker-4/+0
2023-03-25Split the `if` to release the lock earlierJohn Kåre Alsaker-9/+14
2023-03-25Optimize `incremental_verify_ich`John Kåre Alsaker-14/+20
2023-03-20Auto merge of #109046 - Zoxc:split-execute-job, r=cjgillot,michaelwoeristerbors-0/+1
2023-03-19Add some assertionsJohn Kåre Alsaker-0/+1
2023-03-12Use `Debug` for formatting the dep nodesJohn Kåre Alsaker-2/+1
2023-03-12Remove `graph` parameter from `try_force_from_dep_node`John Kåre Alsaker-7/+8
2023-03-12Optimize dep node backtrace and ignore fatal errorsJohn Kåre Alsaker-50/+63
2023-03-09Remove `dep_node_index_of_opt` and `dep_node_index_of`John Kåre Alsaker-12/+2
2023-03-09Address commentsJohn Kåre Alsaker-2/+2
2023-03-09Move dep graph methods to DepGraphData to avoid branches and `unwrap`sJohn Kåre Alsaker-124/+168
2023-02-26Avoid implementing Debug for QueryConfigJohn Kåre Alsaker-0/+9
2023-02-25Add inlining attributes for query system functionsJohn Kåre Alsaker-0/+5
2023-02-24Auto merge of #91742 - cjgillot:force-backtrace, r=estebankbors-11/+45
2023-02-17Auto merge of #108058 - Zoxc:query-ctxtx-byval, r=cjgillotbors-3/+3
2023-02-16`if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)`Maybe Waffle-2/+1
2023-02-14Pass `DepContext` and `QueryContext` by value when practicalJohn Kåre Alsaker-3/+3