Skip to content

Commit c43b1a0

Browse files
committed
Convert SerializedDepGraph to be a struct-of-arrays
Fixes #47326
1 parent 5508b27 commit c43b1a0

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

src/librustc/dep_graph/graph.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -476,10 +476,8 @@ impl DepGraph {
476476
fingerprints.resize(current_dep_graph.nodes.len(), Fingerprint::ZERO);
477477
}
478478

479-
let nodes: IndexVec<_, (DepNode, Fingerprint)> =
480-
current_dep_graph.nodes.iter_enumerated().map(|(idx, &dep_node)| {
481-
(dep_node, fingerprints[idx])
482-
}).collect();
479+
let fingerprints = fingerprints.clone().convert_index_type();
480+
let nodes = current_dep_graph.nodes.clone().convert_index_type();
483481

484482
let total_edge_count: usize = current_dep_graph.edges.iter()
485483
.map(|v| v.len())
@@ -503,6 +501,7 @@ impl DepGraph {
503501

504502
SerializedDepGraph {
505503
nodes,
504+
fingerprints,
506505
edge_list_indices,
507506
edge_list_data,
508507
}

src/librustc/dep_graph/prev.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ impl PreviousDepGraph {
2323
pub fn new(data: SerializedDepGraph) -> PreviousDepGraph {
2424
let index: FxHashMap<_, _> = data.nodes
2525
.iter_enumerated()
26-
.map(|(idx, &(dep_node, _))| (dep_node, idx))
26+
.map(|(idx, &dep_node)| (dep_node, idx))
2727
.collect();
2828
PreviousDepGraph { data, index }
2929
}
@@ -41,7 +41,7 @@ impl PreviousDepGraph {
4141

4242
#[inline]
4343
pub fn index_to_node(&self, dep_node_index: SerializedDepNodeIndex) -> DepNode {
44-
self.data.nodes[dep_node_index].0
44+
self.data.nodes[dep_node_index]
4545
}
4646

4747
#[inline]
@@ -58,14 +58,14 @@ impl PreviousDepGraph {
5858
pub fn fingerprint_of(&self, dep_node: &DepNode) -> Option<Fingerprint> {
5959
self.index
6060
.get(dep_node)
61-
.map(|&node_index| self.data.nodes[node_index].1)
61+
.map(|&node_index| self.data.fingerprints[node_index])
6262
}
6363

6464
#[inline]
6565
pub fn fingerprint_by_index(&self,
6666
dep_node_index: SerializedDepNodeIndex)
6767
-> Fingerprint {
68-
self.data.nodes[dep_node_index].1
68+
self.data.fingerprints[dep_node_index]
6969
}
7070

7171
pub fn node_count(&self) -> usize {

src/librustc/dep_graph/serialized.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ newtype_index!(SerializedDepNodeIndex);
2020
#[derive(Debug, RustcEncodable, RustcDecodable)]
2121
pub struct SerializedDepGraph {
2222
/// The set of all DepNodes in the graph
23-
pub nodes: IndexVec<SerializedDepNodeIndex, (DepNode, Fingerprint)>,
23+
pub nodes: IndexVec<SerializedDepNodeIndex, DepNode>,
24+
/// The set of all Fingerprints in the graph. Each Fingerprint corresponds to
25+
/// the DepNode at the same index in the nodes vector.
26+
pub fingerprints: IndexVec<SerializedDepNodeIndex, Fingerprint>,
2427
/// For each DepNode, stores the list of edges originating from that
2528
/// DepNode. Encoded as a [start, end) pair indexing into edge_list_data,
2629
/// which holds the actual DepNodeIndices of the target nodes.
@@ -35,6 +38,7 @@ impl SerializedDepGraph {
3538
pub fn new() -> SerializedDepGraph {
3639
SerializedDepGraph {
3740
nodes: IndexVec::new(),
41+
fingerprints: IndexVec::new(),
3842
edge_list_indices: IndexVec::new(),
3943
edge_list_data: Vec::new(),
4044
}

src/librustc_data_structures/indexed_vec.rs

+7
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,13 @@ impl<I: Idx, T> IndexVec<I, T> {
503503
(c1, c2)
504504
}
505505
}
506+
507+
pub fn convert_index_type<Ix: Idx>(self) -> IndexVec<Ix, T> {
508+
IndexVec {
509+
raw: self.raw,
510+
_marker: PhantomData,
511+
}
512+
}
506513
}
507514

508515
impl<I: Idx, T: Clone> IndexVec<I, T> {

src/librustc_incremental/persist/save.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ fn encode_dep_graph(tcx: TyCtxt,
162162

163163
let mut counts: FxHashMap<_, Stat> = FxHashMap();
164164

165-
for (i, &(node, _)) in serialized_graph.nodes.iter_enumerated() {
165+
for (i, &node) in serialized_graph.nodes.iter_enumerated() {
166166
let stat = counts.entry(node.kind).or_insert(Stat {
167167
kind: node.kind,
168168
node_counter: 0,

0 commit comments

Comments
 (0)