clang API Documentation
A class to allow finding matches over the Clang AST. More...
#include <ASTMatchFinder.h>
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) |
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.
Definition at line 851 of file ASTMatchFinder.cpp.
Definition at line 854 of file ASTMatchFinder.cpp.
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.
true
if the matcher is a valid top-level matcher, false
otherwise. Definition at line 892 of file ASTMatchFinder.cpp.
References addMatcher().
void clang::ast_matchers::MatchFinder::addMatcher | ( | const DeclarationMatcher & | NodeMatch, |
MatchCallback * | Action | ||
) |
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.
void clang::ast_matchers::MatchFinder::addMatcher | ( | const StatementMatcher & | NodeMatch, |
MatchCallback * | Action | ||
) |
Definition at line 868 of file ASTMatchFinder.cpp.
void clang::ast_matchers::MatchFinder::addMatcher | ( | const NestedNameSpecifierMatcher & | NodeMatch, |
MatchCallback * | Action | ||
) |
Definition at line 874 of file ASTMatchFinder.cpp.
void clang::ast_matchers::MatchFinder::addMatcher | ( | const NestedNameSpecifierLocMatcher & | NodeMatch, |
MatchCallback * | Action | ||
) |
Definition at line 880 of file ASTMatchFinder.cpp.
void clang::ast_matchers::MatchFinder::addMatcher | ( | const TypeLocMatcher & | NodeMatch, |
MatchCallback * | Action | ||
) |
Definition at line 886 of file ASTMatchFinder.cpp.
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().
void clang::ast_matchers::MatchFinder::match | ( | const clang::ast_type_traits::DynTypedNode & | Node, |
ASTContext & | Context | ||
) |
Definition at line 920 of file ASTMatchFinder.cpp.
void clang::ast_matchers::MatchFinder::matchAST | ( | ASTContext & | Context | ) |
Finds all matches in the given AST.
Definition at line 927 of file ASTMatchFinder.cpp.
References clang::ASTContext::getTranslationUnitDecl().
std::unique_ptr< ASTConsumer > clang::ast_matchers::MatchFinder::newASTConsumer | ( | ) |
Creates a clang ASTConsumer that finds all matches.
Definition at line 916 of file ASTMatchFinder.cpp.
void clang::ast_matchers::MatchFinder::registerTestCallbackAfterParsing | ( | MatchFinder::ParsingDoneTestCallback * | NewParsingDone | ) |
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.