]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h
Update llvm/clang to trunk r126547.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Frontend / AnalyzerOptions.h
1 //===--- AnalyzerOptions.h - Analysis Engine Options ------------*- 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 structures necessary for a front-end to specify
11 // various analyses.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CLANG_FRONTEND_ANALYZEROPTIONS_H
16 #define LLVM_CLANG_FRONTEND_ANALYZEROPTIONS_H
17
18 #include <string>
19 #include <vector>
20
21 namespace clang {
22 class ASTConsumer;
23 class Diagnostic;
24 class Preprocessor;
25 class LangOptions;
26
27 /// Analysis - Set of available source code analyses.
28 enum Analyses {
29 #define ANALYSIS(NAME, CMDFLAG, DESC, SCOPE) NAME,
30 #include "clang/Frontend/Analyses.def"
31 NumAnalyses
32 };
33
34 /// AnalysisStores - Set of available analysis store models.
35 enum AnalysisStores {
36 #define ANALYSIS_STORE(NAME, CMDFLAG, DESC, CREATFN) NAME##Model,
37 #include "clang/Frontend/Analyses.def"
38 NumStores
39 };
40
41 /// AnalysisConstraints - Set of available constraint models.
42 enum AnalysisConstraints {
43 #define ANALYSIS_CONSTRAINTS(NAME, CMDFLAG, DESC, CREATFN) NAME##Model,
44 #include "clang/Frontend/Analyses.def"
45 NumConstraints
46 };
47
48 /// AnalysisDiagClients - Set of available diagnostic clients for rendering
49 ///  analysis results.
50 enum AnalysisDiagClients {
51 #define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATFN, AUTOCREAT) PD_##NAME,
52 #include "clang/Frontend/Analyses.def"
53 NUM_ANALYSIS_DIAG_CLIENTS
54 };
55
56 class AnalyzerOptions {
57 public:
58   std::vector<Analyses> AnalysisList;
59   /// \brief Pair of checker name and enable/disable.
60   std::vector<std::pair<std::string, bool> > CheckersControlList;
61   AnalysisStores AnalysisStoreOpt;
62   AnalysisConstraints AnalysisConstraintsOpt;
63   AnalysisDiagClients AnalysisDiagOpt;
64   std::string AnalyzeSpecificFunction;
65   unsigned MaxNodes;
66   unsigned MaxLoop;
67   unsigned ShowCheckerHelp : 1;
68   unsigned AnalyzeAll : 1;
69   unsigned AnalyzerDisplayProgress : 1;
70   unsigned AnalyzeNestedBlocks : 1;
71   unsigned AnalyzerStats : 1;
72   unsigned EagerlyAssume : 1;
73   unsigned BufferOverflows : 1;
74   unsigned PurgeDead : 1;
75   unsigned TrimGraph : 1;
76   unsigned VisualizeEGDot : 1;
77   unsigned VisualizeEGUbi : 1;
78   unsigned EnableExperimentalChecks : 1;
79   unsigned InlineCall : 1;
80   unsigned UnoptimizedCFG : 1;
81   unsigned CFGAddImplicitDtors : 1;
82   unsigned CFGAddInitializers : 1;
83   unsigned EagerlyTrimEGraph : 1;
84
85 public:
86   AnalyzerOptions() {
87     AnalysisStoreOpt = BasicStoreModel;
88     AnalysisConstraintsOpt = RangeConstraintsModel;
89     AnalysisDiagOpt = PD_HTML;
90     ShowCheckerHelp = 0;
91     AnalyzeAll = 0;
92     AnalyzerDisplayProgress = 0;
93     AnalyzeNestedBlocks = 0;
94     AnalyzerStats = 0;
95     EagerlyAssume = 0;
96     BufferOverflows = 0;    
97     PurgeDead = 1;
98     TrimGraph = 0;
99     VisualizeEGDot = 0;
100     VisualizeEGUbi = 0;
101     EnableExperimentalChecks = 0;
102     InlineCall = 0;
103     UnoptimizedCFG = 0;
104     CFGAddImplicitDtors = 0;
105     CFGAddInitializers = 0;
106     EagerlyTrimEGraph = 0;
107   }
108 };
109
110 }
111
112 #endif