Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 1 | //== AnalysisDeclContext.cpp - Analysis context for Path Sens analysis -*- C++ -*-// |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 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 | // |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 10 | // This file defines AnalysisDeclContext, a class that manages the analysis context |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 11 | // data for path sensitive analysis. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 15 | #include "clang/Analysis/AnalysisContext.h" |
| 16 | #include "BodyFarm.h" |
Benjamin Kramer | 4ab984e | 2012-07-04 20:19:54 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 18 | #include "clang/AST/Decl.h" |
| 19 | #include "clang/AST/DeclObjC.h" |
Mike Stump | 1bacb81 | 2010-01-13 02:59:54 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclTemplate.h" |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 21 | #include "clang/AST/ParentMap.h" |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 22 | #include "clang/AST/StmtVisitor.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 23 | #include "clang/Analysis/Analyses/CFGReachabilityAnalysis.h" |
Ted Kremenek | 575398e | 2010-03-10 00:18:11 +0000 | [diff] [blame] | 24 | #include "clang/Analysis/Analyses/LiveVariables.h" |
Tom Care | e332c3b | 2010-08-23 19:51:57 +0000 | [diff] [blame] | 25 | #include "clang/Analysis/Analyses/PseudoConstantAnalysis.h" |
Ted Kremenek | 575398e | 2010-03-10 00:18:11 +0000 | [diff] [blame] | 26 | #include "clang/Analysis/CFG.h" |
Ted Kremenek | cc7f1f8 | 2011-02-23 01:51:53 +0000 | [diff] [blame] | 27 | #include "clang/Analysis/CFGStmtMap.h" |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 28 | #include "clang/Analysis/Support/BumpVector.h" |
Benjamin Kramer | 616f802 | 2012-03-10 15:08:09 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/SmallPtrSet.h" |
Mike Stump | 5b78af9 | 2009-07-31 01:10:29 +0000 | [diff] [blame] | 30 | #include "llvm/Support/ErrorHandling.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 31 | #include "llvm/Support/SaveAndRestore.h" |
Chandler Carruth | 5553d0d | 2014-01-07 11:51:46 +0000 | [diff] [blame] | 32 | #include "llvm/Support/raw_ostream.h" |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 33 | |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 34 | using namespace clang; |
| 35 | |
Ted Kremenek | dccc2b2 | 2011-10-07 22:21:02 +0000 | [diff] [blame] | 36 | typedef llvm::DenseMap<const void *, ManagedAnalysis *> ManagedAnalysisMap; |
| 37 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 38 | AnalysisDeclContext::AnalysisDeclContext(AnalysisDeclContextManager *Mgr, |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 39 | const Decl *d, |
| 40 | const CFG::BuildOptions &buildOptions) |
Ted Kremenek | 142adc4 | 2011-10-23 02:31:52 +0000 | [diff] [blame] | 41 | : Manager(Mgr), |
| 42 | D(d), |
Ted Kremenek | 189ecec | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 43 | cfgBuildOptions(buildOptions), |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 44 | forcedBlkExprs(nullptr), |
Ted Kremenek | 189ecec | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 45 | builtCFG(false), |
| 46 | builtCompleteCFG(false), |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 47 | ReferencedBlockVars(nullptr), |
| 48 | ManagedAnalyses(nullptr) |
Ted Kremenek | 189ecec | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 49 | { |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 50 | cfgBuildOptions.forcedBlkExprs = &forcedBlkExprs; |
Ted Kremenek | 189ecec | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 53 | AnalysisDeclContext::AnalysisDeclContext(AnalysisDeclContextManager *Mgr, |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 54 | const Decl *d) |
Ted Kremenek | 142adc4 | 2011-10-23 02:31:52 +0000 | [diff] [blame] | 55 | : Manager(Mgr), |
| 56 | D(d), |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 57 | forcedBlkExprs(nullptr), |
Ted Kremenek | 189ecec | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 58 | builtCFG(false), |
| 59 | builtCompleteCFG(false), |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 60 | ReferencedBlockVars(nullptr), |
| 61 | ManagedAnalyses(nullptr) |
Ted Kremenek | 189ecec | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 62 | { |
| 63 | cfgBuildOptions.forcedBlkExprs = &forcedBlkExprs; |
| 64 | } |
| 65 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 66 | AnalysisDeclContextManager::AnalysisDeclContextManager(bool useUnoptimizedCFG, |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 67 | bool addImplicitDtors, |
| 68 | bool addInitializers, |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 69 | bool addTemporaryDtors, |
Ted Kremenek | 233c1b0 | 2013-03-29 00:09:22 +0000 | [diff] [blame] | 70 | bool synthesizeBodies, |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 71 | bool addStaticInitBranch, |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 72 | bool addCXXNewAllocator, |
| 73 | CodeInjector *injector) |
| 74 | : Injector(injector), SynthesizeBodies(synthesizeBodies) |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 75 | { |
Ted Kremenek | 189ecec | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 76 | cfgBuildOptions.PruneTriviallyFalseEdges = !useUnoptimizedCFG; |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 77 | cfgBuildOptions.AddImplicitDtors = addImplicitDtors; |
| 78 | cfgBuildOptions.AddInitializers = addInitializers; |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 79 | cfgBuildOptions.AddTemporaryDtors = addTemporaryDtors; |
Ted Kremenek | 233c1b0 | 2013-03-29 00:09:22 +0000 | [diff] [blame] | 80 | cfgBuildOptions.AddStaticInitBranches = addStaticInitBranch; |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 81 | cfgBuildOptions.AddCXXNewAllocator = addCXXNewAllocator; |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 84 | void AnalysisDeclContextManager::clear() { |
Reid Kleckner | 588c937 | 2014-02-19 23:44:52 +0000 | [diff] [blame] | 85 | llvm::DeleteContainerSeconds(Contexts); |
Ted Kremenek | d45ff6c | 2009-10-20 21:39:41 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 88 | static BodyFarm &getBodyFarm(ASTContext &C, CodeInjector *injector = nullptr) { |
| 89 | static BodyFarm *BF = new BodyFarm(C, injector); |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 90 | return *BF; |
| 91 | } |
| 92 | |
Anna Zaks | 00c69a5 | 2013-02-02 00:30:04 +0000 | [diff] [blame] | 93 | Stmt *AnalysisDeclContext::getBody(bool &IsAutosynthesized) const { |
NAKAMURA Takumi | cc4aaef | 2013-02-04 05:06:21 +0000 | [diff] [blame] | 94 | IsAutosynthesized = false; |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 95 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 96 | Stmt *Body = FD->getBody(); |
Anna Zaks | 00c69a5 | 2013-02-02 00:30:04 +0000 | [diff] [blame] | 97 | if (!Body && Manager && Manager->synthesizeBodies()) { |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 98 | Body = getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(FD); |
Jordan Rose | 1a866cd | 2014-01-10 20:06:06 +0000 | [diff] [blame] | 99 | if (Body) |
| 100 | IsAutosynthesized = true; |
Anna Zaks | 00c69a5 | 2013-02-02 00:30:04 +0000 | [diff] [blame] | 101 | } |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 102 | return Body; |
| 103 | } |
Jordan Rose | 1a866cd | 2014-01-10 20:06:06 +0000 | [diff] [blame] | 104 | else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 105 | Stmt *Body = MD->getBody(); |
| 106 | if (!Body && Manager && Manager->synthesizeBodies()) { |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 107 | Body = getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(MD); |
Jordan Rose | 1a866cd | 2014-01-10 20:06:06 +0000 | [diff] [blame] | 108 | if (Body) |
| 109 | IsAutosynthesized = true; |
| 110 | } |
| 111 | return Body; |
| 112 | } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) |
Ted Kremenek | 45805b9 | 2009-12-04 20:34:55 +0000 | [diff] [blame] | 113 | return BD->getBody(); |
Mike Stump | 1bacb81 | 2010-01-13 02:59:54 +0000 | [diff] [blame] | 114 | else if (const FunctionTemplateDecl *FunTmpl |
| 115 | = dyn_cast_or_null<FunctionTemplateDecl>(D)) |
| 116 | return FunTmpl->getTemplatedDecl()->getBody(); |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 117 | |
Jeffrey Yasskin | 1615d45 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 118 | llvm_unreachable("unknown code decl"); |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Anna Zaks | 00c69a5 | 2013-02-02 00:30:04 +0000 | [diff] [blame] | 121 | Stmt *AnalysisDeclContext::getBody() const { |
| 122 | bool Tmp; |
| 123 | return getBody(Tmp); |
| 124 | } |
| 125 | |
| 126 | bool AnalysisDeclContext::isBodyAutosynthesized() const { |
| 127 | bool Tmp; |
| 128 | getBody(Tmp); |
| 129 | return Tmp; |
| 130 | } |
| 131 | |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 132 | bool AnalysisDeclContext::isBodyAutosynthesizedFromModelFile() const { |
| 133 | bool Tmp; |
| 134 | Stmt *Body = getBody(Tmp); |
| 135 | return Tmp && Body->getLocStart().isValid(); |
| 136 | } |
| 137 | |
| 138 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 139 | const ImplicitParamDecl *AnalysisDeclContext::getSelfDecl() const { |
Ted Kremenek | 608677a | 2009-08-21 23:25:54 +0000 | [diff] [blame] | 140 | if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) |
| 141 | return MD->getSelfDecl(); |
Ted Kremenek | b39fcfa | 2011-11-14 19:36:08 +0000 | [diff] [blame] | 142 | if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) { |
| 143 | // See if 'self' was captured by the block. |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 144 | for (const auto &I : BD->captures()) { |
| 145 | const VarDecl *VD = I.getVariable(); |
Ted Kremenek | b39fcfa | 2011-11-14 19:36:08 +0000 | [diff] [blame] | 146 | if (VD->getName() == "self") |
| 147 | return dyn_cast<ImplicitParamDecl>(VD); |
| 148 | } |
| 149 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 150 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 151 | return nullptr; |
Ted Kremenek | 608677a | 2009-08-21 23:25:54 +0000 | [diff] [blame] | 152 | } |
| 153 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 154 | void AnalysisDeclContext::registerForcedBlockExpression(const Stmt *stmt) { |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 155 | if (!forcedBlkExprs) |
| 156 | forcedBlkExprs = new CFG::BuildOptions::ForcedBlkExprs(); |
| 157 | // Default construct an entry for 'stmt'. |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 158 | if (const Expr *e = dyn_cast<Expr>(stmt)) |
| 159 | stmt = e->IgnoreParens(); |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 160 | (void) (*forcedBlkExprs)[stmt]; |
| 161 | } |
| 162 | |
| 163 | const CFGBlock * |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 164 | AnalysisDeclContext::getBlockForRegisteredExpression(const Stmt *stmt) { |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 165 | assert(forcedBlkExprs); |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 166 | if (const Expr *e = dyn_cast<Expr>(stmt)) |
| 167 | stmt = e->IgnoreParens(); |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 168 | CFG::BuildOptions::ForcedBlkExprs::const_iterator itr = |
| 169 | forcedBlkExprs->find(stmt); |
| 170 | assert(itr != forcedBlkExprs->end()); |
| 171 | return itr->second; |
| 172 | } |
| 173 | |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 174 | /// Add each synthetic statement in the CFG to the parent map, using the |
| 175 | /// source statement's parent. |
| 176 | static void addParentsForSyntheticStmts(const CFG *TheCFG, ParentMap &PM) { |
| 177 | if (!TheCFG) |
| 178 | return; |
| 179 | |
| 180 | for (CFG::synthetic_stmt_iterator I = TheCFG->synthetic_stmt_begin(), |
| 181 | E = TheCFG->synthetic_stmt_end(); |
| 182 | I != E; ++I) { |
| 183 | PM.setParent(I->first, PM.getParent(I->second)); |
| 184 | } |
| 185 | } |
| 186 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 187 | CFG *AnalysisDeclContext::getCFG() { |
Ted Kremenek | 189ecec | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 188 | if (!cfgBuildOptions.PruneTriviallyFalseEdges) |
Ted Kremenek | 4a2b237 | 2010-08-03 00:09:51 +0000 | [diff] [blame] | 189 | return getUnoptimizedCFG(); |
| 190 | |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 191 | if (!builtCFG) { |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 192 | cfg = CFG::buildCFG(D, getBody(), &D->getASTContext(), cfgBuildOptions); |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 193 | // Even when the cfg is not successfully built, we don't |
| 194 | // want to try building it again. |
| 195 | builtCFG = true; |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 196 | |
| 197 | if (PM) |
| 198 | addParentsForSyntheticStmts(cfg.get(), *PM); |
Richard Trieu | e9fa266 | 2014-04-15 00:57:50 +0000 | [diff] [blame] | 199 | |
Richard Trieu | e729d9b | 2014-04-15 01:06:38 +0000 | [diff] [blame] | 200 | // The Observer should only observe one build of the CFG. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 201 | getCFGBuildOptions().Observer = nullptr; |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 202 | } |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 203 | return cfg.get(); |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 206 | CFG *AnalysisDeclContext::getUnoptimizedCFG() { |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 207 | if (!builtCompleteCFG) { |
Ted Kremenek | 189ecec | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 208 | SaveAndRestore<bool> NotPrune(cfgBuildOptions.PruneTriviallyFalseEdges, |
| 209 | false); |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 210 | completeCFG = |
| 211 | CFG::buildCFG(D, getBody(), &D->getASTContext(), cfgBuildOptions); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 212 | // Even when the cfg is not successfully built, we don't |
| 213 | // want to try building it again. |
| 214 | builtCompleteCFG = true; |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 215 | |
| 216 | if (PM) |
| 217 | addParentsForSyntheticStmts(completeCFG.get(), *PM); |
Richard Trieu | e9fa266 | 2014-04-15 00:57:50 +0000 | [diff] [blame] | 218 | |
Richard Trieu | e729d9b | 2014-04-15 01:06:38 +0000 | [diff] [blame] | 219 | // The Observer should only observe one build of the CFG. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 220 | getCFGBuildOptions().Observer = nullptr; |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 221 | } |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 222 | return completeCFG.get(); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 225 | CFGStmtMap *AnalysisDeclContext::getCFGStmtMap() { |
Ted Kremenek | cc7f1f8 | 2011-02-23 01:51:53 +0000 | [diff] [blame] | 226 | if (cfgStmtMap) |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 227 | return cfgStmtMap.get(); |
Ted Kremenek | cc7f1f8 | 2011-02-23 01:51:53 +0000 | [diff] [blame] | 228 | |
| 229 | if (CFG *c = getCFG()) { |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 230 | cfgStmtMap.reset(CFGStmtMap::Build(c, &getParentMap())); |
| 231 | return cfgStmtMap.get(); |
Ted Kremenek | cc7f1f8 | 2011-02-23 01:51:53 +0000 | [diff] [blame] | 232 | } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 233 | |
| 234 | return nullptr; |
Ted Kremenek | cc7f1f8 | 2011-02-23 01:51:53 +0000 | [diff] [blame] | 235 | } |
Ted Kremenek | 80861ca | 2011-02-23 01:51:59 +0000 | [diff] [blame] | 236 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 237 | CFGReverseBlockReachabilityAnalysis *AnalysisDeclContext::getCFGReachablityAnalysis() { |
Ted Kremenek | 80861ca | 2011-02-23 01:51:59 +0000 | [diff] [blame] | 238 | if (CFA) |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 239 | return CFA.get(); |
Ted Kremenek | cc7f1f8 | 2011-02-23 01:51:53 +0000 | [diff] [blame] | 240 | |
Ted Kremenek | 80861ca | 2011-02-23 01:51:59 +0000 | [diff] [blame] | 241 | if (CFG *c = getCFG()) { |
Ted Kremenek | ddc06d0 | 2011-03-19 01:00:33 +0000 | [diff] [blame] | 242 | CFA.reset(new CFGReverseBlockReachabilityAnalysis(*c)); |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 243 | return CFA.get(); |
Ted Kremenek | 80861ca | 2011-02-23 01:51:59 +0000 | [diff] [blame] | 244 | } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 245 | |
| 246 | return nullptr; |
Ted Kremenek | 80861ca | 2011-02-23 01:51:59 +0000 | [diff] [blame] | 247 | } |
Ted Kremenek | cc7f1f8 | 2011-02-23 01:51:53 +0000 | [diff] [blame] | 248 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 249 | void AnalysisDeclContext::dumpCFG(bool ShowColors) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 250 | getCFG()->dump(getASTContext().getLangOpts(), ShowColors); |
Anders Carlsson | 36ecb1f | 2011-01-16 22:05:23 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Ted Kremenek | 35de145 | 2013-05-17 09:41:40 +0000 | [diff] [blame] | 253 | ParentMap &AnalysisDeclContext::getParentMap() { |
| 254 | if (!PM) { |
Jordan Rose | 433b0f5 | 2013-05-18 02:26:50 +0000 | [diff] [blame] | 255 | PM.reset(new ParentMap(getBody())); |
| 256 | if (const CXXConstructorDecl *C = dyn_cast<CXXConstructorDecl>(getDecl())) { |
Aaron Ballman | 0ad7830 | 2014-03-13 17:34:31 +0000 | [diff] [blame] | 257 | for (const auto *I : C->inits()) { |
| 258 | PM->addStmt(I->getInit()); |
Jordan Rose | 433b0f5 | 2013-05-18 02:26:50 +0000 | [diff] [blame] | 259 | } |
| 260 | } |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 261 | if (builtCFG) |
| 262 | addParentsForSyntheticStmts(getCFG(), *PM); |
| 263 | if (builtCompleteCFG) |
| 264 | addParentsForSyntheticStmts(getUnoptimizedCFG(), *PM); |
Ted Kremenek | 35de145 | 2013-05-17 09:41:40 +0000 | [diff] [blame] | 265 | } |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 266 | return *PM; |
| 267 | } |
| 268 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 269 | PseudoConstantAnalysis *AnalysisDeclContext::getPseudoConstantAnalysis() { |
Tom Care | b9933f3 | 2010-08-18 21:17:24 +0000 | [diff] [blame] | 270 | if (!PCA) |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 271 | PCA.reset(new PseudoConstantAnalysis(getBody())); |
| 272 | return PCA.get(); |
Tom Care | b9933f3 | 2010-08-18 21:17:24 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Jordy Rose | 4f8198e | 2012-04-28 01:58:08 +0000 | [diff] [blame] | 275 | AnalysisDeclContext *AnalysisDeclContextManager::getContext(const Decl *D) { |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 276 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Ted Kremenek | 3d0ec38 | 2012-09-24 21:17:14 +0000 | [diff] [blame] | 277 | // Calling 'hasBody' replaces 'FD' in place with the FunctionDecl |
| 278 | // that has the body. |
Ted Kremenek | 14f779c | 2012-09-21 00:09:11 +0000 | [diff] [blame] | 279 | FD->hasBody(FD); |
| 280 | D = FD; |
| 281 | } |
| 282 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 283 | AnalysisDeclContext *&AC = Contexts[D]; |
Ted Kremenek | cdf5f4a | 2009-08-21 23:58:43 +0000 | [diff] [blame] | 284 | if (!AC) |
Jordy Rose | 4f8198e | 2012-04-28 01:58:08 +0000 | [diff] [blame] | 285 | AC = new AnalysisDeclContext(this, D, cfgBuildOptions); |
Ted Kremenek | cdf5f4a | 2009-08-21 23:58:43 +0000 | [diff] [blame] | 286 | return AC; |
Zhongxing Xu | 14407bf | 2009-07-30 01:17:21 +0000 | [diff] [blame] | 287 | } |
Zhongxing Xu | 9ad0b46 | 2009-08-03 07:23:22 +0000 | [diff] [blame] | 288 | |
Ted Kremenek | 142adc4 | 2011-10-23 02:31:52 +0000 | [diff] [blame] | 289 | const StackFrameContext * |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 290 | AnalysisDeclContext::getStackFrame(LocationContext const *Parent, const Stmt *S, |
Ted Kremenek | 142adc4 | 2011-10-23 02:31:52 +0000 | [diff] [blame] | 291 | const CFGBlock *Blk, unsigned Idx) { |
| 292 | return getLocationContextManager().getStackFrame(this, Parent, S, Blk, Idx); |
| 293 | } |
| 294 | |
Ted Kremenek | c3da376 | 2012-06-01 20:04:04 +0000 | [diff] [blame] | 295 | const BlockInvocationContext * |
| 296 | AnalysisDeclContext::getBlockInvocationContext(const LocationContext *parent, |
| 297 | const clang::BlockDecl *BD, |
| 298 | const void *ContextData) { |
| 299 | return getLocationContextManager().getBlockInvocationContext(this, parent, |
| 300 | BD, ContextData); |
| 301 | } |
| 302 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 303 | LocationContextManager & AnalysisDeclContext::getLocationContextManager() { |
Ted Kremenek | 142adc4 | 2011-10-23 02:31:52 +0000 | [diff] [blame] | 304 | assert(Manager && |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 305 | "Cannot create LocationContexts without an AnalysisDeclContextManager!"); |
Ted Kremenek | 142adc4 | 2011-10-23 02:31:52 +0000 | [diff] [blame] | 306 | return Manager->getLocationContextManager(); |
| 307 | } |
| 308 | |
Ted Kremenek | 2538824 | 2009-12-04 00:50:10 +0000 | [diff] [blame] | 309 | //===----------------------------------------------------------------------===// |
| 310 | // FoldingSet profiling. |
| 311 | //===----------------------------------------------------------------------===// |
| 312 | |
Ted Kremenek | 2538824 | 2009-12-04 00:50:10 +0000 | [diff] [blame] | 313 | void LocationContext::ProfileCommon(llvm::FoldingSetNodeID &ID, |
| 314 | ContextKind ck, |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 315 | AnalysisDeclContext *ctx, |
Ted Kremenek | 2538824 | 2009-12-04 00:50:10 +0000 | [diff] [blame] | 316 | const LocationContext *parent, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 317 | const void *data) { |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 318 | ID.AddInteger(ck); |
| 319 | ID.AddPointer(ctx); |
| 320 | ID.AddPointer(parent); |
Ted Kremenek | 2538824 | 2009-12-04 00:50:10 +0000 | [diff] [blame] | 321 | ID.AddPointer(data); |
Zhongxing Xu | 9ad0b46 | 2009-08-03 07:23:22 +0000 | [diff] [blame] | 322 | } |
| 323 | |
Ted Kremenek | 2538824 | 2009-12-04 00:50:10 +0000 | [diff] [blame] | 324 | void StackFrameContext::Profile(llvm::FoldingSetNodeID &ID) { |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 325 | Profile(ID, getAnalysisDeclContext(), getParent(), CallSite, Block, Index); |
Zhongxing Xu | 9ad0b46 | 2009-08-03 07:23:22 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Ted Kremenek | 2538824 | 2009-12-04 00:50:10 +0000 | [diff] [blame] | 328 | void ScopeContext::Profile(llvm::FoldingSetNodeID &ID) { |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 329 | Profile(ID, getAnalysisDeclContext(), getParent(), Enter); |
Ted Kremenek | 2538824 | 2009-12-04 00:50:10 +0000 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | void BlockInvocationContext::Profile(llvm::FoldingSetNodeID &ID) { |
Ted Kremenek | c3da376 | 2012-06-01 20:04:04 +0000 | [diff] [blame] | 333 | Profile(ID, getAnalysisDeclContext(), getParent(), BD, ContextData); |
Ted Kremenek | 2538824 | 2009-12-04 00:50:10 +0000 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 337 | // LocationContext creation. |
Ted Kremenek | 2538824 | 2009-12-04 00:50:10 +0000 | [diff] [blame] | 338 | //===----------------------------------------------------------------------===// |
| 339 | |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 340 | template <typename LOC, typename DATA> |
| 341 | const LOC* |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 342 | LocationContextManager::getLocationContext(AnalysisDeclContext *ctx, |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 343 | const LocationContext *parent, |
| 344 | const DATA *d) { |
| 345 | llvm::FoldingSetNodeID ID; |
| 346 | LOC::Profile(ID, ctx, parent, d); |
| 347 | void *InsertPos; |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 348 | |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 349 | LOC *L = cast_or_null<LOC>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 350 | |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 351 | if (!L) { |
| 352 | L = new LOC(ctx, parent, d); |
| 353 | Contexts.InsertNode(L, InsertPos); |
| 354 | } |
| 355 | return L; |
Ted Kremenek | d45ff6c | 2009-10-20 21:39:41 +0000 | [diff] [blame] | 356 | } |
| 357 | |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 358 | const StackFrameContext* |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 359 | LocationContextManager::getStackFrame(AnalysisDeclContext *ctx, |
Ted Kremenek | 00aeae9 | 2009-08-21 23:39:58 +0000 | [diff] [blame] | 360 | const LocationContext *parent, |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 361 | const Stmt *s, |
Zhongxing Xu | a1a9ba1 | 2010-11-24 13:08:51 +0000 | [diff] [blame] | 362 | const CFGBlock *blk, unsigned idx) { |
Zhongxing Xu | 51f1ca8 | 2009-12-24 03:34:38 +0000 | [diff] [blame] | 363 | llvm::FoldingSetNodeID ID; |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 364 | StackFrameContext::Profile(ID, ctx, parent, s, blk, idx); |
Zhongxing Xu | 51f1ca8 | 2009-12-24 03:34:38 +0000 | [diff] [blame] | 365 | void *InsertPos; |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 366 | StackFrameContext *L = |
Zhongxing Xu | 51f1ca8 | 2009-12-24 03:34:38 +0000 | [diff] [blame] | 367 | cast_or_null<StackFrameContext>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); |
| 368 | if (!L) { |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 369 | L = new StackFrameContext(ctx, parent, s, blk, idx); |
Zhongxing Xu | 51f1ca8 | 2009-12-24 03:34:38 +0000 | [diff] [blame] | 370 | Contexts.InsertNode(L, InsertPos); |
| 371 | } |
| 372 | return L; |
Zhongxing Xu | 9ad0b46 | 2009-08-03 07:23:22 +0000 | [diff] [blame] | 373 | } |
| 374 | |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 375 | const ScopeContext * |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 376 | LocationContextManager::getScope(AnalysisDeclContext *ctx, |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 377 | const LocationContext *parent, |
| 378 | const Stmt *s) { |
| 379 | return getLocationContext<ScopeContext, Stmt>(ctx, parent, s); |
| 380 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 381 | |
Ted Kremenek | c3da376 | 2012-06-01 20:04:04 +0000 | [diff] [blame] | 382 | const BlockInvocationContext * |
| 383 | LocationContextManager::getBlockInvocationContext(AnalysisDeclContext *ctx, |
| 384 | const LocationContext *parent, |
| 385 | const BlockDecl *BD, |
| 386 | const void *ContextData) { |
| 387 | llvm::FoldingSetNodeID ID; |
| 388 | BlockInvocationContext::Profile(ID, ctx, parent, BD, ContextData); |
| 389 | void *InsertPos; |
| 390 | BlockInvocationContext *L = |
| 391 | cast_or_null<BlockInvocationContext>(Contexts.FindNodeOrInsertPos(ID, |
| 392 | InsertPos)); |
| 393 | if (!L) { |
| 394 | L = new BlockInvocationContext(ctx, parent, BD, ContextData); |
| 395 | Contexts.InsertNode(L, InsertPos); |
| 396 | } |
| 397 | return L; |
| 398 | } |
| 399 | |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 400 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 04af9f2 | 2009-12-07 22:05:27 +0000 | [diff] [blame] | 401 | // LocationContext methods. |
| 402 | //===----------------------------------------------------------------------===// |
| 403 | |
| 404 | const StackFrameContext *LocationContext::getCurrentStackFrame() const { |
| 405 | const LocationContext *LC = this; |
| 406 | while (LC) { |
| 407 | if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC)) |
| 408 | return SFC; |
| 409 | LC = LC->getParent(); |
| 410 | } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 411 | return nullptr; |
Ted Kremenek | 04af9f2 | 2009-12-07 22:05:27 +0000 | [diff] [blame] | 412 | } |
| 413 | |
Anna Zaks | 44dc91b | 2012-11-03 02:54:16 +0000 | [diff] [blame] | 414 | bool LocationContext::inTopFrame() const { |
| 415 | return getCurrentStackFrame()->inTopFrame(); |
| 416 | } |
| 417 | |
Zhongxing Xu | 86bab2c | 2010-02-17 08:45:06 +0000 | [diff] [blame] | 418 | bool LocationContext::isParentOf(const LocationContext *LC) const { |
| 419 | do { |
| 420 | const LocationContext *Parent = LC->getParent(); |
| 421 | if (Parent == this) |
| 422 | return true; |
| 423 | else |
| 424 | LC = Parent; |
| 425 | } while (LC); |
| 426 | |
| 427 | return false; |
| 428 | } |
| 429 | |
Jordan Rose | e9c5722 | 2013-07-19 00:59:08 +0000 | [diff] [blame] | 430 | void LocationContext::dumpStack(raw_ostream &OS, StringRef Indent) const { |
Jordan Rose | 6fdef11 | 2013-03-30 01:31:35 +0000 | [diff] [blame] | 431 | ASTContext &Ctx = getAnalysisDeclContext()->getASTContext(); |
| 432 | PrintingPolicy PP(Ctx.getLangOpts()); |
| 433 | PP.TerseOutput = 1; |
| 434 | |
| 435 | unsigned Frame = 0; |
| 436 | for (const LocationContext *LCtx = this; LCtx; LCtx = LCtx->getParent()) { |
| 437 | switch (LCtx->getKind()) { |
| 438 | case StackFrame: |
Jordan Rose | e9c5722 | 2013-07-19 00:59:08 +0000 | [diff] [blame] | 439 | OS << Indent << '#' << Frame++ << ' '; |
| 440 | cast<StackFrameContext>(LCtx)->getDecl()->print(OS, PP); |
| 441 | OS << '\n'; |
Jordan Rose | 6fdef11 | 2013-03-30 01:31:35 +0000 | [diff] [blame] | 442 | break; |
| 443 | case Scope: |
Jordan Rose | e9c5722 | 2013-07-19 00:59:08 +0000 | [diff] [blame] | 444 | OS << Indent << " (scope)\n"; |
Jordan Rose | 6fdef11 | 2013-03-30 01:31:35 +0000 | [diff] [blame] | 445 | break; |
| 446 | case Block: |
Jordan Rose | e9c5722 | 2013-07-19 00:59:08 +0000 | [diff] [blame] | 447 | OS << Indent << " (block context: " |
Jordan Rose | 6fdef11 | 2013-03-30 01:31:35 +0000 | [diff] [blame] | 448 | << cast<BlockInvocationContext>(LCtx)->getContextData() |
| 449 | << ")\n"; |
| 450 | break; |
| 451 | } |
| 452 | } |
| 453 | } |
| 454 | |
Alp Toker | ef6b007 | 2014-01-04 13:47:14 +0000 | [diff] [blame] | 455 | LLVM_DUMP_METHOD void LocationContext::dumpStack() const { |
Jordan Rose | e9c5722 | 2013-07-19 00:59:08 +0000 | [diff] [blame] | 456 | dumpStack(llvm::errs()); |
| 457 | } |
| 458 | |
Ted Kremenek | 04af9f2 | 2009-12-07 22:05:27 +0000 | [diff] [blame] | 459 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 460 | // Lazily generated map to query the external variables referenced by a Block. |
| 461 | //===----------------------------------------------------------------------===// |
| 462 | |
| 463 | namespace { |
| 464 | class FindBlockDeclRefExprsVals : public StmtVisitor<FindBlockDeclRefExprsVals>{ |
| 465 | BumpVector<const VarDecl*> &BEVals; |
| 466 | BumpVectorContext &BC; |
Benjamin Kramer | 616f802 | 2012-03-10 15:08:09 +0000 | [diff] [blame] | 467 | llvm::SmallPtrSet<const VarDecl*, 4> Visited; |
| 468 | llvm::SmallPtrSet<const DeclContext*, 4> IgnoredContexts; |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 469 | public: |
| 470 | FindBlockDeclRefExprsVals(BumpVector<const VarDecl*> &bevals, |
| 471 | BumpVectorContext &bc) |
| 472 | : BEVals(bevals), BC(bc) {} |
Ted Kremenek | 575398e | 2010-03-10 00:18:11 +0000 | [diff] [blame] | 473 | |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 474 | void VisitStmt(Stmt *S) { |
John McCall | 8322c3a | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 475 | for (Stmt::child_range I = S->children(); I; ++I) |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 476 | if (Stmt *child = *I) |
| 477 | Visit(child); |
| 478 | } |
Ted Kremenek | 5abd69d | 2010-02-06 00:30:00 +0000 | [diff] [blame] | 479 | |
Ted Kremenek | 299cfb7 | 2011-12-22 01:30:46 +0000 | [diff] [blame] | 480 | void VisitDeclRefExpr(DeclRefExpr *DR) { |
Ted Kremenek | 5abd69d | 2010-02-06 00:30:00 +0000 | [diff] [blame] | 481 | // Non-local variables are also directly modified. |
Benjamin Kramer | 616f802 | 2012-03-10 15:08:09 +0000 | [diff] [blame] | 482 | if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) { |
Ted Kremenek | 5abd69d | 2010-02-06 00:30:00 +0000 | [diff] [blame] | 483 | if (!VD->hasLocalStorage()) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 484 | if (Visited.insert(VD).second) |
Ted Kremenek | 5abd69d | 2010-02-06 00:30:00 +0000 | [diff] [blame] | 485 | BEVals.push_back(VD, BC); |
Ted Kremenek | 5abd69d | 2010-02-06 00:30:00 +0000 | [diff] [blame] | 486 | } |
Benjamin Kramer | 616f802 | 2012-03-10 15:08:09 +0000 | [diff] [blame] | 487 | } |
Ted Kremenek | 5abd69d | 2010-02-06 00:30:00 +0000 | [diff] [blame] | 488 | } |
Ted Kremenek | 575398e | 2010-03-10 00:18:11 +0000 | [diff] [blame] | 489 | |
Ted Kremenek | 575398e | 2010-03-10 00:18:11 +0000 | [diff] [blame] | 490 | void VisitBlockExpr(BlockExpr *BR) { |
| 491 | // Blocks containing blocks can transitively capture more variables. |
| 492 | IgnoredContexts.insert(BR->getBlockDecl()); |
| 493 | Visit(BR->getBlockDecl()->getBody()); |
| 494 | } |
Ted Kremenek | 299cfb7 | 2011-12-22 01:30:46 +0000 | [diff] [blame] | 495 | |
| 496 | void VisitPseudoObjectExpr(PseudoObjectExpr *PE) { |
| 497 | for (PseudoObjectExpr::semantics_iterator it = PE->semantics_begin(), |
| 498 | et = PE->semantics_end(); it != et; ++it) { |
| 499 | Expr *Semantic = *it; |
| 500 | if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic)) |
| 501 | Semantic = OVE->getSourceExpr(); |
| 502 | Visit(Semantic); |
| 503 | } |
| 504 | } |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 505 | }; |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 506 | } // end anonymous namespace |
| 507 | |
| 508 | typedef BumpVector<const VarDecl*> DeclVec; |
| 509 | |
| 510 | static DeclVec* LazyInitializeReferencedDecls(const BlockDecl *BD, |
| 511 | void *&Vec, |
| 512 | llvm::BumpPtrAllocator &A) { |
| 513 | if (Vec) |
| 514 | return (DeclVec*) Vec; |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 515 | |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 516 | BumpVectorContext BC(A); |
| 517 | DeclVec *BV = (DeclVec*) A.Allocate<DeclVec>(); |
| 518 | new (BV) DeclVec(BC, 10); |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 519 | |
Ted Kremenek | 3e871d8 | 2012-12-06 07:17:26 +0000 | [diff] [blame] | 520 | // Go through the capture list. |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 521 | for (const auto &CI : BD->captures()) { |
| 522 | BV->push_back(CI.getVariable(), BC); |
Ted Kremenek | 3e871d8 | 2012-12-06 07:17:26 +0000 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | // Find the referenced global/static variables. |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 526 | FindBlockDeclRefExprsVals F(*BV, BC); |
| 527 | F.Visit(BD->getBody()); |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 528 | |
| 529 | Vec = BV; |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 530 | return BV; |
| 531 | } |
| 532 | |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame^] | 533 | llvm::iterator_range<AnalysisDeclContext::referenced_decls_iterator> |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 534 | AnalysisDeclContext::getReferencedBlockVars(const BlockDecl *BD) { |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 535 | if (!ReferencedBlockVars) |
| 536 | ReferencedBlockVars = new llvm::DenseMap<const BlockDecl*,void*>(); |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 537 | |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame^] | 538 | const DeclVec *V = |
| 539 | LazyInitializeReferencedDecls(BD, (*ReferencedBlockVars)[BD], A); |
| 540 | return llvm::make_range(V->begin(), V->end()); |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 543 | ManagedAnalysis *&AnalysisDeclContext::getAnalysisImpl(const void *tag) { |
Ted Kremenek | dccc2b2 | 2011-10-07 22:21:02 +0000 | [diff] [blame] | 544 | if (!ManagedAnalyses) |
| 545 | ManagedAnalyses = new ManagedAnalysisMap(); |
| 546 | ManagedAnalysisMap *M = (ManagedAnalysisMap*) ManagedAnalyses; |
| 547 | return (*M)[tag]; |
| 548 | } |
| 549 | |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 550 | //===----------------------------------------------------------------------===// |
| 551 | // Cleanup. |
| 552 | //===----------------------------------------------------------------------===// |
| 553 | |
Ted Kremenek | dccc2b2 | 2011-10-07 22:21:02 +0000 | [diff] [blame] | 554 | ManagedAnalysis::~ManagedAnalysis() {} |
| 555 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 556 | AnalysisDeclContext::~AnalysisDeclContext() { |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 557 | delete forcedBlkExprs; |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 558 | delete ReferencedBlockVars; |
Ted Kremenek | dccc2b2 | 2011-10-07 22:21:02 +0000 | [diff] [blame] | 559 | // Release the managed analyses. |
| 560 | if (ManagedAnalyses) { |
| 561 | ManagedAnalysisMap *M = (ManagedAnalysisMap*) ManagedAnalyses; |
Reid Kleckner | 588c937 | 2014-02-19 23:44:52 +0000 | [diff] [blame] | 562 | llvm::DeleteContainerSeconds(*M); |
Ted Kremenek | dccc2b2 | 2011-10-07 22:21:02 +0000 | [diff] [blame] | 563 | delete M; |
| 564 | } |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 565 | } |
| 566 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 567 | AnalysisDeclContextManager::~AnalysisDeclContextManager() { |
Reid Kleckner | 588c937 | 2014-02-19 23:44:52 +0000 | [diff] [blame] | 568 | llvm::DeleteContainerSeconds(Contexts); |
Ted Kremenek | 0f5e6f88 | 2009-11-26 02:31:33 +0000 | [diff] [blame] | 569 | } |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 570 | |
| 571 | LocationContext::~LocationContext() {} |
| 572 | |
| 573 | LocationContextManager::~LocationContextManager() { |
| 574 | clear(); |
| 575 | } |
| 576 | |
| 577 | void LocationContextManager::clear() { |
| 578 | for (llvm::FoldingSet<LocationContext>::iterator I = Contexts.begin(), |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 579 | E = Contexts.end(); I != E; ) { |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 580 | LocationContext *LC = &*I; |
| 581 | ++I; |
| 582 | delete LC; |
| 583 | } |
Ted Kremenek | 0b40532 | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 584 | |
Ted Kremenek | 43d4a89 | 2009-12-04 01:28:56 +0000 | [diff] [blame] | 585 | Contexts.clear(); |
| 586 | } |
| 587 | |