LLVM 22.0.0git
llvm::CallGraphNode Class Reference

A node in the call graph for a module. More...

#include "llvm/Analysis/CallGraph.h"

Public Types

using CallRecord = std::pair<std::optional<WeakTrackingVH>, CallGraphNode *>
 A pair of the calling instruction (a call or invoke) and the call graph node being called.
using CalledFunctionsVector = std::vector<CallRecord>
using iterator = std::vector<CallRecord>::iterator
using const_iterator = std::vector<CallRecord>::const_iterator

Public Member Functions

 CallGraphNode (CallGraph *CG, Function *F)
 Creates a node for the specified function.
 CallGraphNode (const CallGraphNode &)=delete
CallGraphNodeoperator= (const CallGraphNode &)=delete
 ~CallGraphNode ()
FunctiongetFunction () const
 Returns the function that this call graph node represents.
iterator begin ()
iterator end ()
const_iterator begin () const
const_iterator end () const
bool empty () const
unsigned size () const
unsigned getNumReferences () const
 Returns the number of other CallGraphNodes in this CallGraph that reference this node in their callee list.
CallGraphNodeoperator[] (unsigned i) const
 Returns the i'th called function.
LLVM_ABI void dump () const
 Print out this call graph node.
LLVM_ABI void print (raw_ostream &OS) const
void removeAllCalledFunctions ()
 Removes all edges from this CallGraphNode to any functions it calls.
void stealCalledFunctionsFrom (CallGraphNode *N)
 Moves all the callee information from N to this node.
void addCalledFunction (CallBase *Call, CallGraphNode *M)
 Adds a function to the list of functions called by this one.
void removeCallEdge (iterator I)
LLVM_ABI void removeOneAbstractEdgeTo (CallGraphNode *Callee)
 Removes one edge associated with a null callsite from this node to the specified callee function.
LLVM_ABI void replaceCallEdge (CallBase &Call, CallBase &NewCall, CallGraphNode *NewNode)
 Replaces the edge in the node for the specified call site with a new one.

Friends

class CallGraph

Detailed Description

A node in the call graph for a module.

Typically represents a function in the call graph. There are also special "null" nodes used to represent theoretical entries in the call graph.

Definition at line 162 of file CallGraph.h.

Member Typedef Documentation

โ—† CalledFunctionsVector

Definition at line 177 of file CallGraph.h.

โ—† CallRecord

using llvm::CallGraphNode::CallRecord = std::pair<std::optional<WeakTrackingVH>, CallGraphNode *>

A pair of the calling instruction (a call or invoke) and the call graph node being called.

Call graph node may have two types of call records which represent an edge in the call graph - reference or a call edge. Reference edges are not associated with any call instruction and are created with the first field set to None, while real call edges have instruction address in this field. Therefore, all real call edges are expected to have a value in the first field and it is not supposed to be nullptr. Reference edges, for example, are used for connecting broker function caller to the callback function for callback call sites.

Definition at line 174 of file CallGraph.h.

โ—† const_iterator

Definition at line 190 of file CallGraph.h.

โ—† iterator

using llvm::CallGraphNode::iterator = std::vector<CallRecord>::iterator

Definition at line 189 of file CallGraph.h.

Constructor & Destructor Documentation

โ—† CallGraphNode() [1/2]

llvm::CallGraphNode::CallGraphNode ( CallGraph * CG,
Function * F )
inline

Creates a node for the specified function.

Definition at line 180 of file CallGraph.h.

References CallGraph.

Referenced by addCalledFunction(), CallGraphNode(), operator=(), operator[](), removeOneAbstractEdgeTo(), replaceCallEdge(), and stealCalledFunctionsFrom().

โ—† CallGraphNode() [2/2]

llvm::CallGraphNode::CallGraphNode ( const CallGraphNode & )
delete

References CallGraphNode().

โ—† ~CallGraphNode()

llvm::CallGraphNode::~CallGraphNode ( )
inline

Definition at line 185 of file CallGraph.h.

References assert().

Member Function Documentation

โ—† addCalledFunction()

void llvm::CallGraphNode::addCalledFunction ( CallBase * Call,
CallGraphNode * M )
inline

Adds a function to the list of functions called by this one.

Definition at line 238 of file CallGraph.h.

References Call, and CallGraphNode().

Referenced by replaceCallEdge().

