LLVM 20.0.0git
|
A class used to represent edges in the call graph. More...
#include "llvm/Analysis/LazyCallGraph.h"
Public Types | |
enum | Kind : bool { Ref = false , Call = true } |
The kind of edge in the graph. More... | |
Public Member Functions | |
Edge () | |
Edge (Node &N, Kind K) | |
operator bool () const | |
Test whether the edge is null. | |
Kind | getKind () const |
Returns the Kind of the edge. | |
bool | isCall () const |
Test whether the edge represents a direct call to a function. | |
Node & | getNode () const |
Get the call graph node referenced by this edge. | |
Function & | getFunction () const |
Get the function referenced by this edge. | |
Friends | |
class | LazyCallGraph::EdgeSequence |
class | LazyCallGraph::RefSCC |
A class used to represent edges in the call graph.
The lazy call graph models both call edges and reference edges. Call edges are much what you would expect, and exist when there is a 'call' or 'invoke' instruction of some function. Reference edges are also tracked along side these, and exist whenever any instruction (transitively through its operands) references a function. All call edges are inherently reference edges, and so the reference graph forms a superset of the formal call graph.
All of these forms of edges are fundamentally represented as outgoing edges. The edges are stored in the source node and point at the target node. This allows the edge structure itself to be a very compact data structure: essentially a tagged pointer.
Definition at line 128 of file LazyCallGraph.h.
|
inlinedefault |
Definition at line 1214 of file LazyCallGraph.h.
|
inline |
Get the function referenced by this edge.
This requires that the edge is not null.
Definition at line 1235 of file LazyCallGraph.h.
|
inline |
|
inline |
Get the call graph node referenced by this edge.
This requires that the edge is not null.
Definition at line 1230 of file LazyCallGraph.h.
References assert().
Referenced by llvm::LazyCallGraph::buildRefSCCs().
|
inline |
Test whether the edge represents a direct call to a function.
This requires that the edge is not null.
Definition at line 1225 of file LazyCallGraph.h.
References assert().
Referenced by llvm::LazyCallGraph::addSplitRefRecursiveFunctions(), and llvm::LazyCallGraph::RefSCC::insertTrivialCallEdge().
|
inlineexplicit |
Test whether the edge is null.
This happens when an edge has been deleted. We leave the edge objects around but clear them.
Definition at line 1216 of file LazyCallGraph.h.
|
friend |
Definition at line 161 of file LazyCallGraph.h.
|
friend |
Definition at line 162 of file LazyCallGraph.h.