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