Skip to content

[analyzer][NFC] Document check::ASTCodeBody checker callback #84160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 37 additions & 24 deletions clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,30 +33,36 @@ namespace ento {
/// checking.
///
/// \sa CheckerContext
class CheckerDocumentation : public Checker< check::PreStmt<ReturnStmt>,
check::PostStmt<DeclStmt>,
check::PreObjCMessage,
check::PostObjCMessage,
check::ObjCMessageNil,
check::PreCall,
check::PostCall,
check::BranchCondition,
check::NewAllocator,
check::Location,
check::Bind,
check::DeadSymbols,
check::BeginFunction,
check::EndFunction,
check::EndAnalysis,
check::EndOfTranslationUnit,
eval::Call,
eval::Assume,
check::LiveSymbols,
check::RegionChanges,
check::PointerEscape,
check::ConstPointerEscape,
check::Event<ImplicitNullDerefEvent>,
check::ASTDecl<FunctionDecl> > {
class CheckerDocumentation
: public Checker<
// clang-format off
check::ASTCodeBody,
check::ASTDecl<FunctionDecl>,
check::BeginFunction,
check::Bind,
check::BranchCondition,
check::ConstPointerEscape,
check::DeadSymbols,
check::EndAnalysis,
check::EndFunction,
check::EndOfTranslationUnit,
check::Event<ImplicitNullDerefEvent>,
check::LiveSymbols,
check::Location,
check::NewAllocator,
check::ObjCMessageNil,
check::PointerEscape,
check::PostCall,
check::PostObjCMessage,
check::PostStmt<DeclStmt>,
check::PreCall,
check::PreObjCMessage,
check::PreStmt<ReturnStmt>,
check::RegionChanges,
eval::Assume,
eval::Call
// clang-format on
> {
public:
/// Pre-visit the Statement.
///
Expand Down Expand Up @@ -321,6 +327,13 @@ class CheckerDocumentation : public Checker< check::PreStmt<ReturnStmt>,
void checkASTDecl(const FunctionDecl *D,
AnalysisManager &Mgr,
BugReporter &BR) const {}

/// Check every declaration that has a statement body in the AST.
///
/// As AST traversal callback, which should only be used when the checker is
/// not path sensitive. It will be called for every Declaration in the AST.
void checkASTCodeBody(const Decl *D, AnalysisManager &Mgr,
BugReporter &BR) const {}
};

void CheckerDocumentation::checkPostStmt(const DeclStmt *DS,
Expand Down