Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyCallGraph.cpp212 SCCMap(std::move(G.SCCMap)), LibFunctions(std::move(G.LibFunctions)) { in LazyCallGraph()
237 SCCMap = std::move(G.SCCMap); in operator =()
714 G->SCCMap[N] = &TargetSCC; in switchInternalEdgeToCall()
793 G->SCCMap.erase(N); in switchInternalEdgeToRef()
806 G->SCCMap[&TargetN] = &OldSCC; in switchInternalEdgeToRef()
836 assert(!G->SCCMap.count(&ChildN) && in switchInternalEdgeToRef()
860 G->SCCMap[&N] = &OldSCC; in switchInternalEdgeToRef()
910 G->SCCMap[&N] = NewSCCs.back(); in switchInternalEdgeToRef()
1108 G->SCCMap[&N] = &InnerC; in insertIncomingRefEdge()
1485 assert(SCCMap.empty() && in insertEdge()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h983 SCC *lookupSCC(Node &N) const { return SCCMap.lookup(&N); } in lookupSCC()
1139 DenseMap<Node *, SCC *> SCCMap; variable