clang 20.0.0git
|
The AST-based call graph. More...
#include "clang/Analysis/CallGraph.h"
Public Types | |
using | iterator = FunctionMapTy::iterator |
using | const_iterator = FunctionMapTy::const_iterator |
using | nodes_iterator = llvm::SetVector< CallGraphNode * >::iterator |
Iterators through all the nodes of the graph that have no parent. | |
using | const_nodes_iterator = llvm::SetVector< CallGraphNode * >::const_iterator |
Public Member Functions | |
CallGraph () | |
~CallGraph () | |
void | addToCallGraph (Decl *D) |
Populate the call graph with the functions in the given declaration. | |
CallGraphNode * | getNode (const Decl *) const |
Lookup the node for the given declaration. | |
CallGraphNode * | getOrInsertNode (Decl *) |
Lookup the node for the given declaration. | |
iterator | begin () |
Iterators through all the elements in the graph. | |
iterator | end () |
const_iterator | begin () const |
const_iterator | end () const |
unsigned | size () const |
Get the number of nodes in the graph. | |
CallGraphNode * | getRoot () const |
Get the virtual root of the graph, all the functions available externally are represented as callees of the node. | |
void | print (raw_ostream &os) const |
void | dump () const |
void | viewGraph () const |
void | addNodesForBlocks (DeclContext *D) |
bool | VisitFunctionDecl (FunctionDecl *FD) override |
Part of recursive declaration visitation. | |
bool | VisitObjCMethodDecl (ObjCMethodDecl *MD) override |
Part of recursive declaration visitation. | |
bool | TraverseStmt (Stmt *S) override |
Recursively visit a statement or expression, by dispatching to Traverse*() based on the argument's dynamic type. | |
Public Member Functions inherited from clang::DynamicRecursiveASTVisitor | |
virtual void | anchor () |
virtual | ~DynamicRecursiveASTVisitor ()=default |
virtual bool | TraverseAST (ASTContext &AST) |
Recursively visits an entire AST, starting from the TranslationUnitDecl. | |
virtual bool | TraverseAttr (Attr *At) |
Recursively visit an attribute, by dispatching to Traverse*Attr() based on the argument's dynamic type. | |
virtual bool | TraverseConstructorInitializer (CXXCtorInitializer *Init) |
Recursively visit a constructor initializer. | |
virtual bool | TraverseCXXBaseSpecifier (const CXXBaseSpecifier &Base) |
Recursively visit a base specifier. | |
virtual bool | TraverseDecl (Decl *D) |
Recursively visit a declaration, by dispatching to Traverse*Decl() based on the argument's dynamic type. | |
virtual bool | TraverseDeclarationNameInfo (DeclarationNameInfo NameInfo) |
Recursively visit a name with its location information. | |
virtual bool | TraverseLambdaCapture (LambdaExpr *LE, const LambdaCapture *C, Expr *Init) |
Recursively visit a lambda capture. | |
virtual bool | TraverseNestedNameSpecifier (NestedNameSpecifier *NNS) |
Recursively visit a C++ nested-name-specifier. | |
virtual bool | TraverseNestedNameSpecifierLoc (NestedNameSpecifierLoc NNS) |
Recursively visit a C++ nested-name-specifier with location information. | |
virtual bool | TraverseStmt (Stmt *S) |
Recursively visit a statement or expression, by dispatching to Traverse*() based on the argument's dynamic type. | |
virtual bool | TraverseTemplateArgument (const TemplateArgument &Arg) |
Recursively visit a template argument and dispatch to the appropriate method for the argument type. | |
virtual bool | TraverseTemplateArgumentLoc (const TemplateArgumentLoc &ArgLoc) |
Recursively visit a template argument location and dispatch to the appropriate method for the argument type. | |
bool | TraverseTemplateArguments (ArrayRef< TemplateArgument > Args) |
Recursively visit a set of template arguments. | |
virtual bool | TraverseTemplateName (TemplateName Template) |
Recursively visit a template name and dispatch to the appropriate method. | |
virtual bool | TraverseType (QualType T) |
Recursively visit a type, by dispatching to Traverse*Type() based on the argument's getTypeClass() property. | |
virtual bool | TraverseTypeLoc (TypeLoc TL) |
Recursively visit a type with location, by dispatching to Traverse*TypeLoc() based on the argument type's getTypeClass() property. | |
virtual bool | TraverseObjCProtocolLoc (ObjCProtocolLoc ProtocolLoc) |
Recursively visit an Objective-C protocol reference with location information. | |
virtual bool | TraverseTypeConstraint (const TypeConstraint *C) |
Traverse a concept (requirement). | |
virtual bool | TraverseConceptRequirement (concepts::Requirement *R) |
virtual bool | TraverseConceptTypeRequirement (concepts::TypeRequirement *R) |
virtual bool | TraverseConceptExprRequirement (concepts::ExprRequirement *R) |
virtual bool | TraverseConceptNestedRequirement (concepts::NestedRequirement *R) |
virtual bool | TraverseConceptReference (ConceptReference *CR) |
virtual bool | VisitConceptReference (ConceptReference *CR) |
virtual bool | VisitAttr (Attr *A) |
Visit a node. | |
virtual bool | VisitDecl (Decl *D) |
virtual bool | VisitStmt (Stmt *S) |
virtual bool | VisitType (Type *T) |
virtual bool | VisitTypeLoc (TypeLoc TL) |
bool | WalkUpFromDecl (Decl *D) |
Walk up from a node. | |
bool | WalkUpFromStmt (Stmt *S) |
bool | WalkUpFromType (Type *T) |
bool | WalkUpFromTypeLoc (TypeLoc TL) |
virtual bool | dataTraverseStmtPre (Stmt *S) |
Invoked before visiting a statement or expression via data recursion. | |
virtual bool | dataTraverseStmtPost (Stmt *S) |
Invoked after visiting a statement or expression via data recursion. | |
virtual bool | dataTraverseNode (Stmt *S) |
Static Public Member Functions | |
static bool | includeInGraph (const Decl *D) |
Determine if a declaration should be included in the graph. | |
static bool | includeCalleeInGraph (const Decl *D) |
Determine if a declaration should be included in the graph for the purposes of being a callee. | |
Friends | |
class | CallGraphNode |
Additional Inherited Members | |
Public Attributes inherited from clang::DynamicRecursiveASTVisitor | |
bool | ShouldVisitTemplateInstantiations = false |
Whether this visitor should recurse into template instantiations. | |
bool | ShouldWalkTypesOfTypeLocs = true |
Whether this visitor should recurse into the types of TypeLocs. | |
bool | ShouldVisitImplicitCode = false |
Whether this visitor should recurse into implicit code, e.g. | |
bool | ShouldVisitLambdaBody = true |
Whether this visitor should recurse into lambda body. | |
Protected Member Functions inherited from clang::DynamicRecursiveASTVisitor | |
DynamicRecursiveASTVisitor ()=default | |
DynamicRecursiveASTVisitor (DynamicRecursiveASTVisitor &&)=default | |
DynamicRecursiveASTVisitor (const DynamicRecursiveASTVisitor &)=default | |
DynamicRecursiveASTVisitor & | operator= (DynamicRecursiveASTVisitor &&)=default |
DynamicRecursiveASTVisitor & | operator= (const DynamicRecursiveASTVisitor &)=default |
The AST-based call graph.
The call graph extends itself with the given declarations by implementing the recursive AST visitor, which constructs the graph by visiting the given declarations.
Definition at line 43 of file CallGraph.h.
using clang::CallGraph::const_iterator = FunctionMapTy::const_iterator |
Definition at line 83 of file CallGraph.h.
using clang::CallGraph::const_nodes_iterator = llvm::SetVector<CallGraphNode *>::const_iterator |
Definition at line 103 of file CallGraph.h.
using clang::CallGraph::iterator = FunctionMapTy::iterator |
Definition at line 82 of file CallGraph.h.
using clang::CallGraph::nodes_iterator = llvm::SetVector<CallGraphNode *>::iterator |
Iterators through all the nodes of the graph that have no parent.
These are the unreachable nodes, which are either unused or are due to us failing to add a call edge due to the analysis imprecision.
Definition at line 102 of file CallGraph.h.
CallGraph::CallGraph | ( | ) |
|
default |
void CallGraph::addNodesForBlocks | ( | DeclContext * | D | ) |
Definition at line 140 of file CallGraph.cpp.
References addNodesForBlocks(), and D.
Referenced by addNodesForBlocks(), VisitFunctionDecl(), and VisitObjCMethodDecl().
|
inline |
Populate the call graph with the functions in the given declaration.
Recursively walks the declaration to find all the dependent Decls as well.
Definition at line 63 of file CallGraph.h.
References D, and clang::DynamicRecursiveASTVisitor::TraverseDecl().
|
inline |
Iterators through all the elements in the graph.
Note, this gives non-deterministic order.
Definition at line 87 of file CallGraph.h.
Referenced by llvm::GraphTraits< clang::CallGraph * >::nodes_begin(), and llvm::GraphTraits< const clang::CallGraph * >::nodes_begin().
|
inline |
Definition at line 89 of file CallGraph.h.
LLVM_DUMP_METHOD void CallGraph::dump | ( | ) | const |
Definition at line 249 of file CallGraph.cpp.
References print().
|
inline |
Definition at line 88 of file CallGraph.h.
Referenced by llvm::GraphTraits< clang::CallGraph * >::nodes_end(), and llvm::GraphTraits< const clang::CallGraph * >::nodes_end().
|
inline |
Definition at line 90 of file CallGraph.h.
CallGraphNode * CallGraph::getNode | ( | const Decl * | F | ) | const |
Lookup the node for the given declaration.
Definition at line 200 of file CallGraph.cpp.
CallGraphNode * CallGraph::getOrInsertNode | ( | Decl * | F | ) |
Lookup the node for the given declaration.
If none found, insert one into the graph.
Definition at line 206 of file CallGraph.cpp.
References clang::CallGraphNode::addCallee(), clang::DynTypedNode::get(), clang::Decl::getCanonicalDecl(), and Node.
Referenced by CallGraph().
|
inline |
Get the virtual root of the graph, all the functions available externally are represented as callees of the node.
Definition at line 97 of file CallGraph.h.
Referenced by llvm::GraphTraits< clang::CallGraph * >::getEntryNode(), llvm::GraphTraits< const clang::CallGraph * >::getEntryNode(), and llvm::DOTGraphTraits< const CallGraph * >::getNodeLabel().
Determine if a declaration should be included in the graph for the purposes of being a callee.
This is similar to includeInGraph except it permits declarations, not just definitions.
Definition at line 166 of file CallGraph.cpp.
References D, and clang::IdentifierInfo::getName().
Referenced by includeInGraph().
Determine if a declaration should be included in the graph.
Definition at line 158 of file CallGraph.cpp.
References D, clang::Decl::hasBody(), and includeCalleeInGraph().
Referenced by VisitFunctionDecl(), and VisitObjCMethodDecl().
void CallGraph::print | ( | raw_ostream & | os | ) | const |
Definition at line 221 of file CallGraph.cpp.
References clang::CallGraphNode::begin(), E, clang::CallGraphNode::end(), and clang::CallGraphNode::print().
Referenced by dump().
|
inline |
Get the number of nodes in the graph.
Definition at line 93 of file CallGraph.h.
Referenced by llvm::GraphTraits< clang::CallGraph * >::size(), and llvm::GraphTraits< const clang::CallGraph * >::size().
Recursively visit a statement or expression, by dispatching to Traverse*() based on the argument's dynamic type.
Reimplemented from clang::DynamicRecursiveASTVisitor.
Definition at line 137 of file CallGraph.h.
void CallGraph::viewGraph | ( | ) | const |
Definition at line 253 of file CallGraph.cpp.
|
inlineoverride |
Part of recursive declaration visitation.
We recursively visit all the declarations to collect the root functions.
Definition at line 113 of file CallGraph.h.
References addNodesForBlocks(), includeInGraph(), clang::FunctionDecl::isGlobal(), and clang::FunctionDecl::isThisDeclarationADefinition().
|
inlineoverride |
Part of recursive declaration visitation.
Definition at line 128 of file CallGraph.h.
References addNodesForBlocks(), and includeInGraph().
|
friend |
Definition at line 44 of file CallGraph.h.