Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DLazyCallGraph.cpp196 SCCMap(std::move(G.SCCMap)), in LazyCallGraph()
206 SCCMap = std::move(G.SCCMap); in operator =()
646 G->SCCMap[N] = &TargetSCC; in switchInternalEdgeToCall()
733 G->SCCMap.erase(N); in switchInternalEdgeToRef()
746 G->SCCMap[&TargetN] = &OldSCC; in switchInternalEdgeToRef()
1464 assert(SCCMap.empty() && in insertEdge()
1471 assert(SCCMap.empty() && in removeEdge()
1501 if (SCCMap.empty()) { in removeDeadFunction()
1510 auto CI = SCCMap.find(&N); in removeDeadFunction()
1511 assert(CI != SCCMap.end() && in removeDeadFunction()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h969 SCC *lookupSCC(Node &N) const { return SCCMap.lookup(&N); } in lookupSCC()
1123 DenseMap<Node *, SCC *> SCCMap; variable