Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 45796b1

Browse files
committed
Make AnalyzerOptions a shared object between CompilerInvocation and
AnalysisManager, allowing the StringMap of configuration values to be propagated. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162978 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 987695a commit 45796b1

File tree

7 files changed

+30
-31
lines changed

7 files changed

+30
-31
lines changed

include/clang/Frontend/CompilerInstance.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,7 @@ class CompilerInstance : public ModuleLoader {
189189
/// @name Forwarding Methods
190190
/// {
191191

192-
AnalyzerOptions &getAnalyzerOpts() {
193-
return Invocation->getAnalyzerOpts();
194-
}
195-
const AnalyzerOptions &getAnalyzerOpts() const {
192+
AnalyzerOptionsRef getAnalyzerOpts() {
196193
return Invocation->getAnalyzerOpts();
197194
}
198195

include/clang/Frontend/CompilerInvocation.h

+3-4
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class CompilerInvocationBase : public RefCountedBase<CompilerInvocation> {
6868
/// options, the warning flags, and so on.
6969
class CompilerInvocation : public CompilerInvocationBase {
7070
/// Options controlling the static analyzer.
71-
AnalyzerOptions AnalyzerOpts;
71+
AnalyzerOptionsRef AnalyzerOpts;
7272

7373
MigratorOptions MigratorOpts;
7474

@@ -100,7 +100,7 @@ class CompilerInvocation : public CompilerInvocationBase {
100100
TargetOptions TargetOpts;
101101

102102
public:
103-
CompilerInvocation() {}
103+
CompilerInvocation() : AnalyzerOpts(new AnalyzerOptions()) {}
104104

105105
/// @name Utility Methods
106106
/// @{
@@ -148,8 +148,7 @@ class CompilerInvocation : public CompilerInvocationBase {
148148
/// @name Option Subgroups
149149
/// @{
150150

151-
AnalyzerOptions &getAnalyzerOpts() { return AnalyzerOpts; }
152-
const AnalyzerOptions &getAnalyzerOpts() const {
151+
AnalyzerOptionsRef getAnalyzerOpts() const {
153152
return AnalyzerOpts;
154153
}
155154

include/clang/StaticAnalyzer/Core/AnalyzerOptions.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <string>
1919
#include <vector>
2020
#include "llvm/ADT/StringMap.h"
21+
#include "llvm/ADT/IntrusiveRefCntPtr.h"
2122

2223
namespace clang {
2324
class ASTConsumer;
@@ -75,7 +76,7 @@ enum AnalysisInliningMode {
7576
NumInliningModes
7677
};
7778

78-
class AnalyzerOptions {
79+
class AnalyzerOptions : public llvm::RefCountedBase<AnalyzerOptions> {
7980
public:
8081
typedef llvm::StringMap<std::string> ConfigTable;
8182

@@ -164,7 +165,9 @@ class AnalyzerOptions {
164165
InliningMode = NoRedundancy;
165166
}
166167
};
167-
168+
169+
typedef llvm::IntrusiveRefCntPtr<AnalyzerOptions> AnalyzerOptionsRef;
170+
168171
}
169172

170173
#endif

lib/Frontend/CompilerInvocation.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ static void TargetOptsToArgs(const TargetOptions &Opts,
931931

932932
void CompilerInvocation::toArgs(std::vector<std::string> &Res) const {
933933
ToArgsList List(Res);
934-
AnalyzerOptsToArgs(getAnalyzerOpts(), List);
934+
AnalyzerOptsToArgs(*getAnalyzerOpts(), List);
935935
CodeGenOptsToArgs(getCodeGenOpts(), List);
936936
DependencyOutputOptsToArgs(getDependencyOutputOpts(), List);
937937
DiagnosticOptsToArgs(getDiagnosticOpts(), List);
@@ -2323,7 +2323,7 @@ bool CompilerInvocation::CreateFromArgs(CompilerInvocation &Res,
23232323
}
23242324
}
23252325

2326-
Success = ParseAnalyzerArgs(Res.getAnalyzerOpts(), *Args, Diags) && Success;
2326+
Success = ParseAnalyzerArgs(*Res.getAnalyzerOpts(), *Args, Diags) && Success;
23272327
Success = ParseMigratorArgs(Res.getMigratorOpts(), *Args) && Success;
23282328
ParseDependencyOutputArgs(Res.getDependencyOutputOpts(), *Args);
23292329
Success = ParseDiagnosticArgs(Res.getDiagnosticOpts(), *Args, &Diags)

lib/FrontendTool/ExecuteCompilerInvocation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ bool clang::ExecuteCompilerInvocation(CompilerInstance *Clang) {
175175

176176
// Honor -analyzer-checker-help.
177177
// This should happen AFTER plugins have been loaded!
178-
if (Clang->getAnalyzerOpts().ShowCheckerHelp) {
178+
if (Clang->getAnalyzerOpts()->ShowCheckerHelp) {
179179
ento::printCheckerHelp(llvm::outs(), Clang->getFrontendOpts().Plugins);
180180
return 0;
181181
}

lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp

+16-16
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class AnalysisConsumer : public ASTConsumer,
135135
ASTContext *Ctx;
136136
const Preprocessor &PP;
137137
const std::string OutDir;
138-
AnalyzerOptions Opts;
138+
AnalyzerOptionsRef Opts;
139139
ArrayRef<std::string> Plugins;
140140

141141
/// \brief Stores the declarations from the local translation unit.
@@ -163,19 +163,19 @@ class AnalysisConsumer : public ASTConsumer,
163163

164164
AnalysisConsumer(const Preprocessor& pp,
165165
const std::string& outdir,
166-
const AnalyzerOptions& opts,
166+
AnalyzerOptionsRef opts,
167167
ArrayRef<std::string> plugins)
168168
: RecVisitorMode(ANALYSIS_ALL), RecVisitorBR(0),
169169
Ctx(0), PP(pp), OutDir(outdir), Opts(opts), Plugins(plugins) {
170170
DigestAnalyzerOptions();
171-
if (Opts.PrintStats) {
171+
if (Opts->PrintStats) {
172172
llvm::EnableStatistics();
173173
TUTotalTimer = new llvm::Timer("Analyzer Total Time");
174174
}
175175
}
176176

177177
~AnalysisConsumer() {
178-
if (Opts.PrintStats)
178+
if (Opts->PrintStats)
179179
delete TUTotalTimer;
180180
}
181181

@@ -184,28 +184,28 @@ class AnalysisConsumer : public ASTConsumer,
184184
PathConsumers.push_back(new ClangDiagPathDiagConsumer(PP.getDiagnostics()));
185185

186186
if (!OutDir.empty()) {
187-
switch (Opts.AnalysisDiagOpt) {
187+
switch (Opts->AnalysisDiagOpt) {
188188
default:
189189
#define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATEFN, AUTOCREATE) \
190190
case PD_##NAME: CREATEFN(PathConsumers, OutDir, PP); break;
191191
#include "clang/StaticAnalyzer/Core/Analyses.def"
192192
}
193-
} else if (Opts.AnalysisDiagOpt == PD_TEXT) {
193+
} else if (Opts->AnalysisDiagOpt == PD_TEXT) {
194194
// Create the text client even without a specified output file since
195195
// it just uses diagnostic notes.
196196
createTextPathDiagnosticConsumer(PathConsumers, "", PP);
197197
}
198198

199199
// Create the analyzer component creators.
200-
switch (Opts.AnalysisStoreOpt) {
200+
switch (Opts->AnalysisStoreOpt) {
201201
default:
202202
llvm_unreachable("Unknown store manager.");
203203
#define ANALYSIS_STORE(NAME, CMDFLAG, DESC, CREATEFN) \
204204
case NAME##Model: CreateStoreMgr = CREATEFN; break;
205205
#include "clang/StaticAnalyzer/Core/Analyses.def"
206206
}
207207

208-
switch (Opts.AnalysisConstraintsOpt) {
208+
switch (Opts->AnalysisConstraintsOpt) {
209209
default:
210210
llvm_unreachable("Unknown store manager.");
211211
#define ANALYSIS_CONSTRAINTS(NAME, CMDFLAG, DESC, CREATEFN) \
@@ -215,7 +215,7 @@ class AnalysisConsumer : public ASTConsumer,
215215
}
216216

217217
void DisplayFunction(const Decl *D, AnalysisMode Mode) {
218-
if (!Opts.AnalyzerDisplayProgress)
218+
if (!Opts->AnalyzerDisplayProgress)
219219
return;
220220

221221
SourceManager &SM = Mgr->getASTContext().getSourceManager();
@@ -245,7 +245,7 @@ class AnalysisConsumer : public ASTConsumer,
245245

246246
virtual void Initialize(ASTContext &Context) {
247247
Ctx = &Context;
248-
checkerMgr.reset(createCheckerManager(Opts, PP.getLangOpts(), Plugins,
248+
checkerMgr.reset(createCheckerManager(*Opts, PP.getLangOpts(), Plugins,
249249
PP.getDiagnostics()));
250250
Mgr.reset(new AnalysisManager(*Ctx,
251251
PP.getDiagnostics(),
@@ -254,7 +254,7 @@ class AnalysisConsumer : public ASTConsumer,
254254
CreateStoreMgr,
255255
CreateConstraintMgr,
256256
checkerMgr.get(),
257-
Opts));
257+
*Opts));
258258
}
259259

260260
/// \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) {
519519
}
520520

521521
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)
524524
return true;
525525

526526
// Don't run the actions on declarations in header files unless
527527
// otherwise specified.
528528
SourceManager &SM = Ctx->getSourceManager();
529529
SourceLocation SL = SM.getExpansionLoc(D->getLocation());
530-
if (!Opts.AnalyzeAll && !SM.isFromMainFile(SL))
530+
if (!Opts->AnalyzeAll && !SM.isFromMainFile(SL))
531531
return true;
532532

533533
return false;
@@ -553,7 +553,7 @@ void AnalysisConsumer::HandleCode(Decl *D, AnalysisMode Mode,
553553
SmallVector<Decl*, 10> WL;
554554
WL.push_back(D);
555555

556-
if (D->hasBody() && Opts.AnalyzeNestedBlocks)
556+
if (D->hasBody() && Opts->AnalyzeNestedBlocks)
557557
FindBlocks(cast<DeclContext>(D), WL);
558558

559559
BugReporter BR(*Mgr);
@@ -634,7 +634,7 @@ void AnalysisConsumer::RunPathSensitiveChecks(Decl *D,
634634

635635
ASTConsumer* ento::CreateAnalysisConsumer(const Preprocessor& pp,
636636
const std::string& outDir,
637-
const AnalyzerOptions& opts,
637+
AnalyzerOptionsRef opts,
638638
ArrayRef<std::string> plugins) {
639639
// Disable the effects of '-Werror' when using the AnalysisConsumer.
640640
pp.getDiagnostics().setWarningsAsErrors(false);

lib/StaticAnalyzer/Frontend/AnalysisConsumer.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
#define LLVM_CLANG_GR_ANALYSISCONSUMER_H
1717

1818
#include "clang/Basic/LLVM.h"
19+
#include "clang/StaticAnalyzer/Core/AnalyzerOptions.h"
1920
#include <string>
2021

2122
namespace clang {
2223

23-
class AnalyzerOptions;
2424
class ASTConsumer;
2525
class Preprocessor;
2626
class DiagnosticsEngine;
@@ -33,7 +33,7 @@ class CheckerManager;
3333
/// options.)
3434
ASTConsumer* CreateAnalysisConsumer(const Preprocessor &pp,
3535
const std::string &output,
36-
const AnalyzerOptions& opts,
36+
AnalyzerOptionsRef opts,
3737
ArrayRef<std::string> plugins);
3838

3939
} // end GR namespace

0 commit comments

Comments
 (0)