CMS 3D CMS Logo

FunctionDumper.h
Go to the documentation of this file.
1 #ifndef Utilities_StaticAnalyzers_FunctionDumper_h
2 #define Utilities_StaticAnalyzers_FunctionDumper_h
3 #include <clang/StaticAnalyzer/Core/Checker.h>
4 #include <clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h>
5 #include <clang/StaticAnalyzer/Core/BugReporter/BugType.h>
6 #include "CmsException.h"
7 
8 namespace clangcms {
9 
10 class FunctionDumper : public clang::ento::Checker< clang::ento::check::ASTDecl<clang::CXXMethodDecl>,
11  clang::ento::check::ASTDecl<clang::FunctionDecl> ,
12  clang::ento::check::ASTDecl<clang::FunctionTemplateDecl> >
13 {
14 
15 
16 public:
17 
18  void checkASTDecl(const clang::CXXMethodDecl *CMD, clang::ento::AnalysisManager& mgr,
19  clang::ento::BugReporter &BR) const ;
20 
21  void checkASTDecl(const clang::FunctionDecl *MD, clang::ento::AnalysisManager& mgr,
22  clang::ento::BugReporter &BR) const ;
23 
24  void checkASTDecl(const clang::FunctionTemplateDecl *TD, clang::ento::AnalysisManager& mgr,
25  clang::ento::BugReporter &BR) const ;
26 
27 
28 private:
30 };
31 
32 }
33 #endif
void checkASTDecl(const clang::CXXMethodDecl *CMD, clang::ento::AnalysisManager &mgr, clang::ento::BugReporter &BR) const