blob: 7e4a7b5ce90355019801abc2ac6b887cd5b5bcb2 [file] [log] [blame]
Ted Kremenekf4381fd2008-07-02 00:03:09 +00001//===--- AnalysisConsumer.cpp - ASTConsumer for running Analyses ----------===//
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// "Meta" ASTConsumer for running different source analyses.
11//
12//===----------------------------------------------------------------------===//
13
Stephen Hines651f13c2014-04-23 16:59:28 -070014#include "clang/StaticAnalyzer/Frontend/AnalysisConsumer.h"
Ted Kremenekf4381fd2008-07-02 00:03:09 +000015#include "clang/AST/ASTConsumer.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070016#include "clang/AST/DataRecursiveASTVisitor.h"
Ted Kremenekf4381fd2008-07-02 00:03:09 +000017#include "clang/AST/Decl.h"
Zhongxing Xu802be992009-12-16 05:29:59 +000018#include "clang/AST/DeclCXX.h"
Ted Kremenekf4381fd2008-07-02 00:03:09 +000019#include "clang/AST/DeclObjC.h"
Ted Kremenekf4381fd2008-07-02 00:03:09 +000020#include "clang/AST/ParentMap.h"
Stephen Hines176edba2014-12-01 14:53:08 -080021#include "clang/Analysis/CodeInjector.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000022#include "clang/Analysis/Analyses/LiveVariables.h"
Daniel Dunbarefceabd2009-11-05 02:41:58 +000023#include "clang/Analysis/CFG.h"
Anna Zaksd95e0b82012-03-08 23:16:38 +000024#include "clang/Analysis/CallGraph.h"
Daniel Dunbarefceabd2009-11-05 02:41:58 +000025#include "clang/Basic/FileManager.h"
26#include "clang/Basic/SourceManager.h"
Daniel Dunbarefceabd2009-11-05 02:41:58 +000027#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000028#include "clang/StaticAnalyzer/Checkers/LocalCheckers.h"
29#include "clang/StaticAnalyzer/Core/AnalyzerOptions.h"
30#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
31#include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
32#include "clang/StaticAnalyzer/Core/CheckerManager.h"
33#include "clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h"
34#include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h"
35#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
36#include "clang/StaticAnalyzer/Frontend/CheckerRegistration.h"
Stephen Hines176edba2014-12-01 14:53:08 -080037#include "clang/Frontend/CompilerInstance.h"
Anna Zaksd95e0b82012-03-08 23:16:38 +000038#include "llvm/ADT/DepthFirstIterator.h"
Chandler Carruthb99083e2013-01-02 10:28:36 +000039#include "llvm/ADT/PostOrderIterator.h"
Anna Zaks6a860822012-04-12 22:36:48 +000040#include "llvm/ADT/SmallPtrSet.h"
Anna Zaks81fb1692012-02-27 21:33:16 +000041#include "llvm/ADT/Statistic.h"
Rafael Espindolab8e60d92013-06-26 06:13:06 +000042#include "llvm/Support/FileSystem.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000043#include "llvm/Support/Path.h"
44#include "llvm/Support/Program.h"
45#include "llvm/Support/Timer.h"
46#include "llvm/Support/raw_ostream.h"
Stephen Hines176edba2014-12-01 14:53:08 -080047#include "ModelInjector.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070048#include <memory>
Anna Zaks7fe8dce2012-03-13 19:32:13 +000049#include <queue>
50
Ted Kremenekf4381fd2008-07-02 00:03:09 +000051using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000052using namespace ento;
Anna Zaksd95e0b82012-03-08 23:16:38 +000053using llvm::SmallPtrSet;
Ted Kremenekf4381fd2008-07-02 00:03:09 +000054
Stephen Hines6bcf27b2014-05-29 04:14:42 -070055#define DEBUG_TYPE "AnalysisConsumer"
56
Stephen Hines176edba2014-12-01 14:53:08 -080057static std::unique_ptr<ExplodedNode::Auditor> CreateUbiViz();
Zhongxing Xuff944a82008-12-22 01:52:37 +000058
Anna Zaks3fd5f372012-03-09 21:14:01 +000059STATISTIC(NumFunctionTopLevel, "The # of functions at top level.");
Anna Zaks75f31c42012-12-07 21:51:47 +000060STATISTIC(NumFunctionsAnalyzed,
Anna Zaks39cf7812012-12-17 20:08:54 +000061 "The # of functions and blocks analyzed (as top level "
62 "with inlining turned on).");
Anna Zakse62f0482012-04-03 02:05:47 +000063STATISTIC(NumBlocksInAnalyzedFunctions,
Anna Zaks39cf7812012-12-17 20:08:54 +000064 "The # of basic blocks in the analyzed functions.");
Anna Zakse62f0482012-04-03 02:05:47 +000065STATISTIC(PercentReachableBlocks, "The % of reachable basic blocks.");
Anna Zaks84c1f4b2012-07-05 20:44:02 +000066STATISTIC(MaxCFGSize, "The maximum number of basic blocks in a function.");
Anna Zaksd95e0b82012-03-08 23:16:38 +000067
Ted Kremenekbe1fe1e2009-02-17 04:27:41 +000068//===----------------------------------------------------------------------===//
David Blaikief39d9622011-09-27 01:43:33 +000069// Special PathDiagnosticConsumers.
Ted Kremenekf7556062009-07-27 22:13:39 +000070//===----------------------------------------------------------------------===//
71
Jordan Rose5fba5a72013-08-16 01:06:30 +000072void ento::createPlistHTMLDiagnosticConsumer(AnalyzerOptions &AnalyzerOpts,
73 PathDiagnosticConsumers &C,
74 const std::string &prefix,
75 const Preprocessor &PP) {
Ted Kremenek9fcc2ab2012-12-19 01:35:35 +000076 createHTMLDiagnosticConsumer(AnalyzerOpts, C,
77 llvm::sys::path::parent_path(prefix), PP);
78 createPlistDiagnosticConsumer(AnalyzerOpts, C, prefix, PP);
Ted Kremenekf7556062009-07-27 22:13:39 +000079}
80
Jordan Rose5fba5a72013-08-16 01:06:30 +000081void ento::createTextPathDiagnosticConsumer(AnalyzerOptions &AnalyzerOpts,
82 PathDiagnosticConsumers &C,
83 const std::string &Prefix,
84 const clang::Preprocessor &PP) {
85 llvm_unreachable("'text' consumer should be enabled on ClangDiags");
86}
87
Ted Kremenekc4bac8e2012-08-16 17:45:23 +000088namespace {
89class ClangDiagPathDiagConsumer : public PathDiagnosticConsumer {
90 DiagnosticsEngine &Diag;
Jordan Rose5fba5a72013-08-16 01:06:30 +000091 bool IncludePath;
Ted Kremenekc4bac8e2012-08-16 17:45:23 +000092public:
Jordan Rose5fba5a72013-08-16 01:06:30 +000093 ClangDiagPathDiagConsumer(DiagnosticsEngine &Diag)
94 : Diag(Diag), IncludePath(false) {}
Ted Kremenekc4bac8e2012-08-16 17:45:23 +000095 virtual ~ClangDiagPathDiagConsumer() {}
Stephen Hines651f13c2014-04-23 16:59:28 -070096 StringRef getName() const override { return "ClangDiags"; }
Jordan Rose5fba5a72013-08-16 01:06:30 +000097
Stephen Hines651f13c2014-04-23 16:59:28 -070098 bool supportsLogicalOpControlFlow() const override { return true; }
99 bool supportsCrossFileDiagnostics() const override { return true; }
Jordan Rose5fba5a72013-08-16 01:06:30 +0000100
Stephen Hines651f13c2014-04-23 16:59:28 -0700101 PathGenerationScheme getGenerationScheme() const override {
Jordan Rose5fba5a72013-08-16 01:06:30 +0000102 return IncludePath ? Minimal : None;
103 }
104
105 void enablePaths() {
106 IncludePath = true;
107 }
108
Ted Kremenekc4bac8e2012-08-16 17:45:23 +0000109 void FlushDiagnosticsImpl(std::vector<const PathDiagnostic *> &Diags,
Stephen Hines651f13c2014-04-23 16:59:28 -0700110 FilesMade *filesMade) override {
111 unsigned WarnID = Diag.getCustomDiagID(DiagnosticsEngine::Warning, "%0");
112 unsigned NoteID = Diag.getCustomDiagID(DiagnosticsEngine::Note, "%0");
113
Ted Kremenekc4bac8e2012-08-16 17:45:23 +0000114 for (std::vector<const PathDiagnostic*>::iterator I = Diags.begin(),
115 E = Diags.end(); I != E; ++I) {
116 const PathDiagnostic *PD = *I;
Stephen Hines651f13c2014-04-23 16:59:28 -0700117 SourceLocation WarnLoc = PD->getLocation().asLocation();
118 Diag.Report(WarnLoc, WarnID) << PD->getShortDescription()
119 << PD->path.back()->getRanges();
Ted Kremenekc4bac8e2012-08-16 17:45:23 +0000120
Jordan Rose5fba5a72013-08-16 01:06:30 +0000121 if (!IncludePath)
122 continue;
Ted Kremenekc4bac8e2012-08-16 17:45:23 +0000123
Jordan Rose5fba5a72013-08-16 01:06:30 +0000124 PathPieces FlatPath = PD->path.flatten(/*ShouldFlattenMacros=*/true);
125 for (PathPieces::const_iterator PI = FlatPath.begin(),
126 PE = FlatPath.end();
127 PI != PE; ++PI) {
Jordan Rose5fba5a72013-08-16 01:06:30 +0000128 SourceLocation NoteLoc = (*PI)->getLocation().asLocation();
Stephen Hines651f13c2014-04-23 16:59:28 -0700129 Diag.Report(NoteLoc, NoteID) << (*PI)->getString()
130 << (*PI)->getRanges();
Ted Kremenekc4bac8e2012-08-16 17:45:23 +0000131 }
132 }
133 }
134};
135} // end anonymous namespace
136
Ted Kremenekf7556062009-07-27 22:13:39 +0000137//===----------------------------------------------------------------------===//
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000138// AnalysisConsumer declaration.
139//===----------------------------------------------------------------------===//
140
141namespace {
142
Stephen Hines651f13c2014-04-23 16:59:28 -0700143class AnalysisConsumer : public AnalysisASTConsumer,
144 public DataRecursiveASTVisitor<AnalysisConsumer> {
Jordan Rose4eff6b52012-10-10 17:55:40 +0000145 enum {
146 AM_None = 0,
147 AM_Syntax = 0x1,
148 AM_Path = 0x2
Anna Zaksaa560982012-03-13 19:32:00 +0000149 };
Jordan Rose4eff6b52012-10-10 17:55:40 +0000150 typedef unsigned AnalysisMode;
Anna Zaksaa560982012-03-13 19:32:00 +0000151
152 /// Mode of the analyzes while recursively visiting Decls.
153 AnalysisMode RecVisitorMode;
154 /// Bug Reporter to use while recursively visiting Decls.
155 BugReporter *RecVisitorBR;
156
Zhongxing Xued8afac2010-04-30 04:14:20 +0000157public:
Ted Kremenek9c378f72011-08-12 23:37:29 +0000158 ASTContext *Ctx;
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000159 const Preprocessor &PP;
160 const std::string OutDir;
Ted Kremenek45796b12012-08-31 04:36:05 +0000161 AnalyzerOptionsRef Opts;
Jordy Rose08b86532011-08-16 21:24:21 +0000162 ArrayRef<std::string> Plugins;
Stephen Hines176edba2014-12-01 14:53:08 -0800163 CodeInjector *Injector;
Zhongxing Xud07a0d02009-08-03 03:27:37 +0000164
Anna Zaks6a860822012-04-12 22:36:48 +0000165 /// \brief Stores the declarations from the local translation unit.
166 /// Note, we pre-compute the local declarations at parse time as an
167 /// optimization to make sure we do not deserialize everything from disk.
168 /// The local declaration to all declarations ratio might be very small when
169 /// working with a PCH file.
170 SetOfDecls LocalTUDecls;
Ted Kremenekcb0a5032012-04-27 00:38:33 +0000171
Ted Kremenekc4bac8e2012-08-16 17:45:23 +0000172 // Set of PathDiagnosticConsumers. Owned by AnalysisManager.
173 PathDiagnosticConsumers PathConsumers;
Zhongxing Xud07a0d02009-08-03 03:27:37 +0000174
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000175 StoreManagerCreator CreateStoreMgr;
176 ConstraintManagerCreator CreateConstraintMgr;
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000177
Stephen Hines651f13c2014-04-23 16:59:28 -0700178 std::unique_ptr<CheckerManager> checkerMgr;
179 std::unique_ptr<AnalysisManager> Mgr;
Zhongxing Xuc471e7b2009-08-03 03:13:46 +0000180
Anna Zaksd38f7952012-03-05 20:53:59 +0000181 /// Time the analyzes time of each translation unit.
182 static llvm::Timer* TUTotalTimer;
183
Anna Zaks3bbd8cd2012-03-30 05:48:10 +0000184 /// The information about analyzed functions shared throughout the
185 /// translation unit.
186 FunctionSummariesTy FunctionSummaries;
187
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000188 AnalysisConsumer(const Preprocessor& pp,
189 const std::string& outdir,
Ted Kremenek45796b12012-08-31 04:36:05 +0000190 AnalyzerOptionsRef opts,
Stephen Hines176edba2014-12-01 14:53:08 -0800191 ArrayRef<std::string> plugins,
192 CodeInjector *injector)
193 : RecVisitorMode(0), RecVisitorBR(nullptr), Ctx(nullptr), PP(pp),
194 OutDir(outdir), Opts(opts), Plugins(plugins), Injector(injector) {
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000195 DigestAnalyzerOptions();
Ted Kremenek45796b12012-08-31 04:36:05 +0000196 if (Opts->PrintStats) {
Anna Zaksd38f7952012-03-05 20:53:59 +0000197 llvm::EnableStatistics();
198 TUTotalTimer = new llvm::Timer("Analyzer Total Time");
199 }
200 }
201
202 ~AnalysisConsumer() {
Ted Kremenek45796b12012-08-31 04:36:05 +0000203 if (Opts->PrintStats)
Anna Zaksd38f7952012-03-05 20:53:59 +0000204 delete TUTotalTimer;
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000205 }
Zhongxing Xufda78322009-07-30 09:11:52 +0000206
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000207 void DigestAnalyzerOptions() {
Stephen Hines651f13c2014-04-23 16:59:28 -0700208 if (Opts->AnalysisDiagOpt != PD_NONE) {
209 // Create the PathDiagnosticConsumer.
210 ClangDiagPathDiagConsumer *clangDiags =
211 new ClangDiagPathDiagConsumer(PP.getDiagnostics());
212 PathConsumers.push_back(clangDiags);
Ted Kremenekc4bac8e2012-08-16 17:45:23 +0000213
Stephen Hines651f13c2014-04-23 16:59:28 -0700214 if (Opts->AnalysisDiagOpt == PD_TEXT) {
215 clangDiags->enablePaths();
Jordan Rose5fba5a72013-08-16 01:06:30 +0000216
Stephen Hines651f13c2014-04-23 16:59:28 -0700217 } else if (!OutDir.empty()) {
218 switch (Opts->AnalysisDiagOpt) {
219 default:
220#define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATEFN) \
221 case PD_##NAME: \
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700222 CREATEFN(*Opts.get(), PathConsumers, OutDir, PP); \
Stephen Hines651f13c2014-04-23 16:59:28 -0700223 break;
Ted Kremenek987695a2012-08-31 04:35:58 +0000224#include "clang/StaticAnalyzer/Core/Analyses.def"
Stephen Hines651f13c2014-04-23 16:59:28 -0700225 }
Zhongxing Xufda78322009-07-30 09:11:52 +0000226 }
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000227 }
Zhongxing Xufda78322009-07-30 09:11:52 +0000228
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000229 // Create the analyzer component creators.
Ted Kremenek45796b12012-08-31 04:36:05 +0000230 switch (Opts->AnalysisStoreOpt) {
Argyrios Kyrtzidis5f83d6f2011-02-14 18:13:17 +0000231 default:
David Blaikieb219cfc2011-09-23 05:06:16 +0000232 llvm_unreachable("Unknown store manager.");
Zhongxing Xufda78322009-07-30 09:11:52 +0000233#define ANALYSIS_STORE(NAME, CMDFLAG, DESC, CREATEFN) \
Argyrios Kyrtzidis5f83d6f2011-02-14 18:13:17 +0000234 case NAME##Model: CreateStoreMgr = CREATEFN; break;
Ted Kremenek987695a2012-08-31 04:35:58 +0000235#include "clang/StaticAnalyzer/Core/Analyses.def"
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000236 }
Mike Stump1eb44332009-09-09 15:08:12 +0000237
Ted Kremenek45796b12012-08-31 04:36:05 +0000238 switch (Opts->AnalysisConstraintsOpt) {
Argyrios Kyrtzidis5f83d6f2011-02-14 18:13:17 +0000239 default:
Anna Zaks1c32b812013-02-07 23:29:20 +0000240 llvm_unreachable("Unknown constraint manager.");
Zhongxing Xufda78322009-07-30 09:11:52 +0000241#define ANALYSIS_CONSTRAINTS(NAME, CMDFLAG, DESC, CREATEFN) \
Argyrios Kyrtzidis5f83d6f2011-02-14 18:13:17 +0000242 case NAME##Model: CreateConstraintMgr = CREATEFN; break;
Ted Kremenek987695a2012-08-31 04:35:58 +0000243#include "clang/StaticAnalyzer/Core/Analyses.def"
Zhongxing Xufda78322009-07-30 09:11:52 +0000244 }
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000245 }
Ted Kremenekf6eafcc2010-02-14 19:08:51 +0000246
Anna Zaksa5245a52013-02-02 00:30:02 +0000247 void DisplayFunction(const Decl *D, AnalysisMode Mode,
248 ExprEngine::InliningModes IMode) {
Ted Kremenek45796b12012-08-31 04:36:05 +0000249 if (!Opts->AnalyzerDisplayProgress)
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000250 return;
Ted Kremenekf6eafcc2010-02-14 19:08:51 +0000251
Ted Kremenekfc576512009-12-07 22:06:12 +0000252 SourceManager &SM = Mgr->getASTContext().getSourceManager();
253 PresumedLoc Loc = SM.getPresumedLoc(D->getLocation());
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000254 if (Loc.isValid()) {
Anna Zaksaa560982012-03-13 19:32:00 +0000255 llvm::errs() << "ANALYZE";
Jordan Rose4eff6b52012-10-10 17:55:40 +0000256
257 if (Mode == AM_Syntax)
258 llvm::errs() << " (Syntax)";
Anna Zaksa5245a52013-02-02 00:30:02 +0000259 else if (Mode == AM_Path) {
260 llvm::errs() << " (Path, ";
261 switch (IMode) {
Anna Zaks8a660eb2013-03-26 18:57:58 +0000262 case ExprEngine::Inline_Minimal:
263 llvm::errs() << " Inline_Minimal";
Anna Zaksa5245a52013-02-02 00:30:02 +0000264 break;
Anna Zaks8a660eb2013-03-26 18:57:58 +0000265 case ExprEngine::Inline_Regular:
266 llvm::errs() << " Inline_Regular";
Anna Zaksa5245a52013-02-02 00:30:02 +0000267 break;
268 }
269 llvm::errs() << ")";
270 }
Jordan Rose4eff6b52012-10-10 17:55:40 +0000271 else
272 assert(Mode == (AM_Syntax | AM_Path) && "Unexpected mode!");
273
Anna Zaksaa560982012-03-13 19:32:00 +0000274 llvm::errs() << ": " << Loc.getFilename();
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000275 if (isa<FunctionDecl>(D) || isa<ObjCMethodDecl>(D)) {
276 const NamedDecl *ND = cast<NamedDecl>(D);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000277 llvm::errs() << ' ' << *ND << '\n';
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000278 }
279 else if (isa<BlockDecl>(D)) {
280 llvm::errs() << ' ' << "block(line:" << Loc.getLine() << ",col:"
281 << Loc.getColumn() << '\n';
282 }
283 else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
284 Selector S = MD->getSelector();
285 llvm::errs() << ' ' << S.getAsString();
286 }
Ted Kremenek35fa76d2010-10-22 22:08:29 +0000287 }
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000288 }
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Stephen Hines651f13c2014-04-23 16:59:28 -0700290 void Initialize(ASTContext &Context) override {
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000291 Ctx = &Context;
Stephen Hines176edba2014-12-01 14:53:08 -0800292 checkerMgr = createCheckerManager(*Opts, PP.getLangOpts(), Plugins,
293 PP.getDiagnostics());
294
295 Mgr = llvm::make_unique<AnalysisManager>(
296 *Ctx, PP.getDiagnostics(), PP.getLangOpts(), PathConsumers,
297 CreateStoreMgr, CreateConstraintMgr, checkerMgr.get(), *Opts, Injector);
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000298 }
Mike Stump1eb44332009-09-09 15:08:12 +0000299
Anna Zaks6a860822012-04-12 22:36:48 +0000300 /// \brief Store the top level decls in the set to be processed later on.
301 /// (Doing this pre-processing avoids deserialization of data from PCH.)
Stephen Hines651f13c2014-04-23 16:59:28 -0700302 bool HandleTopLevelDecl(DeclGroupRef D) override;
303 void HandleTopLevelDeclInObjCContainer(DeclGroupRef D) override;
Anna Zaks6a860822012-04-12 22:36:48 +0000304
Stephen Hines651f13c2014-04-23 16:59:28 -0700305 void HandleTranslationUnit(ASTContext &C) override;
Ted Kremenek14cc9452011-01-20 17:09:48 +0000306
Anna Zaks75f31c42012-12-07 21:51:47 +0000307 /// \brief Determine which inlining mode should be used when this function is
Anna Zaks8a660eb2013-03-26 18:57:58 +0000308 /// analyzed. This allows to redefine the default inlining policies when
309 /// analyzing a given function.
Anna Zaks75f31c42012-12-07 21:51:47 +0000310 ExprEngine::InliningModes
Stephen Hines176edba2014-12-01 14:53:08 -0800311 getInliningModeForFunction(const Decl *D, const SetOfConstDecls &Visited);
Anna Zaks75f31c42012-12-07 21:51:47 +0000312
Anna Zaks6a860822012-04-12 22:36:48 +0000313 /// \brief Build the call graph for all the top level decls of this TU and
314 /// use it to define the order in which the functions should be visited.
Jordan Rose469ba552012-10-10 17:55:37 +0000315 void HandleDeclsCallGraph(const unsigned LocalTUDeclsSize);
Anna Zaksaa560982012-03-13 19:32:00 +0000316
317 /// \brief Run analyzes(syntax or path sensitive) on the given function.
318 /// \param Mode - determines if we are requesting syntax only or path
319 /// sensitive only analysis.
320 /// \param VisitedCallees - The output parameter, which is populated with the
321 /// set of functions which should be considered analyzed after analyzing the
322 /// given root function.
Anna Zaks6a860822012-04-12 22:36:48 +0000323 void HandleCode(Decl *D, AnalysisMode Mode,
Anna Zaks8a660eb2013-03-26 18:57:58 +0000324 ExprEngine::InliningModes IMode = ExprEngine::Inline_Minimal,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700325 SetOfConstDecls *VisitedCallees = nullptr);
Anna Zaksaa560982012-03-13 19:32:00 +0000326
Anna Zaks75f31c42012-12-07 21:51:47 +0000327 void RunPathSensitiveChecks(Decl *D,
328 ExprEngine::InliningModes IMode,
329 SetOfConstDecls *VisitedCallees);
Anna Zaks6a860822012-04-12 22:36:48 +0000330 void ActionExprEngine(Decl *D, bool ObjCGCEnabled,
Anna Zaks75f31c42012-12-07 21:51:47 +0000331 ExprEngine::InliningModes IMode,
Anna Zaks6a860822012-04-12 22:36:48 +0000332 SetOfConstDecls *VisitedCallees);
Anna Zaksaa560982012-03-13 19:32:00 +0000333
334 /// Visitors for the RecursiveASTVisitor.
Anna Zaksc8848f32012-05-11 23:15:18 +0000335 bool shouldWalkTypesOfTypeLocs() const { return false; }
Anna Zaksaa560982012-03-13 19:32:00 +0000336
337 /// Handle callbacks for arbitrary Decls.
338 bool VisitDecl(Decl *D) {
Jordan Rose4eff6b52012-10-10 17:55:40 +0000339 AnalysisMode Mode = getModeForDecl(D, RecVisitorMode);
340 if (Mode & AM_Syntax)
341 checkerMgr->runCheckersOnASTDecl(D, *Mgr, *RecVisitorBR);
Anna Zaksaa560982012-03-13 19:32:00 +0000342 return true;
343 }
344
345 bool VisitFunctionDecl(FunctionDecl *FD) {
346 IdentifierInfo *II = FD->getIdentifier();
347 if (II && II->getName().startswith("__inline"))
348 return true;
349
350 // We skip function template definitions, as their semantics is
351 // only determined when they are instantiated.
352 if (FD->isThisDeclarationADefinition() &&
353 !FD->isDependentContext()) {
Anna Zaks75f31c42012-12-07 21:51:47 +0000354 assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false);
Anna Zaksaa560982012-03-13 19:32:00 +0000355 HandleCode(FD, RecVisitorMode);
356 }
357 return true;
358 }
359
360 bool VisitObjCMethodDecl(ObjCMethodDecl *MD) {
Anna Zaks75f31c42012-12-07 21:51:47 +0000361 if (MD->isThisDeclarationADefinition()) {
362 assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false);
Anna Zaksaa560982012-03-13 19:32:00 +0000363 HandleCode(MD, RecVisitorMode);
Anna Zaks75f31c42012-12-07 21:51:47 +0000364 }
Anna Zaksaa560982012-03-13 19:32:00 +0000365 return true;
366 }
Anna Zaks4f858df2012-12-21 01:19:15 +0000367
368 bool VisitBlockDecl(BlockDecl *BD) {
369 if (BD->hasBody()) {
370 assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false);
371 HandleCode(BD, RecVisitorMode);
372 }
373 return true;
374 }
Anna Zaks6a860822012-04-12 22:36:48 +0000375
Stephen Hines651f13c2014-04-23 16:59:28 -0700376 virtual void
377 AddDiagnosticConsumer(PathDiagnosticConsumer *Consumer) override {
378 PathConsumers.push_back(Consumer);
379 }
380
Anna Zaks6a860822012-04-12 22:36:48 +0000381private:
382 void storeTopLevelDecls(DeclGroupRef DG);
383
384 /// \brief Check if we should skip (not analyze) the given function.
Jordan Rose4eff6b52012-10-10 17:55:40 +0000385 AnalysisMode getModeForDecl(Decl *D, AnalysisMode Mode);
Anna Zaks6a860822012-04-12 22:36:48 +0000386
Ted Kremenek1d9cbeb2009-11-11 06:28:42 +0000387};
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000388} // end anonymous namespace
389
Anna Zaksaa560982012-03-13 19:32:00 +0000390
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000391//===----------------------------------------------------------------------===//
392// AnalysisConsumer implementation.
393//===----------------------------------------------------------------------===//
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700394llvm::Timer* AnalysisConsumer::TUTotalTimer = nullptr;
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000395
Anna Zaks6a860822012-04-12 22:36:48 +0000396bool AnalysisConsumer::HandleTopLevelDecl(DeclGroupRef DG) {
397 storeTopLevelDecls(DG);
398 return true;
399}
400
401void AnalysisConsumer::HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) {
402 storeTopLevelDecls(DG);
403}
404
405void AnalysisConsumer::storeTopLevelDecls(DeclGroupRef DG) {
406 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) {
407
408 // Skip ObjCMethodDecl, wait for the objc container to avoid
409 // analyzing twice.
410 if (isa<ObjCMethodDecl>(*I))
411 continue;
412
Ted Kremenek577f14a2012-04-27 04:54:28 +0000413 LocalTUDecls.push_back(*I);
Anna Zaks6a860822012-04-12 22:36:48 +0000414 }
415}
416
Anna Zaksb4670512012-12-14 19:08:17 +0000417static bool shouldSkipFunction(const Decl *D,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700418 const SetOfConstDecls &Visited,
419 const SetOfConstDecls &VisitedAsTopLevel) {
Anna Zaksb4670512012-12-14 19:08:17 +0000420 if (VisitedAsTopLevel.count(D))
Anna Zaks75f31c42012-12-07 21:51:47 +0000421 return true;
422
423 // We want to re-analyse the functions as top level in the following cases:
Anna Zaksfbcb3f12012-08-30 23:42:02 +0000424 // - The 'init' methods should be reanalyzed because
425 // ObjCNonNilReturnValueChecker assumes that '[super init]' never returns
Anna Zaks75f31c42012-12-07 21:51:47 +0000426 // 'nil' and unless we analyze the 'init' functions as top level, we will
427 // not catch errors within defensive code.
Anna Zaksfbcb3f12012-08-30 23:42:02 +0000428 // - We want to reanalyze all ObjC methods as top level to report Retain
429 // Count naming convention errors more aggressively.
Anna Zaksb4670512012-12-14 19:08:17 +0000430 if (isa<ObjCMethodDecl>(D))
Anna Zaksfbcb3f12012-08-30 23:42:02 +0000431 return false;
432
433 // Otherwise, if we visited the function before, do not reanalyze it.
Anna Zaksb4670512012-12-14 19:08:17 +0000434 return Visited.count(D);
Anna Zaksfbcb3f12012-08-30 23:42:02 +0000435}
436
Anna Zaks75f31c42012-12-07 21:51:47 +0000437ExprEngine::InliningModes
Anna Zaksb4670512012-12-14 19:08:17 +0000438AnalysisConsumer::getInliningModeForFunction(const Decl *D,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700439 const SetOfConstDecls &Visited) {
Anna Zaks75f31c42012-12-07 21:51:47 +0000440 // We want to reanalyze all ObjC methods as top level to report Retain
Anna Zaks8a660eb2013-03-26 18:57:58 +0000441 // Count naming convention errors more aggressively. But we should tune down
Anna Zaks75f31c42012-12-07 21:51:47 +0000442 // inlining when reanalyzing an already inlined function.
Anna Zaksb4670512012-12-14 19:08:17 +0000443 if (Visited.count(D)) {
444 assert(isa<ObjCMethodDecl>(D) &&
Anna Zaks75f31c42012-12-07 21:51:47 +0000445 "We are only reanalyzing ObjCMethods.");
Anna Zaksb4670512012-12-14 19:08:17 +0000446 const ObjCMethodDecl *ObjCM = cast<ObjCMethodDecl>(D);
Anna Zaks75f31c42012-12-07 21:51:47 +0000447 if (ObjCM->getMethodFamily() != OMF_init)
Anna Zaks8a660eb2013-03-26 18:57:58 +0000448 return ExprEngine::Inline_Minimal;
Anna Zaks75f31c42012-12-07 21:51:47 +0000449 }
450
Anna Zaks8a660eb2013-03-26 18:57:58 +0000451 return ExprEngine::Inline_Regular;
Anna Zaks75f31c42012-12-07 21:51:47 +0000452}
453
Jordan Rose469ba552012-10-10 17:55:37 +0000454void AnalysisConsumer::HandleDeclsCallGraph(const unsigned LocalTUDeclsSize) {
Anna Zaksbd802312012-12-21 17:27:01 +0000455 // Build the Call Graph by adding all the top level declarations to the graph.
Anna Zaks694a9422012-05-31 18:07:55 +0000456 // Note: CallGraph can trigger deserialization of more items from a pch
457 // (though HandleInterestingDecl); triggering additions to LocalTUDecls.
458 // We rely on random access to add the initially processed Decls to CG.
Anna Zaksbd802312012-12-21 17:27:01 +0000459 CallGraph CG;
Anna Zaks694a9422012-05-31 18:07:55 +0000460 for (unsigned i = 0 ; i < LocalTUDeclsSize ; ++i) {
Anna Zakseaa06902012-05-30 23:14:48 +0000461 CG.addToCallGraph(LocalTUDecls[i]);
462 }
Anna Zaksd95e0b82012-03-08 23:16:38 +0000463
Anna Zaksbd802312012-12-21 17:27:01 +0000464 // Walk over all of the call graph nodes in topological order, so that we
465 // analyze parents before the children. Skip the functions inlined into
466 // the previously processed functions. Use external Visited set to identify
467 // inlined functions. The topological order allows the "do not reanalyze
468 // previously inlined function" performance heuristic to be triggered more
469 // often.
Anna Zaksb4670512012-12-14 19:08:17 +0000470 SetOfConstDecls Visited;
471 SetOfConstDecls VisitedAsTopLevel;
Anna Zaksbd802312012-12-21 17:27:01 +0000472 llvm::ReversePostOrderTraversal<clang::CallGraph*> RPOT(&CG);
473 for (llvm::ReversePostOrderTraversal<clang::CallGraph*>::rpo_iterator
474 I = RPOT.begin(), E = RPOT.end(); I != E; ++I) {
475 NumFunctionTopLevel++;
Anna Zaks7fe8dce2012-03-13 19:32:13 +0000476
Anna Zaksbd802312012-12-21 17:27:01 +0000477 CallGraphNode *N = *I;
Anna Zaksb4670512012-12-14 19:08:17 +0000478 Decl *D = N->getDecl();
Anna Zaksbd802312012-12-21 17:27:01 +0000479
480 // Skip the abstract root node.
481 if (!D)
482 continue;
Anna Zaksb4670512012-12-14 19:08:17 +0000483
Anna Zaks7fe8dce2012-03-13 19:32:13 +0000484 // Skip the functions which have been processed already or previously
485 // inlined.
Anna Zaksb4670512012-12-14 19:08:17 +0000486 if (shouldSkipFunction(D, Visited, VisitedAsTopLevel))
Anna Zaks7fe8dce2012-03-13 19:32:13 +0000487 continue;
488
489 // Analyze the function.
Anna Zaks6a860822012-04-12 22:36:48 +0000490 SetOfConstDecls VisitedCallees;
Anna Zaks75f31c42012-12-07 21:51:47 +0000491
Anna Zaksb4670512012-12-14 19:08:17 +0000492 HandleCode(D, AM_Path, getInliningModeForFunction(D, Visited),
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700493 (Mgr->options.InliningMode == All ? nullptr : &VisitedCallees));
Anna Zaks7fe8dce2012-03-13 19:32:13 +0000494
495 // Add the visited callees to the global visited set.
Ted Kremenekcb0a5032012-04-27 00:38:33 +0000496 for (SetOfConstDecls::iterator I = VisitedCallees.begin(),
497 E = VisitedCallees.end(); I != E; ++I) {
Anna Zaksb4670512012-12-14 19:08:17 +0000498 Visited.insert(*I);
Anna Zaks7fe8dce2012-03-13 19:32:13 +0000499 }
Anna Zaksb4670512012-12-14 19:08:17 +0000500 VisitedAsTopLevel.insert(D);
Anna Zaksd95e0b82012-03-08 23:16:38 +0000501 }
Ted Kremenekfee618a2011-08-27 21:28:09 +0000502}
503
Ted Kremenek14cc9452011-01-20 17:09:48 +0000504void AnalysisConsumer::HandleTranslationUnit(ASTContext &C) {
Anna Zaksaa560982012-03-13 19:32:00 +0000505 // Don't run the actions if an error has occurred with parsing the file.
506 DiagnosticsEngine &Diags = PP.getDiagnostics();
507 if (Diags.hasErrorOccurred() || Diags.hasFatalErrorOccurred())
508 return;
509
Stephen Hines176edba2014-12-01 14:53:08 -0800510 // Don't analyze if the user explicitly asked for no checks to be performed
511 // on this file.
512 if (Opts->DisableAllChecks)
513 return;
514
Anna Zaksc5bdc552012-01-07 16:49:46 +0000515 {
Anna Zaksd38f7952012-03-05 20:53:59 +0000516 if (TUTotalTimer) TUTotalTimer->startTimer();
517
Anna Zaksc5bdc552012-01-07 16:49:46 +0000518 // Introduce a scope to destroy BR before Mgr.
519 BugReporter BR(*Mgr);
520 TranslationUnitDecl *TU = C.getTranslationUnitDecl();
521 checkerMgr->runCheckersOnASTDecl(TU, *Mgr, BR);
Anna Zaksaa560982012-03-13 19:32:00 +0000522
523 // Run the AST-only checks using the order in which functions are defined.
524 // If inlining is not turned on, use the simplest function order for path
525 // sensitive analyzes as well.
Jordan Rose4eff6b52012-10-10 17:55:40 +0000526 RecVisitorMode = AM_Syntax;
527 if (!Mgr->shouldInlineCall())
528 RecVisitorMode |= AM_Path;
Anna Zaksaa560982012-03-13 19:32:00 +0000529 RecVisitorBR = &BR;
Anna Zaks6a860822012-04-12 22:36:48 +0000530
531 // Process all the top level declarations.
Ted Kremenekcb0a5032012-04-27 00:38:33 +0000532 //
Ted Kremenek577f14a2012-04-27 04:54:28 +0000533 // Note: TraverseDecl may modify LocalTUDecls, but only by appending more
534 // entries. Thus we don't use an iterator, but rely on LocalTUDecls
535 // random access. By doing so, we automatically compensate for iterators
536 // possibly being invalidated, although this is a bit slower.
Anna Zaks694a9422012-05-31 18:07:55 +0000537 const unsigned LocalTUDeclsSize = LocalTUDecls.size();
538 for (unsigned i = 0 ; i < LocalTUDeclsSize ; ++i) {
Ted Kremenek577f14a2012-04-27 04:54:28 +0000539 TraverseDecl(LocalTUDecls[i]);
Ted Kremenekcb0a5032012-04-27 00:38:33 +0000540 }
Anna Zaksaa560982012-03-13 19:32:00 +0000541
542 if (Mgr->shouldInlineCall())
Jordan Rose469ba552012-10-10 17:55:37 +0000543 HandleDeclsCallGraph(LocalTUDeclsSize);
Zhongxing Xued8afac2010-04-30 04:14:20 +0000544
Anna Zaksc5bdc552012-01-07 16:49:46 +0000545 // After all decls handled, run checkers on the entire TranslationUnit.
546 checkerMgr->runCheckersOnEndOfTranslationUnit(TU, *Mgr, BR);
Anna Zaksaa560982012-03-13 19:32:00 +0000547
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700548 RecVisitorBR = nullptr;
Anna Zaksc5bdc552012-01-07 16:49:46 +0000549 }
Ted Kremenek9be6e7c2011-05-05 03:41:17 +0000550
David Blaikieef3643f2011-09-26 00:51:36 +0000551 // Explicitly destroy the PathDiagnosticConsumer. This will flush its output.
Ted Kremenek690a7f42009-08-02 05:43:14 +0000552 // FIXME: This should be replaced with something that doesn't rely on
David Blaikieef3643f2011-09-26 00:51:36 +0000553 // side-effects in PathDiagnosticConsumer's destructor. This is required when
Zhongxing Xuda17fd52009-12-15 09:32:42 +0000554 // used with option -disable-free.
Stephen Hines176edba2014-12-01 14:53:08 -0800555 Mgr.reset();
Anna Zaksd38f7952012-03-05 20:53:59 +0000556
557 if (TUTotalTimer) TUTotalTimer->stopTimer();
Anna Zaks6b77ce82012-04-05 02:10:21 +0000558
559 // Count how many basic blocks we have not covered.
560 NumBlocksInAnalyzedFunctions = FunctionSummaries.getTotalNumBasicBlocks();
561 if (NumBlocksInAnalyzedFunctions > 0)
562 PercentReachableBlocks =
563 (FunctionSummaries.getTotalNumVisitedBasicBlocks() * 100) /
564 NumBlocksInAnalyzedFunctions;
565
Ted Kremenekdb09a4d2008-07-03 04:29:21 +0000566}
567
Anna Zaksd95e0b82012-03-08 23:16:38 +0000568static std::string getFunctionName(const Decl *D) {
569 if (const ObjCMethodDecl *ID = dyn_cast<ObjCMethodDecl>(D)) {
570 return ID->getSelector().getAsString();
571 }
572 if (const FunctionDecl *ND = dyn_cast<FunctionDecl>(D)) {
573 IdentifierInfo *II = ND->getIdentifier();
574 if (II)
575 return II->getName();
576 }
577 return "";
578}
579
Jordan Rose4eff6b52012-10-10 17:55:40 +0000580AnalysisConsumer::AnalysisMode
581AnalysisConsumer::getModeForDecl(Decl *D, AnalysisMode Mode) {
Ted Kremenek45796b12012-08-31 04:36:05 +0000582 if (!Opts->AnalyzeSpecificFunction.empty() &&
583 getFunctionName(D) != Opts->AnalyzeSpecificFunction)
Jordan Rose4eff6b52012-10-10 17:55:40 +0000584 return AM_None;
Mike Stump1eb44332009-09-09 15:08:12 +0000585
Jordan Rose4eff6b52012-10-10 17:55:40 +0000586 // Unless -analyze-all is specified, treat decls differently depending on
587 // where they came from:
588 // - Main source file: run both path-sensitive and non-path-sensitive checks.
589 // - Header files: run non-path-sensitive checks only.
590 // - System headers: don't run any checks.
Ted Kremenekfcd783d2010-06-15 00:55:40 +0000591 SourceManager &SM = Ctx->getSourceManager();
Chandler Carruth40278532011-07-25 16:49:02 +0000592 SourceLocation SL = SM.getExpansionLoc(D->getLocation());
Eli Friedman24146972013-08-22 00:27:10 +0000593 if (!Opts->AnalyzeAll && !SM.isInMainFile(SL)) {
Jordan Rose4eff6b52012-10-10 17:55:40 +0000594 if (SL.isInvalid() || SM.isInSystemHeader(SL))
595 return AM_None;
596 return Mode & ~AM_Path;
597 }
Anna Zaks98520832012-03-13 19:31:54 +0000598
Jordan Rose4eff6b52012-10-10 17:55:40 +0000599 return Mode;
Anna Zaks98520832012-03-13 19:31:54 +0000600}
601
Anna Zaksaa560982012-03-13 19:32:00 +0000602void AnalysisConsumer::HandleCode(Decl *D, AnalysisMode Mode,
Anna Zaks75f31c42012-12-07 21:51:47 +0000603 ExprEngine::InliningModes IMode,
Anna Zaks6a860822012-04-12 22:36:48 +0000604 SetOfConstDecls *VisitedCallees) {
Anna Zaks4f858df2012-12-21 01:19:15 +0000605 if (!D->hasBody())
606 return;
Jordan Rose4eff6b52012-10-10 17:55:40 +0000607 Mode = getModeForDecl(D, Mode);
608 if (Mode == AM_None)
Mike Stump1eb44332009-09-09 15:08:12 +0000609 return;
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000610
Anna Zaksa5245a52013-02-02 00:30:02 +0000611 DisplayFunction(D, Mode, IMode);
Anna Zaks84c1f4b2012-07-05 20:44:02 +0000612 CFG *DeclCFG = Mgr->getCFG(D);
613 if (DeclCFG) {
614 unsigned CFGSize = DeclCFG->size();
615 MaxCFGSize = MaxCFGSize < CFGSize ? CFGSize : MaxCFGSize;
616 }
617
Ted Kremenek1d26f482011-10-24 01:32:45 +0000618 // Clear the AnalysisManager of old AnalysisDeclContexts.
Ted Kremenek58f5ec72009-10-20 21:39:41 +0000619 Mgr->ClearContexts();
Argyrios Kyrtzidis9fb94742011-02-17 21:39:24 +0000620 BugReporter BR(*Mgr);
Anna Zaks4f858df2012-12-21 01:19:15 +0000621
622 if (Mode & AM_Syntax)
623 checkerMgr->runCheckersOnASTBody(D, *Mgr, BR);
624 if ((Mode & AM_Path) && checkerMgr->hasPathSensitiveCheckers()) {
625 RunPathSensitiveChecks(D, IMode, VisitedCallees);
Anna Zaks8a660eb2013-03-26 18:57:58 +0000626 if (IMode != ExprEngine::Inline_Minimal)
Anna Zaks4f858df2012-12-21 01:19:15 +0000627 NumFunctionsAnalyzed++;
628 }
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000629}
630
631//===----------------------------------------------------------------------===//
Argyrios Kyrtzidisd655ab22011-02-28 19:49:17 +0000632// Path-sensitive checking.
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000633//===----------------------------------------------------------------------===//
634
Anna Zaks3fd5f372012-03-09 21:14:01 +0000635void AnalysisConsumer::ActionExprEngine(Decl *D, bool ObjCGCEnabled,
Anna Zaks75f31c42012-12-07 21:51:47 +0000636 ExprEngine::InliningModes IMode,
Anna Zaks6a860822012-04-12 22:36:48 +0000637 SetOfConstDecls *VisitedCallees) {
Ted Kremeneka5937bb2011-10-07 22:21:02 +0000638 // Construct the analysis engine. First check if the CFG is valid.
Ted Kremenek75d03cf2009-09-18 22:29:35 +0000639 // FIXME: Inter-procedural analysis will need to handle invalid CFGs.
Anna Zaks3fd5f372012-03-09 21:14:01 +0000640 if (!Mgr->getCFG(D))
Ted Kremenekf6eafcc2010-02-14 19:08:51 +0000641 return;
Anna Zaks3fd5f372012-03-09 21:14:01 +0000642
Ted Kremenekd4aeb802012-07-02 20:21:52 +0000643 // See if the LiveVariables analysis scales.
644 if (!Mgr->getAnalysisDeclContext(D)->getAnalysis<RelaxedLiveVariables>())
645 return;
646
Anna Zaks75f31c42012-12-07 21:51:47 +0000647 ExprEngine Eng(*Mgr, ObjCGCEnabled, VisitedCallees, &FunctionSummaries,IMode);
Ted Kremenekf6eafcc2010-02-14 19:08:51 +0000648
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000649 // Set the graph auditor.
Stephen Hines651f13c2014-04-23 16:59:28 -0700650 std::unique_ptr<ExplodedNode::Auditor> Auditor;
Ted Kremenek3b8a0402012-08-30 19:26:53 +0000651 if (Mgr->options.visualizeExplodedGraphWithUbiGraph) {
Stephen Hines176edba2014-12-01 14:53:08 -0800652 Auditor = CreateUbiViz();
Zhongxing Xuc5619d92009-08-06 01:32:16 +0000653 ExplodedNode::SetAuditor(Auditor.get());
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000654 }
Mike Stump1eb44332009-09-09 15:08:12 +0000655
Ted Kremenekb35a74a2008-07-02 00:44:58 +0000656 // Execute the worklist algorithm.
Jordy Rosed2001872012-04-28 01:58:08 +0000657 Eng.ExecuteWorkList(Mgr->getAnalysisDeclContextManager().getStackFrame(D),
Anna Zaksac3a3e72013-01-30 19:12:39 +0000658 Mgr->options.getMaxNodesPerTopLevelFunction());
Mike Stump1eb44332009-09-09 15:08:12 +0000659
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000660 // Release the auditor (if any) so that it doesn't monitor the graph
661 // created BugReporter.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700662 ExplodedNode::SetAuditor(nullptr);
Ted Kremenek3df64212009-03-11 01:42:29 +0000663
Ted Kremenek34d77342008-07-02 16:49:11 +0000664 // Visualize the exploded graph.
Ted Kremenek3b8a0402012-08-30 19:26:53 +0000665 if (Mgr->options.visualizeExplodedGraphWithGraphViz)
Ted Kremenek255d4d42012-08-30 19:26:43 +0000666 Eng.ViewGraph(Mgr->options.TrimGraph);
Mike Stump1eb44332009-09-09 15:08:12 +0000667
Ted Kremenek3df64212009-03-11 01:42:29 +0000668 // Display warnings.
669 Eng.getBugReporter().FlushReports();
Ted Kremenekbc46f342008-07-02 16:35:50 +0000670}
671
Anna Zaks6a860822012-04-12 22:36:48 +0000672void AnalysisConsumer::RunPathSensitiveChecks(Decl *D,
Anna Zaks75f31c42012-12-07 21:51:47 +0000673 ExprEngine::InliningModes IMode,
Anna Zaks6a860822012-04-12 22:36:48 +0000674 SetOfConstDecls *Visited) {
Mike Stump1eb44332009-09-09 15:08:12 +0000675
David Blaikie4e4d0842012-03-11 07:00:24 +0000676 switch (Mgr->getLangOpts().getGC()) {
Jordy Rose17a38e22011-09-02 05:55:19 +0000677 case LangOptions::NonGC:
Anna Zaks75f31c42012-12-07 21:51:47 +0000678 ActionExprEngine(D, false, IMode, Visited);
Jordy Rose17a38e22011-09-02 05:55:19 +0000679 break;
680
681 case LangOptions::GCOnly:
Anna Zaks75f31c42012-12-07 21:51:47 +0000682 ActionExprEngine(D, true, IMode, Visited);
Jordy Rose17a38e22011-09-02 05:55:19 +0000683 break;
684
685 case LangOptions::HybridGC:
Anna Zaks75f31c42012-12-07 21:51:47 +0000686 ActionExprEngine(D, false, IMode, Visited);
687 ActionExprEngine(D, true, IMode, Visited);
Jordy Rose17a38e22011-09-02 05:55:19 +0000688 break;
689 }
Ted Kremenekb35a74a2008-07-02 00:44:58 +0000690}
691
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000692//===----------------------------------------------------------------------===//
693// AnalysisConsumer creation.
694//===----------------------------------------------------------------------===//
695
Stephen Hines176edba2014-12-01 14:53:08 -0800696std::unique_ptr<AnalysisASTConsumer>
697ento::CreateAnalysisConsumer(CompilerInstance &CI) {
Jordy Rose08b86532011-08-16 21:24:21 +0000698 // Disable the effects of '-Werror' when using the AnalysisConsumer.
Stephen Hines176edba2014-12-01 14:53:08 -0800699 CI.getPreprocessor().getDiagnostics().setWarningsAsErrors(false);
Ted Kremenekbe1fe1e2009-02-17 04:27:41 +0000700
Stephen Hines176edba2014-12-01 14:53:08 -0800701 AnalyzerOptionsRef analyzerOpts = CI.getAnalyzerOpts();
702 bool hasModelPath = analyzerOpts->Config.count("model-path") > 0;
703
704 return llvm::make_unique<AnalysisConsumer>(
705 CI.getPreprocessor(), CI.getFrontendOpts().OutputFile, analyzerOpts,
706 CI.getFrontendOpts().Plugins,
707 hasModelPath ? new ModelInjector(CI) : nullptr);
Ted Kremenekf4381fd2008-07-02 00:03:09 +0000708}
709
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000710//===----------------------------------------------------------------------===//
711// Ubigraph Visualization. FIXME: Move to separate file.
712//===----------------------------------------------------------------------===//
713
714namespace {
Mike Stump1eb44332009-09-09 15:08:12 +0000715
Zhongxing Xuc5619d92009-08-06 01:32:16 +0000716class UbigraphViz : public ExplodedNode::Auditor {
Stephen Hines651f13c2014-04-23 16:59:28 -0700717 std::unique_ptr<raw_ostream> Out;
Rafael Espindolad2a5bee2013-06-26 14:33:23 +0000718 std::string Filename;
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000719 unsigned Cntr;
720
721 typedef llvm::DenseMap<void*,unsigned> VMap;
722 VMap M;
Mike Stump1eb44332009-09-09 15:08:12 +0000723
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000724public:
Stephen Hines176edba2014-12-01 14:53:08 -0800725 UbigraphViz(std::unique_ptr<raw_ostream> Out, StringRef Filename);
Mike Stump1eb44332009-09-09 15:08:12 +0000726
Ted Kremenek710ad932008-08-28 03:54:51 +0000727 ~UbigraphViz();
Mike Stump1eb44332009-09-09 15:08:12 +0000728
Stephen Hines651f13c2014-04-23 16:59:28 -0700729 void AddEdge(ExplodedNode *Src, ExplodedNode *Dst) override;
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000730};
Mike Stump1eb44332009-09-09 15:08:12 +0000731
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000732} // end anonymous namespace
733
Stephen Hines176edba2014-12-01 14:53:08 -0800734static std::unique_ptr<ExplodedNode::Auditor> CreateUbiViz() {
Rafael Espindolab8e60d92013-06-26 06:13:06 +0000735 SmallString<128> P;
736 int FD;
Rafael Espindola1ec4a862013-07-05 20:00:06 +0000737 llvm::sys::fs::createTemporaryFile("llvm_ubi", "", FD, P);
Rafael Espindolab8e60d92013-06-26 06:13:06 +0000738 llvm::errs() << "Writing '" << P.str() << "'.\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000739
Stephen Hines176edba2014-12-01 14:53:08 -0800740 auto Stream = llvm::make_unique<llvm::raw_fd_ostream>(FD, true);
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000741
Stephen Hines176edba2014-12-01 14:53:08 -0800742 return llvm::make_unique<UbigraphViz>(std::move(Stream), P);
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000743}
744
Ted Kremenek9c378f72011-08-12 23:37:29 +0000745void UbigraphViz::AddEdge(ExplodedNode *Src, ExplodedNode *Dst) {
Mike Stump1eb44332009-09-09 15:08:12 +0000746
Ted Kremenek45479c82008-08-28 18:34:41 +0000747 assert (Src != Dst && "Self-edges are not allowed.");
Mike Stump1eb44332009-09-09 15:08:12 +0000748
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000749 // Lookup the Src. If it is a new node, it's a root.
750 VMap::iterator SrcI= M.find(Src);
751 unsigned SrcID;
Mike Stump1eb44332009-09-09 15:08:12 +0000752
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000753 if (SrcI == M.end()) {
754 M[Src] = SrcID = Cntr++;
755 *Out << "('vertex', " << SrcID << ", ('color','#00ff00'))\n";
756 }
757 else
758 SrcID = SrcI->second;
Mike Stump1eb44332009-09-09 15:08:12 +0000759
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000760 // Lookup the Dst.
761 VMap::iterator DstI= M.find(Dst);
762 unsigned DstID;
763
764 if (DstI == M.end()) {
765 M[Dst] = DstID = Cntr++;
766 *Out << "('vertex', " << DstID << ")\n";
767 }
Ted Kremenek56b98712008-08-28 05:02:09 +0000768 else {
769 // We have hit DstID before. Change its style to reflect a cache hit.
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000770 DstID = DstI->second;
Ted Kremenek56b98712008-08-28 05:02:09 +0000771 *Out << "('change_vertex_style', " << DstID << ", 1)\n";
772 }
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000773
774 // Add the edge.
Mike Stump1eb44332009-09-09 15:08:12 +0000775 *Out << "('edge', " << SrcID << ", " << DstID
Ted Kremenekd1289322008-08-27 22:46:55 +0000776 << ", ('arrow','true'), ('oriented', 'true'))\n";
Ted Kremenekf8ce6992008-08-27 22:31:43 +0000777}
778
Stephen Hines176edba2014-12-01 14:53:08 -0800779UbigraphViz::UbigraphViz(std::unique_ptr<raw_ostream> Out, StringRef Filename)
780 : Out(std::move(Out)), Filename(Filename), Cntr(0) {
Ted Kremenek56b98712008-08-28 05:02:09 +0000781
782 *Out << "('vertex_style_attribute', 0, ('shape', 'icosahedron'))\n";
783 *Out << "('vertex_style', 1, 0, ('shape', 'sphere'), ('color', '#ffcc66'),"
784 " ('size', '1.5'))\n";
785}
786
Ted Kremenek710ad932008-08-28 03:54:51 +0000787UbigraphViz::~UbigraphViz() {
Stephen Hines176edba2014-12-01 14:53:08 -0800788 Out.reset();
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000789 llvm::errs() << "Running 'ubiviz' program... ";
Ted Kremenek710ad932008-08-28 03:54:51 +0000790 std::string ErrMsg;
Stephen Hines176edba2014-12-01 14:53:08 -0800791 std::string Ubiviz;
792 if (auto Path = llvm::sys::findProgramByName("ubiviz"))
793 Ubiviz = *Path;
Ted Kremenek710ad932008-08-28 03:54:51 +0000794 std::vector<const char*> args;
795 args.push_back(Ubiviz.c_str());
796 args.push_back(Filename.c_str());
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700797 args.push_back(nullptr);
Mike Stump1eb44332009-09-09 15:08:12 +0000798
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700799 if (llvm::sys::ExecuteAndWait(Ubiviz, &args[0], nullptr, nullptr, 0, 0,
800 &ErrMsg)) {
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000801 llvm::errs() << "Error viewing graph: " << ErrMsg << "\n";
Ted Kremenek710ad932008-08-28 03:54:51 +0000802 }
Mike Stump1eb44332009-09-09 15:08:12 +0000803
Rafael Espindolad2a5bee2013-06-26 14:33:23 +0000804 // Delete the file.
805 llvm::sys::fs::remove(Filename);
Daniel Dunbar932680e2008-08-29 03:45:59 +0000806}