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

References

unittests/Analysis/LazyCallGraphTest.cpp
 1246   EXPECT_EQ(&RC, CG.lookupRefSCC(C));
 1250   EXPECT_EQ(&*RC.begin(), CG.lookupSCC(C));
 1253   RC.insertInternalRefEdge(A, C);
 1257   EXPECT_EQ(&RC, CG.lookupRefSCC(C));
 1261   EXPECT_EQ(&*RC.begin(), CG.lookupSCC(C));
 1266   auto NewCs = RC.switchInternalEdgeToRef(B, C);
 1269   EXPECT_EQ(&RC, CG.lookupRefSCC(C));
 1276   EXPECT_EQ(&*J++, CG.lookupSCC(C));
 1288   LazyCallGraph::SCC &CC = *CG.lookupSCC(C);
 1289   EXPECT_TRUE(RC.switchInternalEdgeToCall(A, C, [&](ArrayRef<LazyCallGraph::SCC *> MergedCs) {
 1295   EXPECT_EQ(&CC, CG.lookupSCC(C));
 1298   EXPECT_EQ(&*J++, CG.lookupSCC(C));