@@ -91,13 +91,14 @@ struct Node<O> {
91
91
obligation : O ,
92
92
state : Cell < NodeState > ,
93
93
94
- /// Obligations that depend on this obligation for their
95
- /// completion. They must all be in a non-pending state.
96
- dependents : Vec < NodeIndex > ,
97
94
/// The parent of a node - the original obligation of
98
95
/// which it is a subobligation. Except for error reporting,
99
- /// this is just another member of `dependents`.
96
+ /// it is just like any member of `dependents`.
100
97
parent : Option < NodeIndex > ,
98
+
99
+ /// Obligations that depend on this obligation for their
100
+ /// completion. They must all be in a non-pending state.
101
+ dependents : Vec < NodeIndex > ,
101
102
}
102
103
103
104
/// The state of one node in some tree within the forest. This
@@ -383,10 +384,7 @@ impl<O: ForestObligation> ObligationForest<O> {
383
384
NodeState :: Success => {
384
385
node. state . set ( NodeState :: OnDfsStack ) ;
385
386
stack. push ( index) ;
386
- if let Some ( parent) = node. parent {
387
- self . find_cycles_from_node ( stack, processor, parent. get ( ) ) ;
388
- }
389
- for dependent in & node. dependents {
387
+ for dependent in node. parent . iter ( ) . chain ( node. dependents . iter ( ) ) {
390
388
self . find_cycles_from_node ( stack, processor, dependent. get ( ) ) ;
391
389
}
392
390
stack. pop ( ) ;
@@ -430,7 +428,7 @@ impl<O: ForestObligation> ObligationForest<O> {
430
428
}
431
429
432
430
error_stack. extend (
433
- node. dependents . iter ( ) . cloned ( ) . chain ( node. parent ) . map ( |x| x. get ( ) )
431
+ node. parent . iter ( ) . chain ( node. dependents . iter ( ) ) . map ( |x| x. get ( ) )
434
432
) ;
435
433
}
436
434
@@ -440,11 +438,7 @@ impl<O: ForestObligation> ObligationForest<O> {
440
438
441
439
#[ inline]
442
440
fn mark_neighbors_as_waiting_from ( & self , node : & Node < O > ) {
443
- if let Some ( parent) = node. parent {
444
- self . mark_as_waiting_from ( & self . nodes [ parent. get ( ) ] ) ;
445
- }
446
-
447
- for dependent in & node. dependents {
441
+ for dependent in node. parent . iter ( ) . chain ( node. dependents . iter ( ) ) {
448
442
self . mark_as_waiting_from ( & self . nodes [ dependent. get ( ) ] ) ;
449
443
}
450
444
}
@@ -591,8 +585,8 @@ impl<O> Node<O> {
591
585
fn new ( parent : Option < NodeIndex > , obligation : O ) -> Node < O > {
592
586
Node {
593
587
obligation,
594
- parent,
595
588
state : Cell :: new ( NodeState :: Pending ) ,
589
+ parent,
596
590
dependents : vec ! [ ] ,
597
591
}
598
592
}
0 commit comments