Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLazyCallGraph.cpp210 SCCMap(std::move(G.SCCMap)), LibFunctions(std::move(G.LibFunctions)) { in LazyCallGraph()
227 SCCMap = std::move(G.SCCMap); in operator =()
704 G->SCCMap[N] = &TargetSCC; in switchInternalEdgeToCall()
783 G->SCCMap.erase(N); in switchInternalEdgeToRef()
796 G->SCCMap[&TargetN] = &OldSCC; in switchInternalEdgeToRef()
826 assert(!G->SCCMap.count(&ChildN) && in switchInternalEdgeToRef()
850 G->SCCMap[&N] = &OldSCC; in switchInternalEdgeToRef()
900 G->SCCMap[&N] = NewSCCs.back(); in switchInternalEdgeToRef()
1098 G->SCCMap[&N] = &InnerC; in insertIncomingRefEdge()
1479 assert(SCCMap.empty() && in insertEdge()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h979 SCC *lookupSCC(Node &N) const { return SCCMap.lookup(&N); } in lookupSCC()
1133 DenseMap<Node *, SCC *> SCCMap; variable