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.cpp210 SCCMap(std::move(G.SCCMap)), LibFunctions(std::move(G.LibFunctions)) { in LazyCallGraph()
235 SCCMap = std::move(G.SCCMap); in operator =()
712 G->SCCMap[N] = &TargetSCC; in switchInternalEdgeToCall()
791 G->SCCMap.erase(N); in switchInternalEdgeToRef()
804 G->SCCMap[&TargetN] = &OldSCC; in switchInternalEdgeToRef()
834 assert(!G->SCCMap.count(&ChildN) && in switchInternalEdgeToRef()
858 G->SCCMap[&N] = &OldSCC; in switchInternalEdgeToRef()
908 G->SCCMap[&N] = NewSCCs.back(); in switchInternalEdgeToRef()
1106 G->SCCMap[&N] = &InnerC; in insertIncomingRefEdge()
1483 assert(SCCMap.empty() && in insertEdge()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h984 SCC *lookupSCC(Node &N) const { return SCCMap.lookup(&N); } in lookupSCC()
1138 DenseMap<Node *, SCC *> SCCMap; variable