]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/obligation_forest/mod.rs
Auto merge of #69156 - ecstatic-morse:unified-dataflow-impls2, r=eddyb
[rust.git] / src / librustc_data_structures / 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(), to avoid allocating new vectors.
153     node_rewrites: 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 #[derive(Debug)]
255 pub struct Outcome<O, E> {
256     /// Obligations that were completely evaluated, including all
257     /// (transitive) subobligations. Only computed if requested.
258     pub completed: Option<Vec<O>>,
259
260     /// Backtrace of obligations that were found to be in error.
261     pub errors: Vec<Error<O, E>>,
262
263     /// If true, then we saw no successful obligations, which means
264     /// there is no point in further iteration. This is based on the
265     /// assumption that when trait matching returns `Error` or
266     /// `Unchanged`, those results do not affect environmental
267     /// inference state. (Note that if we invoke `process_obligations`
268     /// with no pending obligations, stalled will be true.)
269     pub stalled: bool,
270 }
271
272 /// Should `process_obligations` compute the `Outcome::completed` field of its
273 /// result?
274 #[derive(PartialEq)]
275 pub enum DoCompleted {
276     No,
277     Yes,
278 }
279
280 #[derive(Debug, PartialEq, Eq)]
281 pub struct Error<O, E> {
282     pub error: E,
283     pub backtrace: Vec<O>,
284 }
285
286 impl<O: ForestObligation> ObligationForest<O> {
287     pub fn new() -> ObligationForest<O> {
288         ObligationForest {
289             nodes: vec![],
290             done_cache: Default::default(),
291             active_cache: Default::default(),
292             node_rewrites: vec![],
293             obligation_tree_id_generator: (0..).map(ObligationTreeId),
294             error_cache: Default::default(),
295         }
296     }
297
298     /// Returns the total number of nodes in the forest that have not
299     /// yet been fully resolved.
300     pub fn len(&self) -> usize {
301         self.nodes.len()
302     }
303
304     /// Registers an obligation.
305     pub fn register_obligation(&mut self, obligation: O) {
306         // Ignore errors here - there is no guarantee of success.
307         let _ = self.register_obligation_at(obligation, None);
308     }
309
310     // Returns Err(()) if we already know this obligation failed.
311     fn register_obligation_at(&mut self, obligation: O, parent: Option<usize>) -> Result<(), ()> {
312         if self.done_cache.contains(&obligation.as_cache_key()) {
313             debug!("register_obligation_at: ignoring already done obligation: {:?}", obligation);
314             return Ok(());
315         }
316
317         match self.active_cache.entry(obligation.as_cache_key().clone()) {
318             Entry::Occupied(o) => {
319                 let node = &mut self.nodes[*o.get()];
320                 if let Some(parent_index) = parent {
321                     // If the node is already in `active_cache`, it has already
322                     // had its chance to be marked with a parent. So if it's
323                     // not already present, just dump `parent` into the
324                     // dependents as a non-parent.
325                     if !node.dependents.contains(&parent_index) {
326                         node.dependents.push(parent_index);
327                     }
328                 }
329                 if let NodeState::Error = node.state.get() { Err(()) } else { Ok(()) }
330             }
331             Entry::Vacant(v) => {
332                 let obligation_tree_id = match parent {
333                     Some(parent_index) => self.nodes[parent_index].obligation_tree_id,
334                     None => self.obligation_tree_id_generator.next().unwrap(),
335                 };
336
337                 let already_failed = parent.is_some()
338                     && self
339                         .error_cache
340                         .get(&obligation_tree_id)
341                         .map(|errors| errors.contains(&obligation.as_cache_key()))
342                         .unwrap_or(false);
343
344                 if already_failed {
345                     Err(())
346                 } else {
347                     let new_index = self.nodes.len();
348                     v.insert(new_index);
349                     self.nodes.push(Node::new(parent, obligation, obligation_tree_id));
350                     Ok(())
351                 }
352             }
353         }
354     }
355
356     /// Converts all remaining obligations to the given error.
357     pub fn to_errors<E: Clone>(&mut self, error: E) -> Vec<Error<O, E>> {
358         let errors = self
359             .nodes
360             .iter()
361             .enumerate()
362             .filter(|(_index, node)| node.state.get() == NodeState::Pending)
363             .map(|(index, _node)| Error { error: error.clone(), backtrace: self.error_at(index) })
364             .collect();
365
366         let successful_obligations = self.compress(DoCompleted::Yes);
367         assert!(successful_obligations.unwrap().is_empty());
368         errors
369     }
370
371     /// Returns the set of obligations that are in a pending state.
372     pub fn map_pending_obligations<P, F>(&self, f: F) -> Vec<P>
373     where
374         F: Fn(&O) -> P,
375     {
376         self.nodes
377             .iter()
378             .filter(|node| node.state.get() == NodeState::Pending)
379             .map(|node| f(&node.obligation))
380             .collect()
381     }
382
383     fn insert_into_error_cache(&mut self, index: usize) {
384         let node = &self.nodes[index];
385         self.error_cache
386             .entry(node.obligation_tree_id)
387             .or_default()
388             .insert(node.obligation.as_cache_key().clone());
389     }
390
391     /// Performs a pass through the obligation list. This must
392     /// be called in a loop until `outcome.stalled` is false.
393     ///
394     /// This _cannot_ be unrolled (presently, at least).
395     pub fn process_obligations<P>(
396         &mut self,
397         processor: &mut P,
398         do_completed: DoCompleted,
399     ) -> Outcome<O, P::Error>
400     where
401         P: ObligationProcessor<Obligation = O>,
402     {
403         let mut errors = vec![];
404         let mut stalled = true;
405
406         // Note that the loop body can append new nodes, and those new nodes
407         // will then be processed by subsequent iterations of the loop.
408         //
409         // We can't use an iterator for the loop because `self.nodes` is
410         // appended to and the borrow checker would complain. We also can't use
411         // `for index in 0..self.nodes.len() { ... }` because the range would
412         // be computed with the initial length, and we would miss the appended
413         // nodes. Therefore we use a `while` loop.
414         let mut index = 0;
415         while index < self.nodes.len() {
416             let node = &mut self.nodes[index];
417
418             // `processor.process_obligation` can modify the predicate within
419             // `node.obligation`, and that predicate is the key used for
420             // `self.active_cache`. This means that `self.active_cache` can get
421             // out of sync with `nodes`. It's not very common, but it does
422             // happen, and code in `compress` has to allow for it.
423             if node.state.get() != NodeState::Pending {
424                 index += 1;
425                 continue;
426             }
427
428             match processor.process_obligation(&mut node.obligation) {
429                 ProcessResult::Unchanged => {
430                     // No change in state.
431                 }
432                 ProcessResult::Changed(children) => {
433                     // We are not (yet) stalled.
434                     stalled = false;
435                     node.state.set(NodeState::Success);
436
437                     for child in children {
438                         let st = self.register_obligation_at(child, Some(index));
439                         if let Err(()) = st {
440                             // Error already reported - propagate it
441                             // to our node.
442                             self.error_at(index);
443                         }
444                     }
445                 }
446                 ProcessResult::Error(err) => {
447                     stalled = false;
448                     errors.push(Error { error: err, backtrace: self.error_at(index) });
449                 }
450             }
451             index += 1;
452         }
453
454         if stalled {
455             // There's no need to perform marking, cycle processing and compression when nothing
456             // changed.
457             return Outcome {
458                 completed: if do_completed == DoCompleted::Yes { Some(vec![]) } else { None },
459                 errors,
460                 stalled,
461             };
462         }
463
464         self.mark_successes();
465         self.process_cycles(processor);
466         let completed = self.compress(do_completed);
467
468         Outcome { completed, errors, stalled }
469     }
470
471     /// Returns a vector of obligations for `p` and all of its
472     /// ancestors, putting them into the error state in the process.
473     fn error_at(&self, mut index: usize) -> Vec<O> {
474         let mut error_stack: Vec<usize> = vec![];
475         let mut trace = vec![];
476
477         loop {
478             let node = &self.nodes[index];
479             node.state.set(NodeState::Error);
480             trace.push(node.obligation.clone());
481             if node.has_parent {
482                 // The first dependent is the parent, which is treated
483                 // specially.
484                 error_stack.extend(node.dependents.iter().skip(1));
485                 index = node.dependents[0];
486             } else {
487                 // No parent; treat all dependents non-specially.
488                 error_stack.extend(node.dependents.iter());
489                 break;
490             }
491         }
492
493         while let Some(index) = error_stack.pop() {
494             let node = &self.nodes[index];
495             if node.state.get() != NodeState::Error {
496                 node.state.set(NodeState::Error);
497                 error_stack.extend(node.dependents.iter());
498             }
499         }
500
501         trace
502     }
503
504     /// Mark all `Waiting` nodes as `Success`, except those that depend on a
505     /// pending node.
506     fn mark_successes(&self) {
507         // Convert all `Waiting` nodes to `Success`.
508         for node in &self.nodes {
509             if node.state.get() == NodeState::Waiting {
510                 node.state.set(NodeState::Success);
511             }
512         }
513
514         // Convert `Success` nodes that depend on a pending node back to
515         // `Waiting`.
516         for node in &self.nodes {
517             if node.state.get() == NodeState::Pending {
518                 // This call site is hot.
519                 self.inlined_mark_dependents_as_waiting(node);
520             }
521         }
522     }
523
524     // This always-inlined function is for the hot call site.
525     #[inline(always)]
526     fn inlined_mark_dependents_as_waiting(&self, node: &Node<O>) {
527         for &index in node.dependents.iter() {
528             let node = &self.nodes[index];
529             let state = node.state.get();
530             if state == NodeState::Success {
531                 node.state.set(NodeState::Waiting);
532                 // This call site is cold.
533                 self.uninlined_mark_dependents_as_waiting(node);
534             } else {
535                 debug_assert!(state == NodeState::Waiting || state == NodeState::Error)
536             }
537         }
538     }
539
540     // This never-inlined function is for the cold call site.
541     #[inline(never)]
542     fn uninlined_mark_dependents_as_waiting(&self, node: &Node<O>) {
543         self.inlined_mark_dependents_as_waiting(node)
544     }
545
546     /// Report cycles between all `Success` nodes, and convert all `Success`
547     /// nodes to `Done`. This must be called after `mark_successes`.
548     fn process_cycles<P>(&self, processor: &mut P)
549     where
550         P: ObligationProcessor<Obligation = O>,
551     {
552         let mut stack = vec![];
553
554         for (index, node) in self.nodes.iter().enumerate() {
555             // For some benchmarks this state test is extremely hot. It's a win
556             // to handle the no-op cases immediately to avoid the cost of the
557             // function call.
558             if node.state.get() == NodeState::Success {
559                 self.find_cycles_from_node(&mut stack, processor, index);
560             }
561         }
562
563         debug_assert!(stack.is_empty());
564     }
565
566     fn find_cycles_from_node<P>(&self, stack: &mut Vec<usize>, processor: &mut P, index: usize)
567     where
568         P: ObligationProcessor<Obligation = O>,
569     {
570         let node = &self.nodes[index];
571         if node.state.get() == NodeState::Success {
572             match stack.iter().rposition(|&n| n == index) {
573                 None => {
574                     stack.push(index);
575                     for &dep_index in node.dependents.iter() {
576                         self.find_cycles_from_node(stack, processor, dep_index);
577                     }
578                     stack.pop();
579                     node.state.set(NodeState::Done);
580                 }
581                 Some(rpos) => {
582                     // Cycle detected.
583                     processor.process_backedge(
584                         stack[rpos..].iter().map(GetObligation(&self.nodes)),
585                         PhantomData,
586                     );
587                 }
588             }
589         }
590     }
591
592     /// Compresses the vector, removing all popped nodes. This adjusts the
593     /// indices and hence invalidates any outstanding indices. `process_cycles`
594     /// must be run beforehand to remove any cycles on `Success` nodes.
595     #[inline(never)]
596     fn compress(&mut self, do_completed: DoCompleted) -> Option<Vec<O>> {
597         let orig_nodes_len = self.nodes.len();
598         let mut node_rewrites: Vec<_> = std::mem::take(&mut self.node_rewrites);
599         debug_assert!(node_rewrites.is_empty());
600         node_rewrites.extend(0..orig_nodes_len);
601         let mut dead_nodes = 0;
602         let mut removed_done_obligations: Vec<O> = vec![];
603
604         // Move removable nodes to the end, preserving the order of the
605         // remaining nodes.
606         //
607         // LOOP INVARIANT:
608         //     self.nodes[0..index - dead_nodes] are the first remaining nodes
609         //     self.nodes[index - dead_nodes..index] are all dead
610         //     self.nodes[index..] are unchanged
611         for index in 0..orig_nodes_len {
612             let node = &self.nodes[index];
613             match node.state.get() {
614                 NodeState::Pending | NodeState::Waiting => {
615                     if dead_nodes > 0 {
616                         self.nodes.swap(index, index - dead_nodes);
617                         node_rewrites[index] -= dead_nodes;
618                     }
619                 }
620                 NodeState::Done => {
621                     // This lookup can fail because the contents of
622                     // `self.active_cache` are not guaranteed to match those of
623                     // `self.nodes`. See the comment in `process_obligation`
624                     // for more details.
625                     if let Some((predicate, _)) =
626                         self.active_cache.remove_entry(&node.obligation.as_cache_key())
627                     {
628                         self.done_cache.insert(predicate);
629                     } else {
630                         self.done_cache.insert(node.obligation.as_cache_key().clone());
631                     }
632                     if do_completed == DoCompleted::Yes {
633                         // Extract the success stories.
634                         removed_done_obligations.push(node.obligation.clone());
635                     }
636                     node_rewrites[index] = orig_nodes_len;
637                     dead_nodes += 1;
638                 }
639                 NodeState::Error => {
640                     // We *intentionally* remove the node from the cache at this point. Otherwise
641                     // tests must come up with a different type on every type error they
642                     // check against.
643                     self.active_cache.remove(&node.obligation.as_cache_key());
644                     self.insert_into_error_cache(index);
645                     node_rewrites[index] = orig_nodes_len;
646                     dead_nodes += 1;
647                 }
648                 NodeState::Success => unreachable!(),
649             }
650         }
651
652         if dead_nodes > 0 {
653             // Remove the dead nodes and rewrite indices.
654             self.nodes.truncate(orig_nodes_len - dead_nodes);
655             self.apply_rewrites(&node_rewrites);
656         }
657
658         node_rewrites.truncate(0);
659         self.node_rewrites = node_rewrites;
660
661         if do_completed == DoCompleted::Yes { Some(removed_done_obligations) } else { None }
662     }
663
664     fn apply_rewrites(&mut self, node_rewrites: &[usize]) {
665         let orig_nodes_len = node_rewrites.len();
666
667         for node in &mut self.nodes {
668             let mut i = 0;
669             while i < node.dependents.len() {
670                 let new_index = node_rewrites[node.dependents[i]];
671                 if new_index >= orig_nodes_len {
672                     node.dependents.swap_remove(i);
673                     if i == 0 && node.has_parent {
674                         // We just removed the parent.
675                         node.has_parent = false;
676                     }
677                 } else {
678                     node.dependents[i] = new_index;
679                     i += 1;
680                 }
681             }
682         }
683
684         // This updating of `self.active_cache` is necessary because the
685         // removal of nodes within `compress` can fail. See above.
686         self.active_cache.retain(|_predicate, index| {
687             let new_index = node_rewrites[*index];
688             if new_index >= orig_nodes_len {
689                 false
690             } else {
691                 *index = new_index;
692                 true
693             }
694         });
695     }
696 }
697
698 // I need a Clone closure.
699 #[derive(Clone)]
700 struct GetObligation<'a, O>(&'a [Node<O>]);
701
702 impl<'a, 'b, O> FnOnce<(&'b usize,)> for GetObligation<'a, O> {
703     type Output = &'a O;
704     extern "rust-call" fn call_once(self, args: (&'b usize,)) -> &'a O {
705         &self.0[*args.0].obligation
706     }
707 }
708
709 impl<'a, 'b, O> FnMut<(&'b usize,)> for GetObligation<'a, O> {
710     extern "rust-call" fn call_mut(&mut self, args: (&'b usize,)) -> &'a O {
711         &self.0[*args.0].obligation
712     }
713 }