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 | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 334 | void ActionExprEngine(Decl *D, bool ObjCGCEnabled, |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 335 | ExprEngine::InliningModes IMode, |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 336 | SetOfConstDecls *VisitedCallees); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 337 | |
| 338 | /// Visitors for the RecursiveASTVisitor. |
Anna Zaks | e7e7c9e | 2012-05-11 23:15:18 +0000 | [diff] [blame] | 339 | bool shouldWalkTypesOfTypeLocs() const { return false; } |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 340 | |
| 341 | /// Handle callbacks for arbitrary Decls. |
| 342 | bool VisitDecl(Decl *D) { |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 343 | AnalysisMode Mode = getModeForDecl(D, RecVisitorMode); |
| 344 | if (Mode & AM_Syntax) |
| 345 | checkerMgr->runCheckersOnASTDecl(D, *Mgr, *RecVisitorBR); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 346 | return true; |
| 347 | } |
| 348 | |
| 349 | bool VisitFunctionDecl(FunctionDecl *FD) { |
| 350 | IdentifierInfo *II = FD->getIdentifier(); |
| 351 | if (II && II->getName().startswith("__inline")) |
| 352 | return true; |
| 353 | |
| 354 | // We skip function template definitions, as their semantics is |
| 355 | // only determined when they are instantiated. |
| 356 | if (FD->isThisDeclarationADefinition() && |
| 357 | !FD->isDependentContext()) { |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 358 | assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 359 | HandleCode(FD, RecVisitorMode); |
| 360 | } |
| 361 | return true; |
| 362 | } |
| 363 | |
| 364 | bool VisitObjCMethodDecl(ObjCMethodDecl *MD) { |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 365 | if (MD->isThisDeclarationADefinition()) { |
| 366 | assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false); |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 367 | HandleCode(MD, RecVisitorMode); |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 368 | } |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 369 | return true; |
| 370 | } |
Ted Kremenek | 3a0678e | 2015-09-08 03:50:52 +0000 | [diff] [blame] | 371 | |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 372 | bool VisitBlockDecl(BlockDecl *BD) { |
| 373 | if (BD->hasBody()) { |
| 374 | assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false); |
Devin Coughlin | 6e644ab | 2015-11-18 22:46:52 +0000 | [diff] [blame] | 375 | // Since we skip function template definitions, we should skip blocks |
| 376 | // declared in those functions as well. |
| 377 | if (!BD->isDependentContext()) { |
| 378 | HandleCode(BD, RecVisitorMode); |
| 379 | } |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 380 | } |
| 381 | return true; |
| 382 | } |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 383 | |
Alexander Kornienko | 34eb207 | 2015-04-11 02:00:23 +0000 | [diff] [blame] | 384 | void AddDiagnosticConsumer(PathDiagnosticConsumer *Consumer) override { |
Alexander Kornienko | 7a712ce | 2014-02-03 18:37:50 +0000 | [diff] [blame] | 385 | PathConsumers.push_back(Consumer); |
| 386 | } |
| 387 | |
Alexander Kornienko | d00ed8e | 2018-06-27 14:56:12 +0000 | [diff] [blame] | 388 | void AddCheckerRegistrationFn(std::function<void(CheckerRegistry&)> Fn) override { |
| 389 | CheckerRegistrationFns.push_back(std::move(Fn)); |
| 390 | } |
| 391 | |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 392 | private: |
| 393 | void storeTopLevelDecls(DeclGroupRef DG); |
Artem Dergachev | 6a76a16 | 2016-08-08 16:01:02 +0000 | [diff] [blame] | 394 | std::string getFunctionName(const Decl *D); |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 395 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 396 | /// Check if we should skip (not analyze) the given function. |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 397 | AnalysisMode getModeForDecl(Decl *D, AnalysisMode Mode); |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 398 | void runAnalysisOnTranslationUnit(ASTContext &C); |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 399 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 400 | /// Print \p S to stderr if \c Opts->AnalyzerDisplayProgress is set. |
| 401 | void reportAnalyzerProgress(StringRef S); |
Ted Kremenek | 55d59bf | 2009-11-11 06:28:42 +0000 | [diff] [blame] | 402 | }; |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 403 | } // end anonymous namespace |
| 404 | |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 405 | |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 406 | //===----------------------------------------------------------------------===// |
| 407 | // AnalysisConsumer implementation. |
| 408 | //===----------------------------------------------------------------------===// |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 409 | bool AnalysisConsumer::HandleTopLevelDecl(DeclGroupRef DG) { |
| 410 | storeTopLevelDecls(DG); |
| 411 | return true; |
| 412 | } |
| 413 | |
| 414 | void AnalysisConsumer::HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) { |
| 415 | storeTopLevelDecls(DG); |
| 416 | } |
| 417 | |
| 418 | void AnalysisConsumer::storeTopLevelDecls(DeclGroupRef DG) { |
| 419 | for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) { |
| 420 | |
| 421 | // Skip ObjCMethodDecl, wait for the objc container to avoid |
| 422 | // analyzing twice. |
| 423 | if (isa<ObjCMethodDecl>(*I)) |
| 424 | continue; |
| 425 | |
Ted Kremenek | 2964aac | 2012-04-27 04:54:28 +0000 | [diff] [blame] | 426 | LocalTUDecls.push_back(*I); |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 427 | } |
| 428 | } |
| 429 | |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 430 | static bool shouldSkipFunction(const Decl *D, |
Alexander Kornienko | fe65998 | 2014-04-23 16:39:41 +0000 | [diff] [blame] | 431 | const SetOfConstDecls &Visited, |
| 432 | const SetOfConstDecls &VisitedAsTopLevel) { |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 433 | if (VisitedAsTopLevel.count(D)) |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 434 | return true; |
| 435 | |
| 436 | // 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] | 437 | // - The 'init' methods should be reanalyzed because |
| 438 | // ObjCNonNilReturnValueChecker assumes that '[super init]' never returns |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 439 | // 'nil' and unless we analyze the 'init' functions as top level, we will |
| 440 | // not catch errors within defensive code. |
Anna Zaks | a8017ec | 2012-08-30 23:42:02 +0000 | [diff] [blame] | 441 | // - We want to reanalyze all ObjC methods as top level to report Retain |
| 442 | // Count naming convention errors more aggressively. |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 443 | if (isa<ObjCMethodDecl>(D)) |
Anna Zaks | a8017ec | 2012-08-30 23:42:02 +0000 | [diff] [blame] | 444 | return false; |
Devin Coughlin | f57f90d | 2016-07-21 23:42:31 +0000 | [diff] [blame] | 445 | // We also want to reanalyze all C++ copy and move assignment operators to |
| 446 | // separately check the two cases where 'this' aliases with the parameter and |
| 447 | // where it may not. (cplusplus.SelfAssignmentChecker) |
| 448 | if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) { |
| 449 | if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) |
| 450 | return false; |
| 451 | } |
Anna Zaks | a8017ec | 2012-08-30 23:42:02 +0000 | [diff] [blame] | 452 | |
| 453 | // Otherwise, if we visited the function before, do not reanalyze it. |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 454 | return Visited.count(D); |
Anna Zaks | a8017ec | 2012-08-30 23:42:02 +0000 | [diff] [blame] | 455 | } |
| 456 | |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 457 | ExprEngine::InliningModes |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 458 | AnalysisConsumer::getInliningModeForFunction(const Decl *D, |
Alexander Kornienko | fe65998 | 2014-04-23 16:39:41 +0000 | [diff] [blame] | 459 | const SetOfConstDecls &Visited) { |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 460 | // 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] | 461 | // Count naming convention errors more aggressively. But we should tune down |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 462 | // inlining when reanalyzing an already inlined function. |
Devin Coughlin | f57f90d | 2016-07-21 23:42:31 +0000 | [diff] [blame] | 463 | if (Visited.count(D) && isa<ObjCMethodDecl>(D)) { |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 464 | const ObjCMethodDecl *ObjCM = cast<ObjCMethodDecl>(D); |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 465 | if (ObjCM->getMethodFamily() != OMF_init) |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 466 | return ExprEngine::Inline_Minimal; |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 467 | } |
| 468 | |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 469 | return ExprEngine::Inline_Regular; |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 470 | } |
| 471 | |
Jordan Rose | 85c8c81 | 2012-10-10 17:55:37 +0000 | [diff] [blame] | 472 | void AnalysisConsumer::HandleDeclsCallGraph(const unsigned LocalTUDeclsSize) { |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 473 | // 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] | 474 | // Note: CallGraph can trigger deserialization of more items from a pch |
| 475 | // (though HandleInterestingDecl); triggering additions to LocalTUDecls. |
| 476 | // 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] | 477 | CallGraph CG; |
Anna Zaks | 2774f99 | 2012-05-31 18:07:55 +0000 | [diff] [blame] | 478 | for (unsigned i = 0 ; i < LocalTUDeclsSize ; ++i) { |
Anna Zaks | 34d89b7 | 2012-05-30 23:14:48 +0000 | [diff] [blame] | 479 | CG.addToCallGraph(LocalTUDecls[i]); |
| 480 | } |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 481 | |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 482 | // Walk over all of the call graph nodes in topological order, so that we |
| 483 | // analyze parents before the children. Skip the functions inlined into |
| 484 | // the previously processed functions. Use external Visited set to identify |
| 485 | // inlined functions. The topological order allows the "do not reanalyze |
| 486 | // previously inlined function" performance heuristic to be triggered more |
| 487 | // often. |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 488 | SetOfConstDecls Visited; |
| 489 | SetOfConstDecls VisitedAsTopLevel; |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 490 | llvm::ReversePostOrderTraversal<clang::CallGraph*> RPOT(&CG); |
| 491 | for (llvm::ReversePostOrderTraversal<clang::CallGraph*>::rpo_iterator |
| 492 | I = RPOT.begin(), E = RPOT.end(); I != E; ++I) { |
| 493 | NumFunctionTopLevel++; |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 494 | |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 495 | CallGraphNode *N = *I; |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 496 | Decl *D = N->getDecl(); |
Ted Kremenek | 3a0678e | 2015-09-08 03:50:52 +0000 | [diff] [blame] | 497 | |
Anna Zaks | 1ee76c1 | 2012-12-21 17:27:01 +0000 | [diff] [blame] | 498 | // Skip the abstract root node. |
| 499 | if (!D) |
| 500 | continue; |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 501 | |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 502 | // Skip the functions which have been processed already or previously |
| 503 | // inlined. |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 504 | if (shouldSkipFunction(D, Visited, VisitedAsTopLevel)) |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 505 | continue; |
| 506 | |
| 507 | // Analyze the function. |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 508 | SetOfConstDecls VisitedCallees; |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 509 | |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 510 | HandleCode(D, AM_Path, getInliningModeForFunction(D, Visited), |
Craig Topper | 0dbb783 | 2014-05-27 02:45:47 +0000 | [diff] [blame] | 511 | (Mgr->options.InliningMode == All ? nullptr : &VisitedCallees)); |
Anna Zaks | ca70ed5 | 2012-03-13 19:32:13 +0000 | [diff] [blame] | 512 | |
| 513 | // Add the visited callees to the global visited set. |
Yury Gribov | 054873b | 2016-01-11 09:38:48 +0000 | [diff] [blame] | 514 | for (const Decl *Callee : VisitedCallees) |
| 515 | // Decls from CallGraph are already canonical. But Decls coming from |
| 516 | // CallExprs may be not. We should canonicalize them manually. |
| 517 | Visited.insert(isa<ObjCMethodDecl>(Callee) ? Callee |
| 518 | : Callee->getCanonicalDecl()); |
Anna Zaks | 5f2af81 | 2012-12-14 19:08:17 +0000 | [diff] [blame] | 519 | VisitedAsTopLevel.insert(D); |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 520 | } |
Ted Kremenek | 60120fb | 2011-08-27 21:28:09 +0000 | [diff] [blame] | 521 | } |
| 522 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 523 | static bool isBisonFile(ASTContext &C) { |
| 524 | const SourceManager &SM = C.getSourceManager(); |
| 525 | FileID FID = SM.getMainFileID(); |
| 526 | StringRef Buffer = SM.getBuffer(FID)->getBuffer(); |
| 527 | if (Buffer.startswith("/* A Bison parser, made by")) |
| 528 | return true; |
| 529 | return false; |
| 530 | } |
| 531 | |
| 532 | void AnalysisConsumer::runAnalysisOnTranslationUnit(ASTContext &C) { |
| 533 | BugReporter BR(*Mgr); |
| 534 | TranslationUnitDecl *TU = C.getTranslationUnitDecl(); |
| 535 | checkerMgr->runCheckersOnASTDecl(TU, *Mgr, BR); |
| 536 | |
| 537 | // Run the AST-only checks using the order in which functions are defined. |
| 538 | // If inlining is not turned on, use the simplest function order for path |
| 539 | // sensitive analyzes as well. |
| 540 | RecVisitorMode = AM_Syntax; |
| 541 | if (!Mgr->shouldInlineCall()) |
| 542 | RecVisitorMode |= AM_Path; |
| 543 | RecVisitorBR = &BR; |
| 544 | |
| 545 | // Process all the top level declarations. |
| 546 | // |
| 547 | // Note: TraverseDecl may modify LocalTUDecls, but only by appending more |
| 548 | // entries. Thus we don't use an iterator, but rely on LocalTUDecls |
| 549 | // random access. By doing so, we automatically compensate for iterators |
| 550 | // possibly being invalidated, although this is a bit slower. |
| 551 | const unsigned LocalTUDeclsSize = LocalTUDecls.size(); |
| 552 | for (unsigned i = 0 ; i < LocalTUDeclsSize ; ++i) { |
| 553 | TraverseDecl(LocalTUDecls[i]); |
| 554 | } |
| 555 | |
| 556 | if (Mgr->shouldInlineCall()) |
| 557 | HandleDeclsCallGraph(LocalTUDeclsSize); |
| 558 | |
| 559 | // After all decls handled, run checkers on the entire TranslationUnit. |
| 560 | checkerMgr->runCheckersOnEndOfTranslationUnit(TU, *Mgr, BR); |
| 561 | |
| 562 | RecVisitorBR = nullptr; |
| 563 | } |
| 564 | |
| 565 | void AnalysisConsumer::reportAnalyzerProgress(StringRef S) { |
| 566 | if (Opts->AnalyzerDisplayProgress) |
| 567 | llvm::errs() << S; |
| 568 | } |
| 569 | |
Ted Kremenek | a1ec4f3 | 2011-01-20 17:09:48 +0000 | [diff] [blame] | 570 | void AnalysisConsumer::HandleTranslationUnit(ASTContext &C) { |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 571 | |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 572 | // Don't run the actions if an error has occurred with parsing the file. |
| 573 | DiagnosticsEngine &Diags = PP.getDiagnostics(); |
| 574 | if (Diags.hasErrorOccurred() || Diags.hasFatalErrorOccurred()) |
| 575 | return; |
| 576 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 577 | if (TUTotalTimer) TUTotalTimer->startTimer(); |
Anna Zaks | d5478fd | 2014-08-29 20:01:38 +0000 | [diff] [blame] | 578 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 579 | if (isBisonFile(C)) { |
| 580 | reportAnalyzerProgress("Skipping bison-generated file\n"); |
| 581 | } else if (Opts->DisableAllChecks) { |
Anna Zaks | 9bd4be9 | 2012-03-05 20:53:59 +0000 | [diff] [blame] | 582 | |
George Karpenkov | 1d3e49e | 2018-02-26 22:14:16 +0000 | [diff] [blame] | 583 | // Don't analyze if the user explicitly asked for no checks to be performed |
| 584 | // on this file. |
| 585 | reportAnalyzerProgress("All checks are disabled using a supplied option\n"); |
| 586 | } else { |
| 587 | // Otherwise, just run the analysis. |
| 588 | runAnalysisOnTranslationUnit(C); |
Anna Zaks | 17f57b0 | 2012-01-07 16:49:46 +0000 | [diff] [blame] | 589 | } |
Ted Kremenek | e69ab05 | 2011-05-05 03:41:17 +0000 | [diff] [blame] | 590 | |
Anna Zaks | 9bd4be9 | 2012-03-05 20:53:59 +0000 | [diff] [blame] | 591 | if (TUTotalTimer) TUTotalTimer->stopTimer(); |
Anna Zaks | 8382e45 | 2012-04-05 02:10:21 +0000 | [diff] [blame] | 592 | |
| 593 | // Count how many basic blocks we have not covered. |
| 594 | NumBlocksInAnalyzedFunctions = FunctionSummaries.getTotalNumBasicBlocks(); |
George Karpenkov | 2a63985 | 2018-02-09 23:37:47 +0000 | [diff] [blame] | 595 | NumVisitedBlocksInAnalyzedFunctions = |
| 596 | FunctionSummaries.getTotalNumVisitedBasicBlocks(); |
Anna Zaks | 8382e45 | 2012-04-05 02:10:21 +0000 | [diff] [blame] | 597 | if (NumBlocksInAnalyzedFunctions > 0) |
| 598 | PercentReachableBlocks = |
| 599 | (FunctionSummaries.getTotalNumVisitedBasicBlocks() * 100) / |
| 600 | NumBlocksInAnalyzedFunctions; |
| 601 | |
George Karpenkov | 5a755b3 | 2018-02-10 01:49:20 +0000 | [diff] [blame] | 602 | // Explicitly destroy the PathDiagnosticConsumer. This will flush its output. |
| 603 | // FIXME: This should be replaced with something that doesn't rely on |
| 604 | // side-effects in PathDiagnosticConsumer's destructor. This is required when |
| 605 | // used with option -disable-free. |
| 606 | Mgr.reset(); |
Ted Kremenek | 0e7d252 | 2008-07-03 04:29:21 +0000 | [diff] [blame] | 607 | } |
| 608 | |
Artem Dergachev | 6a76a16 | 2016-08-08 16:01:02 +0000 | [diff] [blame] | 609 | std::string AnalysisConsumer::getFunctionName(const Decl *D) { |
| 610 | std::string Str; |
| 611 | llvm::raw_string_ostream OS(Str); |
| 612 | |
| 613 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 614 | OS << FD->getQualifiedNameAsString(); |
| 615 | |
| 616 | // In C++, there are overloads. |
| 617 | if (Ctx->getLangOpts().CPlusPlus) { |
| 618 | OS << '('; |
| 619 | for (const auto &P : FD->parameters()) { |
| 620 | if (P != *FD->param_begin()) |
| 621 | OS << ", "; |
| 622 | OS << P->getType().getAsString(); |
| 623 | } |
| 624 | OS << ')'; |
| 625 | } |
| 626 | |
| 627 | } else if (isa<BlockDecl>(D)) { |
| 628 | PresumedLoc Loc = Ctx->getSourceManager().getPresumedLoc(D->getLocation()); |
| 629 | |
| 630 | if (Loc.isValid()) { |
| 631 | OS << "block (line: " << Loc.getLine() << ", col: " << Loc.getColumn() |
| 632 | << ')'; |
| 633 | } |
| 634 | |
| 635 | } else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) { |
| 636 | |
| 637 | // FIXME: copy-pasted from CGDebugInfo.cpp. |
| 638 | OS << (OMD->isInstanceMethod() ? '-' : '+') << '['; |
| 639 | const DeclContext *DC = OMD->getDeclContext(); |
| 640 | if (const auto *OID = dyn_cast<ObjCImplementationDecl>(DC)) { |
| 641 | OS << OID->getName(); |
| 642 | } else if (const auto *OID = dyn_cast<ObjCInterfaceDecl>(DC)) { |
| 643 | OS << OID->getName(); |
| 644 | } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(DC)) { |
| 645 | if (OC->IsClassExtension()) { |
| 646 | OS << OC->getClassInterface()->getName(); |
| 647 | } else { |
| 648 | OS << OC->getIdentifier()->getNameStart() << '(' |
| 649 | << OC->getIdentifier()->getNameStart() << ')'; |
| 650 | } |
| 651 | } else if (const auto *OCD = dyn_cast<ObjCCategoryImplDecl>(DC)) { |
Argyrios Kyrtzidis | a166a2b | 2017-03-07 09:26:07 +0000 | [diff] [blame] | 652 | OS << OCD->getClassInterface()->getName() << '(' |
| 653 | << OCD->getName() << ')'; |
Artem Dergachev | 6a76a16 | 2016-08-08 16:01:02 +0000 | [diff] [blame] | 654 | } else if (isa<ObjCProtocolDecl>(DC)) { |
| 655 | // We can extract the type of the class from the self pointer. |
| 656 | if (ImplicitParamDecl *SelfDecl = OMD->getSelfDecl()) { |
| 657 | QualType ClassTy = |
| 658 | cast<ObjCObjectPointerType>(SelfDecl->getType())->getPointeeType(); |
| 659 | ClassTy.print(OS, PrintingPolicy(LangOptions())); |
| 660 | } |
| 661 | } |
| 662 | OS << ' ' << OMD->getSelector().getAsString() << ']'; |
| 663 | |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 664 | } |
Artem Dergachev | 6a76a16 | 2016-08-08 16:01:02 +0000 | [diff] [blame] | 665 | |
| 666 | return OS.str(); |
Anna Zaks | eee9110 | 2012-03-08 23:16:38 +0000 | [diff] [blame] | 667 | } |
| 668 | |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 669 | AnalysisConsumer::AnalysisMode |
| 670 | AnalysisConsumer::getModeForDecl(Decl *D, AnalysisMode Mode) { |
Ted Kremenek | 40ea0ea | 2012-08-31 04:36:05 +0000 | [diff] [blame] | 671 | if (!Opts->AnalyzeSpecificFunction.empty() && |
| 672 | getFunctionName(D) != Opts->AnalyzeSpecificFunction) |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 673 | return AM_None; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 674 | |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 675 | // Unless -analyze-all is specified, treat decls differently depending on |
| 676 | // where they came from: |
| 677 | // - Main source file: run both path-sensitive and non-path-sensitive checks. |
| 678 | // - Header files: run non-path-sensitive checks only. |
| 679 | // - System headers: don't run any checks. |
Ted Kremenek | 4c721bf | 2010-06-15 00:55:40 +0000 | [diff] [blame] | 680 | SourceManager &SM = Ctx->getSourceManager(); |
Aaron Ballman | 6569387 | 2015-08-20 21:27:35 +0000 | [diff] [blame] | 681 | const Stmt *Body = D->getBody(); |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 682 | SourceLocation SL = Body ? Body->getBeginLoc() : D->getLocation(); |
Anna Zaks | 3849dea | 2015-06-26 17:42:58 +0000 | [diff] [blame] | 683 | SL = SM.getExpansionLoc(SL); |
| 684 | |
Artem Dergachev | 516837f | 2018-04-25 21:51:26 +0000 | [diff] [blame] | 685 | if (!Opts->AnalyzeAll && !Mgr->isInCodeFile(SL)) { |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 686 | if (SL.isInvalid() || SM.isInSystemHeader(SL)) |
| 687 | return AM_None; |
| 688 | return Mode & ~AM_Path; |
| 689 | } |
Anna Zaks | aa19abe | 2012-03-13 19:31:54 +0000 | [diff] [blame] | 690 | |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 691 | return Mode; |
Anna Zaks | aa19abe | 2012-03-13 19:31:54 +0000 | [diff] [blame] | 692 | } |
| 693 | |
Anna Zaks | 1418951 | 2012-03-13 19:32:00 +0000 | [diff] [blame] | 694 | void AnalysisConsumer::HandleCode(Decl *D, AnalysisMode Mode, |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 695 | ExprEngine::InliningModes IMode, |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 696 | SetOfConstDecls *VisitedCallees) { |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 697 | if (!D->hasBody()) |
| 698 | return; |
Jordan Rose | d8665b3 | 2012-10-10 17:55:40 +0000 | [diff] [blame] | 699 | Mode = getModeForDecl(D, Mode); |
| 700 | if (Mode == AM_None) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 701 | return; |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 702 | |
Alexander Shaposhnikov | a1fead2 | 2016-09-23 20:49:01 +0000 | [diff] [blame] | 703 | // Clear the AnalysisManager of old AnalysisDeclContexts. |
| 704 | Mgr->ClearContexts(); |
| 705 | // Ignore autosynthesized code. |
| 706 | if (Mgr->getAnalysisDeclContext(D)->isBodyAutosynthesized()) |
| 707 | return; |
| 708 | |
Anna Zaks | e9eb13a | 2013-02-02 00:30:02 +0000 | [diff] [blame] | 709 | DisplayFunction(D, Mode, IMode); |
Anna Zaks | 40b87fc | 2012-07-05 20:44:02 +0000 | [diff] [blame] | 710 | CFG *DeclCFG = Mgr->getCFG(D); |
Craig Topper | 704b4fb | 2017-05-18 01:11:52 +0000 | [diff] [blame] | 711 | if (DeclCFG) |
| 712 | MaxCFGSize.updateMax(DeclCFG->size()); |
Anna Zaks | 40b87fc | 2012-07-05 20:44:02 +0000 | [diff] [blame] | 713 | |
Argyrios Kyrtzidis | 24ffc08 | 2011-02-17 21:39:24 +0000 | [diff] [blame] | 714 | BugReporter BR(*Mgr); |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 715 | |
| 716 | if (Mode & AM_Syntax) |
| 717 | checkerMgr->runCheckersOnASTBody(D, *Mgr, BR); |
| 718 | if ((Mode & AM_Path) && checkerMgr->hasPathSensitiveCheckers()) { |
| 719 | RunPathSensitiveChecks(D, IMode, VisitedCallees); |
Anna Zaks | b13d21b | 2013-03-26 18:57:58 +0000 | [diff] [blame] | 720 | if (IMode != ExprEngine::Inline_Minimal) |
Anna Zaks | 5c32dfc | 2012-12-21 01:19:15 +0000 | [diff] [blame] | 721 | NumFunctionsAnalyzed++; |
| 722 | } |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 723 | } |
| 724 | |
| 725 | //===----------------------------------------------------------------------===// |
Argyrios Kyrtzidis | 6a1c760 | 2011-02-28 19:49:17 +0000 | [diff] [blame] | 726 | // Path-sensitive checking. |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 727 | //===----------------------------------------------------------------------===// |
| 728 | |
Anna Zaks | 394d07e | 2012-03-09 21:14:01 +0000 | [diff] [blame] | 729 | void AnalysisConsumer::ActionExprEngine(Decl *D, bool ObjCGCEnabled, |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 730 | ExprEngine::InliningModes IMode, |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 731 | SetOfConstDecls *VisitedCallees) { |
Ted Kremenek | dccc2b2 | 2011-10-07 22:21:02 +0000 | [diff] [blame] | 732 | // Construct the analysis engine. First check if the CFG is valid. |
Ted Kremenek | 1e7f988 | 2009-09-18 22:29:35 +0000 | [diff] [blame] | 733 | // FIXME: Inter-procedural analysis will need to handle invalid CFGs. |
Anna Zaks | 394d07e | 2012-03-09 21:14:01 +0000 | [diff] [blame] | 734 | if (!Mgr->getCFG(D)) |
Ted Kremenek | 39df94b | 2010-02-14 19:08:51 +0000 | [diff] [blame] | 735 | return; |
Anna Zaks | 394d07e | 2012-03-09 21:14:01 +0000 | [diff] [blame] | 736 | |
Ted Kremenek | de21a1c | 2012-07-02 20:21:52 +0000 | [diff] [blame] | 737 | // See if the LiveVariables analysis scales. |
| 738 | if (!Mgr->getAnalysisDeclContext(D)->getAnalysis<RelaxedLiveVariables>()) |
| 739 | return; |
| 740 | |
Ilya Biryukov | 8b9b3bd | 2018-03-01 14:54:16 +0000 | [diff] [blame] | 741 | ExprEngine Eng(CTU, *Mgr, ObjCGCEnabled, VisitedCallees, &FunctionSummaries, |
| 742 | IMode); |
Ted Kremenek | 39df94b | 2010-02-14 19:08:51 +0000 | [diff] [blame] | 743 | |
Ted Kremenek | 8e631a0 | 2008-07-02 00:44:58 +0000 | [diff] [blame] | 744 | // Execute the worklist algorithm. |
Jordy Rose | 4f8198e | 2012-04-28 01:58:08 +0000 | [diff] [blame] | 745 | Eng.ExecuteWorkList(Mgr->getAnalysisDeclContextManager().getStackFrame(D), |
Anna Zaks | c84d151 | 2013-01-30 19:12:39 +0000 | [diff] [blame] | 746 | Mgr->options.getMaxNodesPerTopLevelFunction()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 747 | |
George Karpenkov | c704f4f | 2018-09-28 18:49:21 +0000 | [diff] [blame^] | 748 | if (!Mgr->options.DumpExplodedGraphTo.empty()) |
| 749 | Eng.DumpGraph(Mgr->options.TrimGraph, Mgr->options.DumpExplodedGraphTo); |
| 750 | |
Ted Kremenek | 71ac832 | 2008-07-02 16:49:11 +0000 | [diff] [blame] | 751 | // Visualize the exploded graph. |
Ted Kremenek | b8f8b35 | 2012-08-30 19:26:53 +0000 | [diff] [blame] | 752 | if (Mgr->options.visualizeExplodedGraphWithGraphViz) |
Ted Kremenek | 8756c4a | 2012-08-30 19:26:43 +0000 | [diff] [blame] | 753 | Eng.ViewGraph(Mgr->options.TrimGraph); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 754 | |
Ted Kremenek | 39df18f | 2009-03-11 01:42:29 +0000 | [diff] [blame] | 755 | // Display warnings. |
| 756 | Eng.getBugReporter().FlushReports(); |
Ted Kremenek | becec2c | 2008-07-02 16:35:50 +0000 | [diff] [blame] | 757 | } |
| 758 | |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 759 | void AnalysisConsumer::RunPathSensitiveChecks(Decl *D, |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 760 | ExprEngine::InliningModes IMode, |
Anna Zaks | 8e07852 | 2012-04-12 22:36:48 +0000 | [diff] [blame] | 761 | SetOfConstDecls *Visited) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 762 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 763 | switch (Mgr->getLangOpts().getGC()) { |
Jordy Rose | c49ec53 | 2011-09-02 05:55:19 +0000 | [diff] [blame] | 764 | case LangOptions::NonGC: |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 765 | ActionExprEngine(D, false, IMode, Visited); |
Jordy Rose | c49ec53 | 2011-09-02 05:55:19 +0000 | [diff] [blame] | 766 | break; |
Ted Kremenek | 3a0678e | 2015-09-08 03:50:52 +0000 | [diff] [blame] | 767 | |
Jordy Rose | c49ec53 | 2011-09-02 05:55:19 +0000 | [diff] [blame] | 768 | case LangOptions::GCOnly: |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 769 | ActionExprEngine(D, true, IMode, Visited); |
Jordy Rose | c49ec53 | 2011-09-02 05:55:19 +0000 | [diff] [blame] | 770 | break; |
Ted Kremenek | 3a0678e | 2015-09-08 03:50:52 +0000 | [diff] [blame] | 771 | |
Jordy Rose | c49ec53 | 2011-09-02 05:55:19 +0000 | [diff] [blame] | 772 | case LangOptions::HybridGC: |
Anna Zaks | 5d48478 | 2012-12-07 21:51:47 +0000 | [diff] [blame] | 773 | ActionExprEngine(D, false, IMode, Visited); |
| 774 | ActionExprEngine(D, true, IMode, Visited); |
Jordy Rose | c49ec53 | 2011-09-02 05:55:19 +0000 | [diff] [blame] | 775 | break; |
| 776 | } |
Ted Kremenek | 8e631a0 | 2008-07-02 00:44:58 +0000 | [diff] [blame] | 777 | } |
| 778 | |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 779 | //===----------------------------------------------------------------------===// |
| 780 | // AnalysisConsumer creation. |
| 781 | //===----------------------------------------------------------------------===// |
| 782 | |
David Blaikie | 6beb6aa | 2014-08-10 19:56:51 +0000 | [diff] [blame] | 783 | std::unique_ptr<AnalysisASTConsumer> |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 784 | ento::CreateAnalysisConsumer(CompilerInstance &CI) { |
Jordy Rose | 59cce71 | 2011-08-16 21:24:21 +0000 | [diff] [blame] | 785 | // Disable the effects of '-Werror' when using the AnalysisConsumer. |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 786 | CI.getPreprocessor().getDiagnostics().setWarningsAsErrors(false); |
Ted Kremenek | b535181 | 2009-02-17 04:27:41 +0000 | [diff] [blame] | 787 | |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 788 | AnalyzerOptionsRef analyzerOpts = CI.getAnalyzerOpts(); |
| 789 | bool hasModelPath = analyzerOpts->Config.count("model-path") > 0; |
| 790 | |
| 791 | return llvm::make_unique<AnalysisConsumer>( |
Ilya Biryukov | 8b9b3bd | 2018-03-01 14:54:16 +0000 | [diff] [blame] | 792 | CI, CI.getFrontendOpts().OutputFile, analyzerOpts, |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 793 | CI.getFrontendOpts().Plugins, |
| 794 | hasModelPath ? new ModelInjector(CI) : nullptr); |
Ted Kremenek | f0413bf | 2008-07-02 00:03:09 +0000 | [diff] [blame] | 795 | } |