reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1887 CG.buildRefSCCs(); 1888 auto I = CG.postorder_ref_scc_begin(); 1890 EXPECT_EQ(CG.postorder_ref_scc_end(), I); 1892 LazyCallGraph::Node &A = *CG.lookup(lookupFunction(*M, "a")); 1893 LazyCallGraph::Node &B = *CG.lookup(lookupFunction(*M, "b")); 1894 LazyCallGraph::Node &C = *CG.lookup(lookupFunction(*M, "c")); 1895 LazyCallGraph::Node &D = *CG.lookup(lookupFunction(*M, "d")); 1896 LazyCallGraph::Node &E = *CG.lookup(lookupFunction(*M, "e")); 1897 LazyCallGraph::Node &F = *CG.lookup(lookupFunction(*M, "f")); 1898 LazyCallGraph::Node &G = *CG.lookup(lookupFunction(*M, "g")); 1899 LazyCallGraph::SCC &AC = *CG.lookupSCC(A); 1900 LazyCallGraph::SCC &BC = *CG.lookupSCC(B); 1901 LazyCallGraph::SCC &CC = *CG.lookupSCC(C); 1902 LazyCallGraph::SCC &DC = *CG.lookupSCC(D); 1903 LazyCallGraph::SCC &EC = *CG.lookupSCC(E); 1904 LazyCallGraph::SCC &FC = *CG.lookupSCC(F); 1905 LazyCallGraph::SCC &GC = *CG.lookupSCC(G);