LLVM 22.0.0git
|
The edge sequence object. More...
#include "llvm/Analysis/LazyCallGraph.h"
Classes | |
class | call_iterator |
An iterator over specifically call edges. More... | |
class | iterator |
An iterator used for the edges to both entry nodes and child nodes. More... |
Public Member Functions | |
iterator | begin () |
iterator | end () |
Edge & | operator[] (Node &N) |
Edge * | lookup (Node &N) |
call_iterator | call_begin () |
call_iterator | call_end () |
iterator_range< call_iterator > | calls () |
bool | empty () |
Friends | |
class | LazyCallGraph |
class | LazyCallGraph::Node |
class | LazyCallGraph::RefSCC |
The edge sequence object.
This typically exists entirely within the node but is exposed as a separate type because a node doesn't initially have edges. An explicit population step is required to produce this sequence at first and it is then cached in the node. It is also used to represent edges entering the graph from outside the module to model the graph's roots.
The sequence itself both iterable and indexable. The indexes remain stable even as the sequence mutates (including removal).
Definition at line 180 of file LazyCallGraph.h.
|
inline |
Definition at line 252 of file LazyCallGraph.h.
Referenced by llvm::LazyCallGraph::RefSCC::removeInternalRefEdges().
|
inline |
Definition at line 270 of file LazyCallGraph.h.
Referenced by calls().
|
inline |
Definition at line 273 of file LazyCallGraph.h.
Referenced by calls().
|
inline |
Definition at line 275 of file LazyCallGraph.h.
References call_begin(), call_end(), and llvm::make_range().
|
inline |
Definition at line 279 of file LazyCallGraph.h.
References E().
|
inline |
Definition at line 253 of file LazyCallGraph.h.
Referenced by llvm::LazyCallGraph::RefSCC::removeInternalRefEdges().
Definition at line 262 of file LazyCallGraph.h.
References E(), LazyCallGraph::Node, and N.
Referenced by llvm::LazyCallGraph::addSplitRefRecursiveFunctions().
Definition at line 255 of file LazyCallGraph.h.
References assert(), E(), LazyCallGraph::Node, and N.
|
friend |
Definition at line 181 of file LazyCallGraph.h.
References LazyCallGraph.
Referenced by LazyCallGraph.
|
friend |
Definition at line 182 of file LazyCallGraph.h.
Referenced by lookup(), and operator[]().
|
friend |
Definition at line 183 of file LazyCallGraph.h.