]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_data_structures/src/obligation_forest/mod.rs
Auto merge of #89343 - Mark-Simulacrum:no-args-queries, r=cjgillot
[rust.git] / compiler / rustc_data_structures / src / obligation_forest / mod.rs
1 //! The `ObligationForest` is a utility data structure used in trait
2 //! matching to track the set of outstanding obligations (those not yet
3 //! resolved to success or error). It also tracks the "backtrace" of each
4 //! pending obligation (why we are trying to figure this out in the first
5 //! place).
6 //!
7 //! ### External view
8 //!
9 //! `ObligationForest` supports two main public operations (there are a
10 //! few others not discussed here):
11 //!
12 //! 1. Add a new root obligations (`register_obligation`).
13 //! 2. Process the pending obligations (`process_obligations`).
14 //!
15 //! When a new obligation `N` is added, it becomes the root of an
16 //! obligation tree. This tree can also carry some per-tree state `T`,
17 //! which is given at the same time. This tree is a singleton to start, so
18 //! `N` is both the root and the only leaf. Each time the
19 //! `process_obligations` method is called, it will invoke its callback
20 //! with every pending obligation (so that will include `N`, the first
21 //! time). The callback also receives a (mutable) reference to the
22 //! per-tree state `T`. The callback should process the obligation `O`
23 //! that it is given and return a `ProcessResult`:
24 //!
25 //! - `Unchanged` -> ambiguous result. Obligation was neither a success
26 //!   nor a failure. It is assumed that further attempts to process the
27 //!   obligation will yield the same result unless something in the
28 //!   surrounding environment changes.
29 //! - `Changed(C)` - the obligation was *shallowly successful*. The
30 //!   vector `C` is a list of subobligations. The meaning of this is that
31 //!   `O` was successful on the assumption that all the obligations in `C`
32 //!   are also successful. Therefore, `O` is only considered a "true"
33 //!   success if `C` is empty. Otherwise, `O` is put into a suspended
34 //!   state and the obligations in `C` become the new pending
35 //!   obligations. They will be processed the next time you call
36 //!   `process_obligations`.
37 //! - `Error(E)` -> obligation failed with error `E`. We will collect this
38 //!   error and return it from `process_obligations`, along with the
39 //!   "backtrace" of obligations (that is, the list of obligations up to
40 //!   and including the root of the failed obligation). No further
41 //!   obligations from that same tree will be processed, since the tree is
42 //!   now considered to be in error.
43 //!
44 //! When the call to `process_obligations` completes, you get back an `Outcome`,
45 //! which includes three bits of information:
46 //!
47 //! - `completed`: a list of obligations where processing was fully
48 //!   completed without error (meaning that all transitive subobligations
49 //!   have also been completed). So, for example, if the callback from
50 //!   `process_obligations` returns `Changed(C)` for some obligation `O`,
51 //!   then `O` will be considered completed right away if `C` is the
52 //!   empty vector. Otherwise it will only be considered completed once
53 //!   all the obligations in `C` have been found completed.
54 //! - `errors`: a list of errors that occurred and associated backtraces
55 //!   at the time of error, which can be used to give context to the user.
56 //! - `stalled`: if true, then none of the existing obligations were
57 //!   *shallowly successful* (that is, no callback returned `Changed(_)`).
58 //!   This implies that all obligations were either errors or returned an
59 //!   ambiguous result, which means that any further calls to
60 //!   `process_obligations` would simply yield back further ambiguous
61 //!   results. This is used by the `FulfillmentContext` to decide when it
62 //!   has reached a steady state.
63 //!
64 //! ### Implementation details
65 //!
66 //! For the most part, comments specific to the implementation are in the
67 //! code. This file only contains a very high-level overview. Basically,
68 //! the forest is stored in a vector. Each element of the vector is a node
69 //! in some tree. Each node in the vector has the index of its dependents,
70 //! including the first dependent which is known as the parent. It also
71 //! has a current state, described by `NodeState`. After each processing
72 //! step, we compress the vector to remove completed and error nodes, which
73 //! aren't needed anymore.
74
75 use crate::fx::{FxHashMap, FxHashSet};
76
77 use std::cell::Cell;
78 use std::collections::hash_map::Entry;
79 use std::fmt::Debug;
80 use std::hash;
81 use std::marker::PhantomData;
82
83 mod graphviz;
84
85 #[cfg(test)]
86 mod tests;
87
88 pub trait ForestObligation: Clone + Debug {
89     type CacheKey: Clone + hash::Hash + Eq + Debug;
90
91     /// Converts this `ForestObligation` suitable for use as a cache key.
92     /// If two distinct `ForestObligations`s return the same cache key,
93     /// then it must be sound to use the result of processing one obligation
94     /// (e.g. success for error) for the other obligation
95     fn as_cache_key(&self) -> Self::CacheKey;
96 }
97
98 pub trait ObligationProcessor {
99     type Obligation: ForestObligation;
100     type Error: Debug;
101
102     fn process_obligation(
103         &mut self,
104         obligation: &mut Self::Obligation,
105     ) -> ProcessResult<Self::Obligation, Self::Error>;
106
107     /// As we do the cycle check, we invoke this callback when we
108     /// encounter an actual cycle. `cycle` is an iterator that starts
109     /// at the start of the cycle in the stack and walks **toward the
110     /// top**.
111     ///
112     /// In other words, if we had O1 which required O2 which required
113     /// O3 which required O1, we would give an iterator yielding O1,
114     /// O2, O3 (O1 is not yielded twice).
115     fn process_backedge<'c, I>(&mut self, cycle: I, _marker: PhantomData<&'c Self::Obligation>)
116     where
117         I: Clone + Iterator<Item = &'c Self::Obligation>;
118 }
119
120 /// The result type used by `process_obligation`.
121 #[derive(Debug)]
122 pub enum ProcessResult<O, E> {
123     Unchanged,
124     Changed(Vec<O>),
125     Error(E),
126 }
127
128 #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]
129 struct ObligationTreeId(usize);
130
131 type ObligationTreeIdGenerator =
132     std::iter::Map<std::ops::RangeFrom<usize>, fn(usize) -> ObligationTreeId>;
133
134 pub struct ObligationForest<O: ForestObligation> {
135     /// The list of obligations. In between calls to `process_obligations`,
136     /// this list only contains nodes in the `Pending` or `Waiting` state.
137     ///
138     /// `usize` indices are used here and throughout this module, rather than
139     /// `rustc_index::newtype_index!` indices, because this code is hot enough
140     /// that the `u32`-to-`usize` conversions that would be required are
141     /// significant, and space considerations are not important.
142     nodes: Vec<Node<O>>,
143
144     /// A cache of predicates that have been successfully completed.
145     done_cache: FxHashSet<O::CacheKey>,
146
147     /// A cache of the nodes in `nodes`, indexed by predicate. Unfortunately,
148     /// its contents are not guaranteed to match those of `nodes`. See the
149     /// comments in `process_obligation` for details.
150     active_cache: FxHashMap<O::CacheKey, usize>,
151
152     /// A vector reused in compress() and find_cycles_from_node(), to avoid allocating new vectors.
153     reused_node_vec: Vec<usize>,
154
155     obligation_tree_id_generator: ObligationTreeIdGenerator,
156
157     /// Per tree error cache. This is used to deduplicate errors,
158     /// which is necessary to avoid trait resolution overflow in
159     /// some cases.
160     ///
161     /// See [this][details] for details.
162     ///
163     /// [details]: https://github.com/rust-lang/rust/pull/53255#issuecomment-421184780
164     error_cache: FxHashMap<ObligationTreeId, FxHashSet<O::CacheKey>>,
165 }
166
167 #[derive(Debug)]
168 struct Node<O> {
169     obligation: O,
170     state: Cell<NodeState>,
171
172     /// Obligations that depend on this obligation for their completion. They
173     /// must all be in a non-pending state.
174     dependents: Vec<usize>,
175
176     /// If true, `dependents[0]` points to a "parent" node, which requires
177     /// special treatment upon error but is otherwise treated the same.
178     /// (It would be more idiomatic to store the parent node in a separate
179     /// `Option<usize>` field, but that slows down the common case of
180     /// iterating over the parent and other descendants together.)
181     has_parent: bool,
182
183     /// Identifier of the obligation tree to which this node belongs.
184     obligation_tree_id: ObligationTreeId,
185 }
186
187 impl<O> Node<O> {
188     fn new(parent: Option<usize>, obligation: O, obligation_tree_id: ObligationTreeId) -> Node<O> {
189         Node {
190             obligation,
191             state: Cell::new(NodeState::Pending),
192             dependents: if let Some(parent_index) = parent { vec![parent_index] } else { vec![] },
193             has_parent: parent.is_some(),
194             obligation_tree_id,
195         }
196     }
197 }
198
199 /// The state of one node in some tree within the forest. This represents the
200 /// current state of processing for the obligation (of type `O`) associated
201 /// with this node.
202 ///
203 /// The non-`Error` state transitions are as follows.
204 /// ```
205 /// (Pre-creation)
206 ///  |
207 ///  |     register_obligation_at() (called by process_obligations() and
208 ///  v                               from outside the crate)
209 /// Pending
210 ///  |
211 ///  |     process_obligations()
212 ///  v
213 /// Success
214 ///  |  ^
215 ///  |  |  mark_successes()
216 ///  |  v
217 ///  |  Waiting
218 ///  |
219 ///  |     process_cycles()
220 ///  v
221 /// Done
222 ///  |
223 ///  |     compress()
224 ///  v
225 /// (Removed)
226 /// ```
227 /// The `Error` state can be introduced in several places, via `error_at()`.
228 ///
229 /// Outside of `ObligationForest` methods, nodes should be either `Pending` or
230 /// `Waiting`.
231 #[derive(Debug, Copy, Clone, PartialEq, Eq)]
232 enum NodeState {
233     /// This obligation has not yet been selected successfully. Cannot have
234     /// subobligations.
235     Pending,
236
237     /// This obligation was selected successfully, but may or may not have
238     /// subobligations.
239     Success,
240
241     /// This obligation was selected successfully, but it has a pending
242     /// subobligation.
243     Waiting,
244
245     /// This obligation, along with its subobligations, are complete, and will
246     /// be removed in the next collection.
247     Done,
248
249     /// This obligation was resolved to an error. It will be removed by the
250     /// next compression step.
251     Error,
252 }
253
254 /// This trait allows us to have two different Outcome types:
255 ///  - the normal one that does as little as possible
256 ///  - one for tests that does some additional work and checking
257 pub trait OutcomeTrait {
258     type Error;
259     type Obligation;
260
261     fn new() -> Self;
262     fn mark_not_stalled(&mut self);
263     fn is_stalled(&self) -> bool;
264     fn record_completed(&mut self, outcome: &Self::Obligation);
265     fn record_error(&mut self, error: Self::Error);
266 }
267
268 #[derive(Debug)]
269 pub struct Outcome<O, E> {
270     /// Backtrace of obligations that were found to be in error.
271     pub errors: Vec<Error<O, E>>,
272
273     /// If true, then we saw no successful obligations, which means
274     /// there is no point in further iteration. This is based on the
275     /// assumption that when trait matching returns `Error` or
276     /// `Unchanged`, those results do not affect environmental
277     /// inference state. (Note that if we invoke `process_obligations`
278     /// with no pending obligations, stalled will be true.)
279     pub stalled: bool,
280 }
281
282 impl<O, E> OutcomeTrait for Outcome<O, E> {
283     type Error = Error<O, E>;
284     type Obligation = O;
285
286     fn new() -> Self {
287         Self { stalled: true, errors: vec![] }
288     }
289
290     fn mark_not_stalled(&mut self) {
291         self.stalled = false;
292     }
293
294     fn is_stalled(&self) -> bool {
295         self.stalled
296     }
297
298     fn record_completed(&mut self, _outcome: &Self::Obligation) {
299         // do nothing
300     }
301
302     fn record_error(&mut self, error: Self::Error) {
303         self.errors.push(error)
304     }
305 }
306
307 #[derive(Debug, PartialEq, Eq)]
308 pub struct Error<O, E> {
309     pub error: E,
310     pub backtrace: Vec<O>,
311 }
312
313 impl<O: ForestObligation> ObligationForest<O> {
314     pub fn new() -> ObligationForest<O> {
315         ObligationForest {
316             nodes: vec![],
317             done_cache: Default::default(),
318             active_cache: Default::default(),
319             reused_node_vec: vec![],
320             obligation_tree_id_generator: (0..).map(ObligationTreeId),
321             error_cache: Default::default(),
322         }
323     }
324
325     /// Returns the total number of nodes in the forest that have not
326     /// yet been fully resolved.
327     pub fn len(&self) -> usize {
328         self.nodes.len()
329     }
330
331     /// Registers an obligation.
332     pub fn register_obligation(&mut self, obligation: O) {
333         // Ignore errors here - there is no guarantee of success.
334         let _ = self.register_obligation_at(obligation, None);
335     }
336
337     // Returns Err(()) if we already know this obligation failed.
338     fn register_obligation_at(&mut self, obligation: O, parent: Option<usize>) -> Result<(), ()> {
339         let cache_key = obligation.as_cache_key();
340         if self.done_cache.contains(&cache_key) {
341             debug!("register_obligation_at: ignoring already done obligation: {:?}", obligation);
342             return Ok(());
343         }
344
345         match self.active_cache.entry(cache_key) {
346             Entry::Occupied(o) => {
347                 let node = &mut self.nodes[*o.get()];
348                 if let Some(parent_index) = parent {
349                     // If the node is already in `active_cache`, it has already
350                     // had its chance to be marked with a parent. So if it's
351                     // not already present, just dump `parent` into the
352                     // dependents as a non-parent.
353                     if !node.dependents.contains(&parent_index) {
354                         node.dependents.push(parent_index);
355                     }
356                 }
357                 if let NodeState::Error = node.state.get() { Err(()) } else { Ok(()) }
358             }
359             Entry::Vacant(v) => {
360                 let obligation_tree_id = match parent {
361                     Some(parent_index) => self.nodes[parent_index].obligation_tree_id,
362                     None => self.obligation_tree_id_generator.next().unwrap(),
363                 };
364
365                 let already_failed = parent.is_some()
366                     && self
367                         .error_cache
368                         .get(&obligation_tree_id)
369                         .map_or(false, |errors| errors.contains(v.key()));
370
371                 if already_failed {
372                     Err(())
373                 } else {
374                     let new_index = self.nodes.len();
375                     v.insert(new_index);
376                     self.nodes.push(Node::new(parent, obligation, obligation_tree_id));
377                     Ok(())
378                 }
379             }
380         }
381     }
382
383     /// Converts all remaining obligations to the given error.
384     pub fn to_errors<E: Clone>(&mut self, error: E) -> Vec<Error<O, E>> {
385         let errors = self
386             .nodes
387             .iter()
388             .enumerate()
389             .filter(|(_index, node)| node.state.get() == NodeState::Pending)
390             .map(|(index, _node)| Error { error: error.clone(), backtrace: self.error_at(index) })
391             .collect();
392
393         self.compress(|_| assert!(false));
394         errors
395     }
396
397     /// Returns the set of obligations that are in a pending state.
398     pub fn map_pending_obligations<P, F>(&self, f: F) -> Vec<P>
399     where
400         F: Fn(&O) -> P,
401     {
402         self.nodes
403             .iter()
404             .filter(|node| node.state.get() == NodeState::Pending)
405             .map(|node| f(&node.obligation))
406             .collect()
407     }
408
409     fn insert_into_error_cache(&mut self, index: usize) {
410         let node = &self.nodes[index];
411         self.error_cache
412             .entry(node.obligation_tree_id)
413             .or_default()
414             .insert(node.obligation.as_cache_key());
415     }
416
417     /// Performs a pass through the obligation list. This must
418     /// be called in a loop until `outcome.stalled` is false.
419     ///
420     /// This _cannot_ be unrolled (presently, at least).
421     #[inline(never)]
422     pub fn process_obligations<P, OUT>(&mut self, processor: &mut P) -> OUT
423     where
424         P: ObligationProcessor<Obligation = O>,
425         OUT: OutcomeTrait<Obligation = O, Error = Error<O, P::Error>>,
426     {
427         let mut outcome = OUT::new();
428
429         // Note that the loop body can append new nodes, and those new nodes
430         // will then be processed by subsequent iterations of the loop.
431         //
432         // We can't use an iterator for the loop because `self.nodes` is
433         // appended to and the borrow checker would complain. We also can't use
434         // `for index in 0..self.nodes.len() { ... }` because the range would
435         // be computed with the initial length, and we would miss the appended
436         // nodes. Therefore we use a `while` loop.
437         let mut index = 0;
438         while let Some(node) = self.nodes.get_mut(index) {
439             // `processor.process_obligation` can modify the predicate within
440             // `node.obligation`, and that predicate is the key used for
441             // `self.active_cache`. This means that `self.active_cache` can get
442             // out of sync with `nodes`. It's not very common, but it does
443             // happen, and code in `compress` has to allow for it.
444             if node.state.get() != NodeState::Pending {
445                 index += 1;
446                 continue;
447             }
448
449             match processor.process_obligation(&mut node.obligation) {
450                 ProcessResult::Unchanged => {
451                     // No change in state.
452                 }
453                 ProcessResult::Changed(children) => {
454                     // We are not (yet) stalled.
455                     outcome.mark_not_stalled();
456                     node.state.set(NodeState::Success);
457
458                     for child in children {
459                         let st = self.register_obligation_at(child, Some(index));
460                         if let Err(()) = st {
461                             // Error already reported - propagate it
462                             // to our node.
463                             self.error_at(index);
464                         }
465                     }
466                 }
467                 ProcessResult::Error(err) => {
468                     outcome.mark_not_stalled();
469                     outcome.record_error(Error { error: err, backtrace: self.error_at(index) });
470                 }
471             }
472             index += 1;
473         }
474
475         // There's no need to perform marking, cycle processing and compression when nothing
476         // changed.
477         if !outcome.is_stalled() {
478             self.mark_successes();
479             self.process_cycles(processor);
480             self.compress(|obl| outcome.record_completed(obl));
481         }
482
483         outcome
484     }
485
486     /// Returns a vector of obligations for `p` and all of its
487     /// ancestors, putting them into the error state in the process.
488     fn error_at(&self, mut index: usize) -> Vec<O> {
489         let mut error_stack: Vec<usize> = vec![];
490         let mut trace = vec![];
491
492         loop {
493             let node = &self.nodes[index];
494             node.state.set(NodeState::Error);
495             trace.push(node.obligation.clone());
496             if node.has_parent {
497                 // The first dependent is the parent, which is treated
498                 // specially.
499                 error_stack.extend(node.dependents.iter().skip(1));
500                 index = node.dependents[0];
501             } else {
502                 // No parent; treat all dependents non-specially.
503                 error_stack.extend(node.dependents.iter());
504                 break;
505             }
506         }
507
508         while let Some(index) = error_stack.pop() {
509             let node = &self.nodes[index];
510             if node.state.get() != NodeState::Error {
511                 node.state.set(NodeState::Error);
512                 error_stack.extend(node.dependents.iter());
513             }
514         }
515
516         trace
517     }
518
519     /// Mark all `Waiting` nodes as `Success`, except those that depend on a
520     /// pending node.
521     fn mark_successes(&self) {
522         // Convert all `Waiting` nodes to `Success`.
523         for node in &self.nodes {
524             if node.state.get() == NodeState::Waiting {
525                 node.state.set(NodeState::Success);
526             }
527         }
528
529         // Convert `Success` nodes that depend on a pending node back to
530         // `Waiting`.
531         for node in &self.nodes {
532             if node.state.get() == NodeState::Pending {
533                 // This call site is hot.
534                 self.inlined_mark_dependents_as_waiting(node);
535             }
536         }
537     }
538
539     // This always-inlined function is for the hot call site.
540     #[inline(always)]
541     fn inlined_mark_dependents_as_waiting(&self, node: &Node<O>) {
542         for &index in node.dependents.iter() {
543             let node = &self.nodes[index];
544             let state = node.state.get();
545             if state == NodeState::Success {
546                 // This call site is cold.
547                 self.uninlined_mark_dependents_as_waiting(node);
548             } else {
549                 debug_assert!(state == NodeState::Waiting || state == NodeState::Error)
550             }
551         }
552     }
553
554     // This never-inlined function is for the cold call site.
555     #[inline(never)]
556     fn uninlined_mark_dependents_as_waiting(&self, node: &Node<O>) {
557         // Mark node Waiting in the cold uninlined code instead of the hot inlined
558         node.state.set(NodeState::Waiting);
559         self.inlined_mark_dependents_as_waiting(node)
560     }
561
562     /// Report cycles between all `Success` nodes, and convert all `Success`
563     /// nodes to `Done`. This must be called after `mark_successes`.
564     fn process_cycles<P>(&mut self, processor: &mut P)
565     where
566         P: ObligationProcessor<Obligation = O>,
567     {
568         let mut stack = std::mem::take(&mut self.reused_node_vec);
569         for (index, node) in self.nodes.iter().enumerate() {
570             // For some benchmarks this state test is extremely hot. It's a win
571             // to handle the no-op cases immediately to avoid the cost of the
572             // function call.
573             if node.state.get() == NodeState::Success {
574                 self.find_cycles_from_node(&mut stack, processor, index);
575             }
576         }
577
578         debug_assert!(stack.is_empty());
579         self.reused_node_vec = stack;
580     }
581
582     fn find_cycles_from_node<P>(&self, stack: &mut Vec<usize>, processor: &mut P, index: usize)
583     where
584         P: ObligationProcessor<Obligation = O>,
585     {
586         let node = &self.nodes[index];
587         if node.state.get() == NodeState::Success {
588             match stack.iter().rposition(|&n| n == index) {
589                 None => {
590                     stack.push(index);
591                     for &dep_index in node.dependents.iter() {
592                         self.find_cycles_from_node(stack, processor, dep_index);
593                     }
594                     stack.pop();
595                     node.state.set(NodeState::Done);
596                 }
597                 Some(rpos) => {
598                     // Cycle detected.
599                     processor.process_backedge(
600                         stack[rpos..].iter().map(|&i| &self.nodes[i].obligation),
601                         PhantomData,
602                     );
603                 }
604             }
605         }
606     }
607
608     /// Compresses the vector, removing all popped nodes. This adjusts the
609     /// indices and hence invalidates any outstanding indices. `process_cycles`
610     /// must be run beforehand to remove any cycles on `Success` nodes.
611     #[inline(never)]
612     fn compress(&mut self, mut outcome_cb: impl FnMut(&O)) {
613         let orig_nodes_len = self.nodes.len();
614         let mut node_rewrites: Vec<_> = std::mem::take(&mut self.reused_node_vec);
615         debug_assert!(node_rewrites.is_empty());
616         node_rewrites.extend(0..orig_nodes_len);
617         let mut dead_nodes = 0;
618
619         // Move removable nodes to the end, preserving the order of the
620         // remaining nodes.
621         //
622         // LOOP INVARIANT:
623         //     self.nodes[0..index - dead_nodes] are the first remaining nodes
624         //     self.nodes[index - dead_nodes..index] are all dead
625         //     self.nodes[index..] are unchanged
626         for index in 0..orig_nodes_len {
627             let node = &self.nodes[index];
628             match node.state.get() {
629                 NodeState::Pending | NodeState::Waiting => {
630                     if dead_nodes > 0 {
631                         self.nodes.swap(index, index - dead_nodes);
632                         node_rewrites[index] -= dead_nodes;
633                     }
634                 }
635                 NodeState::Done => {
636                     // This lookup can fail because the contents of
637                     // `self.active_cache` are not guaranteed to match those of
638                     // `self.nodes`. See the comment in `process_obligation`
639                     // for more details.
640                     if let Some((predicate, _)) =
641                         self.active_cache.remove_entry(&node.obligation.as_cache_key())
642                     {
643                         self.done_cache.insert(predicate);
644                     } else {
645                         self.done_cache.insert(node.obligation.as_cache_key().clone());
646                     }
647                     // Extract the success stories.
648                     outcome_cb(&node.obligation);
649                     node_rewrites[index] = orig_nodes_len;
650                     dead_nodes += 1;
651                 }
652                 NodeState::Error => {
653                     // We *intentionally* remove the node from the cache at this point. Otherwise
654                     // tests must come up with a different type on every type error they
655                     // check against.
656                     self.active_cache.remove(&node.obligation.as_cache_key());
657                     self.insert_into_error_cache(index);
658                     node_rewrites[index] = orig_nodes_len;
659                     dead_nodes += 1;
660                 }
661                 NodeState::Success => unreachable!(),
662             }
663         }
664
665         if dead_nodes > 0 {
666             // Remove the dead nodes and rewrite indices.
667             self.nodes.truncate(orig_nodes_len - dead_nodes);
668             self.apply_rewrites(&node_rewrites);
669         }
670
671         node_rewrites.truncate(0);
672         self.reused_node_vec = node_rewrites;
673     }
674
675     #[inline(never)]
676     fn apply_rewrites(&mut self, node_rewrites: &[usize]) {
677         let orig_nodes_len = node_rewrites.len();
678
679         for node in &mut self.nodes {
680             let mut i = 0;
681             while let Some(dependent) = node.dependents.get_mut(i) {
682                 let new_index = node_rewrites[*dependent];
683                 if new_index >= orig_nodes_len {
684                     node.dependents.swap_remove(i);
685                     if i == 0 && node.has_parent {
686                         // We just removed the parent.
687                         node.has_parent = false;
688                     }
689                 } else {
690                     *dependent = new_index;
691                     i += 1;
692                 }
693             }
694         }
695
696         // This updating of `self.active_cache` is necessary because the
697         // removal of nodes within `compress` can fail. See above.
698         self.active_cache.retain(|_predicate, index| {
699             let new_index = node_rewrites[*index];
700             if new_index >= orig_nodes_len {
701                 false
702             } else {
703                 *index = new_index;
704                 true
705             }
706         });
707     }
708 }