Skip to content

Commit d453555

Browse files
committed
Auto merge of #57070 - Zoxc:ser-graph, r=<try>
[do not merge] Revert "Convert SerializedDepGraph to be a struct-of-arrays" Let's check if #49069 was actually helpful. r? @michaelwoerister
2 parents 2d3e909 + 844145f commit d453555

File tree

5 files changed

+16
-19
lines changed

5 files changed

+16
-19
lines changed

src/librustc/dep_graph/graph.rs

+10-3
Original file line numberDiff line numberDiff line change
@@ -506,10 +506,18 @@ impl DepGraph {
506506
}
507507

508508
pub fn serialize(&self) -> SerializedDepGraph {
509+
let mut fingerprints = self.fingerprints.borrow_mut();
509510
let current_dep_graph = self.data.as_ref().unwrap().current.borrow();
510511

511-
let fingerprints = self.fingerprints.borrow().clone().convert_index_type();
512-
let nodes = current_dep_graph.nodes.clone().convert_index_type();
512+
// Make sure we don't run out of bounds below.
513+
if current_dep_graph.nodes.len() > fingerprints.len() {
514+
fingerprints.resize(current_dep_graph.nodes.len(), Fingerprint::ZERO);
515+
}
516+
517+
let nodes: IndexVec<_, (DepNode, Fingerprint)> =
518+
current_dep_graph.nodes.iter_enumerated().map(|(idx, &dep_node)| {
519+
(dep_node, fingerprints[idx])
520+
}).collect();
513521

514522
let total_edge_count: usize = current_dep_graph.edges.iter()
515523
.map(|v| v.len())
@@ -533,7 +541,6 @@ impl DepGraph {
533541

534542
SerializedDepGraph {
535543
nodes,
536-
fingerprints,
537544
edge_list_indices,
538545
edge_list_data,
539546
}

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]
44+
self.data.nodes[dep_node_index].0
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.fingerprints[node_index])
61+
.map(|&node_index| self.data.nodes[node_index].1)
6262
}
6363

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

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

src/librustc/dep_graph/serialized.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ newtype_index! {
2222
#[derive(Debug, RustcEncodable, RustcDecodable, Default)]
2323
pub struct SerializedDepGraph {
2424
/// The set of all DepNodes in the graph
25-
pub nodes: IndexVec<SerializedDepNodeIndex, DepNode>,
26-
/// The set of all Fingerprints in the graph. Each Fingerprint corresponds to
27-
/// the DepNode at the same index in the nodes vector.
28-
pub fingerprints: IndexVec<SerializedDepNodeIndex, Fingerprint>,
25+
pub nodes: IndexVec<SerializedDepNodeIndex, (DepNode, Fingerprint)>,
2926
/// For each DepNode, stores the list of edges originating from that
3027
/// DepNode. Encoded as a [start, end) pair indexing into edge_list_data,
3128
/// which holds the actual DepNodeIndices of the target nodes.

src/librustc_data_structures/indexed_vec.rs

-7
Original file line numberDiff line numberDiff line change
@@ -665,13 +665,6 @@ impl<I: Idx, T> IndexVec<I, T> {
665665
(c1, c2)
666666
}
667667
}
668-
669-
pub fn convert_index_type<Ix: Idx>(self) -> IndexVec<Ix, T> {
670-
IndexVec {
671-
raw: self.raw,
672-
_marker: PhantomData,
673-
}
674-
}
675668
}
676669

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

src/librustc_incremental/persist/save.rs

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

165165
let mut counts: FxHashMap<_, Stat> = FxHashMap::default();
166166

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

0 commit comments

Comments
 (0)