clang API Documentation

Classes | Public Member Functions
clang::ast_matchers::MatchFinder Class Reference

A class to allow finding matches over the Clang AST. More...

#include <ASTMatchFinder.h>

List of all members.

Classes

class  MatchCallback
 Called when the Match registered for it was successfully found in the AST. More...
struct  MatchersByType
 For each Matcher<> a MatchCallback that will be called when it matches. More...
struct  MatchFinderOptions
struct  MatchResult
 Contains all information for a given match. More...
class  ParsingDoneTestCallback
 Called when parsing is finished. Intended for testing only. More...

Public Member Functions

 MatchFinder (MatchFinderOptions Options=MatchFinderOptions())
 ~MatchFinder ()
bool addDynamicMatcher (const internal::DynTypedMatcher &NodeMatch, MatchCallback *Action)
 Adds a matcher to execute when running over the AST.
std::unique_ptr
< clang::ASTConsumer
newASTConsumer ()
 Creates a clang ASTConsumer that finds all matches.
void matchAST (ASTContext &Context)
 Finds all matches in the given AST.
void registerTestCallbackAfterParsing (ParsingDoneTestCallback *ParsingDone)
 Registers a callback to notify the end of parsing.
void addMatcher (const DeclarationMatcher &NodeMatch, MatchCallback *Action)
 Adds a matcher to execute when running over the AST.
void addMatcher (const TypeMatcher &NodeMatch, MatchCallback *Action)
void addMatcher (const StatementMatcher &NodeMatch, MatchCallback *Action)
void addMatcher (const NestedNameSpecifierMatcher &NodeMatch, MatchCallback *Action)
void addMatcher (const NestedNameSpecifierLocMatcher &NodeMatch, MatchCallback *Action)
void addMatcher (const TypeLocMatcher &NodeMatch, MatchCallback *Action)
template<typename T >
void match (const T &Node, ASTContext &Context)
 Calls the registered callbacks on all matches on the given Node.
void match (const clang::ast_type_traits::DynTypedNode &Node, ASTContext &Context)

Detailed Description

A class to allow finding matches over the Clang AST.

After creation, you can add multiple matchers to the MatchFinder via calls to addMatcher(...).

Once all matchers are added, newASTConsumer() returns an ASTConsumer that will trigger the callbacks specified via addMatcher(...) when a match is found.

The order of matches is guaranteed to be equivalent to doing a pre-order traversal on the AST, and applying the matchers in the order in which they were added to the MatchFinder.

See ASTMatchers.h for more information about how to create matchers.

Not intended to be subclassed.

Definition at line 68 of file ASTMatchFinder.h.


Constructor & Destructor Documentation

Definition at line 851 of file ASTMatchFinder.cpp.

Definition at line 854 of file ASTMatchFinder.cpp.


Member Function Documentation

bool clang::ast_matchers::MatchFinder::addDynamicMatcher ( const internal::DynTypedMatcher &  NodeMatch,
MatchCallback Action 
)

Adds a matcher to execute when running over the AST.

This is similar to addMatcher(), but it uses the dynamic interface. It is more flexible, but the lost type information enables a caller to pass a matcher that cannot match anything.

Returns:
true if the matcher is a valid top-level matcher, false otherwise.

Definition at line 892 of file ASTMatchFinder.cpp.

References addMatcher().

Adds a matcher to execute when running over the AST.

Calls 'Action' with the BoundNodes on every match. Adding more than one 'NodeMatch' allows finding different matches in a single pass over the AST.

Does not take ownership of 'Action'.

Definition at line 856 of file ASTMatchFinder.cpp.

Referenced by addDynamicMatcher(), and clang::ast_matchers::match().

void clang::ast_matchers::MatchFinder::addMatcher ( const TypeMatcher NodeMatch,
MatchCallback Action 
)

Definition at line 862 of file ASTMatchFinder.cpp.

Definition at line 868 of file ASTMatchFinder.cpp.

Definition at line 874 of file ASTMatchFinder.cpp.

Definition at line 880 of file ASTMatchFinder.cpp.

Definition at line 886 of file ASTMatchFinder.cpp.

template<typename T >
void clang::ast_matchers::MatchFinder::match ( const T &  Node,
ASTContext Context 
) [inline]

Calls the registered callbacks on all matches on the given Node.

Note that there can be multiple matches on a single node, for example when using decl(forEachDescendant(stmt())).

Definition at line 182 of file ASTMatchFinder.h.

References clang::ast_type_traits::DynTypedNode::create().

Referenced by clang::ast_matchers::match().

Definition at line 920 of file ASTMatchFinder.cpp.

Finds all matches in the given AST.

Definition at line 927 of file ASTMatchFinder.cpp.

References clang::ASTContext::getTranslationUnitDecl().

Creates a clang ASTConsumer that finds all matches.

Definition at line 916 of file ASTMatchFinder.cpp.

Registers a callback to notify the end of parsing.

The provided closure is called after parsing is done, before the AST is traversed. Useful for benchmarking. Each call to FindAll(...) will call the closure once.

Definition at line 935 of file ASTMatchFinder.cpp.


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