@@ -135,7 +135,7 @@ class AnalysisConsumer : public ASTConsumer,
135
135
ASTContext *Ctx;
136
136
const Preprocessor &PP;
137
137
const std::string OutDir;
138
- AnalyzerOptions Opts;
138
+ AnalyzerOptionsRef Opts;
139
139
ArrayRef<std::string> Plugins;
140
140
141
141
// / \brief Stores the declarations from the local translation unit.
@@ -163,19 +163,19 @@ class AnalysisConsumer : public ASTConsumer,
163
163
164
164
AnalysisConsumer (const Preprocessor& pp,
165
165
const std::string& outdir,
166
- const AnalyzerOptions& opts,
166
+ AnalyzerOptionsRef opts,
167
167
ArrayRef<std::string> plugins)
168
168
: RecVisitorMode(ANALYSIS_ALL), RecVisitorBR(0 ),
169
169
Ctx (0 ), PP(pp), OutDir(outdir), Opts(opts), Plugins(plugins) {
170
170
DigestAnalyzerOptions ();
171
- if (Opts. PrintStats ) {
171
+ if (Opts-> PrintStats ) {
172
172
llvm::EnableStatistics ();
173
173
TUTotalTimer = new llvm::Timer (" Analyzer Total Time" );
174
174
}
175
175
}
176
176
177
177
~AnalysisConsumer () {
178
- if (Opts. PrintStats )
178
+ if (Opts-> PrintStats )
179
179
delete TUTotalTimer;
180
180
}
181
181
@@ -184,28 +184,28 @@ class AnalysisConsumer : public ASTConsumer,
184
184
PathConsumers.push_back (new ClangDiagPathDiagConsumer (PP.getDiagnostics ()));
185
185
186
186
if (!OutDir.empty ()) {
187
- switch (Opts. AnalysisDiagOpt ) {
187
+ switch (Opts-> AnalysisDiagOpt ) {
188
188
default :
189
189
#define ANALYSIS_DIAGNOSTICS (NAME, CMDFLAG, DESC, CREATEFN, AUTOCREATE ) \
190
190
case PD_##NAME: CREATEFN (PathConsumers, OutDir, PP); break ;
191
191
#include " clang/StaticAnalyzer/Core/Analyses.def"
192
192
}
193
- } else if (Opts. AnalysisDiagOpt == PD_TEXT) {
193
+ } else if (Opts-> AnalysisDiagOpt == PD_TEXT) {
194
194
// Create the text client even without a specified output file since
195
195
// it just uses diagnostic notes.
196
196
createTextPathDiagnosticConsumer (PathConsumers, " " , PP);
197
197
}
198
198
199
199
// Create the analyzer component creators.
200
- switch (Opts. AnalysisStoreOpt ) {
200
+ switch (Opts-> AnalysisStoreOpt ) {
201
201
default :
202
202
llvm_unreachable (" Unknown store manager." );
203
203
#define ANALYSIS_STORE (NAME, CMDFLAG, DESC, CREATEFN ) \
204
204
case NAME##Model: CreateStoreMgr = CREATEFN; break ;
205
205
#include " clang/StaticAnalyzer/Core/Analyses.def"
206
206
}
207
207
208
- switch (Opts. AnalysisConstraintsOpt ) {
208
+ switch (Opts-> AnalysisConstraintsOpt ) {
209
209
default :
210
210
llvm_unreachable (" Unknown store manager." );
211
211
#define ANALYSIS_CONSTRAINTS (NAME, CMDFLAG, DESC, CREATEFN ) \
@@ -215,7 +215,7 @@ class AnalysisConsumer : public ASTConsumer,
215
215
}
216
216
217
217
void DisplayFunction (const Decl *D, AnalysisMode Mode) {
218
- if (!Opts. AnalyzerDisplayProgress )
218
+ if (!Opts-> AnalyzerDisplayProgress )
219
219
return ;
220
220
221
221
SourceManager &SM = Mgr->getASTContext ().getSourceManager ();
@@ -245,7 +245,7 @@ class AnalysisConsumer : public ASTConsumer,
245
245
246
246
virtual void Initialize (ASTContext &Context) {
247
247
Ctx = &Context;
248
- checkerMgr.reset (createCheckerManager (Opts, PP.getLangOpts (), Plugins,
248
+ checkerMgr.reset (createCheckerManager (* Opts, PP.getLangOpts (), Plugins,
249
249
PP.getDiagnostics ()));
250
250
Mgr.reset (new AnalysisManager (*Ctx,
251
251
PP.getDiagnostics (),
@@ -254,7 +254,7 @@ class AnalysisConsumer : public ASTConsumer,
254
254
CreateStoreMgr,
255
255
CreateConstraintMgr,
256
256
checkerMgr.get (),
257
- Opts));
257
+ * Opts));
258
258
}
259
259
260
260
// / \brief Store the top level decls in the set to be processed later on.
@@ -519,15 +519,15 @@ static std::string getFunctionName(const Decl *D) {
519
519
}
520
520
521
521
bool AnalysisConsumer::skipFunction (Decl *D) {
522
- if (!Opts. AnalyzeSpecificFunction .empty () &&
523
- getFunctionName (D) != Opts. AnalyzeSpecificFunction )
522
+ if (!Opts-> AnalyzeSpecificFunction .empty () &&
523
+ getFunctionName (D) != Opts-> AnalyzeSpecificFunction )
524
524
return true ;
525
525
526
526
// Don't run the actions on declarations in header files unless
527
527
// otherwise specified.
528
528
SourceManager &SM = Ctx->getSourceManager ();
529
529
SourceLocation SL = SM.getExpansionLoc (D->getLocation ());
530
- if (!Opts. AnalyzeAll && !SM.isFromMainFile (SL))
530
+ if (!Opts-> AnalyzeAll && !SM.isFromMainFile (SL))
531
531
return true ;
532
532
533
533
return false ;
@@ -553,7 +553,7 @@ void AnalysisConsumer::HandleCode(Decl *D, AnalysisMode Mode,
553
553
SmallVector<Decl*, 10 > WL;
554
554
WL.push_back (D);
555
555
556
- if (D->hasBody () && Opts. AnalyzeNestedBlocks )
556
+ if (D->hasBody () && Opts-> AnalyzeNestedBlocks )
557
557
FindBlocks (cast<DeclContext>(D), WL);
558
558
559
559
BugReporter BR (*Mgr);
@@ -634,7 +634,7 @@ void AnalysisConsumer::RunPathSensitiveChecks(Decl *D,
634
634
635
635
ASTConsumer* ento::CreateAnalysisConsumer (const Preprocessor& pp,
636
636
const std::string& outDir,
637
- const AnalyzerOptions& opts,
637
+ AnalyzerOptionsRef opts,
638
638
ArrayRef<std::string> plugins) {
639
639
// Disable the effects of '-Werror' when using the AnalysisConsumer.
640
640
pp.getDiagnostics ().setWarningsAsErrors (false );
0 commit comments