]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_query_system/src/dep_graph/serialized.rs
Rollup merge of #103216 - cjgillot:issue-103210, r=jackh726
[rust.git] / compiler / rustc_query_system / src / dep_graph / serialized.rs
1 //! The data that we will serialize and deserialize.
2 //!
3 //! The dep-graph is serialized as a sequence of NodeInfo, with the dependencies
4 //! specified inline.  The total number of nodes and edges are stored as the last
5 //! 16 bytes of the file, so we can find them easily at decoding time.
6 //!
7 //! The serialisation is performed on-demand when each node is emitted. Using this
8 //! scheme, we do not need to keep the current graph in memory.
9 //!
10 //! The deserialization is performed manually, in order to convert from the stored
11 //! sequence of NodeInfos to the different arrays in SerializedDepGraph.  Since the
12 //! node and edge count are stored at the end of the file, all the arrays can be
13 //! pre-allocated with the right length.
14
15 use super::query::DepGraphQuery;
16 use super::{DepKind, DepNode, DepNodeIndex};
17 use rustc_data_structures::fingerprint::Fingerprint;
18 use rustc_data_structures::fx::FxHashMap;
19 use rustc_data_structures::profiling::SelfProfilerRef;
20 use rustc_data_structures::sync::Lock;
21 use rustc_index::vec::{Idx, IndexVec};
22 use rustc_serialize::opaque::{FileEncodeResult, FileEncoder, IntEncodedWithFixedSize, MemDecoder};
23 use rustc_serialize::{Decodable, Decoder, Encodable};
24 use smallvec::SmallVec;
25 use std::convert::TryInto;
26
27 // The maximum value of `SerializedDepNodeIndex` leaves the upper two bits
28 // unused so that we can store multiple index types in `CompressedHybridIndex`,
29 // and use those bits to encode which index type it contains.
30 rustc_index::newtype_index! {
31     pub struct SerializedDepNodeIndex {
32         MAX = 0x7FFF_FFFF
33     }
34 }
35
36 /// Data for use when recompiling the **current crate**.
37 #[derive(Debug)]
38 pub struct SerializedDepGraph<K: DepKind> {
39     /// The set of all DepNodes in the graph
40     nodes: IndexVec<SerializedDepNodeIndex, DepNode<K>>,
41     /// The set of all Fingerprints in the graph. Each Fingerprint corresponds to
42     /// the DepNode at the same index in the nodes vector.
43     fingerprints: IndexVec<SerializedDepNodeIndex, Fingerprint>,
44     /// For each DepNode, stores the list of edges originating from that
45     /// DepNode. Encoded as a [start, end) pair indexing into edge_list_data,
46     /// which holds the actual DepNodeIndices of the target nodes.
47     edge_list_indices: IndexVec<SerializedDepNodeIndex, (u32, u32)>,
48     /// A flattened list of all edge targets in the graph. Edge sources are
49     /// implicit in edge_list_indices.
50     edge_list_data: Vec<SerializedDepNodeIndex>,
51     /// Reciprocal map to `nodes`.
52     index: FxHashMap<DepNode<K>, SerializedDepNodeIndex>,
53 }
54
55 impl<K: DepKind> Default for SerializedDepGraph<K> {
56     fn default() -> Self {
57         SerializedDepGraph {
58             nodes: Default::default(),
59             fingerprints: Default::default(),
60             edge_list_indices: Default::default(),
61             edge_list_data: Default::default(),
62             index: Default::default(),
63         }
64     }
65 }
66
67 impl<K: DepKind> SerializedDepGraph<K> {
68     #[inline]
69     pub fn edge_targets_from(&self, source: SerializedDepNodeIndex) -> &[SerializedDepNodeIndex] {
70         let targets = self.edge_list_indices[source];
71         &self.edge_list_data[targets.0 as usize..targets.1 as usize]
72     }
73
74     #[inline]
75     pub fn index_to_node(&self, dep_node_index: SerializedDepNodeIndex) -> DepNode<K> {
76         self.nodes[dep_node_index]
77     }
78
79     #[inline]
80     pub fn node_to_index_opt(&self, dep_node: &DepNode<K>) -> Option<SerializedDepNodeIndex> {
81         self.index.get(dep_node).cloned()
82     }
83
84     #[inline]
85     pub fn fingerprint_of(&self, dep_node: &DepNode<K>) -> Option<Fingerprint> {
86         self.index.get(dep_node).map(|&node_index| self.fingerprints[node_index])
87     }
88
89     #[inline]
90     pub fn fingerprint_by_index(&self, dep_node_index: SerializedDepNodeIndex) -> Fingerprint {
91         self.fingerprints[dep_node_index]
92     }
93
94     pub fn node_count(&self) -> usize {
95         self.index.len()
96     }
97 }
98
99 impl<'a, K: DepKind + Decodable<MemDecoder<'a>>> Decodable<MemDecoder<'a>>
100     for SerializedDepGraph<K>
101 {
102     #[instrument(level = "debug", skip(d))]
103     fn decode(d: &mut MemDecoder<'a>) -> SerializedDepGraph<K> {
104         let start_position = d.position();
105
106         // The last 16 bytes are the node count and edge count.
107         debug!("position: {:?}", d.position());
108         d.set_position(d.data.len() - 2 * IntEncodedWithFixedSize::ENCODED_SIZE);
109         debug!("position: {:?}", d.position());
110
111         let node_count = IntEncodedWithFixedSize::decode(d).0 as usize;
112         let edge_count = IntEncodedWithFixedSize::decode(d).0 as usize;
113         debug!(?node_count, ?edge_count);
114
115         debug!("position: {:?}", d.position());
116         d.set_position(start_position);
117         debug!("position: {:?}", d.position());
118
119         let mut nodes = IndexVec::with_capacity(node_count);
120         let mut fingerprints = IndexVec::with_capacity(node_count);
121         let mut edge_list_indices = IndexVec::with_capacity(node_count);
122         let mut edge_list_data = Vec::with_capacity(edge_count);
123
124         for _index in 0..node_count {
125             let dep_node: DepNode<K> = Decodable::decode(d);
126             let _i: SerializedDepNodeIndex = nodes.push(dep_node);
127             debug_assert_eq!(_i.index(), _index);
128
129             let fingerprint: Fingerprint = Decodable::decode(d);
130             let _i: SerializedDepNodeIndex = fingerprints.push(fingerprint);
131             debug_assert_eq!(_i.index(), _index);
132
133             // Deserialize edges -- sequence of DepNodeIndex
134             let len = d.read_usize();
135             let start = edge_list_data.len().try_into().unwrap();
136             for _ in 0..len {
137                 let edge = Decodable::decode(d);
138                 edge_list_data.push(edge);
139             }
140             let end = edge_list_data.len().try_into().unwrap();
141             let _i: SerializedDepNodeIndex = edge_list_indices.push((start, end));
142             debug_assert_eq!(_i.index(), _index);
143         }
144
145         let index: FxHashMap<_, _> =
146             nodes.iter_enumerated().map(|(idx, &dep_node)| (dep_node, idx)).collect();
147
148         SerializedDepGraph { nodes, fingerprints, edge_list_indices, edge_list_data, index }
149     }
150 }
151
152 #[derive(Debug, Encodable, Decodable)]
153 pub struct NodeInfo<K: DepKind> {
154     node: DepNode<K>,
155     fingerprint: Fingerprint,
156     edges: SmallVec<[DepNodeIndex; 8]>,
157 }
158
159 struct Stat<K: DepKind> {
160     kind: K,
161     node_counter: u64,
162     edge_counter: u64,
163 }
164
165 struct EncoderState<K: DepKind> {
166     encoder: FileEncoder,
167     total_node_count: usize,
168     total_edge_count: usize,
169     stats: Option<FxHashMap<K, Stat<K>>>,
170 }
171
172 impl<K: DepKind> EncoderState<K> {
173     fn new(encoder: FileEncoder, record_stats: bool) -> Self {
174         Self {
175             encoder,
176             total_edge_count: 0,
177             total_node_count: 0,
178             stats: record_stats.then(FxHashMap::default),
179         }
180     }
181
182     fn encode_node(
183         &mut self,
184         node: &NodeInfo<K>,
185         record_graph: &Option<Lock<DepGraphQuery<K>>>,
186     ) -> DepNodeIndex {
187         let index = DepNodeIndex::new(self.total_node_count);
188         self.total_node_count += 1;
189
190         let edge_count = node.edges.len();
191         self.total_edge_count += edge_count;
192
193         if let Some(record_graph) = &record_graph {
194             // Do not ICE when a query is called from within `with_query`.
195             if let Some(record_graph) = &mut record_graph.try_lock() {
196                 record_graph.push(index, node.node, &node.edges);
197             }
198         }
199
200         if let Some(stats) = &mut self.stats {
201             let kind = node.node.kind;
202
203             let stat = stats.entry(kind).or_insert(Stat { kind, node_counter: 0, edge_counter: 0 });
204             stat.node_counter += 1;
205             stat.edge_counter += edge_count as u64;
206         }
207
208         let encoder = &mut self.encoder;
209         node.encode(encoder);
210         index
211     }
212
213     fn finish(self, profiler: &SelfProfilerRef) -> FileEncodeResult {
214         let Self { mut encoder, total_node_count, total_edge_count, stats: _ } = self;
215
216         let node_count = total_node_count.try_into().unwrap();
217         let edge_count = total_edge_count.try_into().unwrap();
218
219         debug!(?node_count, ?edge_count);
220         debug!("position: {:?}", encoder.position());
221         IntEncodedWithFixedSize(node_count).encode(&mut encoder);
222         IntEncodedWithFixedSize(edge_count).encode(&mut encoder);
223         debug!("position: {:?}", encoder.position());
224         // Drop the encoder so that nothing is written after the counts.
225         let result = encoder.finish();
226         if let Ok(position) = result {
227             // FIXME(rylev): we hardcode the dep graph file name so we
228             // don't need a dependency on rustc_incremental just for that.
229             profiler.artifact_size("dep_graph", "dep-graph.bin", position as u64);
230         }
231         result
232     }
233 }
234
235 pub struct GraphEncoder<K: DepKind> {
236     status: Lock<EncoderState<K>>,
237     record_graph: Option<Lock<DepGraphQuery<K>>>,
238 }
239
240 impl<K: DepKind + Encodable<FileEncoder>> GraphEncoder<K> {
241     pub fn new(
242         encoder: FileEncoder,
243         prev_node_count: usize,
244         record_graph: bool,
245         record_stats: bool,
246     ) -> Self {
247         let record_graph =
248             if record_graph { Some(Lock::new(DepGraphQuery::new(prev_node_count))) } else { None };
249         let status = Lock::new(EncoderState::new(encoder, record_stats));
250         GraphEncoder { status, record_graph }
251     }
252
253     pub(crate) fn with_query(&self, f: impl Fn(&DepGraphQuery<K>)) {
254         if let Some(record_graph) = &self.record_graph {
255             f(&record_graph.lock())
256         }
257     }
258
259     pub(crate) fn print_incremental_info(
260         &self,
261         total_read_count: u64,
262         total_duplicate_read_count: u64,
263     ) {
264         let status = self.status.lock();
265         if let Some(record_stats) = &status.stats {
266             let mut stats: Vec<_> = record_stats.values().collect();
267             stats.sort_by_key(|s| -(s.node_counter as i64));
268
269             const SEPARATOR: &str = "[incremental] --------------------------------\
270                                      ----------------------------------------------\
271                                      ------------";
272
273             eprintln!("[incremental]");
274             eprintln!("[incremental] DepGraph Statistics");
275             eprintln!("{}", SEPARATOR);
276             eprintln!("[incremental]");
277             eprintln!("[incremental] Total Node Count: {}", status.total_node_count);
278             eprintln!("[incremental] Total Edge Count: {}", status.total_edge_count);
279
280             if cfg!(debug_assertions) {
281                 eprintln!("[incremental] Total Edge Reads: {}", total_read_count);
282                 eprintln!(
283                     "[incremental] Total Duplicate Edge Reads: {}",
284                     total_duplicate_read_count
285                 );
286             }
287
288             eprintln!("[incremental]");
289             eprintln!(
290                 "[incremental]  {:<36}| {:<17}| {:<12}| {:<17}|",
291                 "Node Kind", "Node Frequency", "Node Count", "Avg. Edge Count"
292             );
293             eprintln!("{}", SEPARATOR);
294
295             for stat in stats {
296                 let node_kind_ratio =
297                     (100.0 * (stat.node_counter as f64)) / (status.total_node_count as f64);
298                 let node_kind_avg_edges = (stat.edge_counter as f64) / (stat.node_counter as f64);
299
300                 eprintln!(
301                     "[incremental]  {:<36}|{:>16.1}% |{:>12} |{:>17.1} |",
302                     format!("{:?}", stat.kind),
303                     node_kind_ratio,
304                     stat.node_counter,
305                     node_kind_avg_edges,
306                 );
307             }
308
309             eprintln!("{}", SEPARATOR);
310             eprintln!("[incremental]");
311         }
312     }
313
314     pub(crate) fn send(
315         &self,
316         profiler: &SelfProfilerRef,
317         node: DepNode<K>,
318         fingerprint: Fingerprint,
319         edges: SmallVec<[DepNodeIndex; 8]>,
320     ) -> DepNodeIndex {
321         let _prof_timer = profiler.generic_activity("incr_comp_encode_dep_graph");
322         let node = NodeInfo { node, fingerprint, edges };
323         self.status.lock().encode_node(&node, &self.record_graph)
324     }
325
326     pub fn finish(self, profiler: &SelfProfilerRef) -> FileEncodeResult {
327         let _prof_timer = profiler.generic_activity("incr_comp_encode_dep_graph");
328         self.status.into_inner().finish(profiler)
329     }
330 }