Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 1 | //===--- 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 | |
Alexander Kornienko | 6de3949 | 2014-01-03 17:23:10 +0000 | [diff] [blame] | 14 | #include "clang/StaticAnalyzer/Frontend/AnalysisConsumer.h" |
Chandler Carruth | 0d9593d | 2015-01-14 11:29:14 +0000 | [diff] [blame] | 15 | #include "ModelInjector.h" |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 16 | #include "clang/AST/Decl.h" |
Zhongxing Xu | 686b845 | 2009-12-16 05:29:59 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclCXX.h" |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclObjC.h" |
Benjamin Kramer | cfeacf5 | 2016-05-27 14:27:13 +0000 | [diff] [blame] | 19 | #include "clang/AST/RecursiveASTVisitor.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "clang/Analysis/Analyses/LiveVariables.h" |
Daniel Dunbar | b5f2025 | 2009-11-05 02:41:58 +0000 | [diff] [blame] | 21 | #include "clang/Analysis/CFG.h" |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 22 | #include "clang/Analysis/CallGraph.h" |
Chandler Carruth | 0d9593d | 2015-01-14 11:29:14 +0000 | [diff] [blame] | 23 | #include "clang/Analysis/CodeInjector.h" |
Daniel Dunbar | b5f2025 | 2009-11-05 02:41:58 +0000 | [diff] [blame] | 24 | #include "clang/Basic/SourceManager.h" |
Ilya Biryukov | 8b9b3bd | 2018-03-01 14:54:16 +0000 | [diff] [blame] | 25 | #include "clang/CrossTU/CrossTranslationUnit.h" |
Chandler Carruth | 0d9593d | 2015-01-14 11:29:14 +0000 | [diff] [blame] | 26 | #include "clang/Frontend/CompilerInstance.h" |
Daniel Dunbar | b5f2025 | 2009-11-05 02:41:58 +0000 | [diff] [blame] | 27 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 28 | #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" |
Chandler Carruth | 44eb4f6 | 2013-01-02 10:28:36 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/PostOrderIterator.h" |
Anna Zaks | b028654 | 2012-02-27 21:33:16 +0000 | [diff] [blame] | 38 | #include "llvm/ADT/Statistic.h" |
Rafael Espindola | 4168ee7 | 2013-06-26 06:13:06 +0000 | [diff] [blame] | 39 | #include "llvm/Support/FileSystem.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 40 | #include "llvm/Support/Path.h" |
| 41 | #include "llvm/Support/Program.h" |
| 42 | #include "llvm/Support/Timer.h" |
| 43 | #include "llvm/Support/raw_ostream.h" |
Ahmed Charles | dfca6f9 | 2014-03-09 11:36:40 +0000 | [diff] [blame] | 44 | #include <memory> |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 45 | #include <queue> |
Benjamin Kramer | cfeacf5 | 2016-05-27 14:27:13 +0000 | [diff] [blame] | 46 | #include <utility> |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 47 | |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 48 | using namespace clang; |
Ted Kremenek | 98857c9 | 2010-12-23 07:20:52 +0000 | [diff] [blame] | 49 | using namespace ento; |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 50 | |
Chandler Carruth | 1034666 | 2014-04-22 03:17:02 +0000 | [diff] [blame] | 51 | #define DEBUG_TYPE "AnalysisConsumer" |
| 52 | |
Anna Zaks | 394d07e | 2012-03-09 21:14:01 +0000 | [diff] [blame] | 53 | STATISTIC(NumFunctionTopLevel, "The # of functions at top level."); |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 54 | STATISTIC(NumFunctionsAnalyzed, |
Anna Zaks | ad3704c | 2012-12-17 20:08:54 +0000 | [diff] [blame] | 55 | "The # of functions and blocks analyzed (as top level " |
| 56 | "with inlining turned on)."); |
Anna Zaks | cc24e45 | 2012-04-03 02:05:47 +0000 | [diff] [blame] | 57 | STATISTIC(NumBlocksInAnalyzedFunctions, |
Anna Zaks | ad3704c | 2012-12-17 20:08:54 +0000 | [diff] [blame] | 58 | "The # of basic blocks in the analyzed functions."); |
George Karpenkov | 2a63985 | 2018-02-09 23:37:47 +0000 | [diff] [blame] | 59 | STATISTIC(NumVisitedBlocksInAnalyzedFunctions, |
| 60 | "The # of visited basic blocks in the analyzed functions."); |
Anna Zaks | cc24e45 | 2012-04-03 02:05:47 +0000 | [diff] [blame] | 61 | STATISTIC(PercentReachableBlocks, "The % of reachable basic blocks."); |
Anna Zaks | 40b87fc | 2012-07-05 20:44:02 +0000 | [diff] [blame] | 62 | STATISTIC(MaxCFGSize, "The maximum number of basic blocks in a function."); |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 63 | |
Ted Kremenek | b535181 | 2009-02-17 04:27:41 +0000 | [diff] [blame] | 64 | //===----------------------------------------------------------------------===// |
David Blaikie | 0cc4943 | 2011-09-27 01:43:33 +0000 | [diff] [blame] | 65 | // Special PathDiagnosticConsumers. |
Ted Kremenek | 04ade6f | 2009-07-27 22:13:39 +0000 | [diff] [blame] | 66 | //===----------------------------------------------------------------------===// |
| 67 | |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 68 | void ento::createPlistHTMLDiagnosticConsumer(AnalyzerOptions &AnalyzerOpts, |
| 69 | PathDiagnosticConsumers &C, |
| 70 | const std::string &prefix, |
| 71 | const Preprocessor &PP) { |
Ted Kremenek | 3a081a0 | 2012-12-19 01:35:35 +0000 | [diff] [blame] | 72 | createHTMLDiagnosticConsumer(AnalyzerOpts, C, |
| 73 | llvm::sys::path::parent_path(prefix), PP); |
Artem Dergachev | 2194834 | 2018-05-16 00:11:24 +0000 | [diff] [blame] | 74 | createPlistMultiFileDiagnosticConsumer(AnalyzerOpts, C, prefix, PP); |
Ted Kremenek | 04ade6f | 2009-07-27 22:13:39 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 77 | void ento::createTextPathDiagnosticConsumer(AnalyzerOptions &AnalyzerOpts, |
| 78 | PathDiagnosticConsumers &C, |
| 79 | const std::string &Prefix, |
| 80 | const clang::Preprocessor &PP) { |
| 81 | llvm_unreachable("'text' consumer should be enabled on ClangDiags"); |
| 82 | } |
| 83 | |
Ted Kremenek | 9bf9af9 | 2012-08-16 17:45:23 +0000 | [diff] [blame] | 84 | namespace { |
| 85 | class ClangDiagPathDiagConsumer : public PathDiagnosticConsumer { |
| 86 | DiagnosticsEngine &Diag; |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 87 | bool IncludePath; |
Ted Kremenek | 9bf9af9 | 2012-08-16 17:45:23 +0000 | [diff] [blame] | 88 | public: |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 89 | ClangDiagPathDiagConsumer(DiagnosticsEngine &Diag) |
| 90 | : Diag(Diag), IncludePath(false) {} |
Angel Garcia Gomez | 637d1e6 | 2015-10-20 13:23:58 +0000 | [diff] [blame] | 91 | ~ClangDiagPathDiagConsumer() override {} |
Craig Topper | fb6b25b | 2014-03-15 04:29:04 +0000 | [diff] [blame] | 92 | StringRef getName() const override { return "ClangDiags"; } |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 93 | |
Craig Topper | fb6b25b | 2014-03-15 04:29:04 +0000 | [diff] [blame] | 94 | bool supportsLogicalOpControlFlow() const override { return true; } |
| 95 | bool supportsCrossFileDiagnostics() const override { return true; } |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 96 | |
Craig Topper | fb6b25b | 2014-03-15 04:29:04 +0000 | [diff] [blame] | 97 | PathGenerationScheme getGenerationScheme() const override { |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 98 | return IncludePath ? Minimal : None; |
| 99 | } |
| 100 | |
| 101 | void enablePaths() { |
| 102 | IncludePath = true; |
| 103 | } |
| 104 | |
Ted Kremenek | 9bf9af9 | 2012-08-16 17:45:23 +0000 | [diff] [blame] | 105 | void FlushDiagnosticsImpl(std::vector<const PathDiagnostic *> &Diags, |
Craig Topper | fb6b25b | 2014-03-15 04:29:04 +0000 | [diff] [blame] | 106 | FilesMade *filesMade) override { |
Alp Toker | 5c494cb | 2013-12-23 17:59:59 +0000 | [diff] [blame] | 107 | unsigned WarnID = Diag.getCustomDiagID(DiagnosticsEngine::Warning, "%0"); |
| 108 | unsigned NoteID = Diag.getCustomDiagID(DiagnosticsEngine::Note, "%0"); |
| 109 | |
Ted Kremenek | 9bf9af9 | 2012-08-16 17:45:23 +0000 | [diff] [blame] | 110 | for (std::vector<const PathDiagnostic*>::iterator I = Diags.begin(), |
| 111 | E = Diags.end(); I != E; ++I) { |
| 112 | const PathDiagnostic *PD = *I; |
Alp Toker | 5c494cb | 2013-12-23 17:59:59 +0000 | [diff] [blame] | 113 | SourceLocation WarnLoc = PD->getLocation().asLocation(); |
Alexander Kornienko | a74979d | 2014-03-06 13:23:30 +0000 | [diff] [blame] | 114 | Diag.Report(WarnLoc, WarnID) << PD->getShortDescription() |
| 115 | << PD->path.back()->getRanges(); |
Ted Kremenek | 9bf9af9 | 2012-08-16 17:45:23 +0000 | [diff] [blame] | 116 | |
Artem Dergachev | b1991c5 | 2016-10-07 19:25:10 +0000 | [diff] [blame] | 117 | // First, add extra notes, even if paths should not be included. |
| 118 | for (const auto &Piece : PD->path) { |
| 119 | if (!isa<PathDiagnosticNotePiece>(Piece.get())) |
| 120 | continue; |
| 121 | |
| 122 | SourceLocation NoteLoc = Piece->getLocation().asLocation(); |
| 123 | Diag.Report(NoteLoc, NoteID) << Piece->getString() |
| 124 | << Piece->getRanges(); |
| 125 | } |
| 126 | |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 127 | if (!IncludePath) |
| 128 | continue; |
Ted Kremenek | 9bf9af9 | 2012-08-16 17:45:23 +0000 | [diff] [blame] | 129 | |
Artem Dergachev | b1991c5 | 2016-10-07 19:25:10 +0000 | [diff] [blame] | 130 | // Then, add the path notes if necessary. |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 131 | PathPieces FlatPath = PD->path.flatten(/*ShouldFlattenMacros=*/true); |
Artem Dergachev | b1991c5 | 2016-10-07 19:25:10 +0000 | [diff] [blame] | 132 | for (const auto &Piece : FlatPath) { |
| 133 | if (isa<PathDiagnosticNotePiece>(Piece.get())) |
| 134 | continue; |
| 135 | |
| 136 | SourceLocation NoteLoc = Piece->getLocation().asLocation(); |
| 137 | Diag.Report(NoteLoc, NoteID) << Piece->getString() |
| 138 | << Piece->getRanges(); |
Ted Kremenek | 9bf9af9 | 2012-08-16 17:45:23 +0000 | [diff] [blame] | 139 | } |
| 140 | } |
| 141 | } |
| 142 | }; |
| 143 | } // end anonymous namespace |
| 144 | |
Ted Kremenek | 04ade6f | 2009-07-27 22:13:39 +0000 | [diff] [blame] | 145 | //===----------------------------------------------------------------------===// |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 146 | // AnalysisConsumer declaration. |
| 147 | //===----------------------------------------------------------------------===// |
| 148 | |
| 149 | namespace { |
| 150 | |
Alexander Kornienko | 7a712ce | 2014-02-03 18:37:50 +0000 | [diff] [blame] | 151 | class AnalysisConsumer : public AnalysisASTConsumer, |
Richard Smith | 5066845 | 2015-11-24 03:55:01 +0000 | [diff] [blame] | 152 | public RecursiveASTVisitor<AnalysisConsumer> { |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 153 | enum { |
| 154 | AM_None = 0, |
| 155 | AM_Syntax = 0x1, |
| 156 | AM_Path = 0x2 |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 157 | }; |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 158 | typedef unsigned AnalysisMode; |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 159 | |
| 160 | /// Mode of the analyzes while recursively visiting Decls. |
| 161 | AnalysisMode RecVisitorMode; |
| 162 | /// Bug Reporter to use while recursively visiting Decls. |
| 163 | BugReporter *RecVisitorBR; |
| 164 | |
Alexander Kornienko | d00ed8e | 2018-06-27 14:56:12 +0000 | [diff] [blame] | 165 | std::vector<std::function<void(CheckerRegistry &)>> CheckerRegistrationFns; |
| 166 | |
Zhongxing Xu | 685a1d8 | 2010-04-30 04:14:20 +0000 | [diff] [blame] | 167 | public: |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 168 | ASTContext *Ctx; |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 169 | const Preprocessor &PP; |
| 170 | const std::string OutDir; |
Ted Kremenek | 40ea0ea | 2012-08-31 04:36:05 +0000 | [diff] [blame] | 171 | AnalyzerOptionsRef Opts; |
Jordy Rose | 59cce71 | 2011-08-16 21:24:21 +0000 | [diff] [blame] | 172 | ArrayRef<std::string> Plugins; |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 173 | CodeInjector *Injector; |
Ilya Biryukov | 8b9b3bd | 2018-03-01 14:54:16 +0000 | [diff] [blame] | 174 | cross_tu::CrossTranslationUnitContext CTU; |
Zhongxing Xu | b9a45a4 | 2009-08-03 03:27:37 +0000 | [diff] [blame] | 175 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 176 | /// Stores the declarations from the local translation unit. |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 177 | /// Note, we pre-compute the local declarations at parse time as an |
| 178 | /// optimization to make sure we do not deserialize everything from disk. |
| 179 | /// The local declaration to all declarations ratio might be very small when |
| 180 | /// working with a PCH file. |
| 181 | SetOfDecls LocalTUDecls; |
Ted Kremenek | 3a0678e | 2015-09-08 03:50:52 +0000 | [diff] [blame] | 182 | |
Ted Kremenek | 9bf9af9 | 2012-08-16 17:45:23 +0000 | [diff] [blame] | 183 | // Set of PathDiagnosticConsumers. Owned by AnalysisManager. |
| 184 | PathDiagnosticConsumers PathConsumers; |
Zhongxing Xu | b9a45a4 | 2009-08-03 03:27:37 +0000 | [diff] [blame] | 185 | |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 186 | StoreManagerCreator CreateStoreMgr; |
| 187 | ConstraintManagerCreator CreateConstraintMgr; |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 188 | |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 189 | std::unique_ptr<CheckerManager> checkerMgr; |
| 190 | std::unique_ptr<AnalysisManager> Mgr; |
Zhongxing Xu | bcbe44f | 2009-08-03 03:13:46 +0000 | [diff] [blame] | 191 | |
Anna Zaks | 9bd4be9 | 2012-03-05 20:53:59 +0000 | [diff] [blame] | 192 | /// Time the analyzes time of each translation unit. |
George Karpenkov | 5a755b3 | 2018-02-10 01:49:20 +0000 | [diff] [blame] | 193 | std::unique_ptr<llvm::TimerGroup> AnalyzerTimers; |
| 194 | std::unique_ptr<llvm::Timer> TUTotalTimer; |
Anna Zaks | 9bd4be9 | 2012-03-05 20:53:59 +0000 | [diff] [blame] | 195 | |
Anna Zaks | 54fd4a0 | 2012-03-30 05:48:10 +0000 | [diff] [blame] | 196 | /// The information about analyzed functions shared throughout the |
| 197 | /// translation unit. |
| 198 | FunctionSummariesTy FunctionSummaries; |
| 199 | |
Ilya Biryukov | 8b9b3bd | 2018-03-01 14:54:16 +0000 | [diff] [blame] | 200 | AnalysisConsumer(CompilerInstance &CI, const std::string &outdir, |
Benjamin Kramer | cfeacf5 | 2016-05-27 14:27:13 +0000 | [diff] [blame] | 201 | AnalyzerOptionsRef opts, ArrayRef<std::string> plugins, |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 202 | CodeInjector *injector) |
Ilya Biryukov | 8b9b3bd | 2018-03-01 14:54:16 +0000 | [diff] [blame] | 203 | : RecVisitorMode(0), RecVisitorBR(nullptr), Ctx(nullptr), |
| 204 | PP(CI.getPreprocessor()), OutDir(outdir), Opts(std::move(opts)), |
| 205 | Plugins(plugins), Injector(injector), CTU(CI) { |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 206 | DigestAnalyzerOptions(); |
George Karpenkov | 5a755b3 | 2018-02-10 01:49:20 +0000 | [diff] [blame] | 207 | if (Opts->PrintStats || Opts->shouldSerializeStats()) { |
| 208 | AnalyzerTimers = llvm::make_unique<llvm::TimerGroup>( |
| 209 | "analyzer", "Analyzer timers"); |
| 210 | TUTotalTimer = llvm::make_unique<llvm::Timer>( |
| 211 | "time", "Analyzer total time", *AnalyzerTimers); |
| 212 | llvm::EnableStatistics(/* PrintOnExit= */ false); |
Anna Zaks | 9bd4be9 | 2012-03-05 20:53:59 +0000 | [diff] [blame] | 213 | } |
| 214 | } |
| 215 | |
Alexander Kornienko | 34eb207 | 2015-04-11 02:00:23 +0000 | [diff] [blame] | 216 | ~AnalysisConsumer() override { |
Matthias Braun | abb6eea | 2016-09-26 18:53:34 +0000 | [diff] [blame] | 217 | if (Opts->PrintStats) { |
Matthias Braun | abb6eea | 2016-09-26 18:53:34 +0000 | [diff] [blame] | 218 | llvm::PrintStatistics(); |
| 219 | } |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 220 | } |
Zhongxing Xu | 4b03d49 | 2009-07-30 09:11:52 +0000 | [diff] [blame] | 221 | |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 222 | void DigestAnalyzerOptions() { |
Alexander Kornienko | 7a712ce | 2014-02-03 18:37:50 +0000 | [diff] [blame] | 223 | if (Opts->AnalysisDiagOpt != PD_NONE) { |
| 224 | // Create the PathDiagnosticConsumer. |
| 225 | ClangDiagPathDiagConsumer *clangDiags = |
| 226 | new ClangDiagPathDiagConsumer(PP.getDiagnostics()); |
| 227 | PathConsumers.push_back(clangDiags); |
Ted Kremenek | 9bf9af9 | 2012-08-16 17:45:23 +0000 | [diff] [blame] | 228 | |
Alexander Kornienko | 7a712ce | 2014-02-03 18:37:50 +0000 | [diff] [blame] | 229 | if (Opts->AnalysisDiagOpt == PD_TEXT) { |
| 230 | clangDiags->enablePaths(); |
Jordan Rose | 367843a | 2013-08-16 01:06:30 +0000 | [diff] [blame] | 231 | |
Alexander Kornienko | 7a712ce | 2014-02-03 18:37:50 +0000 | [diff] [blame] | 232 | } else if (!OutDir.empty()) { |
| 233 | switch (Opts->AnalysisDiagOpt) { |
| 234 | default: |
| 235 | #define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATEFN) \ |
| 236 | case PD_##NAME: \ |
Alp Toker | f994cef | 2014-07-05 03:08:06 +0000 | [diff] [blame] | 237 | CREATEFN(*Opts.get(), PathConsumers, OutDir, PP); \ |
Alexander Kornienko | 7a712ce | 2014-02-03 18:37:50 +0000 | [diff] [blame] | 238 | break; |
Ted Kremenek | a5770cd | 2012-08-31 04:35:58 +0000 | [diff] [blame] | 239 | #include "clang/StaticAnalyzer/Core/Analyses.def" |
Alexander Kornienko | 7a712ce | 2014-02-03 18:37:50 +0000 | [diff] [blame] | 240 | } |
Zhongxing Xu | 4b03d49 | 2009-07-30 09:11:52 +0000 | [diff] [blame] | 241 | } |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 242 | } |
Zhongxing Xu | 4b03d49 | 2009-07-30 09:11:52 +0000 | [diff] [blame] | 243 | |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 244 | // Create the analyzer component creators. |
Ted Kremenek | 40ea0ea | 2012-08-31 04:36:05 +0000 | [diff] [blame] | 245 | switch (Opts->AnalysisStoreOpt) { |
Argyrios Kyrtzidis | 4ec3cf9 | 2011-02-14 18:13:17 +0000 | [diff] [blame] | 246 | default: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 247 | llvm_unreachable("Unknown store manager."); |
Zhongxing Xu | 4b03d49 | 2009-07-30 09:11:52 +0000 | [diff] [blame] | 248 | #define ANALYSIS_STORE(NAME, CMDFLAG, DESC, CREATEFN) \ |
Argyrios Kyrtzidis | 4ec3cf9 | 2011-02-14 18:13:17 +0000 | [diff] [blame] | 249 | case NAME##Model: CreateStoreMgr = CREATEFN; break; |
Ted Kremenek | a5770cd | 2012-08-31 04:35:58 +0000 | [diff] [blame] | 250 | #include "clang/StaticAnalyzer/Core/Analyses.def" |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 251 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 252 | |
Ted Kremenek | 40ea0ea | 2012-08-31 04:36:05 +0000 | [diff] [blame] | 253 | switch (Opts->AnalysisConstraintsOpt) { |
Argyrios Kyrtzidis | 4ec3cf9 | 2011-02-14 18:13:17 +0000 | [diff] [blame] | 254 | default: |
Anna Zaks | 297176c | 2013-02-07 23:29:20 +0000 | [diff] [blame] | 255 | llvm_unreachable("Unknown constraint manager."); |
Zhongxing Xu | 4b03d49 | 2009-07-30 09:11:52 +0000 | [diff] [blame] | 256 | #define ANALYSIS_CONSTRAINTS(NAME, CMDFLAG, DESC, CREATEFN) \ |
Argyrios Kyrtzidis | 4ec3cf9 | 2011-02-14 18:13:17 +0000 | [diff] [blame] | 257 | case NAME##Model: CreateConstraintMgr = CREATEFN; break; |
Ted Kremenek | a5770cd | 2012-08-31 04:35:58 +0000 | [diff] [blame] | 258 | #include "clang/StaticAnalyzer/Core/Analyses.def" |
Zhongxing Xu | 4b03d49 | 2009-07-30 09:11:52 +0000 | [diff] [blame] | 259 | } |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 260 | } |
Ted Kremenek | 39df94b | 2010-02-14 19:08:51 +0000 | [diff] [blame] | 261 | |
Anna Zaks | e9eb13a | 2013-02-02 00:30:02 +0000 | [diff] [blame] | 262 | void DisplayFunction(const Decl *D, AnalysisMode Mode, |
| 263 | ExprEngine::InliningModes IMode) { |
Ted Kremenek | 40ea0ea | 2012-08-31 04:36:05 +0000 | [diff] [blame] | 264 | if (!Opts->AnalyzerDisplayProgress) |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 265 | return; |
Ted Kremenek | 39df94b | 2010-02-14 19:08:51 +0000 | [diff] [blame] | 266 | |
Ted Kremenek | 6818991 | 2009-12-07 22:06:12 +0000 | [diff] [blame] | 267 | SourceManager &SM = Mgr->getASTContext().getSourceManager(); |
| 268 | PresumedLoc Loc = SM.getPresumedLoc(D->getLocation()); |
Douglas Gregor | 453b012 | 2010-11-12 07:15:47 +0000 | [diff] [blame] | 269 | if (Loc.isValid()) { |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 270 | llvm::errs() << "ANALYZE"; |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 271 | |
| 272 | if (Mode == AM_Syntax) |
| 273 | llvm::errs() << " (Syntax)"; |
Anna Zaks | e9eb13a | 2013-02-02 00:30:02 +0000 | [diff] [blame] | 274 | else if (Mode == AM_Path) { |
| 275 | llvm::errs() << " (Path, "; |
| 276 | switch (IMode) { |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 277 | case ExprEngine::Inline_Minimal: |
| 278 | llvm::errs() << " Inline_Minimal"; |
Anna Zaks | e9eb13a | 2013-02-02 00:30:02 +0000 | [diff] [blame] | 279 | break; |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 280 | case ExprEngine::Inline_Regular: |
| 281 | llvm::errs() << " Inline_Regular"; |
Anna Zaks | e9eb13a | 2013-02-02 00:30:02 +0000 | [diff] [blame] | 282 | break; |
| 283 | } |
| 284 | llvm::errs() << ")"; |
| 285 | } |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 286 | else |
| 287 | assert(Mode == (AM_Syntax | AM_Path) && "Unexpected mode!"); |
| 288 | |
Artem Dergachev | 6a76a16 | 2016-08-08 16:01:02 +0000 | [diff] [blame] | 289 | llvm::errs() << ": " << Loc.getFilename() << ' ' |
| 290 | << getFunctionName(D) << '\n'; |
Ted Kremenek | 7043fba | 2010-10-22 22:08:29 +0000 | [diff] [blame] | 291 | } |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 292 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 293 | |
Craig Topper | fb6b25b | 2014-03-15 04:29:04 +0000 | [diff] [blame] | 294 | void Initialize(ASTContext &Context) override { |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 295 | Ctx = &Context; |
George Karpenkov | 4ece68a | 2018-08-06 23:09:07 +0000 | [diff] [blame] | 296 | checkerMgr = createCheckerManager( |
| 297 | *Ctx, *Opts, Plugins, CheckerRegistrationFns, PP.getDiagnostics()); |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 298 | |
David Blaikie | 53dd8fe | 2014-08-29 20:11:03 +0000 | [diff] [blame] | 299 | Mgr = llvm::make_unique<AnalysisManager>( |
George Karpenkov | 4ece68a | 2018-08-06 23:09:07 +0000 | [diff] [blame] | 300 | *Ctx, PP.getDiagnostics(), PathConsumers, CreateStoreMgr, |
| 301 | CreateConstraintMgr, checkerMgr.get(), *Opts, Injector); |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 302 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 303 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 304 | /// Store the top level decls in the set to be processed later on. |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 305 | /// (Doing this pre-processing avoids deserialization of data from PCH.) |
Craig Topper | fb6b25b | 2014-03-15 04:29:04 +0000 | [diff] [blame] | 306 | bool HandleTopLevelDecl(DeclGroupRef D) override; |
| 307 | void HandleTopLevelDeclInObjCContainer(DeclGroupRef D) override; |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 308 | |
Craig Topper | fb6b25b | 2014-03-15 04:29:04 +0000 | [diff] [blame] | 309 | void HandleTranslationUnit(ASTContext &C) override; |
Ted Kremenek | a1ec4f3 | 2011-01-20 17:09:48 +0000 | [diff] [blame] | 310 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 311 | /// Determine which inlining mode should be used when this function is |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 312 | /// analyzed. This allows to redefine the default inlining policies when |
| 313 | /// analyzing a given function. |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 314 | ExprEngine::InliningModes |
Anna Zaks | d5478fd | 2014-08-29 20:01:38 +0000 | [diff] [blame] | 315 | getInliningModeForFunction(const Decl *D, const SetOfConstDecls &Visited); |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 316 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 317 | /// Build the call graph for all the top level decls of this TU and |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 318 | /// use it to define the order in which the functions should be visited. |
Jordan Rose | 85c8c81 | 2012-10-10 17:55:37 +0000 | [diff] [blame] | 319 | void HandleDeclsCallGraph(const unsigned LocalTUDeclsSize); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 320 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 321 | /// Run analyzes(syntax or path sensitive) on the given function. |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 322 | /// \param Mode - determines if we are requesting syntax only or path |
| 323 | /// sensitive only analysis. |
| 324 | /// \param VisitedCallees - The output parameter, which is populated with the |
| 325 | /// set of functions which should be considered analyzed after analyzing the |
| 326 | /// given root function. |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 327 | void HandleCode(Decl *D, AnalysisMode Mode, |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 328 | ExprEngine::InliningModes IMode = ExprEngine::Inline_Minimal, |
Craig Topper | 0dbb783 | 2014-05-27 02:45:47 +0000 | [diff] [blame] | 329 | SetOfConstDecls *VisitedCallees = nullptr); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 330 | |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 331 | void RunPathSensitiveChecks(Decl *D, |
| 332 | ExprEngine::InliningModes IMode, |
| 333 | SetOfConstDecls *VisitedCallees); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 334 | |
| 335 | /// Visitors for the RecursiveASTVisitor. |
Anna Zaks | e7e7c9e | 2012-05-11 23:15:18 +0000 | [diff] [blame] | 336 | bool shouldWalkTypesOfTypeLocs() const { return false; } |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 337 | |
| 338 | /// Handle callbacks for arbitrary Decls. |
| 339 | bool VisitDecl(Decl *D) { |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 340 | AnalysisMode Mode = getModeForDecl(D, RecVisitorMode); |
| 341 | if (Mode & AM_Syntax) |
| 342 | checkerMgr->runCheckersOnASTDecl(D, *Mgr, *RecVisitorBR); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 343 | return true; |
| 344 | } |
| 345 | |
| 346 | bool VisitFunctionDecl(FunctionDecl *FD) { |
| 347 | IdentifierInfo *II = FD->getIdentifier(); |
| 348 | if (II && II->getName().startswith("__inline")) |
| 349 | return true; |
| 350 | |
| 351 | // We skip function template definitions, as their semantics is |
| 352 | // only determined when they are instantiated. |
| 353 | if (FD->isThisDeclarationADefinition() && |
| 354 | !FD->isDependentContext()) { |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 355 | assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 356 | HandleCode(FD, RecVisitorMode); |
| 357 | } |
| 358 | return true; |
| 359 | } |
| 360 | |
| 361 | bool VisitObjCMethodDecl(ObjCMethodDecl *MD) { |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 362 | if (MD->isThisDeclarationADefinition()) { |
| 363 | assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 364 | HandleCode(MD, RecVisitorMode); |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 365 | } |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 366 | return true; |
| 367 | } |
Ted Kremenek | 3a0678e | 2015-09-08 03:50:52 +0000 | [diff] [blame] | 368 | |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 369 | bool VisitBlockDecl(BlockDecl *BD) { |
| 370 | if (BD->hasBody()) { |
| 371 | assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false); |
Devin Coughlin | 6e644ab | 2015-11-18 22:46:52 +0000 | [diff] [blame] | 372 | // Since we skip function template definitions, we should skip blocks |
| 373 | // declared in those functions as well. |
| 374 | if (!BD->isDependentContext()) { |
| 375 | HandleCode(BD, RecVisitorMode); |
| 376 | } |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 377 | } |
| 378 | return true; |
| 379 | } |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 380 | |
Alexander Kornienko | 34eb207 | 2015-04-11 02:00:23 +0000 | [diff] [blame] | 381 | void AddDiagnosticConsumer(PathDiagnosticConsumer *Consumer) override { |
Alexander Kornienko | 7a712ce | 2014-02-03 18:37:50 +0000 | [diff] [blame] | 382 | PathConsumers.push_back(Consumer); |
| 383 | } |
| 384 | |
Alexander Kornienko | d00ed8e | 2018-06-27 14:56:12 +0000 | [diff] [blame] | 385 | void AddCheckerRegistrationFn(std::function<void(CheckerRegistry&)> Fn) override { |
| 386 | CheckerRegistrationFns.push_back(std::move(Fn)); |
| 387 | } |
| 388 | |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 389 | private: |
| 390 | void storeTopLevelDecls(DeclGroupRef DG); |
Artem Dergachev | 6a76a16 | 2016-08-08 16:01:02 +0000 | [diff] [blame] | 391 | std::string getFunctionName(const Decl *D); |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 392 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 393 | /// Check if we should skip (not analyze) the given function. |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 394 | AnalysisMode getModeForDecl(Decl *D, AnalysisMode Mode); |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 395 | void runAnalysisOnTranslationUnit(ASTContext &C); |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 396 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 397 | /// Print \p S to stderr if \c Opts->AnalyzerDisplayProgress is set. |
| 398 | void reportAnalyzerProgress(StringRef S); |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 399 | }; |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 400 | } // end anonymous namespace |
| 401 | |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 402 | |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 403 | //===----------------------------------------------------------------------===// |
| 404 | // AnalysisConsumer implementation. |
| 405 | //===----------------------------------------------------------------------===// |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 406 | bool AnalysisConsumer::HandleTopLevelDecl(DeclGroupRef DG) { |
| 407 | storeTopLevelDecls(DG); |
| 408 | return true; |
| 409 | } |
| 410 | |
| 411 | void AnalysisConsumer::HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) { |
| 412 | storeTopLevelDecls(DG); |
| 413 | } |
| 414 | |
| 415 | void AnalysisConsumer::storeTopLevelDecls(DeclGroupRef DG) { |
| 416 | for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) { |
| 417 | |
| 418 | // Skip ObjCMethodDecl, wait for the objc container to avoid |
| 419 | // analyzing twice. |
| 420 | if (isa<ObjCMethodDecl>(*I)) |
| 421 | continue; |
| 422 | |
Ted Kremenek | 2964aac | 2012-04-27 04:54:28 +0000 | [diff] [blame] | 423 | LocalTUDecls.push_back(*I); |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 424 | } |
| 425 | } |
| 426 | |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 427 | static bool shouldSkipFunction(const Decl *D, |
Alexander Kornienko | fe65998 | 2014-04-23 16:39:41 +0000 | [diff] [blame] | 428 | const SetOfConstDecls &Visited, |
| 429 | const SetOfConstDecls &VisitedAsTopLevel) { |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 430 | if (VisitedAsTopLevel.count(D)) |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 431 | return true; |
| 432 | |
| 433 | // We want to re-analyse the functions as top level in the following cases: |
Anna Zaks | a8017ec | 2012-08-30 23:42:02 +0000 | [diff] [blame] | 434 | // - The 'init' methods should be reanalyzed because |
| 435 | // ObjCNonNilReturnValueChecker assumes that '[super init]' never returns |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 436 | // 'nil' and unless we analyze the 'init' functions as top level, we will |
| 437 | // not catch errors within defensive code. |
Anna Zaks | a8017ec | 2012-08-30 23:42:02 +0000 | [diff] [blame] | 438 | // - We want to reanalyze all ObjC methods as top level to report Retain |
| 439 | // Count naming convention errors more aggressively. |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 440 | if (isa<ObjCMethodDecl>(D)) |
Anna Zaks | a8017ec | 2012-08-30 23:42:02 +0000 | [diff] [blame] | 441 | return false; |
Devin Coughlin | f57f90d | 2016-07-21 23:42:31 +0000 | [diff] [blame] | 442 | // We also want to reanalyze all C++ copy and move assignment operators to |
| 443 | // separately check the two cases where 'this' aliases with the parameter and |
| 444 | // where it may not. (cplusplus.SelfAssignmentChecker) |
| 445 | if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) { |
| 446 | if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) |
| 447 | return false; |
| 448 | } |
Anna Zaks | a8017ec | 2012-08-30 23:42:02 +0000 | [diff] [blame] | 449 | |
| 450 | // Otherwise, if we visited the function before, do not reanalyze it. |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 451 | return Visited.count(D); |
Anna Zaks | a8017ec | 2012-08-30 23:42:02 +0000 | [diff] [blame] | 452 | } |
| 453 | |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 454 | ExprEngine::InliningModes |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 455 | AnalysisConsumer::getInliningModeForFunction(const Decl *D, |
Alexander Kornienko | fe65998 | 2014-04-23 16:39:41 +0000 | [diff] [blame] | 456 | const SetOfConstDecls &Visited) { |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 457 | // We want to reanalyze all ObjC methods as top level to report Retain |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 458 | // Count naming convention errors more aggressively. But we should tune down |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 459 | // inlining when reanalyzing an already inlined function. |
Devin Coughlin | f57f90d | 2016-07-21 23:42:31 +0000 | [diff] [blame] | 460 | if (Visited.count(D) && isa<ObjCMethodDecl>(D)) { |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 461 | const ObjCMethodDecl *ObjCM = cast<ObjCMethodDecl>(D); |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 462 | if (ObjCM->getMethodFamily() != OMF_init) |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 463 | return ExprEngine::Inline_Minimal; |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 464 | } |
| 465 | |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 466 | return ExprEngine::Inline_Regular; |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 467 | } |
| 468 | |
Jordan Rose | 85c8c81 | 2012-10-10 17:55:37 +0000 | [diff] [blame] | 469 | void AnalysisConsumer::HandleDeclsCallGraph(const unsigned LocalTUDeclsSize) { |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 470 | // Build the Call Graph by adding all the top level declarations to the graph. |
Anna Zaks | 2774f99 | 2012-05-31 18:07:55 +0000 | [diff] [blame] | 471 | // Note: CallGraph can trigger deserialization of more items from a pch |
| 472 | // (though HandleInterestingDecl); triggering additions to LocalTUDecls. |
| 473 | // We rely on random access to add the initially processed Decls to CG. |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 474 | CallGraph CG; |
Anna Zaks | 2774f99 | 2012-05-31 18:07:55 +0000 | [diff] [blame] | 475 | for (unsigned i = 0 ; i < LocalTUDeclsSize ; ++i) { |
Anna Zaks | 34d89b7 | 2012-05-30 23:14:48 +0000 | [diff] [blame] | 476 | CG.addToCallGraph(LocalTUDecls[i]); |
| 477 | } |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 478 | |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 479 | // Walk over all of the call graph nodes in topological order, so that we |
| 480 | // analyze parents before the children. Skip the functions inlined into |
| 481 | // the previously processed functions. Use external Visited set to identify |
| 482 | // inlined functions. The topological order allows the "do not reanalyze |
| 483 | // previously inlined function" performance heuristic to be triggered more |
| 484 | // often. |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 485 | SetOfConstDecls Visited; |
| 486 | SetOfConstDecls VisitedAsTopLevel; |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 487 | llvm::ReversePostOrderTraversal<clang::CallGraph*> RPOT(&CG); |
| 488 | for (llvm::ReversePostOrderTraversal<clang::CallGraph*>::rpo_iterator |
| 489 | I = RPOT.begin(), E = RPOT.end(); I != E; ++I) { |
| 490 | NumFunctionTopLevel++; |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 491 | |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 492 | CallGraphNode *N = *I; |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 493 | Decl *D = N->getDecl(); |
Ted Kremenek | 3a0678e | 2015-09-08 03:50:52 +0000 | [diff] [blame] | 494 | |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 495 | // Skip the abstract root node. |
| 496 | if (!D) |
| 497 | continue; |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 498 | |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 499 | // Skip the functions which have been processed already or previously |
| 500 | // inlined. |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 501 | if (shouldSkipFunction(D, Visited, VisitedAsTopLevel)) |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 502 | continue; |
| 503 | |
| 504 | // Analyze the function. |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 505 | SetOfConstDecls VisitedCallees; |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 506 | |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 507 | HandleCode(D, AM_Path, getInliningModeForFunction(D, Visited), |
Craig Topper | 0dbb783 | 2014-05-27 02:45:47 +0000 | [diff] [blame] | 508 | (Mgr->options.InliningMode == All ? nullptr : &VisitedCallees)); |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 509 | |
| 510 | // Add the visited callees to the global visited set. |
Yury Gribov | 054873b | 2016-01-11 09:38:48 +0000 | [diff] [blame] | 511 | for (const Decl *Callee : VisitedCallees) |
| 512 | // Decls from CallGraph are already canonical. But Decls coming from |
| 513 | // CallExprs may be not. We should canonicalize them manually. |
| 514 | Visited.insert(isa<ObjCMethodDecl>(Callee) ? Callee |
| 515 | : Callee->getCanonicalDecl()); |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 516 | VisitedAsTopLevel.insert(D); |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 517 | } |
Ted Kremenek | 60120fb | 2011-08-27 21:28:09 +0000 | [diff] [blame] | 518 | } |
| 519 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 520 | static bool isBisonFile(ASTContext &C) { |
| 521 | const SourceManager &SM = C.getSourceManager(); |
| 522 | FileID FID = SM.getMainFileID(); |
| 523 | StringRef Buffer = SM.getBuffer(FID)->getBuffer(); |
| 524 | if (Buffer.startswith("/* A Bison parser, made by")) |
| 525 | return true; |
| 526 | return false; |
| 527 | } |
| 528 | |
| 529 | void AnalysisConsumer::runAnalysisOnTranslationUnit(ASTContext &C) { |
| 530 | BugReporter BR(*Mgr); |
| 531 | TranslationUnitDecl *TU = C.getTranslationUnitDecl(); |
| 532 | checkerMgr->runCheckersOnASTDecl(TU, *Mgr, BR); |
| 533 | |
| 534 | // Run the AST-only checks using the order in which functions are defined. |
| 535 | // If inlining is not turned on, use the simplest function order for path |
| 536 | // sensitive analyzes as well. |
| 537 | RecVisitorMode = AM_Syntax; |
| 538 | if (!Mgr->shouldInlineCall()) |
| 539 | RecVisitorMode |= AM_Path; |
| 540 | RecVisitorBR = &BR; |
| 541 | |
| 542 | // Process all the top level declarations. |
| 543 | // |
| 544 | // Note: TraverseDecl may modify LocalTUDecls, but only by appending more |
| 545 | // entries. Thus we don't use an iterator, but rely on LocalTUDecls |
| 546 | // random access. By doing so, we automatically compensate for iterators |
| 547 | // possibly being invalidated, although this is a bit slower. |
| 548 | const unsigned LocalTUDeclsSize = LocalTUDecls.size(); |
| 549 | for (unsigned i = 0 ; i < LocalTUDeclsSize ; ++i) { |
| 550 | TraverseDecl(LocalTUDecls[i]); |
| 551 | } |
| 552 | |
| 553 | if (Mgr->shouldInlineCall()) |
| 554 | HandleDeclsCallGraph(LocalTUDeclsSize); |
| 555 | |
| 556 | // After all decls handled, run checkers on the entire TranslationUnit. |
| 557 | checkerMgr->runCheckersOnEndOfTranslationUnit(TU, *Mgr, BR); |
| 558 | |
| 559 | RecVisitorBR = nullptr; |
| 560 | } |
| 561 | |
| 562 | void AnalysisConsumer::reportAnalyzerProgress(StringRef S) { |
| 563 | if (Opts->AnalyzerDisplayProgress) |
| 564 | llvm::errs() << S; |
| 565 | } |
| 566 | |
Ted Kremenek | a1ec4f3 | 2011-01-20 17:09:48 +0000 | [diff] [blame] | 567 | void AnalysisConsumer::HandleTranslationUnit(ASTContext &C) { |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 568 | |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 569 | // Don't run the actions if an error has occurred with parsing the file. |
| 570 | DiagnosticsEngine &Diags = PP.getDiagnostics(); |
| 571 | if (Diags.hasErrorOccurred() || Diags.hasFatalErrorOccurred()) |
| 572 | return; |
| 573 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 574 | if (TUTotalTimer) TUTotalTimer->startTimer(); |
Anna Zaks | d5478fd | 2014-08-29 20:01:38 +0000 | [diff] [blame] | 575 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 576 | if (isBisonFile(C)) { |
| 577 | reportAnalyzerProgress("Skipping bison-generated file\n"); |
| 578 | } else if (Opts->DisableAllChecks) { |
Anna Zaks | 9bd4be9 | 2012-03-05 20:53:59 +0000 | [diff] [blame] | 579 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 580 | // Don't analyze if the user explicitly asked for no checks to be performed |
| 581 | // on this file. |
| 582 | reportAnalyzerProgress("All checks are disabled using a supplied option\n"); |
| 583 | } else { |
| 584 | // Otherwise, just run the analysis. |
| 585 | runAnalysisOnTranslationUnit(C); |
Anna Zaks | 17f57b0 | 2012-01-07 16:49:46 +0000 | [diff] [blame] | 586 | } |
Ted Kremenek | e69ab05 | 2011-05-05 03:41:17 +0000 | [diff] [blame] | 587 | |
Anna Zaks | 9bd4be9 | 2012-03-05 20:53:59 +0000 | [diff] [blame] | 588 | if (TUTotalTimer) TUTotalTimer->stopTimer(); |
Anna Zaks | 8382e45 | 2012-04-05 02:10:21 +0000 | [diff] [blame] | 589 | |
| 590 | // Count how many basic blocks we have not covered. |
| 591 | NumBlocksInAnalyzedFunctions = FunctionSummaries.getTotalNumBasicBlocks(); |
George Karpenkov | 2a63985 | 2018-02-09 23:37:47 +0000 | [diff] [blame] | 592 | NumVisitedBlocksInAnalyzedFunctions = |
| 593 | FunctionSummaries.getTotalNumVisitedBasicBlocks(); |
Anna Zaks | 8382e45 | 2012-04-05 02:10:21 +0000 | [diff] [blame] | 594 | if (NumBlocksInAnalyzedFunctions > 0) |
| 595 | PercentReachableBlocks = |
| 596 | (FunctionSummaries.getTotalNumVisitedBasicBlocks() * 100) / |
| 597 | NumBlocksInAnalyzedFunctions; |
| 598 | |
George Karpenkov | 5a755b3 | 2018-02-10 01:49:20 +0000 | [diff] [blame] | 599 | // Explicitly destroy the PathDiagnosticConsumer. This will flush its output. |
| 600 | // FIXME: This should be replaced with something that doesn't rely on |
| 601 | // side-effects in PathDiagnosticConsumer's destructor. This is required when |
| 602 | // used with option -disable-free. |
| 603 | Mgr.reset(); |
Ted Kremenek | 0e7d252 | 2008-07-03 04:29:21 +0000 | [diff] [blame] | 604 | } |
| 605 | |
Artem Dergachev | 6a76a16 | 2016-08-08 16:01:02 +0000 | [diff] [blame] | 606 | std::string AnalysisConsumer::getFunctionName(const Decl *D) { |
| 607 | std::string Str; |
| 608 | llvm::raw_string_ostream OS(Str); |
| 609 | |
| 610 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 611 | OS << FD->getQualifiedNameAsString(); |
| 612 | |
| 613 | // In C++, there are overloads. |
| 614 | if (Ctx->getLangOpts().CPlusPlus) { |
| 615 | OS << '('; |
| 616 | for (const auto &P : FD->parameters()) { |
| 617 | if (P != *FD->param_begin()) |
| 618 | OS << ", "; |
| 619 | OS << P->getType().getAsString(); |
| 620 | } |
| 621 | OS << ')'; |
| 622 | } |
| 623 | |
| 624 | } else if (isa<BlockDecl>(D)) { |
| 625 | PresumedLoc Loc = Ctx->getSourceManager().getPresumedLoc(D->getLocation()); |
| 626 | |
| 627 | if (Loc.isValid()) { |
| 628 | OS << "block (line: " << Loc.getLine() << ", col: " << Loc.getColumn() |
| 629 | << ')'; |
| 630 | } |
| 631 | |
| 632 | } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) { |
| 633 | |
| 634 | // FIXME: copy-pasted from CGDebugInfo.cpp. |
| 635 | OS << (OMD->isInstanceMethod() ? '-' : '+') << '['; |
| 636 | const DeclContext *DC = OMD->getDeclContext(); |
| 637 | if (const auto *OID = dyn_cast<ObjCImplementationDecl>(DC)) { |
| 638 | OS << OID->getName(); |
| 639 | } else if (const auto *OID = dyn_cast<ObjCInterfaceDecl>(DC)) { |
| 640 | OS << OID->getName(); |
| 641 | } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(DC)) { |
| 642 | if (OC->IsClassExtension()) { |
| 643 | OS << OC->getClassInterface()->getName(); |
| 644 | } else { |
| 645 | OS << OC->getIdentifier()->getNameStart() << '(' |
| 646 | << OC->getIdentifier()->getNameStart() << ')'; |
| 647 | } |
| 648 | } else if (const auto *OCD = dyn_cast<ObjCCategoryImplDecl>(DC)) { |
Argyrios Kyrtzidis | a166a2b | 2017-03-07 09:26:07 +0000 | [diff] [blame] | 649 | OS << OCD->getClassInterface()->getName() << '(' |
| 650 | << OCD->getName() << ')'; |
Artem Dergachev | 6a76a16 | 2016-08-08 16:01:02 +0000 | [diff] [blame] | 651 | } else if (isa<ObjCProtocolDecl>(DC)) { |
| 652 | // We can extract the type of the class from the self pointer. |
| 653 | if (ImplicitParamDecl *SelfDecl = OMD->getSelfDecl()) { |
| 654 | QualType ClassTy = |
| 655 | cast<ObjCObjectPointerType>(SelfDecl->getType())->getPointeeType(); |
| 656 | ClassTy.print(OS, PrintingPolicy(LangOptions())); |
| 657 | } |
| 658 | } |
| 659 | OS << ' ' << OMD->getSelector().getAsString() << ']'; |
| 660 | |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 661 | } |
Artem Dergachev | 6a76a16 | 2016-08-08 16:01:02 +0000 | [diff] [blame] | 662 | |
| 663 | return OS.str(); |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 664 | } |
| 665 | |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 666 | AnalysisConsumer::AnalysisMode |
| 667 | AnalysisConsumer::getModeForDecl(Decl *D, AnalysisMode Mode) { |
Ted Kremenek | 40ea0ea | 2012-08-31 04:36:05 +0000 | [diff] [blame] | 668 | if (!Opts->AnalyzeSpecificFunction.empty() && |
| 669 | getFunctionName(D) != Opts->AnalyzeSpecificFunction) |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 670 | return AM_None; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 671 | |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 672 | // Unless -analyze-all is specified, treat decls differently depending on |
| 673 | // where they came from: |
| 674 | // - Main source file: run both path-sensitive and non-path-sensitive checks. |
| 675 | // - Header files: run non-path-sensitive checks only. |
| 676 | // - System headers: don't run any checks. |
Ted Kremenek | 4c721bf | 2010-06-15 00:55:40 +0000 | [diff] [blame] | 677 | SourceManager &SM = Ctx->getSourceManager(); |
Aaron Ballman | 6569387 | 2015-08-20 21:27:35 +0000 | [diff] [blame] | 678 | const Stmt *Body = D->getBody(); |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 679 | SourceLocation SL = Body ? Body->getBeginLoc() : D->getLocation(); |
Anna Zaks | 3849dea | 2015-06-26 17:42:58 +0000 | [diff] [blame] | 680 | SL = SM.getExpansionLoc(SL); |
| 681 | |
Artem Dergachev | 516837f | 2018-04-25 21:51:26 +0000 | [diff] [blame] | 682 | if (!Opts->AnalyzeAll && !Mgr->isInCodeFile(SL)) { |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 683 | if (SL.isInvalid() || SM.isInSystemHeader(SL)) |
| 684 | return AM_None; |
| 685 | return Mode & ~AM_Path; |
| 686 | } |
Anna Zaks | aa19abe | 2012-03-13 19:31:54 +0000 | [diff] [blame] | 687 | |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 688 | return Mode; |
Anna Zaks | aa19abe | 2012-03-13 19:31:54 +0000 | [diff] [blame] | 689 | } |
| 690 | |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 691 | void AnalysisConsumer::HandleCode(Decl *D, AnalysisMode Mode, |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 692 | ExprEngine::InliningModes IMode, |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 693 | SetOfConstDecls *VisitedCallees) { |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 694 | if (!D->hasBody()) |
| 695 | return; |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 696 | Mode = getModeForDecl(D, Mode); |
| 697 | if (Mode == AM_None) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 698 | return; |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 699 | |
Alexander Shaposhnikov | a1fead2 | 2016-09-23 20:49:01 +0000 | [diff] [blame] | 700 | // Clear the AnalysisManager of old AnalysisDeclContexts. |
| 701 | Mgr->ClearContexts(); |
| 702 | // Ignore autosynthesized code. |
| 703 | if (Mgr->getAnalysisDeclContext(D)->isBodyAutosynthesized()) |
| 704 | return; |
| 705 | |
Anna Zaks | e9eb13a | 2013-02-02 00:30:02 +0000 | [diff] [blame] | 706 | DisplayFunction(D, Mode, IMode); |
Anna Zaks | 40b87fc | 2012-07-05 20:44:02 +0000 | [diff] [blame] | 707 | CFG *DeclCFG = Mgr->getCFG(D); |
Craig Topper | 704b4fb | 2017-05-18 01:11:52 +0000 | [diff] [blame] | 708 | if (DeclCFG) |
| 709 | MaxCFGSize.updateMax(DeclCFG->size()); |
Anna Zaks | 40b87fc | 2012-07-05 20:44:02 +0000 | [diff] [blame] | 710 | |
Argyrios Kyrtzidis | 24ffc08 | 2011-02-17 21:39:24 +0000 | [diff] [blame] | 711 | BugReporter BR(*Mgr); |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 712 | |
| 713 | if (Mode & AM_Syntax) |
| 714 | checkerMgr->runCheckersOnASTBody(D, *Mgr, BR); |
| 715 | if ((Mode & AM_Path) && checkerMgr->hasPathSensitiveCheckers()) { |
| 716 | RunPathSensitiveChecks(D, IMode, VisitedCallees); |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 717 | if (IMode != ExprEngine::Inline_Minimal) |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 718 | NumFunctionsAnalyzed++; |
| 719 | } |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | //===----------------------------------------------------------------------===// |
Argyrios Kyrtzidis | 6a1c760 | 2011-02-28 19:49:17 +0000 | [diff] [blame] | 723 | // Path-sensitive checking. |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 724 | //===----------------------------------------------------------------------===// |
| 725 | |
George Karpenkov | c82d457 | 2018-09-28 18:49:41 +0000 | [diff] [blame^] | 726 | void AnalysisConsumer::RunPathSensitiveChecks(Decl *D, |
| 727 | ExprEngine::InliningModes IMode, |
| 728 | SetOfConstDecls *VisitedCallees) { |
Ted Kremenek | dccc2b2 | 2011-10-07 22:21:02 +0000 | [diff] [blame] | 729 | // Construct the analysis engine. First check if the CFG is valid. |
Ted Kremenek | 1e7f988 | 2009-09-18 22:29:35 +0000 | [diff] [blame] | 730 | // FIXME: Inter-procedural analysis will need to handle invalid CFGs. |
Anna Zaks | 394d07e | 2012-03-09 21:14:01 +0000 | [diff] [blame] | 731 | if (!Mgr->getCFG(D)) |
Ted Kremenek | 39df94b | 2010-02-14 19:08:51 +0000 | [diff] [blame] | 732 | return; |
Anna Zaks | 394d07e | 2012-03-09 21:14:01 +0000 | [diff] [blame] | 733 | |
Ted Kremenek | de21a1c | 2012-07-02 20:21:52 +0000 | [diff] [blame] | 734 | // See if the LiveVariables analysis scales. |
| 735 | if (!Mgr->getAnalysisDeclContext(D)->getAnalysis<RelaxedLiveVariables>()) |
| 736 | return; |
| 737 | |
George Karpenkov | c82d457 | 2018-09-28 18:49:41 +0000 | [diff] [blame^] | 738 | ExprEngine Eng(CTU, *Mgr, VisitedCallees, &FunctionSummaries, IMode); |
Ted Kremenek | 39df94b | 2010-02-14 19:08:51 +0000 | [diff] [blame] | 739 | |
Ted Kremenek | 8e631a0 | 2008-07-02 00:44:58 +0000 | [diff] [blame] | 740 | // Execute the worklist algorithm. |
Jordy Rose | 4f8198e | 2012-04-28 01:58:08 +0000 | [diff] [blame] | 741 | Eng.ExecuteWorkList(Mgr->getAnalysisDeclContextManager().getStackFrame(D), |
Anna Zaks | c84d151 | 2013-01-30 19:12:39 +0000 | [diff] [blame] | 742 | Mgr->options.getMaxNodesPerTopLevelFunction()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 743 | |
George Karpenkov | c704f4f | 2018-09-28 18:49:21 +0000 | [diff] [blame] | 744 | if (!Mgr->options.DumpExplodedGraphTo.empty()) |
| 745 | Eng.DumpGraph(Mgr->options.TrimGraph, Mgr->options.DumpExplodedGraphTo); |
| 746 | |
Ted Kremenek | 71ac832 | 2008-07-02 16:49:11 +0000 | [diff] [blame] | 747 | // Visualize the exploded graph. |
Ted Kremenek | b8f8b35 | 2012-08-30 19:26:53 +0000 | [diff] [blame] | 748 | if (Mgr->options.visualizeExplodedGraphWithGraphViz) |
Ted Kremenek | 8756c4a | 2012-08-30 19:26:43 +0000 | [diff] [blame] | 749 | Eng.ViewGraph(Mgr->options.TrimGraph); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 750 | |
Ted Kremenek | 39df18f | 2009-03-11 01:42:29 +0000 | [diff] [blame] | 751 | // Display warnings. |
| 752 | Eng.getBugReporter().FlushReports(); |
Ted Kremenek | becec2c | 2008-07-02 16:35:50 +0000 | [diff] [blame] | 753 | } |
| 754 | |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 755 | //===----------------------------------------------------------------------===// |
| 756 | // AnalysisConsumer creation. |
| 757 | //===----------------------------------------------------------------------===// |
| 758 | |
David Blaikie | 6beb6aa | 2014-08-10 19:56:51 +0000 | [diff] [blame] | 759 | std::unique_ptr<AnalysisASTConsumer> |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 760 | ento::CreateAnalysisConsumer(CompilerInstance &CI) { |
Jordy Rose | 59cce71 | 2011-08-16 21:24:21 +0000 | [diff] [blame] | 761 | // Disable the effects of '-Werror' when using the AnalysisConsumer. |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 762 | CI.getPreprocessor().getDiagnostics().setWarningsAsErrors(false); |
Ted Kremenek | b535181 | 2009-02-17 04:27:41 +0000 | [diff] [blame] | 763 | |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 764 | AnalyzerOptionsRef analyzerOpts = CI.getAnalyzerOpts(); |
| 765 | bool hasModelPath = analyzerOpts->Config.count("model-path") > 0; |
| 766 | |
| 767 | return llvm::make_unique<AnalysisConsumer>( |
Ilya Biryukov | 8b9b3bd | 2018-03-01 14:54:16 +0000 | [diff] [blame] | 768 | CI, CI.getFrontendOpts().OutputFile, analyzerOpts, |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 769 | CI.getFrontendOpts().Plugins, |
| 770 | hasModelPath ? new ModelInjector(CI) : nullptr); |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 771 | } |