Home
last modified time | relevance | path

Searched refs:LeafSCCs (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Analysis/
DLazyCallGraph.cpp137 SCCMap(std::move(G.SCCMap)), LeafSCCs(std::move(G.LeafSCCs)), in LazyCallGraph()
151 LeafSCCs = std::move(G.LeafSCCs); in operator =()
335 assert(std::find(G->LeafSCCs.begin(), G->LeafSCCs.end(), this) == in removeInterSCCEdge()
336 G->LeafSCCs.end() && in removeInterSCCEdge()
374 G->LeafSCCs.push_back(this); in removeInterSCCEdge()
516 if (!std::any_of(G->LeafSCCs.begin(), G->LeafSCCs.end(), in removeIntraSCCEdge()
524 G->LeafSCCs.erase(std::remove(G->LeafSCCs.begin(), G->LeafSCCs.end(), this), in removeIntraSCCEdge()
525 G->LeafSCCs.end()); in removeIntraSCCEdge()
569 SmallVector<SCC *, 16> Worklist(LeafSCCs.begin(), LeafSCCs.end()); in updateGraphPtrs()
609 LeafSCCs.push_back(NewSCC); in formSCC()
/external/llvm/include/llvm/Analysis/
DLazyCallGraph.h490 SmallVector<SCC *, 4> LeafSCCs; variable