CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FunctionChecker.h
Go to the documentation of this file.
1 #ifndef Utilities_StaticAnalyzers_FunctionChecker_h
2 #define Utilities_StaticAnalyzers_FunctionChecker_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 
7 #include "CmsException.h"
8 #include "CmsSupport.h"
9 
10 namespace clangcms {
11 
12 class FunctionChecker : public clang::ento::Checker< clang::ento::check::ASTDecl<clang::CXXMethodDecl>,
13  clang::ento::check::ASTDecl<clang::FunctionDecl>,
14  clang::ento::check::ASTDecl<clang::FunctionTemplateDecl> >
15 {
16  mutable clang::OwningPtr< clang::ento::BugType> BT;
17 
18 
19 public:
20 
21  void checkASTDecl(const clang::CXXMethodDecl *CMD, clang::ento::AnalysisManager& mgr,
22  clang::ento::BugReporter &BR) const ;
23  void checkASTDecl(const clang::FunctionDecl *FD, clang::ento::AnalysisManager& mgr,
24  clang::ento::BugReporter &BR) const ;
25  void checkASTDecl(const clang::FunctionTemplateDecl *TD, clang::ento::AnalysisManager& mgr,
26  clang::ento::BugReporter &BR) const ;
27 
28 
29 private:
31 };
32 
33 }
34 #endif
void checkASTDecl(const clang::CXXMethodDecl *CMD, clang::ento::AnalysisManager &mgr, clang::ento::BugReporter &BR) const
clang::OwningPtr< clang::ento::BugType > BT