Searched defs:CurrentDepGraph (Results 1 – 1 of 1) sorted by relevance
1083 pub(super) struct CurrentDepGraph<K: DepKind> { struct1084 encoder: Steal<GraphEncoder<K>>,1085 new_node_to_index: Sharded<FxHashMap<DepNode<K>, DepNodeIndex>>,1086 prev_index_to_index: Lock<IndexVec<SerializedDepNodeIndex, Option<DepNodeIndex>>>,1091 fingerprints: Lock<IndexVec<DepNodeIndex, Option<Fingerprint>>>,1096 forbidden_edge: Option<EdgeFilter<K>>,1123 impl<K: DepKind> CurrentDepGraph<K> { argument