reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Analysis/LazyCallGraphTest.cpp
 1029   CG.buildRefSCCs();
 1030   for (LazyCallGraph::RefSCC &RC : CG.postorder_ref_sccs())
 1033   LazyCallGraph::Node &A = *CG.lookup(lookupFunction(*M, "a"));
 1034   LazyCallGraph::Node &B = *CG.lookup(lookupFunction(*M, "b"));
 1035   LazyCallGraph::Node &C = *CG.lookup(lookupFunction(*M, "c"));
 1036   LazyCallGraph::Node &D = *CG.lookup(lookupFunction(*M, "d"));
 1037   LazyCallGraph::RefSCC &ARC = *CG.lookupRefSCC(A);
 1038   LazyCallGraph::RefSCC &BRC = *CG.lookupRefSCC(B);
 1039   LazyCallGraph::RefSCC &CRC = *CG.lookupRefSCC(C);
 1040   LazyCallGraph::RefSCC &DRC = *CG.lookupRefSCC(D);
 1056   EXPECT_EQ(&ARC, CG.lookupRefSCC(A));
 1057   EXPECT_EQ(&ARC, CG.lookupRefSCC(B));
 1058   EXPECT_EQ(&ARC, CG.lookupRefSCC(C));
 1059   EXPECT_EQ(&ARC, CG.lookupRefSCC(D));
 1062   auto I = CG.postorder_ref_scc_begin(), End = CG.postorder_ref_scc_end();
 1062   auto I = CG.postorder_ref_scc_begin(), End = CG.postorder_ref_scc_end();