/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
Line | Count | Source (jump to first uncovered line) |
1 | | //== AnalysisManager.h - Path sensitive analysis data manager ------*- C++ -*-// |
2 | | // |
3 | | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | | // See https://llvm.org/LICENSE.txt for license information. |
5 | | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | | // |
7 | | //===----------------------------------------------------------------------===// |
8 | | // |
9 | | // This file defines the AnalysisManager class that manages the data and policy |
10 | | // for path sensitive analysis. |
11 | | // |
12 | | //===----------------------------------------------------------------------===// |
13 | | |
14 | | #ifndef LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_ANALYSISMANAGER_H |
15 | | #define LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_ANALYSISMANAGER_H |
16 | | |
17 | | #include "clang/Analysis/AnalysisDeclContext.h" |
18 | | #include "clang/Analysis/PathDiagnostic.h" |
19 | | #include "clang/Lex/Preprocessor.h" |
20 | | #include "clang/StaticAnalyzer/Core/AnalyzerOptions.h" |
21 | | #include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h" |
22 | | #include "clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h" |
23 | | |
24 | | namespace clang { |
25 | | |
26 | | class CodeInjector; |
27 | | |
28 | | namespace ento { |
29 | | class CheckerManager; |
30 | | |
31 | | class AnalysisManager : public BugReporterData { |
32 | | virtual void anchor(); |
33 | | AnalysisDeclContextManager AnaCtxMgr; |
34 | | |
35 | | ASTContext &Ctx; |
36 | | Preprocessor &PP; |
37 | | const LangOptions &LangOpts; |
38 | | PathDiagnosticConsumers PathConsumers; |
39 | | |
40 | | // Configurable components creators. |
41 | | StoreManagerCreator CreateStoreMgr; |
42 | | ConstraintManagerCreator CreateConstraintMgr; |
43 | | |
44 | | CheckerManager *CheckerMgr; |
45 | | |
46 | | public: |
47 | | AnalyzerOptions &options; |
48 | | |
49 | | AnalysisManager(ASTContext &ctx, Preprocessor &PP, |
50 | | const PathDiagnosticConsumers &Consumers, |
51 | | StoreManagerCreator storemgr, |
52 | | ConstraintManagerCreator constraintmgr, |
53 | | CheckerManager *checkerMgr, AnalyzerOptions &Options, |
54 | | CodeInjector *injector = nullptr); |
55 | | |
56 | | ~AnalysisManager() override; |
57 | | |
58 | 36.4k | void ClearContexts() { |
59 | 36.4k | AnaCtxMgr.clear(); |
60 | 36.4k | } |
61 | | |
62 | 71.6k | AnalysisDeclContextManager& getAnalysisDeclContextManager() { |
63 | 71.6k | return AnaCtxMgr; |
64 | 71.6k | } |
65 | | |
66 | 62 | Preprocessor &getPreprocessor() override { return PP; } |
67 | | |
68 | 15.6k | StoreManagerCreator getStoreManagerCreator() { |
69 | 15.6k | return CreateStoreMgr; |
70 | 15.6k | } |
71 | | |
72 | 396k | AnalyzerOptions& getAnalyzerOptions() override { |
73 | 396k | return options; |
74 | 396k | } |
75 | | |
76 | 15.6k | ConstraintManagerCreator getConstraintManagerCreator() { |
77 | 15.6k | return CreateConstraintMgr; |
78 | 15.6k | } |
79 | | |
80 | 5.03M | CheckerManager *getCheckerManager() const { return CheckerMgr; } |
81 | | |
82 | 3.53M | ASTContext &getASTContext() override { |
83 | 3.53M | return Ctx; |
84 | 3.53M | } |
85 | | |
86 | 364k | SourceManager &getSourceManager() override { |
87 | 364k | return getASTContext().getSourceManager(); |
88 | 364k | } |
89 | | |
90 | 1.83k | const LangOptions &getLangOpts() const { |
91 | 1.83k | return LangOpts; |
92 | 1.83k | } |
93 | | |
94 | 20.6k | ArrayRef<PathDiagnosticConsumer*> getPathDiagnosticConsumers() override { |
95 | 20.6k | return PathConsumers; |
96 | 20.6k | } |
97 | | |
98 | | void FlushDiagnostics(); |
99 | | |
100 | 0 | bool shouldVisualize() const { |
101 | 0 | return options.visualizeExplodedGraphWithGraphViz; |
102 | 0 | } |
103 | | |
104 | 137k | bool shouldInlineCall() const { |
105 | 137k | return options.getIPAMode() != IPAK_None; |
106 | 137k | } |
107 | | |
108 | 53.3k | CFG *getCFG(Decl const *D) { |
109 | 53.3k | return AnaCtxMgr.getContext(D)->getCFG(); |
110 | 53.3k | } |
111 | | |
112 | | template <typename T> |
113 | 533 | T *getAnalysis(Decl const *D) { |
114 | 533 | return AnaCtxMgr.getContext(D)->getAnalysis<T>(); |
115 | 533 | } clang::LiveVariables* clang::ento::AnalysisManager::getAnalysis<clang::LiveVariables>(clang::Decl const*) Line | Count | Source | 113 | 521 | T *getAnalysis(Decl const *D) { | 114 | 521 | return AnaCtxMgr.getContext(D)->getAnalysis<T>(); | 115 | 521 | } |
clang::RelaxedLiveVariables* clang::ento::AnalysisManager::getAnalysis<clang::RelaxedLiveVariables>(clang::Decl const*) Line | Count | Source | 113 | 12 | T *getAnalysis(Decl const *D) { | 114 | 12 | return AnaCtxMgr.getContext(D)->getAnalysis<T>(); | 115 | 12 | } |
|
116 | | |
117 | 519 | ParentMap &getParentMap(Decl const *D) { |
118 | 519 | return AnaCtxMgr.getContext(D)->getParentMap(); |
119 | 519 | } |
120 | | |
121 | 143k | AnalysisDeclContext *getAnalysisDeclContext(const Decl *D) { |
122 | 143k | return AnaCtxMgr.getContext(D); |
123 | 143k | } |
124 | | |
125 | 131k | static bool isInCodeFile(SourceLocation SL, const SourceManager &SM) { |
126 | 131k | if (SM.isInMainFile(SL)) |
127 | 129k | return true; |
128 | | |
129 | | // Support the "unified sources" compilation method (eg. WebKit) that |
130 | | // involves producing non-header files that include other non-header files. |
131 | | // We should be included directly from a UnifiedSource* file |
132 | | // and we shouldn't be a header - which is a very safe defensive check. |
133 | 2.39k | SourceLocation IL = SM.getIncludeLoc(SM.getFileID(SL)); |
134 | 2.39k | if (!IL.isValid() || !SM.isInMainFile(IL)2.38k ) |
135 | 10 | return false; |
136 | | // Should rather be "file name starts with", but the current .getFilename |
137 | | // includes the full path. |
138 | 2.38k | if (SM.getFilename(IL).contains("UnifiedSource")) { |
139 | | // It might be great to reuse FrontendOptions::getInputKindForExtension() |
140 | | // but for now it doesn't discriminate between code and header files. |
141 | 24 | return llvm::StringSwitch<bool>(SM.getFilename(SL).rsplit('.').second) |
142 | 24 | .Cases("c", "m", "mm", "C", "cc", "cp", true) |
143 | 24 | .Cases("cpp", "CPP", "c++", "cxx", "cppm", true) |
144 | 24 | .Default(false); |
145 | 24 | } |
146 | | |
147 | 2.35k | return false; |
148 | 2.38k | } |
149 | | |
150 | 131k | bool isInCodeFile(SourceLocation SL) { |
151 | 131k | const SourceManager &SM = getASTContext().getSourceManager(); |
152 | 131k | return isInCodeFile(SL, SM); |
153 | 131k | } |
154 | | }; |
155 | | |
156 | | } // enAnaCtxMgrspace |
157 | | |
158 | | } // end clang namespace |
159 | | |
160 | | #endif |