Ted Kremenek | 6960ee6 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 1 | //===--- CFG.cpp - Classes for representing and building CFGs----*- C++ -*-===// |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the CFG and CFGBuilder classes for representing and |
| 11 | // building Control-Flow Graphs (CFGs) from ASTs. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Ted Kremenek | e41611a | 2009-07-16 18:13:04 +0000 | [diff] [blame] | 15 | #include "clang/Analysis/CFG.h" |
Benjamin Kramer | 478851c | 2012-07-04 17:04:04 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Benjamin Kramer | 2fa67ef | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 17 | #include "clang/AST/Attr.h" |
Ted Kremenek | c56c004 | 2011-02-23 05:11:46 +0000 | [diff] [blame] | 18 | #include "clang/AST/CharUnits.h" |
Benjamin Kramer | 2fa67ef | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclCXX.h" |
| 20 | #include "clang/AST/PrettyPrinter.h" |
| 21 | #include "clang/AST/StmtVisitor.h" |
| 22 | #include "llvm/ADT/DenseMap.h" |
| 23 | #include "llvm/ADT/OwningPtr.h" |
| 24 | #include "llvm/ADT/SmallPtrSet.h" |
Benjamin Kramer | 6cb7c1a | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Allocator.h" |
| 26 | #include "llvm/Support/Format.h" |
Benjamin Kramer | 2fa67ef | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 27 | #include "llvm/Support/GraphWriter.h" |
| 28 | #include "llvm/Support/SaveAndRestore.h" |
Ted Kremenek | 83c01da | 2008-01-11 00:40:29 +0000 | [diff] [blame] | 29 | |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 30 | using namespace clang; |
| 31 | |
| 32 | namespace { |
| 33 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 34 | static SourceLocation GetEndLoc(Decl *D) { |
| 35 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 36 | if (Expr *Ex = VD->getInit()) |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 37 | return Ex->getSourceRange().getEnd(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 38 | return D->getLocation(); |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 39 | } |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 40 | |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 41 | class CFGBuilder; |
| 42 | |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 43 | /// The CFG builder uses a recursive algorithm to build the CFG. When |
| 44 | /// we process an expression, sometimes we know that we must add the |
| 45 | /// subexpressions as block-level expressions. For example: |
| 46 | /// |
| 47 | /// exp1 || exp2 |
| 48 | /// |
| 49 | /// When processing the '||' expression, we know that exp1 and exp2 |
| 50 | /// need to be added as block-level expressions, even though they |
| 51 | /// might not normally need to be. AddStmtChoice records this |
| 52 | /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then |
| 53 | /// the builder has an option not to add a subexpression as a |
| 54 | /// block-level expression. |
| 55 | /// |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 56 | class AddStmtChoice { |
| 57 | public: |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 58 | enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 }; |
Ted Kremenek | 5ba290a | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 59 | |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 60 | AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {} |
Ted Kremenek | 5ba290a | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 61 | |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 62 | bool alwaysAdd(CFGBuilder &builder, |
| 63 | const Stmt *stmt) const; |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 64 | |
| 65 | /// Return a copy of this object, except with the 'always-add' bit |
| 66 | /// set as specified. |
| 67 | AddStmtChoice withAlwaysAdd(bool alwaysAdd) const { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 68 | return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd); |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 71 | private: |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 72 | Kind kind; |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 73 | }; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 74 | |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 75 | /// LocalScope - Node in tree of local scopes created for C++ implicit |
| 76 | /// destructor calls generation. It contains list of automatic variables |
| 77 | /// declared in the scope and link to position in previous scope this scope |
| 78 | /// began in. |
| 79 | /// |
| 80 | /// The process of creating local scopes is as follows: |
| 81 | /// - Init CFGBuilder::ScopePos with invalid position (equivalent for null), |
| 82 | /// - Before processing statements in scope (e.g. CompoundStmt) create |
| 83 | /// LocalScope object using CFGBuilder::ScopePos as link to previous scope |
| 84 | /// and set CFGBuilder::ScopePos to the end of new scope, |
Marcin Swiderski | 35387a0 | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 85 | /// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 86 | /// at this VarDecl, |
| 87 | /// - For every normal (without jump) end of scope add to CFGBlock destructors |
| 88 | /// for objects in the current scope, |
| 89 | /// - For every jump add to CFGBlock destructors for objects |
| 90 | /// between CFGBuilder::ScopePos and local scope position saved for jump |
| 91 | /// target. Thanks to C++ restrictions on goto jumps we can be sure that |
| 92 | /// jump target position will be on the path to root from CFGBuilder::ScopePos |
| 93 | /// (adding any variable that doesn't need constructor to be called to |
| 94 | /// LocalScope can break this assumption), |
| 95 | /// |
| 96 | class LocalScope { |
| 97 | public: |
Ted Kremenek | fe59b74 | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 98 | typedef BumpVector<VarDecl*> AutomaticVarsTy; |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 99 | |
| 100 | /// const_iterator - Iterates local scope backwards and jumps to previous |
Marcin Swiderski | 35387a0 | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 101 | /// scope on reaching the beginning of currently iterated scope. |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 102 | class const_iterator { |
| 103 | const LocalScope* Scope; |
| 104 | |
| 105 | /// VarIter is guaranteed to be greater then 0 for every valid iterator. |
| 106 | /// Invalid iterator (with null Scope) has VarIter equal to 0. |
| 107 | unsigned VarIter; |
| 108 | |
| 109 | public: |
| 110 | /// Create invalid iterator. Dereferencing invalid iterator is not allowed. |
| 111 | /// Incrementing invalid iterator is allowed and will result in invalid |
| 112 | /// iterator. |
| 113 | const_iterator() |
| 114 | : Scope(NULL), VarIter(0) {} |
| 115 | |
| 116 | /// Create valid iterator. In case when S.Prev is an invalid iterator and |
| 117 | /// I is equal to 0, this will create invalid iterator. |
| 118 | const_iterator(const LocalScope& S, unsigned I) |
| 119 | : Scope(&S), VarIter(I) { |
| 120 | // Iterator to "end" of scope is not allowed. Handle it by going up |
| 121 | // in scopes tree possibly up to invalid iterator in the root. |
| 122 | if (VarIter == 0 && Scope) |
| 123 | *this = Scope->Prev; |
| 124 | } |
| 125 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 126 | VarDecl *const* operator->() const { |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 127 | assert (Scope && "Dereferencing invalid iterator is not allowed"); |
| 128 | assert (VarIter != 0 && "Iterator has invalid value of VarIter member"); |
| 129 | return &Scope->Vars[VarIter - 1]; |
| 130 | } |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 131 | VarDecl *operator*() const { |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 132 | return *this->operator->(); |
| 133 | } |
| 134 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 135 | const_iterator &operator++() { |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 136 | if (!Scope) |
| 137 | return *this; |
| 138 | |
| 139 | assert (VarIter != 0 && "Iterator has invalid value of VarIter member"); |
| 140 | --VarIter; |
| 141 | if (VarIter == 0) |
| 142 | *this = Scope->Prev; |
| 143 | return *this; |
| 144 | } |
Marcin Swiderski | 35387a0 | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 145 | const_iterator operator++(int) { |
| 146 | const_iterator P = *this; |
| 147 | ++*this; |
| 148 | return P; |
| 149 | } |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 150 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 151 | bool operator==(const const_iterator &rhs) const { |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 152 | return Scope == rhs.Scope && VarIter == rhs.VarIter; |
| 153 | } |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 154 | bool operator!=(const const_iterator &rhs) const { |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 155 | return !(*this == rhs); |
| 156 | } |
Marcin Swiderski | 35387a0 | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 157 | |
| 158 | operator bool() const { |
| 159 | return *this != const_iterator(); |
| 160 | } |
| 161 | |
| 162 | int distance(const_iterator L); |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 163 | }; |
| 164 | |
| 165 | friend class const_iterator; |
| 166 | |
| 167 | private: |
Ted Kremenek | fe59b74 | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 168 | BumpVectorContext ctx; |
| 169 | |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 170 | /// Automatic variables in order of declaration. |
| 171 | AutomaticVarsTy Vars; |
| 172 | /// Iterator to variable in previous scope that was declared just before |
| 173 | /// begin of this scope. |
| 174 | const_iterator Prev; |
| 175 | |
| 176 | public: |
| 177 | /// Constructs empty scope linked to previous scope in specified place. |
Ted Kremenek | fe59b74 | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 178 | LocalScope(BumpVectorContext &ctx, const_iterator P) |
| 179 | : ctx(ctx), Vars(ctx, 4), Prev(P) {} |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 180 | |
| 181 | /// Begin of scope in direction of CFG building (backwards). |
| 182 | const_iterator begin() const { return const_iterator(*this, Vars.size()); } |
Marcin Swiderski | 35387a0 | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 183 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 184 | void addVar(VarDecl *VD) { |
Ted Kremenek | fe59b74 | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 185 | Vars.push_back(VD, ctx); |
Marcin Swiderski | 35387a0 | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 186 | } |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 187 | }; |
| 188 | |
Marcin Swiderski | 35387a0 | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 189 | /// distance - Calculates distance from this to L. L must be reachable from this |
| 190 | /// (with use of ++ operator). Cost of calculating the distance is linear w.r.t. |
| 191 | /// number of scopes between this and L. |
| 192 | int LocalScope::const_iterator::distance(LocalScope::const_iterator L) { |
| 193 | int D = 0; |
| 194 | const_iterator F = *this; |
| 195 | while (F.Scope != L.Scope) { |
Ted Kremenek | 5290c80 | 2011-08-12 14:41:23 +0000 | [diff] [blame] | 196 | assert (F != const_iterator() |
| 197 | && "L iterator is not reachable from F iterator."); |
Marcin Swiderski | 35387a0 | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 198 | D += F.VarIter; |
| 199 | F = F.Scope->Prev; |
| 200 | } |
| 201 | D += F.VarIter - L.VarIter; |
| 202 | return D; |
| 203 | } |
| 204 | |
| 205 | /// BlockScopePosPair - Structure for specifying position in CFG during its |
| 206 | /// build process. It consists of CFGBlock that specifies position in CFG graph |
| 207 | /// and LocalScope::const_iterator that specifies position in LocalScope graph. |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 208 | struct BlockScopePosPair { |
Ted Kremenek | 9ce5270 | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 209 | BlockScopePosPair() : block(0) {} |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 210 | BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos) |
Ted Kremenek | 9ce5270 | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 211 | : block(b), scopePosition(scopePos) {} |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 212 | |
Ted Kremenek | 9ce5270 | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 213 | CFGBlock *block; |
| 214 | LocalScope::const_iterator scopePosition; |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 215 | }; |
| 216 | |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 217 | /// TryResult - a class representing a variant over the values |
| 218 | /// 'true', 'false', or 'unknown'. This is returned by tryEvaluateBool, |
| 219 | /// and is used by the CFGBuilder to decide if a branch condition |
| 220 | /// can be decided up front during CFG construction. |
| 221 | class TryResult { |
| 222 | int X; |
| 223 | public: |
| 224 | TryResult(bool b) : X(b ? 1 : 0) {} |
| 225 | TryResult() : X(-1) {} |
| 226 | |
| 227 | bool isTrue() const { return X == 1; } |
| 228 | bool isFalse() const { return X == 0; } |
| 229 | bool isKnown() const { return X >= 0; } |
| 230 | void negate() { |
| 231 | assert(isKnown()); |
| 232 | X ^= 0x1; |
| 233 | } |
| 234 | }; |
| 235 | |
Ted Kremenek | 5846720 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 236 | class reverse_children { |
| 237 | llvm::SmallVector<Stmt *, 12> childrenBuf; |
| 238 | ArrayRef<Stmt*> children; |
| 239 | public: |
| 240 | reverse_children(Stmt *S); |
| 241 | |
| 242 | typedef ArrayRef<Stmt*>::reverse_iterator iterator; |
| 243 | iterator begin() const { return children.rbegin(); } |
| 244 | iterator end() const { return children.rend(); } |
| 245 | }; |
| 246 | |
| 247 | |
| 248 | reverse_children::reverse_children(Stmt *S) { |
| 249 | if (CallExpr *CE = dyn_cast<CallExpr>(S)) { |
| 250 | children = CE->getRawSubExprs(); |
| 251 | return; |
| 252 | } |
| 253 | switch (S->getStmtClass()) { |
Ted Kremenek | b1855de | 2013-02-05 22:03:14 +0000 | [diff] [blame] | 254 | // Note: Fill in this switch with more cases we want to optimize. |
Ted Kremenek | 5846720 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 255 | case Stmt::InitListExprClass: { |
| 256 | InitListExpr *IE = cast<InitListExpr>(S); |
| 257 | children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()), |
| 258 | IE->getNumInits()); |
| 259 | return; |
| 260 | } |
| 261 | default: |
| 262 | break; |
| 263 | } |
| 264 | |
| 265 | // Default case for all other statements. |
| 266 | for (Stmt::child_range I = S->children(); I; ++I) { |
| 267 | childrenBuf.push_back(*I); |
| 268 | } |
| 269 | |
| 270 | // This needs to be done *after* childrenBuf has been populated. |
| 271 | children = childrenBuf; |
| 272 | } |
| 273 | |
Ted Kremenek | a34ea07 | 2008-08-04 22:51:42 +0000 | [diff] [blame] | 274 | /// CFGBuilder - This class implements CFG construction from an AST. |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 275 | /// The builder is stateful: an instance of the builder should be used to only |
| 276 | /// construct a single CFG. |
| 277 | /// |
| 278 | /// Example usage: |
| 279 | /// |
| 280 | /// CFGBuilder builder; |
| 281 | /// CFG* cfg = builder.BuildAST(stmt1); |
| 282 | /// |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 283 | /// CFG construction is done via a recursive walk of an AST. We actually parse |
| 284 | /// the AST in reverse order so that the successor of a basic block is |
| 285 | /// constructed prior to its predecessor. This allows us to nicely capture |
| 286 | /// implicit fall-throughs without extra basic blocks. |
Ted Kremenek | c310e93 | 2007-08-21 22:06:14 +0000 | [diff] [blame] | 287 | /// |
Kovarththanan Rajaratnam | ba5fb5a | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 288 | class CFGBuilder { |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 289 | typedef BlockScopePosPair JumpTarget; |
| 290 | typedef BlockScopePosPair JumpSource; |
| 291 | |
Mike Stump | e5af3ce | 2009-07-20 23:24:15 +0000 | [diff] [blame] | 292 | ASTContext *Context; |
Dylan Noblesmith | 6f42b62 | 2012-02-05 02:12:40 +0000 | [diff] [blame] | 293 | OwningPtr<CFG> cfg; |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 294 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 295 | CFGBlock *Block; |
| 296 | CFGBlock *Succ; |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 297 | JumpTarget ContinueJumpTarget; |
| 298 | JumpTarget BreakJumpTarget; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 299 | CFGBlock *SwitchTerminatedBlock; |
| 300 | CFGBlock *DefaultCaseBlock; |
| 301 | CFGBlock *TryTerminatedBlock; |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 302 | |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 303 | // Current position in local scope. |
| 304 | LocalScope::const_iterator ScopePos; |
| 305 | |
| 306 | // LabelMap records the mapping from Label expressions to their jump targets. |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 307 | typedef llvm::DenseMap<LabelDecl*, JumpTarget> LabelMapTy; |
Ted Kremenek | 0cebe3e | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 308 | LabelMapTy LabelMap; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 309 | |
| 310 | // A list of blocks that end with a "goto" that must be backpatched to their |
| 311 | // resolved targets upon completion of CFG construction. |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 312 | typedef std::vector<JumpSource> BackpatchBlocksTy; |
Ted Kremenek | 0cebe3e | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 313 | BackpatchBlocksTy BackpatchBlocks; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 314 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 315 | // A list of labels whose address has been taken (for indirect gotos). |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 316 | typedef llvm::SmallPtrSet<LabelDecl*, 5> LabelSetTy; |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 317 | LabelSetTy AddressTakenLabels; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 318 | |
Zhongxing Xu | 49b4ef3 | 2010-09-16 03:28:18 +0000 | [diff] [blame] | 319 | bool badCFG; |
Ted Kremenek | b8ad5ee | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 320 | const CFG::BuildOptions &BuildOpts; |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 321 | |
| 322 | // State to track for building switch statements. |
| 323 | bool switchExclusivelyCovered; |
Ted Kremenek | 0498247 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 324 | Expr::EvalResult *switchCond; |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 325 | |
| 326 | CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry; |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 327 | const Stmt *lastLookup; |
Zhongxing Xu | 49b4ef3 | 2010-09-16 03:28:18 +0000 | [diff] [blame] | 328 | |
Argyrios Kyrtzidis | 8c6d360 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 329 | // Caches boolean evaluations of expressions to avoid multiple re-evaluations |
| 330 | // during construction of branches for chained logical operators. |
NAKAMURA Takumi | 6955da2 | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 331 | typedef llvm::DenseMap<Expr *, TryResult> CachedBoolEvalsTy; |
| 332 | CachedBoolEvalsTy CachedBoolEvals; |
Argyrios Kyrtzidis | 8c6d360 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 333 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 334 | public: |
Ted Kremenek | b8ad5ee | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 335 | explicit CFGBuilder(ASTContext *astContext, |
| 336 | const CFG::BuildOptions &buildOpts) |
| 337 | : Context(astContext), cfg(new CFG()), // crew a new CFG |
| 338 | Block(NULL), Succ(NULL), |
| 339 | SwitchTerminatedBlock(NULL), DefaultCaseBlock(NULL), |
| 340 | TryTerminatedBlock(NULL), badCFG(false), BuildOpts(buildOpts), |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 341 | switchExclusivelyCovered(false), switchCond(0), |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 342 | cachedEntry(0), lastLookup(0) {} |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 343 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 344 | // buildCFG - Used by external clients to construct the CFG. |
Ted Kremenek | b8ad5ee | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 345 | CFG* buildCFG(const Decl *D, Stmt *Statement); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 346 | |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 347 | bool alwaysAdd(const Stmt *stmt); |
| 348 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 349 | private: |
| 350 | // Visitors to walk an AST and construct the CFG. |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 351 | CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); |
| 352 | CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 353 | CFGBlock *VisitBreakStmt(BreakStmt *B); |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 354 | CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 355 | CFGBlock *VisitCaseStmt(CaseStmt *C); |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 356 | CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 357 | CFGBlock *VisitCompoundStmt(CompoundStmt *C); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 358 | CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C, |
| 359 | AddStmtChoice asc); |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 360 | CFGBlock *VisitContinueStmt(ContinueStmt *C); |
Ted Kremenek | 6960ee6 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 361 | CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 362 | AddStmtChoice asc); |
| 363 | CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S); |
| 364 | CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc); |
| 365 | CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S); |
| 366 | CFGBlock *VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 367 | AddStmtChoice asc); |
| 368 | CFGBlock *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 369 | AddStmtChoice asc); |
| 370 | CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T); |
| 371 | CFGBlock *VisitCXXTryStmt(CXXTryStmt *S); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 372 | CFGBlock *VisitDeclStmt(DeclStmt *DS); |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 373 | CFGBlock *VisitDeclSubExpr(DeclStmt *DS); |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 374 | CFGBlock *VisitDefaultStmt(DefaultStmt *D); |
| 375 | CFGBlock *VisitDoStmt(DoStmt *D); |
Ted Kremenek | 6960ee6 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 376 | CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc); |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 377 | CFGBlock *VisitForStmt(ForStmt *F); |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 378 | CFGBlock *VisitGotoStmt(GotoStmt *G); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 379 | CFGBlock *VisitIfStmt(IfStmt *I); |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 380 | CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 381 | CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I); |
| 382 | CFGBlock *VisitLabelStmt(LabelStmt *L); |
Ted Kremenek | 6960ee6 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 383 | CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc); |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 384 | CFGBlock *VisitLogicalOperator(BinaryOperator *B); |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 385 | std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B, |
| 386 | Stmt *Term, |
| 387 | CFGBlock *TrueBlock, |
| 388 | CFGBlock *FalseBlock); |
Ted Kremenek | 115c1b9 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 389 | CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 390 | CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); |
| 391 | CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S); |
| 392 | CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); |
| 393 | CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S); |
Ted Kremenek | 6960ee6 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 394 | CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 395 | CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S); |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 396 | CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E); |
Ted Kremenek | 6960ee6 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 397 | CFGBlock *VisitReturnStmt(ReturnStmt *R); |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 398 | CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 399 | CFGBlock *VisitSwitchStmt(SwitchStmt *S); |
Ted Kremenek | 6960ee6 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 400 | CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 401 | AddStmtChoice asc); |
Zhanyong Wan | 99cae5b | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 402 | CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 403 | CFGBlock *VisitWhileStmt(WhileStmt *W); |
Mike Stump | cd7bf23 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 404 | |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 405 | CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd); |
| 406 | CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc); |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 407 | CFGBlock *VisitChildren(Stmt *S); |
Ted Kremenek | 55331da | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 408 | CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc); |
Mike Stump | cd7bf23 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 409 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 410 | // Visitors to walk an AST and generate destructors of temporaries in |
| 411 | // full expression. |
| 412 | CFGBlock *VisitForTemporaryDtors(Stmt *E, bool BindToTemporary = false); |
| 413 | CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E); |
| 414 | CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E); |
| 415 | CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors(CXXBindTemporaryExpr *E, |
| 416 | bool BindToTemporary); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 417 | CFGBlock * |
| 418 | VisitConditionalOperatorForTemporaryDtors(AbstractConditionalOperator *E, |
| 419 | bool BindToTemporary); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 420 | |
Ted Kremenek | 274f433 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 421 | // NYS == Not Yet Supported |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 422 | CFGBlock *NYS() { |
Ted Kremenek | 4102af9 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 423 | badCFG = true; |
| 424 | return Block; |
| 425 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 426 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 427 | void autoCreateBlock() { if (!Block) Block = createBlock(); } |
| 428 | CFGBlock *createBlock(bool add_successor = true); |
Chandler Carruth | dba3fb5 | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 429 | CFGBlock *createNoReturnBlock(); |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 430 | |
Zhongxing Xu | df11989 | 2010-06-03 06:43:23 +0000 | [diff] [blame] | 431 | CFGBlock *addStmt(Stmt *S) { |
| 432 | return Visit(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 433 | } |
Sean Hunt | cbb6748 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 434 | CFGBlock *addInitializer(CXXCtorInitializer *I); |
Zhongxing Xu | 6a16a30 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 435 | void addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 436 | LocalScope::const_iterator E, Stmt *S); |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 437 | void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD); |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 438 | |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 439 | // Local scopes creation. |
| 440 | LocalScope* createOrReuseLocalScope(LocalScope* Scope); |
| 441 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 442 | void addLocalScopeForStmt(Stmt *S); |
| 443 | LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS, LocalScope* Scope = NULL); |
| 444 | LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = NULL); |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 445 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 446 | void addLocalScopeAndDtors(Stmt *S); |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 447 | |
| 448 | // Interface to CFGBlock - adding CFGElements. |
Ted Kremenek | d40066b | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 449 | void appendStmt(CFGBlock *B, const Stmt *S) { |
Ted Kremenek | 74fb1a4 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 450 | if (alwaysAdd(S) && cachedEntry) |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 451 | cachedEntry->second = B; |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 452 | |
Jordy Rose | ac73ea8 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 453 | // All block-level expressions should have already been IgnoreParens()ed. |
| 454 | assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S); |
Ted Kremenek | d40066b | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 455 | B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext()); |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 456 | } |
Sean Hunt | cbb6748 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 457 | void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) { |
Marcin Swiderski | 82bc3fd | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 458 | B->appendInitializer(I, cfg->getBumpVectorContext()); |
| 459 | } |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 460 | void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) { |
| 461 | B->appendBaseDtor(BS, cfg->getBumpVectorContext()); |
| 462 | } |
| 463 | void appendMemberDtor(CFGBlock *B, FieldDecl *FD) { |
| 464 | B->appendMemberDtor(FD, cfg->getBumpVectorContext()); |
| 465 | } |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 466 | void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) { |
| 467 | B->appendTemporaryDtor(E, cfg->getBumpVectorContext()); |
| 468 | } |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 469 | void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 470 | B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext()); |
| 471 | } |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 472 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 473 | void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 53de134 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 474 | LocalScope::const_iterator B, LocalScope::const_iterator E); |
| 475 | |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 476 | void addSuccessor(CFGBlock *B, CFGBlock *S) { |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 477 | B->addSuccessor(S, cfg->getBumpVectorContext()); |
| 478 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 479 | |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 480 | /// Try and evaluate an expression to an integer constant. |
| 481 | bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) { |
| 482 | if (!BuildOpts.PruneTriviallyFalseEdges) |
| 483 | return false; |
| 484 | return !S->isTypeDependent() && |
Ted Kremenek | f8adeef | 2011-04-04 20:30:58 +0000 | [diff] [blame] | 485 | !S->isValueDependent() && |
Richard Smith | 51f4708 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 486 | S->EvaluateAsRValue(outResult, *Context); |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 487 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 488 | |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 489 | /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1 |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 490 | /// if we can evaluate to a known value, otherwise return -1. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 491 | TryResult tryEvaluateBool(Expr *S) { |
Richard Smith | 85df96c | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 492 | if (!BuildOpts.PruneTriviallyFalseEdges || |
Argyrios Kyrtzidis | 8c6d360 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 493 | S->isTypeDependent() || S->isValueDependent()) |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 494 | return TryResult(); |
Argyrios Kyrtzidis | 8c6d360 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 495 | |
| 496 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) { |
| 497 | if (Bop->isLogicalOp()) { |
| 498 | // Check the cache first. |
NAKAMURA Takumi | 6955da2 | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 499 | CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S); |
| 500 | if (I != CachedBoolEvals.end()) |
Argyrios Kyrtzidis | 8c6d360 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 501 | return I->second; // already in map; |
NAKAMURA Takumi | 9260f61 | 2012-03-25 06:30:32 +0000 | [diff] [blame] | 502 | |
| 503 | // Retrieve result at first, or the map might be updated. |
| 504 | TryResult Result = evaluateAsBooleanConditionNoCache(S); |
| 505 | CachedBoolEvals[S] = Result; // update or insert |
| 506 | return Result; |
Argyrios Kyrtzidis | 8c6d360 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 507 | } |
Ted Kremenek | 3d1125b | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 508 | else { |
| 509 | switch (Bop->getOpcode()) { |
| 510 | default: break; |
| 511 | // For 'x & 0' and 'x * 0', we can determine that |
| 512 | // the value is always false. |
| 513 | case BO_Mul: |
| 514 | case BO_And: { |
| 515 | // If either operand is zero, we know the value |
| 516 | // must be false. |
| 517 | llvm::APSInt IntVal; |
| 518 | if (Bop->getLHS()->EvaluateAsInt(IntVal, *Context)) { |
| 519 | if (IntVal.getBoolValue() == false) { |
| 520 | return TryResult(false); |
| 521 | } |
| 522 | } |
| 523 | if (Bop->getRHS()->EvaluateAsInt(IntVal, *Context)) { |
| 524 | if (IntVal.getBoolValue() == false) { |
| 525 | return TryResult(false); |
| 526 | } |
| 527 | } |
| 528 | } |
| 529 | break; |
| 530 | } |
| 531 | } |
Argyrios Kyrtzidis | 8c6d360 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | return evaluateAsBooleanConditionNoCache(S); |
| 535 | } |
| 536 | |
| 537 | /// \brief Evaluate as boolean \param E without using the cache. |
| 538 | TryResult evaluateAsBooleanConditionNoCache(Expr *E) { |
| 539 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) { |
| 540 | if (Bop->isLogicalOp()) { |
| 541 | TryResult LHS = tryEvaluateBool(Bop->getLHS()); |
| 542 | if (LHS.isKnown()) { |
| 543 | // We were able to evaluate the LHS, see if we can get away with not |
| 544 | // evaluating the RHS: 0 && X -> 0, 1 || X -> 1 |
| 545 | if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 546 | return LHS.isTrue(); |
| 547 | |
| 548 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 549 | if (RHS.isKnown()) { |
| 550 | if (Bop->getOpcode() == BO_LOr) |
| 551 | return LHS.isTrue() || RHS.isTrue(); |
| 552 | else |
| 553 | return LHS.isTrue() && RHS.isTrue(); |
| 554 | } |
| 555 | } else { |
| 556 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 557 | if (RHS.isKnown()) { |
| 558 | // We can't evaluate the LHS; however, sometimes the result |
| 559 | // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. |
| 560 | if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 561 | return RHS.isTrue(); |
| 562 | } |
| 563 | } |
| 564 | |
| 565 | return TryResult(); |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | bool Result; |
| 570 | if (E->EvaluateAsBooleanCondition(Result, *Context)) |
| 571 | return Result; |
| 572 | |
| 573 | return TryResult(); |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 574 | } |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 575 | |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 576 | }; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 577 | |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 578 | inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder, |
| 579 | const Stmt *stmt) const { |
| 580 | return builder.alwaysAdd(stmt) || kind == AlwaysAdd; |
| 581 | } |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 582 | |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 583 | bool CFGBuilder::alwaysAdd(const Stmt *stmt) { |
Ted Kremenek | 74fb1a4 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 584 | bool shouldAdd = BuildOpts.alwaysAdd(stmt); |
| 585 | |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 586 | if (!BuildOpts.forcedBlkExprs) |
Ted Kremenek | 74fb1a4 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 587 | return shouldAdd; |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 588 | |
| 589 | if (lastLookup == stmt) { |
| 590 | if (cachedEntry) { |
| 591 | assert(cachedEntry->first == stmt); |
| 592 | return true; |
| 593 | } |
Ted Kremenek | 74fb1a4 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 594 | return shouldAdd; |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 595 | } |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 596 | |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 597 | lastLookup = stmt; |
| 598 | |
| 599 | // Perform the lookup! |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 600 | CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs; |
| 601 | |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 602 | if (!fb) { |
| 603 | // No need to update 'cachedEntry', since it will always be null. |
| 604 | assert(cachedEntry == 0); |
Ted Kremenek | 74fb1a4 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 605 | return shouldAdd; |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 606 | } |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 607 | |
| 608 | CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt); |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 609 | if (itr == fb->end()) { |
| 610 | cachedEntry = 0; |
Ted Kremenek | 74fb1a4 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 611 | return shouldAdd; |
Ted Kremenek | a8d459e | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 612 | } |
| 613 | |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 614 | cachedEntry = &*itr; |
| 615 | return true; |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 616 | } |
| 617 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 618 | // FIXME: Add support for dependent-sized array types in C++? |
| 619 | // Does it even make sense to build a CFG for an uninstantiated template? |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 620 | static const VariableArrayType *FindVA(const Type *t) { |
| 621 | while (const ArrayType *vt = dyn_cast<ArrayType>(t)) { |
| 622 | if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt)) |
Ted Kremenek | 610a09e | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 623 | if (vat->getSizeExpr()) |
| 624 | return vat; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 625 | |
Ted Kremenek | 610a09e | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 626 | t = vt->getElementType().getTypePtr(); |
| 627 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 628 | |
Ted Kremenek | 610a09e | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 629 | return 0; |
| 630 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 631 | |
| 632 | /// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an |
| 633 | /// arbitrary statement. Examples include a single expression or a function |
| 634 | /// body (compound statement). The ownership of the returned CFG is |
| 635 | /// transferred to the caller. If CFG construction fails, this method returns |
| 636 | /// NULL. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 637 | CFG* CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) { |
Ted Kremenek | 0ba497b | 2009-10-20 23:46:25 +0000 | [diff] [blame] | 638 | assert(cfg.get()); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 639 | if (!Statement) |
| 640 | return NULL; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 641 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 642 | // Create an empty block that will serve as the exit block for the CFG. Since |
| 643 | // this is the first block added to the CFG, it will be implicitly registered |
| 644 | // as the exit block. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 645 | Succ = createBlock(); |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 646 | assert(Succ == &cfg->getExit()); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 647 | Block = NULL; // the EXIT block is empty. Create all other blocks lazily. |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 648 | |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 649 | if (BuildOpts.AddImplicitDtors) |
| 650 | if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D)) |
| 651 | addImplicitDtorsForDestructor(DD); |
| 652 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 653 | // Visit the statements and create the CFG. |
Zhongxing Xu | 1b3b7cb | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 654 | CFGBlock *B = addStmt(Statement); |
| 655 | |
| 656 | if (badCFG) |
| 657 | return NULL; |
| 658 | |
Marcin Swiderski | 82bc3fd | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 659 | // For C++ constructor add initializers to CFG. |
| 660 | if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) { |
| 661 | for (CXXConstructorDecl::init_const_reverse_iterator I = CD->init_rbegin(), |
| 662 | E = CD->init_rend(); I != E; ++I) { |
| 663 | B = addInitializer(*I); |
| 664 | if (badCFG) |
| 665 | return NULL; |
| 666 | } |
| 667 | } |
| 668 | |
Zhongxing Xu | 1b3b7cb | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 669 | if (B) |
| 670 | Succ = B; |
Mike Stump | b978a44 | 2010-01-21 02:21:40 +0000 | [diff] [blame] | 671 | |
Zhongxing Xu | 1b3b7cb | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 672 | // Backpatch the gotos whose label -> block mappings we didn't know when we |
| 673 | // encountered them. |
| 674 | for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(), |
| 675 | E = BackpatchBlocks.end(); I != E; ++I ) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 676 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 677 | CFGBlock *B = I->block; |
| 678 | GotoStmt *G = cast<GotoStmt>(B->getTerminator()); |
Zhongxing Xu | 1b3b7cb | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 679 | LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 680 | |
Zhongxing Xu | 1b3b7cb | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 681 | // If there is no target for the goto, then we are looking at an |
| 682 | // incomplete AST. Handle this by not registering a successor. |
| 683 | if (LI == LabelMap.end()) continue; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 684 | |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 685 | JumpTarget JT = LI->second; |
Ted Kremenek | 9ce5270 | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 686 | prependAutomaticObjDtorsWithTerminator(B, I->scopePosition, |
| 687 | JT.scopePosition); |
| 688 | addSuccessor(B, JT.block); |
Zhongxing Xu | 1b3b7cb | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | // Add successors to the Indirect Goto Dispatch block (if we have one). |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 692 | if (CFGBlock *B = cfg->getIndirectGotoBlock()) |
Zhongxing Xu | 1b3b7cb | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 693 | for (LabelSetTy::iterator I = AddressTakenLabels.begin(), |
| 694 | E = AddressTakenLabels.end(); I != E; ++I ) { |
| 695 | |
| 696 | // Lookup the target block. |
| 697 | LabelMapTy::iterator LI = LabelMap.find(*I); |
| 698 | |
| 699 | // If there is no target block that contains label, then we are looking |
| 700 | // at an incomplete AST. Handle this by not registering a successor. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 701 | if (LI == LabelMap.end()) continue; |
Zhongxing Xu | 1b3b7cb | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 702 | |
Ted Kremenek | 9ce5270 | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 703 | addSuccessor(B, LI->second.block); |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 704 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 705 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 706 | // Create an empty entry block that has no predecessors. |
Ted Kremenek | 322f58d | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 707 | cfg->setEntry(createBlock()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 708 | |
Zhongxing Xu | 1b3b7cb | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 709 | return cfg.take(); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 710 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 711 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 712 | /// createBlock - Used to lazily create blocks that are connected |
| 713 | /// to the current (global) succcessor. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 714 | CFGBlock *CFGBuilder::createBlock(bool add_successor) { |
| 715 | CFGBlock *B = cfg->createBlock(); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 716 | if (add_successor && Succ) |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 717 | addSuccessor(B, Succ); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 718 | return B; |
| 719 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 720 | |
Chandler Carruth | dba3fb5 | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 721 | /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the |
| 722 | /// CFG. It is *not* connected to the current (global) successor, and instead |
| 723 | /// directly tied to the exit block in order to be reachable. |
| 724 | CFGBlock *CFGBuilder::createNoReturnBlock() { |
| 725 | CFGBlock *B = createBlock(false); |
Chandler Carruth | 8375416 | 2011-09-13 09:53:55 +0000 | [diff] [blame] | 726 | B->setHasNoReturnElement(); |
Chandler Carruth | dba3fb5 | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 727 | addSuccessor(B, &cfg->getExit()); |
| 728 | return B; |
| 729 | } |
| 730 | |
Marcin Swiderski | 82bc3fd | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 731 | /// addInitializer - Add C++ base or member initializer element to CFG. |
Sean Hunt | cbb6748 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 732 | CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) { |
Marcin Swiderski | 82bc3fd | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 733 | if (!BuildOpts.AddInitializers) |
| 734 | return Block; |
| 735 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 736 | bool IsReference = false; |
| 737 | bool HasTemporaries = false; |
| 738 | |
| 739 | // Destructors of temporaries in initialization expression should be called |
| 740 | // after initialization finishes. |
| 741 | Expr *Init = I->getInit(); |
| 742 | if (Init) { |
Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 743 | if (FieldDecl *FD = I->getAnyMember()) |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 744 | IsReference = FD->getType()->isReferenceType(); |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 745 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 746 | |
Jordan Rose | 5a1ffe9 | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 747 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 748 | // Generate destructors for temporaries in initialization expression. |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 749 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 750 | IsReference); |
| 751 | } |
| 752 | } |
| 753 | |
Marcin Swiderski | 82bc3fd | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 754 | autoCreateBlock(); |
| 755 | appendInitializer(Block, I); |
| 756 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 757 | if (Init) { |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 758 | if (HasTemporaries) { |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 759 | // For expression with temporaries go directly to subexpression to omit |
| 760 | // generating destructors for the second time. |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 761 | return Visit(cast<ExprWithCleanups>(Init)->getSubExpr()); |
| 762 | } |
| 763 | return Visit(Init); |
Marcin Swiderski | 82bc3fd | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 764 | } |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 765 | |
Marcin Swiderski | 82bc3fd | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 766 | return Block; |
| 767 | } |
| 768 | |
Douglas Gregor | 2d9eb21 | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 769 | /// \brief Retrieve the type of the temporary object whose lifetime was |
| 770 | /// extended by a local reference with the given initializer. |
| 771 | static QualType getReferenceInitTemporaryType(ASTContext &Context, |
| 772 | const Expr *Init) { |
| 773 | while (true) { |
| 774 | // Skip parentheses. |
| 775 | Init = Init->IgnoreParens(); |
| 776 | |
| 777 | // Skip through cleanups. |
| 778 | if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) { |
| 779 | Init = EWC->getSubExpr(); |
| 780 | continue; |
| 781 | } |
| 782 | |
| 783 | // Skip through the temporary-materialization expression. |
| 784 | if (const MaterializeTemporaryExpr *MTE |
| 785 | = dyn_cast<MaterializeTemporaryExpr>(Init)) { |
| 786 | Init = MTE->GetTemporaryExpr(); |
| 787 | continue; |
| 788 | } |
| 789 | |
| 790 | // Skip derived-to-base and no-op casts. |
| 791 | if (const CastExpr *CE = dyn_cast<CastExpr>(Init)) { |
| 792 | if ((CE->getCastKind() == CK_DerivedToBase || |
| 793 | CE->getCastKind() == CK_UncheckedDerivedToBase || |
| 794 | CE->getCastKind() == CK_NoOp) && |
| 795 | Init->getType()->isRecordType()) { |
| 796 | Init = CE->getSubExpr(); |
| 797 | continue; |
| 798 | } |
| 799 | } |
| 800 | |
| 801 | // Skip member accesses into rvalues. |
| 802 | if (const MemberExpr *ME = dyn_cast<MemberExpr>(Init)) { |
| 803 | if (!ME->isArrow() && ME->getBase()->isRValue()) { |
| 804 | Init = ME->getBase(); |
| 805 | continue; |
| 806 | } |
| 807 | } |
| 808 | |
| 809 | break; |
| 810 | } |
| 811 | |
| 812 | return Init->getType(); |
| 813 | } |
| 814 | |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 815 | /// addAutomaticObjDtors - Add to current block automatic objects destructors |
| 816 | /// for objects in range of local scope positions. Use S as trigger statement |
| 817 | /// for destructors. |
Zhongxing Xu | 6a16a30 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 818 | void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 819 | LocalScope::const_iterator E, Stmt *S) { |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 820 | if (!BuildOpts.AddImplicitDtors) |
Zhongxing Xu | 6a16a30 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 821 | return; |
| 822 | |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 823 | if (B == E) |
Zhongxing Xu | 6a16a30 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 824 | return; |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 825 | |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 826 | // We need to append the destructors in reverse order, but any one of them |
| 827 | // may be a no-return destructor which changes the CFG. As a result, buffer |
| 828 | // this sequence up and replay them in reverse order when appending onto the |
| 829 | // CFGBlock(s). |
| 830 | SmallVector<VarDecl*, 10> Decls; |
| 831 | Decls.reserve(B.distance(E)); |
| 832 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 833 | Decls.push_back(*I); |
| 834 | |
| 835 | for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(), |
| 836 | E = Decls.rend(); |
| 837 | I != E; ++I) { |
| 838 | // If this destructor is marked as a no-return destructor, we need to |
| 839 | // create a new block for the destructor which does not have as a successor |
| 840 | // anything built thus far: control won't flow out of this block. |
Ted Kremenek | 88237bf | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 841 | QualType Ty = (*I)->getType(); |
| 842 | if (Ty->isReferenceType()) { |
Douglas Gregor | 2d9eb21 | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 843 | Ty = getReferenceInitTemporaryType(*Context, (*I)->getInit()); |
Douglas Gregor | 2d9eb21 | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 844 | } |
Ted Kremenek | 88237bf | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 845 | Ty = Context->getBaseElementType(Ty); |
| 846 | |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 847 | const CXXDestructorDecl *Dtor = Ty->getAsCXXRecordDecl()->getDestructor(); |
Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 848 | if (Dtor->isNoReturn()) |
Chandler Carruth | dba3fb5 | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 849 | Block = createNoReturnBlock(); |
| 850 | else |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 851 | autoCreateBlock(); |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 852 | |
| 853 | appendAutomaticObjDtor(Block, *I, S); |
| 854 | } |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 855 | } |
| 856 | |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 857 | /// addImplicitDtorsForDestructor - Add implicit destructors generated for |
| 858 | /// base and member objects in destructor. |
| 859 | void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) { |
| 860 | assert (BuildOpts.AddImplicitDtors |
| 861 | && "Can be called only when dtors should be added"); |
| 862 | const CXXRecordDecl *RD = DD->getParent(); |
| 863 | |
| 864 | // At the end destroy virtual base objects. |
| 865 | for (CXXRecordDecl::base_class_const_iterator VI = RD->vbases_begin(), |
| 866 | VE = RD->vbases_end(); VI != VE; ++VI) { |
| 867 | const CXXRecordDecl *CD = VI->getType()->getAsCXXRecordDecl(); |
| 868 | if (!CD->hasTrivialDestructor()) { |
| 869 | autoCreateBlock(); |
| 870 | appendBaseDtor(Block, VI); |
| 871 | } |
| 872 | } |
| 873 | |
| 874 | // Before virtual bases destroy direct base objects. |
| 875 | for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(), |
| 876 | BE = RD->bases_end(); BI != BE; ++BI) { |
David Blaikie | 23661d3 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 877 | if (!BI->isVirtual()) { |
| 878 | const CXXRecordDecl *CD = BI->getType()->getAsCXXRecordDecl(); |
| 879 | if (!CD->hasTrivialDestructor()) { |
| 880 | autoCreateBlock(); |
| 881 | appendBaseDtor(Block, BI); |
| 882 | } |
| 883 | } |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 884 | } |
| 885 | |
| 886 | // First destroy member objects. |
| 887 | for (CXXRecordDecl::field_iterator FI = RD->field_begin(), |
| 888 | FE = RD->field_end(); FI != FE; ++FI) { |
Marcin Swiderski | 8c5e5d6 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 889 | // Check for constant size array. Set type to array element type. |
| 890 | QualType QT = FI->getType(); |
| 891 | if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 892 | if (AT->getSize() == 0) |
| 893 | continue; |
| 894 | QT = AT->getElementType(); |
| 895 | } |
| 896 | |
| 897 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 898 | if (!CD->hasTrivialDestructor()) { |
| 899 | autoCreateBlock(); |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 900 | appendMemberDtor(Block, *FI); |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 901 | } |
| 902 | } |
| 903 | } |
| 904 | |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 905 | /// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either |
| 906 | /// way return valid LocalScope object. |
| 907 | LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) { |
| 908 | if (!Scope) { |
Ted Kremenek | fe59b74 | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 909 | llvm::BumpPtrAllocator &alloc = cfg->getAllocator(); |
| 910 | Scope = alloc.Allocate<LocalScope>(); |
| 911 | BumpVectorContext ctx(alloc); |
| 912 | new (Scope) LocalScope(ctx, ScopePos); |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 913 | } |
| 914 | return Scope; |
| 915 | } |
| 916 | |
| 917 | /// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement |
Zhongxing Xu | 02acdfa | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 918 | /// that should create implicit scope (e.g. if/else substatements). |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 919 | void CFGBuilder::addLocalScopeForStmt(Stmt *S) { |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 920 | if (!BuildOpts.AddImplicitDtors) |
Zhongxing Xu | 02acdfa | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 921 | return; |
| 922 | |
| 923 | LocalScope *Scope = 0; |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 924 | |
| 925 | // For compound statement we will be creating explicit scope. |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 926 | if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) { |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 927 | for (CompoundStmt::body_iterator BI = CS->body_begin(), BE = CS->body_end() |
| 928 | ; BI != BE; ++BI) { |
Chandler Carruth | a1364be | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 929 | Stmt *SI = (*BI)->stripLabelLikeStatements(); |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 930 | if (DeclStmt *DS = dyn_cast<DeclStmt>(SI)) |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 931 | Scope = addLocalScopeForDeclStmt(DS, Scope); |
| 932 | } |
Zhongxing Xu | 02acdfa | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 933 | return; |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 934 | } |
| 935 | |
| 936 | // For any other statement scope will be implicit and as such will be |
| 937 | // interesting only for DeclStmt. |
Chandler Carruth | a1364be | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 938 | if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements())) |
Zhongxing Xu | b6edff5 | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 939 | addLocalScopeForDeclStmt(DS); |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | /// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will |
| 943 | /// reuse Scope if not NULL. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 944 | LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS, |
Zhongxing Xu | b6edff5 | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 945 | LocalScope* Scope) { |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 946 | if (!BuildOpts.AddImplicitDtors) |
| 947 | return Scope; |
| 948 | |
| 949 | for (DeclStmt::decl_iterator DI = DS->decl_begin(), DE = DS->decl_end() |
| 950 | ; DI != DE; ++DI) { |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 951 | if (VarDecl *VD = dyn_cast<VarDecl>(*DI)) |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 952 | Scope = addLocalScopeForVarDecl(VD, Scope); |
| 953 | } |
| 954 | return Scope; |
| 955 | } |
| 956 | |
| 957 | /// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will |
| 958 | /// create add scope for automatic objects and temporary objects bound to |
| 959 | /// const reference. Will reuse Scope if not NULL. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 960 | LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD, |
Zhongxing Xu | b6edff5 | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 961 | LocalScope* Scope) { |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 962 | if (!BuildOpts.AddImplicitDtors) |
| 963 | return Scope; |
| 964 | |
| 965 | // Check if variable is local. |
| 966 | switch (VD->getStorageClass()) { |
| 967 | case SC_None: |
| 968 | case SC_Auto: |
| 969 | case SC_Register: |
| 970 | break; |
| 971 | default: return Scope; |
| 972 | } |
| 973 | |
| 974 | // Check for const references bound to temporary. Set type to pointee. |
| 975 | QualType QT = VD->getType(); |
Douglas Gregor | 2d9eb21 | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 976 | if (QT.getTypePtr()->isReferenceType()) { |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 977 | if (!VD->extendsLifetimeOfTemporary()) |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 978 | return Scope; |
Douglas Gregor | 2d9eb21 | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 979 | |
| 980 | QT = getReferenceInitTemporaryType(*Context, VD->getInit()); |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 981 | } |
| 982 | |
Marcin Swiderski | b1c5287 | 2010-10-25 07:00:40 +0000 | [diff] [blame] | 983 | // Check for constant size array. Set type to array element type. |
Douglas Gregor | 2d9eb21 | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 984 | while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
Marcin Swiderski | b1c5287 | 2010-10-25 07:00:40 +0000 | [diff] [blame] | 985 | if (AT->getSize() == 0) |
| 986 | return Scope; |
| 987 | QT = AT->getElementType(); |
| 988 | } |
Zhongxing Xu | 4e493e0 | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 989 | |
Marcin Swiderski | b1c5287 | 2010-10-25 07:00:40 +0000 | [diff] [blame] | 990 | // Check if type is a C++ class with non-trivial destructor. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 991 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
David Blaikie | 23661d3 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 992 | if (!CD->hasTrivialDestructor()) { |
Zhongxing Xu | 4e493e0 | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 993 | // Add the variable to scope |
| 994 | Scope = createOrReuseLocalScope(Scope); |
| 995 | Scope->addVar(VD); |
| 996 | ScopePos = Scope->begin(); |
| 997 | } |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 998 | return Scope; |
| 999 | } |
| 1000 | |
| 1001 | /// addLocalScopeAndDtors - For given statement add local scope for it and |
| 1002 | /// add destructors that will cleanup the scope. Will reuse Scope if not NULL. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1003 | void CFGBuilder::addLocalScopeAndDtors(Stmt *S) { |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1004 | if (!BuildOpts.AddImplicitDtors) |
| 1005 | return; |
| 1006 | |
| 1007 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Zhongxing Xu | 02acdfa | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1008 | addLocalScopeForStmt(S); |
Marcin Swiderski | 239a7c4 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1009 | addAutomaticObjDtors(ScopePos, scopeBeginPos, S); |
| 1010 | } |
| 1011 | |
Marcin Swiderski | 53de134 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1012 | /// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for |
| 1013 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1014 | /// Elements will be prepended to physical beginning of the vector which |
| 1015 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1016 | /// destructors call site. |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1017 | /// FIXME: This mechanism for adding automatic destructors doesn't handle |
| 1018 | /// no-return destructors properly. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1019 | void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 53de134 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1020 | LocalScope::const_iterator B, LocalScope::const_iterator E) { |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1021 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1022 | CFGBlock::iterator InsertPos |
| 1023 | = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C); |
| 1024 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1025 | InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I, |
| 1026 | Blk->getTerminator()); |
Marcin Swiderski | 53de134 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1027 | } |
| 1028 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1029 | /// Visit - Walk the subtree of a statement and add extra |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1030 | /// blocks for ternary operators, &&, and ||. We also process "," and |
| 1031 | /// DeclStmts (which may contain nested control-flow). |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1032 | CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) { |
Ted Kremenek | f42e337 | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 1033 | if (!S) { |
| 1034 | badCFG = true; |
| 1035 | return 0; |
| 1036 | } |
Jordy Rose | ac73ea8 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 1037 | |
| 1038 | if (Expr *E = dyn_cast<Expr>(S)) |
| 1039 | S = E->IgnoreParens(); |
| 1040 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1041 | switch (S->getStmtClass()) { |
| 1042 | default: |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1043 | return VisitStmt(S, asc); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1044 | |
| 1045 | case Stmt::AddrLabelExprClass: |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1046 | return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1047 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1048 | case Stmt::BinaryConditionalOperatorClass: |
| 1049 | return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc); |
| 1050 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1051 | case Stmt::BinaryOperatorClass: |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1052 | return VisitBinaryOperator(cast<BinaryOperator>(S), asc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1053 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1054 | case Stmt::BlockExprClass: |
Ted Kremenek | 55331da | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 1055 | return VisitNoRecurse(cast<Expr>(S), asc); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1056 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1057 | case Stmt::BreakStmtClass: |
| 1058 | return VisitBreakStmt(cast<BreakStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1059 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1060 | case Stmt::CallExprClass: |
Ted Kremenek | a427f1d | 2010-08-31 18:47:34 +0000 | [diff] [blame] | 1061 | case Stmt::CXXOperatorCallExprClass: |
John McCall | 1de8533 | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 1062 | case Stmt::CXXMemberCallExprClass: |
Richard Smith | 9fcce65 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1063 | case Stmt::UserDefinedLiteralClass: |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1064 | return VisitCallExpr(cast<CallExpr>(S), asc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1065 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1066 | case Stmt::CaseStmtClass: |
| 1067 | return VisitCaseStmt(cast<CaseStmt>(S)); |
| 1068 | |
| 1069 | case Stmt::ChooseExprClass: |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1070 | return VisitChooseExpr(cast<ChooseExpr>(S), asc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1071 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1072 | case Stmt::CompoundStmtClass: |
| 1073 | return VisitCompoundStmt(cast<CompoundStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1074 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1075 | case Stmt::ConditionalOperatorClass: |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1076 | return VisitConditionalOperator(cast<ConditionalOperator>(S), asc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1077 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1078 | case Stmt::ContinueStmtClass: |
| 1079 | return VisitContinueStmt(cast<ContinueStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1080 | |
Ted Kremenek | 021c8af | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 1081 | case Stmt::CXXCatchStmtClass: |
| 1082 | return VisitCXXCatchStmt(cast<CXXCatchStmt>(S)); |
| 1083 | |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1084 | case Stmt::ExprWithCleanupsClass: |
| 1085 | return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc); |
Ted Kremenek | 47e331e | 2010-08-28 00:19:02 +0000 | [diff] [blame] | 1086 | |
Jordan Rose | b66529d | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 1087 | case Stmt::CXXDefaultArgExprClass: |
| 1088 | // FIXME: The expression inside a CXXDefaultArgExpr is owned by the |
| 1089 | // called function's declaration, not by the caller. If we simply add |
| 1090 | // this expression to the CFG, we could end up with the same Expr |
| 1091 | // appearing multiple times. |
| 1092 | // PR13385 / <rdar://problem/12156507> |
| 1093 | return VisitStmt(S, asc); |
| 1094 | |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 1095 | case Stmt::CXXBindTemporaryExprClass: |
| 1096 | return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc); |
| 1097 | |
Zhongxing Xu | 81bc7d0 | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 1098 | case Stmt::CXXConstructExprClass: |
| 1099 | return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc); |
| 1100 | |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 1101 | case Stmt::CXXFunctionalCastExprClass: |
| 1102 | return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc); |
| 1103 | |
Zhongxing Xu | 81bc7d0 | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 1104 | case Stmt::CXXTemporaryObjectExprClass: |
| 1105 | return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc); |
| 1106 | |
Ted Kremenek | 021c8af | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 1107 | case Stmt::CXXThrowExprClass: |
| 1108 | return VisitCXXThrowExpr(cast<CXXThrowExpr>(S)); |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 1109 | |
Ted Kremenek | 021c8af | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 1110 | case Stmt::CXXTryStmtClass: |
| 1111 | return VisitCXXTryStmt(cast<CXXTryStmt>(S)); |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 1112 | |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1113 | case Stmt::CXXForRangeStmtClass: |
| 1114 | return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S)); |
| 1115 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1116 | case Stmt::DeclStmtClass: |
| 1117 | return VisitDeclStmt(cast<DeclStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1118 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1119 | case Stmt::DefaultStmtClass: |
| 1120 | return VisitDefaultStmt(cast<DefaultStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1121 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1122 | case Stmt::DoStmtClass: |
| 1123 | return VisitDoStmt(cast<DoStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1124 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1125 | case Stmt::ForStmtClass: |
| 1126 | return VisitForStmt(cast<ForStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1127 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1128 | case Stmt::GotoStmtClass: |
| 1129 | return VisitGotoStmt(cast<GotoStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1130 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1131 | case Stmt::IfStmtClass: |
| 1132 | return VisitIfStmt(cast<IfStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1133 | |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1134 | case Stmt::ImplicitCastExprClass: |
| 1135 | return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc); |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 1136 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1137 | case Stmt::IndirectGotoStmtClass: |
| 1138 | return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1139 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1140 | case Stmt::LabelStmtClass: |
| 1141 | return VisitLabelStmt(cast<LabelStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1142 | |
Ted Kremenek | 83748e2 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 1143 | case Stmt::LambdaExprClass: |
| 1144 | return VisitLambdaExpr(cast<LambdaExpr>(S), asc); |
| 1145 | |
Ted Kremenek | 115c1b9 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 1146 | case Stmt::MemberExprClass: |
| 1147 | return VisitMemberExpr(cast<MemberExpr>(S), asc); |
| 1148 | |
Ted Kremenek | 6a9065a | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 1149 | case Stmt::NullStmtClass: |
| 1150 | return Block; |
| 1151 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1152 | case Stmt::ObjCAtCatchStmtClass: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1153 | return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); |
| 1154 | |
Ted Kremenek | 8e282c3 | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 1155 | case Stmt::ObjCAutoreleasePoolStmtClass: |
| 1156 | return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S)); |
| 1157 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1158 | case Stmt::ObjCAtSynchronizedStmtClass: |
| 1159 | return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1160 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1161 | case Stmt::ObjCAtThrowStmtClass: |
| 1162 | return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1163 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1164 | case Stmt::ObjCAtTryStmtClass: |
| 1165 | return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1166 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1167 | case Stmt::ObjCForCollectionStmtClass: |
| 1168 | return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1169 | |
Ted Kremenek | 6a9065a | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 1170 | case Stmt::OpaqueValueExprClass: |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1171 | return Block; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1172 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1173 | case Stmt::PseudoObjectExprClass: |
| 1174 | return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S)); |
| 1175 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1176 | case Stmt::ReturnStmtClass: |
| 1177 | return VisitReturnStmt(cast<ReturnStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1178 | |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 1179 | case Stmt::UnaryExprOrTypeTraitExprClass: |
| 1180 | return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S), |
| 1181 | asc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1182 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1183 | case Stmt::StmtExprClass: |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1184 | return VisitStmtExpr(cast<StmtExpr>(S), asc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1185 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1186 | case Stmt::SwitchStmtClass: |
| 1187 | return VisitSwitchStmt(cast<SwitchStmt>(S)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1188 | |
Zhanyong Wan | 99cae5b | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1189 | case Stmt::UnaryOperatorClass: |
| 1190 | return VisitUnaryOperator(cast<UnaryOperator>(S), asc); |
| 1191 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1192 | case Stmt::WhileStmtClass: |
| 1193 | return VisitWhileStmt(cast<WhileStmt>(S)); |
| 1194 | } |
| 1195 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1196 | |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1197 | CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1198 | if (asc.alwaysAdd(*this, S)) { |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1199 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1200 | appendStmt(Block, S); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1201 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1202 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1203 | return VisitChildren(S); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 1204 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1205 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1206 | /// VisitChildren - Visit the children of a Stmt. |
Ted Kremenek | 5846720 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 1207 | CFGBlock *CFGBuilder::VisitChildren(Stmt *S) { |
| 1208 | CFGBlock *B = Block; |
Ted Kremenek | 6b12da9 | 2011-02-21 22:11:26 +0000 | [diff] [blame] | 1209 | |
Ted Kremenek | 5846720 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 1210 | // Visit the children in their reverse order so that they appear in |
| 1211 | // left-to-right (natural) order in the CFG. |
| 1212 | reverse_children RChildren(S); |
| 1213 | for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end(); |
| 1214 | I != E; ++I) { |
| 1215 | if (Stmt *Child = *I) |
| 1216 | if (CFGBlock *R = Visit(Child)) |
| 1217 | B = R; |
| 1218 | } |
| 1219 | return B; |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 1220 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1221 | |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1222 | CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, |
| 1223 | AddStmtChoice asc) { |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1224 | AddressTakenLabels.insert(A->getLabel()); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 1225 | |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1226 | if (asc.alwaysAdd(*this, A)) { |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1227 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1228 | appendStmt(Block, A); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1229 | } |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1230 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1231 | return Block; |
| 1232 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1233 | |
Zhanyong Wan | 99cae5b | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1234 | CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U, |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1235 | AddStmtChoice asc) { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1236 | if (asc.alwaysAdd(*this, U)) { |
Zhanyong Wan | 99cae5b | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1237 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1238 | appendStmt(Block, U); |
Zhanyong Wan | 99cae5b | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1239 | } |
| 1240 | |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1241 | return Visit(U->getSubExpr(), AddStmtChoice()); |
Zhanyong Wan | 99cae5b | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1242 | } |
| 1243 | |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1244 | CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) { |
| 1245 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
| 1246 | appendStmt(ConfluenceBlock, B); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1247 | |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1248 | if (badCFG) |
| 1249 | return 0; |
| 1250 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1251 | return VisitLogicalOperator(B, 0, ConfluenceBlock, ConfluenceBlock).first; |
| 1252 | } |
| 1253 | |
| 1254 | std::pair<CFGBlock*, CFGBlock*> |
| 1255 | CFGBuilder::VisitLogicalOperator(BinaryOperator *B, |
| 1256 | Stmt *Term, |
| 1257 | CFGBlock *TrueBlock, |
| 1258 | CFGBlock *FalseBlock) { |
| 1259 | |
| 1260 | // Introspect the RHS. If it is a nested logical operation, we recursively |
| 1261 | // build the CFG using this function. Otherwise, resort to default |
| 1262 | // CFG construction behavior. |
| 1263 | Expr *RHS = B->getRHS()->IgnoreParens(); |
| 1264 | CFGBlock *RHSBlock, *ExitBlock; |
| 1265 | |
| 1266 | do { |
| 1267 | if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS)) |
| 1268 | if (B_RHS->isLogicalOp()) { |
| 1269 | llvm::tie(RHSBlock, ExitBlock) = |
| 1270 | VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock); |
| 1271 | break; |
| 1272 | } |
| 1273 | |
| 1274 | // The RHS is not a nested logical operation. Don't push the terminator |
| 1275 | // down further, but instead visit RHS and construct the respective |
| 1276 | // pieces of the CFG, and link up the RHSBlock with the terminator |
| 1277 | // we have been provided. |
| 1278 | ExitBlock = RHSBlock = createBlock(false); |
| 1279 | |
| 1280 | if (!Term) { |
| 1281 | assert(TrueBlock == FalseBlock); |
| 1282 | addSuccessor(RHSBlock, TrueBlock); |
| 1283 | } |
| 1284 | else { |
| 1285 | RHSBlock->setTerminator(Term); |
| 1286 | TryResult KnownVal = tryEvaluateBool(RHS); |
| 1287 | addSuccessor(RHSBlock, KnownVal.isFalse() ? NULL : TrueBlock); |
| 1288 | addSuccessor(RHSBlock, KnownVal.isTrue() ? NULL : FalseBlock); |
| 1289 | } |
| 1290 | |
| 1291 | Block = RHSBlock; |
| 1292 | RHSBlock = addStmt(RHS); |
| 1293 | } |
| 1294 | while (false); |
| 1295 | |
| 1296 | if (badCFG) |
| 1297 | return std::make_pair((CFGBlock*)0, (CFGBlock*)0); |
| 1298 | |
| 1299 | // Generate the blocks for evaluating the LHS. |
| 1300 | Expr *LHS = B->getLHS()->IgnoreParens(); |
| 1301 | |
| 1302 | if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS)) |
| 1303 | if (B_LHS->isLogicalOp()) { |
| 1304 | if (B->getOpcode() == BO_LOr) |
| 1305 | FalseBlock = RHSBlock; |
| 1306 | else |
| 1307 | TrueBlock = RHSBlock; |
| 1308 | |
| 1309 | // For the LHS, treat 'B' as the terminator that we want to sink |
| 1310 | // into the nested branch. The RHS always gets the top-most |
| 1311 | // terminator. |
| 1312 | return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock); |
| 1313 | } |
| 1314 | |
| 1315 | // Create the block evaluating the LHS. |
| 1316 | // This contains the '&&' or '||' as the terminator. |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1317 | CFGBlock *LHSBlock = createBlock(false); |
| 1318 | LHSBlock->setTerminator(B); |
| 1319 | |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1320 | Block = LHSBlock; |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1321 | CFGBlock *EntryLHSBlock = addStmt(LHS); |
| 1322 | |
| 1323 | if (badCFG) |
| 1324 | return std::make_pair((CFGBlock*)0, (CFGBlock*)0); |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1325 | |
| 1326 | // See if this is a known constant. |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1327 | TryResult KnownVal = tryEvaluateBool(LHS); |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1328 | |
| 1329 | // Now link the LHSBlock with RHSBlock. |
| 1330 | if (B->getOpcode() == BO_LOr) { |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1331 | addSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : TrueBlock); |
| 1332 | addSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : RHSBlock); |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1333 | } else { |
| 1334 | assert(B->getOpcode() == BO_LAnd); |
| 1335 | addSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock); |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1336 | addSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : FalseBlock); |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1337 | } |
| 1338 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1339 | return std::make_pair(EntryLHSBlock, ExitBlock); |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1340 | } |
| 1341 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1342 | |
Ted Kremenek | 5c3ea5c | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1343 | CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B, |
| 1344 | AddStmtChoice asc) { |
| 1345 | // && or || |
| 1346 | if (B->isLogicalOp()) |
| 1347 | return VisitLogicalOperator(B); |
| 1348 | |
Zhanyong Wan | 36f327c | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 1349 | if (B->getOpcode() == BO_Comma) { // , |
Ted Kremenek | 6dc534e | 2009-07-17 22:57:50 +0000 | [diff] [blame] | 1350 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1351 | appendStmt(Block, B); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1352 | addStmt(B->getRHS()); |
| 1353 | return addStmt(B->getLHS()); |
| 1354 | } |
Zhanyong Wan | 36f327c | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 1355 | |
| 1356 | if (B->isAssignmentOp()) { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1357 | if (asc.alwaysAdd(*this, B)) { |
Zhongxing Xu | fc61d94 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 1358 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1359 | appendStmt(Block, B); |
Zhongxing Xu | fc61d94 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 1360 | } |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1361 | Visit(B->getLHS()); |
Marcin Swiderski | e166719 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 1362 | return Visit(B->getRHS()); |
Zhongxing Xu | fc61d94 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 1363 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1364 | |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1365 | if (asc.alwaysAdd(*this, B)) { |
Marcin Swiderski | e166719 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 1366 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1367 | appendStmt(Block, B); |
Marcin Swiderski | e166719 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 1368 | } |
| 1369 | |
Zhongxing Xu | a1898dd | 2010-10-27 03:23:10 +0000 | [diff] [blame] | 1370 | CFGBlock *RBlock = Visit(B->getRHS()); |
| 1371 | CFGBlock *LBlock = Visit(B->getLHS()); |
| 1372 | // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr |
| 1373 | // containing a DoStmt, and the LHS doesn't create a new block, then we should |
| 1374 | // return RBlock. Otherwise we'll incorrectly return NULL. |
| 1375 | return (LBlock ? LBlock : RBlock); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1376 | } |
| 1377 | |
Ted Kremenek | 55331da | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 1378 | CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1379 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 721903e | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 1380 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1381 | appendStmt(Block, E); |
Ted Kremenek | 721903e | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 1382 | } |
| 1383 | return Block; |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1384 | } |
| 1385 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1386 | CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { |
| 1387 | // "break" is a control-flow statement. Thus we stop processing the current |
| 1388 | // block. |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1389 | if (badCFG) |
| 1390 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1391 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1392 | // Now create a new block that ends with the break statement. |
| 1393 | Block = createBlock(false); |
| 1394 | Block->setTerminator(B); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1395 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1396 | // If there is no target for the break, then we are looking at an incomplete |
| 1397 | // AST. This means that the CFG cannot be constructed. |
Ted Kremenek | 9ce5270 | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1398 | if (BreakJumpTarget.block) { |
| 1399 | addAutomaticObjDtors(ScopePos, BreakJumpTarget.scopePosition, B); |
| 1400 | addSuccessor(Block, BreakJumpTarget.block); |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 1401 | } else |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1402 | badCFG = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1403 | |
| 1404 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1405 | return Block; |
| 1406 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1407 | |
Sebastian Redl | 8026f6d | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 1408 | static bool CanThrow(Expr *E, ASTContext &Ctx) { |
Mike Stump | 4c45aa1 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 1409 | QualType Ty = E->getType(); |
| 1410 | if (Ty->isFunctionPointerType()) |
| 1411 | Ty = Ty->getAs<PointerType>()->getPointeeType(); |
| 1412 | else if (Ty->isBlockPointerType()) |
| 1413 | Ty = Ty->getAs<BlockPointerType>()->getPointeeType(); |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 1414 | |
Mike Stump | 4c45aa1 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 1415 | const FunctionType *FT = Ty->getAs<FunctionType>(); |
| 1416 | if (FT) { |
| 1417 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) |
Richard Smith | b9d0b76 | 2012-07-27 04:22:15 +0000 | [diff] [blame] | 1418 | if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && |
Richard Smith | e6975e9 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 1419 | Proto->isNothrow(Ctx)) |
Mike Stump | 4c45aa1 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 1420 | return false; |
| 1421 | } |
| 1422 | return true; |
| 1423 | } |
| 1424 | |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1425 | CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) { |
John McCall | 1de8533 | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 1426 | // Compute the callee type. |
| 1427 | QualType calleeType = C->getCallee()->getType(); |
| 1428 | if (calleeType == Context->BoundMemberTy) { |
| 1429 | QualType boundType = Expr::findBoundMemberType(C->getCallee()); |
| 1430 | |
| 1431 | // We should only get a null bound type if processing a dependent |
| 1432 | // CFG. Recover by assuming nothing. |
| 1433 | if (!boundType.isNull()) calleeType = boundType; |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1434 | } |
Mike Stump | 2455636 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 1435 | |
John McCall | 1de8533 | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 1436 | // If this is a call to a no-return function, this stops the block here. |
| 1437 | bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); |
| 1438 | |
Mike Stump | 4c45aa1 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 1439 | bool AddEHEdge = false; |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1440 | |
| 1441 | // Languages without exceptions are assumed to not throw. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1442 | if (Context->getLangOpts().Exceptions) { |
Ted Kremenek | 6c52c78 | 2010-09-14 23:41:16 +0000 | [diff] [blame] | 1443 | if (BuildOpts.AddEHEdges) |
Mike Stump | 4c45aa1 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 1444 | AddEHEdge = true; |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1445 | } |
| 1446 | |
| 1447 | if (FunctionDecl *FD = C->getDirectCallee()) { |
Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 1448 | if (FD->isNoReturn()) |
Mike Stump | 2455636 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 1449 | NoReturn = true; |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1450 | if (FD->hasAttr<NoThrowAttr>()) |
Mike Stump | 4c45aa1 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 1451 | AddEHEdge = false; |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1452 | } |
Mike Stump | 2455636 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 1453 | |
Sebastian Redl | 8026f6d | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 1454 | if (!CanThrow(C->getCallee(), *Context)) |
Mike Stump | 4c45aa1 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 1455 | AddEHEdge = false; |
| 1456 | |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 1457 | if (!NoReturn && !AddEHEdge) |
| 1458 | return VisitStmt(C, asc.withAlwaysAdd(true)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1459 | |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1460 | if (Block) { |
| 1461 | Succ = Block; |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1462 | if (badCFG) |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1463 | return 0; |
| 1464 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1465 | |
Chandler Carruth | dba3fb5 | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1466 | if (NoReturn) |
| 1467 | Block = createNoReturnBlock(); |
| 1468 | else |
| 1469 | Block = createBlock(); |
| 1470 | |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1471 | appendStmt(Block, C); |
Mike Stump | 2455636 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 1472 | |
Mike Stump | 4c45aa1 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 1473 | if (AddEHEdge) { |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1474 | // Add exceptional edges. |
| 1475 | if (TryTerminatedBlock) |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1476 | addSuccessor(Block, TryTerminatedBlock); |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1477 | else |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1478 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1479 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1480 | |
Mike Stump | 2455636 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 1481 | return VisitChildren(C); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1482 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1483 | |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1484 | CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, |
| 1485 | AddStmtChoice asc) { |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1486 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1487 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1488 | if (badCFG) |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 1489 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1490 | |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 1491 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 1492 | Succ = ConfluenceBlock; |
| 1493 | Block = NULL; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1494 | CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd); |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1495 | if (badCFG) |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 1496 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1497 | |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 1498 | Succ = ConfluenceBlock; |
| 1499 | Block = NULL; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1500 | CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd); |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1501 | if (badCFG) |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 1502 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1503 | |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 1504 | Block = createBlock(false); |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1505 | // See if this is a known constant. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1506 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
| 1507 | addSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock); |
| 1508 | addSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock); |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 1509 | Block->setTerminator(C); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1510 | return addStmt(C->getCond()); |
Ted Kremenek | 3fc8ef5 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 1511 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1512 | |
| 1513 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1514 | CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) { |
Marcin Swiderski | fcb72ac | 2010-10-01 00:23:17 +0000 | [diff] [blame] | 1515 | addLocalScopeAndDtors(C); |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1516 | CFGBlock *LastBlock = Block; |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1517 | |
| 1518 | for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend(); |
| 1519 | I != E; ++I ) { |
Ted Kremenek | 334c195 | 2010-08-17 21:00:06 +0000 | [diff] [blame] | 1520 | // If we hit a segment of code just containing ';' (NullStmts), we can |
| 1521 | // get a null block back. In such cases, just use the LastBlock |
| 1522 | if (CFGBlock *newBlock = addStmt(*I)) |
| 1523 | LastBlock = newBlock; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1524 | |
Ted Kremenek | e8d6d2b | 2009-08-27 23:16:26 +0000 | [diff] [blame] | 1525 | if (badCFG) |
| 1526 | return NULL; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1527 | } |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 1528 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1529 | return LastBlock; |
| 1530 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1531 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1532 | CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C, |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1533 | AddStmtChoice asc) { |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1534 | const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C); |
| 1535 | const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : NULL); |
| 1536 | |
Ted Kremenek | f34bb2e | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 1537 | // Create the confluence block that will "merge" the results of the ternary |
| 1538 | // expression. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1539 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1540 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1541 | if (badCFG) |
Ted Kremenek | f34bb2e | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 1542 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1543 | |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 1544 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 115c1b9 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 1545 | |
Ted Kremenek | f34bb2e | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 1546 | // Create a block for the LHS expression if there is an LHS expression. A |
| 1547 | // GCC extension allows LHS to be NULL, causing the condition to be the |
| 1548 | // value that is returned instead. |
| 1549 | // e.g: x ?: y is shorthand for: x ? x : y; |
| 1550 | Succ = ConfluenceBlock; |
| 1551 | Block = NULL; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1552 | CFGBlock *LHSBlock = 0; |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1553 | const Expr *trueExpr = C->getTrueExpr(); |
| 1554 | if (trueExpr != opaqueValue) { |
| 1555 | LHSBlock = Visit(C->getTrueExpr(), alwaysAdd); |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1556 | if (badCFG) |
Ted Kremenek | f34bb2e | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 1557 | return 0; |
| 1558 | Block = NULL; |
| 1559 | } |
Ted Kremenek | f226d18 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 1560 | else |
| 1561 | LHSBlock = ConfluenceBlock; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1562 | |
Ted Kremenek | f34bb2e | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 1563 | // Create the block for the RHS expression. |
| 1564 | Succ = ConfluenceBlock; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1565 | CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd); |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1566 | if (badCFG) |
Ted Kremenek | f34bb2e | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 1567 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1568 | |
Richard Smith | 56df4a9 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 1569 | // If the condition is a logical '&&' or '||', build a more accurate CFG. |
| 1570 | if (BinaryOperator *Cond = |
| 1571 | dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens())) |
| 1572 | if (Cond->isLogicalOp()) |
| 1573 | return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first; |
| 1574 | |
Ted Kremenek | f34bb2e | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 1575 | // Create the block that will contain the condition. |
| 1576 | Block = createBlock(false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1577 | |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1578 | // See if this is a known constant. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1579 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Ted Kremenek | f226d18 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 1580 | addSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock); |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1581 | addSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock); |
Ted Kremenek | f34bb2e | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 1582 | Block->setTerminator(C); |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1583 | Expr *condExpr = C->getCond(); |
John McCall | d40baf6 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 1584 | |
Ted Kremenek | f226d18 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 1585 | if (opaqueValue) { |
| 1586 | // Run the condition expression if it's not trivially expressed in |
| 1587 | // terms of the opaque value (or if there is no opaque value). |
| 1588 | if (condExpr != opaqueValue) |
| 1589 | addStmt(condExpr); |
John McCall | d40baf6 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 1590 | |
Ted Kremenek | f226d18 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 1591 | // Before that, run the common subexpression if there was one. |
| 1592 | // At least one of this or the above will be run. |
| 1593 | return addStmt(BCO->getCommon()); |
| 1594 | } |
| 1595 | |
| 1596 | return addStmt(condExpr); |
Ted Kremenek | f34bb2e | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 1597 | } |
| 1598 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1599 | CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) { |
Ted Kremenek | bc869de | 2011-05-10 18:42:15 +0000 | [diff] [blame] | 1600 | // Check if the Decl is for an __label__. If so, elide it from the |
| 1601 | // CFG entirely. |
| 1602 | if (isa<LabelDecl>(*DS->decl_begin())) |
| 1603 | return Block; |
| 1604 | |
Ted Kremenek | 29c9e62 | 2011-05-24 20:41:31 +0000 | [diff] [blame] | 1605 | // This case also handles static_asserts. |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1606 | if (DS->isSingleDecl()) |
| 1607 | return VisitDeclSubExpr(DS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1608 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1609 | CFGBlock *B = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1610 | |
Jordan Rose | fd8b435 | 2012-07-20 18:50:48 +0000 | [diff] [blame] | 1611 | // Build an individual DeclStmt for each decl. |
| 1612 | for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(), |
| 1613 | E = DS->decl_rend(); |
| 1614 | I != E; ++I) { |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1615 | // Get the alignment of the new DeclStmt, padding out to >=8 bytes. |
| 1616 | unsigned A = llvm::AlignOf<DeclStmt>::Alignment < 8 |
| 1617 | ? 8 : llvm::AlignOf<DeclStmt>::Alignment; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1618 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1619 | // Allocate the DeclStmt using the BumpPtrAllocator. It will get |
| 1620 | // automatically freed with the CFG. |
| 1621 | DeclGroupRef DG(*I); |
| 1622 | Decl *D = *I; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1623 | void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1624 | DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1625 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1626 | // Append the fake DeclStmt to block. |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1627 | B = VisitDeclSubExpr(DSNew); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1628 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1629 | |
| 1630 | return B; |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1631 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1632 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1633 | /// VisitDeclSubExpr - Utility method to add block-level expressions for |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1634 | /// DeclStmts and initializers in them. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1635 | CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) { |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1636 | assert(DS->isSingleDecl() && "Can handle single declarations only."); |
Ted Kremenek | 29c9e62 | 2011-05-24 20:41:31 +0000 | [diff] [blame] | 1637 | Decl *D = DS->getSingleDecl(); |
| 1638 | |
| 1639 | if (isa<StaticAssertDecl>(D)) { |
| 1640 | // static_asserts aren't added to the CFG because they do not impact |
| 1641 | // runtime semantics. |
| 1642 | return Block; |
| 1643 | } |
| 1644 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1645 | VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1646 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1647 | if (!VD) { |
| 1648 | autoCreateBlock(); |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1649 | appendStmt(Block, DS); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1650 | return Block; |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1651 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1652 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1653 | bool IsReference = false; |
| 1654 | bool HasTemporaries = false; |
| 1655 | |
| 1656 | // Destructors of temporaries in initialization expression should be called |
| 1657 | // after initialization finishes. |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1658 | Expr *Init = VD->getInit(); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1659 | if (Init) { |
| 1660 | IsReference = VD->getType()->isReferenceType(); |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1661 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1662 | |
Jordan Rose | 5a1ffe9 | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 1663 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1664 | // Generate destructors for temporaries in initialization expression. |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1665 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1666 | IsReference); |
| 1667 | } |
| 1668 | } |
| 1669 | |
| 1670 | autoCreateBlock(); |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1671 | appendStmt(Block, DS); |
Ted Kremenek | 550f223 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 1672 | |
| 1673 | // Keep track of the last non-null block, as 'Block' can be nulled out |
| 1674 | // if the initializer expression is something like a 'while' in a |
| 1675 | // statement-expression. |
| 1676 | CFGBlock *LastBlock = Block; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1677 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1678 | if (Init) { |
Ted Kremenek | 550f223 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 1679 | if (HasTemporaries) { |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1680 | // For expression with temporaries go directly to subexpression to omit |
| 1681 | // generating destructors for the second time. |
Ted Kremenek | 550f223 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 1682 | ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); |
| 1683 | if (CFGBlock *newBlock = Visit(EC->getSubExpr())) |
| 1684 | LastBlock = newBlock; |
| 1685 | } |
| 1686 | else { |
| 1687 | if (CFGBlock *newBlock = Visit(Init)) |
| 1688 | LastBlock = newBlock; |
| 1689 | } |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1690 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1691 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1692 | // If the type of VD is a VLA, then we must process its size expressions. |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1693 | for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 1694 | VA != 0; VA = FindVA(VA->getElementType().getTypePtr())) { |
| 1695 | if (CFGBlock *newBlock = addStmt(VA->getSizeExpr())) |
| 1696 | LastBlock = newBlock; |
| 1697 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1698 | |
Marcin Swiderski | fcb72ac | 2010-10-01 00:23:17 +0000 | [diff] [blame] | 1699 | // Remove variable from local scope. |
| 1700 | if (ScopePos && VD == *ScopePos) |
| 1701 | ++ScopePos; |
| 1702 | |
Ted Kremenek | 550f223 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 1703 | return Block ? Block : LastBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1704 | } |
| 1705 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1706 | CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1707 | // We may see an if statement in the middle of a basic block, or it may be the |
| 1708 | // first statement we are processing. In either case, we create a new basic |
| 1709 | // block. First, we create the blocks for the then...else statements, and |
| 1710 | // then we create the block containing the if statement. If we were in the |
Ted Kremenek | 6c24972 | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 1711 | // middle of a block, we stop processing that block. That block is then the |
| 1712 | // implicit successor for the "then" and "else" clauses. |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1713 | |
Marcin Swiderski | 04e046c | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 1714 | // Save local scope position because in case of condition variable ScopePos |
| 1715 | // won't be restored when traversing AST. |
| 1716 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 1717 | |
| 1718 | // Create local scope for possible condition variable. |
| 1719 | // Store scope position. Add implicit destructor. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1720 | if (VarDecl *VD = I->getConditionVariable()) { |
Marcin Swiderski | 04e046c | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 1721 | LocalScope::const_iterator BeginScopePos = ScopePos; |
| 1722 | addLocalScopeForVarDecl(VD); |
| 1723 | addAutomaticObjDtors(ScopePos, BeginScopePos, I); |
| 1724 | } |
| 1725 | |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 1726 | // The block we were processing is now finished. Make it the successor |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1727 | // block. |
| 1728 | if (Block) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1729 | Succ = Block; |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1730 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 1731 | return 0; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1732 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1733 | |
Ted Kremenek | b6f1d78 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 1734 | // Process the false branch. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1735 | CFGBlock *ElseBlock = Succ; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1736 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1737 | if (Stmt *Else = I->getElse()) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1738 | SaveAndRestore<CFGBlock*> sv(Succ); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1739 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1740 | // NULL out Block so that the recursive call to Visit will |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1741 | // create a new basic block. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1742 | Block = NULL; |
Marcin Swiderski | 04e046c | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 1743 | |
| 1744 | // If branch is not a compound statement create implicit scope |
| 1745 | // and add destructors. |
| 1746 | if (!isa<CompoundStmt>(Else)) |
| 1747 | addLocalScopeAndDtors(Else); |
| 1748 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1749 | ElseBlock = addStmt(Else); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1750 | |
Ted Kremenek | b6f7b72 | 2007-08-30 18:13:31 +0000 | [diff] [blame] | 1751 | if (!ElseBlock) // Can occur when the Else body has all NullStmts. |
| 1752 | ElseBlock = sv.get(); |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 1753 | else if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1754 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 1755 | return 0; |
| 1756 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1757 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1758 | |
Ted Kremenek | b6f1d78 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 1759 | // Process the true branch. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1760 | CFGBlock *ThenBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1761 | { |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1762 | Stmt *Then = I->getThen(); |
Ted Kremenek | 6db0ad3 | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 1763 | assert(Then); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1764 | SaveAndRestore<CFGBlock*> sv(Succ); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1765 | Block = NULL; |
Marcin Swiderski | 04e046c | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 1766 | |
| 1767 | // If branch is not a compound statement create implicit scope |
| 1768 | // and add destructors. |
| 1769 | if (!isa<CompoundStmt>(Then)) |
| 1770 | addLocalScopeAndDtors(Then); |
| 1771 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1772 | ThenBlock = addStmt(Then); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1773 | |
Ted Kremenek | dbdf794 | 2009-04-01 03:52:47 +0000 | [diff] [blame] | 1774 | if (!ThenBlock) { |
| 1775 | // We can reach here if the "then" body has all NullStmts. |
| 1776 | // Create an empty block so we can distinguish between true and false |
| 1777 | // branches in path-sensitive analyses. |
| 1778 | ThenBlock = createBlock(false); |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1779 | addSuccessor(ThenBlock, sv.get()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1780 | } else if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1781 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 1782 | return 0; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1783 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1784 | } |
| 1785 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1786 | // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by |
| 1787 | // having these handle the actual control-flow jump. Note that |
| 1788 | // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)" |
| 1789 | // we resort to the old control-flow behavior. This special handling |
| 1790 | // removes infeasible paths from the control-flow graph by having the |
| 1791 | // control-flow transfer of '&&' or '||' go directly into the then/else |
| 1792 | // blocks directly. |
| 1793 | if (!I->getConditionVariable()) |
Richard Smith | 56df4a9 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 1794 | if (BinaryOperator *Cond = |
| 1795 | dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens())) |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1796 | if (Cond->isLogicalOp()) |
| 1797 | return VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first; |
| 1798 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1799 | // Now create a new block containing the if statement. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1800 | Block = createBlock(false); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1801 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1802 | // Set the terminator of the new block to the If statement. |
| 1803 | Block->setTerminator(I); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1804 | |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1805 | // See if this is a known constant. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1806 | const TryResult &KnownVal = tryEvaluateBool(I->getCond()); |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1807 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1808 | // Now add the successors. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1809 | addSuccessor(Block, KnownVal.isFalse() ? NULL : ThenBlock); |
| 1810 | addSuccessor(Block, KnownVal.isTrue()? NULL : ElseBlock); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1811 | |
| 1812 | // Add the condition as the last statement in the new block. This may create |
| 1813 | // new blocks as the condition may contain control-flow. Any newly created |
| 1814 | // blocks will be pointed to be "Block". |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 1815 | CFGBlock *LastBlock = addStmt(I->getCond()); |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 1816 | |
Ted Kremenek | 61dfbec | 2009-12-23 04:49:01 +0000 | [diff] [blame] | 1817 | // Finally, if the IfStmt contains a condition variable, add both the IfStmt |
| 1818 | // and the condition variable initialization to the CFG. |
| 1819 | if (VarDecl *VD = I->getConditionVariable()) { |
| 1820 | if (Expr *Init = VD->getInit()) { |
| 1821 | autoCreateBlock(); |
Ted Kremenek | d40066b | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 1822 | appendStmt(Block, I->getConditionVariableDeclStmt()); |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 1823 | LastBlock = addStmt(Init); |
Ted Kremenek | 61dfbec | 2009-12-23 04:49:01 +0000 | [diff] [blame] | 1824 | } |
| 1825 | } |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 1826 | |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 1827 | return LastBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1828 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1829 | |
| 1830 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1831 | CFGBlock *CFGBuilder::VisitReturnStmt(ReturnStmt *R) { |
Ted Kremenek | 6c24972 | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 1832 | // If we were in the middle of a block we stop processing that block. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1833 | // |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1834 | // NOTE: If a "return" appears in the middle of a block, this means that the |
| 1835 | // code afterwards is DEAD (unreachable). We still keep a basic block |
| 1836 | // for that code; a simple "mark-and-sweep" from the entry block will be |
| 1837 | // able to report such dead blocks. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1838 | |
| 1839 | // Create the new block. |
| 1840 | Block = createBlock(false); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1841 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1842 | // The Exit block is the only successor. |
Marcin Swiderski | fcb72ac | 2010-10-01 00:23:17 +0000 | [diff] [blame] | 1843 | addAutomaticObjDtors(ScopePos, LocalScope::const_iterator(), R); |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1844 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1845 | |
| 1846 | // Add the return statement to the block. This may create new blocks if R |
| 1847 | // contains control-flow (short-circuit operations). |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1848 | return VisitStmt(R, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1849 | } |
| 1850 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1851 | CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1852 | // Get the block of the labeled statement. Add it to our map. |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1853 | addStmt(L->getSubStmt()); |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1854 | CFGBlock *LabelBlock = Block; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1855 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1856 | if (!LabelBlock) // This can happen when the body is empty, i.e. |
| 1857 | LabelBlock = createBlock(); // scopes that only contains NullStmts. |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1858 | |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1859 | assert(LabelMap.find(L->getDecl()) == LabelMap.end() && |
| 1860 | "label already in map"); |
| 1861 | LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1862 | |
| 1863 | // Labels partition blocks, so this is the end of the basic block we were |
| 1864 | // processing (L is the block's label). Because this is label (and we have |
| 1865 | // already processed the substatement) there is no extra control-flow to worry |
| 1866 | // about. |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1867 | LabelBlock->setLabel(L); |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1868 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 1869 | return 0; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1870 | |
| 1871 | // We set Block to NULL to allow lazy creation of a new block (if necessary); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1872 | Block = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1873 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1874 | // This block is now the implicit successor of other blocks. |
| 1875 | Succ = LabelBlock; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1876 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1877 | return LabelBlock; |
| 1878 | } |
| 1879 | |
Ted Kremenek | 83748e2 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 1880 | CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) { |
| 1881 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 1882 | for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(), |
| 1883 | et = E->capture_init_end(); it != et; ++it) { |
| 1884 | if (Expr *Init = *it) { |
| 1885 | CFGBlock *Tmp = Visit(Init); |
| 1886 | if (Tmp != 0) |
| 1887 | LastBlock = Tmp; |
| 1888 | } |
| 1889 | } |
| 1890 | return LastBlock; |
| 1891 | } |
| 1892 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1893 | CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1894 | // Goto is a control-flow statement. Thus we stop processing the current |
| 1895 | // block and create a new one. |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1896 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1897 | Block = createBlock(false); |
| 1898 | Block->setTerminator(G); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1899 | |
| 1900 | // If we already know the mapping to the label block add the successor now. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1901 | LabelMapTy::iterator I = LabelMap.find(G->getLabel()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1902 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1903 | if (I == LabelMap.end()) |
| 1904 | // We will need to backpatch this block later. |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 1905 | BackpatchBlocks.push_back(JumpSource(Block, ScopePos)); |
| 1906 | else { |
| 1907 | JumpTarget JT = I->second; |
Ted Kremenek | 9ce5270 | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1908 | addAutomaticObjDtors(ScopePos, JT.scopePosition, G); |
| 1909 | addSuccessor(Block, JT.block); |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 1910 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1911 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1912 | return Block; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1913 | } |
| 1914 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1915 | CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) { |
| 1916 | CFGBlock *LoopSuccessor = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1917 | |
Marcin Swiderski | 47575f1 | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 1918 | // Save local scope position because in case of condition variable ScopePos |
| 1919 | // won't be restored when traversing AST. |
| 1920 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 1921 | |
| 1922 | // Create local scope for init statement and possible condition variable. |
| 1923 | // Add destructor for init statement and condition variable. |
| 1924 | // Store scope position for continue statement. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1925 | if (Stmt *Init = F->getInit()) |
Marcin Swiderski | 47575f1 | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 1926 | addLocalScopeForStmt(Init); |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 1927 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
| 1928 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1929 | if (VarDecl *VD = F->getConditionVariable()) |
Marcin Swiderski | 47575f1 | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 1930 | addLocalScopeForVarDecl(VD); |
| 1931 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 1932 | |
| 1933 | addAutomaticObjDtors(ScopePos, save_scope_pos.get(), F); |
| 1934 | |
Mike Stump | fefb9f7 | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 1935 | // "for" is a control-flow statement. Thus we stop processing the current |
| 1936 | // block. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1937 | if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1938 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 1939 | return 0; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1940 | LoopSuccessor = Block; |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1941 | } else |
| 1942 | LoopSuccessor = Succ; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1943 | |
Ted Kremenek | 3f64a0e | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 1944 | // Save the current value for the break targets. |
| 1945 | // All breaks should go to the code following the loop. |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 1946 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Marcin Swiderski | 47575f1 | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 1947 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Ted Kremenek | 3f64a0e | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 1948 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1949 | CFGBlock *BodyBlock = 0, *TransitionBlock = 0; |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1950 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1951 | // Now create the loop body. |
| 1952 | { |
Ted Kremenek | 6db0ad3 | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 1953 | assert(F->getBody()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1954 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1955 | // Save the current values for Block, Succ, continue and break targets. |
| 1956 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 1957 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1958 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1959 | // Create an empty block to represent the transition block for looping back |
| 1960 | // to the head of the loop. If we have increment code, it will |
| 1961 | // go in this block as well. |
| 1962 | Block = Succ = TransitionBlock = createBlock(false); |
| 1963 | TransitionBlock->setLoopTarget(F); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1964 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1965 | if (Stmt *I = F->getInc()) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1966 | // Generate increment code in its own basic block. This is the target of |
| 1967 | // continue statements. |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1968 | Succ = addStmt(I); |
Ted Kremenek | e933450 | 2008-09-04 21:48:47 +0000 | [diff] [blame] | 1969 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1970 | |
Ted Kremenek | 3575f84 | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 1971 | // Finish up the increment (or empty) block if it hasn't been already. |
| 1972 | if (Block) { |
| 1973 | assert(Block == Succ); |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 1974 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 1975 | return 0; |
Ted Kremenek | 3575f84 | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 1976 | Block = 0; |
| 1977 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1978 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1979 | // The starting block for the loop increment is the block that should |
| 1980 | // represent the 'loop target' for looping back to the start of the loop. |
| 1981 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 1982 | ContinueJumpTarget.block->setLoopTarget(F); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1983 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1984 | // Loop body should end with destructor of Condition variable (if any). |
| 1985 | addAutomaticObjDtors(ScopePos, LoopBeginScopePos, F); |
Ted Kremenek | 3575f84 | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 1986 | |
Marcin Swiderski | 47575f1 | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 1987 | // If body is not a compound statement create implicit scope |
| 1988 | // and add destructors. |
| 1989 | if (!isa<CompoundStmt>(F->getBody())) |
| 1990 | addLocalScopeAndDtors(F->getBody()); |
| 1991 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1992 | // Now populate the body block, and in the process create new blocks as we |
| 1993 | // walk the body of the loop. |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1994 | BodyBlock = addStmt(F->getBody()); |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 1995 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1996 | if (!BodyBlock) { |
| 1997 | // In the case of "for (...;...;...);" we can have a null BodyBlock. |
| 1998 | // Use the continue jump target as the proxy for the body. |
| 1999 | BodyBlock = ContinueJumpTarget.block; |
| 2000 | } |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2001 | else if (badCFG) |
Ted Kremenek | 941fde8 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 2002 | return 0; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2003 | } |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2004 | |
| 2005 | // Because of short-circuit evaluation, the condition of the loop can span |
| 2006 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 2007 | // evaluate the condition. |
| 2008 | CFGBlock *EntryConditionBlock = 0, *ExitConditionBlock = 0; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2009 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2010 | do { |
| 2011 | Expr *C = F->getCond(); |
| 2012 | |
| 2013 | // Specially handle logical operators, which have a slightly |
| 2014 | // more optimal CFG representation. |
Richard Smith | 56df4a9 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 2015 | if (BinaryOperator *Cond = |
| 2016 | dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : 0)) |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2017 | if (Cond->isLogicalOp()) { |
| 2018 | llvm::tie(EntryConditionBlock, ExitConditionBlock) = |
| 2019 | VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor); |
| 2020 | break; |
| 2021 | } |
| 2022 | |
| 2023 | // The default case when not handling logical operators. |
| 2024 | EntryConditionBlock = ExitConditionBlock = createBlock(false); |
| 2025 | ExitConditionBlock->setTerminator(F); |
| 2026 | |
| 2027 | // See if this is a known constant. |
| 2028 | TryResult KnownVal(true); |
| 2029 | |
| 2030 | if (C) { |
| 2031 | // Now add the actual condition to the condition block. |
| 2032 | // Because the condition itself may contain control-flow, new blocks may |
| 2033 | // be created. Thus we update "Succ" after adding the condition. |
| 2034 | Block = ExitConditionBlock; |
| 2035 | EntryConditionBlock = addStmt(C); |
| 2036 | |
| 2037 | // If this block contains a condition variable, add both the condition |
| 2038 | // variable and initializer to the CFG. |
| 2039 | if (VarDecl *VD = F->getConditionVariable()) { |
| 2040 | if (Expr *Init = VD->getInit()) { |
| 2041 | autoCreateBlock(); |
| 2042 | appendStmt(Block, F->getConditionVariableDeclStmt()); |
| 2043 | EntryConditionBlock = addStmt(Init); |
| 2044 | assert(Block == EntryConditionBlock); |
| 2045 | } |
| 2046 | } |
| 2047 | |
| 2048 | if (Block && badCFG) |
| 2049 | return 0; |
| 2050 | |
| 2051 | KnownVal = tryEvaluateBool(C); |
| 2052 | } |
| 2053 | |
| 2054 | // Add the loop body entry as a successor to the condition. |
| 2055 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock); |
| 2056 | // Link up the condition block with the code that follows the loop. (the |
| 2057 | // false branch). |
| 2058 | addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor); |
| 2059 | |
| 2060 | } while (false); |
| 2061 | |
| 2062 | // Link up the loop-back block to the entry condition block. |
| 2063 | addSuccessor(TransitionBlock, EntryConditionBlock); |
| 2064 | |
| 2065 | // The condition block is the implicit successor for any code above the loop. |
| 2066 | Succ = EntryConditionBlock; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2067 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2068 | // If the loop contains initialization, create a new block for those |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2069 | // statements. This block can also contain statements that precede the loop. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2070 | if (Stmt *I = F->getInit()) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2071 | Block = createBlock(); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2072 | return addStmt(I); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2073 | } |
Zhanyong Wan | 36f327c | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2074 | |
| 2075 | // There is no loop initialization. We are thus basically a while loop. |
| 2076 | // NULL out Block to force lazy block construction. |
| 2077 | Block = NULL; |
| 2078 | Succ = EntryConditionBlock; |
| 2079 | return EntryConditionBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2080 | } |
| 2081 | |
Ted Kremenek | 115c1b9 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2082 | CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2083 | if (asc.alwaysAdd(*this, M)) { |
Ted Kremenek | 115c1b9 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2084 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2085 | appendStmt(Block, M); |
Ted Kremenek | 115c1b9 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2086 | } |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2087 | return Visit(M->getBase()); |
Ted Kremenek | 115c1b9 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2088 | } |
| 2089 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2090 | CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2091 | // Objective-C fast enumeration 'for' statements: |
| 2092 | // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC |
| 2093 | // |
| 2094 | // for ( Type newVariable in collection_expression ) { statements } |
| 2095 | // |
| 2096 | // becomes: |
| 2097 | // |
| 2098 | // prologue: |
| 2099 | // 1. collection_expression |
| 2100 | // T. jump to loop_entry |
| 2101 | // loop_entry: |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2102 | // 1. side-effects of element expression |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2103 | // 1. ObjCForCollectionStmt [performs binding to newVariable] |
| 2104 | // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil] |
| 2105 | // TB: |
| 2106 | // statements |
| 2107 | // T. jump to loop_entry |
| 2108 | // FB: |
| 2109 | // what comes after |
| 2110 | // |
| 2111 | // and |
| 2112 | // |
| 2113 | // Type existingItem; |
| 2114 | // for ( existingItem in expression ) { statements } |
| 2115 | // |
| 2116 | // becomes: |
| 2117 | // |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2118 | // the same with newVariable replaced with existingItem; the binding works |
| 2119 | // the same except that for one ObjCForCollectionStmt::getElement() returns |
| 2120 | // a DeclStmt and the other returns a DeclRefExpr. |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2121 | // |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2122 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2123 | CFGBlock *LoopSuccessor = 0; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2124 | |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2125 | if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2126 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2127 | return 0; |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2128 | LoopSuccessor = Block; |
| 2129 | Block = 0; |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2130 | } else |
| 2131 | LoopSuccessor = Succ; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2132 | |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2133 | // Build the condition blocks. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2134 | CFGBlock *ExitConditionBlock = createBlock(false); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2135 | |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2136 | // Set the terminator for the "exit" condition block. |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2137 | ExitConditionBlock->setTerminator(S); |
| 2138 | |
| 2139 | // The last statement in the block should be the ObjCForCollectionStmt, which |
| 2140 | // performs the actual binding to 'element' and determines if there are any |
| 2141 | // more items in the collection. |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2142 | appendStmt(ExitConditionBlock, S); |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2143 | Block = ExitConditionBlock; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2144 | |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2145 | // Walk the 'element' expression to see if there are any side-effects. We |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 2146 | // generate new blocks as necessary. We DON'T add the statement by default to |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2147 | // the CFG unless it contains control-flow. |
Ted Kremenek | 012614e | 2011-08-17 21:04:19 +0000 | [diff] [blame] | 2148 | CFGBlock *EntryConditionBlock = Visit(S->getElement(), |
| 2149 | AddStmtChoice::NotAlwaysAdd); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2150 | if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2151 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2152 | return 0; |
| 2153 | Block = 0; |
| 2154 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2155 | |
| 2156 | // The condition block is the implicit successor for the loop body as well as |
| 2157 | // any code above the loop. |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2158 | Succ = EntryConditionBlock; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2159 | |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2160 | // Now create the true branch. |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2161 | { |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2162 | // Save the current values for Succ, continue and break targets. |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2163 | SaveAndRestore<CFGBlock*> save_Succ(Succ); |
| 2164 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
| 2165 | save_break(BreakJumpTarget); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2166 | |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2167 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
| 2168 | ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2169 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2170 | CFGBlock *BodyBlock = addStmt(S->getBody()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2171 | |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2172 | if (!BodyBlock) |
| 2173 | BodyBlock = EntryConditionBlock; // can happen for "for (X in Y) ;" |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2174 | else if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2175 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2176 | return 0; |
| 2177 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2178 | |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2179 | // This new body block is a successor to our "exit" condition block. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2180 | addSuccessor(ExitConditionBlock, BodyBlock); |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2181 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2182 | |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2183 | // Link up the condition block with the code that follows the loop. |
| 2184 | // (the false branch). |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2185 | addSuccessor(ExitConditionBlock, LoopSuccessor); |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2186 | |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2187 | // Now create a prologue block to contain the collection expression. |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2188 | Block = createBlock(); |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2189 | return addStmt(S->getCollection()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2190 | } |
| 2191 | |
Ted Kremenek | 8e282c3 | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 2192 | CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) { |
| 2193 | // Inline the body. |
| 2194 | return addStmt(S->getSubStmt()); |
| 2195 | // TODO: consider adding cleanups for the end of @autoreleasepool scope. |
| 2196 | } |
| 2197 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2198 | CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) { |
Ted Kremenek | b3b0b36 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 2199 | // FIXME: Add locking 'primitives' to CFG for @synchronized. |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2200 | |
Ted Kremenek | b3b0b36 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 2201 | // Inline the body. |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2202 | CFGBlock *SyncBlock = addStmt(S->getSynchBody()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2203 | |
Ted Kremenek | da5348e | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 2204 | // The sync body starts its own basic block. This makes it a little easier |
| 2205 | // for diagnostic clients. |
| 2206 | if (SyncBlock) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2207 | if (badCFG) |
Ted Kremenek | da5348e | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 2208 | return 0; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2209 | |
Ted Kremenek | da5348e | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 2210 | Block = 0; |
Ted Kremenek | fadebba | 2010-05-13 16:38:08 +0000 | [diff] [blame] | 2211 | Succ = SyncBlock; |
Ted Kremenek | da5348e | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 2212 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2213 | |
Ted Kremenek | 4beaa9f | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 2214 | // Add the @synchronized to the CFG. |
| 2215 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2216 | appendStmt(Block, S); |
Ted Kremenek | 4beaa9f | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 2217 | |
Ted Kremenek | b3b0b36 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 2218 | // Inline the sync expression. |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2219 | return addStmt(S->getSynchExpr()); |
Ted Kremenek | b3b0b36 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 2220 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2221 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2222 | CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) { |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2223 | // FIXME |
Ted Kremenek | 90658ec | 2009-04-07 04:26:02 +0000 | [diff] [blame] | 2224 | return NYS(); |
Ted Kremenek | e31c0d2 | 2009-03-30 22:29:21 +0000 | [diff] [blame] | 2225 | } |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2226 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 2227 | CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) { |
| 2228 | autoCreateBlock(); |
| 2229 | |
| 2230 | // Add the PseudoObject as the last thing. |
| 2231 | appendStmt(Block, E); |
| 2232 | |
| 2233 | CFGBlock *lastBlock = Block; |
| 2234 | |
| 2235 | // Before that, evaluate all of the semantics in order. In |
| 2236 | // CFG-land, that means appending them in reverse order. |
| 2237 | for (unsigned i = E->getNumSemanticExprs(); i != 0; ) { |
| 2238 | Expr *Semantic = E->getSemanticExpr(--i); |
| 2239 | |
| 2240 | // If the semantic is an opaque value, we're being asked to bind |
| 2241 | // it to its source expression. |
| 2242 | if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic)) |
| 2243 | Semantic = OVE->getSourceExpr(); |
| 2244 | |
| 2245 | if (CFGBlock *B = Visit(Semantic)) |
| 2246 | lastBlock = B; |
| 2247 | } |
| 2248 | |
| 2249 | return lastBlock; |
| 2250 | } |
| 2251 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2252 | CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) { |
| 2253 | CFGBlock *LoopSuccessor = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2254 | |
Marcin Swiderski | 05adedc | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 2255 | // Save local scope position because in case of condition variable ScopePos |
| 2256 | // won't be restored when traversing AST. |
| 2257 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2258 | |
| 2259 | // Create local scope for possible condition variable. |
| 2260 | // Store scope position for continue statement. |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2261 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2262 | if (VarDecl *VD = W->getConditionVariable()) { |
Marcin Swiderski | 05adedc | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 2263 | addLocalScopeForVarDecl(VD); |
| 2264 | addAutomaticObjDtors(ScopePos, LoopBeginScopePos, W); |
| 2265 | } |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2266 | |
Mike Stump | fefb9f7 | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 2267 | // "while" is a control-flow statement. Thus we stop processing the current |
| 2268 | // block. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2269 | if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2270 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2271 | return 0; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2272 | LoopSuccessor = Block; |
Ted Kremenek | 6b12da9 | 2011-02-21 22:11:26 +0000 | [diff] [blame] | 2273 | Block = 0; |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2274 | } else { |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2275 | LoopSuccessor = Succ; |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2276 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2277 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2278 | CFGBlock *BodyBlock = 0, *TransitionBlock = 0; |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2279 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2280 | // Process the loop body. |
| 2281 | { |
Ted Kremenek | f6e8541 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 2282 | assert(W->getBody()); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2283 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2284 | // Save the current values for Block, Succ, continue and break targets. |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2285 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 2286 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2287 | save_break(BreakJumpTarget); |
Ted Kremenek | f6e8541 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 2288 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2289 | // Create an empty block to represent the transition block for looping back |
| 2290 | // to the head of the loop. |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2291 | Succ = TransitionBlock = createBlock(false); |
| 2292 | TransitionBlock->setLoopTarget(W); |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2293 | ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2294 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2295 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 05adedc | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 2296 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2297 | |
Marcin Swiderski | 05adedc | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 2298 | // Loop body should end with destructor of Condition variable (if any). |
| 2299 | addAutomaticObjDtors(ScopePos, LoopBeginScopePos, W); |
| 2300 | |
| 2301 | // If body is not a compound statement create implicit scope |
| 2302 | // and add destructors. |
| 2303 | if (!isa<CompoundStmt>(W->getBody())) |
| 2304 | addLocalScopeAndDtors(W->getBody()); |
| 2305 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2306 | // Create the body. The returned block is the entry to the loop body. |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2307 | BodyBlock = addStmt(W->getBody()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2308 | |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 2309 | if (!BodyBlock) |
Ted Kremenek | 9ce5270 | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2310 | BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;" |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2311 | else if (Block && badCFG) |
| 2312 | return 0; |
| 2313 | } |
| 2314 | |
| 2315 | // Because of short-circuit evaluation, the condition of the loop can span |
| 2316 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 2317 | // evaluate the condition. |
| 2318 | CFGBlock *EntryConditionBlock = 0, *ExitConditionBlock = 0; |
| 2319 | |
| 2320 | do { |
| 2321 | Expr *C = W->getCond(); |
| 2322 | |
| 2323 | // Specially handle logical operators, which have a slightly |
| 2324 | // more optimal CFG representation. |
Richard Smith | 56df4a9 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 2325 | if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens())) |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2326 | if (Cond->isLogicalOp()) { |
| 2327 | llvm::tie(EntryConditionBlock, ExitConditionBlock) = |
| 2328 | VisitLogicalOperator(Cond, W, BodyBlock, |
| 2329 | LoopSuccessor); |
| 2330 | break; |
| 2331 | } |
| 2332 | |
| 2333 | // The default case when not handling logical operators. |
Ted Kremenek | 857f568 | 2012-10-12 22:56:26 +0000 | [diff] [blame] | 2334 | ExitConditionBlock = createBlock(false); |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2335 | ExitConditionBlock->setTerminator(W); |
| 2336 | |
| 2337 | // Now add the actual condition to the condition block. |
| 2338 | // Because the condition itself may contain control-flow, new blocks may |
| 2339 | // be created. Thus we update "Succ" after adding the condition. |
| 2340 | Block = ExitConditionBlock; |
| 2341 | Block = EntryConditionBlock = addStmt(C); |
| 2342 | |
| 2343 | // If this block contains a condition variable, add both the condition |
| 2344 | // variable and initializer to the CFG. |
| 2345 | if (VarDecl *VD = W->getConditionVariable()) { |
| 2346 | if (Expr *Init = VD->getInit()) { |
| 2347 | autoCreateBlock(); |
| 2348 | appendStmt(Block, W->getConditionVariableDeclStmt()); |
| 2349 | EntryConditionBlock = addStmt(Init); |
| 2350 | assert(Block == EntryConditionBlock); |
| 2351 | } |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2352 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2353 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2354 | if (Block && badCFG) |
| 2355 | return 0; |
| 2356 | |
| 2357 | // See if this is a known constant. |
| 2358 | const TryResult& KnownVal = tryEvaluateBool(C); |
| 2359 | |
Ted Kremenek | 941fde8 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 2360 | // Add the loop body entry as a successor to the condition. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2361 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock); |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2362 | // Link up the condition block with the code that follows the loop. (the |
| 2363 | // false branch). |
| 2364 | addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2365 | |
Ted Kremenek | 3f635c0 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2366 | } while(false); |
| 2367 | |
| 2368 | // Link up the loop-back block to the entry condition block. |
| 2369 | addSuccessor(TransitionBlock, EntryConditionBlock); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2370 | |
| 2371 | // There can be no more statements in the condition block since we loop back |
| 2372 | // to this block. NULL out Block to force lazy creation of another block. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2373 | Block = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2374 | |
Ted Kremenek | 4ec010a | 2009-12-24 01:34:10 +0000 | [diff] [blame] | 2375 | // Return the condition block, which is the dominating block for the loop. |
Ted Kremenek | 5482713 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 2376 | Succ = EntryConditionBlock; |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2377 | return EntryConditionBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2378 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2379 | |
| 2380 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2381 | CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2382 | // FIXME: For now we pretend that @catch and the code it contains does not |
| 2383 | // exit. |
| 2384 | return Block; |
| 2385 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2386 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2387 | CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { |
Ted Kremenek | 2fda504 | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 2388 | // FIXME: This isn't complete. We basically treat @throw like a return |
| 2389 | // statement. |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2390 | |
Ted Kremenek | 6c24972 | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 2391 | // If we were in the middle of a block we stop processing that block. |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2392 | if (badCFG) |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2393 | return 0; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2394 | |
Ted Kremenek | 2fda504 | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 2395 | // Create the new block. |
| 2396 | Block = createBlock(false); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2397 | |
Ted Kremenek | 2fda504 | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 2398 | // The Exit block is the only successor. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2399 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2400 | |
| 2401 | // Add the statement to the block. This may create new blocks if S contains |
| 2402 | // control-flow (short-circuit operations). |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2403 | return VisitStmt(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 2fda504 | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 2404 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2405 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2406 | CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) { |
Ted Kremenek | 6c24972 | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 2407 | // If we were in the middle of a block we stop processing that block. |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2408 | if (badCFG) |
Mike Stump | 0979d80 | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 2409 | return 0; |
| 2410 | |
| 2411 | // Create the new block. |
| 2412 | Block = createBlock(false); |
| 2413 | |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2414 | if (TryTerminatedBlock) |
| 2415 | // The current try statement is the only successor. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2416 | addSuccessor(Block, TryTerminatedBlock); |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2417 | else |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2418 | // otherwise the Exit block is the only successor. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2419 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 0979d80 | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 2420 | |
| 2421 | // Add the statement to the block. This may create new blocks if S contains |
| 2422 | // control-flow (short-circuit operations). |
Ted Kremenek | 852274d | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2423 | return VisitStmt(T, AddStmtChoice::AlwaysAdd); |
Mike Stump | 0979d80 | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 2424 | } |
| 2425 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2426 | CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) { |
| 2427 | CFGBlock *LoopSuccessor = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2428 | |
Mike Stump | 8f9893a | 2009-07-21 01:27:50 +0000 | [diff] [blame] | 2429 | // "do...while" is a control-flow statement. Thus we stop processing the |
| 2430 | // current block. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2431 | if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2432 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2433 | return 0; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2434 | LoopSuccessor = Block; |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2435 | } else |
| 2436 | LoopSuccessor = Succ; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2437 | |
| 2438 | // Because of short-circuit evaluation, the condition of the loop can span |
| 2439 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 2440 | // evaluate the condition. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2441 | CFGBlock *ExitConditionBlock = createBlock(false); |
| 2442 | CFGBlock *EntryConditionBlock = ExitConditionBlock; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2443 | |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2444 | // Set the terminator for the "exit" condition block. |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2445 | ExitConditionBlock->setTerminator(D); |
| 2446 | |
| 2447 | // Now add the actual condition to the condition block. Because the condition |
| 2448 | // itself may contain control-flow, new blocks may be created. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2449 | if (Stmt *C = D->getCond()) { |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2450 | Block = ExitConditionBlock; |
| 2451 | EntryConditionBlock = addStmt(C); |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2452 | if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2453 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2454 | return 0; |
| 2455 | } |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2456 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2457 | |
Ted Kremenek | 5482713 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 2458 | // The condition block is the implicit successor for the loop body. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2459 | Succ = EntryConditionBlock; |
| 2460 | |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2461 | // See if this is a known constant. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2462 | const TryResult &KnownVal = tryEvaluateBool(D->getCond()); |
Mike Stump | 00998a0 | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2463 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2464 | // Process the loop body. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2465 | CFGBlock *BodyBlock = NULL; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2466 | { |
Ted Kremenek | 6db0ad3 | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 2467 | assert(D->getBody()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2468 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2469 | // Save the current values for Block, Succ, and continue and break targets |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2470 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 2471 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
| 2472 | save_break(BreakJumpTarget); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2473 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2474 | // All continues within this loop should go to the condition block |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2475 | ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2476 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2477 | // All breaks should go to the code following the loop. |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2478 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2479 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2480 | // NULL out Block to force lazy instantiation of blocks for the body. |
| 2481 | Block = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2482 | |
Marcin Swiderski | 05adedc | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 2483 | // If body is not a compound statement create implicit scope |
| 2484 | // and add destructors. |
| 2485 | if (!isa<CompoundStmt>(D->getBody())) |
| 2486 | addLocalScopeAndDtors(D->getBody()); |
| 2487 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2488 | // Create the body. The returned block is the entry to the loop body. |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2489 | BodyBlock = addStmt(D->getBody()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2490 | |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 2491 | if (!BodyBlock) |
Ted Kremenek | a9d996d | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 2492 | BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)" |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2493 | else if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2494 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2495 | return 0; |
| 2496 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2497 | |
Ted Kremenek | d173dc7 | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 2498 | if (!KnownVal.isFalse()) { |
| 2499 | // Add an intermediate block between the BodyBlock and the |
| 2500 | // ExitConditionBlock to represent the "loop back" transition. Create an |
| 2501 | // empty block to represent the transition block for looping back to the |
| 2502 | // head of the loop. |
| 2503 | // FIXME: Can we do this more efficiently without adding another block? |
| 2504 | Block = NULL; |
| 2505 | Succ = BodyBlock; |
| 2506 | CFGBlock *LoopBackBlock = createBlock(); |
| 2507 | LoopBackBlock->setLoopTarget(D); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2508 | |
Ted Kremenek | d173dc7 | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 2509 | // Add the loop body entry as a successor to the condition. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2510 | addSuccessor(ExitConditionBlock, LoopBackBlock); |
Ted Kremenek | d173dc7 | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 2511 | } |
| 2512 | else |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2513 | addSuccessor(ExitConditionBlock, NULL); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2514 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2515 | |
Ted Kremenek | 941fde8 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 2516 | // Link up the condition block with the code that follows the loop. |
| 2517 | // (the false branch). |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2518 | addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2519 | |
| 2520 | // There can be no more statements in the body block(s) since we loop back to |
| 2521 | // the body. NULL out Block to force lazy creation of another block. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2522 | Block = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2523 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2524 | // Return the loop body, which is the dominating block for the loop. |
Ted Kremenek | 5482713 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 2525 | Succ = BodyBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2526 | return BodyBlock; |
| 2527 | } |
| 2528 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2529 | CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2530 | // "continue" is a control-flow statement. Thus we stop processing the |
| 2531 | // current block. |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2532 | if (badCFG) |
| 2533 | return 0; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2534 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2535 | // Now create a new block that ends with the continue statement. |
| 2536 | Block = createBlock(false); |
| 2537 | Block->setTerminator(C); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2538 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2539 | // If there is no target for the continue, then we are looking at an |
Ted Kremenek | 235c5ed | 2009-04-07 18:53:24 +0000 | [diff] [blame] | 2540 | // incomplete AST. This means the CFG cannot be constructed. |
Ted Kremenek | 9ce5270 | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2541 | if (ContinueJumpTarget.block) { |
| 2542 | addAutomaticObjDtors(ScopePos, ContinueJumpTarget.scopePosition, C); |
| 2543 | addSuccessor(Block, ContinueJumpTarget.block); |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2544 | } else |
Ted Kremenek | 235c5ed | 2009-04-07 18:53:24 +0000 | [diff] [blame] | 2545 | badCFG = true; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2546 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2547 | return Block; |
| 2548 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2549 | |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2550 | CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 2551 | AddStmtChoice asc) { |
Ted Kremenek | 13fc08a | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 2552 | |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2553 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 13fc08a | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 2554 | autoCreateBlock(); |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2555 | appendStmt(Block, E); |
Ted Kremenek | 13fc08a | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 2556 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2557 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2558 | // VLA types have expressions that must be evaluated. |
Ted Kremenek | 97e5071 | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 2559 | CFGBlock *lastBlock = Block; |
| 2560 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2561 | if (E->isArgumentType()) { |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 2562 | for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr()); |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2563 | VA != 0; VA = FindVA(VA->getElementType().getTypePtr())) |
Ted Kremenek | 97e5071 | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 2564 | lastBlock = addStmt(VA->getSizeExpr()); |
Ted Kremenek | f91a5b0 | 2011-08-06 00:30:00 +0000 | [diff] [blame] | 2565 | } |
Ted Kremenek | 97e5071 | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 2566 | return lastBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2567 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2568 | |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2569 | /// VisitStmtExpr - Utility method to handle (nested) statement |
| 2570 | /// expressions (a GCC extension). |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2571 | CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2572 | if (asc.alwaysAdd(*this, SE)) { |
Ted Kremenek | 13fc08a | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 2573 | autoCreateBlock(); |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2574 | appendStmt(Block, SE); |
Ted Kremenek | 13fc08a | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 2575 | } |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2576 | return VisitCompoundStmt(SE->getSubStmt()); |
| 2577 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2578 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2579 | CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2580 | // "switch" is a control-flow statement. Thus we stop processing the current |
| 2581 | // block. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2582 | CFGBlock *SwitchSuccessor = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2583 | |
Marcin Swiderski | 8ae6058 | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 2584 | // Save local scope position because in case of condition variable ScopePos |
| 2585 | // won't be restored when traversing AST. |
| 2586 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2587 | |
| 2588 | // Create local scope for possible condition variable. |
| 2589 | // Store scope position. Add implicit destructor. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2590 | if (VarDecl *VD = Terminator->getConditionVariable()) { |
Marcin Swiderski | 8ae6058 | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 2591 | LocalScope::const_iterator SwitchBeginScopePos = ScopePos; |
| 2592 | addLocalScopeForVarDecl(VD); |
| 2593 | addAutomaticObjDtors(ScopePos, SwitchBeginScopePos, Terminator); |
| 2594 | } |
| 2595 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2596 | if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2597 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2598 | return 0; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2599 | SwitchSuccessor = Block; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2600 | } else SwitchSuccessor = Succ; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2601 | |
| 2602 | // Save the current "switch" context. |
| 2603 | SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock), |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 2604 | save_default(DefaultCaseBlock); |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2605 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 2606 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2607 | // Set the "default" case to be the block after the switch statement. If the |
| 2608 | // switch statement contains a "default:", this value will be overwritten with |
| 2609 | // the block for that code. |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 2610 | DefaultCaseBlock = SwitchSuccessor; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2611 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2612 | // Create a new block that will contain the switch statement. |
| 2613 | SwitchTerminatedBlock = createBlock(false); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2614 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2615 | // Now process the switch body. The code after the switch is the implicit |
| 2616 | // successor. |
| 2617 | Succ = SwitchSuccessor; |
Marcin Swiderski | f1308c7 | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2618 | BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2619 | |
| 2620 | // When visiting the body, the case statements should automatically get linked |
| 2621 | // up to the switch. We also don't keep a pointer to the body, since all |
| 2622 | // control-flow from the switch goes to case/default statements. |
Ted Kremenek | 6db0ad3 | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 2623 | assert(Terminator->getBody() && "switch must contain a non-NULL body"); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2624 | Block = NULL; |
Marcin Swiderski | 8ae6058 | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 2625 | |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2626 | // For pruning unreachable case statements, save the current state |
| 2627 | // for tracking the condition value. |
| 2628 | SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered, |
| 2629 | false); |
Ted Kremenek | 0498247 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 2630 | |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2631 | // Determine if the switch condition can be explicitly evaluated. |
| 2632 | assert(Terminator->getCond() && "switch condition must be non-NULL"); |
Ted Kremenek | 0498247 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 2633 | Expr::EvalResult result; |
Ted Kremenek | e9cd9c0 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 2634 | bool b = tryEvaluate(Terminator->getCond(), result); |
| 2635 | SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond, |
| 2636 | b ? &result : 0); |
Ted Kremenek | 0498247 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 2637 | |
Marcin Swiderski | 8ae6058 | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 2638 | // If body is not a compound statement create implicit scope |
| 2639 | // and add destructors. |
| 2640 | if (!isa<CompoundStmt>(Terminator->getBody())) |
| 2641 | addLocalScopeAndDtors(Terminator->getBody()); |
| 2642 | |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2643 | addStmt(Terminator->getBody()); |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2644 | if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2645 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2646 | return 0; |
| 2647 | } |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2648 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2649 | // If we have no "default:" case, the default transition is to the code |
Ted Kremenek | 432c478 | 2011-03-16 04:32:01 +0000 | [diff] [blame] | 2650 | // following the switch body. Moreover, take into account if all the |
| 2651 | // cases of a switch are covered (e.g., switching on an enum value). |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2652 | addSuccessor(SwitchTerminatedBlock, |
Ted Kremenek | 432c478 | 2011-03-16 04:32:01 +0000 | [diff] [blame] | 2653 | switchExclusivelyCovered || Terminator->isAllEnumCasesCovered() |
| 2654 | ? 0 : DefaultCaseBlock); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2655 | |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2656 | // Add the terminator and condition in the switch block. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 2657 | SwitchTerminatedBlock->setTerminator(Terminator); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2658 | Block = SwitchTerminatedBlock; |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2659 | CFGBlock *LastBlock = addStmt(Terminator->getCond()); |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2660 | |
Ted Kremenek | 6b501eb | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 2661 | // Finally, if the SwitchStmt contains a condition variable, add both the |
| 2662 | // SwitchStmt and the condition variable initialization to the CFG. |
| 2663 | if (VarDecl *VD = Terminator->getConditionVariable()) { |
| 2664 | if (Expr *Init = VD->getInit()) { |
| 2665 | autoCreateBlock(); |
Ted Kremenek | d40066b | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 2666 | appendStmt(Block, Terminator->getConditionVariableDeclStmt()); |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2667 | LastBlock = addStmt(Init); |
Ted Kremenek | 6b501eb | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 2668 | } |
| 2669 | } |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2670 | |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2671 | return LastBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2672 | } |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2673 | |
| 2674 | static bool shouldAddCase(bool &switchExclusivelyCovered, |
Ted Kremenek | e9cd9c0 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 2675 | const Expr::EvalResult *switchCond, |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2676 | const CaseStmt *CS, |
| 2677 | ASTContext &Ctx) { |
Ted Kremenek | e9cd9c0 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 2678 | if (!switchCond) |
| 2679 | return true; |
| 2680 | |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2681 | bool addCase = false; |
Ted Kremenek | 0498247 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 2682 | |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2683 | if (!switchExclusivelyCovered) { |
Ted Kremenek | e9cd9c0 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 2684 | if (switchCond->Val.isInt()) { |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2685 | // Evaluate the LHS of the case value. |
Richard Smith | 85df96c | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 2686 | const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx); |
Ted Kremenek | e9cd9c0 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 2687 | const llvm::APSInt &condInt = switchCond->Val.getInt(); |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2688 | |
| 2689 | if (condInt == lhsInt) { |
| 2690 | addCase = true; |
| 2691 | switchExclusivelyCovered = true; |
| 2692 | } |
| 2693 | else if (condInt < lhsInt) { |
| 2694 | if (const Expr *RHS = CS->getRHS()) { |
| 2695 | // Evaluate the RHS of the case value. |
Richard Smith | 85df96c | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 2696 | const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx); |
| 2697 | if (V2 <= condInt) { |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2698 | addCase = true; |
| 2699 | switchExclusivelyCovered = true; |
| 2700 | } |
| 2701 | } |
| 2702 | } |
| 2703 | } |
| 2704 | else |
| 2705 | addCase = true; |
| 2706 | } |
| 2707 | return addCase; |
| 2708 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2709 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2710 | CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2711 | // CaseStmts are essentially labels, so they are the first statement in a |
| 2712 | // block. |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2713 | CFGBlock *TopBlock = 0, *LastBlock = 0; |
Ted Kremenek | 0498247 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 2714 | |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2715 | if (Stmt *Sub = CS->getSubStmt()) { |
| 2716 | // For deeply nested chains of CaseStmts, instead of doing a recursion |
| 2717 | // (which can blow out the stack), manually unroll and create blocks |
| 2718 | // along the way. |
| 2719 | while (isa<CaseStmt>(Sub)) { |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2720 | CFGBlock *currentBlock = createBlock(false); |
| 2721 | currentBlock->setLabel(CS); |
Ted Kremenek | 29ccaa1 | 2007-08-30 18:48:11 +0000 | [diff] [blame] | 2722 | |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2723 | if (TopBlock) |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2724 | addSuccessor(LastBlock, currentBlock); |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2725 | else |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2726 | TopBlock = currentBlock; |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2727 | |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2728 | addSuccessor(SwitchTerminatedBlock, |
Ted Kremenek | e9cd9c0 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 2729 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2730 | CS, *Context) |
| 2731 | ? currentBlock : 0); |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2732 | |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2733 | LastBlock = currentBlock; |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2734 | CS = cast<CaseStmt>(Sub); |
| 2735 | Sub = CS->getSubStmt(); |
| 2736 | } |
| 2737 | |
| 2738 | addStmt(Sub); |
| 2739 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2740 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2741 | CFGBlock *CaseBlock = Block; |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2742 | if (!CaseBlock) |
| 2743 | CaseBlock = createBlock(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2744 | |
| 2745 | // Cases statements partition blocks, so this is the top of the basic block we |
| 2746 | // were processing (the "case XXX:" is the label). |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2747 | CaseBlock->setLabel(CS); |
| 2748 | |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2749 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2750 | return 0; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2751 | |
| 2752 | // Add this block to the list of successors for the block with the switch |
| 2753 | // statement. |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2754 | assert(SwitchTerminatedBlock); |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2755 | addSuccessor(SwitchTerminatedBlock, |
Ted Kremenek | e9cd9c0 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 2756 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | e71f3d5 | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 2757 | CS, *Context) |
| 2758 | ? CaseBlock : 0); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2759 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2760 | // We set Block to NULL to allow lazy creation of a new block (if necessary) |
| 2761 | Block = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2762 | |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2763 | if (TopBlock) { |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2764 | addSuccessor(LastBlock, CaseBlock); |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2765 | Succ = TopBlock; |
Zhanyong Wan | 36f327c | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2766 | } else { |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2767 | // This block is now the implicit successor of other blocks. |
| 2768 | Succ = CaseBlock; |
| 2769 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2770 | |
Ted Kremenek | 0fc67e2 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 2771 | return Succ; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2772 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2773 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2774 | CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2775 | if (Terminator->getSubStmt()) |
| 2776 | addStmt(Terminator->getSubStmt()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2777 | |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 2778 | DefaultCaseBlock = Block; |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2779 | |
| 2780 | if (!DefaultCaseBlock) |
| 2781 | DefaultCaseBlock = createBlock(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2782 | |
| 2783 | // Default statements partition blocks, so this is the top of the basic block |
| 2784 | // we were processing (the "default:" is the label). |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 2785 | DefaultCaseBlock->setLabel(Terminator); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2786 | |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2787 | if (badCFG) |
Ted Kremenek | 4e8df2e | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2788 | return 0; |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 2789 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2790 | // Unlike case statements, we don't add the default block to the successors |
| 2791 | // for the switch statement immediately. This is done when we finish |
| 2792 | // processing the switch statement. This allows for the default case |
| 2793 | // (including a fall-through to the code after the switch statement) to always |
| 2794 | // be the last successor of a switch-terminated block. |
| 2795 | |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 2796 | // We set Block to NULL to allow lazy creation of a new block (if necessary) |
| 2797 | Block = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2798 | |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 2799 | // This block is now the implicit successor of other blocks. |
| 2800 | Succ = DefaultCaseBlock; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2801 | |
| 2802 | return DefaultCaseBlock; |
Ted Kremenek | 295222c | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 2803 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2804 | |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2805 | CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) { |
| 2806 | // "try"/"catch" is a control-flow statement. Thus we stop processing the |
| 2807 | // current block. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2808 | CFGBlock *TrySuccessor = NULL; |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2809 | |
| 2810 | if (Block) { |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2811 | if (badCFG) |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2812 | return 0; |
| 2813 | TrySuccessor = Block; |
| 2814 | } else TrySuccessor = Succ; |
| 2815 | |
Mike Stump | a1f9363 | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 2816 | CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock; |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2817 | |
| 2818 | // Create a new block that will contain the try statement. |
Mike Stump | f00cca5 | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 2819 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2820 | // Add the terminator in the try block. |
Mike Stump | f00cca5 | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 2821 | NewTryTerminatedBlock->setTerminator(Terminator); |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2822 | |
Mike Stump | a1f9363 | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 2823 | bool HasCatchAll = false; |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2824 | for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) { |
| 2825 | // The code after the try is the implicit successor. |
| 2826 | Succ = TrySuccessor; |
| 2827 | CXXCatchStmt *CS = Terminator->getHandler(h); |
Mike Stump | a1f9363 | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 2828 | if (CS->getExceptionDecl() == 0) { |
| 2829 | HasCatchAll = true; |
| 2830 | } |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2831 | Block = NULL; |
| 2832 | CFGBlock *CatchBlock = VisitCXXCatchStmt(CS); |
| 2833 | if (CatchBlock == 0) |
| 2834 | return 0; |
| 2835 | // Add this block to the list of successors for the block with the try |
| 2836 | // statement. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2837 | addSuccessor(NewTryTerminatedBlock, CatchBlock); |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2838 | } |
Mike Stump | a1f9363 | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 2839 | if (!HasCatchAll) { |
| 2840 | if (PrevTryTerminatedBlock) |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2841 | addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock); |
Mike Stump | a1f9363 | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 2842 | else |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2843 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
Mike Stump | a1f9363 | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 2844 | } |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2845 | |
| 2846 | // The code after the try is the implicit successor. |
| 2847 | Succ = TrySuccessor; |
| 2848 | |
Mike Stump | f00cca5 | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 2849 | // Save the current "try" context. |
Ted Kremenek | f0e71ae | 2011-08-23 23:05:07 +0000 | [diff] [blame] | 2850 | SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock); |
| 2851 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
Mike Stump | f00cca5 | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 2852 | |
Ted Kremenek | 6db0ad3 | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 2853 | assert(Terminator->getTryBlock() && "try must contain a non-NULL body"); |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2854 | Block = NULL; |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2855 | return addStmt(Terminator->getTryBlock()); |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2856 | } |
| 2857 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2858 | CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) { |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2859 | // CXXCatchStmt are treated like labels, so they are the first statement in a |
| 2860 | // block. |
| 2861 | |
Marcin Swiderski | 0e97bcb | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 2862 | // Save local scope position because in case of exception variable ScopePos |
| 2863 | // won't be restored when traversing AST. |
| 2864 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2865 | |
| 2866 | // Create local scope for possible exception variable. |
| 2867 | // Store scope position. Add implicit destructor. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2868 | if (VarDecl *VD = CS->getExceptionDecl()) { |
Marcin Swiderski | 0e97bcb | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 2869 | LocalScope::const_iterator BeginScopePos = ScopePos; |
| 2870 | addLocalScopeForVarDecl(VD); |
| 2871 | addAutomaticObjDtors(ScopePos, BeginScopePos, CS); |
| 2872 | } |
| 2873 | |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2874 | if (CS->getHandlerBlock()) |
| 2875 | addStmt(CS->getHandlerBlock()); |
| 2876 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2877 | CFGBlock *CatchBlock = Block; |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2878 | if (!CatchBlock) |
| 2879 | CatchBlock = createBlock(); |
Ted Kremenek | 337e4db | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 2880 | |
| 2881 | // CXXCatchStmt is more than just a label. They have semantic meaning |
| 2882 | // as well, as they implicitly "initialize" the catch variable. Add |
| 2883 | // it to the CFG as a CFGElement so that the control-flow of these |
| 2884 | // semantics gets captured. |
| 2885 | appendStmt(CatchBlock, CS); |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2886 | |
Ted Kremenek | 337e4db | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 2887 | // Also add the CXXCatchStmt as a label, to mirror handling of regular |
| 2888 | // labels. |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2889 | CatchBlock->setLabel(CS); |
| 2890 | |
Ted Kremenek | 337e4db | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 2891 | // Bail out if the CFG is bad. |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2892 | if (badCFG) |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 2893 | return 0; |
| 2894 | |
| 2895 | // We set Block to NULL to allow lazy creation of a new block (if necessary) |
| 2896 | Block = NULL; |
| 2897 | |
| 2898 | return CatchBlock; |
| 2899 | } |
| 2900 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2901 | CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) { |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 2902 | // C++0x for-range statements are specified as [stmt.ranged]: |
| 2903 | // |
| 2904 | // { |
| 2905 | // auto && __range = range-init; |
| 2906 | // for ( auto __begin = begin-expr, |
| 2907 | // __end = end-expr; |
| 2908 | // __begin != __end; |
| 2909 | // ++__begin ) { |
| 2910 | // for-range-declaration = *__begin; |
| 2911 | // statement |
| 2912 | // } |
| 2913 | // } |
| 2914 | |
| 2915 | // Save local scope position before the addition of the implicit variables. |
| 2916 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2917 | |
| 2918 | // Create local scopes and destructors for range, begin and end variables. |
| 2919 | if (Stmt *Range = S->getRangeStmt()) |
| 2920 | addLocalScopeForStmt(Range); |
| 2921 | if (Stmt *BeginEnd = S->getBeginEndStmt()) |
| 2922 | addLocalScopeForStmt(BeginEnd); |
| 2923 | addAutomaticObjDtors(ScopePos, save_scope_pos.get(), S); |
| 2924 | |
| 2925 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 2926 | |
| 2927 | // "for" is a control-flow statement. Thus we stop processing the current |
| 2928 | // block. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2929 | CFGBlock *LoopSuccessor = NULL; |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 2930 | if (Block) { |
| 2931 | if (badCFG) |
| 2932 | return 0; |
| 2933 | LoopSuccessor = Block; |
| 2934 | } else |
| 2935 | LoopSuccessor = Succ; |
| 2936 | |
| 2937 | // Save the current value for the break targets. |
| 2938 | // All breaks should go to the code following the loop. |
| 2939 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
| 2940 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
| 2941 | |
| 2942 | // The block for the __begin != __end expression. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2943 | CFGBlock *ConditionBlock = createBlock(false); |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 2944 | ConditionBlock->setTerminator(S); |
| 2945 | |
| 2946 | // Now add the actual condition to the condition block. |
| 2947 | if (Expr *C = S->getCond()) { |
| 2948 | Block = ConditionBlock; |
| 2949 | CFGBlock *BeginConditionBlock = addStmt(C); |
| 2950 | if (badCFG) |
| 2951 | return 0; |
| 2952 | assert(BeginConditionBlock == ConditionBlock && |
| 2953 | "condition block in for-range was unexpectedly complex"); |
| 2954 | (void)BeginConditionBlock; |
| 2955 | } |
| 2956 | |
| 2957 | // The condition block is the implicit successor for the loop body as well as |
| 2958 | // any code above the loop. |
| 2959 | Succ = ConditionBlock; |
| 2960 | |
| 2961 | // See if this is a known constant. |
| 2962 | TryResult KnownVal(true); |
| 2963 | |
| 2964 | if (S->getCond()) |
| 2965 | KnownVal = tryEvaluateBool(S->getCond()); |
| 2966 | |
| 2967 | // Now create the loop body. |
| 2968 | { |
| 2969 | assert(S->getBody()); |
| 2970 | |
| 2971 | // Save the current values for Block, Succ, and continue targets. |
| 2972 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 2973 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
| 2974 | |
| 2975 | // Generate increment code in its own basic block. This is the target of |
| 2976 | // continue statements. |
| 2977 | Block = 0; |
| 2978 | Succ = addStmt(S->getInc()); |
| 2979 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 2980 | |
| 2981 | // The starting block for the loop increment is the block that should |
| 2982 | // represent the 'loop target' for looping back to the start of the loop. |
| 2983 | ContinueJumpTarget.block->setLoopTarget(S); |
| 2984 | |
| 2985 | // Finish up the increment block and prepare to start the loop body. |
| 2986 | assert(Block); |
| 2987 | if (badCFG) |
| 2988 | return 0; |
| 2989 | Block = 0; |
| 2990 | |
| 2991 | |
| 2992 | // Add implicit scope and dtors for loop variable. |
| 2993 | addLocalScopeAndDtors(S->getLoopVarStmt()); |
| 2994 | |
| 2995 | // Populate a new block to contain the loop body and loop variable. |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2996 | addStmt(S->getBody()); |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 2997 | if (badCFG) |
| 2998 | return 0; |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2999 | CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt()); |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3000 | if (badCFG) |
| 3001 | return 0; |
| 3002 | |
| 3003 | // This new body block is a successor to our condition block. |
Ted Kremenek | 8f81acf | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3004 | addSuccessor(ConditionBlock, KnownVal.isFalse() ? 0 : LoopVarStmtBlock); |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3005 | } |
| 3006 | |
| 3007 | // Link up the condition block with the code that follows the loop (the |
| 3008 | // false branch). |
| 3009 | addSuccessor(ConditionBlock, KnownVal.isTrue() ? 0 : LoopSuccessor); |
| 3010 | |
| 3011 | // Add the initialization statements. |
| 3012 | Block = createBlock(); |
Richard Smith | b403d6d | 2011-04-18 15:49:25 +0000 | [diff] [blame] | 3013 | addStmt(S->getBeginEndStmt()); |
| 3014 | return addStmt(S->getRangeStmt()); |
Richard Smith | ad762fc | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3015 | } |
| 3016 | |
John McCall | 4765fa0 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 3017 | CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E, |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3018 | AddStmtChoice asc) { |
Jordan Rose | 5a1ffe9 | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 3019 | if (BuildOpts.AddTemporaryDtors) { |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3020 | // If adding implicit destructors visit the full expression for adding |
| 3021 | // destructors of temporaries. |
| 3022 | VisitForTemporaryDtors(E->getSubExpr()); |
| 3023 | |
| 3024 | // Full expression has to be added as CFGStmt so it will be sequenced |
| 3025 | // before destructors of it's temporaries. |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 3026 | asc = asc.withAlwaysAdd(true); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3027 | } |
| 3028 | return Visit(E->getSubExpr(), asc); |
| 3029 | } |
| 3030 | |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3031 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 3032 | AddStmtChoice asc) { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3033 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3034 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3035 | appendStmt(Block, E); |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3036 | |
| 3037 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 3038 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3039 | } |
| 3040 | return Visit(E->getSubExpr(), asc); |
| 3041 | } |
| 3042 | |
Zhongxing Xu | 81bc7d0 | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3043 | CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C, |
| 3044 | AddStmtChoice asc) { |
Zhongxing Xu | 81bc7d0 | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3045 | autoCreateBlock(); |
Zhongxing Xu | 97a72c3 | 2012-01-11 02:39:07 +0000 | [diff] [blame] | 3046 | appendStmt(Block, C); |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 3047 | |
Zhongxing Xu | 81bc7d0 | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3048 | return VisitChildren(C); |
| 3049 | } |
| 3050 | |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3051 | CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 3052 | AddStmtChoice asc) { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3053 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3054 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3055 | appendStmt(Block, E); |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3056 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | 94a3dcf | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 3057 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3058 | } |
| 3059 | return Visit(E->getSubExpr(), asc); |
| 3060 | } |
| 3061 | |
Zhongxing Xu | 81bc7d0 | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3062 | CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 3063 | AddStmtChoice asc) { |
Zhongxing Xu | 81bc7d0 | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3064 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3065 | appendStmt(Block, C); |
Zhongxing Xu | 81bc7d0 | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3066 | return VisitChildren(C); |
| 3067 | } |
| 3068 | |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3069 | CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E, |
| 3070 | AddStmtChoice asc) { |
Ted Kremenek | 3179a45 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3071 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3072 | autoCreateBlock(); |
Ted Kremenek | 247e966 | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3073 | appendStmt(Block, E); |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3074 | } |
Ted Kremenek | 892697d | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3075 | return Visit(E->getSubExpr(), AddStmtChoice()); |
Zhongxing Xu | a725ed4 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3076 | } |
| 3077 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3078 | CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3079 | // Lazily create the indirect-goto dispatch block if there isn't one already. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3080 | CFGBlock *IBlock = cfg->getIndirectGotoBlock(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3081 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 3082 | if (!IBlock) { |
| 3083 | IBlock = createBlock(false); |
| 3084 | cfg->setIndirectGotoBlock(IBlock); |
| 3085 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3086 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 3087 | // IndirectGoto is a control-flow statement. Thus we stop processing the |
| 3088 | // current block and create a new one. |
Zhongxing Xu | d438b3d | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3089 | if (badCFG) |
Ted Kremenek | 4f88063 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3090 | return 0; |
| 3091 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 3092 | Block = createBlock(false); |
| 3093 | Block->setTerminator(I); |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3094 | addSuccessor(Block, IBlock); |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 3095 | return addStmt(I->getTarget()); |
| 3096 | } |
| 3097 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3098 | CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary) { |
Jordan Rose | 5a1ffe9 | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 3099 | assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors); |
| 3100 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3101 | tryAgain: |
| 3102 | if (!E) { |
| 3103 | badCFG = true; |
| 3104 | return NULL; |
| 3105 | } |
| 3106 | switch (E->getStmtClass()) { |
| 3107 | default: |
| 3108 | return VisitChildrenForTemporaryDtors(E); |
| 3109 | |
| 3110 | case Stmt::BinaryOperatorClass: |
| 3111 | return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E)); |
| 3112 | |
| 3113 | case Stmt::CXXBindTemporaryExprClass: |
| 3114 | return VisitCXXBindTemporaryExprForTemporaryDtors( |
| 3115 | cast<CXXBindTemporaryExpr>(E), BindToTemporary); |
| 3116 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 3117 | case Stmt::BinaryConditionalOperatorClass: |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3118 | case Stmt::ConditionalOperatorClass: |
| 3119 | return VisitConditionalOperatorForTemporaryDtors( |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 3120 | cast<AbstractConditionalOperator>(E), BindToTemporary); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3121 | |
| 3122 | case Stmt::ImplicitCastExprClass: |
| 3123 | // For implicit cast we want BindToTemporary to be passed further. |
| 3124 | E = cast<CastExpr>(E)->getSubExpr(); |
| 3125 | goto tryAgain; |
| 3126 | |
| 3127 | case Stmt::ParenExprClass: |
| 3128 | E = cast<ParenExpr>(E)->getSubExpr(); |
| 3129 | goto tryAgain; |
Douglas Gregor | 03e8003 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 3130 | |
| 3131 | case Stmt::MaterializeTemporaryExprClass: |
| 3132 | E = cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr(); |
| 3133 | goto tryAgain; |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3134 | } |
| 3135 | } |
| 3136 | |
| 3137 | CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E) { |
| 3138 | // When visiting children for destructors we want to visit them in reverse |
Ted Kremenek | 5846720 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 3139 | // order that they will appear in the CFG. Because the CFG is built |
| 3140 | // bottom-up, this means we visit them in their natural order, which |
| 3141 | // reverses them in the CFG. |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3142 | CFGBlock *B = Block; |
Ted Kremenek | 5846720 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 3143 | for (Stmt::child_range I = E->children(); I; ++I) { |
| 3144 | if (Stmt *Child = *I) |
| 3145 | if (CFGBlock *R = VisitForTemporaryDtors(Child)) |
| 3146 | B = R; |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3147 | } |
| 3148 | return B; |
| 3149 | } |
| 3150 | |
| 3151 | CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E) { |
| 3152 | if (E->isLogicalOp()) { |
| 3153 | // Destructors for temporaries in LHS expression should be called after |
| 3154 | // those for RHS expression. Even if this will unnecessarily create a block, |
| 3155 | // this block will be used at least by the full expression. |
| 3156 | autoCreateBlock(); |
| 3157 | CFGBlock *ConfluenceBlock = VisitForTemporaryDtors(E->getLHS()); |
| 3158 | if (badCFG) |
| 3159 | return NULL; |
| 3160 | |
| 3161 | Succ = ConfluenceBlock; |
| 3162 | Block = NULL; |
| 3163 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS()); |
| 3164 | |
| 3165 | if (RHSBlock) { |
| 3166 | if (badCFG) |
| 3167 | return NULL; |
| 3168 | |
| 3169 | // If RHS expression did produce destructors we need to connect created |
| 3170 | // blocks to CFG in same manner as for binary operator itself. |
| 3171 | CFGBlock *LHSBlock = createBlock(false); |
| 3172 | LHSBlock->setTerminator(CFGTerminator(E, true)); |
| 3173 | |
| 3174 | // For binary operator LHS block is before RHS in list of predecessors |
| 3175 | // of ConfluenceBlock. |
| 3176 | std::reverse(ConfluenceBlock->pred_begin(), |
| 3177 | ConfluenceBlock->pred_end()); |
| 3178 | |
| 3179 | // See if this is a known constant. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3180 | TryResult KnownVal = tryEvaluateBool(E->getLHS()); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3181 | if (KnownVal.isKnown() && (E->getOpcode() == BO_LOr)) |
| 3182 | KnownVal.negate(); |
| 3183 | |
| 3184 | // Link LHSBlock with RHSBlock exactly the same way as for binary operator |
| 3185 | // itself. |
| 3186 | if (E->getOpcode() == BO_LOr) { |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3187 | addSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock); |
| 3188 | addSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3189 | } else { |
| 3190 | assert (E->getOpcode() == BO_LAnd); |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3191 | addSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock); |
| 3192 | addSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3193 | } |
| 3194 | |
| 3195 | Block = LHSBlock; |
| 3196 | return LHSBlock; |
| 3197 | } |
| 3198 | |
| 3199 | Block = ConfluenceBlock; |
| 3200 | return ConfluenceBlock; |
| 3201 | } |
| 3202 | |
Zhanyong Wan | 36f327c | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3203 | if (E->isAssignmentOp()) { |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3204 | // For assignment operator (=) LHS expression is visited |
| 3205 | // before RHS expression. For destructors visit them in reverse order. |
| 3206 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS()); |
| 3207 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS()); |
| 3208 | return LHSBlock ? LHSBlock : RHSBlock; |
| 3209 | } |
| 3210 | |
| 3211 | // For any other binary operator RHS expression is visited before |
| 3212 | // LHS expression (order of children). For destructors visit them in reverse |
| 3213 | // order. |
| 3214 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS()); |
| 3215 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS()); |
| 3216 | return RHSBlock ? RHSBlock : LHSBlock; |
| 3217 | } |
| 3218 | |
| 3219 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors( |
| 3220 | CXXBindTemporaryExpr *E, bool BindToTemporary) { |
| 3221 | // First add destructors for temporaries in subexpression. |
| 3222 | CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr()); |
Zhongxing Xu | 249c945 | 2010-11-14 15:23:50 +0000 | [diff] [blame] | 3223 | if (!BindToTemporary) { |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3224 | // If lifetime of temporary is not prolonged (by assigning to constant |
| 3225 | // reference) add destructor for it. |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 3226 | |
| 3227 | // If the destructor is marked as a no-return destructor, we need to create |
| 3228 | // a new block for the destructor which does not have as a successor |
| 3229 | // anything built thus far. Control won't flow out of this block. |
| 3230 | const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor(); |
Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 3231 | if (Dtor->isNoReturn()) |
Chandler Carruth | dba3fb5 | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 3232 | Block = createNoReturnBlock(); |
| 3233 | else |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 3234 | autoCreateBlock(); |
Chandler Carruth | c8cfc74 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 3235 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3236 | appendTemporaryDtor(Block, E); |
| 3237 | B = Block; |
| 3238 | } |
| 3239 | return B; |
| 3240 | } |
| 3241 | |
| 3242 | CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors( |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 3243 | AbstractConditionalOperator *E, bool BindToTemporary) { |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3244 | // First add destructors for condition expression. Even if this will |
| 3245 | // unnecessarily create a block, this block will be used at least by the full |
| 3246 | // expression. |
| 3247 | autoCreateBlock(); |
| 3248 | CFGBlock *ConfluenceBlock = VisitForTemporaryDtors(E->getCond()); |
| 3249 | if (badCFG) |
| 3250 | return NULL; |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 3251 | if (BinaryConditionalOperator *BCO |
| 3252 | = dyn_cast<BinaryConditionalOperator>(E)) { |
| 3253 | ConfluenceBlock = VisitForTemporaryDtors(BCO->getCommon()); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3254 | if (badCFG) |
| 3255 | return NULL; |
| 3256 | } |
| 3257 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 3258 | // Try to add block with destructors for LHS expression. |
| 3259 | CFGBlock *LHSBlock = NULL; |
| 3260 | Succ = ConfluenceBlock; |
| 3261 | Block = NULL; |
| 3262 | LHSBlock = VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary); |
| 3263 | if (badCFG) |
| 3264 | return NULL; |
| 3265 | |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3266 | // Try to add block with destructors for RHS expression; |
| 3267 | Succ = ConfluenceBlock; |
| 3268 | Block = NULL; |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 3269 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getFalseExpr(), |
| 3270 | BindToTemporary); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3271 | if (badCFG) |
| 3272 | return NULL; |
| 3273 | |
| 3274 | if (!RHSBlock && !LHSBlock) { |
| 3275 | // If neither LHS nor RHS expression had temporaries to destroy don't create |
| 3276 | // more blocks. |
| 3277 | Block = ConfluenceBlock; |
| 3278 | return Block; |
| 3279 | } |
| 3280 | |
| 3281 | Block = createBlock(false); |
| 3282 | Block->setTerminator(CFGTerminator(E, true)); |
| 3283 | |
| 3284 | // See if this is a known constant. |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3285 | const TryResult &KnownVal = tryEvaluateBool(E->getCond()); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3286 | |
| 3287 | if (LHSBlock) { |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3288 | addSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3289 | } else if (KnownVal.isFalse()) { |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3290 | addSuccessor(Block, NULL); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3291 | } else { |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3292 | addSuccessor(Block, ConfluenceBlock); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3293 | std::reverse(ConfluenceBlock->pred_begin(), ConfluenceBlock->pred_end()); |
| 3294 | } |
| 3295 | |
| 3296 | if (!RHSBlock) |
| 3297 | RHSBlock = ConfluenceBlock; |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3298 | addSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3299 | |
| 3300 | return Block; |
| 3301 | } |
| 3302 | |
Ted Kremenek | befef2f | 2007-08-23 21:26:19 +0000 | [diff] [blame] | 3303 | } // end anonymous namespace |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 3304 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3305 | /// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has |
| 3306 | /// no successors or predecessors. If this is the first block created in the |
| 3307 | /// CFG, it is automatically set to be the Entry and Exit of the CFG. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3308 | CFGBlock *CFG::createBlock() { |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 3309 | bool first_block = begin() == end(); |
| 3310 | |
| 3311 | // Create the block. |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 3312 | CFGBlock *Mem = getAllocator().Allocate<CFGBlock>(); |
Anna Zaks | 02f34c5 | 2011-12-05 21:33:11 +0000 | [diff] [blame] | 3313 | new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this); |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 3314 | Blocks.push_back(Mem, BlkBVC); |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 3315 | |
| 3316 | // If this is the first block, set it as the Entry and Exit. |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 3317 | if (first_block) |
| 3318 | Entry = Exit = &back(); |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 3319 | |
| 3320 | // Return the block. |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 3321 | return &back(); |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 3322 | } |
| 3323 | |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 3324 | /// buildCFG - Constructs a CFG from an AST. Ownership of the returned |
| 3325 | /// CFG is returned to the caller. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3326 | CFG* CFG::buildCFG(const Decl *D, Stmt *Statement, ASTContext *C, |
Ted Kremenek | b8ad5ee | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 3327 | const BuildOptions &BO) { |
| 3328 | CFGBuilder Builder(C, BO); |
| 3329 | return Builder.buildCFG(D, Statement); |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 3330 | } |
| 3331 | |
Ted Kremenek | c5aff44 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 3332 | const CXXDestructorDecl * |
| 3333 | CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const { |
Ted Kremenek | c9f8f5a | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 3334 | switch (getKind()) { |
Ted Kremenek | c9f8f5a | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 3335 | case CFGElement::Statement: |
| 3336 | case CFGElement::Initializer: |
| 3337 | llvm_unreachable("getDestructorDecl should only be used with " |
| 3338 | "ImplicitDtors"); |
| 3339 | case CFGElement::AutomaticObjectDtor: { |
David Blaikie | fdf6a27 | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 3340 | const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl(); |
Ted Kremenek | c9f8f5a | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 3341 | QualType ty = var->getType(); |
Ted Kremenek | 697d42d | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 3342 | ty = ty.getNonReferenceType(); |
Ted Kremenek | 4cf2253 | 2012-03-19 23:48:41 +0000 | [diff] [blame] | 3343 | while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) { |
Ted Kremenek | c5aff44 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 3344 | ty = arrayType->getElementType(); |
| 3345 | } |
Ted Kremenek | c9f8f5a | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 3346 | const RecordType *recordType = ty->getAs<RecordType>(); |
| 3347 | const CXXRecordDecl *classDecl = |
Ted Kremenek | 697d42d | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 3348 | cast<CXXRecordDecl>(recordType->getDecl()); |
Ted Kremenek | c9f8f5a | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 3349 | return classDecl->getDestructor(); |
| 3350 | } |
| 3351 | case CFGElement::TemporaryDtor: { |
| 3352 | const CXXBindTemporaryExpr *bindExpr = |
David Blaikie | fdf6a27 | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 3353 | castAs<CFGTemporaryDtor>().getBindTemporaryExpr(); |
Ted Kremenek | c9f8f5a | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 3354 | const CXXTemporary *temp = bindExpr->getTemporary(); |
| 3355 | return temp->getDestructor(); |
| 3356 | } |
| 3357 | case CFGElement::BaseDtor: |
| 3358 | case CFGElement::MemberDtor: |
| 3359 | |
| 3360 | // Not yet supported. |
| 3361 | return 0; |
| 3362 | } |
Ted Kremenek | 697d42d | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 3363 | llvm_unreachable("getKind() returned bogus value"); |
Ted Kremenek | c9f8f5a | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 3364 | } |
| 3365 | |
Ted Kremenek | c5aff44 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 3366 | bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const { |
Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 3367 | if (const CXXDestructorDecl *DD = getDestructorDecl(astContext)) |
| 3368 | return DD->isNoReturn(); |
Ted Kremenek | c9f8f5a | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 3369 | return false; |
Ted Kremenek | 3c0349e | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 3370 | } |
| 3371 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3372 | //===----------------------------------------------------------------------===// |
| 3373 | // CFG: Queries for BlkExprs. |
| 3374 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 3375 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3376 | namespace { |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 3377 | typedef llvm::DenseMap<const Stmt*,unsigned> BlkExprMapTy; |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3378 | } |
| 3379 | |
Ted Kremenek | f1d10d9 | 2011-08-23 23:05:04 +0000 | [diff] [blame] | 3380 | static void FindSubExprAssignments(const Stmt *S, |
| 3381 | llvm::SmallPtrSet<const Expr*,50>& Set) { |
Ted Kremenek | 8a69366 | 2009-12-23 23:37:10 +0000 | [diff] [blame] | 3382 | if (!S) |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 3383 | return; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3384 | |
Ted Kremenek | f1d10d9 | 2011-08-23 23:05:04 +0000 | [diff] [blame] | 3385 | for (Stmt::const_child_range I = S->children(); I; ++I) { |
| 3386 | const Stmt *child = *I; |
Ted Kremenek | 8a69366 | 2009-12-23 23:37:10 +0000 | [diff] [blame] | 3387 | if (!child) |
| 3388 | continue; |
Ted Kremenek | ad5a894 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3389 | |
Ted Kremenek | f1d10d9 | 2011-08-23 23:05:04 +0000 | [diff] [blame] | 3390 | if (const BinaryOperator* B = dyn_cast<BinaryOperator>(child)) |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 3391 | if (B->isAssignmentOp()) Set.insert(B); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3392 | |
Ted Kremenek | 8a69366 | 2009-12-23 23:37:10 +0000 | [diff] [blame] | 3393 | FindSubExprAssignments(child, Set); |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 3394 | } |
| 3395 | } |
| 3396 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3397 | static BlkExprMapTy* PopulateBlkExprMap(CFG& cfg) { |
| 3398 | BlkExprMapTy* M = new BlkExprMapTy(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3399 | |
| 3400 | // Look for assignments that are used as subexpressions. These are the only |
| 3401 | // assignments that we want to *possibly* register as a block-level |
| 3402 | // expression. Basically, if an assignment occurs both in a subexpression and |
| 3403 | // at the block-level, it is a block-level expression. |
Ted Kremenek | f1d10d9 | 2011-08-23 23:05:04 +0000 | [diff] [blame] | 3404 | llvm::SmallPtrSet<const Expr*,50> SubExprAssignments; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3405 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3406 | for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 3407 | for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI) |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3408 | if (Optional<CFGStmt> S = BI->getAs<CFGStmt>()) |
| 3409 | FindSubExprAssignments(S->getStmt(), SubExprAssignments); |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 3410 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3411 | for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3412 | |
| 3413 | // Iterate over the statements again on identify the Expr* and Stmt* at the |
| 3414 | // block-level that are block-level expressions. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3415 | |
Zhongxing Xu | b36cd3e | 2010-09-16 01:25:47 +0000 | [diff] [blame] | 3416 | for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI) { |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3417 | Optional<CFGStmt> CS = BI->getAs<CFGStmt>(); |
Ted Kremenek | 3c0349e | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 3418 | if (!CS) |
Zhongxing Xu | b36cd3e | 2010-09-16 01:25:47 +0000 | [diff] [blame] | 3419 | continue; |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3420 | if (const Expr *Exp = dyn_cast<Expr>(CS->getStmt())) { |
Jordy Rose | ac73ea8 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 3421 | assert((Exp->IgnoreParens() == Exp) && "No parens on block-level exps"); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3422 | |
Ted Kremenek | f1d10d9 | 2011-08-23 23:05:04 +0000 | [diff] [blame] | 3423 | if (const BinaryOperator* B = dyn_cast<BinaryOperator>(Exp)) { |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 3424 | // Assignment expressions that are not nested within another |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3425 | // expression are really "statements" whose value is never used by |
| 3426 | // another expression. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3427 | if (B->isAssignmentOp() && !SubExprAssignments.count(Exp)) |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 3428 | continue; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3429 | } else if (const StmtExpr *SE = dyn_cast<StmtExpr>(Exp)) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3430 | // Special handling for statement expressions. The last statement in |
| 3431 | // the statement expression is also a block-level expr. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3432 | const CompoundStmt *C = SE->getSubStmt(); |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 3433 | if (!C->body_empty()) { |
Jordy Rose | ac73ea8 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 3434 | const Stmt *Last = C->body_back(); |
| 3435 | if (const Expr *LastEx = dyn_cast<Expr>(Last)) |
| 3436 | Last = LastEx->IgnoreParens(); |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 3437 | unsigned x = M->size(); |
Jordy Rose | ac73ea8 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 3438 | (*M)[Last] = x; |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 3439 | } |
| 3440 | } |
Ted Kremenek | e2dcd78 | 2008-01-25 23:22:27 +0000 | [diff] [blame] | 3441 | |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 3442 | unsigned x = M->size(); |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3443 | (*M)[Exp] = x; |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 3444 | } |
Zhongxing Xu | b36cd3e | 2010-09-16 01:25:47 +0000 | [diff] [blame] | 3445 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3446 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3447 | // Look at terminators. The condition is a block-level expression. |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3448 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3449 | Stmt *S = (*I)->getTerminatorCondition(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3450 | |
Ted Kremenek | 390e48b | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 3451 | if (S && M->find(S) == M->end()) { |
Jordy Rose | ac73ea8 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 3452 | unsigned x = M->size(); |
| 3453 | (*M)[S] = x; |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3454 | } |
| 3455 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3456 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3457 | return M; |
| 3458 | } |
| 3459 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3460 | CFG::BlkExprNumTy CFG::getBlkExprNum(const Stmt *S) { |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 3461 | assert(S != NULL); |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3462 | if (!BlkExprMap) { BlkExprMap = (void*) PopulateBlkExprMap(*this); } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3463 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3464 | BlkExprMapTy* M = reinterpret_cast<BlkExprMapTy*>(BlkExprMap); |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 3465 | BlkExprMapTy::iterator I = M->find(S); |
Ted Kremenek | 3fa1e4b | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 3466 | return (I == M->end()) ? CFG::BlkExprNumTy() : CFG::BlkExprNumTy(I->second); |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3467 | } |
| 3468 | |
| 3469 | unsigned CFG::getNumBlkExprs() { |
| 3470 | if (const BlkExprMapTy* M = reinterpret_cast<const BlkExprMapTy*>(BlkExprMap)) |
| 3471 | return M->size(); |
Zhanyong Wan | 36f327c | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3472 | |
| 3473 | // We assume callers interested in the number of BlkExprs will want |
| 3474 | // the map constructed if it doesn't already exist. |
| 3475 | BlkExprMap = (void*) PopulateBlkExprMap(*this); |
| 3476 | return reinterpret_cast<BlkExprMapTy*>(BlkExprMap)->size(); |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3477 | } |
| 3478 | |
Ted Kremenek | 274f433 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 3479 | //===----------------------------------------------------------------------===// |
Ted Kremenek | ee7f84d | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 3480 | // Filtered walking of the CFG. |
| 3481 | //===----------------------------------------------------------------------===// |
| 3482 | |
| 3483 | bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F, |
Ted Kremenek | be39a56 | 2010-09-09 02:57:48 +0000 | [diff] [blame] | 3484 | const CFGBlock *From, const CFGBlock *To) { |
Ted Kremenek | ee7f84d | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 3485 | |
Ted Kremenek | 6e40035 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 3486 | if (To && F.IgnoreDefaultsWithCoveredEnums) { |
Ted Kremenek | ee7f84d | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 3487 | // If the 'To' has no label or is labeled but the label isn't a |
| 3488 | // CaseStmt then filter this edge. |
| 3489 | if (const SwitchStmt *S = |
Ted Kremenek | 6e40035 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 3490 | dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) { |
Ted Kremenek | ee7f84d | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 3491 | if (S->isAllEnumCasesCovered()) { |
Ted Kremenek | 6e40035 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 3492 | const Stmt *L = To->getLabel(); |
| 3493 | if (!L || !isa<CaseStmt>(L)) |
| 3494 | return true; |
Ted Kremenek | ee7f84d | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 3495 | } |
| 3496 | } |
| 3497 | } |
| 3498 | |
| 3499 | return false; |
| 3500 | } |
| 3501 | |
| 3502 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 274f433 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 3503 | // Cleanup: CFG dstor. |
| 3504 | //===----------------------------------------------------------------------===// |
| 3505 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 3506 | CFG::~CFG() { |
| 3507 | delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap); |
| 3508 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3509 | |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 3510 | //===----------------------------------------------------------------------===// |
| 3511 | // CFG pretty printing |
| 3512 | //===----------------------------------------------------------------------===// |
| 3513 | |
Ted Kremenek | e8ee26b | 2007-08-22 18:22:34 +0000 | [diff] [blame] | 3514 | namespace { |
| 3515 | |
Kovarththanan Rajaratnam | ba5fb5a | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 3516 | class StmtPrinterHelper : public PrinterHelper { |
Ted Kremenek | 3c0349e | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 3517 | typedef llvm::DenseMap<const Stmt*,std::pair<unsigned,unsigned> > StmtMapTy; |
| 3518 | typedef llvm::DenseMap<const Decl*,std::pair<unsigned,unsigned> > DeclMapTy; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3519 | StmtMapTy StmtMap; |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3520 | DeclMapTy DeclMap; |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3521 | signed currentBlock; |
Ted Kremenek | 66c486f | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 3522 | unsigned currStmt; |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3523 | const LangOptions &LangOpts; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3524 | public: |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 3525 | |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3526 | StmtPrinterHelper(const CFG* cfg, const LangOptions &LO) |
Ted Kremenek | 66c486f | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 3527 | : currentBlock(0), currStmt(0), LangOpts(LO) |
Ted Kremenek | 3c0349e | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 3528 | { |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3529 | for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) { |
| 3530 | unsigned j = 1; |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 3531 | for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ; |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3532 | BI != BEnd; ++BI, ++j ) { |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3533 | if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) { |
| 3534 | const Stmt *stmt= SE->getStmt(); |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3535 | std::pair<unsigned, unsigned> P((*I)->getBlockID(), j); |
Ted Kremenek | 3c0349e | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 3536 | StmtMap[stmt] = P; |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3537 | |
Ted Kremenek | 3c0349e | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 3538 | switch (stmt->getStmtClass()) { |
| 3539 | case Stmt::DeclStmtClass: |
| 3540 | DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P; |
| 3541 | break; |
| 3542 | case Stmt::IfStmtClass: { |
| 3543 | const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable(); |
| 3544 | if (var) |
| 3545 | DeclMap[var] = P; |
| 3546 | break; |
| 3547 | } |
| 3548 | case Stmt::ForStmtClass: { |
| 3549 | const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable(); |
| 3550 | if (var) |
| 3551 | DeclMap[var] = P; |
| 3552 | break; |
| 3553 | } |
| 3554 | case Stmt::WhileStmtClass: { |
| 3555 | const VarDecl *var = |
| 3556 | cast<WhileStmt>(stmt)->getConditionVariable(); |
| 3557 | if (var) |
| 3558 | DeclMap[var] = P; |
| 3559 | break; |
| 3560 | } |
| 3561 | case Stmt::SwitchStmtClass: { |
| 3562 | const VarDecl *var = |
| 3563 | cast<SwitchStmt>(stmt)->getConditionVariable(); |
| 3564 | if (var) |
| 3565 | DeclMap[var] = P; |
| 3566 | break; |
| 3567 | } |
| 3568 | case Stmt::CXXCatchStmtClass: { |
| 3569 | const VarDecl *var = |
| 3570 | cast<CXXCatchStmt>(stmt)->getExceptionDecl(); |
| 3571 | if (var) |
| 3572 | DeclMap[var] = P; |
| 3573 | break; |
| 3574 | } |
| 3575 | default: |
| 3576 | break; |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3577 | } |
| 3578 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3579 | } |
Zhongxing Xu | b36cd3e | 2010-09-16 01:25:47 +0000 | [diff] [blame] | 3580 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3581 | } |
Ted Kremenek | 3c0349e | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 3582 | |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3583 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3584 | virtual ~StmtPrinterHelper() {} |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3585 | |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3586 | const LangOptions &getLangOpts() const { return LangOpts; } |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3587 | void setBlockID(signed i) { currentBlock = i; } |
Ted Kremenek | 66c486f | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 3588 | void setStmtID(unsigned i) { currStmt = i; } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3589 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3590 | virtual bool handledStmt(Stmt *S, raw_ostream &OS) { |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3591 | StmtMapTy::iterator I = StmtMap.find(S); |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3592 | |
| 3593 | if (I == StmtMap.end()) |
| 3594 | return false; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3595 | |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3596 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | 66c486f | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 3597 | && I->second.second == currStmt) { |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3598 | return false; |
Ted Kremenek | 3fa1e4b | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 3599 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3600 | |
Ted Kremenek | 3fa1e4b | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 3601 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 3602 | return true; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3603 | } |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3604 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3605 | bool handleDecl(const Decl *D, raw_ostream &OS) { |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3606 | DeclMapTy::iterator I = DeclMap.find(D); |
| 3607 | |
| 3608 | if (I == DeclMap.end()) |
| 3609 | return false; |
| 3610 | |
Ted Kremenek | 0a3ed31 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3611 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | 66c486f | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 3612 | && I->second.second == currStmt) { |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3613 | return false; |
| 3614 | } |
| 3615 | |
| 3616 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
| 3617 | return true; |
| 3618 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3619 | }; |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3620 | } // end anonymous namespace |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3621 | |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3622 | |
| 3623 | namespace { |
Kovarththanan Rajaratnam | ba5fb5a | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 3624 | class CFGBlockTerminatorPrint |
Ted Kremenek | 6fa9b88 | 2008-01-08 18:15:10 +0000 | [diff] [blame] | 3625 | : public StmtVisitor<CFGBlockTerminatorPrint,void> { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3626 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3627 | raw_ostream &OS; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3628 | StmtPrinterHelper* Helper; |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 3629 | PrintingPolicy Policy; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3630 | public: |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3631 | CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper, |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3632 | const PrintingPolicy &Policy) |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 3633 | : OS(os), Helper(helper), Policy(Policy) {} |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3634 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3635 | void VisitIfStmt(IfStmt *I) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3636 | OS << "if "; |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 3637 | I->getCond()->printPretty(OS,Helper,Policy); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3638 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3639 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3640 | // Default case. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3641 | void VisitStmt(Stmt *Terminator) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3642 | Terminator->printPretty(OS, Helper, Policy); |
| 3643 | } |
| 3644 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3645 | void VisitForStmt(ForStmt *F) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3646 | OS << "for (" ; |
Ted Kremenek | 3fa1e4b | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 3647 | if (F->getInit()) |
| 3648 | OS << "..."; |
Ted Kremenek | 535bb20 | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 3649 | OS << "; "; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3650 | if (Stmt *C = F->getCond()) |
Ted Kremenek | 3fa1e4b | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 3651 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 535bb20 | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 3652 | OS << "; "; |
Ted Kremenek | 3fa1e4b | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 3653 | if (F->getInc()) |
| 3654 | OS << "..."; |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 3655 | OS << ")"; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3656 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3657 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3658 | void VisitWhileStmt(WhileStmt *W) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3659 | OS << "while " ; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3660 | if (Stmt *C = W->getCond()) |
Ted Kremenek | 3fa1e4b | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 3661 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3662 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3663 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3664 | void VisitDoStmt(DoStmt *D) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3665 | OS << "do ... while "; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3666 | if (Stmt *C = D->getCond()) |
Ted Kremenek | 3fa1e4b | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 3667 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 3668 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3669 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3670 | void VisitSwitchStmt(SwitchStmt *Terminator) { |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 3671 | OS << "switch "; |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 3672 | Terminator->getCond()->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 3673 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3674 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3675 | void VisitCXXTryStmt(CXXTryStmt *CS) { |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3676 | OS << "try ..."; |
| 3677 | } |
| 3678 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 3679 | void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) { |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 3680 | C->getCond()->printPretty(OS, Helper, Policy); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3681 | OS << " ? ... : ..."; |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 3682 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3683 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3684 | void VisitChooseExpr(ChooseExpr *C) { |
Ted Kremenek | aeddbf6 | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 3685 | OS << "__builtin_choose_expr( "; |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 3686 | C->getCond()->printPretty(OS, Helper, Policy); |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 3687 | OS << " )"; |
Ted Kremenek | aeddbf6 | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 3688 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3689 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3690 | void VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 3691 | OS << "goto *"; |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 3692 | I->getTarget()->printPretty(OS, Helper, Policy); |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 3693 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3694 | |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 3695 | void VisitBinaryOperator(BinaryOperator* B) { |
| 3696 | if (!B->isLogicalOp()) { |
| 3697 | VisitExpr(B); |
| 3698 | return; |
| 3699 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3700 | |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 3701 | B->getLHS()->printPretty(OS, Helper, Policy); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3702 | |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 3703 | switch (B->getOpcode()) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3704 | case BO_LOr: |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 3705 | OS << " || ..."; |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 3706 | return; |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3707 | case BO_LAnd: |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 3708 | OS << " && ..."; |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 3709 | return; |
| 3710 | default: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 3711 | llvm_unreachable("Invalid logical operator."); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3712 | } |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 3713 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3714 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3715 | void VisitExpr(Expr *E) { |
Douglas Gregor | d249e1d1f | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 3716 | E->printPretty(OS, Helper, Policy); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3717 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3718 | }; |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3719 | } // end anonymous namespace |
| 3720 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3721 | static void print_elem(raw_ostream &OS, StmtPrinterHelper* Helper, |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 3722 | const CFGElement &E) { |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3723 | if (Optional<CFGStmt> CS = E.getAs<CFGStmt>()) { |
| 3724 | const Stmt *S = CS->getStmt(); |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3725 | |
| 3726 | if (Helper) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3727 | |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3728 | // special printing for statement-expressions. |
Ted Kremenek | f1d10d9 | 2011-08-23 23:05:04 +0000 | [diff] [blame] | 3729 | if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) { |
| 3730 | const CompoundStmt *Sub = SE->getSubStmt(); |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3731 | |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 3732 | if (Sub->children()) { |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3733 | OS << "({ ... ; "; |
| 3734 | Helper->handledStmt(*SE->getSubStmt()->body_rbegin(),OS); |
| 3735 | OS << " })\n"; |
| 3736 | return; |
| 3737 | } |
| 3738 | } |
| 3739 | // special printing for comma expressions. |
Ted Kremenek | f1d10d9 | 2011-08-23 23:05:04 +0000 | [diff] [blame] | 3740 | if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) { |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3741 | if (B->getOpcode() == BO_Comma) { |
| 3742 | OS << "... , "; |
| 3743 | Helper->handledStmt(B->getRHS(),OS); |
| 3744 | OS << '\n'; |
| 3745 | return; |
| 3746 | } |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 3747 | } |
| 3748 | } |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3749 | S->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts())); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3750 | |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3751 | if (isa<CXXOperatorCallExpr>(S)) { |
Zhanyong Wan | 36f327c | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3752 | OS << " (OperatorCall)"; |
Ted Kremenek | 893d414 | 2011-12-21 19:32:38 +0000 | [diff] [blame] | 3753 | } |
| 3754 | else if (isa<CXXBindTemporaryExpr>(S)) { |
Zhanyong Wan | 36f327c | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3755 | OS << " (BindTemporary)"; |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3756 | } |
Ted Kremenek | 3b7a48f | 2011-12-21 19:39:59 +0000 | [diff] [blame] | 3757 | else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) { |
| 3758 | OS << " (CXXConstructExpr, " << CCE->getType().getAsString() << ")"; |
| 3759 | } |
Ted Kremenek | 893d414 | 2011-12-21 19:32:38 +0000 | [diff] [blame] | 3760 | else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) { |
| 3761 | OS << " (" << CE->getStmtClassName() << ", " |
| 3762 | << CE->getCastKindName() |
| 3763 | << ", " << CE->getType().getAsString() |
| 3764 | << ")"; |
| 3765 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3766 | |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3767 | // Expressions need a newline. |
| 3768 | if (isa<Expr>(S)) |
| 3769 | OS << '\n'; |
Ted Kremenek | 4e0cfa8 | 2010-08-31 18:47:37 +0000 | [diff] [blame] | 3770 | |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3771 | } else if (Optional<CFGInitializer> IE = E.getAs<CFGInitializer>()) { |
| 3772 | const CXXCtorInitializer *I = IE->getInitializer(); |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3773 | if (I->isBaseInitializer()) |
| 3774 | OS << I->getBaseClass()->getAsCXXRecordDecl()->getName(); |
Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 3775 | else OS << I->getAnyMember()->getName(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3776 | |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3777 | OS << "("; |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3778 | if (Expr *IE = I->getInit()) |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3779 | IE->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts())); |
| 3780 | OS << ")"; |
| 3781 | |
| 3782 | if (I->isBaseInitializer()) |
| 3783 | OS << " (Base initializer)\n"; |
| 3784 | else OS << " (Member initializer)\n"; |
| 3785 | |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3786 | } else if (Optional<CFGAutomaticObjDtor> DE = |
| 3787 | E.getAs<CFGAutomaticObjDtor>()) { |
| 3788 | const VarDecl *VD = DE->getVarDecl(); |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3789 | Helper->handleDecl(VD, OS); |
| 3790 | |
Marcin Swiderski | b1c5287 | 2010-10-25 07:00:40 +0000 | [diff] [blame] | 3791 | const Type* T = VD->getType().getTypePtr(); |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3792 | if (const ReferenceType* RT = T->getAs<ReferenceType>()) |
| 3793 | T = RT->getPointeeType().getTypePtr(); |
Richard Smith | 56df4a9 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3794 | T = T->getBaseElementTypeUnsafe(); |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3795 | |
| 3796 | OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()"; |
| 3797 | OS << " (Implicit destructor)\n"; |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 3798 | |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3799 | } else if (Optional<CFGBaseDtor> BE = E.getAs<CFGBaseDtor>()) { |
| 3800 | const CXXBaseSpecifier *BS = BE->getBaseSpecifier(); |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 3801 | OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 4e493e0 | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 3802 | OS << " (Base object destructor)\n"; |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 3803 | |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3804 | } else if (Optional<CFGMemberDtor> ME = E.getAs<CFGMemberDtor>()) { |
| 3805 | const FieldDecl *FD = ME->getFieldDecl(); |
Richard Smith | 56df4a9 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3806 | const Type *T = FD->getType()->getBaseElementTypeUnsafe(); |
Marcin Swiderski | 7c625d8 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 3807 | OS << "this->" << FD->getName(); |
Marcin Swiderski | 8c5e5d6 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 3808 | OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 4e493e0 | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 3809 | OS << " (Member object destructor)\n"; |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3810 | |
David Blaikie | b078054 | 2013-02-23 00:29:34 +0000 | [diff] [blame^] | 3811 | } else if (Optional<CFGTemporaryDtor> TE = E.getAs<CFGTemporaryDtor>()) { |
| 3812 | const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr(); |
Marcin Swiderski | 8599e76 | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3813 | OS << "~" << BT->getType()->getAsCXXRecordDecl()->getName() << "()"; |
| 3814 | OS << " (Temporary object destructor)\n"; |
Marcin Swiderski | 1cff132 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 3815 | } |
Zhongxing Xu | 81bc7d0 | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3816 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3817 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3818 | static void print_block(raw_ostream &OS, const CFG* cfg, |
| 3819 | const CFGBlock &B, |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3820 | StmtPrinterHelper* Helper, bool print_edges, |
| 3821 | bool ShowColors) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3822 | |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3823 | if (Helper) |
| 3824 | Helper->setBlockID(B.getBlockID()); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3825 | |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 3826 | // Print the header. |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3827 | if (ShowColors) |
| 3828 | OS.changeColor(raw_ostream::YELLOW, true); |
| 3829 | |
| 3830 | OS << "\n [B" << B.getBlockID(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3831 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3832 | if (&B == &cfg->getEntry()) |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3833 | OS << " (ENTRY)]\n"; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3834 | else if (&B == &cfg->getExit()) |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3835 | OS << " (EXIT)]\n"; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3836 | else if (&B == cfg->getIndirectGotoBlock()) |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3837 | OS << " (INDIRECT GOTO DISPATCH)]\n"; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3838 | else |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3839 | OS << "]\n"; |
| 3840 | |
| 3841 | if (ShowColors) |
| 3842 | OS.resetColor(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3843 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3844 | // Print the label of this block. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3845 | if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) { |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3846 | |
| 3847 | if (print_edges) |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3848 | OS << " "; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3849 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3850 | if (LabelStmt *L = dyn_cast<LabelStmt>(Label)) |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3851 | OS << L->getName(); |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3852 | else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) { |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3853 | OS << "case "; |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3854 | C->getLHS()->printPretty(OS, Helper, |
| 3855 | PrintingPolicy(Helper->getLangOpts())); |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3856 | if (C->getRHS()) { |
| 3857 | OS << " ... "; |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3858 | C->getRHS()->printPretty(OS, Helper, |
| 3859 | PrintingPolicy(Helper->getLangOpts())); |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3860 | } |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 3861 | } else if (isa<DefaultStmt>(Label)) |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3862 | OS << "default"; |
Mike Stump | 079bd72 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 3863 | else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) { |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3864 | OS << "catch ("; |
Mike Stump | a1f9363 | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3865 | if (CS->getExceptionDecl()) |
| 3866 | CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper->getLangOpts()), |
| 3867 | 0); |
| 3868 | else |
| 3869 | OS << "..."; |
Mike Stump | 5d1d202 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3870 | OS << ")"; |
| 3871 | |
| 3872 | } else |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 3873 | llvm_unreachable("Invalid label statement in CFGBlock."); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3874 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3875 | OS << ":\n"; |
| 3876 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3877 | |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 3878 | // Iterate through the statements in the block and print them. |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 3879 | unsigned j = 1; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3880 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3881 | for (CFGBlock::const_iterator I = B.begin(), E = B.end() ; |
| 3882 | I != E ; ++I, ++j ) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3883 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3884 | // Print the statement # in the basic block and the statement itself. |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3885 | if (print_edges) |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3886 | OS << " "; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3887 | |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 3888 | OS << llvm::format("%3d", j) << ": "; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3889 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3890 | if (Helper) |
| 3891 | Helper->setStmtID(j); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3892 | |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3893 | print_elem(OS, Helper, *I); |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 3894 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3895 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3896 | // Print the terminator of this block. |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3897 | if (B.getTerminator()) { |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3898 | if (ShowColors) |
| 3899 | OS.changeColor(raw_ostream::GREEN); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3900 | |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3901 | OS << " T: "; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3902 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3903 | if (Helper) Helper->setBlockID(-1); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3904 | |
Ted Kremenek | 507d106 | 2012-10-12 22:56:31 +0000 | [diff] [blame] | 3905 | PrintingPolicy PP(Helper ? Helper->getLangOpts() : LangOptions()); |
| 3906 | CFGBlockTerminatorPrint TPrinter(OS, Helper, PP); |
Marcin Swiderski | 4ba72a0 | 2010-10-29 05:21:47 +0000 | [diff] [blame] | 3907 | TPrinter.Visit(const_cast<Stmt*>(B.getTerminator().getStmt())); |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 3908 | OS << '\n'; |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3909 | |
| 3910 | if (ShowColors) |
| 3911 | OS.resetColor(); |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 3912 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3913 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3914 | if (print_edges) { |
| 3915 | // Print the predecessors of this block. |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3916 | if (!B.pred_empty()) { |
| 3917 | const raw_ostream::Colors Color = raw_ostream::BLUE; |
| 3918 | if (ShowColors) |
| 3919 | OS.changeColor(Color); |
| 3920 | OS << " Preds " ; |
| 3921 | if (ShowColors) |
| 3922 | OS.resetColor(); |
| 3923 | OS << '(' << B.pred_size() << "):"; |
| 3924 | unsigned i = 0; |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3925 | |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3926 | if (ShowColors) |
| 3927 | OS.changeColor(Color); |
| 3928 | |
| 3929 | for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end(); |
| 3930 | I != E; ++I, ++i) { |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3931 | |
Will Dietz | dac6252 | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 3932 | if (i % 10 == 8) |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3933 | OS << "\n "; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3934 | |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3935 | OS << " B" << (*I)->getBlockID(); |
| 3936 | } |
| 3937 | |
| 3938 | if (ShowColors) |
| 3939 | OS.resetColor(); |
| 3940 | |
| 3941 | OS << '\n'; |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3942 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3943 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3944 | // Print the successors of this block. |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3945 | if (!B.succ_empty()) { |
| 3946 | const raw_ostream::Colors Color = raw_ostream::MAGENTA; |
| 3947 | if (ShowColors) |
| 3948 | OS.changeColor(Color); |
| 3949 | OS << " Succs "; |
| 3950 | if (ShowColors) |
| 3951 | OS.resetColor(); |
| 3952 | OS << '(' << B.succ_size() << "):"; |
| 3953 | unsigned i = 0; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3954 | |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3955 | if (ShowColors) |
| 3956 | OS.changeColor(Color); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3957 | |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3958 | for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end(); |
| 3959 | I != E; ++I, ++i) { |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3960 | |
Will Dietz | dac6252 | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 3961 | if (i % 10 == 8) |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3962 | OS << "\n "; |
| 3963 | |
| 3964 | if (*I) |
| 3965 | OS << " B" << (*I)->getBlockID(); |
| 3966 | else |
| 3967 | OS << " NULL"; |
| 3968 | } |
| 3969 | |
| 3970 | if (ShowColors) |
| 3971 | OS.resetColor(); |
| 3972 | OS << '\n'; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3973 | } |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 3974 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3975 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3976 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3977 | |
| 3978 | /// dump - A simple pretty printer of a CFG that outputs to stderr. |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3979 | void CFG::dump(const LangOptions &LO, bool ShowColors) const { |
| 3980 | print(llvm::errs(), LO, ShowColors); |
| 3981 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3982 | |
| 3983 | /// print - A simple pretty printer of a CFG that outputs to an ostream. |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3984 | void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 3985 | StmtPrinterHelper Helper(this, LO); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3986 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3987 | // Print the entry block. |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3988 | print_block(OS, this, getEntry(), &Helper, true, ShowColors); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3989 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3990 | // Iterate through the CFGBlocks and print them one by one. |
| 3991 | for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) { |
| 3992 | // Skip the entry block, because we already printed it. |
Ted Kremenek | ee82d9b | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 3993 | if (&(**I) == &getEntry() || &(**I) == &getExit()) |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3994 | continue; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3995 | |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 3996 | print_block(OS, this, **I, &Helper, true, ShowColors); |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3997 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3998 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 3999 | // Print the exit block. |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4000 | print_block(OS, this, getExit(), &Helper, true, ShowColors); |
| 4001 | OS << '\n'; |
Ted Kremenek | d017243 | 2008-11-24 20:50:24 +0000 | [diff] [blame] | 4002 | OS.flush(); |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4003 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4004 | |
| 4005 | /// dump - A simply pretty printer of a CFGBlock that outputs to stderr. |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4006 | void CFGBlock::dump(const CFG* cfg, const LangOptions &LO, |
| 4007 | bool ShowColors) const { |
| 4008 | print(llvm::errs(), cfg, LO, ShowColors); |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4009 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4010 | |
| 4011 | /// print - A simple pretty printer of a CFGBlock that outputs to an ostream. |
| 4012 | /// Generally this will only be called from CFG::print. |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4013 | void CFGBlock::print(raw_ostream &OS, const CFG* cfg, |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4014 | const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4015 | StmtPrinterHelper Helper(cfg, LO); |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4016 | print_block(OS, cfg, *this, &Helper, true, ShowColors); |
| 4017 | OS << '\n'; |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4018 | } |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4019 | |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4020 | /// printTerminator - A simple pretty printer of the terminator of a CFGBlock. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4021 | void CFGBlock::printTerminator(raw_ostream &OS, |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4022 | const LangOptions &LO) const { |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4023 | CFGBlockTerminatorPrint TPrinter(OS, NULL, PrintingPolicy(LO)); |
Marcin Swiderski | 4ba72a0 | 2010-10-29 05:21:47 +0000 | [diff] [blame] | 4024 | TPrinter.Visit(const_cast<Stmt*>(getTerminator().getStmt())); |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4025 | } |
| 4026 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4027 | Stmt *CFGBlock::getTerminatorCondition() { |
Marcin Swiderski | 4ba72a0 | 2010-10-29 05:21:47 +0000 | [diff] [blame] | 4028 | Stmt *Terminator = this->Terminator; |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4029 | if (!Terminator) |
| 4030 | return NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4031 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4032 | Expr *E = NULL; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4033 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4034 | switch (Terminator->getStmtClass()) { |
| 4035 | default: |
| 4036 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4037 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4038 | case Stmt::ForStmtClass: |
| 4039 | E = cast<ForStmt>(Terminator)->getCond(); |
| 4040 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4041 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4042 | case Stmt::WhileStmtClass: |
| 4043 | E = cast<WhileStmt>(Terminator)->getCond(); |
| 4044 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4045 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4046 | case Stmt::DoStmtClass: |
| 4047 | E = cast<DoStmt>(Terminator)->getCond(); |
| 4048 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4049 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4050 | case Stmt::IfStmtClass: |
| 4051 | E = cast<IfStmt>(Terminator)->getCond(); |
| 4052 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4053 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4054 | case Stmt::ChooseExprClass: |
| 4055 | E = cast<ChooseExpr>(Terminator)->getCond(); |
| 4056 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4057 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4058 | case Stmt::IndirectGotoStmtClass: |
| 4059 | E = cast<IndirectGotoStmt>(Terminator)->getTarget(); |
| 4060 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4061 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4062 | case Stmt::SwitchStmtClass: |
| 4063 | E = cast<SwitchStmt>(Terminator)->getCond(); |
| 4064 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4065 | |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4066 | case Stmt::BinaryConditionalOperatorClass: |
| 4067 | E = cast<BinaryConditionalOperator>(Terminator)->getCond(); |
| 4068 | break; |
| 4069 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4070 | case Stmt::ConditionalOperatorClass: |
| 4071 | E = cast<ConditionalOperator>(Terminator)->getCond(); |
| 4072 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4073 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4074 | case Stmt::BinaryOperatorClass: // '&&' and '||' |
| 4075 | E = cast<BinaryOperator>(Terminator)->getLHS(); |
Ted Kremenek | 390e48b | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 4076 | break; |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4077 | |
Ted Kremenek | 390e48b | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 4078 | case Stmt::ObjCForCollectionStmtClass: |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4079 | return Terminator; |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4080 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4081 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4082 | return E ? E->IgnoreParens() : NULL; |
| 4083 | } |
| 4084 | |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4085 | //===----------------------------------------------------------------------===// |
| 4086 | // CFG Graphviz Visualization |
| 4087 | //===----------------------------------------------------------------------===// |
| 4088 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4089 | |
| 4090 | #ifndef NDEBUG |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4091 | static StmtPrinterHelper* GraphHelper; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4092 | #endif |
| 4093 | |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4094 | void CFG::viewCFG(const LangOptions &LO) const { |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4095 | #ifndef NDEBUG |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4096 | StmtPrinterHelper H(this, LO); |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4097 | GraphHelper = &H; |
| 4098 | llvm::ViewGraph(this,"CFG"); |
| 4099 | GraphHelper = NULL; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4100 | #endif |
| 4101 | } |
| 4102 | |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4103 | namespace llvm { |
| 4104 | template<> |
| 4105 | struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits { |
Tobias Grosser | 006b0eb | 2009-11-30 14:16:05 +0000 | [diff] [blame] | 4106 | |
| 4107 | DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} |
| 4108 | |
Ted Kremenek | 9c378f7 | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4109 | static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) { |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4110 | |
Hartmut Kaiser | bd250b4 | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 4111 | #ifndef NDEBUG |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 4112 | std::string OutSStr; |
| 4113 | llvm::raw_string_ostream Out(OutSStr); |
Ted Kremenek | 682060c | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4114 | print_block(Out,Graph, *Node, GraphHelper, false, false); |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 4115 | std::string& OutStr = Out.str(); |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4116 | |
| 4117 | if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); |
| 4118 | |
| 4119 | // Process string output to make it nicer... |
| 4120 | for (unsigned i = 0; i != OutStr.length(); ++i) |
| 4121 | if (OutStr[i] == '\n') { // Left justify |
| 4122 | OutStr[i] = '\\'; |
| 4123 | OutStr.insert(OutStr.begin()+i+1, 'l'); |
| 4124 | } |
Mike Stump | 6d9828c | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4125 | |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4126 | return OutStr; |
Hartmut Kaiser | bd250b4 | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 4127 | #else |
| 4128 | return ""; |
| 4129 | #endif |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4130 | } |
| 4131 | }; |
| 4132 | } // end namespace llvm |