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

References

unittests/Analysis/LazyCallGraphTest.cpp
 1330   CG.buildRefSCCs();
 1331   auto I = CG.postorder_ref_scc_begin(), E = CG.postorder_ref_scc_end();
 1331   auto I = CG.postorder_ref_scc_begin(), E = CG.postorder_ref_scc_end();
 1335   LazyCallGraph::Node &A = *CG.lookup(lookupFunction(*M, "a"));
 1336   LazyCallGraph::Node &B = *CG.lookup(lookupFunction(*M, "b"));
 1337   LazyCallGraph::Node &C = *CG.lookup(lookupFunction(*M, "c"));
 1338   EXPECT_EQ(&RC, CG.lookupRefSCC(A));
 1339   EXPECT_EQ(&RC, CG.lookupRefSCC(B));
 1340   EXPECT_EQ(&RC, CG.lookupRefSCC(C));
 1347   EXPECT_EQ(&RC, CG.lookupRefSCC(A));
 1348   EXPECT_EQ(&RC, CG.lookupRefSCC(B));
 1349   EXPECT_EQ(&RC, CG.lookupRefSCC(C));
 1350   auto J = CG.postorder_ref_scc_begin();
 1365   EXPECT_EQ(&ARC, CG.lookupRefSCC(A));
 1367   EXPECT_EQ(&BCRC, CG.lookupRefSCC(B));
 1368   EXPECT_EQ(&BCRC, CG.lookupRefSCC(C));
 1369   J = CG.postorder_ref_scc_begin();