1 //===--- AnalysisConsumer.h - Front-end Analysis Engine Hooks ---*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This header contains the functions necessary for a front-end to run various 11 // analyses. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #ifndef LLVM_CLANG_STATICANALYZER_FRONTEND_ANALYSISCONSUMER_H 16 #define LLVM_CLANG_STATICANALYZER_FRONTEND_ANALYSISCONSUMER_H 17 18 #include "clang/AST/ASTConsumer.h" 19 #include "clang/Basic/LLVM.h" 20 #include "clang/StaticAnalyzer/Core/AnalyzerOptions.h" 21 #include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h" 22 #include <string> 23 24 namespace clang { 25 26 class Preprocessor; 27 class DiagnosticsEngine; 28 class CodeInjector; 29 class CompilerInstance; 30 31 namespace ento { 32 class CheckerManager; 33 34 class AnalysisASTConsumer : public ASTConsumer { 35 public: 36 virtual void AddDiagnosticConsumer(PathDiagnosticConsumer *Consumer) = 0; 37 }; 38 39 /// CreateAnalysisConsumer - Creates an ASTConsumer to run various code 40 /// analysis passes. (The set of analyses run is controlled by command-line 41 /// options.) 42 std::unique_ptr<AnalysisASTConsumer> 43 CreateAnalysisConsumer(CompilerInstance &CI); 44 45 } // end GR namespace 46 47 } // end clang namespace 48 49 #endif 50