Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h113 class EdgeSequence; variable
164 friend class LazyCallGraph::EdgeSequence;
182 class EdgeSequence {
293 EdgeSequence() = default;
346 EdgeSequence &operator*() const {
348 return const_cast<EdgeSequence &>(*Edges);
350 EdgeSequence *operator->() const { return &**this; }
364 EdgeSequence &populate() { in populate()
381 Optional<EdgeSequence> Edges;
388 EdgeSequence &populateSlow();
[all …]
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DLazyCallGraph.cpp45 void LazyCallGraph::EdgeSequence::insertEdgeInternal(Node &TargetN, in insertEdgeInternal()
51 void LazyCallGraph::EdgeSequence::setEdgeKind(Node &TargetN, Edge::Kind EK) { in setEdgeKind()
55 bool LazyCallGraph::EdgeSequence::removeEdgeInternal(Node &TargetN) { in removeEdgeInternal()
75 LazyCallGraph::EdgeSequence &LazyCallGraph::Node::populateSlow() { in populateSlow()
81 Edges = EdgeSequence(); in populateSlow()
788 SmallVector<std::pair<Node *, EdgeSequence::call_iterator>, 16> DFSStack; in switchInternalEdgeToRef()
832 EdgeSequence::call_iterator I; in switchInternalEdgeToRef()
1235 SmallVector<std::pair<Node *, EdgeSequence::iterator>, 4> DFSStack; in removeInternalRefEdge()
1257 EdgeSequence::iterator I; in removeInternalRefEdge()
1901 [](EdgeSequence::call_iterator I) -> Node & { return I->getNode(); }, in buildSCCs()
[all …]