Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1 | //===- CFG.cpp - Classes for representing and building CFGs ---------------===// |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 5b12ab8 | 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 | 4aa1e8b | 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 | 6796fbd | 2009-07-16 18:13:04 +0000 | [diff] [blame] | 15 | #include "clang/Analysis/CFG.h" |
Benjamin Kramer | 1ea8e09 | 2012-07-04 17:04:04 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 17 | #include "clang/AST/Attr.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 18 | #include "clang/AST/Decl.h" |
| 19 | #include "clang/AST/DeclBase.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclCXX.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclGroup.h" |
| 22 | #include "clang/AST/Expr.h" |
| 23 | #include "clang/AST/ExprCXX.h" |
| 24 | #include "clang/AST/OperationKinds.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 25 | #include "clang/AST/PrettyPrinter.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 26 | #include "clang/AST/Stmt.h" |
| 27 | #include "clang/AST/StmtCXX.h" |
| 28 | #include "clang/AST/StmtObjC.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 29 | #include "clang/AST/StmtVisitor.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 30 | #include "clang/AST/Type.h" |
| 31 | #include "clang/Analysis/Support/BumpVector.h" |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 32 | #include "clang/Basic/Builtins.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 33 | #include "clang/Basic/ExceptionSpecificationType.h" |
| 34 | #include "clang/Basic/LLVM.h" |
| 35 | #include "clang/Basic/LangOptions.h" |
| 36 | #include "clang/Basic/SourceLocation.h" |
| 37 | #include "clang/Basic/Specifiers.h" |
| 38 | #include "llvm/ADT/APInt.h" |
| 39 | #include "llvm/ADT/APSInt.h" |
| 40 | #include "llvm/ADT/ArrayRef.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 41 | #include "llvm/ADT/DenseMap.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 42 | #include "llvm/ADT/Optional.h" |
| 43 | #include "llvm/ADT/STLExtras.h" |
| 44 | #include "llvm/ADT/SetVector.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 45 | #include "llvm/ADT/SmallPtrSet.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 46 | #include "llvm/ADT/SmallVector.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 47 | #include "llvm/Support/Allocator.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Casting.h" |
| 49 | #include "llvm/Support/Compiler.h" |
| 50 | #include "llvm/Support/DOTGraphTraits.h" |
| 51 | #include "llvm/Support/ErrorHandling.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 52 | #include "llvm/Support/Format.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 53 | #include "llvm/Support/GraphWriter.h" |
| 54 | #include "llvm/Support/SaveAndRestore.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 55 | #include "llvm/Support/raw_ostream.h" |
| 56 | #include <cassert> |
| 57 | #include <memory> |
| 58 | #include <string> |
| 59 | #include <tuple> |
| 60 | #include <utility> |
| 61 | #include <vector> |
Ted Kremenek | e5ccf9a | 2008-01-11 00:40:29 +0000 | [diff] [blame] | 62 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 63 | using namespace clang; |
| 64 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 65 | static SourceLocation GetEndLoc(Decl *D) { |
| 66 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 67 | if (Expr *Ex = VD->getInit()) |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 68 | return Ex->getSourceRange().getEnd(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 69 | return D->getLocation(); |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 70 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 71 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 72 | /// Helper for tryNormalizeBinaryOperator. Attempts to extract an IntegerLiteral |
| 73 | /// or EnumConstantDecl from the given Expr. If it fails, returns nullptr. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 74 | static const Expr *tryTransformToIntOrEnumConstant(const Expr *E) { |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 75 | E = E->IgnoreParens(); |
| 76 | if (isa<IntegerLiteral>(E)) |
| 77 | return E; |
| 78 | if (auto *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts())) |
| 79 | return isa<EnumConstantDecl>(DR->getDecl()) ? DR : nullptr; |
| 80 | return nullptr; |
| 81 | } |
| 82 | |
| 83 | /// Tries to interpret a binary operator into `Decl Op Expr` form, if Expr is |
| 84 | /// an integer literal or an enum constant. |
| 85 | /// |
| 86 | /// If this fails, at least one of the returned DeclRefExpr or Expr will be |
| 87 | /// null. |
| 88 | static std::tuple<const DeclRefExpr *, BinaryOperatorKind, const Expr *> |
| 89 | tryNormalizeBinaryOperator(const BinaryOperator *B) { |
| 90 | BinaryOperatorKind Op = B->getOpcode(); |
| 91 | |
| 92 | const Expr *MaybeDecl = B->getLHS(); |
| 93 | const Expr *Constant = tryTransformToIntOrEnumConstant(B->getRHS()); |
| 94 | // Expr looked like `0 == Foo` instead of `Foo == 0` |
| 95 | if (Constant == nullptr) { |
| 96 | // Flip the operator |
| 97 | if (Op == BO_GT) |
| 98 | Op = BO_LT; |
| 99 | else if (Op == BO_GE) |
| 100 | Op = BO_LE; |
| 101 | else if (Op == BO_LT) |
| 102 | Op = BO_GT; |
| 103 | else if (Op == BO_LE) |
| 104 | Op = BO_GE; |
| 105 | |
| 106 | MaybeDecl = B->getRHS(); |
| 107 | Constant = tryTransformToIntOrEnumConstant(B->getLHS()); |
| 108 | } |
| 109 | |
| 110 | auto *D = dyn_cast<DeclRefExpr>(MaybeDecl->IgnoreParenImpCasts()); |
| 111 | return std::make_tuple(D, Op, Constant); |
| 112 | } |
| 113 | |
| 114 | /// For an expression `x == Foo && x == Bar`, this determines whether the |
| 115 | /// `Foo` and `Bar` are either of the same enumeration type, or both integer |
| 116 | /// literals. |
| 117 | /// |
| 118 | /// It's an error to pass this arguments that are not either IntegerLiterals |
| 119 | /// or DeclRefExprs (that have decls of type EnumConstantDecl) |
| 120 | static bool areExprTypesCompatible(const Expr *E1, const Expr *E2) { |
| 121 | // User intent isn't clear if they're mixing int literals with enum |
| 122 | // constants. |
| 123 | if (isa<IntegerLiteral>(E1) != isa<IntegerLiteral>(E2)) |
| 124 | return false; |
| 125 | |
| 126 | // Integer literal comparisons, regardless of literal type, are acceptable. |
| 127 | if (isa<IntegerLiteral>(E1)) |
| 128 | return true; |
| 129 | |
| 130 | // IntegerLiterals are handled above and only EnumConstantDecls are expected |
| 131 | // beyond this point |
| 132 | assert(isa<DeclRefExpr>(E1) && isa<DeclRefExpr>(E2)); |
| 133 | auto *Decl1 = cast<DeclRefExpr>(E1)->getDecl(); |
| 134 | auto *Decl2 = cast<DeclRefExpr>(E2)->getDecl(); |
| 135 | |
| 136 | assert(isa<EnumConstantDecl>(Decl1) && isa<EnumConstantDecl>(Decl2)); |
| 137 | const DeclContext *DC1 = Decl1->getDeclContext(); |
| 138 | const DeclContext *DC2 = Decl2->getDeclContext(); |
| 139 | |
| 140 | assert(isa<EnumDecl>(DC1) && isa<EnumDecl>(DC2)); |
| 141 | return DC1 == DC2; |
| 142 | } |
| 143 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 144 | namespace { |
| 145 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 146 | class CFGBuilder; |
| 147 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 148 | /// The CFG builder uses a recursive algorithm to build the CFG. When |
| 149 | /// we process an expression, sometimes we know that we must add the |
| 150 | /// subexpressions as block-level expressions. For example: |
| 151 | /// |
| 152 | /// exp1 || exp2 |
| 153 | /// |
| 154 | /// When processing the '||' expression, we know that exp1 and exp2 |
| 155 | /// need to be added as block-level expressions, even though they |
| 156 | /// might not normally need to be. AddStmtChoice records this |
| 157 | /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then |
| 158 | /// the builder has an option not to add a subexpression as a |
| 159 | /// block-level expression. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 160 | class AddStmtChoice { |
| 161 | public: |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 162 | enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 }; |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 163 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 164 | AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {} |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 165 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 166 | bool alwaysAdd(CFGBuilder &builder, |
| 167 | const Stmt *stmt) const; |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 168 | |
| 169 | /// Return a copy of this object, except with the 'always-add' bit |
| 170 | /// set as specified. |
| 171 | AddStmtChoice withAlwaysAdd(bool alwaysAdd) const { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 172 | return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 175 | private: |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 176 | Kind kind; |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 177 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 178 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 179 | /// LocalScope - Node in tree of local scopes created for C++ implicit |
| 180 | /// destructor calls generation. It contains list of automatic variables |
| 181 | /// declared in the scope and link to position in previous scope this scope |
| 182 | /// began in. |
| 183 | /// |
| 184 | /// The process of creating local scopes is as follows: |
| 185 | /// - Init CFGBuilder::ScopePos with invalid position (equivalent for null), |
| 186 | /// - Before processing statements in scope (e.g. CompoundStmt) create |
| 187 | /// LocalScope object using CFGBuilder::ScopePos as link to previous scope |
| 188 | /// and set CFGBuilder::ScopePos to the end of new scope, |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 189 | /// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 190 | /// at this VarDecl, |
| 191 | /// - For every normal (without jump) end of scope add to CFGBlock destructors |
| 192 | /// for objects in the current scope, |
| 193 | /// - For every jump add to CFGBlock destructors for objects |
| 194 | /// between CFGBuilder::ScopePos and local scope position saved for jump |
| 195 | /// target. Thanks to C++ restrictions on goto jumps we can be sure that |
| 196 | /// jump target position will be on the path to root from CFGBuilder::ScopePos |
| 197 | /// (adding any variable that doesn't need constructor to be called to |
| 198 | /// LocalScope can break this assumption), |
| 199 | /// |
| 200 | class LocalScope { |
| 201 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 202 | friend class const_iterator; |
| 203 | |
| 204 | using AutomaticVarsTy = BumpVector<VarDecl *>; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 205 | |
| 206 | /// const_iterator - Iterates local scope backwards and jumps to previous |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 207 | /// scope on reaching the beginning of currently iterated scope. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 208 | class const_iterator { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 209 | const LocalScope* Scope = nullptr; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 210 | |
| 211 | /// VarIter is guaranteed to be greater then 0 for every valid iterator. |
| 212 | /// Invalid iterator (with null Scope) has VarIter equal to 0. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 213 | unsigned VarIter = 0; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 214 | |
| 215 | public: |
| 216 | /// Create invalid iterator. Dereferencing invalid iterator is not allowed. |
| 217 | /// Incrementing invalid iterator is allowed and will result in invalid |
| 218 | /// iterator. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 219 | const_iterator() = default; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 220 | |
| 221 | /// Create valid iterator. In case when S.Prev is an invalid iterator and |
| 222 | /// I is equal to 0, this will create invalid iterator. |
| 223 | const_iterator(const LocalScope& S, unsigned I) |
| 224 | : Scope(&S), VarIter(I) { |
| 225 | // Iterator to "end" of scope is not allowed. Handle it by going up |
| 226 | // in scopes tree possibly up to invalid iterator in the root. |
| 227 | if (VarIter == 0 && Scope) |
| 228 | *this = Scope->Prev; |
| 229 | } |
| 230 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 231 | VarDecl *const* operator->() const { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 232 | assert(Scope && "Dereferencing invalid iterator is not allowed"); |
| 233 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 234 | return &Scope->Vars[VarIter - 1]; |
| 235 | } |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 236 | VarDecl *operator*() const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 237 | return *this->operator->(); |
| 238 | } |
| 239 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 240 | const_iterator &operator++() { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 241 | if (!Scope) |
| 242 | return *this; |
| 243 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 244 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 245 | --VarIter; |
| 246 | if (VarIter == 0) |
| 247 | *this = Scope->Prev; |
| 248 | return *this; |
| 249 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 250 | const_iterator operator++(int) { |
| 251 | const_iterator P = *this; |
| 252 | ++*this; |
| 253 | return P; |
| 254 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 255 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 256 | bool operator==(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 257 | return Scope == rhs.Scope && VarIter == rhs.VarIter; |
| 258 | } |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 259 | bool operator!=(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 260 | return !(*this == rhs); |
| 261 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 262 | |
Aaron Ballman | 6734766 | 2015-02-15 22:00:28 +0000 | [diff] [blame] | 263 | explicit operator bool() const { |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 264 | return *this != const_iterator(); |
| 265 | } |
| 266 | |
| 267 | int distance(const_iterator L); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 268 | const_iterator shared_parent(const_iterator L); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 269 | }; |
| 270 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 271 | private: |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 272 | BumpVectorContext ctx; |
| 273 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 274 | /// Automatic variables in order of declaration. |
| 275 | AutomaticVarsTy Vars; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 276 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 277 | /// Iterator to variable in previous scope that was declared just before |
| 278 | /// begin of this scope. |
| 279 | const_iterator Prev; |
| 280 | |
| 281 | public: |
| 282 | /// Constructs empty scope linked to previous scope in specified place. |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 283 | LocalScope(BumpVectorContext ctx, const_iterator P) |
| 284 | : ctx(std::move(ctx)), Vars(this->ctx, 4), Prev(P) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 285 | |
| 286 | /// Begin of scope in direction of CFG building (backwards). |
| 287 | const_iterator begin() const { return const_iterator(*this, Vars.size()); } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 288 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 289 | void addVar(VarDecl *VD) { |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 290 | Vars.push_back(VD, ctx); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 291 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 292 | }; |
| 293 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 294 | } // namespace |
| 295 | |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 296 | /// distance - Calculates distance from this to L. L must be reachable from this |
| 297 | /// (with use of ++ operator). Cost of calculating the distance is linear w.r.t. |
| 298 | /// number of scopes between this and L. |
| 299 | int LocalScope::const_iterator::distance(LocalScope::const_iterator L) { |
| 300 | int D = 0; |
| 301 | const_iterator F = *this; |
| 302 | while (F.Scope != L.Scope) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 303 | assert(F != const_iterator() && |
| 304 | "L iterator is not reachable from F iterator."); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 305 | D += F.VarIter; |
| 306 | F = F.Scope->Prev; |
| 307 | } |
| 308 | D += F.VarIter - L.VarIter; |
| 309 | return D; |
| 310 | } |
| 311 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 312 | /// Calculates the closest parent of this iterator |
| 313 | /// that is in a scope reachable through the parents of L. |
| 314 | /// I.e. when using 'goto' from this to L, the lifetime of all variables |
| 315 | /// between this and shared_parent(L) end. |
| 316 | LocalScope::const_iterator |
| 317 | LocalScope::const_iterator::shared_parent(LocalScope::const_iterator L) { |
| 318 | llvm::SmallPtrSet<const LocalScope *, 4> ScopesOfL; |
| 319 | while (true) { |
| 320 | ScopesOfL.insert(L.Scope); |
| 321 | if (L == const_iterator()) |
| 322 | break; |
| 323 | L = L.Scope->Prev; |
| 324 | } |
| 325 | |
| 326 | const_iterator F = *this; |
| 327 | while (true) { |
| 328 | if (ScopesOfL.count(F.Scope)) |
| 329 | return F; |
| 330 | assert(F != const_iterator() && |
| 331 | "L iterator is not reachable from F iterator."); |
| 332 | F = F.Scope->Prev; |
| 333 | } |
| 334 | } |
| 335 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 336 | namespace { |
| 337 | |
Jonathan Roelofs | 99bdd98 | 2015-05-19 18:51:56 +0000 | [diff] [blame] | 338 | /// Structure for specifying position in CFG during its build process. It |
| 339 | /// consists of CFGBlock that specifies position in CFG and |
| 340 | /// LocalScope::const_iterator that specifies position in LocalScope graph. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 341 | struct BlockScopePosPair { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 342 | CFGBlock *block = nullptr; |
| 343 | LocalScope::const_iterator scopePosition; |
| 344 | |
| 345 | BlockScopePosPair() = default; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 346 | BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 347 | : block(b), scopePosition(scopePos) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 348 | }; |
| 349 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 350 | /// TryResult - a class representing a variant over the values |
| 351 | /// 'true', 'false', or 'unknown'. This is returned by tryEvaluateBool, |
| 352 | /// and is used by the CFGBuilder to decide if a branch condition |
| 353 | /// can be decided up front during CFG construction. |
| 354 | class TryResult { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 355 | int X = -1; |
| 356 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 357 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 358 | TryResult() = default; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 359 | TryResult(bool b) : X(b ? 1 : 0) {} |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 360 | |
| 361 | bool isTrue() const { return X == 1; } |
| 362 | bool isFalse() const { return X == 0; } |
| 363 | bool isKnown() const { return X >= 0; } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 364 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 365 | void negate() { |
| 366 | assert(isKnown()); |
| 367 | X ^= 0x1; |
| 368 | } |
| 369 | }; |
| 370 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 371 | } // namespace |
| 372 | |
| 373 | static TryResult bothKnownTrue(TryResult R1, TryResult R2) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 374 | if (!R1.isKnown() || !R2.isKnown()) |
| 375 | return TryResult(); |
| 376 | return TryResult(R1.isTrue() && R2.isTrue()); |
| 377 | } |
| 378 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 379 | namespace { |
| 380 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 381 | class reverse_children { |
| 382 | llvm::SmallVector<Stmt *, 12> childrenBuf; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 383 | ArrayRef<Stmt *> children; |
| 384 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 385 | public: |
| 386 | reverse_children(Stmt *S); |
| 387 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 388 | using iterator = ArrayRef<Stmt *>::reverse_iterator; |
| 389 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 390 | iterator begin() const { return children.rbegin(); } |
| 391 | iterator end() const { return children.rend(); } |
| 392 | }; |
| 393 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 394 | } // namespace |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 395 | |
| 396 | reverse_children::reverse_children(Stmt *S) { |
| 397 | if (CallExpr *CE = dyn_cast<CallExpr>(S)) { |
| 398 | children = CE->getRawSubExprs(); |
| 399 | return; |
| 400 | } |
| 401 | switch (S->getStmtClass()) { |
Ted Kremenek | 7d86b9c | 2013-02-05 22:03:14 +0000 | [diff] [blame] | 402 | // Note: Fill in this switch with more cases we want to optimize. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 403 | case Stmt::InitListExprClass: { |
| 404 | InitListExpr *IE = cast<InitListExpr>(S); |
| 405 | children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()), |
| 406 | IE->getNumInits()); |
| 407 | return; |
| 408 | } |
| 409 | default: |
| 410 | break; |
| 411 | } |
| 412 | |
| 413 | // Default case for all other statements. |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 414 | for (Stmt *SubStmt : S->children()) |
| 415 | childrenBuf.push_back(SubStmt); |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 416 | |
| 417 | // This needs to be done *after* childrenBuf has been populated. |
| 418 | children = childrenBuf; |
| 419 | } |
| 420 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 421 | namespace { |
| 422 | |
Ted Kremenek | be9b33b | 2008-08-04 22:51:42 +0000 | [diff] [blame] | 423 | /// CFGBuilder - This class implements CFG construction from an AST. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 424 | /// The builder is stateful: an instance of the builder should be used to only |
| 425 | /// construct a single CFG. |
| 426 | /// |
| 427 | /// Example usage: |
| 428 | /// |
| 429 | /// CFGBuilder builder; |
Jonathan Roelofs | ab046c5 | 2015-07-27 16:05:36 +0000 | [diff] [blame] | 430 | /// std::unique_ptr<CFG> cfg = builder.buildCFG(decl, stmt1); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 431 | /// |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 432 | /// CFG construction is done via a recursive walk of an AST. We actually parse |
| 433 | /// the AST in reverse order so that the successor of a basic block is |
| 434 | /// constructed prior to its predecessor. This allows us to nicely capture |
| 435 | /// implicit fall-throughs without extra basic blocks. |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 436 | class CFGBuilder { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 437 | using JumpTarget = BlockScopePosPair; |
| 438 | using JumpSource = BlockScopePosPair; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 439 | |
Mike Stump | 0d76d07 | 2009-07-20 23:24:15 +0000 | [diff] [blame] | 440 | ASTContext *Context; |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 441 | std::unique_ptr<CFG> cfg; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 442 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 443 | // Current block. |
| 444 | CFGBlock *Block = nullptr; |
| 445 | |
| 446 | // Block after the current block. |
| 447 | CFGBlock *Succ = nullptr; |
| 448 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 449 | JumpTarget ContinueJumpTarget; |
| 450 | JumpTarget BreakJumpTarget; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 451 | JumpTarget SEHLeaveJumpTarget; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 452 | CFGBlock *SwitchTerminatedBlock = nullptr; |
| 453 | CFGBlock *DefaultCaseBlock = nullptr; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 454 | |
| 455 | // This can point either to a try or a __try block. The frontend forbids |
| 456 | // mixing both kinds in one function, so having one for both is enough. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 457 | CFGBlock *TryTerminatedBlock = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 458 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 459 | // Current position in local scope. |
| 460 | LocalScope::const_iterator ScopePos; |
| 461 | |
| 462 | // LabelMap records the mapping from Label expressions to their jump targets. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 463 | using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 464 | LabelMapTy LabelMap; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 465 | |
| 466 | // A list of blocks that end with a "goto" that must be backpatched to their |
| 467 | // resolved targets upon completion of CFG construction. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 468 | using BackpatchBlocksTy = std::vector<JumpSource>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 469 | BackpatchBlocksTy BackpatchBlocks; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 470 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 471 | // A list of labels whose address has been taken (for indirect gotos). |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 472 | using LabelSetTy = llvm::SmallSetVector<LabelDecl *, 8>; |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 473 | LabelSetTy AddressTakenLabels; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 474 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 475 | // Information about the currently visited C++ object construction site. |
| 476 | // This is set in the construction trigger and read when the constructor |
| 477 | // itself is being visited. |
| 478 | ConstructionContext CurrentConstructionContext = {}; |
| 479 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 480 | bool badCFG = false; |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 481 | const CFG::BuildOptions &BuildOpts; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 482 | |
| 483 | // State to track for building switch statements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 484 | bool switchExclusivelyCovered = false; |
| 485 | Expr::EvalResult *switchCond = nullptr; |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 486 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 487 | CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry = nullptr; |
| 488 | const Stmt *lastLookup = nullptr; |
Zhongxing Xu | d38fb84 | 2010-09-16 03:28:18 +0000 | [diff] [blame] | 489 | |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 490 | // Caches boolean evaluations of expressions to avoid multiple re-evaluations |
| 491 | // during construction of branches for chained logical operators. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 492 | using CachedBoolEvalsTy = llvm::DenseMap<Expr *, TryResult>; |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 493 | CachedBoolEvalsTy CachedBoolEvals; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 494 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 495 | public: |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 496 | explicit CFGBuilder(ASTContext *astContext, |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 497 | const CFG::BuildOptions &buildOpts) |
| 498 | : Context(astContext), cfg(new CFG()), // crew a new CFG |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 499 | BuildOpts(buildOpts) {} |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 500 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 501 | // buildCFG - Used by external clients to construct the CFG. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 502 | std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 503 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 504 | bool alwaysAdd(const Stmt *stmt); |
| 505 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 506 | private: |
| 507 | // Visitors to walk an AST and construct the CFG. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 508 | CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); |
| 509 | CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 510 | CFGBlock *VisitBreakStmt(BreakStmt *B); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 511 | CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 512 | CFGBlock *VisitCaseStmt(CaseStmt *C); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 513 | CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 514 | CFGBlock *VisitCompoundStmt(CompoundStmt *C); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 515 | CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C, |
| 516 | AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 517 | CFGBlock *VisitContinueStmt(ContinueStmt *C); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 518 | CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 519 | AddStmtChoice asc); |
| 520 | CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S); |
| 521 | CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc); |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 522 | CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 523 | CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 524 | CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S); |
| 525 | CFGBlock *VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 526 | AddStmtChoice asc); |
| 527 | CFGBlock *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 528 | AddStmtChoice asc); |
| 529 | CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T); |
| 530 | CFGBlock *VisitCXXTryStmt(CXXTryStmt *S); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 531 | CFGBlock *VisitDeclStmt(DeclStmt *DS); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 532 | CFGBlock *VisitDeclSubExpr(DeclStmt *DS); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 533 | CFGBlock *VisitDefaultStmt(DefaultStmt *D); |
| 534 | CFGBlock *VisitDoStmt(DoStmt *D); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 535 | CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 536 | CFGBlock *VisitForStmt(ForStmt *F); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 537 | CFGBlock *VisitGotoStmt(GotoStmt *G); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 538 | CFGBlock *VisitIfStmt(IfStmt *I); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 539 | CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 540 | CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I); |
| 541 | CFGBlock *VisitLabelStmt(LabelStmt *L); |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 542 | CFGBlock *VisitBlockExpr(BlockExpr *E, AddStmtChoice asc); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 543 | CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 544 | CFGBlock *VisitLogicalOperator(BinaryOperator *B); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 545 | std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B, |
| 546 | Stmt *Term, |
| 547 | CFGBlock *TrueBlock, |
| 548 | CFGBlock *FalseBlock); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 549 | CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 550 | CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); |
| 551 | CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S); |
| 552 | CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); |
| 553 | CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 554 | CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 555 | CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S); |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 556 | CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 557 | CFGBlock *VisitReturnStmt(ReturnStmt *R); |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 558 | CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S); |
| 559 | CFGBlock *VisitSEHFinallyStmt(SEHFinallyStmt *S); |
| 560 | CFGBlock *VisitSEHLeaveStmt(SEHLeaveStmt *S); |
| 561 | CFGBlock *VisitSEHTryStmt(SEHTryStmt *S); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 562 | CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 563 | CFGBlock *VisitSwitchStmt(SwitchStmt *S); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 564 | CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 565 | AddStmtChoice asc); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 566 | CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 567 | CFGBlock *VisitWhileStmt(WhileStmt *W); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 568 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 569 | CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd); |
| 570 | CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 571 | CFGBlock *VisitChildren(Stmt *S); |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 572 | CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 573 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 574 | /// When creating the CFG for temporary destructors, we want to mirror the |
| 575 | /// branch structure of the corresponding constructor calls. |
| 576 | /// Thus, while visiting a statement for temporary destructors, we keep a |
| 577 | /// context to keep track of the following information: |
| 578 | /// - whether a subexpression is executed unconditionally |
| 579 | /// - if a subexpression is executed conditionally, the first |
| 580 | /// CXXBindTemporaryExpr we encounter in that subexpression (which |
| 581 | /// corresponds to the last temporary destructor we have to call for this |
| 582 | /// subexpression) and the CFG block at that point (which will become the |
| 583 | /// successor block when inserting the decision point). |
| 584 | /// |
| 585 | /// That way, we can build the branch structure for temporary destructors as |
| 586 | /// follows: |
| 587 | /// 1. If a subexpression is executed unconditionally, we add the temporary |
| 588 | /// destructor calls to the current block. |
| 589 | /// 2. If a subexpression is executed conditionally, when we encounter a |
| 590 | /// CXXBindTemporaryExpr: |
| 591 | /// a) If it is the first temporary destructor call in the subexpression, |
| 592 | /// we remember the CXXBindTemporaryExpr and the current block in the |
| 593 | /// TempDtorContext; we start a new block, and insert the temporary |
| 594 | /// destructor call. |
| 595 | /// b) Otherwise, add the temporary destructor call to the current block. |
| 596 | /// 3. When we finished visiting a conditionally executed subexpression, |
| 597 | /// and we found at least one temporary constructor during the visitation |
| 598 | /// (2.a has executed), we insert a decision block that uses the |
| 599 | /// CXXBindTemporaryExpr as terminator, and branches to the current block |
| 600 | /// if the CXXBindTemporaryExpr was marked executed, and otherwise |
| 601 | /// branches to the stored successor. |
| 602 | struct TempDtorContext { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 603 | TempDtorContext() = default; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 604 | TempDtorContext(TryResult KnownExecuted) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 605 | : IsConditional(true), KnownExecuted(KnownExecuted) {} |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 606 | |
| 607 | /// Returns whether we need to start a new branch for a temporary destructor |
Eric Christopher | 2c4555a | 2015-06-19 01:52:53 +0000 | [diff] [blame] | 608 | /// call. This is the case when the temporary destructor is |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 609 | /// conditionally executed, and it is the first one we encounter while |
| 610 | /// visiting a subexpression - other temporary destructors at the same level |
| 611 | /// will be added to the same block and are executed under the same |
| 612 | /// condition. |
| 613 | bool needsTempDtorBranch() const { |
| 614 | return IsConditional && !TerminatorExpr; |
| 615 | } |
| 616 | |
| 617 | /// Remember the successor S of a temporary destructor decision branch for |
| 618 | /// the corresponding CXXBindTemporaryExpr E. |
| 619 | void setDecisionPoint(CFGBlock *S, CXXBindTemporaryExpr *E) { |
| 620 | Succ = S; |
| 621 | TerminatorExpr = E; |
| 622 | } |
| 623 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 624 | const bool IsConditional = false; |
| 625 | const TryResult KnownExecuted = true; |
| 626 | CFGBlock *Succ = nullptr; |
| 627 | CXXBindTemporaryExpr *TerminatorExpr = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 628 | }; |
| 629 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 630 | // Visitors to walk an AST and generate destructors of temporaries in |
| 631 | // full expression. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 632 | CFGBlock *VisitForTemporaryDtors(Stmt *E, bool BindToTemporary, |
| 633 | TempDtorContext &Context); |
| 634 | CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E, TempDtorContext &Context); |
| 635 | CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E, |
| 636 | TempDtorContext &Context); |
| 637 | CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors( |
| 638 | CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context); |
| 639 | CFGBlock *VisitConditionalOperatorForTemporaryDtors( |
| 640 | AbstractConditionalOperator *E, bool BindToTemporary, |
| 641 | TempDtorContext &Context); |
| 642 | void InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 643 | CFGBlock *FalseSucc = nullptr); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 644 | |
Ted Kremenek | 6065ef6 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 645 | // NYS == Not Yet Supported |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 646 | CFGBlock *NYS() { |
Ted Kremenek | b64d183 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 647 | badCFG = true; |
| 648 | return Block; |
| 649 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 650 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 651 | // Scan the child statement \p Child to find the constructor that might |
| 652 | // have been directly triggered by the current node, \p Trigger. If such |
| 653 | // constructor has been found, set current construction context to point |
| 654 | // to the trigger statement. The construction context will be unset once |
| 655 | // it is consumed when the CFG building procedure processes the |
| 656 | // construct-expression and adds the respective CFGConstructor element. |
| 657 | void EnterConstructionContextIfNecessary(Stmt *Trigger, Stmt *Child); |
| 658 | // Unset the construction context after consuming it. This is done immediately |
| 659 | // after adding the CFGConstructor element, so there's no need to |
| 660 | // do this manually in every Visit... function. |
| 661 | void ExitConstructionContext(); |
| 662 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 663 | void autoCreateBlock() { if (!Block) Block = createBlock(); } |
| 664 | CFGBlock *createBlock(bool add_successor = true); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 665 | CFGBlock *createNoReturnBlock(); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 666 | |
Zhongxing Xu | ea9fcff | 2010-06-03 06:43:23 +0000 | [diff] [blame] | 667 | CFGBlock *addStmt(Stmt *S) { |
| 668 | return Visit(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 669 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 670 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 671 | CFGBlock *addInitializer(CXXCtorInitializer *I); |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 672 | void addLoopExit(const Stmt *LoopStmt); |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 673 | void addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 674 | LocalScope::const_iterator E, Stmt *S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 675 | void addLifetimeEnds(LocalScope::const_iterator B, |
| 676 | LocalScope::const_iterator E, Stmt *S); |
| 677 | void addAutomaticObjHandling(LocalScope::const_iterator B, |
| 678 | LocalScope::const_iterator E, Stmt *S); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 679 | void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 680 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 681 | // Local scopes creation. |
| 682 | LocalScope* createOrReuseLocalScope(LocalScope* Scope); |
| 683 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 684 | void addLocalScopeForStmt(Stmt *S); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 685 | LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS, |
| 686 | LocalScope* Scope = nullptr); |
| 687 | LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = nullptr); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 688 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 689 | void addLocalScopeAndDtors(Stmt *S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 690 | |
| 691 | // Interface to CFGBlock - adding CFGElements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 692 | |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 693 | void appendStmt(CFGBlock *B, const Stmt *S) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 694 | if (alwaysAdd(S) && cachedEntry) |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 695 | cachedEntry->second = B; |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 696 | |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 697 | // All block-level expressions should have already been IgnoreParens()ed. |
| 698 | assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 699 | B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 700 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 701 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 702 | void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) { |
| 703 | if (BuildOpts.AddRichCXXConstructors) { |
| 704 | if (!CurrentConstructionContext.isNull()) { |
| 705 | B->appendConstructor(CE, CurrentConstructionContext, |
| 706 | cfg->getBumpVectorContext()); |
| 707 | ExitConstructionContext(); |
| 708 | return; |
| 709 | } |
| 710 | } |
| 711 | |
| 712 | // No valid construction context found. Fall back to statement. |
| 713 | B->appendStmt(CE, cfg->getBumpVectorContext()); |
| 714 | } |
| 715 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 716 | void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 717 | B->appendInitializer(I, cfg->getBumpVectorContext()); |
| 718 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 719 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 720 | void appendNewAllocator(CFGBlock *B, CXXNewExpr *NE) { |
| 721 | B->appendNewAllocator(NE, cfg->getBumpVectorContext()); |
| 722 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 723 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 724 | void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) { |
| 725 | B->appendBaseDtor(BS, cfg->getBumpVectorContext()); |
| 726 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 727 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 728 | void appendMemberDtor(CFGBlock *B, FieldDecl *FD) { |
| 729 | B->appendMemberDtor(FD, cfg->getBumpVectorContext()); |
| 730 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 731 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 732 | void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) { |
| 733 | B->appendTemporaryDtor(E, cfg->getBumpVectorContext()); |
| 734 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 735 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 736 | void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 737 | B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext()); |
| 738 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 739 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 740 | void appendLifetimeEnds(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 741 | B->appendLifetimeEnds(VD, S, cfg->getBumpVectorContext()); |
| 742 | } |
| 743 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 744 | void appendLoopExit(CFGBlock *B, const Stmt *LoopStmt) { |
| 745 | B->appendLoopExit(LoopStmt, cfg->getBumpVectorContext()); |
| 746 | } |
| 747 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 748 | void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) { |
| 749 | B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext()); |
| 750 | } |
| 751 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 752 | void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 753 | LocalScope::const_iterator B, LocalScope::const_iterator E); |
| 754 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 755 | void prependAutomaticObjLifetimeWithTerminator(CFGBlock *Blk, |
| 756 | LocalScope::const_iterator B, |
| 757 | LocalScope::const_iterator E); |
| 758 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 759 | void addSuccessor(CFGBlock *B, CFGBlock *S, bool IsReachable = true) { |
| 760 | B->addSuccessor(CFGBlock::AdjacentBlock(S, IsReachable), |
| 761 | cfg->getBumpVectorContext()); |
| 762 | } |
| 763 | |
| 764 | /// Add a reachable successor to a block, with the alternate variant that is |
| 765 | /// unreachable. |
| 766 | void addSuccessor(CFGBlock *B, CFGBlock *ReachableBlock, CFGBlock *AltBlock) { |
| 767 | B->addSuccessor(CFGBlock::AdjacentBlock(ReachableBlock, AltBlock), |
| 768 | cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 769 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 770 | |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 771 | /// \brief Find a relational comparison with an expression evaluating to a |
| 772 | /// boolean and a constant other than 0 and 1. |
| 773 | /// e.g. if ((x < y) == 10) |
| 774 | TryResult checkIncorrectRelationalOperator(const BinaryOperator *B) { |
| 775 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 776 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 777 | |
| 778 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 779 | const Expr *BoolExpr = RHSExpr; |
| 780 | bool IntFirst = true; |
| 781 | if (!IntLiteral) { |
| 782 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 783 | BoolExpr = LHSExpr; |
| 784 | IntFirst = false; |
| 785 | } |
| 786 | |
| 787 | if (!IntLiteral || !BoolExpr->isKnownToHaveBooleanValue()) |
| 788 | return TryResult(); |
| 789 | |
| 790 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 791 | if ((IntValue == 1) || (IntValue == 0)) |
| 792 | return TryResult(); |
| 793 | |
| 794 | bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || |
| 795 | !IntValue.isNegative(); |
| 796 | |
| 797 | BinaryOperatorKind Bok = B->getOpcode(); |
| 798 | if (Bok == BO_GT || Bok == BO_GE) { |
| 799 | // Always true for 10 > bool and bool > -1 |
| 800 | // Always false for -1 > bool and bool > 10 |
| 801 | return TryResult(IntFirst == IntLarger); |
| 802 | } else { |
| 803 | // Always true for -1 < bool and bool < 10 |
| 804 | // Always false for 10 < bool and bool < -1 |
| 805 | return TryResult(IntFirst != IntLarger); |
| 806 | } |
| 807 | } |
| 808 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 809 | /// Find an incorrect equality comparison. Either with an expression |
| 810 | /// evaluating to a boolean and a constant other than 0 and 1. |
| 811 | /// e.g. if (!x == 10) or a bitwise and/or operation that always evaluates to |
| 812 | /// true/false e.q. (x & 8) == 4. |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 813 | TryResult checkIncorrectEqualityOperator(const BinaryOperator *B) { |
| 814 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 815 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 816 | |
| 817 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 818 | const Expr *BoolExpr = RHSExpr; |
| 819 | |
| 820 | if (!IntLiteral) { |
| 821 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 822 | BoolExpr = LHSExpr; |
| 823 | } |
| 824 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 825 | if (!IntLiteral) |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 826 | return TryResult(); |
| 827 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 828 | const BinaryOperator *BitOp = dyn_cast<BinaryOperator>(BoolExpr); |
| 829 | if (BitOp && (BitOp->getOpcode() == BO_And || |
| 830 | BitOp->getOpcode() == BO_Or)) { |
| 831 | const Expr *LHSExpr2 = BitOp->getLHS()->IgnoreParens(); |
| 832 | const Expr *RHSExpr2 = BitOp->getRHS()->IgnoreParens(); |
| 833 | |
| 834 | const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2); |
| 835 | |
| 836 | if (!IntLiteral2) |
| 837 | IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2); |
| 838 | |
| 839 | if (!IntLiteral2) |
| 840 | return TryResult(); |
| 841 | |
| 842 | llvm::APInt L1 = IntLiteral->getValue(); |
| 843 | llvm::APInt L2 = IntLiteral2->getValue(); |
| 844 | if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) || |
| 845 | (BitOp->getOpcode() == BO_Or && (L2 | L1) != L1)) { |
| 846 | if (BuildOpts.Observer) |
| 847 | BuildOpts.Observer->compareBitwiseEquality(B, |
| 848 | B->getOpcode() != BO_EQ); |
| 849 | TryResult(B->getOpcode() != BO_EQ); |
| 850 | } |
| 851 | } else if (BoolExpr->isKnownToHaveBooleanValue()) { |
| 852 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 853 | if ((IntValue == 1) || (IntValue == 0)) { |
| 854 | return TryResult(); |
| 855 | } |
| 856 | return TryResult(B->getOpcode() != BO_EQ); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 857 | } |
| 858 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 859 | return TryResult(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 860 | } |
| 861 | |
| 862 | TryResult analyzeLogicOperatorCondition(BinaryOperatorKind Relation, |
| 863 | const llvm::APSInt &Value1, |
| 864 | const llvm::APSInt &Value2) { |
| 865 | assert(Value1.isSigned() == Value2.isSigned()); |
| 866 | switch (Relation) { |
| 867 | default: |
| 868 | return TryResult(); |
| 869 | case BO_EQ: |
| 870 | return TryResult(Value1 == Value2); |
| 871 | case BO_NE: |
| 872 | return TryResult(Value1 != Value2); |
| 873 | case BO_LT: |
| 874 | return TryResult(Value1 < Value2); |
| 875 | case BO_LE: |
| 876 | return TryResult(Value1 <= Value2); |
| 877 | case BO_GT: |
| 878 | return TryResult(Value1 > Value2); |
| 879 | case BO_GE: |
| 880 | return TryResult(Value1 >= Value2); |
| 881 | } |
| 882 | } |
| 883 | |
| 884 | /// \brief Find a pair of comparison expressions with or without parentheses |
| 885 | /// with a shared variable and constants and a logical operator between them |
| 886 | /// that always evaluates to either true or false. |
| 887 | /// e.g. if (x != 3 || x != 4) |
| 888 | TryResult checkIncorrectLogicOperator(const BinaryOperator *B) { |
| 889 | assert(B->isLogicalOp()); |
| 890 | const BinaryOperator *LHS = |
| 891 | dyn_cast<BinaryOperator>(B->getLHS()->IgnoreParens()); |
| 892 | const BinaryOperator *RHS = |
| 893 | dyn_cast<BinaryOperator>(B->getRHS()->IgnoreParens()); |
| 894 | if (!LHS || !RHS) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 895 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 896 | |
| 897 | if (!LHS->isComparisonOp() || !RHS->isComparisonOp()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 898 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 899 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 900 | const DeclRefExpr *Decl1; |
| 901 | const Expr *Expr1; |
| 902 | BinaryOperatorKind BO1; |
| 903 | std::tie(Decl1, BO1, Expr1) = tryNormalizeBinaryOperator(LHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 904 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 905 | if (!Decl1 || !Expr1) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 906 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 907 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 908 | const DeclRefExpr *Decl2; |
| 909 | const Expr *Expr2; |
| 910 | BinaryOperatorKind BO2; |
| 911 | std::tie(Decl2, BO2, Expr2) = tryNormalizeBinaryOperator(RHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 912 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 913 | if (!Decl2 || !Expr2) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 914 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 915 | |
| 916 | // Check that it is the same variable on both sides. |
| 917 | if (Decl1->getDecl() != Decl2->getDecl()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 918 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 919 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 920 | // Make sure the user's intent is clear (e.g. they're comparing against two |
| 921 | // int literals, or two things from the same enum) |
| 922 | if (!areExprTypesCompatible(Expr1, Expr2)) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 923 | return {}; |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 924 | |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 925 | llvm::APSInt L1, L2; |
| 926 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 927 | if (!Expr1->EvaluateAsInt(L1, *Context) || |
| 928 | !Expr2->EvaluateAsInt(L2, *Context)) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 929 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 930 | |
| 931 | // Can't compare signed with unsigned or with different bit width. |
| 932 | if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 933 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 934 | |
| 935 | // Values that will be used to determine if result of logical |
| 936 | // operator is always true/false |
| 937 | const llvm::APSInt Values[] = { |
| 938 | // Value less than both Value1 and Value2 |
| 939 | llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()), |
| 940 | // L1 |
| 941 | L1, |
| 942 | // Value between Value1 and Value2 |
| 943 | ((L1 < L2) ? L1 : L2) + llvm::APSInt(llvm::APInt(L1.getBitWidth(), 1), |
| 944 | L1.isUnsigned()), |
| 945 | // L2 |
| 946 | L2, |
| 947 | // Value greater than both Value1 and Value2 |
| 948 | llvm::APSInt::getMaxValue(L1.getBitWidth(), L1.isUnsigned()), |
| 949 | }; |
| 950 | |
| 951 | // Check whether expression is always true/false by evaluating the following |
| 952 | // * variable x is less than the smallest literal. |
| 953 | // * variable x is equal to the smallest literal. |
| 954 | // * Variable x is between smallest and largest literal. |
| 955 | // * Variable x is equal to the largest literal. |
| 956 | // * Variable x is greater than largest literal. |
| 957 | bool AlwaysTrue = true, AlwaysFalse = true; |
Benjamin Kramer | 2e018ef | 2016-05-27 13:36:58 +0000 | [diff] [blame] | 958 | for (const llvm::APSInt &Value : Values) { |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 959 | TryResult Res1, Res2; |
| 960 | Res1 = analyzeLogicOperatorCondition(BO1, Value, L1); |
| 961 | Res2 = analyzeLogicOperatorCondition(BO2, Value, L2); |
| 962 | |
| 963 | if (!Res1.isKnown() || !Res2.isKnown()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 964 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 965 | |
| 966 | if (B->getOpcode() == BO_LAnd) { |
| 967 | AlwaysTrue &= (Res1.isTrue() && Res2.isTrue()); |
| 968 | AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue()); |
| 969 | } else { |
| 970 | AlwaysTrue &= (Res1.isTrue() || Res2.isTrue()); |
| 971 | AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue()); |
| 972 | } |
| 973 | } |
| 974 | |
| 975 | if (AlwaysTrue || AlwaysFalse) { |
| 976 | if (BuildOpts.Observer) |
| 977 | BuildOpts.Observer->compareAlwaysTrue(B, AlwaysTrue); |
| 978 | return TryResult(AlwaysTrue); |
| 979 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 980 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 981 | } |
| 982 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 983 | /// Try and evaluate an expression to an integer constant. |
| 984 | bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) { |
| 985 | if (!BuildOpts.PruneTriviallyFalseEdges) |
| 986 | return false; |
| 987 | return !S->isTypeDependent() && |
Ted Kremenek | 352a708 | 2011-04-04 20:30:58 +0000 | [diff] [blame] | 988 | !S->isValueDependent() && |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 989 | S->EvaluateAsRValue(outResult, *Context); |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 990 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 991 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 992 | /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1 |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 993 | /// if we can evaluate to a known value, otherwise return -1. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 994 | TryResult tryEvaluateBool(Expr *S) { |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 995 | if (!BuildOpts.PruneTriviallyFalseEdges || |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 996 | S->isTypeDependent() || S->isValueDependent()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 997 | return {}; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 998 | |
| 999 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) { |
| 1000 | if (Bop->isLogicalOp()) { |
| 1001 | // Check the cache first. |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 1002 | CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S); |
| 1003 | if (I != CachedBoolEvals.end()) |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1004 | return I->second; // already in map; |
NAKAMURA Takumi | f0434b0 | 2012-03-25 06:30:32 +0000 | [diff] [blame] | 1005 | |
| 1006 | // Retrieve result at first, or the map might be updated. |
| 1007 | TryResult Result = evaluateAsBooleanConditionNoCache(S); |
| 1008 | CachedBoolEvals[S] = Result; // update or insert |
| 1009 | return Result; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1010 | } |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1011 | else { |
| 1012 | switch (Bop->getOpcode()) { |
| 1013 | default: break; |
| 1014 | // For 'x & 0' and 'x * 0', we can determine that |
| 1015 | // the value is always false. |
| 1016 | case BO_Mul: |
| 1017 | case BO_And: { |
| 1018 | // If either operand is zero, we know the value |
| 1019 | // must be false. |
| 1020 | llvm::APSInt IntVal; |
| 1021 | if (Bop->getLHS()->EvaluateAsInt(IntVal, *Context)) { |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1022 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1023 | return TryResult(false); |
| 1024 | } |
| 1025 | } |
| 1026 | if (Bop->getRHS()->EvaluateAsInt(IntVal, *Context)) { |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1027 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1028 | return TryResult(false); |
| 1029 | } |
| 1030 | } |
| 1031 | } |
| 1032 | break; |
| 1033 | } |
| 1034 | } |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1035 | } |
| 1036 | |
| 1037 | return evaluateAsBooleanConditionNoCache(S); |
| 1038 | } |
| 1039 | |
| 1040 | /// \brief Evaluate as boolean \param E without using the cache. |
| 1041 | TryResult evaluateAsBooleanConditionNoCache(Expr *E) { |
| 1042 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) { |
| 1043 | if (Bop->isLogicalOp()) { |
| 1044 | TryResult LHS = tryEvaluateBool(Bop->getLHS()); |
| 1045 | if (LHS.isKnown()) { |
| 1046 | // We were able to evaluate the LHS, see if we can get away with not |
| 1047 | // evaluating the RHS: 0 && X -> 0, 1 || X -> 1 |
| 1048 | if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1049 | return LHS.isTrue(); |
| 1050 | |
| 1051 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1052 | if (RHS.isKnown()) { |
| 1053 | if (Bop->getOpcode() == BO_LOr) |
| 1054 | return LHS.isTrue() || RHS.isTrue(); |
| 1055 | else |
| 1056 | return LHS.isTrue() && RHS.isTrue(); |
| 1057 | } |
| 1058 | } else { |
| 1059 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1060 | if (RHS.isKnown()) { |
| 1061 | // We can't evaluate the LHS; however, sometimes the result |
| 1062 | // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. |
| 1063 | if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1064 | return RHS.isTrue(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1065 | } else { |
| 1066 | TryResult BopRes = checkIncorrectLogicOperator(Bop); |
| 1067 | if (BopRes.isKnown()) |
| 1068 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1069 | } |
| 1070 | } |
| 1071 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1072 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1073 | } else if (Bop->isEqualityOp()) { |
| 1074 | TryResult BopRes = checkIncorrectEqualityOperator(Bop); |
| 1075 | if (BopRes.isKnown()) |
| 1076 | return BopRes.isTrue(); |
| 1077 | } else if (Bop->isRelationalOp()) { |
| 1078 | TryResult BopRes = checkIncorrectRelationalOperator(Bop); |
| 1079 | if (BopRes.isKnown()) |
| 1080 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1081 | } |
| 1082 | } |
| 1083 | |
| 1084 | bool Result; |
| 1085 | if (E->EvaluateAsBooleanCondition(Result, *Context)) |
| 1086 | return Result; |
| 1087 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1088 | return {}; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1089 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1090 | |
| 1091 | bool hasTrivialDestructor(VarDecl *VD); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1092 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1093 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1094 | } // namespace |
| 1095 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1096 | inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder, |
| 1097 | const Stmt *stmt) const { |
| 1098 | return builder.alwaysAdd(stmt) || kind == AlwaysAdd; |
| 1099 | } |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1100 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1101 | bool CFGBuilder::alwaysAdd(const Stmt *stmt) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1102 | bool shouldAdd = BuildOpts.alwaysAdd(stmt); |
| 1103 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1104 | if (!BuildOpts.forcedBlkExprs) |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1105 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1106 | |
| 1107 | if (lastLookup == stmt) { |
| 1108 | if (cachedEntry) { |
| 1109 | assert(cachedEntry->first == stmt); |
| 1110 | return true; |
| 1111 | } |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1112 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1113 | } |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1114 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1115 | lastLookup = stmt; |
| 1116 | |
| 1117 | // Perform the lookup! |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1118 | CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs; |
| 1119 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1120 | if (!fb) { |
| 1121 | // No need to update 'cachedEntry', since it will always be null. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1122 | assert(!cachedEntry); |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1123 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1124 | } |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1125 | |
| 1126 | CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt); |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1127 | if (itr == fb->end()) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1128 | cachedEntry = nullptr; |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1129 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1130 | } |
| 1131 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1132 | cachedEntry = &*itr; |
| 1133 | return true; |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1134 | } |
| 1135 | |
Douglas Gregor | 4619e43 | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1136 | // FIXME: Add support for dependent-sized array types in C++? |
| 1137 | // Does it even make sense to build a CFG for an uninstantiated template? |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1138 | static const VariableArrayType *FindVA(const Type *t) { |
| 1139 | while (const ArrayType *vt = dyn_cast<ArrayType>(t)) { |
| 1140 | if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt)) |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1141 | if (vat->getSizeExpr()) |
| 1142 | return vat; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1143 | |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1144 | t = vt->getElementType().getTypePtr(); |
| 1145 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1146 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1147 | return nullptr; |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1148 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1149 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1150 | void CFGBuilder::EnterConstructionContextIfNecessary(Stmt *Trigger, |
| 1151 | Stmt *Child) { |
| 1152 | if (!BuildOpts.AddRichCXXConstructors) |
| 1153 | return; |
| 1154 | if (!Child) |
| 1155 | return; |
Artem Dergachev | 675d6f4 | 2018-02-09 01:43:26 +0000 | [diff] [blame] | 1156 | if (isa<CXXConstructExpr>(Child)) { |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1157 | assert(CurrentConstructionContext.isNull() && |
| 1158 | "Already within a construction context!"); |
| 1159 | CurrentConstructionContext = ConstructionContext(Trigger); |
| 1160 | } |
| 1161 | } |
| 1162 | |
| 1163 | void CFGBuilder::ExitConstructionContext() { |
| 1164 | assert(!CurrentConstructionContext.isNull() && |
| 1165 | "Cannot exit construction context without the context!"); |
| 1166 | CurrentConstructionContext = ConstructionContext(); |
| 1167 | } |
| 1168 | |
| 1169 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1170 | /// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an |
| 1171 | /// arbitrary statement. Examples include a single expression or a function |
| 1172 | /// body (compound statement). The ownership of the returned CFG is |
| 1173 | /// transferred to the caller. If CFG construction fails, this method returns |
| 1174 | /// NULL. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1175 | std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) { |
Ted Kremenek | 8aed490 | 2009-10-20 23:46:25 +0000 | [diff] [blame] | 1176 | assert(cfg.get()); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1177 | if (!Statement) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1178 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1179 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1180 | // Create an empty block that will serve as the exit block for the CFG. Since |
| 1181 | // this is the first block added to the CFG, it will be implicitly registered |
| 1182 | // as the exit block. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1183 | Succ = createBlock(); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 1184 | assert(Succ == &cfg->getExit()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1185 | Block = nullptr; // the EXIT block is empty. Create all other blocks lazily. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1186 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1187 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1188 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
| 1189 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1190 | if (BuildOpts.AddImplicitDtors) |
| 1191 | if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D)) |
| 1192 | addImplicitDtorsForDestructor(DD); |
| 1193 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1194 | // Visit the statements and create the CFG. |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1195 | CFGBlock *B = addStmt(Statement); |
| 1196 | |
| 1197 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1198 | return nullptr; |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1199 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1200 | // For C++ constructor add initializers to CFG. |
| 1201 | if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) { |
Pete Cooper | 57d3f14 | 2015-07-30 17:22:52 +0000 | [diff] [blame] | 1202 | for (auto *I : llvm::reverse(CD->inits())) { |
| 1203 | B = addInitializer(I); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1204 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1205 | return nullptr; |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1206 | } |
| 1207 | } |
| 1208 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1209 | if (B) |
| 1210 | Succ = B; |
Mike Stump | 6bf1c08 | 2010-01-21 02:21:40 +0000 | [diff] [blame] | 1211 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1212 | // Backpatch the gotos whose label -> block mappings we didn't know when we |
| 1213 | // encountered them. |
| 1214 | for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(), |
| 1215 | E = BackpatchBlocks.end(); I != E; ++I ) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1216 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1217 | CFGBlock *B = I->block; |
Rafael Espindola | 210de57 | 2013-03-27 15:37:54 +0000 | [diff] [blame] | 1218 | const GotoStmt *G = cast<GotoStmt>(B->getTerminator()); |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1219 | LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1220 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1221 | // If there is no target for the goto, then we are looking at an |
| 1222 | // incomplete AST. Handle this by not registering a successor. |
| 1223 | if (LI == LabelMap.end()) continue; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1224 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 1225 | JumpTarget JT = LI->second; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1226 | prependAutomaticObjLifetimeWithTerminator(B, I->scopePosition, |
| 1227 | JT.scopePosition); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1228 | prependAutomaticObjDtorsWithTerminator(B, I->scopePosition, |
| 1229 | JT.scopePosition); |
| 1230 | addSuccessor(B, JT.block); |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1231 | } |
| 1232 | |
| 1233 | // Add successors to the Indirect Goto Dispatch block (if we have one). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1234 | if (CFGBlock *B = cfg->getIndirectGotoBlock()) |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1235 | for (LabelSetTy::iterator I = AddressTakenLabels.begin(), |
| 1236 | E = AddressTakenLabels.end(); I != E; ++I ) { |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1237 | // Lookup the target block. |
| 1238 | LabelMapTy::iterator LI = LabelMap.find(*I); |
| 1239 | |
| 1240 | // If there is no target block that contains label, then we are looking |
| 1241 | // at an incomplete AST. Handle this by not registering a successor. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1242 | if (LI == LabelMap.end()) continue; |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1243 | |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1244 | addSuccessor(B, LI->second.block); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 1245 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1246 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1247 | // Create an empty entry block that has no predecessors. |
Ted Kremenek | 5c50fd1 | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 1248 | cfg->setEntry(createBlock()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1249 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1250 | return std::move(cfg); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1251 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1252 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1253 | /// createBlock - Used to lazily create blocks that are connected |
| 1254 | /// to the current (global) succcessor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1255 | CFGBlock *CFGBuilder::createBlock(bool add_successor) { |
| 1256 | CFGBlock *B = cfg->createBlock(); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1257 | if (add_successor && Succ) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1258 | addSuccessor(B, Succ); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1259 | return B; |
| 1260 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1261 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1262 | /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the |
| 1263 | /// CFG. It is *not* connected to the current (global) successor, and instead |
| 1264 | /// directly tied to the exit block in order to be reachable. |
| 1265 | CFGBlock *CFGBuilder::createNoReturnBlock() { |
| 1266 | CFGBlock *B = createBlock(false); |
Chandler Carruth | 75d7823 | 2011-09-13 09:53:55 +0000 | [diff] [blame] | 1267 | B->setHasNoReturnElement(); |
Ted Kremenek | f353919 | 2014-02-27 00:24:05 +0000 | [diff] [blame] | 1268 | addSuccessor(B, &cfg->getExit(), Succ); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1269 | return B; |
| 1270 | } |
| 1271 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1272 | /// addInitializer - Add C++ base or member initializer element to CFG. |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1273 | CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1274 | if (!BuildOpts.AddInitializers) |
| 1275 | return Block; |
| 1276 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1277 | bool HasTemporaries = false; |
| 1278 | |
| 1279 | // Destructors of temporaries in initialization expression should be called |
| 1280 | // after initialization finishes. |
| 1281 | Expr *Init = I->getInit(); |
| 1282 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1283 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1284 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 1285 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1286 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 1287 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 1288 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
| 1289 | /*BindToTemporary=*/false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1290 | } |
| 1291 | } |
| 1292 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1293 | autoCreateBlock(); |
| 1294 | appendInitializer(Block, I); |
| 1295 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1296 | if (Init) { |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1297 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1298 | // For expression with temporaries go directly to subexpression to omit |
| 1299 | // generating destructors for the second time. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1300 | return Visit(cast<ExprWithCleanups>(Init)->getSubExpr()); |
| 1301 | } |
Enrico Pertoso | faed801 | 2015-06-03 10:12:40 +0000 | [diff] [blame] | 1302 | if (BuildOpts.AddCXXDefaultInitExprInCtors) { |
| 1303 | if (CXXDefaultInitExpr *Default = dyn_cast<CXXDefaultInitExpr>(Init)) { |
| 1304 | // In general, appending the expression wrapped by a CXXDefaultInitExpr |
| 1305 | // may cause the same Expr to appear more than once in the CFG. Doing it |
| 1306 | // here is safe because there's only one initializer per field. |
| 1307 | autoCreateBlock(); |
| 1308 | appendStmt(Block, Default); |
| 1309 | if (Stmt *Child = Default->getExpr()) |
| 1310 | if (CFGBlock *R = Visit(Child)) |
| 1311 | Block = R; |
| 1312 | return Block; |
| 1313 | } |
| 1314 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1315 | return Visit(Init); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1316 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1317 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1318 | return Block; |
| 1319 | } |
| 1320 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1321 | /// \brief Retrieve the type of the temporary object whose lifetime was |
| 1322 | /// extended by a local reference with the given initializer. |
| 1323 | static QualType getReferenceInitTemporaryType(ASTContext &Context, |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1324 | const Expr *Init, |
| 1325 | bool *FoundMTE = nullptr) { |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1326 | while (true) { |
| 1327 | // Skip parentheses. |
| 1328 | Init = Init->IgnoreParens(); |
| 1329 | |
| 1330 | // Skip through cleanups. |
| 1331 | if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) { |
| 1332 | Init = EWC->getSubExpr(); |
| 1333 | continue; |
| 1334 | } |
| 1335 | |
| 1336 | // Skip through the temporary-materialization expression. |
| 1337 | if (const MaterializeTemporaryExpr *MTE |
| 1338 | = dyn_cast<MaterializeTemporaryExpr>(Init)) { |
| 1339 | Init = MTE->GetTemporaryExpr(); |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1340 | if (FoundMTE) |
| 1341 | *FoundMTE = true; |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1342 | continue; |
| 1343 | } |
| 1344 | |
| 1345 | // Skip derived-to-base and no-op casts. |
| 1346 | if (const CastExpr *CE = dyn_cast<CastExpr>(Init)) { |
| 1347 | if ((CE->getCastKind() == CK_DerivedToBase || |
| 1348 | CE->getCastKind() == CK_UncheckedDerivedToBase || |
| 1349 | CE->getCastKind() == CK_NoOp) && |
| 1350 | Init->getType()->isRecordType()) { |
| 1351 | Init = CE->getSubExpr(); |
| 1352 | continue; |
| 1353 | } |
| 1354 | } |
| 1355 | |
| 1356 | // Skip member accesses into rvalues. |
| 1357 | if (const MemberExpr *ME = dyn_cast<MemberExpr>(Init)) { |
| 1358 | if (!ME->isArrow() && ME->getBase()->isRValue()) { |
| 1359 | Init = ME->getBase(); |
| 1360 | continue; |
| 1361 | } |
| 1362 | } |
| 1363 | |
| 1364 | break; |
| 1365 | } |
| 1366 | |
| 1367 | return Init->getType(); |
| 1368 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1369 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 1370 | // TODO: Support adding LoopExit element to the CFG in case where the loop is |
| 1371 | // ended by ReturnStmt, GotoStmt or ThrowExpr. |
| 1372 | void CFGBuilder::addLoopExit(const Stmt *LoopStmt){ |
| 1373 | if(!BuildOpts.AddLoopExit) |
| 1374 | return; |
| 1375 | autoCreateBlock(); |
| 1376 | appendLoopExit(Block, LoopStmt); |
| 1377 | } |
| 1378 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1379 | void CFGBuilder::addAutomaticObjHandling(LocalScope::const_iterator B, |
| 1380 | LocalScope::const_iterator E, |
| 1381 | Stmt *S) { |
| 1382 | if (BuildOpts.AddImplicitDtors) |
| 1383 | addAutomaticObjDtors(B, E, S); |
| 1384 | if (BuildOpts.AddLifetime) |
| 1385 | addLifetimeEnds(B, E, S); |
| 1386 | } |
| 1387 | |
| 1388 | /// Add to current block automatic objects that leave the scope. |
| 1389 | void CFGBuilder::addLifetimeEnds(LocalScope::const_iterator B, |
| 1390 | LocalScope::const_iterator E, Stmt *S) { |
| 1391 | if (!BuildOpts.AddLifetime) |
| 1392 | return; |
| 1393 | |
| 1394 | if (B == E) |
| 1395 | return; |
| 1396 | |
| 1397 | // To go from B to E, one first goes up the scopes from B to P |
| 1398 | // then sideways in one scope from P to P' and then down |
| 1399 | // the scopes from P' to E. |
| 1400 | // The lifetime of all objects between B and P end. |
| 1401 | LocalScope::const_iterator P = B.shared_parent(E); |
| 1402 | int dist = B.distance(P); |
| 1403 | if (dist <= 0) |
| 1404 | return; |
| 1405 | |
| 1406 | // We need to perform the scope leaving in reverse order |
| 1407 | SmallVector<VarDecl *, 10> DeclsTrivial; |
| 1408 | SmallVector<VarDecl *, 10> DeclsNonTrivial; |
| 1409 | DeclsTrivial.reserve(dist); |
| 1410 | DeclsNonTrivial.reserve(dist); |
| 1411 | |
| 1412 | for (LocalScope::const_iterator I = B; I != P; ++I) |
| 1413 | if (hasTrivialDestructor(*I)) |
| 1414 | DeclsTrivial.push_back(*I); |
| 1415 | else |
| 1416 | DeclsNonTrivial.push_back(*I); |
| 1417 | |
| 1418 | autoCreateBlock(); |
| 1419 | // object with trivial destructor end their lifetime last (when storage |
| 1420 | // duration ends) |
| 1421 | for (SmallVectorImpl<VarDecl *>::reverse_iterator I = DeclsTrivial.rbegin(), |
| 1422 | E = DeclsTrivial.rend(); |
| 1423 | I != E; ++I) |
| 1424 | appendLifetimeEnds(Block, *I, S); |
| 1425 | |
| 1426 | for (SmallVectorImpl<VarDecl *>::reverse_iterator |
| 1427 | I = DeclsNonTrivial.rbegin(), |
| 1428 | E = DeclsNonTrivial.rend(); |
| 1429 | I != E; ++I) |
| 1430 | appendLifetimeEnds(Block, *I, S); |
| 1431 | } |
| 1432 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1433 | /// addAutomaticObjDtors - Add to current block automatic objects destructors |
| 1434 | /// for objects in range of local scope positions. Use S as trigger statement |
| 1435 | /// for destructors. |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1436 | void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1437 | LocalScope::const_iterator E, Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1438 | if (!BuildOpts.AddImplicitDtors) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1439 | return; |
| 1440 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1441 | if (B == E) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1442 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1443 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1444 | // We need to append the destructors in reverse order, but any one of them |
| 1445 | // may be a no-return destructor which changes the CFG. As a result, buffer |
| 1446 | // this sequence up and replay them in reverse order when appending onto the |
| 1447 | // CFGBlock(s). |
| 1448 | SmallVector<VarDecl*, 10> Decls; |
| 1449 | Decls.reserve(B.distance(E)); |
| 1450 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1451 | Decls.push_back(*I); |
| 1452 | |
| 1453 | for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(), |
| 1454 | E = Decls.rend(); |
| 1455 | I != E; ++I) { |
| 1456 | // If this destructor is marked as a no-return destructor, we need to |
| 1457 | // create a new block for the destructor which does not have as a successor |
| 1458 | // anything built thus far: control won't flow out of this block. |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1459 | QualType Ty = (*I)->getType(); |
| 1460 | if (Ty->isReferenceType()) { |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1461 | Ty = getReferenceInitTemporaryType(*Context, (*I)->getInit()); |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1462 | } |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1463 | Ty = Context->getBaseElementType(Ty); |
| 1464 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 1465 | if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn()) |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1466 | Block = createNoReturnBlock(); |
| 1467 | else |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1468 | autoCreateBlock(); |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1469 | |
| 1470 | appendAutomaticObjDtor(Block, *I, S); |
| 1471 | } |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1472 | } |
| 1473 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1474 | /// addImplicitDtorsForDestructor - Add implicit destructors generated for |
| 1475 | /// base and member objects in destructor. |
| 1476 | void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1477 | assert(BuildOpts.AddImplicitDtors && |
| 1478 | "Can be called only when dtors should be added"); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1479 | const CXXRecordDecl *RD = DD->getParent(); |
| 1480 | |
| 1481 | // At the end destroy virtual base objects. |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1482 | for (const auto &VI : RD->vbases()) { |
| 1483 | const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1484 | if (!CD->hasTrivialDestructor()) { |
| 1485 | autoCreateBlock(); |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1486 | appendBaseDtor(Block, &VI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1487 | } |
| 1488 | } |
| 1489 | |
| 1490 | // Before virtual bases destroy direct base objects. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1491 | for (const auto &BI : RD->bases()) { |
| 1492 | if (!BI.isVirtual()) { |
| 1493 | const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl(); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1494 | if (!CD->hasTrivialDestructor()) { |
| 1495 | autoCreateBlock(); |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1496 | appendBaseDtor(Block, &BI); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1497 | } |
| 1498 | } |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1499 | } |
| 1500 | |
| 1501 | // First destroy member objects. |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1502 | for (auto *FI : RD->fields()) { |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 1503 | // Check for constant size array. Set type to array element type. |
| 1504 | QualType QT = FI->getType(); |
| 1505 | if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1506 | if (AT->getSize() == 0) |
| 1507 | continue; |
| 1508 | QT = AT->getElementType(); |
| 1509 | } |
| 1510 | |
| 1511 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1512 | if (!CD->hasTrivialDestructor()) { |
| 1513 | autoCreateBlock(); |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1514 | appendMemberDtor(Block, FI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1515 | } |
| 1516 | } |
| 1517 | } |
| 1518 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1519 | /// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either |
| 1520 | /// way return valid LocalScope object. |
| 1521 | LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) { |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 1522 | if (Scope) |
| 1523 | return Scope; |
| 1524 | llvm::BumpPtrAllocator &alloc = cfg->getAllocator(); |
| 1525 | return new (alloc.Allocate<LocalScope>()) |
| 1526 | LocalScope(BumpVectorContext(alloc), ScopePos); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1527 | } |
| 1528 | |
| 1529 | /// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1530 | /// that should create implicit scope (e.g. if/else substatements). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1531 | void CFGBuilder::addLocalScopeForStmt(Stmt *S) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1532 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime) |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1533 | return; |
| 1534 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1535 | LocalScope *Scope = nullptr; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1536 | |
| 1537 | // For compound statement we will be creating explicit scope. |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1538 | if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) { |
Aaron Ballman | c7e4e21 | 2014-03-17 14:19:37 +0000 | [diff] [blame] | 1539 | for (auto *BI : CS->body()) { |
| 1540 | Stmt *SI = BI->stripLabelLikeStatements(); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1541 | if (DeclStmt *DS = dyn_cast<DeclStmt>(SI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1542 | Scope = addLocalScopeForDeclStmt(DS, Scope); |
| 1543 | } |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1544 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1545 | } |
| 1546 | |
| 1547 | // For any other statement scope will be implicit and as such will be |
| 1548 | // interesting only for DeclStmt. |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 1549 | if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements())) |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1550 | addLocalScopeForDeclStmt(DS); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1551 | } |
| 1552 | |
| 1553 | /// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will |
| 1554 | /// reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1555 | LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1556 | LocalScope* Scope) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1557 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1558 | return Scope; |
| 1559 | |
Aaron Ballman | 535bbcc | 2014-03-14 17:01:24 +0000 | [diff] [blame] | 1560 | for (auto *DI : DS->decls()) |
| 1561 | if (VarDecl *VD = dyn_cast<VarDecl>(DI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1562 | Scope = addLocalScopeForVarDecl(VD, Scope); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1563 | return Scope; |
| 1564 | } |
| 1565 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1566 | bool CFGBuilder::hasTrivialDestructor(VarDecl *VD) { |
| 1567 | // Check for const references bound to temporary. Set type to pointee. |
| 1568 | QualType QT = VD->getType(); |
| 1569 | if (QT.getTypePtr()->isReferenceType()) { |
| 1570 | // Attempt to determine whether this declaration lifetime-extends a |
| 1571 | // temporary. |
| 1572 | // |
| 1573 | // FIXME: This is incorrect. Non-reference declarations can lifetime-extend |
| 1574 | // temporaries, and a single declaration can extend multiple temporaries. |
| 1575 | // We should look at the storage duration on each nested |
| 1576 | // MaterializeTemporaryExpr instead. |
| 1577 | |
| 1578 | const Expr *Init = VD->getInit(); |
| 1579 | if (!Init) |
| 1580 | return true; |
| 1581 | |
| 1582 | // Lifetime-extending a temporary. |
| 1583 | bool FoundMTE = false; |
| 1584 | QT = getReferenceInitTemporaryType(*Context, Init, &FoundMTE); |
| 1585 | if (!FoundMTE) |
| 1586 | return true; |
| 1587 | } |
| 1588 | |
| 1589 | // Check for constant size array. Set type to array element type. |
| 1590 | while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1591 | if (AT->getSize() == 0) |
| 1592 | return true; |
| 1593 | QT = AT->getElementType(); |
| 1594 | } |
| 1595 | |
| 1596 | // Check if type is a C++ class with non-trivial destructor. |
| 1597 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
| 1598 | return !CD->hasDefinition() || CD->hasTrivialDestructor(); |
| 1599 | return true; |
| 1600 | } |
| 1601 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1602 | /// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will |
| 1603 | /// create add scope for automatic objects and temporary objects bound to |
| 1604 | /// const reference. Will reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1605 | LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1606 | LocalScope* Scope) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1607 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1608 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
| 1609 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1610 | return Scope; |
| 1611 | |
| 1612 | // Check if variable is local. |
| 1613 | switch (VD->getStorageClass()) { |
| 1614 | case SC_None: |
| 1615 | case SC_Auto: |
| 1616 | case SC_Register: |
| 1617 | break; |
| 1618 | default: return Scope; |
| 1619 | } |
| 1620 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1621 | if (BuildOpts.AddImplicitDtors) { |
| 1622 | if (!hasTrivialDestructor(VD)) { |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 1623 | // Add the variable to scope |
| 1624 | Scope = createOrReuseLocalScope(Scope); |
| 1625 | Scope->addVar(VD); |
| 1626 | ScopePos = Scope->begin(); |
| 1627 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1628 | return Scope; |
| 1629 | } |
| 1630 | |
| 1631 | assert(BuildOpts.AddLifetime); |
| 1632 | // Add the variable to scope |
| 1633 | Scope = createOrReuseLocalScope(Scope); |
| 1634 | Scope->addVar(VD); |
| 1635 | ScopePos = Scope->begin(); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1636 | return Scope; |
| 1637 | } |
| 1638 | |
| 1639 | /// addLocalScopeAndDtors - For given statement add local scope for it and |
| 1640 | /// add destructors that will cleanup the scope. Will reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1641 | void CFGBuilder::addLocalScopeAndDtors(Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1642 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1643 | addLocalScopeForStmt(S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1644 | addAutomaticObjHandling(ScopePos, scopeBeginPos, S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1645 | } |
| 1646 | |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1647 | /// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for |
| 1648 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1649 | /// Elements will be prepended to physical beginning of the vector which |
| 1650 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1651 | /// destructors call site. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1652 | /// FIXME: This mechanism for adding automatic destructors doesn't handle |
| 1653 | /// no-return destructors properly. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1654 | void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1655 | LocalScope::const_iterator B, LocalScope::const_iterator E) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1656 | if (!BuildOpts.AddImplicitDtors) |
| 1657 | return; |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1658 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1659 | CFGBlock::iterator InsertPos |
| 1660 | = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C); |
| 1661 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1662 | InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I, |
| 1663 | Blk->getTerminator()); |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1664 | } |
| 1665 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1666 | /// prependAutomaticObjLifetimeWithTerminator - Prepend lifetime CFGElements for |
| 1667 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1668 | /// Elements will be prepended to physical beginning of the vector which |
| 1669 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1670 | /// where lifetime ends. |
| 1671 | void CFGBuilder::prependAutomaticObjLifetimeWithTerminator( |
| 1672 | CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) { |
| 1673 | if (!BuildOpts.AddLifetime) |
| 1674 | return; |
| 1675 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1676 | CFGBlock::iterator InsertPos = |
| 1677 | Blk->beginLifetimeEndsInsert(Blk->end(), B.distance(E), C); |
| 1678 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1679 | InsertPos = Blk->insertLifetimeEnds(InsertPos, *I, Blk->getTerminator()); |
| 1680 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1681 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1682 | /// Visit - Walk the subtree of a statement and add extra |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1683 | /// blocks for ternary operators, &&, and ||. We also process "," and |
| 1684 | /// DeclStmts (which may contain nested control-flow). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1685 | CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) { |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 1686 | if (!S) { |
| 1687 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1688 | return nullptr; |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 1689 | } |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 1690 | |
| 1691 | if (Expr *E = dyn_cast<Expr>(S)) |
| 1692 | S = E->IgnoreParens(); |
| 1693 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1694 | switch (S->getStmtClass()) { |
| 1695 | default: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1696 | return VisitStmt(S, asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1697 | |
| 1698 | case Stmt::AddrLabelExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1699 | return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1700 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1701 | case Stmt::BinaryConditionalOperatorClass: |
| 1702 | return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc); |
| 1703 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1704 | case Stmt::BinaryOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1705 | return VisitBinaryOperator(cast<BinaryOperator>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1706 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1707 | case Stmt::BlockExprClass: |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 1708 | return VisitBlockExpr(cast<BlockExpr>(S), asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1709 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1710 | case Stmt::BreakStmtClass: |
| 1711 | return VisitBreakStmt(cast<BreakStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1712 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1713 | case Stmt::CallExprClass: |
Ted Kremenek | 128d04d | 2010-08-31 18:47:34 +0000 | [diff] [blame] | 1714 | case Stmt::CXXOperatorCallExprClass: |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 1715 | case Stmt::CXXMemberCallExprClass: |
Richard Smith | c67fdd4 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1716 | case Stmt::UserDefinedLiteralClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1717 | return VisitCallExpr(cast<CallExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1718 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1719 | case Stmt::CaseStmtClass: |
| 1720 | return VisitCaseStmt(cast<CaseStmt>(S)); |
| 1721 | |
| 1722 | case Stmt::ChooseExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1723 | return VisitChooseExpr(cast<ChooseExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1724 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1725 | case Stmt::CompoundStmtClass: |
| 1726 | return VisitCompoundStmt(cast<CompoundStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1727 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1728 | case Stmt::ConditionalOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1729 | return VisitConditionalOperator(cast<ConditionalOperator>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1730 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1731 | case Stmt::ContinueStmtClass: |
| 1732 | return VisitContinueStmt(cast<ContinueStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1733 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 1734 | case Stmt::CXXCatchStmtClass: |
| 1735 | return VisitCXXCatchStmt(cast<CXXCatchStmt>(S)); |
| 1736 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1737 | case Stmt::ExprWithCleanupsClass: |
| 1738 | return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc); |
Ted Kremenek | 82bfc86 | 2010-08-28 00:19:02 +0000 | [diff] [blame] | 1739 | |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 1740 | case Stmt::CXXDefaultArgExprClass: |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1741 | case Stmt::CXXDefaultInitExprClass: |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 1742 | // FIXME: The expression inside a CXXDefaultArgExpr is owned by the |
| 1743 | // called function's declaration, not by the caller. If we simply add |
| 1744 | // this expression to the CFG, we could end up with the same Expr |
| 1745 | // appearing multiple times. |
| 1746 | // PR13385 / <rdar://problem/12156507> |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1747 | // |
| 1748 | // It's likewise possible for multiple CXXDefaultInitExprs for the same |
| 1749 | // expression to be used in the same function (through aggregate |
| 1750 | // initialization). |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 1751 | return VisitStmt(S, asc); |
| 1752 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 1753 | case Stmt::CXXBindTemporaryExprClass: |
| 1754 | return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc); |
| 1755 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 1756 | case Stmt::CXXConstructExprClass: |
| 1757 | return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc); |
| 1758 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 1759 | case Stmt::CXXNewExprClass: |
| 1760 | return VisitCXXNewExpr(cast<CXXNewExpr>(S), asc); |
| 1761 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 1762 | case Stmt::CXXDeleteExprClass: |
| 1763 | return VisitCXXDeleteExpr(cast<CXXDeleteExpr>(S), asc); |
| 1764 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 1765 | case Stmt::CXXFunctionalCastExprClass: |
| 1766 | return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc); |
| 1767 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 1768 | case Stmt::CXXTemporaryObjectExprClass: |
| 1769 | return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc); |
| 1770 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 1771 | case Stmt::CXXThrowExprClass: |
| 1772 | return VisitCXXThrowExpr(cast<CXXThrowExpr>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 1773 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 1774 | case Stmt::CXXTryStmtClass: |
| 1775 | return VisitCXXTryStmt(cast<CXXTryStmt>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 1776 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1777 | case Stmt::CXXForRangeStmtClass: |
| 1778 | return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S)); |
| 1779 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1780 | case Stmt::DeclStmtClass: |
| 1781 | return VisitDeclStmt(cast<DeclStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1782 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1783 | case Stmt::DefaultStmtClass: |
| 1784 | return VisitDefaultStmt(cast<DefaultStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1785 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1786 | case Stmt::DoStmtClass: |
| 1787 | return VisitDoStmt(cast<DoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1788 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1789 | case Stmt::ForStmtClass: |
| 1790 | return VisitForStmt(cast<ForStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1791 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1792 | case Stmt::GotoStmtClass: |
| 1793 | return VisitGotoStmt(cast<GotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1794 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1795 | case Stmt::IfStmtClass: |
| 1796 | return VisitIfStmt(cast<IfStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1797 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1798 | case Stmt::ImplicitCastExprClass: |
| 1799 | return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 1800 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1801 | case Stmt::IndirectGotoStmtClass: |
| 1802 | return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1803 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1804 | case Stmt::LabelStmtClass: |
| 1805 | return VisitLabelStmt(cast<LabelStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1806 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 1807 | case Stmt::LambdaExprClass: |
| 1808 | return VisitLambdaExpr(cast<LambdaExpr>(S), asc); |
| 1809 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 1810 | case Stmt::MemberExprClass: |
| 1811 | return VisitMemberExpr(cast<MemberExpr>(S), asc); |
| 1812 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 1813 | case Stmt::NullStmtClass: |
| 1814 | return Block; |
| 1815 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1816 | case Stmt::ObjCAtCatchStmtClass: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1817 | return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); |
| 1818 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 1819 | case Stmt::ObjCAutoreleasePoolStmtClass: |
| 1820 | return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S)); |
| 1821 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1822 | case Stmt::ObjCAtSynchronizedStmtClass: |
| 1823 | return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1824 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1825 | case Stmt::ObjCAtThrowStmtClass: |
| 1826 | return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1827 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1828 | case Stmt::ObjCAtTryStmtClass: |
| 1829 | return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1830 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1831 | case Stmt::ObjCForCollectionStmtClass: |
| 1832 | return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1833 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 1834 | case Stmt::OpaqueValueExprClass: |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1835 | return Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1836 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1837 | case Stmt::PseudoObjectExprClass: |
| 1838 | return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S)); |
| 1839 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1840 | case Stmt::ReturnStmtClass: |
| 1841 | return VisitReturnStmt(cast<ReturnStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1842 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 1843 | case Stmt::SEHExceptStmtClass: |
| 1844 | return VisitSEHExceptStmt(cast<SEHExceptStmt>(S)); |
| 1845 | |
| 1846 | case Stmt::SEHFinallyStmtClass: |
| 1847 | return VisitSEHFinallyStmt(cast<SEHFinallyStmt>(S)); |
| 1848 | |
| 1849 | case Stmt::SEHLeaveStmtClass: |
| 1850 | return VisitSEHLeaveStmt(cast<SEHLeaveStmt>(S)); |
| 1851 | |
| 1852 | case Stmt::SEHTryStmtClass: |
| 1853 | return VisitSEHTryStmt(cast<SEHTryStmt>(S)); |
| 1854 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 1855 | case Stmt::UnaryExprOrTypeTraitExprClass: |
| 1856 | return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S), |
| 1857 | asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1858 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1859 | case Stmt::StmtExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1860 | return VisitStmtExpr(cast<StmtExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1861 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1862 | case Stmt::SwitchStmtClass: |
| 1863 | return VisitSwitchStmt(cast<SwitchStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1864 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1865 | case Stmt::UnaryOperatorClass: |
| 1866 | return VisitUnaryOperator(cast<UnaryOperator>(S), asc); |
| 1867 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1868 | case Stmt::WhileStmtClass: |
| 1869 | return VisitWhileStmt(cast<WhileStmt>(S)); |
| 1870 | } |
| 1871 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1872 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1873 | CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1874 | if (asc.alwaysAdd(*this, S)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1875 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1876 | appendStmt(Block, S); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1877 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1878 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1879 | return VisitChildren(S); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 1880 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1881 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1882 | /// VisitChildren - Visit the children of a Stmt. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 1883 | CFGBlock *CFGBuilder::VisitChildren(Stmt *S) { |
| 1884 | CFGBlock *B = Block; |
Ted Kremenek | 828f631 | 2011-02-21 22:11:26 +0000 | [diff] [blame] | 1885 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 1886 | // Visit the children in their reverse order so that they appear in |
| 1887 | // left-to-right (natural) order in the CFG. |
| 1888 | reverse_children RChildren(S); |
| 1889 | for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end(); |
| 1890 | I != E; ++I) { |
| 1891 | if (Stmt *Child = *I) |
| 1892 | if (CFGBlock *R = Visit(Child)) |
| 1893 | B = R; |
| 1894 | } |
| 1895 | return B; |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 1896 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1897 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1898 | CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, |
| 1899 | AddStmtChoice asc) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1900 | AddressTakenLabels.insert(A->getLabel()); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 1901 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1902 | if (asc.alwaysAdd(*this, A)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1903 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1904 | appendStmt(Block, A); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1905 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1906 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1907 | return Block; |
| 1908 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1909 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1910 | CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U, |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1911 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1912 | if (asc.alwaysAdd(*this, U)) { |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1913 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 1914 | appendStmt(Block, U); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1915 | } |
| 1916 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1917 | return Visit(U->getSubExpr(), AddStmtChoice()); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 1918 | } |
| 1919 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1920 | CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) { |
| 1921 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
| 1922 | appendStmt(ConfluenceBlock, B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1923 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1924 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1925 | return nullptr; |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1926 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1927 | return VisitLogicalOperator(B, nullptr, ConfluenceBlock, |
| 1928 | ConfluenceBlock).first; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1929 | } |
| 1930 | |
| 1931 | std::pair<CFGBlock*, CFGBlock*> |
| 1932 | CFGBuilder::VisitLogicalOperator(BinaryOperator *B, |
| 1933 | Stmt *Term, |
| 1934 | CFGBlock *TrueBlock, |
| 1935 | CFGBlock *FalseBlock) { |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1936 | // Introspect the RHS. If it is a nested logical operation, we recursively |
| 1937 | // build the CFG using this function. Otherwise, resort to default |
| 1938 | // CFG construction behavior. |
| 1939 | Expr *RHS = B->getRHS()->IgnoreParens(); |
| 1940 | CFGBlock *RHSBlock, *ExitBlock; |
| 1941 | |
| 1942 | do { |
| 1943 | if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS)) |
| 1944 | if (B_RHS->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 1945 | std::tie(RHSBlock, ExitBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1946 | VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock); |
| 1947 | break; |
| 1948 | } |
| 1949 | |
| 1950 | // The RHS is not a nested logical operation. Don't push the terminator |
| 1951 | // down further, but instead visit RHS and construct the respective |
| 1952 | // pieces of the CFG, and link up the RHSBlock with the terminator |
| 1953 | // we have been provided. |
| 1954 | ExitBlock = RHSBlock = createBlock(false); |
| 1955 | |
Richard Trieu | 6a6af52 | 2017-01-04 00:46:30 +0000 | [diff] [blame] | 1956 | // Even though KnownVal is only used in the else branch of the next |
| 1957 | // conditional, tryEvaluateBool performs additional checking on the |
| 1958 | // Expr, so it should be called unconditionally. |
| 1959 | TryResult KnownVal = tryEvaluateBool(RHS); |
| 1960 | if (!KnownVal.isKnown()) |
| 1961 | KnownVal = tryEvaluateBool(B); |
| 1962 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1963 | if (!Term) { |
| 1964 | assert(TrueBlock == FalseBlock); |
| 1965 | addSuccessor(RHSBlock, TrueBlock); |
| 1966 | } |
| 1967 | else { |
| 1968 | RHSBlock->setTerminator(Term); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 1969 | addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 1970 | addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1971 | } |
| 1972 | |
| 1973 | Block = RHSBlock; |
| 1974 | RHSBlock = addStmt(RHS); |
| 1975 | } |
| 1976 | while (false); |
| 1977 | |
| 1978 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1979 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 1980 | |
| 1981 | // Generate the blocks for evaluating the LHS. |
| 1982 | Expr *LHS = B->getLHS()->IgnoreParens(); |
| 1983 | |
| 1984 | if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS)) |
| 1985 | if (B_LHS->isLogicalOp()) { |
| 1986 | if (B->getOpcode() == BO_LOr) |
| 1987 | FalseBlock = RHSBlock; |
| 1988 | else |
| 1989 | TrueBlock = RHSBlock; |
| 1990 | |
| 1991 | // For the LHS, treat 'B' as the terminator that we want to sink |
| 1992 | // into the nested branch. The RHS always gets the top-most |
| 1993 | // terminator. |
| 1994 | return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock); |
| 1995 | } |
| 1996 | |
| 1997 | // Create the block evaluating the LHS. |
| 1998 | // This contains the '&&' or '||' as the terminator. |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 1999 | CFGBlock *LHSBlock = createBlock(false); |
| 2000 | LHSBlock->setTerminator(B); |
| 2001 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2002 | Block = LHSBlock; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2003 | CFGBlock *EntryLHSBlock = addStmt(LHS); |
| 2004 | |
| 2005 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2006 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2007 | |
| 2008 | // See if this is a known constant. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2009 | TryResult KnownVal = tryEvaluateBool(LHS); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2010 | |
| 2011 | // Now link the LHSBlock with RHSBlock. |
| 2012 | if (B->getOpcode() == BO_LOr) { |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2013 | addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 2014 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2015 | } else { |
| 2016 | assert(B->getOpcode() == BO_LAnd); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2017 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse()); |
| 2018 | addSuccessor(LHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2019 | } |
| 2020 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2021 | return std::make_pair(EntryLHSBlock, ExitBlock); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2022 | } |
| 2023 | |
| 2024 | CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B, |
| 2025 | AddStmtChoice asc) { |
| 2026 | // && or || |
| 2027 | if (B->isLogicalOp()) |
| 2028 | return VisitLogicalOperator(B); |
| 2029 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2030 | if (B->getOpcode() == BO_Comma) { // , |
Ted Kremenek | fe9b768 | 2009-07-17 22:57:50 +0000 | [diff] [blame] | 2031 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2032 | appendStmt(Block, B); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2033 | addStmt(B->getRHS()); |
| 2034 | return addStmt(B->getLHS()); |
| 2035 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2036 | |
| 2037 | if (B->isAssignmentOp()) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2038 | if (asc.alwaysAdd(*this, B)) { |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2039 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2040 | appendStmt(Block, B); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2041 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2042 | Visit(B->getLHS()); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2043 | return Visit(B->getRHS()); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2044 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2045 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2046 | if (asc.alwaysAdd(*this, B)) { |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2047 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2048 | appendStmt(Block, B); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2049 | } |
| 2050 | |
Zhongxing Xu | d95ccd5 | 2010-10-27 03:23:10 +0000 | [diff] [blame] | 2051 | CFGBlock *RBlock = Visit(B->getRHS()); |
| 2052 | CFGBlock *LBlock = Visit(B->getLHS()); |
| 2053 | // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr |
| 2054 | // containing a DoStmt, and the LHS doesn't create a new block, then we should |
| 2055 | // return RBlock. Otherwise we'll incorrectly return NULL. |
| 2056 | return (LBlock ? LBlock : RBlock); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2057 | } |
| 2058 | |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 2059 | CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2060 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2061 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2062 | appendStmt(Block, E); |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2063 | } |
| 2064 | return Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2065 | } |
| 2066 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2067 | CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { |
| 2068 | // "break" is a control-flow statement. Thus we stop processing the current |
| 2069 | // block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2070 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2071 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2072 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2073 | // Now create a new block that ends with the break statement. |
| 2074 | Block = createBlock(false); |
| 2075 | Block->setTerminator(B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2076 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2077 | // If there is no target for the break, then we are looking at an incomplete |
| 2078 | // AST. This means that the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2079 | if (BreakJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2080 | addAutomaticObjHandling(ScopePos, BreakJumpTarget.scopePosition, B); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2081 | addSuccessor(Block, BreakJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2082 | } else |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2083 | badCFG = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2084 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2085 | return Block; |
| 2086 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2087 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2088 | static bool CanThrow(Expr *E, ASTContext &Ctx) { |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2089 | QualType Ty = E->getType(); |
| 2090 | if (Ty->isFunctionPointerType()) |
| 2091 | Ty = Ty->getAs<PointerType>()->getPointeeType(); |
| 2092 | else if (Ty->isBlockPointerType()) |
| 2093 | Ty = Ty->getAs<BlockPointerType>()->getPointeeType(); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2094 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2095 | const FunctionType *FT = Ty->getAs<FunctionType>(); |
| 2096 | if (FT) { |
| 2097 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) |
Richard Smith | d3b5c908 | 2012-07-27 04:22:15 +0000 | [diff] [blame] | 2098 | if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && |
Richard Smith | f623c96 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 2099 | Proto->isNothrow(Ctx)) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2100 | return false; |
| 2101 | } |
| 2102 | return true; |
| 2103 | } |
| 2104 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2105 | CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) { |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2106 | // Compute the callee type. |
| 2107 | QualType calleeType = C->getCallee()->getType(); |
| 2108 | if (calleeType == Context->BoundMemberTy) { |
| 2109 | QualType boundType = Expr::findBoundMemberType(C->getCallee()); |
| 2110 | |
| 2111 | // We should only get a null bound type if processing a dependent |
| 2112 | // CFG. Recover by assuming nothing. |
| 2113 | if (!boundType.isNull()) calleeType = boundType; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2114 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2115 | |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2116 | // If this is a call to a no-return function, this stops the block here. |
| 2117 | bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); |
| 2118 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2119 | bool AddEHEdge = false; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2120 | |
| 2121 | // Languages without exceptions are assumed to not throw. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2122 | if (Context->getLangOpts().Exceptions) { |
Ted Kremenek | e97b1eb | 2010-09-14 23:41:16 +0000 | [diff] [blame] | 2123 | if (BuildOpts.AddEHEdges) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2124 | AddEHEdge = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2125 | } |
| 2126 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2127 | // If this is a call to a builtin function, it might not actually evaluate |
| 2128 | // its arguments. Don't add them to the CFG if this is the case. |
| 2129 | bool OmitArguments = false; |
| 2130 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2131 | if (FunctionDecl *FD = C->getDirectCallee()) { |
Richard Smith | 10876ef | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 2132 | if (FD->isNoReturn()) |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2133 | NoReturn = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2134 | if (FD->hasAttr<NoThrowAttr>()) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2135 | AddEHEdge = false; |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2136 | if (FD->getBuiltinID() == Builtin::BI__builtin_object_size) |
| 2137 | OmitArguments = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2138 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2139 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2140 | if (!CanThrow(C->getCallee(), *Context)) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2141 | AddEHEdge = false; |
| 2142 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2143 | if (OmitArguments) { |
| 2144 | assert(!NoReturn && "noreturn calls with unevaluated args not implemented"); |
| 2145 | assert(!AddEHEdge && "EH calls with unevaluated args not implemented"); |
| 2146 | autoCreateBlock(); |
| 2147 | appendStmt(Block, C); |
| 2148 | return Visit(C->getCallee()); |
| 2149 | } |
| 2150 | |
| 2151 | if (!NoReturn && !AddEHEdge) { |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2152 | return VisitStmt(C, asc.withAlwaysAdd(true)); |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2153 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2154 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2155 | if (Block) { |
| 2156 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2157 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2158 | return nullptr; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2159 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2160 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 2161 | if (NoReturn) |
| 2162 | Block = createNoReturnBlock(); |
| 2163 | else |
| 2164 | Block = createBlock(); |
| 2165 | |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2166 | appendStmt(Block, C); |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2167 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2168 | if (AddEHEdge) { |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2169 | // Add exceptional edges. |
| 2170 | if (TryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2171 | addSuccessor(Block, TryTerminatedBlock); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2172 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2173 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2174 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2175 | |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2176 | return VisitChildren(C); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2177 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2178 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2179 | CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, |
| 2180 | AddStmtChoice asc) { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2181 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2182 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2183 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2184 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2185 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2186 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2187 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2188 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2189 | CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2190 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2191 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2192 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2193 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2194 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2195 | CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2196 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2197 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2198 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2199 | Block = createBlock(false); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2200 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2201 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2202 | addSuccessor(Block, KnownVal.isFalse() ? nullptr : LHSBlock); |
| 2203 | addSuccessor(Block, KnownVal.isTrue() ? nullptr : RHSBlock); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2204 | Block->setTerminator(C); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2205 | return addStmt(C->getCond()); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2206 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2207 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2208 | CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) { |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2209 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2210 | addLocalScopeForStmt(C); |
| 2211 | |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2212 | if (!C->body_empty() && !isa<ReturnStmt>(*C->body_rbegin())) { |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2213 | // If the body ends with a ReturnStmt, the dtors will be added in |
| 2214 | // VisitReturnStmt. |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2215 | addAutomaticObjHandling(ScopePos, scopeBeginPos, C); |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2216 | } |
| 2217 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2218 | CFGBlock *LastBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2219 | |
| 2220 | for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend(); |
| 2221 | I != E; ++I ) { |
Ted Kremenek | 4f2ab5a | 2010-08-17 21:00:06 +0000 | [diff] [blame] | 2222 | // If we hit a segment of code just containing ';' (NullStmts), we can |
| 2223 | // get a null block back. In such cases, just use the LastBlock |
| 2224 | if (CFGBlock *newBlock = addStmt(*I)) |
| 2225 | LastBlock = newBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2226 | |
Ted Kremenek | ce499c2 | 2009-08-27 23:16:26 +0000 | [diff] [blame] | 2227 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2228 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2229 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2230 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2231 | return LastBlock; |
| 2232 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2233 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2234 | CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C, |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2235 | AddStmtChoice asc) { |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2236 | const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2237 | const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : nullptr); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2238 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2239 | // Create the confluence block that will "merge" the results of the ternary |
| 2240 | // expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2241 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2242 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2243 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2244 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2245 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2246 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2247 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2248 | // Create a block for the LHS expression if there is an LHS expression. A |
| 2249 | // GCC extension allows LHS to be NULL, causing the condition to be the |
| 2250 | // value that is returned instead. |
| 2251 | // e.g: x ?: y is shorthand for: x ? x : y; |
| 2252 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2253 | Block = nullptr; |
| 2254 | CFGBlock *LHSBlock = nullptr; |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2255 | const Expr *trueExpr = C->getTrueExpr(); |
| 2256 | if (trueExpr != opaqueValue) { |
| 2257 | LHSBlock = Visit(C->getTrueExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2258 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2259 | return nullptr; |
| 2260 | Block = nullptr; |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2261 | } |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2262 | else |
| 2263 | LHSBlock = ConfluenceBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2264 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2265 | // Create the block for the RHS expression. |
| 2266 | Succ = ConfluenceBlock; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2267 | CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2268 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2269 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2270 | |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 2271 | // If the condition is a logical '&&' or '||', build a more accurate CFG. |
| 2272 | if (BinaryOperator *Cond = |
| 2273 | dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens())) |
| 2274 | if (Cond->isLogicalOp()) |
| 2275 | return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first; |
| 2276 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2277 | // Create the block that will contain the condition. |
| 2278 | Block = createBlock(false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2279 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2280 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2281 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Ted Kremenek | 5a09527 | 2014-03-04 21:53:26 +0000 | [diff] [blame] | 2282 | addSuccessor(Block, LHSBlock, !KnownVal.isFalse()); |
| 2283 | addSuccessor(Block, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2284 | Block->setTerminator(C); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2285 | Expr *condExpr = C->getCond(); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2286 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2287 | if (opaqueValue) { |
| 2288 | // Run the condition expression if it's not trivially expressed in |
| 2289 | // terms of the opaque value (or if there is no opaque value). |
| 2290 | if (condExpr != opaqueValue) |
| 2291 | addStmt(condExpr); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2292 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2293 | // Before that, run the common subexpression if there was one. |
| 2294 | // At least one of this or the above will be run. |
| 2295 | return addStmt(BCO->getCommon()); |
| 2296 | } |
| 2297 | |
| 2298 | return addStmt(condExpr); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2299 | } |
| 2300 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2301 | CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) { |
Ted Kremenek | 6878c36 | 2011-05-10 18:42:15 +0000 | [diff] [blame] | 2302 | // Check if the Decl is for an __label__. If so, elide it from the |
| 2303 | // CFG entirely. |
| 2304 | if (isa<LabelDecl>(*DS->decl_begin())) |
| 2305 | return Block; |
| 2306 | |
Ted Kremenek | 3a60114 | 2011-05-24 20:41:31 +0000 | [diff] [blame] | 2307 | // This case also handles static_asserts. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2308 | if (DS->isSingleDecl()) |
| 2309 | return VisitDeclSubExpr(DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2310 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2311 | CFGBlock *B = nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2312 | |
Jordan Rose | 8c6c8a9 | 2012-07-20 18:50:48 +0000 | [diff] [blame] | 2313 | // Build an individual DeclStmt for each decl. |
| 2314 | for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(), |
| 2315 | E = DS->decl_rend(); |
| 2316 | I != E; ++I) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2317 | // Get the alignment of the new DeclStmt, padding out to >=8 bytes. |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 2318 | unsigned A = alignof(DeclStmt) < 8 ? 8 : alignof(DeclStmt); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2319 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2320 | // Allocate the DeclStmt using the BumpPtrAllocator. It will get |
| 2321 | // automatically freed with the CFG. |
| 2322 | DeclGroupRef DG(*I); |
| 2323 | Decl *D = *I; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2324 | void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2325 | DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D)); |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 2326 | cfg->addSyntheticDeclStmt(DSNew, DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2327 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2328 | // Append the fake DeclStmt to block. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2329 | B = VisitDeclSubExpr(DSNew); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2330 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2331 | |
| 2332 | return B; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2333 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2334 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2335 | /// VisitDeclSubExpr - Utility method to add block-level expressions for |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2336 | /// DeclStmts and initializers in them. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2337 | CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2338 | assert(DS->isSingleDecl() && "Can handle single declarations only."); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2339 | VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2340 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2341 | if (!VD) { |
Jordan Rose | 5250b87 | 2013-06-03 22:59:41 +0000 | [diff] [blame] | 2342 | // Of everything that can be declared in a DeclStmt, only VarDecls impact |
| 2343 | // runtime semantics. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2344 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2345 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2346 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2347 | bool HasTemporaries = false; |
| 2348 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2349 | // Guard static initializers under a branch. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2350 | CFGBlock *blockAfterStaticInit = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2351 | |
| 2352 | if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) { |
| 2353 | // For static variables, we need to create a branch to track |
| 2354 | // whether or not they are initialized. |
| 2355 | if (Block) { |
| 2356 | Succ = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2357 | Block = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2358 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2359 | return nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2360 | } |
| 2361 | blockAfterStaticInit = Succ; |
| 2362 | } |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2363 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2364 | // Destructors of temporaries in initialization expression should be called |
| 2365 | // after initialization finishes. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2366 | Expr *Init = VD->getInit(); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2367 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 2368 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2369 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 2370 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2371 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 2372 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 2373 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
| 2374 | /*BindToTemporary=*/false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2375 | } |
| 2376 | } |
| 2377 | |
| 2378 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2379 | appendStmt(Block, DS); |
Artem Dergachev | 5fc1033 | 2018-02-10 01:55:23 +0000 | [diff] [blame^] | 2380 | |
| 2381 | EnterConstructionContextIfNecessary(DS, Init); |
| 2382 | |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2383 | // Keep track of the last non-null block, as 'Block' can be nulled out |
| 2384 | // if the initializer expression is something like a 'while' in a |
| 2385 | // statement-expression. |
| 2386 | CFGBlock *LastBlock = Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2387 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2388 | if (Init) { |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2389 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2390 | // For expression with temporaries go directly to subexpression to omit |
| 2391 | // generating destructors for the second time. |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2392 | ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); |
| 2393 | if (CFGBlock *newBlock = Visit(EC->getSubExpr())) |
| 2394 | LastBlock = newBlock; |
| 2395 | } |
| 2396 | else { |
| 2397 | if (CFGBlock *newBlock = Visit(Init)) |
| 2398 | LastBlock = newBlock; |
| 2399 | } |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2400 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2401 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2402 | // If the type of VD is a VLA, then we must process its size expressions. |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 2403 | for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2404 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) { |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2405 | if (CFGBlock *newBlock = addStmt(VA->getSizeExpr())) |
| 2406 | LastBlock = newBlock; |
| 2407 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2408 | |
Marcin Swiderski | 667ffec | 2010-10-01 00:23:17 +0000 | [diff] [blame] | 2409 | // Remove variable from local scope. |
| 2410 | if (ScopePos && VD == *ScopePos) |
| 2411 | ++ScopePos; |
| 2412 | |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2413 | CFGBlock *B = LastBlock; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2414 | if (blockAfterStaticInit) { |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2415 | Succ = B; |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2416 | Block = createBlock(false); |
| 2417 | Block->setTerminator(DS); |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2418 | addSuccessor(Block, blockAfterStaticInit); |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2419 | addSuccessor(Block, B); |
| 2420 | B = Block; |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2421 | } |
| 2422 | |
| 2423 | return B; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2424 | } |
| 2425 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2426 | CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2427 | // We may see an if statement in the middle of a basic block, or it may be the |
| 2428 | // first statement we are processing. In either case, we create a new basic |
| 2429 | // block. First, we create the blocks for the then...else statements, and |
| 2430 | // then we create the block containing the if statement. If we were in the |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 2431 | // middle of a block, we stop processing that block. That block is then the |
| 2432 | // implicit successor for the "then" and "else" clauses. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2433 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2434 | // Save local scope position because in case of condition variable ScopePos |
| 2435 | // won't be restored when traversing AST. |
| 2436 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2437 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2438 | // Create local scope for C++17 if init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2439 | if (Stmt *Init = I->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2440 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2441 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2442 | // Create local scope for possible condition variable. |
| 2443 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2444 | if (VarDecl *VD = I->getConditionVariable()) |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2445 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2446 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2447 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), I); |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2448 | |
Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 2449 | // The block we were processing is now finished. Make it the successor |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2450 | // block. |
| 2451 | if (Block) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2452 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2453 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2454 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2455 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2456 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2457 | // Process the false branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2458 | CFGBlock *ElseBlock = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2459 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2460 | if (Stmt *Else = I->getElse()) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2461 | SaveAndRestore<CFGBlock*> sv(Succ); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2462 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2463 | // NULL out Block so that the recursive call to Visit will |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2464 | // create a new basic block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2465 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2466 | |
| 2467 | // If branch is not a compound statement create implicit scope |
| 2468 | // and add destructors. |
| 2469 | if (!isa<CompoundStmt>(Else)) |
| 2470 | addLocalScopeAndDtors(Else); |
| 2471 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2472 | ElseBlock = addStmt(Else); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2473 | |
Ted Kremenek | bbad8ce | 2007-08-30 18:13:31 +0000 | [diff] [blame] | 2474 | if (!ElseBlock) // Can occur when the Else body has all NullStmts. |
| 2475 | ElseBlock = sv.get(); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2476 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2477 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2478 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2479 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2480 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2481 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2482 | // Process the true branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2483 | CFGBlock *ThenBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2484 | { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2485 | Stmt *Then = I->getThen(); |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 2486 | assert(Then); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2487 | SaveAndRestore<CFGBlock*> sv(Succ); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2488 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2489 | |
| 2490 | // If branch is not a compound statement create implicit scope |
| 2491 | // and add destructors. |
| 2492 | if (!isa<CompoundStmt>(Then)) |
| 2493 | addLocalScopeAndDtors(Then); |
| 2494 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2495 | ThenBlock = addStmt(Then); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2496 | |
Ted Kremenek | 1b37951 | 2009-04-01 03:52:47 +0000 | [diff] [blame] | 2497 | if (!ThenBlock) { |
| 2498 | // We can reach here if the "then" body has all NullStmts. |
| 2499 | // Create an empty block so we can distinguish between true and false |
| 2500 | // branches in path-sensitive analyses. |
| 2501 | ThenBlock = createBlock(false); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2502 | addSuccessor(ThenBlock, sv.get()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2503 | } else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2504 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2505 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2506 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2507 | } |
| 2508 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2509 | // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by |
| 2510 | // having these handle the actual control-flow jump. Note that |
| 2511 | // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)" |
| 2512 | // we resort to the old control-flow behavior. This special handling |
| 2513 | // removes infeasible paths from the control-flow graph by having the |
| 2514 | // control-flow transfer of '&&' or '||' go directly into the then/else |
| 2515 | // blocks directly. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2516 | BinaryOperator *Cond = |
| 2517 | I->getConditionVariable() |
| 2518 | ? nullptr |
| 2519 | : dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens()); |
| 2520 | CFGBlock *LastBlock; |
| 2521 | if (Cond && Cond->isLogicalOp()) |
| 2522 | LastBlock = VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first; |
| 2523 | else { |
| 2524 | // Now create a new block containing the if statement. |
| 2525 | Block = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2526 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2527 | // Set the terminator of the new block to the If statement. |
| 2528 | Block->setTerminator(I); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2529 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2530 | // See if this is a known constant. |
| 2531 | const TryResult &KnownVal = tryEvaluateBool(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2532 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2533 | // Add the successors. If we know that specific branches are |
| 2534 | // unreachable, inform addSuccessor() of that knowledge. |
| 2535 | addSuccessor(Block, ThenBlock, /* isReachable = */ !KnownVal.isFalse()); |
| 2536 | addSuccessor(Block, ElseBlock, /* isReachable = */ !KnownVal.isTrue()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2537 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2538 | // Add the condition as the last statement in the new block. This may |
| 2539 | // create new blocks as the condition may contain control-flow. Any newly |
| 2540 | // created blocks will be pointed to be "Block". |
| 2541 | LastBlock = addStmt(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2542 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2543 | // If the IfStmt contains a condition variable, add it and its |
| 2544 | // initializer to the CFG. |
| 2545 | if (const DeclStmt* DS = I->getConditionVariableDeclStmt()) { |
| 2546 | autoCreateBlock(); |
| 2547 | LastBlock = addStmt(const_cast<DeclStmt *>(DS)); |
| 2548 | } |
Ted Kremenek | a7bcbde | 2009-12-23 04:49:01 +0000 | [diff] [blame] | 2549 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2550 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2551 | // Finally, if the IfStmt contains a C++17 init-stmt, add it to the CFG. |
| 2552 | if (Stmt *Init = I->getInit()) { |
| 2553 | autoCreateBlock(); |
| 2554 | LastBlock = addStmt(Init); |
| 2555 | } |
| 2556 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2557 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2558 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2559 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2560 | CFGBlock *CFGBuilder::VisitReturnStmt(ReturnStmt *R) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 2561 | // If we were in the middle of a block we stop processing that block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2562 | // |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2563 | // NOTE: If a "return" appears in the middle of a block, this means that the |
| 2564 | // code afterwards is DEAD (unreachable). We still keep a basic block |
| 2565 | // for that code; a simple "mark-and-sweep" from the entry block will be |
| 2566 | // able to report such dead blocks. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2567 | |
| 2568 | // Create the new block. |
| 2569 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2570 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2571 | addAutomaticObjHandling(ScopePos, LocalScope::const_iterator(), R); |
Pavel Labath | 921e765 | 2013-09-06 08:12:48 +0000 | [diff] [blame] | 2572 | |
| 2573 | // If the one of the destructors does not return, we already have the Exit |
| 2574 | // block as a successor. |
| 2575 | if (!Block->hasNoReturnElement()) |
| 2576 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2577 | |
| 2578 | // Add the return statement to the block. This may create new blocks if R |
| 2579 | // contains control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2580 | return VisitStmt(R, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2581 | } |
| 2582 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 2583 | CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) { |
| 2584 | // SEHExceptStmt are treated like labels, so they are the first statement in a |
| 2585 | // block. |
| 2586 | |
| 2587 | // Save local scope position because in case of exception variable ScopePos |
| 2588 | // won't be restored when traversing AST. |
| 2589 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2590 | |
| 2591 | addStmt(ES->getBlock()); |
| 2592 | CFGBlock *SEHExceptBlock = Block; |
| 2593 | if (!SEHExceptBlock) |
| 2594 | SEHExceptBlock = createBlock(); |
| 2595 | |
| 2596 | appendStmt(SEHExceptBlock, ES); |
| 2597 | |
| 2598 | // Also add the SEHExceptBlock as a label, like with regular labels. |
| 2599 | SEHExceptBlock->setLabel(ES); |
| 2600 | |
| 2601 | // Bail out if the CFG is bad. |
| 2602 | if (badCFG) |
| 2603 | return nullptr; |
| 2604 | |
| 2605 | // We set Block to NULL to allow lazy creation of a new block (if necessary). |
| 2606 | Block = nullptr; |
| 2607 | |
| 2608 | return SEHExceptBlock; |
| 2609 | } |
| 2610 | |
| 2611 | CFGBlock *CFGBuilder::VisitSEHFinallyStmt(SEHFinallyStmt *FS) { |
| 2612 | return VisitCompoundStmt(FS->getBlock()); |
| 2613 | } |
| 2614 | |
| 2615 | CFGBlock *CFGBuilder::VisitSEHLeaveStmt(SEHLeaveStmt *LS) { |
| 2616 | // "__leave" is a control-flow statement. Thus we stop processing the current |
| 2617 | // block. |
| 2618 | if (badCFG) |
| 2619 | return nullptr; |
| 2620 | |
| 2621 | // Now create a new block that ends with the __leave statement. |
| 2622 | Block = createBlock(false); |
| 2623 | Block->setTerminator(LS); |
| 2624 | |
| 2625 | // If there is no target for the __leave, then we are looking at an incomplete |
| 2626 | // AST. This means that the CFG cannot be constructed. |
| 2627 | if (SEHLeaveJumpTarget.block) { |
| 2628 | addAutomaticObjHandling(ScopePos, SEHLeaveJumpTarget.scopePosition, LS); |
| 2629 | addSuccessor(Block, SEHLeaveJumpTarget.block); |
| 2630 | } else |
| 2631 | badCFG = true; |
| 2632 | |
| 2633 | return Block; |
| 2634 | } |
| 2635 | |
| 2636 | CFGBlock *CFGBuilder::VisitSEHTryStmt(SEHTryStmt *Terminator) { |
| 2637 | // "__try"/"__except"/"__finally" is a control-flow statement. Thus we stop |
| 2638 | // processing the current block. |
| 2639 | CFGBlock *SEHTrySuccessor = nullptr; |
| 2640 | |
| 2641 | if (Block) { |
| 2642 | if (badCFG) |
| 2643 | return nullptr; |
| 2644 | SEHTrySuccessor = Block; |
| 2645 | } else SEHTrySuccessor = Succ; |
| 2646 | |
| 2647 | // FIXME: Implement __finally support. |
| 2648 | if (Terminator->getFinallyHandler()) |
| 2649 | return NYS(); |
| 2650 | |
| 2651 | CFGBlock *PrevSEHTryTerminatedBlock = TryTerminatedBlock; |
| 2652 | |
| 2653 | // Create a new block that will contain the __try statement. |
| 2654 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
| 2655 | |
| 2656 | // Add the terminator in the __try block. |
| 2657 | NewTryTerminatedBlock->setTerminator(Terminator); |
| 2658 | |
| 2659 | if (SEHExceptStmt *Except = Terminator->getExceptHandler()) { |
| 2660 | // The code after the try is the implicit successor if there's an __except. |
| 2661 | Succ = SEHTrySuccessor; |
| 2662 | Block = nullptr; |
| 2663 | CFGBlock *ExceptBlock = VisitSEHExceptStmt(Except); |
| 2664 | if (!ExceptBlock) |
| 2665 | return nullptr; |
| 2666 | // Add this block to the list of successors for the block with the try |
| 2667 | // statement. |
| 2668 | addSuccessor(NewTryTerminatedBlock, ExceptBlock); |
| 2669 | } |
| 2670 | if (PrevSEHTryTerminatedBlock) |
| 2671 | addSuccessor(NewTryTerminatedBlock, PrevSEHTryTerminatedBlock); |
| 2672 | else |
| 2673 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
| 2674 | |
| 2675 | // The code after the try is the implicit successor. |
| 2676 | Succ = SEHTrySuccessor; |
| 2677 | |
| 2678 | // Save the current "__try" context. |
| 2679 | SaveAndRestore<CFGBlock *> save_try(TryTerminatedBlock, |
| 2680 | NewTryTerminatedBlock); |
| 2681 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
| 2682 | |
| 2683 | // Save the current value for the __leave target. |
| 2684 | // All __leaves should go to the code following the __try |
| 2685 | // (FIXME: or if the __try has a __finally, to the __finally.) |
| 2686 | SaveAndRestore<JumpTarget> save_break(SEHLeaveJumpTarget); |
| 2687 | SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos); |
| 2688 | |
| 2689 | assert(Terminator->getTryBlock() && "__try must contain a non-NULL body"); |
| 2690 | Block = nullptr; |
| 2691 | return addStmt(Terminator->getTryBlock()); |
| 2692 | } |
| 2693 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2694 | CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2695 | // Get the block of the labeled statement. Add it to our map. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2696 | addStmt(L->getSubStmt()); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 2697 | CFGBlock *LabelBlock = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2698 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2699 | if (!LabelBlock) // This can happen when the body is empty, i.e. |
| 2700 | LabelBlock = createBlock(); // scopes that only contains NullStmts. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2701 | |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 2702 | assert(LabelMap.find(L->getDecl()) == LabelMap.end() && |
| 2703 | "label already in map"); |
| 2704 | LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2705 | |
| 2706 | // Labels partition blocks, so this is the end of the basic block we were |
| 2707 | // processing (L is the block's label). Because this is label (and we have |
| 2708 | // already processed the substatement) there is no extra control-flow to worry |
| 2709 | // about. |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 2710 | LabelBlock->setLabel(L); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2711 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2712 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2713 | |
| 2714 | // We set Block to NULL to allow lazy creation of a new block (if necessary); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2715 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2716 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2717 | // This block is now the implicit successor of other blocks. |
| 2718 | Succ = LabelBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2719 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2720 | return LabelBlock; |
| 2721 | } |
| 2722 | |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 2723 | CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) { |
| 2724 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 2725 | for (const BlockDecl::Capture &CI : E->getBlockDecl()->captures()) { |
| 2726 | if (Expr *CopyExpr = CI.getCopyExpr()) { |
| 2727 | CFGBlock *Tmp = Visit(CopyExpr); |
| 2728 | if (Tmp) |
| 2729 | LastBlock = Tmp; |
| 2730 | } |
| 2731 | } |
| 2732 | return LastBlock; |
| 2733 | } |
| 2734 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 2735 | CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) { |
| 2736 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 2737 | for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(), |
| 2738 | et = E->capture_init_end(); it != et; ++it) { |
| 2739 | if (Expr *Init = *it) { |
| 2740 | CFGBlock *Tmp = Visit(Init); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2741 | if (Tmp) |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 2742 | LastBlock = Tmp; |
| 2743 | } |
| 2744 | } |
| 2745 | return LastBlock; |
| 2746 | } |
| 2747 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2748 | CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2749 | // Goto is a control-flow statement. Thus we stop processing the current |
| 2750 | // block and create a new one. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2751 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2752 | Block = createBlock(false); |
| 2753 | Block->setTerminator(G); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2754 | |
| 2755 | // If we already know the mapping to the label block add the successor now. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2756 | LabelMapTy::iterator I = LabelMap.find(G->getLabel()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2757 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2758 | if (I == LabelMap.end()) |
| 2759 | // We will need to backpatch this block later. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2760 | BackpatchBlocks.push_back(JumpSource(Block, ScopePos)); |
| 2761 | else { |
| 2762 | JumpTarget JT = I->second; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2763 | addAutomaticObjHandling(ScopePos, JT.scopePosition, G); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2764 | addSuccessor(Block, JT.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2765 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2766 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2767 | return Block; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2768 | } |
| 2769 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2770 | CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2771 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2772 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 2773 | // Save local scope position because in case of condition variable ScopePos |
| 2774 | // won't be restored when traversing AST. |
| 2775 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2776 | |
| 2777 | // Create local scope for init statement and possible condition variable. |
| 2778 | // Add destructor for init statement and condition variable. |
| 2779 | // Store scope position for continue statement. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2780 | if (Stmt *Init = F->getInit()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 2781 | addLocalScopeForStmt(Init); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2782 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
| 2783 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2784 | if (VarDecl *VD = F->getConditionVariable()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 2785 | addLocalScopeForVarDecl(VD); |
| 2786 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 2787 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2788 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), F); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 2789 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 2790 | addLoopExit(F); |
| 2791 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 2792 | // "for" is a control-flow statement. Thus we stop processing the current |
| 2793 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2794 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2795 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2796 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2797 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2798 | } else |
| 2799 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2800 | |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 2801 | // Save the current value for the break targets. |
| 2802 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2803 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 2804 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 2805 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2806 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2807 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2808 | // Now create the loop body. |
| 2809 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 2810 | assert(F->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2811 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2812 | // Save the current values for Block, Succ, continue and break targets. |
| 2813 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 2814 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2815 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2816 | // Create an empty block to represent the transition block for looping back |
| 2817 | // to the head of the loop. If we have increment code, it will |
| 2818 | // go in this block as well. |
| 2819 | Block = Succ = TransitionBlock = createBlock(false); |
| 2820 | TransitionBlock->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2821 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2822 | if (Stmt *I = F->getInc()) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2823 | // Generate increment code in its own basic block. This is the target of |
| 2824 | // continue statements. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2825 | Succ = addStmt(I); |
Ted Kremenek | b0746ca | 2008-09-04 21:48:47 +0000 | [diff] [blame] | 2826 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2827 | |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 2828 | // Finish up the increment (or empty) block if it hasn't been already. |
| 2829 | if (Block) { |
| 2830 | assert(Block == Succ); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2831 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2832 | return nullptr; |
| 2833 | Block = nullptr; |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 2834 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2835 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2836 | // The starting block for the loop increment is the block that should |
| 2837 | // represent the 'loop target' for looping back to the start of the loop. |
| 2838 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 2839 | ContinueJumpTarget.block->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2840 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2841 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2842 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, F); |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 2843 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 2844 | // If body is not a compound statement create implicit scope |
| 2845 | // and add destructors. |
| 2846 | if (!isa<CompoundStmt>(F->getBody())) |
| 2847 | addLocalScopeAndDtors(F->getBody()); |
| 2848 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2849 | // Now populate the body block, and in the process create new blocks as we |
| 2850 | // walk the body of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2851 | BodyBlock = addStmt(F->getBody()); |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 2852 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2853 | if (!BodyBlock) { |
| 2854 | // In the case of "for (...;...;...);" we can have a null BodyBlock. |
| 2855 | // Use the continue jump target as the proxy for the body. |
| 2856 | BodyBlock = ContinueJumpTarget.block; |
| 2857 | } |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2858 | else if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2859 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2860 | } |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2861 | |
| 2862 | // Because of short-circuit evaluation, the condition of the loop can span |
| 2863 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 2864 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2865 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2866 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2867 | do { |
| 2868 | Expr *C = F->getCond(); |
| 2869 | |
| 2870 | // Specially handle logical operators, which have a slightly |
| 2871 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 2872 | if (BinaryOperator *Cond = |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2873 | dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : nullptr)) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2874 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 2875 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2876 | VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor); |
| 2877 | break; |
| 2878 | } |
| 2879 | |
| 2880 | // The default case when not handling logical operators. |
| 2881 | EntryConditionBlock = ExitConditionBlock = createBlock(false); |
| 2882 | ExitConditionBlock->setTerminator(F); |
| 2883 | |
| 2884 | // See if this is a known constant. |
| 2885 | TryResult KnownVal(true); |
| 2886 | |
| 2887 | if (C) { |
| 2888 | // Now add the actual condition to the condition block. |
| 2889 | // Because the condition itself may contain control-flow, new blocks may |
| 2890 | // be created. Thus we update "Succ" after adding the condition. |
| 2891 | Block = ExitConditionBlock; |
| 2892 | EntryConditionBlock = addStmt(C); |
| 2893 | |
| 2894 | // If this block contains a condition variable, add both the condition |
| 2895 | // variable and initializer to the CFG. |
| 2896 | if (VarDecl *VD = F->getConditionVariable()) { |
| 2897 | if (Expr *Init = VD->getInit()) { |
| 2898 | autoCreateBlock(); |
| 2899 | appendStmt(Block, F->getConditionVariableDeclStmt()); |
| 2900 | EntryConditionBlock = addStmt(Init); |
| 2901 | assert(Block == EntryConditionBlock); |
| 2902 | } |
| 2903 | } |
| 2904 | |
| 2905 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2906 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2907 | |
| 2908 | KnownVal = tryEvaluateBool(C); |
| 2909 | } |
| 2910 | |
| 2911 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2912 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2913 | // Link up the condition block with the code that follows the loop. (the |
| 2914 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2915 | addSuccessor(ExitConditionBlock, |
| 2916 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2917 | } while (false); |
| 2918 | |
| 2919 | // Link up the loop-back block to the entry condition block. |
| 2920 | addSuccessor(TransitionBlock, EntryConditionBlock); |
| 2921 | |
| 2922 | // The condition block is the implicit successor for any code above the loop. |
| 2923 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2924 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2925 | // If the loop contains initialization, create a new block for those |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2926 | // statements. This block can also contain statements that precede the loop. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2927 | if (Stmt *I = F->getInit()) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2928 | Block = createBlock(); |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2929 | return addStmt(I); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2930 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2931 | |
| 2932 | // There is no loop initialization. We are thus basically a while loop. |
| 2933 | // NULL out Block to force lazy block construction. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2934 | Block = nullptr; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2935 | Succ = EntryConditionBlock; |
| 2936 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2937 | } |
| 2938 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2939 | CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2940 | if (asc.alwaysAdd(*this, M)) { |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2941 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2942 | appendStmt(Block, M); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2943 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2944 | return Visit(M->getBase()); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2945 | } |
| 2946 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2947 | CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2948 | // Objective-C fast enumeration 'for' statements: |
| 2949 | // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC |
| 2950 | // |
| 2951 | // for ( Type newVariable in collection_expression ) { statements } |
| 2952 | // |
| 2953 | // becomes: |
| 2954 | // |
| 2955 | // prologue: |
| 2956 | // 1. collection_expression |
| 2957 | // T. jump to loop_entry |
| 2958 | // loop_entry: |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2959 | // 1. side-effects of element expression |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2960 | // 1. ObjCForCollectionStmt [performs binding to newVariable] |
| 2961 | // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil] |
| 2962 | // TB: |
| 2963 | // statements |
| 2964 | // T. jump to loop_entry |
| 2965 | // FB: |
| 2966 | // what comes after |
| 2967 | // |
| 2968 | // and |
| 2969 | // |
| 2970 | // Type existingItem; |
| 2971 | // for ( existingItem in expression ) { statements } |
| 2972 | // |
| 2973 | // becomes: |
| 2974 | // |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2975 | // the same with newVariable replaced with existingItem; the binding works |
| 2976 | // the same except that for one ObjCForCollectionStmt::getElement() returns |
| 2977 | // a DeclStmt and the other returns a DeclRefExpr. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2978 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2979 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2980 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2981 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2982 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2983 | return nullptr; |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 2984 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2985 | Block = nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2986 | } else |
| 2987 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2988 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2989 | // Build the condition blocks. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2990 | CFGBlock *ExitConditionBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2991 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2992 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2993 | ExitConditionBlock->setTerminator(S); |
| 2994 | |
| 2995 | // The last statement in the block should be the ObjCForCollectionStmt, which |
| 2996 | // performs the actual binding to 'element' and determines if there are any |
| 2997 | // more items in the collection. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2998 | appendStmt(ExitConditionBlock, S); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 2999 | Block = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3000 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3001 | // Walk the 'element' expression to see if there are any side-effects. We |
Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 3002 | // generate new blocks as necessary. We DON'T add the statement by default to |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3003 | // the CFG unless it contains control-flow. |
Ted Kremenek | c14efa7 | 2011-08-17 21:04:19 +0000 | [diff] [blame] | 3004 | CFGBlock *EntryConditionBlock = Visit(S->getElement(), |
| 3005 | AddStmtChoice::NotAlwaysAdd); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3006 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3007 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3008 | return nullptr; |
| 3009 | Block = nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3010 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3011 | |
| 3012 | // The condition block is the implicit successor for the loop body as well as |
| 3013 | // any code above the loop. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3014 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3015 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3016 | // Now create the true branch. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3017 | { |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3018 | // Save the current values for Succ, continue and break targets. |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3019 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3020 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3021 | save_break(BreakJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3022 | |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3023 | // Add an intermediate block between the BodyBlock and the |
| 3024 | // EntryConditionBlock to represent the "loop back" transition, for looping |
| 3025 | // back to the head of the loop. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3026 | CFGBlock *LoopBackBlock = nullptr; |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3027 | Succ = LoopBackBlock = createBlock(); |
| 3028 | LoopBackBlock->setLoopTarget(S); |
| 3029 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3030 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3031 | ContinueJumpTarget = JumpTarget(Succ, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3032 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3033 | CFGBlock *BodyBlock = addStmt(S->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3034 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3035 | if (!BodyBlock) |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3036 | BodyBlock = ContinueJumpTarget.block; // can happen for "for (X in Y) ;" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3037 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3038 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3039 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3040 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3041 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3042 | // This new body block is a successor to our "exit" condition block. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3043 | addSuccessor(ExitConditionBlock, BodyBlock); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3044 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3045 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3046 | // Link up the condition block with the code that follows the loop. |
| 3047 | // (the false branch). |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3048 | addSuccessor(ExitConditionBlock, LoopSuccessor); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3049 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3050 | // Now create a prologue block to contain the collection expression. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3051 | Block = createBlock(); |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3052 | return addStmt(S->getCollection()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3053 | } |
| 3054 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 3055 | CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) { |
| 3056 | // Inline the body. |
| 3057 | return addStmt(S->getSubStmt()); |
| 3058 | // TODO: consider adding cleanups for the end of @autoreleasepool scope. |
| 3059 | } |
| 3060 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3061 | CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) { |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3062 | // FIXME: Add locking 'primitives' to CFG for @synchronized. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3063 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3064 | // Inline the body. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3065 | CFGBlock *SyncBlock = addStmt(S->getSynchBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3066 | |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3067 | // The sync body starts its own basic block. This makes it a little easier |
| 3068 | // for diagnostic clients. |
| 3069 | if (SyncBlock) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3070 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3071 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3072 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3073 | Block = nullptr; |
Ted Kremenek | ecc31c9 | 2010-05-13 16:38:08 +0000 | [diff] [blame] | 3074 | Succ = SyncBlock; |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3075 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3076 | |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3077 | // Add the @synchronized to the CFG. |
| 3078 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3079 | appendStmt(Block, S); |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3080 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3081 | // Inline the sync expression. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3082 | return addStmt(S->getSynchExpr()); |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3083 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3084 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3085 | CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3086 | // FIXME |
Ted Kremenek | 89be652 | 2009-04-07 04:26:02 +0000 | [diff] [blame] | 3087 | return NYS(); |
Ted Kremenek | 89cc8ea | 2009-03-30 22:29:21 +0000 | [diff] [blame] | 3088 | } |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3089 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3090 | CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) { |
| 3091 | autoCreateBlock(); |
| 3092 | |
| 3093 | // Add the PseudoObject as the last thing. |
| 3094 | appendStmt(Block, E); |
| 3095 | |
| 3096 | CFGBlock *lastBlock = Block; |
| 3097 | |
| 3098 | // Before that, evaluate all of the semantics in order. In |
| 3099 | // CFG-land, that means appending them in reverse order. |
| 3100 | for (unsigned i = E->getNumSemanticExprs(); i != 0; ) { |
| 3101 | Expr *Semantic = E->getSemanticExpr(--i); |
| 3102 | |
| 3103 | // If the semantic is an opaque value, we're being asked to bind |
| 3104 | // it to its source expression. |
| 3105 | if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic)) |
| 3106 | Semantic = OVE->getSourceExpr(); |
| 3107 | |
| 3108 | if (CFGBlock *B = Visit(Semantic)) |
| 3109 | lastBlock = B; |
| 3110 | } |
| 3111 | |
| 3112 | return lastBlock; |
| 3113 | } |
| 3114 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3115 | CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3116 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3117 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3118 | // Save local scope position because in case of condition variable ScopePos |
| 3119 | // won't be restored when traversing AST. |
| 3120 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3121 | |
| 3122 | // Create local scope for possible condition variable. |
| 3123 | // Store scope position for continue statement. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3124 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3125 | if (VarDecl *VD = W->getConditionVariable()) { |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3126 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3127 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3128 | } |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3129 | addLoopExit(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3130 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 3131 | // "while" is a control-flow statement. Thus we stop processing the current |
| 3132 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3133 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3134 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3135 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3136 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3137 | Block = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3138 | } else { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3139 | LoopSuccessor = Succ; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3140 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3141 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3142 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3143 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3144 | // Process the loop body. |
| 3145 | { |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3146 | assert(W->getBody()); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3147 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3148 | // Save the current values for Block, Succ, continue and break targets. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3149 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3150 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3151 | save_break(BreakJumpTarget); |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3152 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3153 | // Create an empty block to represent the transition block for looping back |
| 3154 | // to the head of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3155 | Succ = TransitionBlock = createBlock(false); |
| 3156 | TransitionBlock->setLoopTarget(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3157 | ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3158 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3159 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3160 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3161 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3162 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3163 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3164 | |
| 3165 | // If body is not a compound statement create implicit scope |
| 3166 | // and add destructors. |
| 3167 | if (!isa<CompoundStmt>(W->getBody())) |
| 3168 | addLocalScopeAndDtors(W->getBody()); |
| 3169 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3170 | // Create the body. The returned block is the entry to the loop body. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3171 | BodyBlock = addStmt(W->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3172 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3173 | if (!BodyBlock) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3174 | BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;" |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3175 | else if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3176 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3177 | } |
| 3178 | |
| 3179 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3180 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3181 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3182 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3183 | |
| 3184 | do { |
| 3185 | Expr *C = W->getCond(); |
| 3186 | |
| 3187 | // Specially handle logical operators, which have a slightly |
| 3188 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3189 | if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens())) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3190 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 3191 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
| 3192 | VisitLogicalOperator(Cond, W, BodyBlock, LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3193 | break; |
| 3194 | } |
| 3195 | |
| 3196 | // The default case when not handling logical operators. |
Ted Kremenek | 451c4d5 | 2012-10-12 22:56:26 +0000 | [diff] [blame] | 3197 | ExitConditionBlock = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3198 | ExitConditionBlock->setTerminator(W); |
| 3199 | |
| 3200 | // Now add the actual condition to the condition block. |
| 3201 | // Because the condition itself may contain control-flow, new blocks may |
| 3202 | // be created. Thus we update "Succ" after adding the condition. |
| 3203 | Block = ExitConditionBlock; |
| 3204 | Block = EntryConditionBlock = addStmt(C); |
| 3205 | |
| 3206 | // If this block contains a condition variable, add both the condition |
| 3207 | // variable and initializer to the CFG. |
| 3208 | if (VarDecl *VD = W->getConditionVariable()) { |
| 3209 | if (Expr *Init = VD->getInit()) { |
| 3210 | autoCreateBlock(); |
| 3211 | appendStmt(Block, W->getConditionVariableDeclStmt()); |
| 3212 | EntryConditionBlock = addStmt(Init); |
| 3213 | assert(Block == EntryConditionBlock); |
| 3214 | } |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3215 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3216 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3217 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3218 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3219 | |
| 3220 | // See if this is a known constant. |
| 3221 | const TryResult& KnownVal = tryEvaluateBool(C); |
| 3222 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3223 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3224 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3225 | // Link up the condition block with the code that follows the loop. (the |
| 3226 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3227 | addSuccessor(ExitConditionBlock, |
| 3228 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3229 | } while(false); |
| 3230 | |
| 3231 | // Link up the loop-back block to the entry condition block. |
| 3232 | addSuccessor(TransitionBlock, EntryConditionBlock); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3233 | |
| 3234 | // There can be no more statements in the condition block since we loop back |
| 3235 | // to this block. NULL out Block to force lazy creation of another block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3236 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3237 | |
Ted Kremenek | 1ce53c4 | 2009-12-24 01:34:10 +0000 | [diff] [blame] | 3238 | // Return the condition block, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3239 | Succ = EntryConditionBlock; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3240 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3241 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3242 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3243 | CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3244 | // FIXME: For now we pretend that @catch and the code it contains does not |
| 3245 | // exit. |
| 3246 | return Block; |
| 3247 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3248 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3249 | CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3250 | // FIXME: This isn't complete. We basically treat @throw like a return |
| 3251 | // statement. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3252 | |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3253 | // If we were in the middle of a block we stop processing that block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3254 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3255 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3256 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3257 | // Create the new block. |
| 3258 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3259 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3260 | // The Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3261 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3262 | |
| 3263 | // Add the statement to the block. This may create new blocks if S contains |
| 3264 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3265 | return VisitStmt(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3266 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3267 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3268 | CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3269 | // If we were in the middle of a block we stop processing that block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3270 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3271 | return nullptr; |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3272 | |
| 3273 | // Create the new block. |
| 3274 | Block = createBlock(false); |
| 3275 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3276 | if (TryTerminatedBlock) |
| 3277 | // The current try statement is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3278 | addSuccessor(Block, TryTerminatedBlock); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3279 | else |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3280 | // otherwise the Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3281 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3282 | |
| 3283 | // Add the statement to the block. This may create new blocks if S contains |
| 3284 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3285 | return VisitStmt(T, AddStmtChoice::AlwaysAdd); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3286 | } |
| 3287 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3288 | CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3289 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3290 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3291 | addLoopExit(D); |
| 3292 | |
Mike Stump | 8d50b6a | 2009-07-21 01:27:50 +0000 | [diff] [blame] | 3293 | // "do...while" is a control-flow statement. Thus we stop processing the |
| 3294 | // current block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3295 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3296 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3297 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3298 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3299 | } else |
| 3300 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3301 | |
| 3302 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3303 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3304 | // evaluate the condition. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3305 | CFGBlock *ExitConditionBlock = createBlock(false); |
| 3306 | CFGBlock *EntryConditionBlock = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3307 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3308 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3309 | ExitConditionBlock->setTerminator(D); |
| 3310 | |
| 3311 | // Now add the actual condition to the condition block. Because the condition |
| 3312 | // itself may contain control-flow, new blocks may be created. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3313 | if (Stmt *C = D->getCond()) { |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3314 | Block = ExitConditionBlock; |
| 3315 | EntryConditionBlock = addStmt(C); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3316 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3317 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3318 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3319 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3320 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3321 | |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3322 | // The condition block is the implicit successor for the loop body. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3323 | Succ = EntryConditionBlock; |
| 3324 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3325 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3326 | const TryResult &KnownVal = tryEvaluateBool(D->getCond()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3327 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3328 | // Process the loop body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3329 | CFGBlock *BodyBlock = nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3330 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3331 | assert(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3332 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3333 | // Save the current values for Block, Succ, and continue and break targets |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3334 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3335 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
| 3336 | save_break(BreakJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3337 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3338 | // All continues within this loop should go to the condition block |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3339 | ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3340 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3341 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3342 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3343 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3344 | // NULL out Block to force lazy instantiation of blocks for the body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3345 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3346 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3347 | // If body is not a compound statement create implicit scope |
| 3348 | // and add destructors. |
| 3349 | if (!isa<CompoundStmt>(D->getBody())) |
| 3350 | addLocalScopeAndDtors(D->getBody()); |
| 3351 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3352 | // Create the body. The returned block is the entry to the loop body. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3353 | BodyBlock = addStmt(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3354 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3355 | if (!BodyBlock) |
Ted Kremenek | 39321aa | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 3356 | BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3357 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3358 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3359 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3360 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3361 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3362 | // Add an intermediate block between the BodyBlock and the |
| 3363 | // ExitConditionBlock to represent the "loop back" transition. Create an |
| 3364 | // empty block to represent the transition block for looping back to the |
| 3365 | // head of the loop. |
| 3366 | // FIXME: Can we do this more efficiently without adding another block? |
| 3367 | Block = nullptr; |
| 3368 | Succ = BodyBlock; |
| 3369 | CFGBlock *LoopBackBlock = createBlock(); |
| 3370 | LoopBackBlock->setLoopTarget(D); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3371 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3372 | if (!KnownVal.isFalse()) |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3373 | // Add the loop body entry as a successor to the condition. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3374 | addSuccessor(ExitConditionBlock, LoopBackBlock); |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3375 | else |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3376 | addSuccessor(ExitConditionBlock, nullptr); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3377 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3378 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3379 | // Link up the condition block with the code that follows the loop. |
| 3380 | // (the false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3381 | addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3382 | |
| 3383 | // There can be no more statements in the body block(s) since we loop back to |
| 3384 | // the body. NULL out Block to force lazy creation of another block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3385 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3386 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3387 | // Return the loop body, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3388 | Succ = BodyBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3389 | return BodyBlock; |
| 3390 | } |
| 3391 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3392 | CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3393 | // "continue" is a control-flow statement. Thus we stop processing the |
| 3394 | // current block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3395 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3396 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3397 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3398 | // Now create a new block that ends with the continue statement. |
| 3399 | Block = createBlock(false); |
| 3400 | Block->setTerminator(C); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3401 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3402 | // If there is no target for the continue, then we are looking at an |
Ted Kremenek | 882cf06 | 2009-04-07 18:53:24 +0000 | [diff] [blame] | 3403 | // incomplete AST. This means the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3404 | if (ContinueJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3405 | addAutomaticObjHandling(ScopePos, ContinueJumpTarget.scopePosition, C); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3406 | addSuccessor(Block, ContinueJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3407 | } else |
Ted Kremenek | 882cf06 | 2009-04-07 18:53:24 +0000 | [diff] [blame] | 3408 | badCFG = true; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3409 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3410 | return Block; |
| 3411 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3412 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3413 | CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 3414 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3415 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3416 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3417 | appendStmt(Block, E); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3418 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3419 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3420 | // VLA types have expressions that must be evaluated. |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3421 | CFGBlock *lastBlock = Block; |
| 3422 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3423 | if (E->isArgumentType()) { |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 3424 | for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3425 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3426 | lastBlock = addStmt(VA->getSizeExpr()); |
Ted Kremenek | 84a1ca5 | 2011-08-06 00:30:00 +0000 | [diff] [blame] | 3427 | } |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3428 | return lastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3429 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3430 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3431 | /// VisitStmtExpr - Utility method to handle (nested) statement |
| 3432 | /// expressions (a GCC extension). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3433 | CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3434 | if (asc.alwaysAdd(*this, SE)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3435 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3436 | appendStmt(Block, SE); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3437 | } |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3438 | return VisitCompoundStmt(SE->getSubStmt()); |
| 3439 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3440 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3441 | CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3442 | // "switch" is a control-flow statement. Thus we stop processing the current |
| 3443 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3444 | CFGBlock *SwitchSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3445 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3446 | // Save local scope position because in case of condition variable ScopePos |
| 3447 | // won't be restored when traversing AST. |
| 3448 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3449 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3450 | // Create local scope for C++17 switch init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3451 | if (Stmt *Init = Terminator->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3452 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3453 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3454 | // Create local scope for possible condition variable. |
| 3455 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3456 | if (VarDecl *VD = Terminator->getConditionVariable()) |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3457 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3458 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3459 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), Terminator); |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3460 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3461 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3462 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3463 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3464 | SwitchSuccessor = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3465 | } else SwitchSuccessor = Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3466 | |
| 3467 | // Save the current "switch" context. |
| 3468 | SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock), |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3469 | save_default(DefaultCaseBlock); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3470 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3471 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3472 | // Set the "default" case to be the block after the switch statement. If the |
| 3473 | // switch statement contains a "default:", this value will be overwritten with |
| 3474 | // the block for that code. |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3475 | DefaultCaseBlock = SwitchSuccessor; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3476 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3477 | // Create a new block that will contain the switch statement. |
| 3478 | SwitchTerminatedBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3479 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3480 | // Now process the switch body. The code after the switch is the implicit |
| 3481 | // successor. |
| 3482 | Succ = SwitchSuccessor; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3483 | BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3484 | |
| 3485 | // When visiting the body, the case statements should automatically get linked |
| 3486 | // up to the switch. We also don't keep a pointer to the body, since all |
| 3487 | // control-flow from the switch goes to case/default statements. |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3488 | assert(Terminator->getBody() && "switch must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3489 | Block = nullptr; |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3490 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3491 | // For pruning unreachable case statements, save the current state |
| 3492 | // for tracking the condition value. |
| 3493 | SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered, |
| 3494 | false); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3495 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3496 | // Determine if the switch condition can be explicitly evaluated. |
| 3497 | assert(Terminator->getCond() && "switch condition must be non-NULL"); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3498 | Expr::EvalResult result; |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3499 | bool b = tryEvaluate(Terminator->getCond(), result); |
| 3500 | SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond, |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3501 | b ? &result : nullptr); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3502 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3503 | // If body is not a compound statement create implicit scope |
| 3504 | // and add destructors. |
| 3505 | if (!isa<CompoundStmt>(Terminator->getBody())) |
| 3506 | addLocalScopeAndDtors(Terminator->getBody()); |
| 3507 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3508 | addStmt(Terminator->getBody()); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3509 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3510 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3511 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3512 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3513 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3514 | // If we have no "default:" case, the default transition is to the code |
Ted Kremenek | 35c70f6 | 2011-03-16 04:32:01 +0000 | [diff] [blame] | 3515 | // following the switch body. Moreover, take into account if all the |
| 3516 | // cases of a switch are covered (e.g., switching on an enum value). |
David Majnemer | f69ce86 | 2013-06-04 17:38:44 +0000 | [diff] [blame] | 3517 | // |
| 3518 | // Note: We add a successor to a switch that is considered covered yet has no |
| 3519 | // case statements if the enumeration has no enumerators. |
| 3520 | bool SwitchAlwaysHasSuccessor = false; |
| 3521 | SwitchAlwaysHasSuccessor |= switchExclusivelyCovered; |
| 3522 | SwitchAlwaysHasSuccessor |= Terminator->isAllEnumCasesCovered() && |
| 3523 | Terminator->getSwitchCaseList(); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3524 | addSuccessor(SwitchTerminatedBlock, DefaultCaseBlock, |
| 3525 | !SwitchAlwaysHasSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3526 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3527 | // Add the terminator and condition in the switch block. |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3528 | SwitchTerminatedBlock->setTerminator(Terminator); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3529 | Block = SwitchTerminatedBlock; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3530 | CFGBlock *LastBlock = addStmt(Terminator->getCond()); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3531 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3532 | // If the SwitchStmt contains a condition variable, add both the |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 3533 | // SwitchStmt and the condition variable initialization to the CFG. |
| 3534 | if (VarDecl *VD = Terminator->getConditionVariable()) { |
| 3535 | if (Expr *Init = VD->getInit()) { |
| 3536 | autoCreateBlock(); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 3537 | appendStmt(Block, Terminator->getConditionVariableDeclStmt()); |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3538 | LastBlock = addStmt(Init); |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 3539 | } |
| 3540 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3541 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3542 | // Finally, if the SwitchStmt contains a C++17 init-stmt, add it to the CFG. |
| 3543 | if (Stmt *Init = Terminator->getInit()) { |
| 3544 | autoCreateBlock(); |
| 3545 | LastBlock = addStmt(Init); |
| 3546 | } |
| 3547 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3548 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3549 | } |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3550 | |
| 3551 | static bool shouldAddCase(bool &switchExclusivelyCovered, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3552 | const Expr::EvalResult *switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3553 | const CaseStmt *CS, |
| 3554 | ASTContext &Ctx) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3555 | if (!switchCond) |
| 3556 | return true; |
| 3557 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3558 | bool addCase = false; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3559 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3560 | if (!switchExclusivelyCovered) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3561 | if (switchCond->Val.isInt()) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3562 | // Evaluate the LHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 3563 | const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx); |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3564 | const llvm::APSInt &condInt = switchCond->Val.getInt(); |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3565 | |
| 3566 | if (condInt == lhsInt) { |
| 3567 | addCase = true; |
| 3568 | switchExclusivelyCovered = true; |
| 3569 | } |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 3570 | else if (condInt > lhsInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3571 | if (const Expr *RHS = CS->getRHS()) { |
| 3572 | // Evaluate the RHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 3573 | const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx); |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 3574 | if (V2 >= condInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3575 | addCase = true; |
| 3576 | switchExclusivelyCovered = true; |
| 3577 | } |
| 3578 | } |
| 3579 | } |
| 3580 | } |
| 3581 | else |
| 3582 | addCase = true; |
| 3583 | } |
| 3584 | return addCase; |
| 3585 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3586 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3587 | CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3588 | // CaseStmts are essentially labels, so they are the first statement in a |
| 3589 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3590 | CFGBlock *TopBlock = nullptr, *LastBlock = nullptr; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3591 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3592 | if (Stmt *Sub = CS->getSubStmt()) { |
| 3593 | // For deeply nested chains of CaseStmts, instead of doing a recursion |
| 3594 | // (which can blow out the stack), manually unroll and create blocks |
| 3595 | // along the way. |
| 3596 | while (isa<CaseStmt>(Sub)) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3597 | CFGBlock *currentBlock = createBlock(false); |
| 3598 | currentBlock->setLabel(CS); |
Ted Kremenek | 55e91e8 | 2007-08-30 18:48:11 +0000 | [diff] [blame] | 3599 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3600 | if (TopBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3601 | addSuccessor(LastBlock, currentBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3602 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3603 | TopBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3604 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3605 | addSuccessor(SwitchTerminatedBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3606 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3607 | CS, *Context) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3608 | ? currentBlock : nullptr); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3609 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3610 | LastBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3611 | CS = cast<CaseStmt>(Sub); |
| 3612 | Sub = CS->getSubStmt(); |
| 3613 | } |
| 3614 | |
| 3615 | addStmt(Sub); |
| 3616 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3617 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3618 | CFGBlock *CaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3619 | if (!CaseBlock) |
| 3620 | CaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3621 | |
| 3622 | // Cases statements partition blocks, so this is the top of the basic block we |
| 3623 | // were processing (the "case XXX:" is the label). |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3624 | CaseBlock->setLabel(CS); |
| 3625 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3626 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3627 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3628 | |
| 3629 | // Add this block to the list of successors for the block with the switch |
| 3630 | // statement. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3631 | assert(SwitchTerminatedBlock); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3632 | addSuccessor(SwitchTerminatedBlock, CaseBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3633 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3634 | CS, *Context)); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3635 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3636 | // We set Block to NULL to allow lazy creation of a new block (if necessary) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3637 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3638 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3639 | if (TopBlock) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3640 | addSuccessor(LastBlock, CaseBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3641 | Succ = TopBlock; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3642 | } else { |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3643 | // This block is now the implicit successor of other blocks. |
| 3644 | Succ = CaseBlock; |
| 3645 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3646 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3647 | return Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3648 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3649 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3650 | CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3651 | if (Terminator->getSubStmt()) |
| 3652 | addStmt(Terminator->getSubStmt()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3653 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3654 | DefaultCaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3655 | |
| 3656 | if (!DefaultCaseBlock) |
| 3657 | DefaultCaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3658 | |
| 3659 | // Default statements partition blocks, so this is the top of the basic block |
| 3660 | // we were processing (the "default:" is the label). |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3661 | DefaultCaseBlock->setLabel(Terminator); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3662 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3663 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3664 | return nullptr; |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3665 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3666 | // Unlike case statements, we don't add the default block to the successors |
| 3667 | // for the switch statement immediately. This is done when we finish |
| 3668 | // processing the switch statement. This allows for the default case |
| 3669 | // (including a fall-through to the code after the switch statement) to always |
| 3670 | // be the last successor of a switch-terminated block. |
| 3671 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3672 | // We set Block to NULL to allow lazy creation of a new block (if necessary) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3673 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3674 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3675 | // This block is now the implicit successor of other blocks. |
| 3676 | Succ = DefaultCaseBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3677 | |
| 3678 | return DefaultCaseBlock; |
Ted Kremenek | 9682be1 | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 3679 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3680 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3681 | CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) { |
| 3682 | // "try"/"catch" is a control-flow statement. Thus we stop processing the |
| 3683 | // current block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3684 | CFGBlock *TrySuccessor = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3685 | |
| 3686 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3687 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3688 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3689 | TrySuccessor = Block; |
| 3690 | } else TrySuccessor = Succ; |
| 3691 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3692 | CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3693 | |
| 3694 | // Create a new block that will contain the try statement. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 3695 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3696 | // Add the terminator in the try block. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 3697 | NewTryTerminatedBlock->setTerminator(Terminator); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3698 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3699 | bool HasCatchAll = false; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3700 | for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) { |
| 3701 | // The code after the try is the implicit successor. |
| 3702 | Succ = TrySuccessor; |
| 3703 | CXXCatchStmt *CS = Terminator->getHandler(h); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3704 | if (CS->getExceptionDecl() == nullptr) { |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3705 | HasCatchAll = true; |
| 3706 | } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3707 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3708 | CFGBlock *CatchBlock = VisitCXXCatchStmt(CS); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3709 | if (!CatchBlock) |
| 3710 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3711 | // Add this block to the list of successors for the block with the try |
| 3712 | // statement. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3713 | addSuccessor(NewTryTerminatedBlock, CatchBlock); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3714 | } |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3715 | if (!HasCatchAll) { |
| 3716 | if (PrevTryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3717 | addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3718 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3719 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3720 | } |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3721 | |
| 3722 | // The code after the try is the implicit successor. |
| 3723 | Succ = TrySuccessor; |
| 3724 | |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 3725 | // Save the current "try" context. |
Ted Kremenek | 6b9964d | 2011-08-23 23:05:07 +0000 | [diff] [blame] | 3726 | SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock); |
| 3727 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 3728 | |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3729 | assert(Terminator->getTryBlock() && "try must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3730 | Block = nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3731 | return addStmt(Terminator->getTryBlock()); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3732 | } |
| 3733 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3734 | CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3735 | // CXXCatchStmt are treated like labels, so they are the first statement in a |
| 3736 | // block. |
| 3737 | |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 3738 | // Save local scope position because in case of exception variable ScopePos |
| 3739 | // won't be restored when traversing AST. |
| 3740 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3741 | |
| 3742 | // Create local scope for possible exception variable. |
| 3743 | // Store scope position. Add implicit destructor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3744 | if (VarDecl *VD = CS->getExceptionDecl()) { |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 3745 | LocalScope::const_iterator BeginScopePos = ScopePos; |
| 3746 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3747 | addAutomaticObjHandling(ScopePos, BeginScopePos, CS); |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 3748 | } |
| 3749 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3750 | if (CS->getHandlerBlock()) |
| 3751 | addStmt(CS->getHandlerBlock()); |
| 3752 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3753 | CFGBlock *CatchBlock = Block; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3754 | if (!CatchBlock) |
| 3755 | CatchBlock = createBlock(); |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 3756 | |
| 3757 | // CXXCatchStmt is more than just a label. They have semantic meaning |
| 3758 | // as well, as they implicitly "initialize" the catch variable. Add |
| 3759 | // it to the CFG as a CFGElement so that the control-flow of these |
| 3760 | // semantics gets captured. |
| 3761 | appendStmt(CatchBlock, CS); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3762 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 3763 | // Also add the CXXCatchStmt as a label, to mirror handling of regular |
| 3764 | // labels. |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3765 | CatchBlock->setLabel(CS); |
| 3766 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 3767 | // Bail out if the CFG is bad. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3768 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3769 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3770 | |
| 3771 | // We set Block to NULL to allow lazy creation of a new block (if necessary) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3772 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3773 | |
| 3774 | return CatchBlock; |
| 3775 | } |
| 3776 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3777 | CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) { |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3778 | // C++0x for-range statements are specified as [stmt.ranged]: |
| 3779 | // |
| 3780 | // { |
| 3781 | // auto && __range = range-init; |
| 3782 | // for ( auto __begin = begin-expr, |
| 3783 | // __end = end-expr; |
| 3784 | // __begin != __end; |
| 3785 | // ++__begin ) { |
| 3786 | // for-range-declaration = *__begin; |
| 3787 | // statement |
| 3788 | // } |
| 3789 | // } |
| 3790 | |
| 3791 | // Save local scope position before the addition of the implicit variables. |
| 3792 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3793 | |
| 3794 | // Create local scopes and destructors for range, begin and end variables. |
| 3795 | if (Stmt *Range = S->getRangeStmt()) |
| 3796 | addLocalScopeForStmt(Range); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 3797 | if (Stmt *Begin = S->getBeginStmt()) |
| 3798 | addLocalScopeForStmt(Begin); |
| 3799 | if (Stmt *End = S->getEndStmt()) |
| 3800 | addLocalScopeForStmt(End); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3801 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), S); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3802 | |
| 3803 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 3804 | |
| 3805 | // "for" is a control-flow statement. Thus we stop processing the current |
| 3806 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3807 | CFGBlock *LoopSuccessor = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3808 | if (Block) { |
| 3809 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3810 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3811 | LoopSuccessor = Block; |
| 3812 | } else |
| 3813 | LoopSuccessor = Succ; |
| 3814 | |
| 3815 | // Save the current value for the break targets. |
| 3816 | // All breaks should go to the code following the loop. |
| 3817 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
| 3818 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
| 3819 | |
| 3820 | // The block for the __begin != __end expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3821 | CFGBlock *ConditionBlock = createBlock(false); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3822 | ConditionBlock->setTerminator(S); |
| 3823 | |
| 3824 | // Now add the actual condition to the condition block. |
| 3825 | if (Expr *C = S->getCond()) { |
| 3826 | Block = ConditionBlock; |
| 3827 | CFGBlock *BeginConditionBlock = addStmt(C); |
| 3828 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3829 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3830 | assert(BeginConditionBlock == ConditionBlock && |
| 3831 | "condition block in for-range was unexpectedly complex"); |
| 3832 | (void)BeginConditionBlock; |
| 3833 | } |
| 3834 | |
| 3835 | // The condition block is the implicit successor for the loop body as well as |
| 3836 | // any code above the loop. |
| 3837 | Succ = ConditionBlock; |
| 3838 | |
| 3839 | // See if this is a known constant. |
| 3840 | TryResult KnownVal(true); |
| 3841 | |
| 3842 | if (S->getCond()) |
| 3843 | KnownVal = tryEvaluateBool(S->getCond()); |
| 3844 | |
| 3845 | // Now create the loop body. |
| 3846 | { |
| 3847 | assert(S->getBody()); |
| 3848 | |
| 3849 | // Save the current values for Block, Succ, and continue targets. |
| 3850 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3851 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
| 3852 | |
| 3853 | // Generate increment code in its own basic block. This is the target of |
| 3854 | // continue statements. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3855 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3856 | Succ = addStmt(S->getInc()); |
Alexander Kornienko | ff2046a | 2016-07-08 10:50:51 +0000 | [diff] [blame] | 3857 | if (badCFG) |
| 3858 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3859 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 3860 | |
| 3861 | // The starting block for the loop increment is the block that should |
| 3862 | // represent the 'loop target' for looping back to the start of the loop. |
| 3863 | ContinueJumpTarget.block->setLoopTarget(S); |
| 3864 | |
| 3865 | // Finish up the increment block and prepare to start the loop body. |
| 3866 | assert(Block); |
| 3867 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3868 | return nullptr; |
| 3869 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3870 | |
| 3871 | // Add implicit scope and dtors for loop variable. |
| 3872 | addLocalScopeAndDtors(S->getLoopVarStmt()); |
| 3873 | |
| 3874 | // Populate a new block to contain the loop body and loop variable. |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3875 | addStmt(S->getBody()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3876 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3877 | return nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3878 | CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3879 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3880 | return nullptr; |
| 3881 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3882 | // This new body block is a successor to our condition block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3883 | addSuccessor(ConditionBlock, |
| 3884 | KnownVal.isFalse() ? nullptr : LoopVarStmtBlock); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3885 | } |
| 3886 | |
| 3887 | // Link up the condition block with the code that follows the loop (the |
| 3888 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3889 | addSuccessor(ConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3890 | |
| 3891 | // Add the initialization statements. |
| 3892 | Block = createBlock(); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 3893 | addStmt(S->getBeginStmt()); |
| 3894 | addStmt(S->getEndStmt()); |
Richard Smith | 0c502d2 | 2011-04-18 15:49:25 +0000 | [diff] [blame] | 3895 | return addStmt(S->getRangeStmt()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 3896 | } |
| 3897 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 3898 | CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E, |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3899 | AddStmtChoice asc) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 3900 | if (BuildOpts.AddTemporaryDtors) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3901 | // If adding implicit destructors visit the full expression for adding |
| 3902 | // destructors of temporaries. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 3903 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 3904 | VisitForTemporaryDtors(E->getSubExpr(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3905 | |
| 3906 | // Full expression has to be added as CFGStmt so it will be sequenced |
| 3907 | // before destructors of it's temporaries. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 3908 | asc = asc.withAlwaysAdd(true); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 3909 | } |
| 3910 | return Visit(E->getSubExpr(), asc); |
| 3911 | } |
| 3912 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3913 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 3914 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3915 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3916 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3917 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3918 | |
| 3919 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 3920 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3921 | } |
| 3922 | return Visit(E->getSubExpr(), asc); |
| 3923 | } |
| 3924 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3925 | CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C, |
| 3926 | AddStmtChoice asc) { |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3927 | autoCreateBlock(); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 3928 | appendConstructor(Block, C); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 3929 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3930 | return VisitChildren(C); |
| 3931 | } |
| 3932 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 3933 | CFGBlock *CFGBuilder::VisitCXXNewExpr(CXXNewExpr *NE, |
| 3934 | AddStmtChoice asc) { |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 3935 | autoCreateBlock(); |
| 3936 | appendStmt(Block, NE); |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 3937 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 3938 | EnterConstructionContextIfNecessary( |
| 3939 | NE, const_cast<CXXConstructExpr *>(NE->getConstructExpr())); |
| 3940 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 3941 | if (NE->getInitializer()) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 3942 | Block = Visit(NE->getInitializer()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 3943 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 3944 | if (BuildOpts.AddCXXNewAllocator) |
| 3945 | appendNewAllocator(Block, NE); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 3946 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 3947 | if (NE->isArray()) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 3948 | Block = Visit(NE->getArraySize()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 3949 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 3950 | for (CXXNewExpr::arg_iterator I = NE->placement_arg_begin(), |
| 3951 | E = NE->placement_arg_end(); I != E; ++I) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 3952 | Block = Visit(*I); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 3953 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 3954 | return Block; |
| 3955 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 3956 | |
| 3957 | CFGBlock *CFGBuilder::VisitCXXDeleteExpr(CXXDeleteExpr *DE, |
| 3958 | AddStmtChoice asc) { |
| 3959 | autoCreateBlock(); |
| 3960 | appendStmt(Block, DE); |
| 3961 | QualType DTy = DE->getDestroyedType(); |
Martin Bohme | f44cde8 | 2016-12-05 11:33:19 +0000 | [diff] [blame] | 3962 | if (!DTy.isNull()) { |
| 3963 | DTy = DTy.getNonReferenceType(); |
| 3964 | CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 3965 | if (RD) { |
| 3966 | if (RD->isCompleteDefinition() && !RD->hasTrivialDestructor()) |
| 3967 | appendDeleteDtor(Block, RD, DE); |
| 3968 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 3969 | } |
| 3970 | |
| 3971 | return VisitChildren(DE); |
| 3972 | } |
| 3973 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3974 | CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 3975 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3976 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3977 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3978 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3979 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 3980 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3981 | } |
| 3982 | return Visit(E->getSubExpr(), asc); |
| 3983 | } |
| 3984 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3985 | CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 3986 | AddStmtChoice asc) { |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3987 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3988 | appendStmt(Block, C); |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 3989 | return VisitChildren(C); |
| 3990 | } |
| 3991 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3992 | CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E, |
| 3993 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3994 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3995 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3996 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3997 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3998 | return Visit(E->getSubExpr(), AddStmtChoice()); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 3999 | } |
| 4000 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4001 | CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4002 | // Lazily create the indirect-goto dispatch block if there isn't one already. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4003 | CFGBlock *IBlock = cfg->getIndirectGotoBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4004 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4005 | if (!IBlock) { |
| 4006 | IBlock = createBlock(false); |
| 4007 | cfg->setIndirectGotoBlock(IBlock); |
| 4008 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4009 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4010 | // IndirectGoto is a control-flow statement. Thus we stop processing the |
| 4011 | // current block and create a new one. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4012 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4013 | return nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4014 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4015 | Block = createBlock(false); |
| 4016 | Block->setTerminator(I); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4017 | addSuccessor(Block, IBlock); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4018 | return addStmt(I->getTarget()); |
| 4019 | } |
| 4020 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4021 | CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary, |
| 4022 | TempDtorContext &Context) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 4023 | assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors); |
| 4024 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4025 | tryAgain: |
| 4026 | if (!E) { |
| 4027 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4028 | return nullptr; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4029 | } |
| 4030 | switch (E->getStmtClass()) { |
| 4031 | default: |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4032 | return VisitChildrenForTemporaryDtors(E, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4033 | |
| 4034 | case Stmt::BinaryOperatorClass: |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4035 | return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E), |
| 4036 | Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4037 | |
| 4038 | case Stmt::CXXBindTemporaryExprClass: |
| 4039 | return VisitCXXBindTemporaryExprForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4040 | cast<CXXBindTemporaryExpr>(E), BindToTemporary, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4041 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4042 | case Stmt::BinaryConditionalOperatorClass: |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4043 | case Stmt::ConditionalOperatorClass: |
| 4044 | return VisitConditionalOperatorForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4045 | cast<AbstractConditionalOperator>(E), BindToTemporary, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4046 | |
| 4047 | case Stmt::ImplicitCastExprClass: |
| 4048 | // For implicit cast we want BindToTemporary to be passed further. |
| 4049 | E = cast<CastExpr>(E)->getSubExpr(); |
| 4050 | goto tryAgain; |
| 4051 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4052 | case Stmt::CXXFunctionalCastExprClass: |
| 4053 | // For functional cast we want BindToTemporary to be passed further. |
| 4054 | E = cast<CXXFunctionalCastExpr>(E)->getSubExpr(); |
| 4055 | goto tryAgain; |
| 4056 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4057 | case Stmt::ParenExprClass: |
| 4058 | E = cast<ParenExpr>(E)->getSubExpr(); |
| 4059 | goto tryAgain; |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4060 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4061 | case Stmt::MaterializeTemporaryExprClass: { |
| 4062 | const MaterializeTemporaryExpr* MTE = cast<MaterializeTemporaryExpr>(E); |
| 4063 | BindToTemporary = (MTE->getStorageDuration() != SD_FullExpression); |
| 4064 | SmallVector<const Expr *, 2> CommaLHSs; |
| 4065 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 4066 | // Find the expression whose lifetime needs to be extended. |
| 4067 | E = const_cast<Expr *>( |
| 4068 | cast<MaterializeTemporaryExpr>(E) |
| 4069 | ->GetTemporaryExpr() |
| 4070 | ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments)); |
| 4071 | // Visit the skipped comma operator left-hand sides for other temporaries. |
| 4072 | for (const Expr *CommaLHS : CommaLHSs) { |
| 4073 | VisitForTemporaryDtors(const_cast<Expr *>(CommaLHS), |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4074 | /*BindToTemporary=*/false, Context); |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4075 | } |
Douglas Gregor | fe31481 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 4076 | goto tryAgain; |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4077 | } |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4078 | |
| 4079 | case Stmt::BlockExprClass: |
| 4080 | // Don't recurse into blocks; their subexpressions don't get evaluated |
| 4081 | // here. |
| 4082 | return Block; |
| 4083 | |
| 4084 | case Stmt::LambdaExprClass: { |
| 4085 | // For lambda expressions, only recurse into the capture initializers, |
| 4086 | // and not the body. |
| 4087 | auto *LE = cast<LambdaExpr>(E); |
| 4088 | CFGBlock *B = Block; |
| 4089 | for (Expr *Init : LE->capture_inits()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4090 | if (CFGBlock *R = VisitForTemporaryDtors( |
| 4091 | Init, /*BindToTemporary=*/false, Context)) |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4092 | B = R; |
| 4093 | } |
| 4094 | return B; |
| 4095 | } |
| 4096 | |
| 4097 | case Stmt::CXXDefaultArgExprClass: |
| 4098 | E = cast<CXXDefaultArgExpr>(E)->getExpr(); |
| 4099 | goto tryAgain; |
| 4100 | |
| 4101 | case Stmt::CXXDefaultInitExprClass: |
| 4102 | E = cast<CXXDefaultInitExpr>(E)->getExpr(); |
| 4103 | goto tryAgain; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4104 | } |
| 4105 | } |
| 4106 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4107 | CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E, |
| 4108 | TempDtorContext &Context) { |
| 4109 | if (isa<LambdaExpr>(E)) { |
| 4110 | // Do not visit the children of lambdas; they have their own CFGs. |
| 4111 | return Block; |
| 4112 | } |
| 4113 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4114 | // When visiting children for destructors we want to visit them in reverse |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4115 | // order that they will appear in the CFG. Because the CFG is built |
| 4116 | // bottom-up, this means we visit them in their natural order, which |
| 4117 | // reverses them in the CFG. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4118 | CFGBlock *B = Block; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4119 | for (Stmt *Child : E->children()) |
| 4120 | if (Child) |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4121 | if (CFGBlock *R = VisitForTemporaryDtors(Child, false, Context)) |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4122 | B = R; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4123 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4124 | return B; |
| 4125 | } |
| 4126 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4127 | CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors( |
| 4128 | BinaryOperator *E, TempDtorContext &Context) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4129 | if (E->isLogicalOp()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4130 | VisitForTemporaryDtors(E->getLHS(), false, Context); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4131 | TryResult RHSExecuted = tryEvaluateBool(E->getLHS()); |
| 4132 | if (RHSExecuted.isKnown() && E->getOpcode() == BO_LOr) |
| 4133 | RHSExecuted.negate(); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4134 | |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4135 | // We do not know at CFG-construction time whether the right-hand-side was |
| 4136 | // executed, thus we add a branch node that depends on the temporary |
| 4137 | // constructor call. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4138 | TempDtorContext RHSContext( |
| 4139 | bothKnownTrue(Context.KnownExecuted, RHSExecuted)); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4140 | VisitForTemporaryDtors(E->getRHS(), false, RHSContext); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4141 | InsertTempDtorDecisionBlock(RHSContext); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4142 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4143 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4144 | } |
| 4145 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4146 | if (E->isAssignmentOp()) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4147 | // For assignment operator (=) LHS expression is visited |
| 4148 | // before RHS expression. For destructors visit them in reverse order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4149 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
| 4150 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4151 | return LHSBlock ? LHSBlock : RHSBlock; |
| 4152 | } |
| 4153 | |
| 4154 | // For any other binary operator RHS expression is visited before |
| 4155 | // LHS expression (order of children). For destructors visit them in reverse |
| 4156 | // order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4157 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
| 4158 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4159 | return RHSBlock ? RHSBlock : LHSBlock; |
| 4160 | } |
| 4161 | |
| 4162 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4163 | CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4164 | // First add destructors for temporaries in subexpression. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4165 | CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr(), false, Context); |
Zhongxing Xu | fee455f | 2010-11-14 15:23:50 +0000 | [diff] [blame] | 4166 | if (!BindToTemporary) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4167 | // If lifetime of temporary is not prolonged (by assigning to constant |
| 4168 | // reference) add destructor for it. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4169 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4170 | const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4171 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 4172 | if (Dtor->getParent()->isAnyDestructorNoReturn()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4173 | // If the destructor is marked as a no-return destructor, we need to |
| 4174 | // create a new block for the destructor which does not have as a |
| 4175 | // successor anything built thus far. Control won't flow out of this |
| 4176 | // block. |
| 4177 | if (B) Succ = B; |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 4178 | Block = createNoReturnBlock(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4179 | } else if (Context.needsTempDtorBranch()) { |
| 4180 | // If we need to introduce a branch, we add a new block that we will hook |
| 4181 | // up to a decision block later. |
| 4182 | if (B) Succ = B; |
| 4183 | Block = createBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4184 | } else { |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4185 | autoCreateBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4186 | } |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4187 | if (Context.needsTempDtorBranch()) { |
| 4188 | Context.setDecisionPoint(Succ, E); |
| 4189 | } |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4190 | appendTemporaryDtor(Block, E); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4191 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4192 | B = Block; |
| 4193 | } |
| 4194 | return B; |
| 4195 | } |
| 4196 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4197 | void CFGBuilder::InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 4198 | CFGBlock *FalseSucc) { |
| 4199 | if (!Context.TerminatorExpr) { |
| 4200 | // If no temporary was found, we do not need to insert a decision point. |
| 4201 | return; |
| 4202 | } |
| 4203 | assert(Context.TerminatorExpr); |
| 4204 | CFGBlock *Decision = createBlock(false); |
| 4205 | Decision->setTerminator(CFGTerminator(Context.TerminatorExpr, true)); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4206 | addSuccessor(Decision, Block, !Context.KnownExecuted.isFalse()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4207 | addSuccessor(Decision, FalseSucc ? FalseSucc : Context.Succ, |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4208 | !Context.KnownExecuted.isTrue()); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4209 | Block = Decision; |
| 4210 | } |
| 4211 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4212 | CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4213 | AbstractConditionalOperator *E, bool BindToTemporary, |
| 4214 | TempDtorContext &Context) { |
| 4215 | VisitForTemporaryDtors(E->getCond(), false, Context); |
| 4216 | CFGBlock *ConditionBlock = Block; |
| 4217 | CFGBlock *ConditionSucc = Succ; |
Manuel Klimek | 0ce9108 | 2014-08-07 14:25:43 +0000 | [diff] [blame] | 4218 | TryResult ConditionVal = tryEvaluateBool(E->getCond()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4219 | TryResult NegatedVal = ConditionVal; |
| 4220 | if (NegatedVal.isKnown()) NegatedVal.negate(); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4221 | |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4222 | TempDtorContext TrueContext( |
| 4223 | bothKnownTrue(Context.KnownExecuted, ConditionVal)); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4224 | VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary, TrueContext); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4225 | CFGBlock *TrueBlock = Block; |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4226 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4227 | Block = ConditionBlock; |
| 4228 | Succ = ConditionSucc; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4229 | TempDtorContext FalseContext( |
| 4230 | bothKnownTrue(Context.KnownExecuted, NegatedVal)); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4231 | VisitForTemporaryDtors(E->getFalseExpr(), BindToTemporary, FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4232 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4233 | if (TrueContext.TerminatorExpr && FalseContext.TerminatorExpr) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4234 | InsertTempDtorDecisionBlock(FalseContext, TrueBlock); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4235 | } else if (TrueContext.TerminatorExpr) { |
| 4236 | Block = TrueBlock; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4237 | InsertTempDtorDecisionBlock(TrueContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4238 | } else { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4239 | InsertTempDtorDecisionBlock(FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4240 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4241 | return Block; |
| 4242 | } |
| 4243 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4244 | /// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has |
| 4245 | /// no successors or predecessors. If this is the first block created in the |
| 4246 | /// CFG, it is automatically set to be the Entry and Exit of the CFG. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4247 | CFGBlock *CFG::createBlock() { |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4248 | bool first_block = begin() == end(); |
| 4249 | |
| 4250 | // Create the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4251 | CFGBlock *Mem = getAllocator().Allocate<CFGBlock>(); |
Anna Zaks | 02a1fc1 | 2011-12-05 21:33:11 +0000 | [diff] [blame] | 4252 | new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4253 | Blocks.push_back(Mem, BlkBVC); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4254 | |
| 4255 | // If this is the first block, set it as the Entry and Exit. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4256 | if (first_block) |
| 4257 | Entry = Exit = &back(); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4258 | |
| 4259 | // Return the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4260 | return &back(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4261 | } |
| 4262 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 4263 | /// buildCFG - Constructs a CFG from an AST. |
| 4264 | std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement, |
| 4265 | ASTContext *C, const BuildOptions &BO) { |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 4266 | CFGBuilder Builder(C, BO); |
| 4267 | return Builder.buildCFG(D, Statement); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4268 | } |
| 4269 | |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4270 | const CXXDestructorDecl * |
| 4271 | CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4272 | switch (getKind()) { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4273 | case CFGElement::Initializer: |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4274 | case CFGElement::NewAllocator: |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 4275 | case CFGElement::LoopExit: |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4276 | case CFGElement::LifetimeEnds: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4277 | case CFGElement::Statement: |
| 4278 | case CFGElement::Constructor: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4279 | llvm_unreachable("getDestructorDecl should only be used with " |
| 4280 | "ImplicitDtors"); |
| 4281 | case CFGElement::AutomaticObjectDtor: { |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4282 | const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4283 | QualType ty = var->getType(); |
Devin Coughlin | 6eb1ca7 | 2016-08-02 21:07:23 +0000 | [diff] [blame] | 4284 | |
| 4285 | // FIXME: See CFGBuilder::addLocalScopeForVarDecl. |
| 4286 | // |
| 4287 | // Lifetime-extending constructs are handled here. This works for a single |
| 4288 | // temporary in an initializer expression. |
| 4289 | if (ty->isReferenceType()) { |
| 4290 | if (const Expr *Init = var->getInit()) { |
| 4291 | ty = getReferenceInitTemporaryType(astContext, Init); |
| 4292 | } |
| 4293 | } |
| 4294 | |
Ted Kremenek | e7d7888 | 2012-03-19 23:48:41 +0000 | [diff] [blame] | 4295 | while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) { |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4296 | ty = arrayType->getElementType(); |
| 4297 | } |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4298 | const RecordType *recordType = ty->getAs<RecordType>(); |
| 4299 | const CXXRecordDecl *classDecl = |
Ted Kremenek | 1676a04 | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 4300 | cast<CXXRecordDecl>(recordType->getDecl()); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4301 | return classDecl->getDestructor(); |
| 4302 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4303 | case CFGElement::DeleteDtor: { |
| 4304 | const CXXDeleteExpr *DE = castAs<CFGDeleteDtor>().getDeleteExpr(); |
| 4305 | QualType DTy = DE->getDestroyedType(); |
| 4306 | DTy = DTy.getNonReferenceType(); |
| 4307 | const CXXRecordDecl *classDecl = |
| 4308 | astContext.getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 4309 | return classDecl->getDestructor(); |
| 4310 | } |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4311 | case CFGElement::TemporaryDtor: { |
| 4312 | const CXXBindTemporaryExpr *bindExpr = |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4313 | castAs<CFGTemporaryDtor>().getBindTemporaryExpr(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4314 | const CXXTemporary *temp = bindExpr->getTemporary(); |
| 4315 | return temp->getDestructor(); |
| 4316 | } |
| 4317 | case CFGElement::BaseDtor: |
| 4318 | case CFGElement::MemberDtor: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4319 | // Not yet supported. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4320 | return nullptr; |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4321 | } |
Ted Kremenek | 1676a04 | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 4322 | llvm_unreachable("getKind() returned bogus value"); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4323 | } |
| 4324 | |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4325 | bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const { |
Richard Smith | 10876ef | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 4326 | if (const CXXDestructorDecl *DD = getDestructorDecl(astContext)) |
| 4327 | return DD->isNoReturn(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4328 | return false; |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4329 | } |
| 4330 | |
Ted Kremenek | f2d4372b | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 4331 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4332 | // CFGBlock operations. |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4333 | //===----------------------------------------------------------------------===// |
| 4334 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4335 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, bool IsReachable) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4336 | : ReachableBlock(IsReachable ? B : nullptr), |
| 4337 | UnreachableBlock(!IsReachable ? B : nullptr, |
| 4338 | B && IsReachable ? AB_Normal : AB_Unreachable) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4339 | |
| 4340 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, CFGBlock *AlternateBlock) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4341 | : ReachableBlock(B), |
| 4342 | UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock, |
| 4343 | B == AlternateBlock ? AB_Alternate : AB_Normal) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4344 | |
| 4345 | void CFGBlock::addSuccessor(AdjacentBlock Succ, |
| 4346 | BumpVectorContext &C) { |
| 4347 | if (CFGBlock *B = Succ.getReachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4348 | B->Preds.push_back(AdjacentBlock(this, Succ.isReachable()), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4349 | |
| 4350 | if (CFGBlock *UnreachableB = Succ.getPossiblyUnreachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4351 | UnreachableB->Preds.push_back(AdjacentBlock(this, false), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4352 | |
| 4353 | Succs.push_back(Succ, C); |
| 4354 | } |
| 4355 | |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4356 | bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F, |
Ted Kremenek | f146cd1 | 2010-09-09 02:57:48 +0000 | [diff] [blame] | 4357 | const CFGBlock *From, const CFGBlock *To) { |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4358 | if (F.IgnoreNullPredecessors && !From) |
| 4359 | return true; |
| 4360 | |
| 4361 | if (To && From && F.IgnoreDefaultsWithCoveredEnums) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4362 | // If the 'To' has no label or is labeled but the label isn't a |
| 4363 | // CaseStmt then filter this edge. |
| 4364 | if (const SwitchStmt *S = |
Ted Kremenek | 8979474 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 4365 | dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4366 | if (S->isAllEnumCasesCovered()) { |
Ted Kremenek | 8979474 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 4367 | const Stmt *L = To->getLabel(); |
| 4368 | if (!L || !isa<CaseStmt>(L)) |
| 4369 | return true; |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4370 | } |
| 4371 | } |
| 4372 | } |
| 4373 | |
| 4374 | return false; |
| 4375 | } |
| 4376 | |
| 4377 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4378 | // CFG pretty printing |
| 4379 | //===----------------------------------------------------------------------===// |
| 4380 | |
Ted Kremenek | 7e776b1 | 2007-08-22 18:22:34 +0000 | [diff] [blame] | 4381 | namespace { |
| 4382 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 4383 | class StmtPrinterHelper : public PrinterHelper { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4384 | using StmtMapTy = llvm::DenseMap<const Stmt *, std::pair<unsigned, unsigned>>; |
| 4385 | using DeclMapTy = llvm::DenseMap<const Decl *, std::pair<unsigned, unsigned>>; |
| 4386 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4387 | StmtMapTy StmtMap; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4388 | DeclMapTy DeclMap; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4389 | signed currentBlock = 0; |
| 4390 | unsigned currStmt = 0; |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4391 | const LangOptions &LangOpts; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4392 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4393 | public: |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4394 | StmtPrinterHelper(const CFG* cfg, const LangOptions &LO) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4395 | : LangOpts(LO) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4396 | for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) { |
| 4397 | unsigned j = 1; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4398 | for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4399 | BI != BEnd; ++BI, ++j ) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4400 | if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) { |
| 4401 | const Stmt *stmt= SE->getStmt(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4402 | std::pair<unsigned, unsigned> P((*I)->getBlockID(), j); |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4403 | StmtMap[stmt] = P; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4404 | |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4405 | switch (stmt->getStmtClass()) { |
| 4406 | case Stmt::DeclStmtClass: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4407 | DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P; |
| 4408 | break; |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4409 | case Stmt::IfStmtClass: { |
| 4410 | const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable(); |
| 4411 | if (var) |
| 4412 | DeclMap[var] = P; |
| 4413 | break; |
| 4414 | } |
| 4415 | case Stmt::ForStmtClass: { |
| 4416 | const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable(); |
| 4417 | if (var) |
| 4418 | DeclMap[var] = P; |
| 4419 | break; |
| 4420 | } |
| 4421 | case Stmt::WhileStmtClass: { |
| 4422 | const VarDecl *var = |
| 4423 | cast<WhileStmt>(stmt)->getConditionVariable(); |
| 4424 | if (var) |
| 4425 | DeclMap[var] = P; |
| 4426 | break; |
| 4427 | } |
| 4428 | case Stmt::SwitchStmtClass: { |
| 4429 | const VarDecl *var = |
| 4430 | cast<SwitchStmt>(stmt)->getConditionVariable(); |
| 4431 | if (var) |
| 4432 | DeclMap[var] = P; |
| 4433 | break; |
| 4434 | } |
| 4435 | case Stmt::CXXCatchStmtClass: { |
| 4436 | const VarDecl *var = |
| 4437 | cast<CXXCatchStmt>(stmt)->getExceptionDecl(); |
| 4438 | if (var) |
| 4439 | DeclMap[var] = P; |
| 4440 | break; |
| 4441 | } |
| 4442 | default: |
| 4443 | break; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4444 | } |
| 4445 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4446 | } |
Zhongxing Xu | 2cd7a78 | 2010-09-16 01:25:47 +0000 | [diff] [blame] | 4447 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4448 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4449 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4450 | ~StmtPrinterHelper() override = default; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4451 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4452 | const LangOptions &getLangOpts() const { return LangOpts; } |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4453 | void setBlockID(signed i) { currentBlock = i; } |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4454 | void setStmtID(unsigned i) { currStmt = i; } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4455 | |
Craig Topper | b45acb8 | 2014-03-14 06:02:07 +0000 | [diff] [blame] | 4456 | bool handledStmt(Stmt *S, raw_ostream &OS) override { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4457 | StmtMapTy::iterator I = StmtMap.find(S); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4458 | |
| 4459 | if (I == StmtMap.end()) |
| 4460 | return false; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4461 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4462 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4463 | && I->second.second == currStmt) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4464 | return false; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4465 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4466 | |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4467 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4468 | return true; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4469 | } |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4470 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4471 | bool handleDecl(const Decl *D, raw_ostream &OS) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4472 | DeclMapTy::iterator I = DeclMap.find(D); |
| 4473 | |
| 4474 | if (I == DeclMap.end()) |
| 4475 | return false; |
| 4476 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4477 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4478 | && I->second.second == currStmt) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4479 | return false; |
| 4480 | } |
| 4481 | |
| 4482 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
| 4483 | return true; |
| 4484 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4485 | }; |
| 4486 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 4487 | class CFGBlockTerminatorPrint |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4488 | : public StmtVisitor<CFGBlockTerminatorPrint,void> { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4489 | raw_ostream &OS; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4490 | StmtPrinterHelper* Helper; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4491 | PrintingPolicy Policy; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4492 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4493 | public: |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4494 | CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper, |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4495 | const PrintingPolicy &Policy) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4496 | : OS(os), Helper(helper), Policy(Policy) { |
Ted Kremenek | 5d0fb1e | 2013-12-11 23:44:05 +0000 | [diff] [blame] | 4497 | this->Policy.IncludeNewlines = false; |
| 4498 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4499 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4500 | void VisitIfStmt(IfStmt *I) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4501 | OS << "if "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4502 | if (Stmt *C = I->getCond()) |
| 4503 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4504 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4505 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4506 | // Default case. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4507 | void VisitStmt(Stmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4508 | Terminator->printPretty(OS, Helper, Policy); |
| 4509 | } |
| 4510 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 4511 | void VisitDeclStmt(DeclStmt *DS) { |
| 4512 | VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); |
| 4513 | OS << "static init " << VD->getName(); |
| 4514 | } |
| 4515 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4516 | void VisitForStmt(ForStmt *F) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4517 | OS << "for (" ; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4518 | if (F->getInit()) |
| 4519 | OS << "..."; |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 4520 | OS << "; "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4521 | if (Stmt *C = F->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4522 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 4523 | OS << "; "; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4524 | if (F->getInc()) |
| 4525 | OS << "..."; |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4526 | OS << ")"; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4527 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4528 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4529 | void VisitWhileStmt(WhileStmt *W) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4530 | OS << "while " ; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4531 | if (Stmt *C = W->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4532 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4533 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4534 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4535 | void VisitDoStmt(DoStmt *D) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4536 | OS << "do ... while "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4537 | if (Stmt *C = D->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4538 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4539 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4540 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4541 | void VisitSwitchStmt(SwitchStmt *Terminator) { |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4542 | OS << "switch "; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4543 | Terminator->getCond()->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4544 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4545 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4546 | void VisitCXXTryStmt(CXXTryStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4547 | OS << "try ..."; |
| 4548 | } |
| 4549 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 4550 | void VisitSEHTryStmt(SEHTryStmt *CS) { |
| 4551 | OS << "__try ..."; |
| 4552 | } |
| 4553 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4554 | void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) { |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4555 | if (Stmt *Cond = C->getCond()) |
| 4556 | Cond->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4557 | OS << " ? ... : ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4558 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4559 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4560 | void VisitChooseExpr(ChooseExpr *C) { |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 4561 | OS << "__builtin_choose_expr( "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4562 | if (Stmt *Cond = C->getCond()) |
| 4563 | Cond->printPretty(OS, Helper, Policy); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4564 | OS << " )"; |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 4565 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4566 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4567 | void VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4568 | OS << "goto *"; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4569 | if (Stmt *T = I->getTarget()) |
| 4570 | T->printPretty(OS, Helper, Policy); |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4571 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4572 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4573 | void VisitBinaryOperator(BinaryOperator* B) { |
| 4574 | if (!B->isLogicalOp()) { |
| 4575 | VisitExpr(B); |
| 4576 | return; |
| 4577 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4578 | |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4579 | if (B->getLHS()) |
| 4580 | B->getLHS()->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4581 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4582 | switch (B->getOpcode()) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4583 | case BO_LOr: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4584 | OS << " || ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4585 | return; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4586 | case BO_LAnd: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4587 | OS << " && ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4588 | return; |
| 4589 | default: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4590 | llvm_unreachable("Invalid logical operator."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4591 | } |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4592 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4593 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4594 | void VisitExpr(Expr *E) { |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4595 | E->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4596 | } |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 4597 | |
| 4598 | public: |
| 4599 | void print(CFGTerminator T) { |
| 4600 | if (T.isTemporaryDtorsBranch()) |
| 4601 | OS << "(Temp Dtor) "; |
| 4602 | Visit(T.getStmt()); |
| 4603 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4604 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4605 | |
| 4606 | } // namespace |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4607 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4608 | static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper, |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 4609 | const CFGElement &E) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4610 | if (Optional<CFGStmt> CS = E.getAs<CFGStmt>()) { |
| 4611 | const Stmt *S = CS->getStmt(); |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4612 | assert(S != nullptr && "Expecting non-null Stmt"); |
| 4613 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4614 | // special printing for statement-expressions. |
| 4615 | if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) { |
| 4616 | const CompoundStmt *Sub = SE->getSubStmt(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4617 | |
Benjamin Kramer | 5733e35 | 2015-07-18 17:09:36 +0000 | [diff] [blame] | 4618 | auto Children = Sub->children(); |
| 4619 | if (Children.begin() != Children.end()) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4620 | OS << "({ ... ; "; |
| 4621 | Helper.handledStmt(*SE->getSubStmt()->body_rbegin(),OS); |
| 4622 | OS << " })\n"; |
| 4623 | return; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4624 | } |
| 4625 | } |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4626 | // special printing for comma expressions. |
| 4627 | if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) { |
| 4628 | if (B->getOpcode() == BO_Comma) { |
| 4629 | OS << "... , "; |
| 4630 | Helper.handledStmt(B->getRHS(),OS); |
| 4631 | OS << '\n'; |
| 4632 | return; |
| 4633 | } |
| 4634 | } |
| 4635 | S->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4636 | |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4637 | if (isa<CXXOperatorCallExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4638 | OS << " (OperatorCall)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4639 | } else if (isa<CXXBindTemporaryExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4640 | OS << " (BindTemporary)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4641 | } else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) { |
| 4642 | OS << " (CXXConstructExpr, "; |
| 4643 | if (Optional<CFGConstructor> CE = E.getAs<CFGConstructor>()) { |
| 4644 | if (const Stmt *S = CE->getTriggerStmt()) |
| 4645 | Helper.handledStmt((const_cast<Stmt *>(S)), OS); |
| 4646 | else |
| 4647 | llvm_unreachable("Unexpected trigger kind!"); |
| 4648 | OS << ", "; |
| 4649 | } |
| 4650 | OS << CCE->getType().getAsString() << ")"; |
| 4651 | } else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) { |
Ted Kremenek | 0ffba93 | 2011-12-21 19:32:38 +0000 | [diff] [blame] | 4652 | OS << " (" << CE->getStmtClassName() << ", " |
| 4653 | << CE->getCastKindName() |
| 4654 | << ", " << CE->getType().getAsString() |
| 4655 | << ")"; |
| 4656 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4657 | |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4658 | // Expressions need a newline. |
| 4659 | if (isa<Expr>(S)) |
| 4660 | OS << '\n'; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4661 | } else if (Optional<CFGInitializer> IE = E.getAs<CFGInitializer>()) { |
| 4662 | const CXXCtorInitializer *I = IE->getInitializer(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4663 | if (I->isBaseInitializer()) |
| 4664 | OS << I->getBaseClass()->getAsCXXRecordDecl()->getName(); |
Jordan Rose | 69d0aed | 2013-10-22 23:19:47 +0000 | [diff] [blame] | 4665 | else if (I->isDelegatingInitializer()) |
| 4666 | OS << I->getTypeSourceInfo()->getType()->getAsCXXRecordDecl()->getName(); |
Francois Pichet | d583da0 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 4667 | else OS << I->getAnyMember()->getName(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4668 | |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4669 | OS << "("; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4670 | if (Expr *IE = I->getInit()) |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4671 | IE->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4672 | OS << ")"; |
| 4673 | |
| 4674 | if (I->isBaseInitializer()) |
| 4675 | OS << " (Base initializer)\n"; |
Jordan Rose | 69d0aed | 2013-10-22 23:19:47 +0000 | [diff] [blame] | 4676 | else if (I->isDelegatingInitializer()) |
| 4677 | OS << " (Delegating initializer)\n"; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4678 | else OS << " (Member initializer)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4679 | } else if (Optional<CFGAutomaticObjDtor> DE = |
| 4680 | E.getAs<CFGAutomaticObjDtor>()) { |
| 4681 | const VarDecl *VD = DE->getVarDecl(); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4682 | Helper.handleDecl(VD, OS); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4683 | |
Marcin Swiderski | 52e4bc1 | 2010-10-25 07:00:40 +0000 | [diff] [blame] | 4684 | const Type* T = VD->getType().getTypePtr(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4685 | if (const ReferenceType* RT = T->getAs<ReferenceType>()) |
| 4686 | T = RT->getPointeeType().getTypePtr(); |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 4687 | T = T->getBaseElementTypeUnsafe(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4688 | |
| 4689 | OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()"; |
| 4690 | OS << " (Implicit destructor)\n"; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4691 | } else if (Optional<CFGLifetimeEnds> DE = E.getAs<CFGLifetimeEnds>()) { |
| 4692 | const VarDecl *VD = DE->getVarDecl(); |
| 4693 | Helper.handleDecl(VD, OS); |
| 4694 | |
| 4695 | OS << " (Lifetime ends)\n"; |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 4696 | } else if (Optional<CFGLoopExit> LE = E.getAs<CFGLoopExit>()) { |
| 4697 | const Stmt *LoopStmt = LE->getLoopStmt(); |
| 4698 | OS << LoopStmt->getStmtClassName() << " (LoopExit)\n"; |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4699 | } else if (Optional<CFGNewAllocator> NE = E.getAs<CFGNewAllocator>()) { |
| 4700 | OS << "CFGNewAllocator("; |
| 4701 | if (const CXXNewExpr *AllocExpr = NE->getAllocatorExpr()) |
| 4702 | AllocExpr->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
| 4703 | OS << ")\n"; |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4704 | } else if (Optional<CFGDeleteDtor> DE = E.getAs<CFGDeleteDtor>()) { |
| 4705 | const CXXRecordDecl *RD = DE->getCXXRecordDecl(); |
| 4706 | if (!RD) |
| 4707 | return; |
| 4708 | CXXDeleteExpr *DelExpr = |
| 4709 | const_cast<CXXDeleteExpr*>(DE->getDeleteExpr()); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4710 | Helper.handledStmt(cast<Stmt>(DelExpr->getArgument()), OS); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4711 | OS << "->~" << RD->getName().str() << "()"; |
| 4712 | OS << " (Implicit destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4713 | } else if (Optional<CFGBaseDtor> BE = E.getAs<CFGBaseDtor>()) { |
| 4714 | const CXXBaseSpecifier *BS = BE->getBaseSpecifier(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 4715 | OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 4716 | OS << " (Base object destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4717 | } else if (Optional<CFGMemberDtor> ME = E.getAs<CFGMemberDtor>()) { |
| 4718 | const FieldDecl *FD = ME->getFieldDecl(); |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 4719 | const Type *T = FD->getType()->getBaseElementTypeUnsafe(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 4720 | OS << "this->" << FD->getName(); |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 4721 | OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 4722 | OS << " (Member object destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4723 | } else if (Optional<CFGTemporaryDtor> TE = E.getAs<CFGTemporaryDtor>()) { |
| 4724 | const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr(); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 4725 | OS << "~"; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4726 | BT->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 4727 | OS << "() (Temporary object destructor)\n"; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4728 | } |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4729 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4730 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4731 | static void print_block(raw_ostream &OS, const CFG* cfg, |
| 4732 | const CFGBlock &B, |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4733 | StmtPrinterHelper &Helper, bool print_edges, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4734 | bool ShowColors) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4735 | Helper.setBlockID(B.getBlockID()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4736 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4737 | // Print the header. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4738 | if (ShowColors) |
| 4739 | OS.changeColor(raw_ostream::YELLOW, true); |
| 4740 | |
| 4741 | OS << "\n [B" << B.getBlockID(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4742 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4743 | if (&B == &cfg->getEntry()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4744 | OS << " (ENTRY)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4745 | else if (&B == &cfg->getExit()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4746 | OS << " (EXIT)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4747 | else if (&B == cfg->getIndirectGotoBlock()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4748 | OS << " (INDIRECT GOTO DISPATCH)]\n"; |
Jordan Rose | 398fb00 | 2014-04-01 16:39:33 +0000 | [diff] [blame] | 4749 | else if (B.hasNoReturnElement()) |
| 4750 | OS << " (NORETURN)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4751 | else |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4752 | OS << "]\n"; |
| 4753 | |
| 4754 | if (ShowColors) |
| 4755 | OS.resetColor(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4756 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4757 | // Print the label of this block. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4758 | if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4759 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4760 | OS << " "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4761 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4762 | if (LabelStmt *L = dyn_cast<LabelStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4763 | OS << L->getName(); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4764 | else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4765 | OS << "case "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4766 | if (C->getLHS()) |
| 4767 | C->getLHS()->printPretty(OS, &Helper, |
| 4768 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4769 | if (C->getRHS()) { |
| 4770 | OS << " ... "; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4771 | C->getRHS()->printPretty(OS, &Helper, |
| 4772 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4773 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 4774 | } else if (isa<DefaultStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4775 | OS << "default"; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 4776 | else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4777 | OS << "catch ("; |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4778 | if (CS->getExceptionDecl()) |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4779 | CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()), |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4780 | 0); |
| 4781 | else |
| 4782 | OS << "..."; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4783 | OS << ")"; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 4784 | } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) { |
| 4785 | OS << "__except ("; |
| 4786 | ES->getFilterExpr()->printPretty(OS, &Helper, |
| 4787 | PrintingPolicy(Helper.getLangOpts()), 0); |
| 4788 | OS << ")"; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4789 | } else |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4790 | llvm_unreachable("Invalid label statement in CFGBlock."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4791 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4792 | OS << ":\n"; |
| 4793 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4794 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4795 | // Iterate through the statements in the block and print them. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4796 | unsigned j = 1; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4797 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4798 | for (CFGBlock::const_iterator I = B.begin(), E = B.end() ; |
| 4799 | I != E ; ++I, ++j ) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4800 | // Print the statement # in the basic block and the statement itself. |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4801 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4802 | OS << " "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4803 | |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 4804 | OS << llvm::format("%3d", j) << ": "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4805 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4806 | Helper.setStmtID(j); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4807 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4808 | print_elem(OS, Helper, *I); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4809 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4810 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4811 | // Print the terminator of this block. |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4812 | if (B.getTerminator()) { |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4813 | if (ShowColors) |
| 4814 | OS.changeColor(raw_ostream::GREEN); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4815 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4816 | OS << " T: "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4817 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4818 | Helper.setBlockID(-1); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4819 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4820 | PrintingPolicy PP(Helper.getLangOpts()); |
| 4821 | CFGBlockTerminatorPrint TPrinter(OS, &Helper, PP); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 4822 | TPrinter.print(B.getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4823 | OS << '\n'; |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4824 | |
| 4825 | if (ShowColors) |
| 4826 | OS.resetColor(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4827 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4828 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4829 | if (print_edges) { |
| 4830 | // Print the predecessors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4831 | if (!B.pred_empty()) { |
| 4832 | const raw_ostream::Colors Color = raw_ostream::BLUE; |
| 4833 | if (ShowColors) |
| 4834 | OS.changeColor(Color); |
| 4835 | OS << " Preds " ; |
| 4836 | if (ShowColors) |
| 4837 | OS.resetColor(); |
| 4838 | OS << '(' << B.pred_size() << "):"; |
| 4839 | unsigned i = 0; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4840 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4841 | if (ShowColors) |
| 4842 | OS.changeColor(Color); |
| 4843 | |
| 4844 | for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end(); |
| 4845 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 4846 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4847 | OS << "\n "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4848 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4849 | CFGBlock *B = *I; |
| 4850 | bool Reachable = true; |
| 4851 | if (!B) { |
| 4852 | Reachable = false; |
| 4853 | B = I->getPossiblyUnreachableBlock(); |
| 4854 | } |
| 4855 | |
| 4856 | OS << " B" << B->getBlockID(); |
| 4857 | if (!Reachable) |
| 4858 | OS << "(Unreachable)"; |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4859 | } |
| 4860 | |
| 4861 | if (ShowColors) |
| 4862 | OS.resetColor(); |
| 4863 | |
| 4864 | OS << '\n'; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 4865 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4866 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4867 | // Print the successors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4868 | if (!B.succ_empty()) { |
| 4869 | const raw_ostream::Colors Color = raw_ostream::MAGENTA; |
| 4870 | if (ShowColors) |
| 4871 | OS.changeColor(Color); |
| 4872 | OS << " Succs "; |
| 4873 | if (ShowColors) |
| 4874 | OS.resetColor(); |
| 4875 | OS << '(' << B.succ_size() << "):"; |
| 4876 | unsigned i = 0; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4877 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4878 | if (ShowColors) |
| 4879 | OS.changeColor(Color); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4880 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4881 | for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end(); |
| 4882 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 4883 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4884 | OS << "\n "; |
| 4885 | |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 4886 | CFGBlock *B = *I; |
| 4887 | |
| 4888 | bool Reachable = true; |
| 4889 | if (!B) { |
| 4890 | Reachable = false; |
| 4891 | B = I->getPossiblyUnreachableBlock(); |
| 4892 | } |
| 4893 | |
| 4894 | if (B) { |
| 4895 | OS << " B" << B->getBlockID(); |
| 4896 | if (!Reachable) |
| 4897 | OS << "(Unreachable)"; |
| 4898 | } |
| 4899 | else { |
| 4900 | OS << " NULL"; |
| 4901 | } |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4902 | } |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 4903 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4904 | if (ShowColors) |
| 4905 | OS.resetColor(); |
| 4906 | OS << '\n'; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4907 | } |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4908 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4909 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4910 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4911 | /// dump - A simple pretty printer of a CFG that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4912 | void CFG::dump(const LangOptions &LO, bool ShowColors) const { |
| 4913 | print(llvm::errs(), LO, ShowColors); |
| 4914 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4915 | |
| 4916 | /// print - A simple pretty printer of a CFG that outputs to an ostream. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4917 | void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4918 | StmtPrinterHelper Helper(this, LO); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4919 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4920 | // Print the entry block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4921 | print_block(OS, this, getEntry(), Helper, true, ShowColors); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4922 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4923 | // Iterate through the CFGBlocks and print them one by one. |
| 4924 | for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) { |
| 4925 | // Skip the entry block, because we already printed it. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4926 | if (&(**I) == &getEntry() || &(**I) == &getExit()) |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4927 | continue; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4928 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4929 | print_block(OS, this, **I, Helper, true, ShowColors); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4930 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4931 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4932 | // Print the exit block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4933 | print_block(OS, this, getExit(), Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4934 | OS << '\n'; |
Ted Kremenek | e03879b | 2008-11-24 20:50:24 +0000 | [diff] [blame] | 4935 | OS.flush(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4936 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4937 | |
| 4938 | /// dump - A simply pretty printer of a CFGBlock that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4939 | void CFGBlock::dump(const CFG* cfg, const LangOptions &LO, |
| 4940 | bool ShowColors) const { |
| 4941 | print(llvm::errs(), cfg, LO, ShowColors); |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4942 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4943 | |
Yaron Keren | cdae941 | 2016-01-29 19:38:18 +0000 | [diff] [blame] | 4944 | LLVM_DUMP_METHOD void CFGBlock::dump() const { |
Anna Zaks | a6fea13 | 2014-06-13 23:47:38 +0000 | [diff] [blame] | 4945 | dump(getParent(), LangOptions(), false); |
| 4946 | } |
| 4947 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4948 | /// print - A simple pretty printer of a CFGBlock that outputs to an ostream. |
| 4949 | /// Generally this will only be called from CFG::print. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4950 | void CFGBlock::print(raw_ostream &OS, const CFG* cfg, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4951 | const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4952 | StmtPrinterHelper Helper(cfg, LO); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4953 | print_block(OS, cfg, *this, Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 4954 | OS << '\n'; |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4955 | } |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4956 | |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4957 | /// printTerminator - A simple pretty printer of the terminator of a CFGBlock. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4958 | void CFGBlock::printTerminator(raw_ostream &OS, |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4959 | const LangOptions &LO) const { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4960 | CFGBlockTerminatorPrint TPrinter(OS, nullptr, PrintingPolicy(LO)); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 4961 | TPrinter.print(getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4962 | } |
| 4963 | |
Ted Kremenek | ec3bbf4 | 2014-03-29 00:35:20 +0000 | [diff] [blame] | 4964 | Stmt *CFGBlock::getTerminatorCondition(bool StripParens) { |
Marcin Swiderski | a7d84a7 | 2010-10-29 05:21:47 +0000 | [diff] [blame] | 4965 | Stmt *Terminator = this->Terminator; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4966 | if (!Terminator) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4967 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4968 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4969 | Expr *E = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4970 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4971 | switch (Terminator->getStmtClass()) { |
| 4972 | default: |
| 4973 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4974 | |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 4975 | case Stmt::CXXForRangeStmtClass: |
| 4976 | E = cast<CXXForRangeStmt>(Terminator)->getCond(); |
| 4977 | break; |
| 4978 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4979 | case Stmt::ForStmtClass: |
| 4980 | E = cast<ForStmt>(Terminator)->getCond(); |
| 4981 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4982 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4983 | case Stmt::WhileStmtClass: |
| 4984 | E = cast<WhileStmt>(Terminator)->getCond(); |
| 4985 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4986 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4987 | case Stmt::DoStmtClass: |
| 4988 | E = cast<DoStmt>(Terminator)->getCond(); |
| 4989 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4990 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4991 | case Stmt::IfStmtClass: |
| 4992 | E = cast<IfStmt>(Terminator)->getCond(); |
| 4993 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4994 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4995 | case Stmt::ChooseExprClass: |
| 4996 | E = cast<ChooseExpr>(Terminator)->getCond(); |
| 4997 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4998 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4999 | case Stmt::IndirectGotoStmtClass: |
| 5000 | E = cast<IndirectGotoStmt>(Terminator)->getTarget(); |
| 5001 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5002 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5003 | case Stmt::SwitchStmtClass: |
| 5004 | E = cast<SwitchStmt>(Terminator)->getCond(); |
| 5005 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5006 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5007 | case Stmt::BinaryConditionalOperatorClass: |
| 5008 | E = cast<BinaryConditionalOperator>(Terminator)->getCond(); |
| 5009 | break; |
| 5010 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5011 | case Stmt::ConditionalOperatorClass: |
| 5012 | E = cast<ConditionalOperator>(Terminator)->getCond(); |
| 5013 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5014 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5015 | case Stmt::BinaryOperatorClass: // '&&' and '||' |
| 5016 | E = cast<BinaryOperator>(Terminator)->getLHS(); |
Ted Kremenek | 6d8b46e | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 5017 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5018 | |
Ted Kremenek | 6d8b46e | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 5019 | case Stmt::ObjCForCollectionStmtClass: |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5020 | return Terminator; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5021 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5022 | |
Ted Kremenek | ec3bbf4 | 2014-03-29 00:35:20 +0000 | [diff] [blame] | 5023 | if (!StripParens) |
| 5024 | return E; |
| 5025 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5026 | return E ? E->IgnoreParens() : nullptr; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5027 | } |
| 5028 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5029 | //===----------------------------------------------------------------------===// |
| 5030 | // CFG Graphviz Visualization |
| 5031 | //===----------------------------------------------------------------------===// |
| 5032 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5033 | #ifndef NDEBUG |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5034 | static StmtPrinterHelper* GraphHelper; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5035 | #endif |
| 5036 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5037 | void CFG::viewCFG(const LangOptions &LO) const { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5038 | #ifndef NDEBUG |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5039 | StmtPrinterHelper H(this, LO); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5040 | GraphHelper = &H; |
| 5041 | llvm::ViewGraph(this,"CFG"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5042 | GraphHelper = nullptr; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5043 | #endif |
| 5044 | } |
| 5045 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5046 | namespace llvm { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5047 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5048 | template<> |
| 5049 | struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5050 | DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {} |
Tobias Grosser | 9fc223a | 2009-11-30 14:16:05 +0000 | [diff] [blame] | 5051 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5052 | static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) { |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5053 | #ifndef NDEBUG |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5054 | std::string OutSStr; |
| 5055 | llvm::raw_string_ostream Out(OutSStr); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5056 | print_block(Out,Graph, *Node, *GraphHelper, false, false); |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5057 | std::string& OutStr = Out.str(); |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5058 | |
| 5059 | if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); |
| 5060 | |
| 5061 | // Process string output to make it nicer... |
| 5062 | for (unsigned i = 0; i != OutStr.length(); ++i) |
| 5063 | if (OutStr[i] == '\n') { // Left justify |
| 5064 | OutStr[i] = '\\'; |
| 5065 | OutStr.insert(OutStr.begin()+i+1, 'l'); |
| 5066 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5067 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5068 | return OutStr; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5069 | #else |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5070 | return {}; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5071 | #endif |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5072 | } |
| 5073 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5074 | |
| 5075 | } // namespace llvm |