โ—† begin() [1/2]

iterator llvm::CallGraphNode::begin ( )
inline

Definition at line 195 of file CallGraph.h.

โ—† begin() [2/2]

const_iterator llvm::CallGraphNode::begin ( ) const
inline

Definition at line 197 of file CallGraph.h.

โ—† dump()

LLVM_DUMP_METHOD void CallGraphNode::dump ( ) const

Print out this call graph node.

Definition at line 191 of file CallGraph.cpp.

References llvm::dbgs(), LLVM_DUMP_METHOD, and print().

โ—† empty()

bool llvm::CallGraphNode::empty ( ) const
inline

Definition at line 199 of file CallGraph.h.

Referenced by llvm::CallGraph::removeFunctionFromModule().

โ—† end() [1/2]

iterator llvm::CallGraphNode::end ( )
inline

Definition at line 196 of file CallGraph.h.

โ—† end() [2/2]

const_iterator llvm::CallGraphNode::end ( ) const
inline

Definition at line 198 of file CallGraph.h.

โ—† getFunction()

Function * llvm::CallGraphNode::getFunction ( ) const
inline

Returns the function that this call graph node represents.

Definition at line 193 of file CallGraph.h.

Referenced by print(), and llvm::CallGraph::removeFunctionFromModule().

โ—† getNumReferences()

unsigned llvm::CallGraphNode::getNumReferences ( ) const
inline

Returns the number of other CallGraphNodes in this CallGraph that reference this node in their callee list.

Definition at line 204 of file CallGraph.h.

Referenced by print().

โ—† operator=()

CallGraphNode & llvm::CallGraphNode::operator= ( const CallGraphNode & )
delete

References CallGraphNode().

โ—† operator[]()

CallGraphNode * llvm::CallGraphNode::operator[] ( unsigned i) const
inline

Returns the i'th called function.

Definition at line 207 of file CallGraph.h.

References assert(), and CallGraphNode().

โ—† print()

void CallGraphNode::print ( raw_ostream & OS) const

Definition at line 172 of file CallGraph.cpp.

References getFunction(), getNumReferences(), and I.

Referenced by dump().

โ—† removeAllCalledFunctions()

void llvm::CallGraphNode::removeAllCalledFunctions ( )
inline

Removes all edges from this CallGraphNode to any functions it calls.

Definition at line 223 of file CallGraph.h.

โ—† removeCallEdge()

void llvm::CallGraphNode::removeCallEdge ( iterator I)
inline

Definition at line 245 of file CallGraph.h.

References I.

โ—† removeOneAbstractEdgeTo()

void CallGraphNode::removeOneAbstractEdgeTo ( CallGraphNode * Callee)

Removes one edge associated with a null callsite from this node to the specified callee function.

removeOneAbstractEdgeTo - Remove one edge associated with a null callsite from this node to the specified callee function.

Definition at line 196 of file CallGraph.cpp.

References assert(), CallGraphNode(), and I.

Referenced by replaceCallEdge().

โ—† replaceCallEdge()

void CallGraphNode::replaceCallEdge ( CallBase & Call,
CallBase & NewCall,
CallGraphNode * NewNode )

Replaces the edge in the node for the specified call site with a new one.

replaceCallEdge - This method replaces the edge in the node for the specified call site with a new one.

Note that this method takes linear time, so it should be used sparingly.

Definition at line 212 of file CallGraph.cpp.

References addCalledFunction(), assert(), Call, CallGraphNode(), llvm::forEachCallbackFunction(), I, N, llvm::SmallVectorTemplateBase< T, bool >::push_back(), removeOneAbstractEdgeTo(), and llvm::SmallVectorTemplateCommon< T, typename >::size().

โ—† size()

unsigned llvm::CallGraphNode::size ( ) const
inline

Definition at line 200 of file CallGraph.h.

โ—† stealCalledFunctionsFrom()

void llvm::CallGraphNode::stealCalledFunctionsFrom ( CallGraphNode * N)
inline

Moves all the callee information from N to this node.

Definition at line 231 of file CallGraph.h.

References assert(), CallGraphNode(), N, and std::swap().

โ—† CallGraph

friend class CallGraph
friend

Definition at line 263 of file CallGraph.h.

References CallGraph.

Referenced by CallGraph, and CallGraphNode().


The documentation for this class was generated from the following files: