1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
use std::collections::VecDeque;
use std::fmt::Display;
use controlled_option::ControlledOption;
use controlled_option::Niche;
use crate::arena::Deque;
use crate::arena::DequeArena;
use crate::arena::Handle;
use crate::arena::List;
use crate::arena::ListArena;
use crate::cycles::CycleDetector;
use crate::graph::Edge;
use crate::graph::Node;
use crate::graph::NodeID;
use crate::graph::StackGraph;
use crate::graph::Symbol;
use crate::utils::cmp_option;
use crate::utils::equals_option;
use crate::CancellationError;
use crate::CancellationFlag;
trait DisplayWithPaths {
fn prepare(&mut self, _graph: &StackGraph, _paths: &mut Paths) {}
fn display_with(
&self,
graph: &StackGraph,
paths: &Paths,
f: &mut std::fmt::Formatter,
) -> std::fmt::Result;
}
fn display_with<'a, D>(
mut value: D,
graph: &'a StackGraph,
paths: &'a mut Paths,
) -> impl Display + 'a
where
D: DisplayWithPaths + 'a,
{
value.prepare(graph, paths);
DisplayWithPathsWrapper {
value,
graph,
paths,
}
}
fn display_prepared<'a, D>(value: D, graph: &'a StackGraph, paths: &'a Paths) -> impl Display + 'a
where
D: DisplayWithPaths + 'a,
{
DisplayWithPathsWrapper {
value,
graph,
paths,
}
}
#[doc(hidden)]
struct DisplayWithPathsWrapper<'a, D> {
value: D,
graph: &'a StackGraph,
paths: &'a Paths,
}
impl<'a, D> Display for DisplayWithPathsWrapper<'a, D>
where
D: DisplayWithPaths,
{
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
self.value.display_with(self.graph, self.paths, f)
}
}
#[repr(C)]
#[derive(Clone, Copy)]
pub struct ScopedSymbol {
pub symbol: Handle<Symbol>,
pub scopes: ControlledOption<ScopeStack>,
}
impl ScopedSymbol {
pub fn equals(&self, paths: &Paths, other: &ScopedSymbol) -> bool {
self.symbol == other.symbol
&& equals_option(
self.scopes.into_option(),
other.scopes.into_option(),
|a, b| a.equals(paths, &b),
)
}
pub fn cmp(
&self,
graph: &StackGraph,
paths: &Paths,
other: &ScopedSymbol,
) -> std::cmp::Ordering {
std::cmp::Ordering::Equal
.then_with(|| graph[self.symbol].cmp(&graph[other.symbol]))
.then_with(|| {
cmp_option(
self.scopes.into_option(),
other.scopes.into_option(),
|a, b| a.cmp(paths, &b),
)
})
}
pub fn display<'a>(self, graph: &'a StackGraph, paths: &'a mut Paths) -> impl Display + 'a {
display_with(self, graph, paths)
}
}
impl DisplayWithPaths for ScopedSymbol {
fn prepare(&mut self, graph: &StackGraph, paths: &mut Paths) {
if let Some(mut scopes) = self.scopes.into_option() {
scopes.prepare(graph, paths);
self.scopes = scopes.into();
}
}
fn display_with(
&self,
graph: &StackGraph,
paths: &Paths,
f: &mut std::fmt::Formatter,
) -> std::fmt::Result {
match self.scopes.into_option() {
Some(scopes) => write!(
f,
"{}/({})",
self.symbol.display(graph),
display_prepared(scopes, graph, paths),
),
None => write!(f, "{}", self.symbol.display(graph)),
}
}
}
#[repr(C)]
#[derive(Clone, Copy, Niche)]
pub struct SymbolStack {
#[niche]
list: List<ScopedSymbol>,
length: u32,
}
impl SymbolStack {
#[inline(always)]
pub fn is_empty(&self) -> bool {
self.list.is_empty()
}
#[inline(always)]
pub fn len(&self) -> usize {
self.length as usize
}
pub fn empty() -> SymbolStack {
SymbolStack {
list: List::empty(),
length: 0,
}
}
pub fn equals(&self, paths: &Paths, other: &SymbolStack) -> bool {
self.list
.equals_with(&paths.symbol_stacks, other.list, |a, b| a.equals(paths, b))
}
pub fn cmp(
&self,
graph: &StackGraph,
paths: &Paths,
other: &SymbolStack,
) -> std::cmp::Ordering {
self.list
.cmp_with(&paths.symbol_stacks, other.list, |a, b| {
a.cmp(graph, paths, b)
})
}
pub fn push_front(&mut self, paths: &mut Paths, scoped_symbol: ScopedSymbol) {
self.length += 1;
self.list
.push_front(&mut paths.symbol_stacks, scoped_symbol);
}
pub fn pop_front(&mut self, paths: &Paths) -> Option<ScopedSymbol> {
let result = self.list.pop_front(&paths.symbol_stacks).copied();
if result.is_some() {
self.length -= 1;
}
result
}
pub fn display<'a>(self, graph: &'a StackGraph, paths: &'a mut Paths) -> impl Display + 'a {
display_with(self, graph, paths)
}
pub fn iter<'a>(&'a self, paths: &'a Paths) -> impl Iterator<Item = ScopedSymbol> + 'a {
self.list.iter(&paths.symbol_stacks).copied()
}
}
impl DisplayWithPaths for SymbolStack {
fn prepare(&mut self, graph: &StackGraph, paths: &mut Paths) {
let stack = self;
while let Some(mut symbol) = stack.pop_front(paths) {
symbol.prepare(graph, paths);
}
}
fn display_with(
&self,
graph: &StackGraph,
paths: &Paths,
f: &mut std::fmt::Formatter,
) -> std::fmt::Result {
for symbol in self.iter(paths) {
symbol.display_with(graph, paths, f)?;
}
Ok(())
}
}
#[repr(C)]
#[derive(Clone, Copy, Niche)]
pub struct ScopeStack {
#[niche]
list: List<Handle<Node>>,
length: u32,
}
impl ScopeStack {
#[inline(always)]
pub fn is_empty(&self) -> bool {
self.list.is_empty()
}
#[inline(always)]
pub fn len(&self) -> usize {
self.length as usize
}
pub fn empty() -> ScopeStack {
ScopeStack {
list: List::empty(),
length: 0,
}
}
pub fn equals(&self, paths: &Paths, other: &ScopeStack) -> bool {
self.list
.equals_with(&paths.scope_stacks, other.list, |a, b| *a == *b)
}
pub fn cmp(&self, paths: &Paths, other: &ScopeStack) -> std::cmp::Ordering {
self.list
.cmp_with(&paths.scope_stacks, other.list, |a, b| a.cmp(b))
}
pub fn push_front(&mut self, paths: &mut Paths, node: Handle<Node>) {
self.length += 1;
self.list.push_front(&mut paths.scope_stacks, node);
}
pub fn pop_front(&mut self, paths: &Paths) -> Option<Handle<Node>> {
let result = self.list.pop_front(&paths.scope_stacks).copied();
if result.is_some() {
self.length -= 1;
}
result
}
pub fn display<'a>(self, graph: &'a StackGraph, paths: &'a mut Paths) -> impl Display + 'a {
display_with(self, graph, paths)
}
pub fn iter<'a>(&'a self, paths: &'a Paths) -> impl Iterator<Item = Handle<Node>> + 'a {
self.list.iter(&paths.scope_stacks).copied()
}
}
impl DisplayWithPaths for ScopeStack {
fn display_with(
&self,
graph: &StackGraph,
paths: &Paths,
f: &mut std::fmt::Formatter,
) -> std::fmt::Result {
for scope in self.iter(paths) {
write!(f, "{:#}", scope.display(graph))?;
}
Ok(())
}
}
#[repr(C)]
#[derive(Clone, Copy, Eq, Ord, PartialEq, PartialOrd)]
pub struct PathEdge {
pub source_node_id: NodeID,
pub precedence: i32,
}
impl PathEdge {
pub fn shadows(self, other: PathEdge) -> bool {
self.source_node_id == other.source_node_id && self.precedence > other.precedence
}
pub fn display<'a>(self, graph: &'a StackGraph, paths: &'a mut Paths) -> impl Display + 'a {
display_with(self, graph, paths)
}
}
impl DisplayWithPaths for PathEdge {
fn display_with(
&self,
graph: &StackGraph,
_paths: &Paths,
f: &mut std::fmt::Formatter,
) -> std::fmt::Result {
match graph.node_for_id(self.source_node_id) {
Some(node) => write!(f, "{:#}", node.display(graph))?,
None => write!(f, "[missing]")?,
}
if self.precedence != 0 {
write!(f, "({})", self.precedence)?;
}
Ok(())
}
}
#[repr(C)]
#[derive(Clone, Copy, Niche)]
pub struct PathEdgeList {
#[niche]
edges: Deque<PathEdge>,
length: u32,
}
impl PathEdgeList {
#[inline(always)]
pub fn is_empty(&self) -> bool {
self.edges.is_empty()
}
#[inline(always)]
pub fn len(&self) -> usize {
self.length as usize
}
pub fn have_reversal(&self, paths: &Paths) -> bool {
self.edges.have_reversal(&paths.path_edges)
}
pub fn empty() -> PathEdgeList {
PathEdgeList {
edges: Deque::empty(),
length: 0,
}
}
pub fn push_front(&mut self, paths: &mut Paths, edge: PathEdge) {
self.length += 1;
self.edges.push_front(&mut paths.path_edges, edge);
}
pub fn push_back(&mut self, paths: &mut Paths, edge: PathEdge) {
self.length += 1;
self.edges.push_back(&mut paths.path_edges, edge);
}
pub fn pop_front(&mut self, paths: &mut Paths) -> Option<PathEdge> {
let result = self.edges.pop_front(&mut paths.path_edges);
if result.is_some() {
self.length -= 1;
}
result.copied()
}
pub fn pop_back(&mut self, paths: &mut Paths) -> Option<PathEdge> {
let result = self.edges.pop_back(&mut paths.path_edges);
if result.is_some() {
self.length -= 1;
}
result.copied()
}
pub fn display<'a>(self, graph: &'a StackGraph, paths: &'a mut Paths) -> impl Display + 'a {
display_with(self, graph, paths)
}
pub fn shadows(mut self, paths: &mut Paths, mut other: PathEdgeList) -> bool {
while let Some(self_edge) = self.pop_front(paths) {
if let Some(other_edge) = other.pop_front(paths) {
if self_edge.shadows(other_edge) {
return true;
}
} else {
return false;
}
}
false
}
pub fn equals(mut self, paths: &mut Paths, mut other: PathEdgeList) -> bool {
while let Some(self_edge) = self.pop_front(paths) {
if let Some(other_edge) = other.pop_front(paths) {
if self_edge != other_edge {
return false;
}
} else {
return false;
}
}
other.edges.is_empty()
}
pub fn cmp(mut self, paths: &mut Paths, mut other: PathEdgeList) -> std::cmp::Ordering {
use std::cmp::Ordering;
while let Some(self_edge) = self.pop_front(paths) {
if let Some(other_edge) = other.pop_front(paths) {
match self_edge.cmp(&other_edge) {
Ordering::Equal => continue,
result @ _ => return result,
}
} else {
return Ordering::Greater;
}
}
if other.edges.is_empty() {
Ordering::Equal
} else {
Ordering::Less
}
}
pub fn iter<'a>(&self, paths: &'a mut Paths) -> impl Iterator<Item = PathEdge> + 'a {
self.edges.iter(&mut paths.path_edges).copied()
}
pub fn iter_unordered<'a>(&self, paths: &'a Paths) -> impl Iterator<Item = PathEdge> + 'a {
self.edges.iter_unordered(&paths.path_edges).copied()
}
#[cfg(feature = "json")]
pub(crate) fn ensure_forwards<'a>(&mut self, paths: &'a mut Paths) {
self.edges.ensure_forwards(&mut paths.path_edges);
}
}
impl DisplayWithPaths for PathEdgeList {
fn prepare(&mut self, graph: &StackGraph, paths: &mut Paths) {
self.edges.ensure_forwards(&mut paths.path_edges);
let mut edges = self.edges;
while let Some(mut edge) = edges.pop_front(&mut paths.path_edges).copied() {
edge.prepare(graph, paths);
}
}
fn display_with(
&self,
graph: &StackGraph,
paths: &Paths,
f: &mut std::fmt::Formatter,
) -> std::fmt::Result {
for edge in self.edges.iter_reused(&paths.path_edges) {
edge.display_with(graph, paths, f)?;
}
Ok(())
}
}
#[repr(C)]
#[derive(Clone)]
pub struct Path {
pub start_node: Handle<Node>,
pub end_node: Handle<Node>,
pub symbol_stack: SymbolStack,
pub scope_stack: ScopeStack,
pub edges: PathEdgeList,
}
impl Path {
pub fn from_node(graph: &StackGraph, paths: &mut Paths, node: Handle<Node>) -> Option<Path> {
let mut symbol_stack = SymbolStack::empty();
let mut scope_stack = ScopeStack::empty();
match &graph[node] {
Node::PushScopedSymbol(node) => {
let scope = graph.node_for_id(node.scope)?;
scope_stack.push_front(paths, scope);
symbol_stack.push_front(
paths,
ScopedSymbol {
symbol: node.symbol,
scopes: ControlledOption::some(scope_stack),
},
);
}
Node::PushSymbol(node) => {
symbol_stack.push_front(
paths,
ScopedSymbol {
symbol: node.symbol,
scopes: ControlledOption::none(),
},
);
}
Node::PopScopedSymbol(_) => return None,
Node::PopSymbol(_) => return None,
_ => {}
};
Some(Path {
start_node: node,
end_node: node,
symbol_stack,
scope_stack,
edges: PathEdgeList::empty(),
})
}
pub fn shadows(&self, paths: &mut Paths, other: &Path) -> bool {
self.edges.shadows(paths, other.edges)
}
pub fn equals(&self, paths: &mut Paths, other: &Path) -> bool {
self.start_node == other.start_node
&& self.end_node == other.end_node
&& self.symbol_stack.equals(paths, &other.symbol_stack)
&& self.scope_stack.equals(paths, &other.scope_stack)
&& self.edges.equals(paths, other.edges)
}
pub fn cmp(&self, graph: &StackGraph, paths: &mut Paths, other: &Path) -> std::cmp::Ordering {
std::cmp::Ordering::Equal
.then_with(|| self.start_node.cmp(&other.start_node))
.then_with(|| self.end_node.cmp(&other.end_node))
.then_with(|| self.symbol_stack.cmp(graph, paths, &other.symbol_stack))
.then_with(|| self.scope_stack.cmp(paths, &other.scope_stack))
.then_with(|| self.edges.cmp(paths, other.edges))
}
pub fn is_complete(&self, graph: &StackGraph) -> bool {
if !graph[self.start_node].is_reference() {
return false;
} else if !graph[self.end_node].is_definition() {
return false;
} else if !self.symbol_stack.is_empty() {
return false;
} else if !self.scope_stack.is_empty() {
return false;
} else {
true
}
}
pub fn display<'a>(&'a self, graph: &'a StackGraph, paths: &'a mut Paths) -> impl Display + 'a {
display_with(self, graph, paths)
}
}
impl<'a> DisplayWithPaths for &'a Path {
fn prepare(&mut self, graph: &StackGraph, paths: &mut Paths) {
self.symbol_stack.clone().prepare(graph, paths);
self.scope_stack.clone().prepare(graph, paths);
}
fn display_with(
&self,
graph: &StackGraph,
paths: &Paths,
f: &mut std::fmt::Formatter,
) -> std::fmt::Result {
write!(
f,
"{} -> {}",
self.start_node.display(graph),
self.end_node.display(graph),
)?;
if !self.symbol_stack.is_empty() || !self.scope_stack.is_empty() {
write!(
f,
" <{}> ({})",
display_prepared(self.symbol_stack, graph, paths),
display_prepared(self.scope_stack, graph, paths),
)?;
}
Ok(())
}
}
#[derive(Debug)]
pub enum PathResolutionError {
EmptyScopeStack,
EmptySymbolStack,
IncompatibleScopeStackVariables,
IncompatibleSymbolStackVariables,
IncorrectFile,
IncorrectPoppedSymbol,
IncorrectSourceNode,
MissingAttachedScopeList,
ScopeStackUnsatisfied,
SymbolStackUnsatisfied,
UnboundSymbolStackVariable,
UnboundScopeStackVariable,
UnexpectedAttachedScopeList,
UnknownAttachedScope,
}
impl Path {
pub fn append(
&mut self,
graph: &StackGraph,
paths: &mut Paths,
edge: Edge,
) -> Result<(), PathResolutionError> {
if edge.source != self.end_node {
return Err(PathResolutionError::IncorrectSourceNode);
}
let sink = &graph[edge.sink];
if let Node::PushSymbol(sink) = sink {
let sink_symbol = sink.symbol;
let scoped_symbol = ScopedSymbol {
symbol: sink_symbol,
scopes: ControlledOption::none(),
};
self.symbol_stack.push_front(paths, scoped_symbol);
} else if let Node::PushScopedSymbol(sink) = sink {
let sink_symbol = sink.symbol;
let sink_scope = graph
.node_for_id(sink.scope)
.ok_or(PathResolutionError::UnknownAttachedScope)?;
let mut attached_scopes = self.scope_stack;
attached_scopes.push_front(paths, sink_scope);
let scoped_symbol = ScopedSymbol {
symbol: sink_symbol,
scopes: ControlledOption::some(attached_scopes),
};
self.symbol_stack.push_front(paths, scoped_symbol);
} else if let Node::PopSymbol(sink) = sink {
let top = match self.symbol_stack.pop_front(paths) {
Some(top) => top,
None => return Err(PathResolutionError::EmptySymbolStack),
};
if top.symbol != sink.symbol {
return Err(PathResolutionError::IncorrectPoppedSymbol);
}
if top.scopes.is_some() {
return Err(PathResolutionError::UnexpectedAttachedScopeList);
}
} else if let Node::PopScopedSymbol(sink) = sink {
let top = match self.symbol_stack.pop_front(paths) {
Some(top) => top,
None => return Err(PathResolutionError::EmptySymbolStack),
};
if top.symbol != sink.symbol {
return Err(PathResolutionError::IncorrectPoppedSymbol);
}
let new_scope_stack = match top.scopes.into_option() {
Some(scopes) => scopes,
None => return Err(PathResolutionError::MissingAttachedScopeList),
};
self.scope_stack = new_scope_stack;
} else if let Node::DropScopes(_) = sink {
self.scope_stack = ScopeStack::empty();
}
self.end_node = edge.sink;
self.edges.push_back(
paths,
PathEdge {
source_node_id: graph[edge.source].id(),
precedence: edge.precedence,
},
);
Ok(())
}
pub fn resolve(
&mut self,
graph: &StackGraph,
paths: &mut Paths,
) -> Result<(), PathResolutionError> {
if !graph[self.end_node].is_jump_to() {
return Ok(());
}
let top_scope = match self.scope_stack.pop_front(paths) {
Some(scope) => scope,
None => return Err(PathResolutionError::EmptyScopeStack),
};
self.edges.push_back(
paths,
PathEdge {
source_node_id: graph[self.end_node].id(),
precedence: 0,
},
);
self.end_node = top_scope;
Ok(())
}
pub fn extend<R: Extend<Path>>(&self, graph: &StackGraph, paths: &mut Paths, result: &mut R) {
let extensions = graph.outgoing_edges(self.end_node);
result.reserve(extensions.size_hint().0);
for extension in extensions {
let mut new_path = self.clone();
if new_path.append(graph, paths, extension).is_err() {
continue;
}
if new_path.resolve(graph, paths).is_err() {
continue;
}
result.push(new_path);
}
}
}
impl Paths {
pub fn find_all_paths<I, F>(
&mut self,
graph: &StackGraph,
starting_nodes: I,
cancellation_flag: &dyn CancellationFlag,
mut visit: F,
) -> Result<(), CancellationError>
where
I: IntoIterator<Item = Handle<Node>>,
F: FnMut(&StackGraph, &mut Paths, Path),
{
let mut cycle_detector = CycleDetector::new();
let mut queue = starting_nodes
.into_iter()
.filter_map(|node| Path::from_node(graph, self, node))
.collect::<VecDeque<_>>();
while let Some(path) = queue.pop_front() {
cancellation_flag.check("finding paths")?;
if !cycle_detector.should_process_path(&path, |probe| probe.cmp(graph, self, &path)) {
continue;
}
path.extend(graph, self, &mut queue);
visit(graph, self, path);
}
Ok(())
}
}
pub trait Extend<T> {
fn reserve(&mut self, additional: usize);
fn push(&mut self, item: T);
}
impl<T> Extend<T> for Vec<T> {
fn reserve(&mut self, additional: usize) {
self.reserve(additional);
}
fn push(&mut self, item: T) {
self.push(item);
}
}
impl<T> Extend<T> for VecDeque<T> {
fn reserve(&mut self, additional: usize) {
self.reserve(additional);
}
fn push(&mut self, item: T) {
self.push_back(item);
}
}
impl Paths {
pub fn remove_shadowed_paths(
&mut self,
paths: &mut Vec<Path>,
cancellation_flag: &dyn CancellationFlag,
) -> Result<(), CancellationError> {
let mut keep = vec![true; paths.len()];
for (i, comparator) in paths.iter().enumerate() {
for (j, other) in paths.iter().enumerate() {
cancellation_flag.check("path shadowing")?;
if i == j || !keep[j] {
continue;
}
if comparator.shadows(self, &other) {
keep[j] = false;
}
}
}
let mut iter = keep.iter().copied();
paths.retain(|_| iter.next().unwrap());
Ok(())
}
}
pub struct Paths {
pub(crate) scope_stacks: ListArena<Handle<Node>>,
pub(crate) symbol_stacks: ListArena<ScopedSymbol>,
pub(crate) path_edges: DequeArena<PathEdge>,
}
impl Paths {
pub fn new() -> Paths {
Paths {
scope_stacks: List::new_arena(),
symbol_stacks: List::new_arena(),
path_edges: Deque::new_arena(),
}
}
}