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" |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 32 | #include "clang/Analysis/ConstructionContext.h" |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 33 | #include "clang/Basic/Builtins.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 34 | #include "clang/Basic/ExceptionSpecificationType.h" |
| 35 | #include "clang/Basic/LLVM.h" |
| 36 | #include "clang/Basic/LangOptions.h" |
| 37 | #include "clang/Basic/SourceLocation.h" |
| 38 | #include "clang/Basic/Specifiers.h" |
| 39 | #include "llvm/ADT/APInt.h" |
| 40 | #include "llvm/ADT/APSInt.h" |
| 41 | #include "llvm/ADT/ArrayRef.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 42 | #include "llvm/ADT/DenseMap.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 43 | #include "llvm/ADT/Optional.h" |
| 44 | #include "llvm/ADT/STLExtras.h" |
| 45 | #include "llvm/ADT/SetVector.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 46 | #include "llvm/ADT/SmallPtrSet.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 47 | #include "llvm/ADT/SmallVector.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Allocator.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 49 | #include "llvm/Support/Casting.h" |
| 50 | #include "llvm/Support/Compiler.h" |
| 51 | #include "llvm/Support/DOTGraphTraits.h" |
| 52 | #include "llvm/Support/ErrorHandling.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 53 | #include "llvm/Support/Format.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 54 | #include "llvm/Support/GraphWriter.h" |
| 55 | #include "llvm/Support/SaveAndRestore.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 56 | #include "llvm/Support/raw_ostream.h" |
| 57 | #include <cassert> |
| 58 | #include <memory> |
| 59 | #include <string> |
| 60 | #include <tuple> |
| 61 | #include <utility> |
| 62 | #include <vector> |
Ted Kremenek | e5ccf9a | 2008-01-11 00:40:29 +0000 | [diff] [blame] | 63 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 64 | using namespace clang; |
| 65 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 66 | static SourceLocation GetEndLoc(Decl *D) { |
| 67 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 68 | if (Expr *Ex = VD->getInit()) |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 69 | return Ex->getSourceRange().getEnd(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 70 | return D->getLocation(); |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 71 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 72 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 73 | /// Helper for tryNormalizeBinaryOperator. Attempts to extract an IntegerLiteral |
| 74 | /// or EnumConstantDecl from the given Expr. If it fails, returns nullptr. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 75 | static const Expr *tryTransformToIntOrEnumConstant(const Expr *E) { |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 76 | E = E->IgnoreParens(); |
| 77 | if (isa<IntegerLiteral>(E)) |
| 78 | return E; |
| 79 | if (auto *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts())) |
| 80 | return isa<EnumConstantDecl>(DR->getDecl()) ? DR : nullptr; |
| 81 | return nullptr; |
| 82 | } |
| 83 | |
| 84 | /// Tries to interpret a binary operator into `Decl Op Expr` form, if Expr is |
| 85 | /// an integer literal or an enum constant. |
| 86 | /// |
| 87 | /// If this fails, at least one of the returned DeclRefExpr or Expr will be |
| 88 | /// null. |
| 89 | static std::tuple<const DeclRefExpr *, BinaryOperatorKind, const Expr *> |
| 90 | tryNormalizeBinaryOperator(const BinaryOperator *B) { |
| 91 | BinaryOperatorKind Op = B->getOpcode(); |
| 92 | |
| 93 | const Expr *MaybeDecl = B->getLHS(); |
| 94 | const Expr *Constant = tryTransformToIntOrEnumConstant(B->getRHS()); |
| 95 | // Expr looked like `0 == Foo` instead of `Foo == 0` |
| 96 | if (Constant == nullptr) { |
| 97 | // Flip the operator |
| 98 | if (Op == BO_GT) |
| 99 | Op = BO_LT; |
| 100 | else if (Op == BO_GE) |
| 101 | Op = BO_LE; |
| 102 | else if (Op == BO_LT) |
| 103 | Op = BO_GT; |
| 104 | else if (Op == BO_LE) |
| 105 | Op = BO_GE; |
| 106 | |
| 107 | MaybeDecl = B->getRHS(); |
| 108 | Constant = tryTransformToIntOrEnumConstant(B->getLHS()); |
| 109 | } |
| 110 | |
| 111 | auto *D = dyn_cast<DeclRefExpr>(MaybeDecl->IgnoreParenImpCasts()); |
| 112 | return std::make_tuple(D, Op, Constant); |
| 113 | } |
| 114 | |
| 115 | /// For an expression `x == Foo && x == Bar`, this determines whether the |
| 116 | /// `Foo` and `Bar` are either of the same enumeration type, or both integer |
| 117 | /// literals. |
| 118 | /// |
| 119 | /// It's an error to pass this arguments that are not either IntegerLiterals |
| 120 | /// or DeclRefExprs (that have decls of type EnumConstantDecl) |
| 121 | static bool areExprTypesCompatible(const Expr *E1, const Expr *E2) { |
| 122 | // User intent isn't clear if they're mixing int literals with enum |
| 123 | // constants. |
| 124 | if (isa<IntegerLiteral>(E1) != isa<IntegerLiteral>(E2)) |
| 125 | return false; |
| 126 | |
| 127 | // Integer literal comparisons, regardless of literal type, are acceptable. |
| 128 | if (isa<IntegerLiteral>(E1)) |
| 129 | return true; |
| 130 | |
| 131 | // IntegerLiterals are handled above and only EnumConstantDecls are expected |
| 132 | // beyond this point |
| 133 | assert(isa<DeclRefExpr>(E1) && isa<DeclRefExpr>(E2)); |
| 134 | auto *Decl1 = cast<DeclRefExpr>(E1)->getDecl(); |
| 135 | auto *Decl2 = cast<DeclRefExpr>(E2)->getDecl(); |
| 136 | |
| 137 | assert(isa<EnumConstantDecl>(Decl1) && isa<EnumConstantDecl>(Decl2)); |
| 138 | const DeclContext *DC1 = Decl1->getDeclContext(); |
| 139 | const DeclContext *DC2 = Decl2->getDeclContext(); |
| 140 | |
| 141 | assert(isa<EnumDecl>(DC1) && isa<EnumDecl>(DC2)); |
| 142 | return DC1 == DC2; |
| 143 | } |
| 144 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 145 | namespace { |
| 146 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 147 | class CFGBuilder; |
| 148 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 149 | /// The CFG builder uses a recursive algorithm to build the CFG. When |
| 150 | /// we process an expression, sometimes we know that we must add the |
| 151 | /// subexpressions as block-level expressions. For example: |
| 152 | /// |
| 153 | /// exp1 || exp2 |
| 154 | /// |
| 155 | /// When processing the '||' expression, we know that exp1 and exp2 |
| 156 | /// need to be added as block-level expressions, even though they |
| 157 | /// might not normally need to be. AddStmtChoice records this |
| 158 | /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then |
| 159 | /// the builder has an option not to add a subexpression as a |
| 160 | /// block-level expression. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 161 | class AddStmtChoice { |
| 162 | public: |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 163 | enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 }; |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 164 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 165 | AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {} |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 166 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 167 | bool alwaysAdd(CFGBuilder &builder, |
| 168 | const Stmt *stmt) const; |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 169 | |
| 170 | /// Return a copy of this object, except with the 'always-add' bit |
| 171 | /// set as specified. |
| 172 | AddStmtChoice withAlwaysAdd(bool alwaysAdd) const { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 173 | return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 176 | private: |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 177 | Kind kind; |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 178 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 179 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 180 | /// LocalScope - Node in tree of local scopes created for C++ implicit |
| 181 | /// destructor calls generation. It contains list of automatic variables |
| 182 | /// declared in the scope and link to position in previous scope this scope |
| 183 | /// began in. |
| 184 | /// |
| 185 | /// The process of creating local scopes is as follows: |
| 186 | /// - Init CFGBuilder::ScopePos with invalid position (equivalent for null), |
| 187 | /// - Before processing statements in scope (e.g. CompoundStmt) create |
| 188 | /// LocalScope object using CFGBuilder::ScopePos as link to previous scope |
| 189 | /// and set CFGBuilder::ScopePos to the end of new scope, |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 190 | /// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 191 | /// at this VarDecl, |
| 192 | /// - For every normal (without jump) end of scope add to CFGBlock destructors |
| 193 | /// for objects in the current scope, |
| 194 | /// - For every jump add to CFGBlock destructors for objects |
| 195 | /// between CFGBuilder::ScopePos and local scope position saved for jump |
| 196 | /// target. Thanks to C++ restrictions on goto jumps we can be sure that |
| 197 | /// jump target position will be on the path to root from CFGBuilder::ScopePos |
| 198 | /// (adding any variable that doesn't need constructor to be called to |
| 199 | /// LocalScope can break this assumption), |
| 200 | /// |
| 201 | class LocalScope { |
| 202 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 203 | friend class const_iterator; |
| 204 | |
| 205 | using AutomaticVarsTy = BumpVector<VarDecl *>; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 206 | |
| 207 | /// const_iterator - Iterates local scope backwards and jumps to previous |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 208 | /// scope on reaching the beginning of currently iterated scope. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 209 | class const_iterator { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 210 | const LocalScope* Scope = nullptr; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 211 | |
| 212 | /// VarIter is guaranteed to be greater then 0 for every valid iterator. |
| 213 | /// Invalid iterator (with null Scope) has VarIter equal to 0. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 214 | unsigned VarIter = 0; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 215 | |
| 216 | public: |
| 217 | /// Create invalid iterator. Dereferencing invalid iterator is not allowed. |
| 218 | /// Incrementing invalid iterator is allowed and will result in invalid |
| 219 | /// iterator. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 220 | const_iterator() = default; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 221 | |
| 222 | /// Create valid iterator. In case when S.Prev is an invalid iterator and |
| 223 | /// I is equal to 0, this will create invalid iterator. |
| 224 | const_iterator(const LocalScope& S, unsigned I) |
| 225 | : Scope(&S), VarIter(I) { |
| 226 | // Iterator to "end" of scope is not allowed. Handle it by going up |
| 227 | // in scopes tree possibly up to invalid iterator in the root. |
| 228 | if (VarIter == 0 && Scope) |
| 229 | *this = Scope->Prev; |
| 230 | } |
| 231 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 232 | VarDecl *const* operator->() const { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 233 | assert(Scope && "Dereferencing invalid iterator is not allowed"); |
| 234 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 235 | return &Scope->Vars[VarIter - 1]; |
| 236 | } |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 237 | |
| 238 | const VarDecl *getFirstVarInScope() const { |
| 239 | assert(Scope && "Dereferencing invalid iterator is not allowed"); |
| 240 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
| 241 | return Scope->Vars[0]; |
| 242 | } |
| 243 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 244 | VarDecl *operator*() const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 245 | return *this->operator->(); |
| 246 | } |
| 247 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 248 | const_iterator &operator++() { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 249 | if (!Scope) |
| 250 | return *this; |
| 251 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 252 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 253 | --VarIter; |
| 254 | if (VarIter == 0) |
| 255 | *this = Scope->Prev; |
| 256 | return *this; |
| 257 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 258 | const_iterator operator++(int) { |
| 259 | const_iterator P = *this; |
| 260 | ++*this; |
| 261 | return P; |
| 262 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 263 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 264 | bool operator==(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 265 | return Scope == rhs.Scope && VarIter == rhs.VarIter; |
| 266 | } |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 267 | bool operator!=(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 268 | return !(*this == rhs); |
| 269 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 270 | |
Aaron Ballman | 6734766 | 2015-02-15 22:00:28 +0000 | [diff] [blame] | 271 | explicit operator bool() const { |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 272 | return *this != const_iterator(); |
| 273 | } |
| 274 | |
| 275 | int distance(const_iterator L); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 276 | const_iterator shared_parent(const_iterator L); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 277 | bool pointsToFirstDeclaredVar() { return VarIter == 1; } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 278 | }; |
| 279 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 280 | private: |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 281 | BumpVectorContext ctx; |
| 282 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 283 | /// Automatic variables in order of declaration. |
| 284 | AutomaticVarsTy Vars; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 285 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 286 | /// Iterator to variable in previous scope that was declared just before |
| 287 | /// begin of this scope. |
| 288 | const_iterator Prev; |
| 289 | |
| 290 | public: |
| 291 | /// Constructs empty scope linked to previous scope in specified place. |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 292 | LocalScope(BumpVectorContext ctx, const_iterator P) |
| 293 | : ctx(std::move(ctx)), Vars(this->ctx, 4), Prev(P) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 294 | |
| 295 | /// Begin of scope in direction of CFG building (backwards). |
| 296 | const_iterator begin() const { return const_iterator(*this, Vars.size()); } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 297 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 298 | void addVar(VarDecl *VD) { |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 299 | Vars.push_back(VD, ctx); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 300 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 301 | }; |
| 302 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 303 | } // namespace |
| 304 | |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 305 | /// distance - Calculates distance from this to L. L must be reachable from this |
| 306 | /// (with use of ++ operator). Cost of calculating the distance is linear w.r.t. |
| 307 | /// number of scopes between this and L. |
| 308 | int LocalScope::const_iterator::distance(LocalScope::const_iterator L) { |
| 309 | int D = 0; |
| 310 | const_iterator F = *this; |
| 311 | while (F.Scope != L.Scope) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 312 | assert(F != const_iterator() && |
| 313 | "L iterator is not reachable from F iterator."); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 314 | D += F.VarIter; |
| 315 | F = F.Scope->Prev; |
| 316 | } |
| 317 | D += F.VarIter - L.VarIter; |
| 318 | return D; |
| 319 | } |
| 320 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 321 | /// Calculates the closest parent of this iterator |
| 322 | /// that is in a scope reachable through the parents of L. |
| 323 | /// I.e. when using 'goto' from this to L, the lifetime of all variables |
| 324 | /// between this and shared_parent(L) end. |
| 325 | LocalScope::const_iterator |
| 326 | LocalScope::const_iterator::shared_parent(LocalScope::const_iterator L) { |
| 327 | llvm::SmallPtrSet<const LocalScope *, 4> ScopesOfL; |
| 328 | while (true) { |
| 329 | ScopesOfL.insert(L.Scope); |
| 330 | if (L == const_iterator()) |
| 331 | break; |
| 332 | L = L.Scope->Prev; |
| 333 | } |
| 334 | |
| 335 | const_iterator F = *this; |
| 336 | while (true) { |
| 337 | if (ScopesOfL.count(F.Scope)) |
| 338 | return F; |
| 339 | assert(F != const_iterator() && |
| 340 | "L iterator is not reachable from F iterator."); |
| 341 | F = F.Scope->Prev; |
| 342 | } |
| 343 | } |
| 344 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 345 | namespace { |
| 346 | |
Jonathan Roelofs | 99bdd98 | 2015-05-19 18:51:56 +0000 | [diff] [blame] | 347 | /// Structure for specifying position in CFG during its build process. It |
| 348 | /// consists of CFGBlock that specifies position in CFG and |
| 349 | /// LocalScope::const_iterator that specifies position in LocalScope graph. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 350 | struct BlockScopePosPair { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 351 | CFGBlock *block = nullptr; |
| 352 | LocalScope::const_iterator scopePosition; |
| 353 | |
| 354 | BlockScopePosPair() = default; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 355 | BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 356 | : block(b), scopePosition(scopePos) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 357 | }; |
| 358 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 359 | /// TryResult - a class representing a variant over the values |
| 360 | /// 'true', 'false', or 'unknown'. This is returned by tryEvaluateBool, |
| 361 | /// and is used by the CFGBuilder to decide if a branch condition |
| 362 | /// can be decided up front during CFG construction. |
| 363 | class TryResult { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 364 | int X = -1; |
| 365 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 366 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 367 | TryResult() = default; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 368 | TryResult(bool b) : X(b ? 1 : 0) {} |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 369 | |
| 370 | bool isTrue() const { return X == 1; } |
| 371 | bool isFalse() const { return X == 0; } |
| 372 | bool isKnown() const { return X >= 0; } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 373 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 374 | void negate() { |
| 375 | assert(isKnown()); |
| 376 | X ^= 0x1; |
| 377 | } |
| 378 | }; |
| 379 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 380 | } // namespace |
| 381 | |
| 382 | static TryResult bothKnownTrue(TryResult R1, TryResult R2) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 383 | if (!R1.isKnown() || !R2.isKnown()) |
| 384 | return TryResult(); |
| 385 | return TryResult(R1.isTrue() && R2.isTrue()); |
| 386 | } |
| 387 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 388 | namespace { |
| 389 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 390 | class reverse_children { |
| 391 | llvm::SmallVector<Stmt *, 12> childrenBuf; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 392 | ArrayRef<Stmt *> children; |
| 393 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 394 | public: |
| 395 | reverse_children(Stmt *S); |
| 396 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 397 | using iterator = ArrayRef<Stmt *>::reverse_iterator; |
| 398 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 399 | iterator begin() const { return children.rbegin(); } |
| 400 | iterator end() const { return children.rend(); } |
| 401 | }; |
| 402 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 403 | } // namespace |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 404 | |
| 405 | reverse_children::reverse_children(Stmt *S) { |
| 406 | if (CallExpr *CE = dyn_cast<CallExpr>(S)) { |
| 407 | children = CE->getRawSubExprs(); |
| 408 | return; |
| 409 | } |
| 410 | switch (S->getStmtClass()) { |
Ted Kremenek | 7d86b9c | 2013-02-05 22:03:14 +0000 | [diff] [blame] | 411 | // Note: Fill in this switch with more cases we want to optimize. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 412 | case Stmt::InitListExprClass: { |
| 413 | InitListExpr *IE = cast<InitListExpr>(S); |
| 414 | children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()), |
| 415 | IE->getNumInits()); |
| 416 | return; |
| 417 | } |
| 418 | default: |
| 419 | break; |
| 420 | } |
| 421 | |
| 422 | // Default case for all other statements. |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 423 | for (Stmt *SubStmt : S->children()) |
| 424 | childrenBuf.push_back(SubStmt); |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 425 | |
| 426 | // This needs to be done *after* childrenBuf has been populated. |
| 427 | children = childrenBuf; |
| 428 | } |
| 429 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 430 | namespace { |
| 431 | |
Ted Kremenek | be9b33b | 2008-08-04 22:51:42 +0000 | [diff] [blame] | 432 | /// CFGBuilder - This class implements CFG construction from an AST. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 433 | /// The builder is stateful: an instance of the builder should be used to only |
| 434 | /// construct a single CFG. |
| 435 | /// |
| 436 | /// Example usage: |
| 437 | /// |
| 438 | /// CFGBuilder builder; |
Jonathan Roelofs | ab046c5 | 2015-07-27 16:05:36 +0000 | [diff] [blame] | 439 | /// std::unique_ptr<CFG> cfg = builder.buildCFG(decl, stmt1); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 440 | /// |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 441 | /// CFG construction is done via a recursive walk of an AST. We actually parse |
| 442 | /// the AST in reverse order so that the successor of a basic block is |
| 443 | /// constructed prior to its predecessor. This allows us to nicely capture |
| 444 | /// implicit fall-throughs without extra basic blocks. |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 445 | class CFGBuilder { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 446 | using JumpTarget = BlockScopePosPair; |
| 447 | using JumpSource = BlockScopePosPair; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 448 | |
Mike Stump | 0d76d07 | 2009-07-20 23:24:15 +0000 | [diff] [blame] | 449 | ASTContext *Context; |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 450 | std::unique_ptr<CFG> cfg; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 451 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 452 | // Current block. |
| 453 | CFGBlock *Block = nullptr; |
| 454 | |
| 455 | // Block after the current block. |
| 456 | CFGBlock *Succ = nullptr; |
| 457 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 458 | JumpTarget ContinueJumpTarget; |
| 459 | JumpTarget BreakJumpTarget; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 460 | JumpTarget SEHLeaveJumpTarget; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 461 | CFGBlock *SwitchTerminatedBlock = nullptr; |
| 462 | CFGBlock *DefaultCaseBlock = nullptr; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 463 | |
| 464 | // This can point either to a try or a __try block. The frontend forbids |
| 465 | // 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] | 466 | CFGBlock *TryTerminatedBlock = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 467 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 468 | // Current position in local scope. |
| 469 | LocalScope::const_iterator ScopePos; |
| 470 | |
| 471 | // LabelMap records the mapping from Label expressions to their jump targets. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 472 | using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 473 | LabelMapTy LabelMap; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 474 | |
| 475 | // A list of blocks that end with a "goto" that must be backpatched to their |
| 476 | // resolved targets upon completion of CFG construction. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 477 | using BackpatchBlocksTy = std::vector<JumpSource>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 478 | BackpatchBlocksTy BackpatchBlocks; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 479 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 480 | // A list of labels whose address has been taken (for indirect gotos). |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 481 | using LabelSetTy = llvm::SmallSetVector<LabelDecl *, 8>; |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 482 | LabelSetTy AddressTakenLabels; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 483 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 484 | // Information about the currently visited C++ object construction site. |
| 485 | // This is set in the construction trigger and read when the constructor |
| 486 | // itself is being visited. |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 487 | llvm::DenseMap<CXXConstructExpr *, const ConstructionContextLayer *> |
Artem Dergachev | 5e2f6ba | 2018-02-23 22:49:25 +0000 | [diff] [blame] | 488 | ConstructionContextMap; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 489 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 490 | using DeclsWithEndedScopeSetTy = llvm::SmallSetVector<VarDecl *, 16>; |
| 491 | DeclsWithEndedScopeSetTy DeclsWithEndedScope; |
| 492 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 493 | bool badCFG = false; |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 494 | const CFG::BuildOptions &BuildOpts; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 495 | |
| 496 | // State to track for building switch statements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 497 | bool switchExclusivelyCovered = false; |
| 498 | Expr::EvalResult *switchCond = nullptr; |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 499 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 500 | CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry = nullptr; |
| 501 | const Stmt *lastLookup = nullptr; |
Zhongxing Xu | d38fb84 | 2010-09-16 03:28:18 +0000 | [diff] [blame] | 502 | |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 503 | // Caches boolean evaluations of expressions to avoid multiple re-evaluations |
| 504 | // during construction of branches for chained logical operators. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 505 | using CachedBoolEvalsTy = llvm::DenseMap<Expr *, TryResult>; |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 506 | CachedBoolEvalsTy CachedBoolEvals; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 507 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 508 | public: |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 509 | explicit CFGBuilder(ASTContext *astContext, |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 510 | const CFG::BuildOptions &buildOpts) |
| 511 | : Context(astContext), cfg(new CFG()), // crew a new CFG |
Artem Dergachev | 5e2f6ba | 2018-02-23 22:49:25 +0000 | [diff] [blame] | 512 | ConstructionContextMap(), BuildOpts(buildOpts) {} |
| 513 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 514 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 515 | // buildCFG - Used by external clients to construct the CFG. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 516 | std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 517 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 518 | bool alwaysAdd(const Stmt *stmt); |
| 519 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 520 | private: |
| 521 | // Visitors to walk an AST and construct the CFG. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 522 | CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); |
| 523 | CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 524 | CFGBlock *VisitBreakStmt(BreakStmt *B); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 525 | CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 526 | CFGBlock *VisitCaseStmt(CaseStmt *C); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 527 | CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 528 | CFGBlock *VisitCompoundStmt(CompoundStmt *C); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 529 | CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C, |
| 530 | AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 531 | CFGBlock *VisitContinueStmt(ContinueStmt *C); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 532 | CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 533 | AddStmtChoice asc); |
| 534 | CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S); |
| 535 | CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc); |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 536 | CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 537 | CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 538 | CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S); |
| 539 | CFGBlock *VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 540 | AddStmtChoice asc); |
| 541 | CFGBlock *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 542 | AddStmtChoice asc); |
| 543 | CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T); |
| 544 | CFGBlock *VisitCXXTryStmt(CXXTryStmt *S); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 545 | CFGBlock *VisitDeclStmt(DeclStmt *DS); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 546 | CFGBlock *VisitDeclSubExpr(DeclStmt *DS); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 547 | CFGBlock *VisitDefaultStmt(DefaultStmt *D); |
| 548 | CFGBlock *VisitDoStmt(DoStmt *D); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 549 | CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 550 | CFGBlock *VisitForStmt(ForStmt *F); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 551 | CFGBlock *VisitGotoStmt(GotoStmt *G); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 552 | CFGBlock *VisitIfStmt(IfStmt *I); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 553 | CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 554 | CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I); |
| 555 | CFGBlock *VisitLabelStmt(LabelStmt *L); |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 556 | CFGBlock *VisitBlockExpr(BlockExpr *E, AddStmtChoice asc); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 557 | CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 558 | CFGBlock *VisitLogicalOperator(BinaryOperator *B); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 559 | std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B, |
| 560 | Stmt *Term, |
| 561 | CFGBlock *TrueBlock, |
| 562 | CFGBlock *FalseBlock); |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 563 | CFGBlock *VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE, |
| 564 | AddStmtChoice asc); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 565 | CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 566 | CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); |
| 567 | CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S); |
| 568 | CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); |
| 569 | CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 570 | CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 571 | CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S); |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 572 | CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 573 | CFGBlock *VisitReturnStmt(ReturnStmt *R); |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 574 | CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S); |
| 575 | CFGBlock *VisitSEHFinallyStmt(SEHFinallyStmt *S); |
| 576 | CFGBlock *VisitSEHLeaveStmt(SEHLeaveStmt *S); |
| 577 | CFGBlock *VisitSEHTryStmt(SEHTryStmt *S); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 578 | CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 579 | CFGBlock *VisitSwitchStmt(SwitchStmt *S); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 580 | CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 581 | AddStmtChoice asc); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 582 | CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 583 | CFGBlock *VisitWhileStmt(WhileStmt *W); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 584 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 585 | CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd); |
| 586 | CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 587 | CFGBlock *VisitChildren(Stmt *S); |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 588 | CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 589 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 590 | void maybeAddScopeBeginForVarDecl(CFGBlock *B, const VarDecl *VD, |
| 591 | const Stmt *S) { |
| 592 | if (ScopePos && (VD == ScopePos.getFirstVarInScope())) |
| 593 | appendScopeBegin(B, VD, S); |
| 594 | } |
| 595 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 596 | /// When creating the CFG for temporary destructors, we want to mirror the |
| 597 | /// branch structure of the corresponding constructor calls. |
| 598 | /// Thus, while visiting a statement for temporary destructors, we keep a |
| 599 | /// context to keep track of the following information: |
| 600 | /// - whether a subexpression is executed unconditionally |
| 601 | /// - if a subexpression is executed conditionally, the first |
| 602 | /// CXXBindTemporaryExpr we encounter in that subexpression (which |
| 603 | /// corresponds to the last temporary destructor we have to call for this |
| 604 | /// subexpression) and the CFG block at that point (which will become the |
| 605 | /// successor block when inserting the decision point). |
| 606 | /// |
| 607 | /// That way, we can build the branch structure for temporary destructors as |
| 608 | /// follows: |
| 609 | /// 1. If a subexpression is executed unconditionally, we add the temporary |
| 610 | /// destructor calls to the current block. |
| 611 | /// 2. If a subexpression is executed conditionally, when we encounter a |
| 612 | /// CXXBindTemporaryExpr: |
| 613 | /// a) If it is the first temporary destructor call in the subexpression, |
| 614 | /// we remember the CXXBindTemporaryExpr and the current block in the |
| 615 | /// TempDtorContext; we start a new block, and insert the temporary |
| 616 | /// destructor call. |
| 617 | /// b) Otherwise, add the temporary destructor call to the current block. |
| 618 | /// 3. When we finished visiting a conditionally executed subexpression, |
| 619 | /// and we found at least one temporary constructor during the visitation |
| 620 | /// (2.a has executed), we insert a decision block that uses the |
| 621 | /// CXXBindTemporaryExpr as terminator, and branches to the current block |
| 622 | /// if the CXXBindTemporaryExpr was marked executed, and otherwise |
| 623 | /// branches to the stored successor. |
| 624 | struct TempDtorContext { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 625 | TempDtorContext() = default; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 626 | TempDtorContext(TryResult KnownExecuted) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 627 | : IsConditional(true), KnownExecuted(KnownExecuted) {} |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 628 | |
| 629 | /// 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] | 630 | /// call. This is the case when the temporary destructor is |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 631 | /// conditionally executed, and it is the first one we encounter while |
| 632 | /// visiting a subexpression - other temporary destructors at the same level |
| 633 | /// will be added to the same block and are executed under the same |
| 634 | /// condition. |
| 635 | bool needsTempDtorBranch() const { |
| 636 | return IsConditional && !TerminatorExpr; |
| 637 | } |
| 638 | |
| 639 | /// Remember the successor S of a temporary destructor decision branch for |
| 640 | /// the corresponding CXXBindTemporaryExpr E. |
| 641 | void setDecisionPoint(CFGBlock *S, CXXBindTemporaryExpr *E) { |
| 642 | Succ = S; |
| 643 | TerminatorExpr = E; |
| 644 | } |
| 645 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 646 | const bool IsConditional = false; |
| 647 | const TryResult KnownExecuted = true; |
| 648 | CFGBlock *Succ = nullptr; |
| 649 | CXXBindTemporaryExpr *TerminatorExpr = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 650 | }; |
| 651 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 652 | // Visitors to walk an AST and generate destructors of temporaries in |
| 653 | // full expression. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 654 | CFGBlock *VisitForTemporaryDtors(Stmt *E, bool BindToTemporary, |
| 655 | TempDtorContext &Context); |
| 656 | CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E, TempDtorContext &Context); |
| 657 | CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E, |
| 658 | TempDtorContext &Context); |
| 659 | CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors( |
| 660 | CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context); |
| 661 | CFGBlock *VisitConditionalOperatorForTemporaryDtors( |
| 662 | AbstractConditionalOperator *E, bool BindToTemporary, |
| 663 | TempDtorContext &Context); |
| 664 | void InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 665 | CFGBlock *FalseSucc = nullptr); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 666 | |
Ted Kremenek | 6065ef6 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 667 | // NYS == Not Yet Supported |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 668 | CFGBlock *NYS() { |
Ted Kremenek | b64d183 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 669 | badCFG = true; |
| 670 | return Block; |
| 671 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 672 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 673 | // Remember to apply the construction context based on the current \p Layer |
| 674 | // when constructing the CFG element for \p CE. |
| 675 | void consumeConstructionContext(const ConstructionContextLayer *Layer, |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 676 | CXXConstructExpr *CE); |
| 677 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 678 | // Scan \p Child statement to find constructors in it, while keeping in mind |
| 679 | // that its parent statement is providing a partial construction context |
| 680 | // described by \p Layer. If a constructor is found, it would be assigned |
| 681 | // the context based on the layer. If an additional construction context layer |
| 682 | // is found, the function recurses into that. |
| 683 | void findConstructionContexts(const ConstructionContextLayer *Layer, |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 684 | Stmt *Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 685 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 686 | // Unset the construction context after consuming it. This is done immediately |
| 687 | // after adding the CFGConstructor element, so there's no need to |
| 688 | // do this manually in every Visit... function. |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 689 | void cleanupConstructionContext(CXXConstructExpr *CE); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 690 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 691 | void autoCreateBlock() { if (!Block) Block = createBlock(); } |
| 692 | CFGBlock *createBlock(bool add_successor = true); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 693 | CFGBlock *createNoReturnBlock(); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 694 | |
Zhongxing Xu | ea9fcff | 2010-06-03 06:43:23 +0000 | [diff] [blame] | 695 | CFGBlock *addStmt(Stmt *S) { |
| 696 | return Visit(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 697 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 698 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 699 | CFGBlock *addInitializer(CXXCtorInitializer *I); |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 700 | void addLoopExit(const Stmt *LoopStmt); |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 701 | void addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 702 | LocalScope::const_iterator E, Stmt *S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 703 | void addLifetimeEnds(LocalScope::const_iterator B, |
| 704 | LocalScope::const_iterator E, Stmt *S); |
| 705 | void addAutomaticObjHandling(LocalScope::const_iterator B, |
| 706 | LocalScope::const_iterator E, Stmt *S); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 707 | void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 708 | void addScopesEnd(LocalScope::const_iterator B, LocalScope::const_iterator E, |
| 709 | Stmt *S); |
| 710 | |
| 711 | void getDeclsWithEndedScope(LocalScope::const_iterator B, |
| 712 | LocalScope::const_iterator E, Stmt *S); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 713 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 714 | // Local scopes creation. |
| 715 | LocalScope* createOrReuseLocalScope(LocalScope* Scope); |
| 716 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 717 | void addLocalScopeForStmt(Stmt *S); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 718 | LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS, |
| 719 | LocalScope* Scope = nullptr); |
| 720 | LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = nullptr); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 721 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 722 | void addLocalScopeAndDtors(Stmt *S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 723 | |
| 724 | // Interface to CFGBlock - adding CFGElements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 725 | |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 726 | void appendStmt(CFGBlock *B, const Stmt *S) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 727 | if (alwaysAdd(S) && cachedEntry) |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 728 | cachedEntry->second = B; |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 729 | |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 730 | // All block-level expressions should have already been IgnoreParens()ed. |
| 731 | assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 732 | B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 733 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 734 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 735 | void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) { |
| 736 | if (BuildOpts.AddRichCXXConstructors) { |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 737 | if (const ConstructionContextLayer *Layer = |
| 738 | ConstructionContextMap.lookup(CE)) { |
| 739 | const ConstructionContext *CC = |
| 740 | ConstructionContext::createFromLayers(cfg->getBumpVectorContext(), |
| 741 | Layer); |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 742 | B->appendConstructor(CE, CC, cfg->getBumpVectorContext()); |
| 743 | cleanupConstructionContext(CE); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 744 | return; |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | // No valid construction context found. Fall back to statement. |
| 749 | B->appendStmt(CE, cfg->getBumpVectorContext()); |
| 750 | } |
| 751 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 752 | void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 753 | B->appendInitializer(I, cfg->getBumpVectorContext()); |
| 754 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 755 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 756 | void appendNewAllocator(CFGBlock *B, CXXNewExpr *NE) { |
| 757 | B->appendNewAllocator(NE, cfg->getBumpVectorContext()); |
| 758 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 759 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 760 | void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) { |
| 761 | B->appendBaseDtor(BS, cfg->getBumpVectorContext()); |
| 762 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 763 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 764 | void appendMemberDtor(CFGBlock *B, FieldDecl *FD) { |
| 765 | B->appendMemberDtor(FD, cfg->getBumpVectorContext()); |
| 766 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 767 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 768 | void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) { |
| 769 | B->appendTemporaryDtor(E, cfg->getBumpVectorContext()); |
| 770 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 771 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 772 | void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 773 | B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext()); |
| 774 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 775 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 776 | void appendLifetimeEnds(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 777 | B->appendLifetimeEnds(VD, S, cfg->getBumpVectorContext()); |
| 778 | } |
| 779 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 780 | void appendLoopExit(CFGBlock *B, const Stmt *LoopStmt) { |
| 781 | B->appendLoopExit(LoopStmt, cfg->getBumpVectorContext()); |
| 782 | } |
| 783 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 784 | void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) { |
| 785 | B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext()); |
| 786 | } |
| 787 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 788 | void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 789 | LocalScope::const_iterator B, LocalScope::const_iterator E); |
| 790 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 791 | void prependAutomaticObjLifetimeWithTerminator(CFGBlock *Blk, |
| 792 | LocalScope::const_iterator B, |
| 793 | LocalScope::const_iterator E); |
| 794 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 795 | const VarDecl * |
| 796 | prependAutomaticObjScopeEndWithTerminator(CFGBlock *Blk, |
| 797 | LocalScope::const_iterator B, |
| 798 | LocalScope::const_iterator E); |
| 799 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 800 | void addSuccessor(CFGBlock *B, CFGBlock *S, bool IsReachable = true) { |
| 801 | B->addSuccessor(CFGBlock::AdjacentBlock(S, IsReachable), |
| 802 | cfg->getBumpVectorContext()); |
| 803 | } |
| 804 | |
| 805 | /// Add a reachable successor to a block, with the alternate variant that is |
| 806 | /// unreachable. |
| 807 | void addSuccessor(CFGBlock *B, CFGBlock *ReachableBlock, CFGBlock *AltBlock) { |
| 808 | B->addSuccessor(CFGBlock::AdjacentBlock(ReachableBlock, AltBlock), |
| 809 | cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 810 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 811 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 812 | void appendScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 813 | if (BuildOpts.AddScopes) |
| 814 | B->appendScopeBegin(VD, S, cfg->getBumpVectorContext()); |
| 815 | } |
| 816 | |
| 817 | void prependScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 818 | if (BuildOpts.AddScopes) |
| 819 | B->prependScopeBegin(VD, S, cfg->getBumpVectorContext()); |
| 820 | } |
| 821 | |
| 822 | void appendScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 823 | if (BuildOpts.AddScopes) |
| 824 | B->appendScopeEnd(VD, S, cfg->getBumpVectorContext()); |
| 825 | } |
| 826 | |
| 827 | void prependScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 828 | if (BuildOpts.AddScopes) |
| 829 | B->prependScopeEnd(VD, S, cfg->getBumpVectorContext()); |
| 830 | } |
| 831 | |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 832 | /// \brief Find a relational comparison with an expression evaluating to a |
| 833 | /// boolean and a constant other than 0 and 1. |
| 834 | /// e.g. if ((x < y) == 10) |
| 835 | TryResult checkIncorrectRelationalOperator(const BinaryOperator *B) { |
| 836 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 837 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 838 | |
| 839 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 840 | const Expr *BoolExpr = RHSExpr; |
| 841 | bool IntFirst = true; |
| 842 | if (!IntLiteral) { |
| 843 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 844 | BoolExpr = LHSExpr; |
| 845 | IntFirst = false; |
| 846 | } |
| 847 | |
| 848 | if (!IntLiteral || !BoolExpr->isKnownToHaveBooleanValue()) |
| 849 | return TryResult(); |
| 850 | |
| 851 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 852 | if ((IntValue == 1) || (IntValue == 0)) |
| 853 | return TryResult(); |
| 854 | |
| 855 | bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || |
| 856 | !IntValue.isNegative(); |
| 857 | |
| 858 | BinaryOperatorKind Bok = B->getOpcode(); |
| 859 | if (Bok == BO_GT || Bok == BO_GE) { |
| 860 | // Always true for 10 > bool and bool > -1 |
| 861 | // Always false for -1 > bool and bool > 10 |
| 862 | return TryResult(IntFirst == IntLarger); |
| 863 | } else { |
| 864 | // Always true for -1 < bool and bool < 10 |
| 865 | // Always false for 10 < bool and bool < -1 |
| 866 | return TryResult(IntFirst != IntLarger); |
| 867 | } |
| 868 | } |
| 869 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 870 | /// Find an incorrect equality comparison. Either with an expression |
| 871 | /// evaluating to a boolean and a constant other than 0 and 1. |
| 872 | /// e.g. if (!x == 10) or a bitwise and/or operation that always evaluates to |
| 873 | /// true/false e.q. (x & 8) == 4. |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 874 | TryResult checkIncorrectEqualityOperator(const BinaryOperator *B) { |
| 875 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 876 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 877 | |
| 878 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 879 | const Expr *BoolExpr = RHSExpr; |
| 880 | |
| 881 | if (!IntLiteral) { |
| 882 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 883 | BoolExpr = LHSExpr; |
| 884 | } |
| 885 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 886 | if (!IntLiteral) |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 887 | return TryResult(); |
| 888 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 889 | const BinaryOperator *BitOp = dyn_cast<BinaryOperator>(BoolExpr); |
| 890 | if (BitOp && (BitOp->getOpcode() == BO_And || |
| 891 | BitOp->getOpcode() == BO_Or)) { |
| 892 | const Expr *LHSExpr2 = BitOp->getLHS()->IgnoreParens(); |
| 893 | const Expr *RHSExpr2 = BitOp->getRHS()->IgnoreParens(); |
| 894 | |
| 895 | const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2); |
| 896 | |
| 897 | if (!IntLiteral2) |
| 898 | IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2); |
| 899 | |
| 900 | if (!IntLiteral2) |
| 901 | return TryResult(); |
| 902 | |
| 903 | llvm::APInt L1 = IntLiteral->getValue(); |
| 904 | llvm::APInt L2 = IntLiteral2->getValue(); |
| 905 | if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) || |
| 906 | (BitOp->getOpcode() == BO_Or && (L2 | L1) != L1)) { |
| 907 | if (BuildOpts.Observer) |
| 908 | BuildOpts.Observer->compareBitwiseEquality(B, |
| 909 | B->getOpcode() != BO_EQ); |
| 910 | TryResult(B->getOpcode() != BO_EQ); |
| 911 | } |
| 912 | } else if (BoolExpr->isKnownToHaveBooleanValue()) { |
| 913 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 914 | if ((IntValue == 1) || (IntValue == 0)) { |
| 915 | return TryResult(); |
| 916 | } |
| 917 | return TryResult(B->getOpcode() != BO_EQ); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 918 | } |
| 919 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 920 | return TryResult(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | TryResult analyzeLogicOperatorCondition(BinaryOperatorKind Relation, |
| 924 | const llvm::APSInt &Value1, |
| 925 | const llvm::APSInt &Value2) { |
| 926 | assert(Value1.isSigned() == Value2.isSigned()); |
| 927 | switch (Relation) { |
| 928 | default: |
| 929 | return TryResult(); |
| 930 | case BO_EQ: |
| 931 | return TryResult(Value1 == Value2); |
| 932 | case BO_NE: |
| 933 | return TryResult(Value1 != Value2); |
| 934 | case BO_LT: |
| 935 | return TryResult(Value1 < Value2); |
| 936 | case BO_LE: |
| 937 | return TryResult(Value1 <= Value2); |
| 938 | case BO_GT: |
| 939 | return TryResult(Value1 > Value2); |
| 940 | case BO_GE: |
| 941 | return TryResult(Value1 >= Value2); |
| 942 | } |
| 943 | } |
| 944 | |
| 945 | /// \brief Find a pair of comparison expressions with or without parentheses |
| 946 | /// with a shared variable and constants and a logical operator between them |
| 947 | /// that always evaluates to either true or false. |
| 948 | /// e.g. if (x != 3 || x != 4) |
| 949 | TryResult checkIncorrectLogicOperator(const BinaryOperator *B) { |
| 950 | assert(B->isLogicalOp()); |
| 951 | const BinaryOperator *LHS = |
| 952 | dyn_cast<BinaryOperator>(B->getLHS()->IgnoreParens()); |
| 953 | const BinaryOperator *RHS = |
| 954 | dyn_cast<BinaryOperator>(B->getRHS()->IgnoreParens()); |
| 955 | if (!LHS || !RHS) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 956 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 957 | |
| 958 | if (!LHS->isComparisonOp() || !RHS->isComparisonOp()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 959 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 960 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 961 | const DeclRefExpr *Decl1; |
| 962 | const Expr *Expr1; |
| 963 | BinaryOperatorKind BO1; |
| 964 | std::tie(Decl1, BO1, Expr1) = tryNormalizeBinaryOperator(LHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 965 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 966 | if (!Decl1 || !Expr1) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 967 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 968 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 969 | const DeclRefExpr *Decl2; |
| 970 | const Expr *Expr2; |
| 971 | BinaryOperatorKind BO2; |
| 972 | std::tie(Decl2, BO2, Expr2) = tryNormalizeBinaryOperator(RHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 973 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 974 | if (!Decl2 || !Expr2) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 975 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 976 | |
| 977 | // Check that it is the same variable on both sides. |
| 978 | if (Decl1->getDecl() != Decl2->getDecl()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 979 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 980 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 981 | // Make sure the user's intent is clear (e.g. they're comparing against two |
| 982 | // int literals, or two things from the same enum) |
| 983 | if (!areExprTypesCompatible(Expr1, Expr2)) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 984 | return {}; |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 985 | |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 986 | llvm::APSInt L1, L2; |
| 987 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 988 | if (!Expr1->EvaluateAsInt(L1, *Context) || |
| 989 | !Expr2->EvaluateAsInt(L2, *Context)) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 990 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 991 | |
| 992 | // Can't compare signed with unsigned or with different bit width. |
| 993 | if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 994 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 995 | |
| 996 | // Values that will be used to determine if result of logical |
| 997 | // operator is always true/false |
| 998 | const llvm::APSInt Values[] = { |
| 999 | // Value less than both Value1 and Value2 |
| 1000 | llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()), |
| 1001 | // L1 |
| 1002 | L1, |
| 1003 | // Value between Value1 and Value2 |
| 1004 | ((L1 < L2) ? L1 : L2) + llvm::APSInt(llvm::APInt(L1.getBitWidth(), 1), |
| 1005 | L1.isUnsigned()), |
| 1006 | // L2 |
| 1007 | L2, |
| 1008 | // Value greater than both Value1 and Value2 |
| 1009 | llvm::APSInt::getMaxValue(L1.getBitWidth(), L1.isUnsigned()), |
| 1010 | }; |
| 1011 | |
| 1012 | // Check whether expression is always true/false by evaluating the following |
| 1013 | // * variable x is less than the smallest literal. |
| 1014 | // * variable x is equal to the smallest literal. |
| 1015 | // * Variable x is between smallest and largest literal. |
| 1016 | // * Variable x is equal to the largest literal. |
| 1017 | // * Variable x is greater than largest literal. |
| 1018 | bool AlwaysTrue = true, AlwaysFalse = true; |
Benjamin Kramer | 2e018ef | 2016-05-27 13:36:58 +0000 | [diff] [blame] | 1019 | for (const llvm::APSInt &Value : Values) { |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1020 | TryResult Res1, Res2; |
| 1021 | Res1 = analyzeLogicOperatorCondition(BO1, Value, L1); |
| 1022 | Res2 = analyzeLogicOperatorCondition(BO2, Value, L2); |
| 1023 | |
| 1024 | if (!Res1.isKnown() || !Res2.isKnown()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1025 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1026 | |
| 1027 | if (B->getOpcode() == BO_LAnd) { |
| 1028 | AlwaysTrue &= (Res1.isTrue() && Res2.isTrue()); |
| 1029 | AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue()); |
| 1030 | } else { |
| 1031 | AlwaysTrue &= (Res1.isTrue() || Res2.isTrue()); |
| 1032 | AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue()); |
| 1033 | } |
| 1034 | } |
| 1035 | |
| 1036 | if (AlwaysTrue || AlwaysFalse) { |
| 1037 | if (BuildOpts.Observer) |
| 1038 | BuildOpts.Observer->compareAlwaysTrue(B, AlwaysTrue); |
| 1039 | return TryResult(AlwaysTrue); |
| 1040 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1041 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1042 | } |
| 1043 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 1044 | /// Try and evaluate an expression to an integer constant. |
| 1045 | bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) { |
| 1046 | if (!BuildOpts.PruneTriviallyFalseEdges) |
| 1047 | return false; |
| 1048 | return !S->isTypeDependent() && |
Ted Kremenek | 352a708 | 2011-04-04 20:30:58 +0000 | [diff] [blame] | 1049 | !S->isValueDependent() && |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 1050 | S->EvaluateAsRValue(outResult, *Context); |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 1051 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1052 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1053 | /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1 |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1054 | /// if we can evaluate to a known value, otherwise return -1. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1055 | TryResult tryEvaluateBool(Expr *S) { |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 1056 | if (!BuildOpts.PruneTriviallyFalseEdges || |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1057 | S->isTypeDependent() || S->isValueDependent()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1058 | return {}; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1059 | |
| 1060 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) { |
| 1061 | if (Bop->isLogicalOp()) { |
| 1062 | // Check the cache first. |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 1063 | CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S); |
| 1064 | if (I != CachedBoolEvals.end()) |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1065 | return I->second; // already in map; |
NAKAMURA Takumi | f0434b0 | 2012-03-25 06:30:32 +0000 | [diff] [blame] | 1066 | |
| 1067 | // Retrieve result at first, or the map might be updated. |
| 1068 | TryResult Result = evaluateAsBooleanConditionNoCache(S); |
| 1069 | CachedBoolEvals[S] = Result; // update or insert |
| 1070 | return Result; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1071 | } |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1072 | else { |
| 1073 | switch (Bop->getOpcode()) { |
| 1074 | default: break; |
| 1075 | // For 'x & 0' and 'x * 0', we can determine that |
| 1076 | // the value is always false. |
| 1077 | case BO_Mul: |
| 1078 | case BO_And: { |
| 1079 | // If either operand is zero, we know the value |
| 1080 | // must be false. |
| 1081 | llvm::APSInt IntVal; |
| 1082 | if (Bop->getLHS()->EvaluateAsInt(IntVal, *Context)) { |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1083 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1084 | return TryResult(false); |
| 1085 | } |
| 1086 | } |
| 1087 | if (Bop->getRHS()->EvaluateAsInt(IntVal, *Context)) { |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1088 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1089 | return TryResult(false); |
| 1090 | } |
| 1091 | } |
| 1092 | } |
| 1093 | break; |
| 1094 | } |
| 1095 | } |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1096 | } |
| 1097 | |
| 1098 | return evaluateAsBooleanConditionNoCache(S); |
| 1099 | } |
| 1100 | |
| 1101 | /// \brief Evaluate as boolean \param E without using the cache. |
| 1102 | TryResult evaluateAsBooleanConditionNoCache(Expr *E) { |
| 1103 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) { |
| 1104 | if (Bop->isLogicalOp()) { |
| 1105 | TryResult LHS = tryEvaluateBool(Bop->getLHS()); |
| 1106 | if (LHS.isKnown()) { |
| 1107 | // We were able to evaluate the LHS, see if we can get away with not |
| 1108 | // evaluating the RHS: 0 && X -> 0, 1 || X -> 1 |
| 1109 | if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1110 | return LHS.isTrue(); |
| 1111 | |
| 1112 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1113 | if (RHS.isKnown()) { |
| 1114 | if (Bop->getOpcode() == BO_LOr) |
| 1115 | return LHS.isTrue() || RHS.isTrue(); |
| 1116 | else |
| 1117 | return LHS.isTrue() && RHS.isTrue(); |
| 1118 | } |
| 1119 | } else { |
| 1120 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1121 | if (RHS.isKnown()) { |
| 1122 | // We can't evaluate the LHS; however, sometimes the result |
| 1123 | // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. |
| 1124 | if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1125 | return RHS.isTrue(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1126 | } else { |
| 1127 | TryResult BopRes = checkIncorrectLogicOperator(Bop); |
| 1128 | if (BopRes.isKnown()) |
| 1129 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1130 | } |
| 1131 | } |
| 1132 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1133 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1134 | } else if (Bop->isEqualityOp()) { |
| 1135 | TryResult BopRes = checkIncorrectEqualityOperator(Bop); |
| 1136 | if (BopRes.isKnown()) |
| 1137 | return BopRes.isTrue(); |
| 1138 | } else if (Bop->isRelationalOp()) { |
| 1139 | TryResult BopRes = checkIncorrectRelationalOperator(Bop); |
| 1140 | if (BopRes.isKnown()) |
| 1141 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1142 | } |
| 1143 | } |
| 1144 | |
| 1145 | bool Result; |
| 1146 | if (E->EvaluateAsBooleanCondition(Result, *Context)) |
| 1147 | return Result; |
| 1148 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1149 | return {}; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1150 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1151 | |
| 1152 | bool hasTrivialDestructor(VarDecl *VD); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1153 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1154 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1155 | } // namespace |
| 1156 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1157 | inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder, |
| 1158 | const Stmt *stmt) const { |
| 1159 | return builder.alwaysAdd(stmt) || kind == AlwaysAdd; |
| 1160 | } |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1161 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1162 | bool CFGBuilder::alwaysAdd(const Stmt *stmt) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1163 | bool shouldAdd = BuildOpts.alwaysAdd(stmt); |
| 1164 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1165 | if (!BuildOpts.forcedBlkExprs) |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1166 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1167 | |
| 1168 | if (lastLookup == stmt) { |
| 1169 | if (cachedEntry) { |
| 1170 | assert(cachedEntry->first == stmt); |
| 1171 | return true; |
| 1172 | } |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1173 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1174 | } |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1175 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1176 | lastLookup = stmt; |
| 1177 | |
| 1178 | // Perform the lookup! |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1179 | CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs; |
| 1180 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1181 | if (!fb) { |
| 1182 | // No need to update 'cachedEntry', since it will always be null. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1183 | assert(!cachedEntry); |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1184 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1185 | } |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1186 | |
| 1187 | CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt); |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1188 | if (itr == fb->end()) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1189 | cachedEntry = nullptr; |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1190 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1191 | } |
| 1192 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1193 | cachedEntry = &*itr; |
| 1194 | return true; |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1195 | } |
| 1196 | |
Douglas Gregor | 4619e43 | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1197 | // FIXME: Add support for dependent-sized array types in C++? |
| 1198 | // 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] | 1199 | static const VariableArrayType *FindVA(const Type *t) { |
| 1200 | while (const ArrayType *vt = dyn_cast<ArrayType>(t)) { |
| 1201 | if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt)) |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1202 | if (vat->getSizeExpr()) |
| 1203 | return vat; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1204 | |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1205 | t = vt->getElementType().getTypePtr(); |
| 1206 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1207 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1208 | return nullptr; |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1209 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1210 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1211 | void CFGBuilder::consumeConstructionContext( |
| 1212 | const ConstructionContextLayer *Layer, CXXConstructExpr *CE) { |
| 1213 | if (const ConstructionContextLayer *PreviouslyStoredLayer = |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1214 | ConstructionContextMap.lookup(CE)) { |
George Burgess IV | a47e1b7 | 2018-03-06 07:45:11 +0000 | [diff] [blame] | 1215 | (void)PreviouslyStoredLayer; |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1216 | // We might have visited this child when we were finding construction |
| 1217 | // contexts within its parents. |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1218 | assert(PreviouslyStoredLayer->isStrictlyMoreSpecificThan(Layer) && |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1219 | "Already within a different construction context!"); |
| 1220 | } else { |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1221 | ConstructionContextMap[CE] = Layer; |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1222 | } |
| 1223 | } |
| 1224 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1225 | void CFGBuilder::findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1226 | const ConstructionContextLayer *Layer, Stmt *Child) { |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1227 | if (!BuildOpts.AddRichCXXConstructors) |
| 1228 | return; |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1229 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1230 | if (!Child) |
| 1231 | return; |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1232 | |
| 1233 | switch(Child->getStmtClass()) { |
| 1234 | case Stmt::CXXConstructExprClass: |
| 1235 | case Stmt::CXXTemporaryObjectExprClass: { |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1236 | consumeConstructionContext(Layer, cast<CXXConstructExpr>(Child)); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1237 | break; |
| 1238 | } |
| 1239 | case Stmt::ExprWithCleanupsClass: { |
| 1240 | auto *Cleanups = cast<ExprWithCleanups>(Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1241 | findConstructionContexts(Layer, Cleanups->getSubExpr()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1242 | break; |
| 1243 | } |
| 1244 | case Stmt::CXXFunctionalCastExprClass: { |
| 1245 | auto *Cast = cast<CXXFunctionalCastExpr>(Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1246 | findConstructionContexts(Layer, Cast->getSubExpr()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1247 | break; |
| 1248 | } |
| 1249 | case Stmt::ImplicitCastExprClass: { |
| 1250 | auto *Cast = cast<ImplicitCastExpr>(Child); |
Artem Dergachev | 6603052 | 2018-03-01 01:09:24 +0000 | [diff] [blame] | 1251 | // TODO: We need to support CK_ConstructorConversion, maybe other kinds? |
Artem Dergachev | 13f9664 | 2018-03-09 01:39:59 +0000 | [diff] [blame] | 1252 | switch (Cast->getCastKind()) { |
| 1253 | case CK_NoOp: |
| 1254 | case CK_ConstructorConversion: |
Artem Dergachev | 6603052 | 2018-03-01 01:09:24 +0000 | [diff] [blame] | 1255 | findConstructionContexts(Layer, Cast->getSubExpr()); |
Artem Dergachev | 13f9664 | 2018-03-09 01:39:59 +0000 | [diff] [blame] | 1256 | default: |
| 1257 | break; |
| 1258 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1259 | break; |
| 1260 | } |
| 1261 | case Stmt::CXXBindTemporaryExprClass: { |
| 1262 | auto *BTE = cast<CXXBindTemporaryExpr>(Child); |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1263 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1264 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), |
| 1265 | BTE, Layer), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1266 | BTE->getSubExpr()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1267 | break; |
| 1268 | } |
| 1269 | case Stmt::ConditionalOperatorClass: { |
| 1270 | auto *CO = cast<ConditionalOperator>(Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1271 | findConstructionContexts(Layer, CO->getLHS()); |
| 1272 | findConstructionContexts(Layer, CO->getRHS()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1273 | break; |
| 1274 | } |
| 1275 | default: |
| 1276 | break; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1277 | } |
| 1278 | } |
| 1279 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1280 | void CFGBuilder::cleanupConstructionContext(CXXConstructExpr *CE) { |
| 1281 | assert(BuildOpts.AddRichCXXConstructors && |
| 1282 | "We should not be managing construction contexts!"); |
| 1283 | assert(ConstructionContextMap.count(CE) && |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1284 | "Cannot exit construction context without the context!"); |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1285 | ConstructionContextMap.erase(CE); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1286 | } |
| 1287 | |
| 1288 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1289 | /// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an |
| 1290 | /// arbitrary statement. Examples include a single expression or a function |
| 1291 | /// body (compound statement). The ownership of the returned CFG is |
| 1292 | /// transferred to the caller. If CFG construction fails, this method returns |
| 1293 | /// NULL. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1294 | std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) { |
Ted Kremenek | 8aed490 | 2009-10-20 23:46:25 +0000 | [diff] [blame] | 1295 | assert(cfg.get()); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1296 | if (!Statement) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1297 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1298 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1299 | // Create an empty block that will serve as the exit block for the CFG. Since |
| 1300 | // this is the first block added to the CFG, it will be implicitly registered |
| 1301 | // as the exit block. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1302 | Succ = createBlock(); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 1303 | assert(Succ == &cfg->getExit()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1304 | Block = nullptr; // the EXIT block is empty. Create all other blocks lazily. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1305 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1306 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1307 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
| 1308 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1309 | if (BuildOpts.AddImplicitDtors) |
| 1310 | if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D)) |
| 1311 | addImplicitDtorsForDestructor(DD); |
| 1312 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1313 | // Visit the statements and create the CFG. |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1314 | CFGBlock *B = addStmt(Statement); |
| 1315 | |
| 1316 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1317 | return nullptr; |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1318 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1319 | // For C++ constructor add initializers to CFG. |
| 1320 | if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) { |
Pete Cooper | 57d3f14 | 2015-07-30 17:22:52 +0000 | [diff] [blame] | 1321 | for (auto *I : llvm::reverse(CD->inits())) { |
| 1322 | B = addInitializer(I); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1323 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1324 | return nullptr; |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1325 | } |
| 1326 | } |
| 1327 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1328 | if (B) |
| 1329 | Succ = B; |
Mike Stump | 6bf1c08 | 2010-01-21 02:21:40 +0000 | [diff] [blame] | 1330 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1331 | // Backpatch the gotos whose label -> block mappings we didn't know when we |
| 1332 | // encountered them. |
| 1333 | for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(), |
| 1334 | E = BackpatchBlocks.end(); I != E; ++I ) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1335 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1336 | CFGBlock *B = I->block; |
Rafael Espindola | 210de57 | 2013-03-27 15:37:54 +0000 | [diff] [blame] | 1337 | const GotoStmt *G = cast<GotoStmt>(B->getTerminator()); |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1338 | LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1339 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1340 | // If there is no target for the goto, then we are looking at an |
| 1341 | // incomplete AST. Handle this by not registering a successor. |
| 1342 | if (LI == LabelMap.end()) continue; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1343 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 1344 | JumpTarget JT = LI->second; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1345 | prependAutomaticObjLifetimeWithTerminator(B, I->scopePosition, |
| 1346 | JT.scopePosition); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1347 | prependAutomaticObjDtorsWithTerminator(B, I->scopePosition, |
| 1348 | JT.scopePosition); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1349 | const VarDecl *VD = prependAutomaticObjScopeEndWithTerminator( |
| 1350 | B, I->scopePosition, JT.scopePosition); |
| 1351 | appendScopeBegin(JT.block, VD, G); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1352 | addSuccessor(B, JT.block); |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1353 | } |
| 1354 | |
| 1355 | // Add successors to the Indirect Goto Dispatch block (if we have one). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1356 | if (CFGBlock *B = cfg->getIndirectGotoBlock()) |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1357 | for (LabelSetTy::iterator I = AddressTakenLabels.begin(), |
| 1358 | E = AddressTakenLabels.end(); I != E; ++I ) { |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1359 | // Lookup the target block. |
| 1360 | LabelMapTy::iterator LI = LabelMap.find(*I); |
| 1361 | |
| 1362 | // If there is no target block that contains label, then we are looking |
| 1363 | // at an incomplete AST. Handle this by not registering a successor. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1364 | if (LI == LabelMap.end()) continue; |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1365 | |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1366 | addSuccessor(B, LI->second.block); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 1367 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1368 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1369 | // Create an empty entry block that has no predecessors. |
Ted Kremenek | 5c50fd1 | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 1370 | cfg->setEntry(createBlock()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1371 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1372 | if (BuildOpts.AddRichCXXConstructors) |
| 1373 | assert(ConstructionContextMap.empty() && |
| 1374 | "Not all construction contexts were cleaned up!"); |
| 1375 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1376 | return std::move(cfg); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1377 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1378 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1379 | /// createBlock - Used to lazily create blocks that are connected |
| 1380 | /// to the current (global) succcessor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1381 | CFGBlock *CFGBuilder::createBlock(bool add_successor) { |
| 1382 | CFGBlock *B = cfg->createBlock(); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1383 | if (add_successor && Succ) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1384 | addSuccessor(B, Succ); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1385 | return B; |
| 1386 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1387 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1388 | /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the |
| 1389 | /// CFG. It is *not* connected to the current (global) successor, and instead |
| 1390 | /// directly tied to the exit block in order to be reachable. |
| 1391 | CFGBlock *CFGBuilder::createNoReturnBlock() { |
| 1392 | CFGBlock *B = createBlock(false); |
Chandler Carruth | 75d7823 | 2011-09-13 09:53:55 +0000 | [diff] [blame] | 1393 | B->setHasNoReturnElement(); |
Ted Kremenek | f353919 | 2014-02-27 00:24:05 +0000 | [diff] [blame] | 1394 | addSuccessor(B, &cfg->getExit(), Succ); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1395 | return B; |
| 1396 | } |
| 1397 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1398 | /// addInitializer - Add C++ base or member initializer element to CFG. |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1399 | CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1400 | if (!BuildOpts.AddInitializers) |
| 1401 | return Block; |
| 1402 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1403 | bool HasTemporaries = false; |
| 1404 | |
| 1405 | // Destructors of temporaries in initialization expression should be called |
| 1406 | // after initialization finishes. |
| 1407 | Expr *Init = I->getInit(); |
| 1408 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1409 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1410 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 1411 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1412 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 1413 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 1414 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
| 1415 | /*BindToTemporary=*/false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1416 | } |
| 1417 | } |
| 1418 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1419 | autoCreateBlock(); |
| 1420 | appendInitializer(Block, I); |
| 1421 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1422 | if (Init) { |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1423 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1424 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), I), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1425 | Init); |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 1426 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1427 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1428 | // For expression with temporaries go directly to subexpression to omit |
| 1429 | // generating destructors for the second time. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1430 | return Visit(cast<ExprWithCleanups>(Init)->getSubExpr()); |
| 1431 | } |
Enrico Pertoso | faed801 | 2015-06-03 10:12:40 +0000 | [diff] [blame] | 1432 | if (BuildOpts.AddCXXDefaultInitExprInCtors) { |
| 1433 | if (CXXDefaultInitExpr *Default = dyn_cast<CXXDefaultInitExpr>(Init)) { |
| 1434 | // In general, appending the expression wrapped by a CXXDefaultInitExpr |
| 1435 | // may cause the same Expr to appear more than once in the CFG. Doing it |
| 1436 | // here is safe because there's only one initializer per field. |
| 1437 | autoCreateBlock(); |
| 1438 | appendStmt(Block, Default); |
| 1439 | if (Stmt *Child = Default->getExpr()) |
| 1440 | if (CFGBlock *R = Visit(Child)) |
| 1441 | Block = R; |
| 1442 | return Block; |
| 1443 | } |
| 1444 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1445 | return Visit(Init); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1446 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1447 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1448 | return Block; |
| 1449 | } |
| 1450 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1451 | /// \brief Retrieve the type of the temporary object whose lifetime was |
| 1452 | /// extended by a local reference with the given initializer. |
| 1453 | static QualType getReferenceInitTemporaryType(ASTContext &Context, |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1454 | const Expr *Init, |
| 1455 | bool *FoundMTE = nullptr) { |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1456 | while (true) { |
| 1457 | // Skip parentheses. |
| 1458 | Init = Init->IgnoreParens(); |
| 1459 | |
| 1460 | // Skip through cleanups. |
| 1461 | if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) { |
| 1462 | Init = EWC->getSubExpr(); |
| 1463 | continue; |
| 1464 | } |
| 1465 | |
| 1466 | // Skip through the temporary-materialization expression. |
| 1467 | if (const MaterializeTemporaryExpr *MTE |
| 1468 | = dyn_cast<MaterializeTemporaryExpr>(Init)) { |
| 1469 | Init = MTE->GetTemporaryExpr(); |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1470 | if (FoundMTE) |
| 1471 | *FoundMTE = true; |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1472 | continue; |
| 1473 | } |
| 1474 | |
| 1475 | // Skip derived-to-base and no-op casts. |
| 1476 | if (const CastExpr *CE = dyn_cast<CastExpr>(Init)) { |
| 1477 | if ((CE->getCastKind() == CK_DerivedToBase || |
| 1478 | CE->getCastKind() == CK_UncheckedDerivedToBase || |
| 1479 | CE->getCastKind() == CK_NoOp) && |
| 1480 | Init->getType()->isRecordType()) { |
| 1481 | Init = CE->getSubExpr(); |
| 1482 | continue; |
| 1483 | } |
| 1484 | } |
| 1485 | |
| 1486 | // Skip member accesses into rvalues. |
| 1487 | if (const MemberExpr *ME = dyn_cast<MemberExpr>(Init)) { |
| 1488 | if (!ME->isArrow() && ME->getBase()->isRValue()) { |
| 1489 | Init = ME->getBase(); |
| 1490 | continue; |
| 1491 | } |
| 1492 | } |
| 1493 | |
| 1494 | break; |
| 1495 | } |
| 1496 | |
| 1497 | return Init->getType(); |
| 1498 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1499 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 1500 | // TODO: Support adding LoopExit element to the CFG in case where the loop is |
| 1501 | // ended by ReturnStmt, GotoStmt or ThrowExpr. |
| 1502 | void CFGBuilder::addLoopExit(const Stmt *LoopStmt){ |
| 1503 | if(!BuildOpts.AddLoopExit) |
| 1504 | return; |
| 1505 | autoCreateBlock(); |
| 1506 | appendLoopExit(Block, LoopStmt); |
| 1507 | } |
| 1508 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1509 | void CFGBuilder::getDeclsWithEndedScope(LocalScope::const_iterator B, |
| 1510 | LocalScope::const_iterator E, Stmt *S) { |
| 1511 | if (!BuildOpts.AddScopes) |
| 1512 | return; |
| 1513 | |
| 1514 | if (B == E) |
| 1515 | return; |
| 1516 | |
| 1517 | // To go from B to E, one first goes up the scopes from B to P |
| 1518 | // then sideways in one scope from P to P' and then down |
| 1519 | // the scopes from P' to E. |
| 1520 | // The lifetime of all objects between B and P end. |
| 1521 | LocalScope::const_iterator P = B.shared_parent(E); |
| 1522 | int Dist = B.distance(P); |
| 1523 | if (Dist <= 0) |
| 1524 | return; |
| 1525 | |
| 1526 | for (LocalScope::const_iterator I = B; I != P; ++I) |
| 1527 | if (I.pointsToFirstDeclaredVar()) |
| 1528 | DeclsWithEndedScope.insert(*I); |
| 1529 | } |
| 1530 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1531 | void CFGBuilder::addAutomaticObjHandling(LocalScope::const_iterator B, |
| 1532 | LocalScope::const_iterator E, |
| 1533 | Stmt *S) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1534 | getDeclsWithEndedScope(B, E, S); |
| 1535 | if (BuildOpts.AddScopes) |
| 1536 | addScopesEnd(B, E, S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1537 | if (BuildOpts.AddImplicitDtors) |
| 1538 | addAutomaticObjDtors(B, E, S); |
| 1539 | if (BuildOpts.AddLifetime) |
| 1540 | addLifetimeEnds(B, E, S); |
| 1541 | } |
| 1542 | |
| 1543 | /// Add to current block automatic objects that leave the scope. |
| 1544 | void CFGBuilder::addLifetimeEnds(LocalScope::const_iterator B, |
| 1545 | LocalScope::const_iterator E, Stmt *S) { |
| 1546 | if (!BuildOpts.AddLifetime) |
| 1547 | return; |
| 1548 | |
| 1549 | if (B == E) |
| 1550 | return; |
| 1551 | |
| 1552 | // To go from B to E, one first goes up the scopes from B to P |
| 1553 | // then sideways in one scope from P to P' and then down |
| 1554 | // the scopes from P' to E. |
| 1555 | // The lifetime of all objects between B and P end. |
| 1556 | LocalScope::const_iterator P = B.shared_parent(E); |
| 1557 | int dist = B.distance(P); |
| 1558 | if (dist <= 0) |
| 1559 | return; |
| 1560 | |
| 1561 | // We need to perform the scope leaving in reverse order |
| 1562 | SmallVector<VarDecl *, 10> DeclsTrivial; |
| 1563 | SmallVector<VarDecl *, 10> DeclsNonTrivial; |
| 1564 | DeclsTrivial.reserve(dist); |
| 1565 | DeclsNonTrivial.reserve(dist); |
| 1566 | |
| 1567 | for (LocalScope::const_iterator I = B; I != P; ++I) |
| 1568 | if (hasTrivialDestructor(*I)) |
| 1569 | DeclsTrivial.push_back(*I); |
| 1570 | else |
| 1571 | DeclsNonTrivial.push_back(*I); |
| 1572 | |
| 1573 | autoCreateBlock(); |
| 1574 | // object with trivial destructor end their lifetime last (when storage |
| 1575 | // duration ends) |
| 1576 | for (SmallVectorImpl<VarDecl *>::reverse_iterator I = DeclsTrivial.rbegin(), |
| 1577 | E = DeclsTrivial.rend(); |
| 1578 | I != E; ++I) |
| 1579 | appendLifetimeEnds(Block, *I, S); |
| 1580 | |
| 1581 | for (SmallVectorImpl<VarDecl *>::reverse_iterator |
| 1582 | I = DeclsNonTrivial.rbegin(), |
| 1583 | E = DeclsNonTrivial.rend(); |
| 1584 | I != E; ++I) |
| 1585 | appendLifetimeEnds(Block, *I, S); |
| 1586 | } |
| 1587 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1588 | /// Add to current block markers for ending scopes. |
| 1589 | void CFGBuilder::addScopesEnd(LocalScope::const_iterator B, |
| 1590 | LocalScope::const_iterator E, Stmt *S) { |
| 1591 | // If implicit destructors are enabled, we'll add scope ends in |
| 1592 | // addAutomaticObjDtors. |
| 1593 | if (BuildOpts.AddImplicitDtors) |
| 1594 | return; |
| 1595 | |
| 1596 | autoCreateBlock(); |
| 1597 | |
| 1598 | for (auto I = DeclsWithEndedScope.rbegin(), E = DeclsWithEndedScope.rend(); |
| 1599 | I != E; ++I) |
| 1600 | appendScopeEnd(Block, *I, S); |
| 1601 | |
| 1602 | return; |
| 1603 | } |
| 1604 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1605 | /// addAutomaticObjDtors - Add to current block automatic objects destructors |
| 1606 | /// for objects in range of local scope positions. Use S as trigger statement |
| 1607 | /// for destructors. |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1608 | void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1609 | LocalScope::const_iterator E, Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1610 | if (!BuildOpts.AddImplicitDtors) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1611 | return; |
| 1612 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1613 | if (B == E) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1614 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1615 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1616 | // We need to append the destructors in reverse order, but any one of them |
| 1617 | // may be a no-return destructor which changes the CFG. As a result, buffer |
| 1618 | // this sequence up and replay them in reverse order when appending onto the |
| 1619 | // CFGBlock(s). |
| 1620 | SmallVector<VarDecl*, 10> Decls; |
| 1621 | Decls.reserve(B.distance(E)); |
| 1622 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1623 | Decls.push_back(*I); |
| 1624 | |
| 1625 | for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(), |
| 1626 | E = Decls.rend(); |
| 1627 | I != E; ++I) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1628 | if (hasTrivialDestructor(*I)) { |
| 1629 | // If AddScopes is enabled and *I is a first variable in a scope, add a |
| 1630 | // ScopeEnd marker in a Block. |
| 1631 | if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) { |
| 1632 | autoCreateBlock(); |
| 1633 | appendScopeEnd(Block, *I, S); |
| 1634 | } |
| 1635 | continue; |
| 1636 | } |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1637 | // If this destructor is marked as a no-return destructor, we need to |
| 1638 | // create a new block for the destructor which does not have as a successor |
| 1639 | // anything built thus far: control won't flow out of this block. |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1640 | QualType Ty = (*I)->getType(); |
| 1641 | if (Ty->isReferenceType()) { |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1642 | Ty = getReferenceInitTemporaryType(*Context, (*I)->getInit()); |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1643 | } |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1644 | Ty = Context->getBaseElementType(Ty); |
| 1645 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 1646 | if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn()) |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1647 | Block = createNoReturnBlock(); |
| 1648 | else |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1649 | autoCreateBlock(); |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1650 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1651 | // Add ScopeEnd just after automatic obj destructor. |
| 1652 | if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) |
| 1653 | appendScopeEnd(Block, *I, S); |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1654 | appendAutomaticObjDtor(Block, *I, S); |
| 1655 | } |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1656 | } |
| 1657 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1658 | /// addImplicitDtorsForDestructor - Add implicit destructors generated for |
| 1659 | /// base and member objects in destructor. |
| 1660 | void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1661 | assert(BuildOpts.AddImplicitDtors && |
| 1662 | "Can be called only when dtors should be added"); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1663 | const CXXRecordDecl *RD = DD->getParent(); |
| 1664 | |
| 1665 | // At the end destroy virtual base objects. |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1666 | for (const auto &VI : RD->vbases()) { |
| 1667 | const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1668 | if (!CD->hasTrivialDestructor()) { |
| 1669 | autoCreateBlock(); |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1670 | appendBaseDtor(Block, &VI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1671 | } |
| 1672 | } |
| 1673 | |
| 1674 | // Before virtual bases destroy direct base objects. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1675 | for (const auto &BI : RD->bases()) { |
| 1676 | if (!BI.isVirtual()) { |
| 1677 | const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl(); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1678 | if (!CD->hasTrivialDestructor()) { |
| 1679 | autoCreateBlock(); |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1680 | appendBaseDtor(Block, &BI); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1681 | } |
| 1682 | } |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1683 | } |
| 1684 | |
| 1685 | // First destroy member objects. |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1686 | for (auto *FI : RD->fields()) { |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 1687 | // Check for constant size array. Set type to array element type. |
| 1688 | QualType QT = FI->getType(); |
| 1689 | if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1690 | if (AT->getSize() == 0) |
| 1691 | continue; |
| 1692 | QT = AT->getElementType(); |
| 1693 | } |
| 1694 | |
| 1695 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1696 | if (!CD->hasTrivialDestructor()) { |
| 1697 | autoCreateBlock(); |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1698 | appendMemberDtor(Block, FI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1699 | } |
| 1700 | } |
| 1701 | } |
| 1702 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1703 | /// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either |
| 1704 | /// way return valid LocalScope object. |
| 1705 | LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) { |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 1706 | if (Scope) |
| 1707 | return Scope; |
| 1708 | llvm::BumpPtrAllocator &alloc = cfg->getAllocator(); |
| 1709 | return new (alloc.Allocate<LocalScope>()) |
| 1710 | LocalScope(BumpVectorContext(alloc), ScopePos); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1711 | } |
| 1712 | |
| 1713 | /// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1714 | /// that should create implicit scope (e.g. if/else substatements). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1715 | void CFGBuilder::addLocalScopeForStmt(Stmt *S) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1716 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1717 | !BuildOpts.AddScopes) |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1718 | return; |
| 1719 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1720 | LocalScope *Scope = nullptr; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1721 | |
| 1722 | // For compound statement we will be creating explicit scope. |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1723 | if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) { |
Aaron Ballman | c7e4e21 | 2014-03-17 14:19:37 +0000 | [diff] [blame] | 1724 | for (auto *BI : CS->body()) { |
| 1725 | Stmt *SI = BI->stripLabelLikeStatements(); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1726 | if (DeclStmt *DS = dyn_cast<DeclStmt>(SI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1727 | Scope = addLocalScopeForDeclStmt(DS, Scope); |
| 1728 | } |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1729 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1730 | } |
| 1731 | |
| 1732 | // For any other statement scope will be implicit and as such will be |
| 1733 | // interesting only for DeclStmt. |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 1734 | if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements())) |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1735 | addLocalScopeForDeclStmt(DS); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1736 | } |
| 1737 | |
| 1738 | /// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will |
| 1739 | /// reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1740 | LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1741 | LocalScope* Scope) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1742 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1743 | !BuildOpts.AddScopes) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1744 | return Scope; |
| 1745 | |
Aaron Ballman | 535bbcc | 2014-03-14 17:01:24 +0000 | [diff] [blame] | 1746 | for (auto *DI : DS->decls()) |
| 1747 | if (VarDecl *VD = dyn_cast<VarDecl>(DI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1748 | Scope = addLocalScopeForVarDecl(VD, Scope); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1749 | return Scope; |
| 1750 | } |
| 1751 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1752 | bool CFGBuilder::hasTrivialDestructor(VarDecl *VD) { |
| 1753 | // Check for const references bound to temporary. Set type to pointee. |
| 1754 | QualType QT = VD->getType(); |
| 1755 | if (QT.getTypePtr()->isReferenceType()) { |
| 1756 | // Attempt to determine whether this declaration lifetime-extends a |
| 1757 | // temporary. |
| 1758 | // |
| 1759 | // FIXME: This is incorrect. Non-reference declarations can lifetime-extend |
| 1760 | // temporaries, and a single declaration can extend multiple temporaries. |
| 1761 | // We should look at the storage duration on each nested |
| 1762 | // MaterializeTemporaryExpr instead. |
| 1763 | |
| 1764 | const Expr *Init = VD->getInit(); |
| 1765 | if (!Init) |
| 1766 | return true; |
| 1767 | |
| 1768 | // Lifetime-extending a temporary. |
| 1769 | bool FoundMTE = false; |
| 1770 | QT = getReferenceInitTemporaryType(*Context, Init, &FoundMTE); |
| 1771 | if (!FoundMTE) |
| 1772 | return true; |
| 1773 | } |
| 1774 | |
| 1775 | // Check for constant size array. Set type to array element type. |
| 1776 | while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1777 | if (AT->getSize() == 0) |
| 1778 | return true; |
| 1779 | QT = AT->getElementType(); |
| 1780 | } |
| 1781 | |
| 1782 | // Check if type is a C++ class with non-trivial destructor. |
| 1783 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
| 1784 | return !CD->hasDefinition() || CD->hasTrivialDestructor(); |
| 1785 | return true; |
| 1786 | } |
| 1787 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1788 | /// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will |
| 1789 | /// create add scope for automatic objects and temporary objects bound to |
| 1790 | /// const reference. Will reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1791 | LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1792 | LocalScope* Scope) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1793 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1794 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1795 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1796 | !BuildOpts.AddScopes) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1797 | return Scope; |
| 1798 | |
| 1799 | // Check if variable is local. |
| 1800 | switch (VD->getStorageClass()) { |
| 1801 | case SC_None: |
| 1802 | case SC_Auto: |
| 1803 | case SC_Register: |
| 1804 | break; |
| 1805 | default: return Scope; |
| 1806 | } |
| 1807 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1808 | if (BuildOpts.AddImplicitDtors) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1809 | if (!hasTrivialDestructor(VD) || BuildOpts.AddScopes) { |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 1810 | // Add the variable to scope |
| 1811 | Scope = createOrReuseLocalScope(Scope); |
| 1812 | Scope->addVar(VD); |
| 1813 | ScopePos = Scope->begin(); |
| 1814 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1815 | return Scope; |
| 1816 | } |
| 1817 | |
| 1818 | assert(BuildOpts.AddLifetime); |
| 1819 | // Add the variable to scope |
| 1820 | Scope = createOrReuseLocalScope(Scope); |
| 1821 | Scope->addVar(VD); |
| 1822 | ScopePos = Scope->begin(); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1823 | return Scope; |
| 1824 | } |
| 1825 | |
| 1826 | /// addLocalScopeAndDtors - For given statement add local scope for it and |
| 1827 | /// 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] | 1828 | void CFGBuilder::addLocalScopeAndDtors(Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1829 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1830 | addLocalScopeForStmt(S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1831 | addAutomaticObjHandling(ScopePos, scopeBeginPos, S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1832 | } |
| 1833 | |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1834 | /// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for |
| 1835 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1836 | /// Elements will be prepended to physical beginning of the vector which |
| 1837 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1838 | /// destructors call site. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1839 | /// FIXME: This mechanism for adding automatic destructors doesn't handle |
| 1840 | /// no-return destructors properly. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1841 | void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1842 | LocalScope::const_iterator B, LocalScope::const_iterator E) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1843 | if (!BuildOpts.AddImplicitDtors) |
| 1844 | return; |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1845 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1846 | CFGBlock::iterator InsertPos |
| 1847 | = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C); |
| 1848 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1849 | InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I, |
| 1850 | Blk->getTerminator()); |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1851 | } |
| 1852 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1853 | /// prependAutomaticObjLifetimeWithTerminator - Prepend lifetime CFGElements for |
| 1854 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1855 | /// Elements will be prepended to physical beginning of the vector which |
| 1856 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1857 | /// where lifetime ends. |
| 1858 | void CFGBuilder::prependAutomaticObjLifetimeWithTerminator( |
| 1859 | CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) { |
| 1860 | if (!BuildOpts.AddLifetime) |
| 1861 | return; |
| 1862 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1863 | CFGBlock::iterator InsertPos = |
| 1864 | Blk->beginLifetimeEndsInsert(Blk->end(), B.distance(E), C); |
| 1865 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1866 | InsertPos = Blk->insertLifetimeEnds(InsertPos, *I, Blk->getTerminator()); |
| 1867 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1868 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 1869 | /// prependAutomaticObjScopeEndWithTerminator - Prepend scope end CFGElements for |
| 1870 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1871 | /// Elements will be prepended to physical beginning of the vector which |
| 1872 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1873 | /// where scope ends. |
| 1874 | const VarDecl * |
| 1875 | CFGBuilder::prependAutomaticObjScopeEndWithTerminator( |
| 1876 | CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) { |
| 1877 | if (!BuildOpts.AddScopes) |
| 1878 | return nullptr; |
| 1879 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1880 | CFGBlock::iterator InsertPos = |
| 1881 | Blk->beginScopeEndInsert(Blk->end(), 1, C); |
| 1882 | LocalScope::const_iterator PlaceToInsert = B; |
| 1883 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1884 | PlaceToInsert = I; |
| 1885 | Blk->insertScopeEnd(InsertPos, *PlaceToInsert, Blk->getTerminator()); |
| 1886 | return *PlaceToInsert; |
| 1887 | } |
| 1888 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1889 | /// Visit - Walk the subtree of a statement and add extra |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1890 | /// blocks for ternary operators, &&, and ||. We also process "," and |
| 1891 | /// DeclStmts (which may contain nested control-flow). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1892 | CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) { |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 1893 | if (!S) { |
| 1894 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1895 | return nullptr; |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 1896 | } |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 1897 | |
| 1898 | if (Expr *E = dyn_cast<Expr>(S)) |
| 1899 | S = E->IgnoreParens(); |
| 1900 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1901 | switch (S->getStmtClass()) { |
| 1902 | default: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1903 | return VisitStmt(S, asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1904 | |
| 1905 | case Stmt::AddrLabelExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1906 | return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1907 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1908 | case Stmt::BinaryConditionalOperatorClass: |
| 1909 | return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc); |
| 1910 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1911 | case Stmt::BinaryOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1912 | return VisitBinaryOperator(cast<BinaryOperator>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1913 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1914 | case Stmt::BlockExprClass: |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 1915 | return VisitBlockExpr(cast<BlockExpr>(S), asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1916 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1917 | case Stmt::BreakStmtClass: |
| 1918 | return VisitBreakStmt(cast<BreakStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1919 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1920 | case Stmt::CallExprClass: |
Ted Kremenek | 128d04d | 2010-08-31 18:47:34 +0000 | [diff] [blame] | 1921 | case Stmt::CXXOperatorCallExprClass: |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 1922 | case Stmt::CXXMemberCallExprClass: |
Richard Smith | c67fdd4 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1923 | case Stmt::UserDefinedLiteralClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1924 | return VisitCallExpr(cast<CallExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1925 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1926 | case Stmt::CaseStmtClass: |
| 1927 | return VisitCaseStmt(cast<CaseStmt>(S)); |
| 1928 | |
| 1929 | case Stmt::ChooseExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1930 | return VisitChooseExpr(cast<ChooseExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1931 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1932 | case Stmt::CompoundStmtClass: |
| 1933 | return VisitCompoundStmt(cast<CompoundStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1934 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1935 | case Stmt::ConditionalOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1936 | return VisitConditionalOperator(cast<ConditionalOperator>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1937 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1938 | case Stmt::ContinueStmtClass: |
| 1939 | return VisitContinueStmt(cast<ContinueStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1940 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 1941 | case Stmt::CXXCatchStmtClass: |
| 1942 | return VisitCXXCatchStmt(cast<CXXCatchStmt>(S)); |
| 1943 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1944 | case Stmt::ExprWithCleanupsClass: |
| 1945 | return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc); |
Ted Kremenek | 82bfc86 | 2010-08-28 00:19:02 +0000 | [diff] [blame] | 1946 | |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 1947 | case Stmt::CXXDefaultArgExprClass: |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1948 | case Stmt::CXXDefaultInitExprClass: |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 1949 | // FIXME: The expression inside a CXXDefaultArgExpr is owned by the |
| 1950 | // called function's declaration, not by the caller. If we simply add |
| 1951 | // this expression to the CFG, we could end up with the same Expr |
| 1952 | // appearing multiple times. |
| 1953 | // PR13385 / <rdar://problem/12156507> |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 1954 | // |
| 1955 | // It's likewise possible for multiple CXXDefaultInitExprs for the same |
| 1956 | // expression to be used in the same function (through aggregate |
| 1957 | // initialization). |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 1958 | return VisitStmt(S, asc); |
| 1959 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 1960 | case Stmt::CXXBindTemporaryExprClass: |
| 1961 | return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc); |
| 1962 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 1963 | case Stmt::CXXConstructExprClass: |
| 1964 | return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc); |
| 1965 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 1966 | case Stmt::CXXNewExprClass: |
| 1967 | return VisitCXXNewExpr(cast<CXXNewExpr>(S), asc); |
| 1968 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 1969 | case Stmt::CXXDeleteExprClass: |
| 1970 | return VisitCXXDeleteExpr(cast<CXXDeleteExpr>(S), asc); |
| 1971 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 1972 | case Stmt::CXXFunctionalCastExprClass: |
| 1973 | return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc); |
| 1974 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 1975 | case Stmt::CXXTemporaryObjectExprClass: |
| 1976 | return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc); |
| 1977 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 1978 | case Stmt::CXXThrowExprClass: |
| 1979 | return VisitCXXThrowExpr(cast<CXXThrowExpr>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 1980 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 1981 | case Stmt::CXXTryStmtClass: |
| 1982 | return VisitCXXTryStmt(cast<CXXTryStmt>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 1983 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 1984 | case Stmt::CXXForRangeStmtClass: |
| 1985 | return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S)); |
| 1986 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1987 | case Stmt::DeclStmtClass: |
| 1988 | return VisitDeclStmt(cast<DeclStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1989 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1990 | case Stmt::DefaultStmtClass: |
| 1991 | return VisitDefaultStmt(cast<DefaultStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1992 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1993 | case Stmt::DoStmtClass: |
| 1994 | return VisitDoStmt(cast<DoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1995 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1996 | case Stmt::ForStmtClass: |
| 1997 | return VisitForStmt(cast<ForStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1998 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1999 | case Stmt::GotoStmtClass: |
| 2000 | return VisitGotoStmt(cast<GotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2001 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2002 | case Stmt::IfStmtClass: |
| 2003 | return VisitIfStmt(cast<IfStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2004 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2005 | case Stmt::ImplicitCastExprClass: |
| 2006 | return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2007 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2008 | case Stmt::IndirectGotoStmtClass: |
| 2009 | return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2010 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2011 | case Stmt::LabelStmtClass: |
| 2012 | return VisitLabelStmt(cast<LabelStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2013 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 2014 | case Stmt::LambdaExprClass: |
| 2015 | return VisitLambdaExpr(cast<LambdaExpr>(S), asc); |
| 2016 | |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 2017 | case Stmt::MaterializeTemporaryExprClass: |
| 2018 | return VisitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(S), |
| 2019 | asc); |
| 2020 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2021 | case Stmt::MemberExprClass: |
| 2022 | return VisitMemberExpr(cast<MemberExpr>(S), asc); |
| 2023 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 2024 | case Stmt::NullStmtClass: |
| 2025 | return Block; |
| 2026 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2027 | case Stmt::ObjCAtCatchStmtClass: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2028 | return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); |
| 2029 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 2030 | case Stmt::ObjCAutoreleasePoolStmtClass: |
| 2031 | return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S)); |
| 2032 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2033 | case Stmt::ObjCAtSynchronizedStmtClass: |
| 2034 | return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2035 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2036 | case Stmt::ObjCAtThrowStmtClass: |
| 2037 | return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2038 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2039 | case Stmt::ObjCAtTryStmtClass: |
| 2040 | return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2041 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2042 | case Stmt::ObjCForCollectionStmtClass: |
| 2043 | return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2044 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 2045 | case Stmt::OpaqueValueExprClass: |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2046 | return Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2047 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 2048 | case Stmt::PseudoObjectExprClass: |
| 2049 | return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S)); |
| 2050 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2051 | case Stmt::ReturnStmtClass: |
| 2052 | return VisitReturnStmt(cast<ReturnStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2053 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 2054 | case Stmt::SEHExceptStmtClass: |
| 2055 | return VisitSEHExceptStmt(cast<SEHExceptStmt>(S)); |
| 2056 | |
| 2057 | case Stmt::SEHFinallyStmtClass: |
| 2058 | return VisitSEHFinallyStmt(cast<SEHFinallyStmt>(S)); |
| 2059 | |
| 2060 | case Stmt::SEHLeaveStmtClass: |
| 2061 | return VisitSEHLeaveStmt(cast<SEHLeaveStmt>(S)); |
| 2062 | |
| 2063 | case Stmt::SEHTryStmtClass: |
| 2064 | return VisitSEHTryStmt(cast<SEHTryStmt>(S)); |
| 2065 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2066 | case Stmt::UnaryExprOrTypeTraitExprClass: |
| 2067 | return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S), |
| 2068 | asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2069 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2070 | case Stmt::StmtExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2071 | return VisitStmtExpr(cast<StmtExpr>(S), asc); |
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 | case Stmt::SwitchStmtClass: |
| 2074 | return VisitSwitchStmt(cast<SwitchStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2075 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2076 | case Stmt::UnaryOperatorClass: |
| 2077 | return VisitUnaryOperator(cast<UnaryOperator>(S), asc); |
| 2078 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2079 | case Stmt::WhileStmtClass: |
| 2080 | return VisitWhileStmt(cast<WhileStmt>(S)); |
| 2081 | } |
| 2082 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2083 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2084 | CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2085 | if (asc.alwaysAdd(*this, S)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2086 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2087 | appendStmt(Block, S); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2088 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2089 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2090 | return VisitChildren(S); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2091 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2092 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2093 | /// VisitChildren - Visit the children of a Stmt. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 2094 | CFGBlock *CFGBuilder::VisitChildren(Stmt *S) { |
| 2095 | CFGBlock *B = Block; |
Ted Kremenek | 828f631 | 2011-02-21 22:11:26 +0000 | [diff] [blame] | 2096 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 2097 | // Visit the children in their reverse order so that they appear in |
| 2098 | // left-to-right (natural) order in the CFG. |
| 2099 | reverse_children RChildren(S); |
| 2100 | for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end(); |
| 2101 | I != E; ++I) { |
| 2102 | if (Stmt *Child = *I) |
| 2103 | if (CFGBlock *R = Visit(Child)) |
| 2104 | B = R; |
| 2105 | } |
| 2106 | return B; |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2107 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2108 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2109 | CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, |
| 2110 | AddStmtChoice asc) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2111 | AddressTakenLabels.insert(A->getLabel()); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2112 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2113 | if (asc.alwaysAdd(*this, A)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2114 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2115 | appendStmt(Block, A); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2116 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2117 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2118 | return Block; |
| 2119 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2120 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2121 | CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U, |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2122 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2123 | if (asc.alwaysAdd(*this, U)) { |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2124 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2125 | appendStmt(Block, U); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2126 | } |
| 2127 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2128 | return Visit(U->getSubExpr(), AddStmtChoice()); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2129 | } |
| 2130 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2131 | CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) { |
| 2132 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
| 2133 | appendStmt(ConfluenceBlock, B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2134 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2135 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2136 | return nullptr; |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2137 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2138 | return VisitLogicalOperator(B, nullptr, ConfluenceBlock, |
| 2139 | ConfluenceBlock).first; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2140 | } |
| 2141 | |
| 2142 | std::pair<CFGBlock*, CFGBlock*> |
| 2143 | CFGBuilder::VisitLogicalOperator(BinaryOperator *B, |
| 2144 | Stmt *Term, |
| 2145 | CFGBlock *TrueBlock, |
| 2146 | CFGBlock *FalseBlock) { |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2147 | // Introspect the RHS. If it is a nested logical operation, we recursively |
| 2148 | // build the CFG using this function. Otherwise, resort to default |
| 2149 | // CFG construction behavior. |
| 2150 | Expr *RHS = B->getRHS()->IgnoreParens(); |
| 2151 | CFGBlock *RHSBlock, *ExitBlock; |
| 2152 | |
| 2153 | do { |
| 2154 | if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS)) |
| 2155 | if (B_RHS->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 2156 | std::tie(RHSBlock, ExitBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2157 | VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock); |
| 2158 | break; |
| 2159 | } |
| 2160 | |
| 2161 | // The RHS is not a nested logical operation. Don't push the terminator |
| 2162 | // down further, but instead visit RHS and construct the respective |
| 2163 | // pieces of the CFG, and link up the RHSBlock with the terminator |
| 2164 | // we have been provided. |
| 2165 | ExitBlock = RHSBlock = createBlock(false); |
| 2166 | |
Richard Trieu | 6a6af52 | 2017-01-04 00:46:30 +0000 | [diff] [blame] | 2167 | // Even though KnownVal is only used in the else branch of the next |
| 2168 | // conditional, tryEvaluateBool performs additional checking on the |
| 2169 | // Expr, so it should be called unconditionally. |
| 2170 | TryResult KnownVal = tryEvaluateBool(RHS); |
| 2171 | if (!KnownVal.isKnown()) |
| 2172 | KnownVal = tryEvaluateBool(B); |
| 2173 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2174 | if (!Term) { |
| 2175 | assert(TrueBlock == FalseBlock); |
| 2176 | addSuccessor(RHSBlock, TrueBlock); |
| 2177 | } |
| 2178 | else { |
| 2179 | RHSBlock->setTerminator(Term); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2180 | addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 2181 | addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2182 | } |
| 2183 | |
| 2184 | Block = RHSBlock; |
| 2185 | RHSBlock = addStmt(RHS); |
| 2186 | } |
| 2187 | while (false); |
| 2188 | |
| 2189 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2190 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2191 | |
| 2192 | // Generate the blocks for evaluating the LHS. |
| 2193 | Expr *LHS = B->getLHS()->IgnoreParens(); |
| 2194 | |
| 2195 | if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS)) |
| 2196 | if (B_LHS->isLogicalOp()) { |
| 2197 | if (B->getOpcode() == BO_LOr) |
| 2198 | FalseBlock = RHSBlock; |
| 2199 | else |
| 2200 | TrueBlock = RHSBlock; |
| 2201 | |
| 2202 | // For the LHS, treat 'B' as the terminator that we want to sink |
| 2203 | // into the nested branch. The RHS always gets the top-most |
| 2204 | // terminator. |
| 2205 | return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock); |
| 2206 | } |
| 2207 | |
| 2208 | // Create the block evaluating the LHS. |
| 2209 | // This contains the '&&' or '||' as the terminator. |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2210 | CFGBlock *LHSBlock = createBlock(false); |
| 2211 | LHSBlock->setTerminator(B); |
| 2212 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2213 | Block = LHSBlock; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2214 | CFGBlock *EntryLHSBlock = addStmt(LHS); |
| 2215 | |
| 2216 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2217 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2218 | |
| 2219 | // See if this is a known constant. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2220 | TryResult KnownVal = tryEvaluateBool(LHS); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2221 | |
| 2222 | // Now link the LHSBlock with RHSBlock. |
| 2223 | if (B->getOpcode() == BO_LOr) { |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2224 | addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 2225 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2226 | } else { |
| 2227 | assert(B->getOpcode() == BO_LAnd); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2228 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse()); |
| 2229 | addSuccessor(LHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2230 | } |
| 2231 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2232 | return std::make_pair(EntryLHSBlock, ExitBlock); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2233 | } |
| 2234 | |
| 2235 | CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B, |
| 2236 | AddStmtChoice asc) { |
| 2237 | // && or || |
| 2238 | if (B->isLogicalOp()) |
| 2239 | return VisitLogicalOperator(B); |
| 2240 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2241 | if (B->getOpcode() == BO_Comma) { // , |
Ted Kremenek | fe9b768 | 2009-07-17 22:57:50 +0000 | [diff] [blame] | 2242 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2243 | appendStmt(Block, B); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2244 | addStmt(B->getRHS()); |
| 2245 | return addStmt(B->getLHS()); |
| 2246 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2247 | |
| 2248 | if (B->isAssignmentOp()) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2249 | if (asc.alwaysAdd(*this, B)) { |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2250 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2251 | appendStmt(Block, B); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2252 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2253 | Visit(B->getLHS()); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2254 | return Visit(B->getRHS()); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2255 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2256 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2257 | if (asc.alwaysAdd(*this, B)) { |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2258 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2259 | appendStmt(Block, B); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2260 | } |
| 2261 | |
Zhongxing Xu | d95ccd5 | 2010-10-27 03:23:10 +0000 | [diff] [blame] | 2262 | CFGBlock *RBlock = Visit(B->getRHS()); |
| 2263 | CFGBlock *LBlock = Visit(B->getLHS()); |
| 2264 | // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr |
| 2265 | // containing a DoStmt, and the LHS doesn't create a new block, then we should |
| 2266 | // return RBlock. Otherwise we'll incorrectly return NULL. |
| 2267 | return (LBlock ? LBlock : RBlock); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2268 | } |
| 2269 | |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 2270 | CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2271 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2272 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2273 | appendStmt(Block, E); |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2274 | } |
| 2275 | return Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2276 | } |
| 2277 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2278 | CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { |
| 2279 | // "break" is a control-flow statement. Thus we stop processing the current |
| 2280 | // block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2281 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2282 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2283 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2284 | // Now create a new block that ends with the break statement. |
| 2285 | Block = createBlock(false); |
| 2286 | Block->setTerminator(B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2287 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2288 | // If there is no target for the break, then we are looking at an incomplete |
| 2289 | // AST. This means that the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2290 | if (BreakJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2291 | addAutomaticObjHandling(ScopePos, BreakJumpTarget.scopePosition, B); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2292 | addSuccessor(Block, BreakJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2293 | } else |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2294 | badCFG = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2295 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2296 | return Block; |
| 2297 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2298 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2299 | static bool CanThrow(Expr *E, ASTContext &Ctx) { |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2300 | QualType Ty = E->getType(); |
| 2301 | if (Ty->isFunctionPointerType()) |
| 2302 | Ty = Ty->getAs<PointerType>()->getPointeeType(); |
| 2303 | else if (Ty->isBlockPointerType()) |
| 2304 | Ty = Ty->getAs<BlockPointerType>()->getPointeeType(); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2305 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2306 | const FunctionType *FT = Ty->getAs<FunctionType>(); |
| 2307 | if (FT) { |
| 2308 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) |
Richard Smith | d3b5c908 | 2012-07-27 04:22:15 +0000 | [diff] [blame] | 2309 | if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && |
Richard Smith | f623c96 | 2012-04-17 00:58:00 +0000 | [diff] [blame] | 2310 | Proto->isNothrow(Ctx)) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2311 | return false; |
| 2312 | } |
| 2313 | return true; |
| 2314 | } |
| 2315 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2316 | CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) { |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2317 | // Compute the callee type. |
| 2318 | QualType calleeType = C->getCallee()->getType(); |
| 2319 | if (calleeType == Context->BoundMemberTy) { |
| 2320 | QualType boundType = Expr::findBoundMemberType(C->getCallee()); |
| 2321 | |
| 2322 | // We should only get a null bound type if processing a dependent |
| 2323 | // CFG. Recover by assuming nothing. |
| 2324 | if (!boundType.isNull()) calleeType = boundType; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2325 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2326 | |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2327 | // If this is a call to a no-return function, this stops the block here. |
| 2328 | bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); |
| 2329 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2330 | bool AddEHEdge = false; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2331 | |
| 2332 | // Languages without exceptions are assumed to not throw. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2333 | if (Context->getLangOpts().Exceptions) { |
Ted Kremenek | e97b1eb | 2010-09-14 23:41:16 +0000 | [diff] [blame] | 2334 | if (BuildOpts.AddEHEdges) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2335 | AddEHEdge = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2336 | } |
| 2337 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2338 | // If this is a call to a builtin function, it might not actually evaluate |
| 2339 | // its arguments. Don't add them to the CFG if this is the case. |
| 2340 | bool OmitArguments = false; |
| 2341 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2342 | if (FunctionDecl *FD = C->getDirectCallee()) { |
Nico Weber | 758fbac | 2018-02-13 21:31:47 +0000 | [diff] [blame] | 2343 | if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context)) |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2344 | NoReturn = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2345 | if (FD->hasAttr<NoThrowAttr>()) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2346 | AddEHEdge = false; |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2347 | if (FD->getBuiltinID() == Builtin::BI__builtin_object_size) |
| 2348 | OmitArguments = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2349 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2350 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2351 | if (!CanThrow(C->getCallee(), *Context)) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2352 | AddEHEdge = false; |
| 2353 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2354 | if (OmitArguments) { |
| 2355 | assert(!NoReturn && "noreturn calls with unevaluated args not implemented"); |
| 2356 | assert(!AddEHEdge && "EH calls with unevaluated args not implemented"); |
| 2357 | autoCreateBlock(); |
| 2358 | appendStmt(Block, C); |
| 2359 | return Visit(C->getCallee()); |
| 2360 | } |
| 2361 | |
| 2362 | if (!NoReturn && !AddEHEdge) { |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2363 | return VisitStmt(C, asc.withAlwaysAdd(true)); |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2364 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2365 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2366 | if (Block) { |
| 2367 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2368 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2369 | return nullptr; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2370 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2371 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 2372 | if (NoReturn) |
| 2373 | Block = createNoReturnBlock(); |
| 2374 | else |
| 2375 | Block = createBlock(); |
| 2376 | |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2377 | appendStmt(Block, C); |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2378 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2379 | if (AddEHEdge) { |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2380 | // Add exceptional edges. |
| 2381 | if (TryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2382 | addSuccessor(Block, TryTerminatedBlock); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2383 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2384 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2385 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2386 | |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2387 | return VisitChildren(C); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2388 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2389 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2390 | CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, |
| 2391 | AddStmtChoice asc) { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2392 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2393 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2394 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2395 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2396 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2397 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2398 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2399 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2400 | CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2401 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2402 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2403 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2404 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2405 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2406 | CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2407 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2408 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2409 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2410 | Block = createBlock(false); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2411 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2412 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2413 | addSuccessor(Block, KnownVal.isFalse() ? nullptr : LHSBlock); |
| 2414 | addSuccessor(Block, KnownVal.isTrue() ? nullptr : RHSBlock); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2415 | Block->setTerminator(C); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2416 | return addStmt(C->getCond()); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2417 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2418 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2419 | CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) { |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2420 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2421 | addLocalScopeForStmt(C); |
| 2422 | |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2423 | if (!C->body_empty() && !isa<ReturnStmt>(*C->body_rbegin())) { |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2424 | // If the body ends with a ReturnStmt, the dtors will be added in |
| 2425 | // VisitReturnStmt. |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2426 | addAutomaticObjHandling(ScopePos, scopeBeginPos, C); |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2427 | } |
| 2428 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2429 | CFGBlock *LastBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2430 | |
| 2431 | for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend(); |
| 2432 | I != E; ++I ) { |
Ted Kremenek | 4f2ab5a | 2010-08-17 21:00:06 +0000 | [diff] [blame] | 2433 | // If we hit a segment of code just containing ';' (NullStmts), we can |
| 2434 | // get a null block back. In such cases, just use the LastBlock |
| 2435 | if (CFGBlock *newBlock = addStmt(*I)) |
| 2436 | LastBlock = newBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2437 | |
Ted Kremenek | ce499c2 | 2009-08-27 23:16:26 +0000 | [diff] [blame] | 2438 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2439 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2440 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2441 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2442 | return LastBlock; |
| 2443 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2444 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2445 | CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C, |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2446 | AddStmtChoice asc) { |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2447 | const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2448 | const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : nullptr); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2449 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2450 | // Create the confluence block that will "merge" the results of the ternary |
| 2451 | // expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2452 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2453 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2454 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2455 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2456 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2457 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2458 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2459 | // Create a block for the LHS expression if there is an LHS expression. A |
| 2460 | // GCC extension allows LHS to be NULL, causing the condition to be the |
| 2461 | // value that is returned instead. |
| 2462 | // e.g: x ?: y is shorthand for: x ? x : y; |
| 2463 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2464 | Block = nullptr; |
| 2465 | CFGBlock *LHSBlock = nullptr; |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2466 | const Expr *trueExpr = C->getTrueExpr(); |
| 2467 | if (trueExpr != opaqueValue) { |
| 2468 | LHSBlock = Visit(C->getTrueExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2469 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2470 | return nullptr; |
| 2471 | Block = nullptr; |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2472 | } |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2473 | else |
| 2474 | LHSBlock = ConfluenceBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2475 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2476 | // Create the block for the RHS expression. |
| 2477 | Succ = ConfluenceBlock; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2478 | CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2479 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2480 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2481 | |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 2482 | // If the condition is a logical '&&' or '||', build a more accurate CFG. |
| 2483 | if (BinaryOperator *Cond = |
| 2484 | dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens())) |
| 2485 | if (Cond->isLogicalOp()) |
| 2486 | return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first; |
| 2487 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2488 | // Create the block that will contain the condition. |
| 2489 | Block = createBlock(false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2490 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2491 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2492 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Ted Kremenek | 5a09527 | 2014-03-04 21:53:26 +0000 | [diff] [blame] | 2493 | addSuccessor(Block, LHSBlock, !KnownVal.isFalse()); |
| 2494 | addSuccessor(Block, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2495 | Block->setTerminator(C); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2496 | Expr *condExpr = C->getCond(); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2497 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2498 | if (opaqueValue) { |
| 2499 | // Run the condition expression if it's not trivially expressed in |
| 2500 | // terms of the opaque value (or if there is no opaque value). |
| 2501 | if (condExpr != opaqueValue) |
| 2502 | addStmt(condExpr); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2503 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2504 | // Before that, run the common subexpression if there was one. |
| 2505 | // At least one of this or the above will be run. |
| 2506 | return addStmt(BCO->getCommon()); |
| 2507 | } |
| 2508 | |
| 2509 | return addStmt(condExpr); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2510 | } |
| 2511 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2512 | CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) { |
Ted Kremenek | 6878c36 | 2011-05-10 18:42:15 +0000 | [diff] [blame] | 2513 | // Check if the Decl is for an __label__. If so, elide it from the |
| 2514 | // CFG entirely. |
| 2515 | if (isa<LabelDecl>(*DS->decl_begin())) |
| 2516 | return Block; |
| 2517 | |
Ted Kremenek | 3a60114 | 2011-05-24 20:41:31 +0000 | [diff] [blame] | 2518 | // This case also handles static_asserts. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2519 | if (DS->isSingleDecl()) |
| 2520 | return VisitDeclSubExpr(DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2521 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2522 | CFGBlock *B = nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2523 | |
Jordan Rose | 8c6c8a9 | 2012-07-20 18:50:48 +0000 | [diff] [blame] | 2524 | // Build an individual DeclStmt for each decl. |
| 2525 | for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(), |
| 2526 | E = DS->decl_rend(); |
| 2527 | I != E; ++I) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2528 | // Get the alignment of the new DeclStmt, padding out to >=8 bytes. |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 2529 | unsigned A = alignof(DeclStmt) < 8 ? 8 : alignof(DeclStmt); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2530 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2531 | // Allocate the DeclStmt using the BumpPtrAllocator. It will get |
| 2532 | // automatically freed with the CFG. |
| 2533 | DeclGroupRef DG(*I); |
| 2534 | Decl *D = *I; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2535 | void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2536 | DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D)); |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 2537 | cfg->addSyntheticDeclStmt(DSNew, DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2538 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2539 | // Append the fake DeclStmt to block. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2540 | B = VisitDeclSubExpr(DSNew); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2541 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2542 | |
| 2543 | return B; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2544 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2545 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2546 | /// VisitDeclSubExpr - Utility method to add block-level expressions for |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2547 | /// DeclStmts and initializers in them. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2548 | CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2549 | assert(DS->isSingleDecl() && "Can handle single declarations only."); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2550 | VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2551 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2552 | if (!VD) { |
Jordan Rose | 5250b87 | 2013-06-03 22:59:41 +0000 | [diff] [blame] | 2553 | // Of everything that can be declared in a DeclStmt, only VarDecls impact |
| 2554 | // runtime semantics. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2555 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2556 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2557 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2558 | bool HasTemporaries = false; |
| 2559 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2560 | // Guard static initializers under a branch. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2561 | CFGBlock *blockAfterStaticInit = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2562 | |
| 2563 | if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) { |
| 2564 | // For static variables, we need to create a branch to track |
| 2565 | // whether or not they are initialized. |
| 2566 | if (Block) { |
| 2567 | Succ = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2568 | Block = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2569 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2570 | return nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2571 | } |
| 2572 | blockAfterStaticInit = Succ; |
| 2573 | } |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2574 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2575 | // Destructors of temporaries in initialization expression should be called |
| 2576 | // after initialization finishes. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2577 | Expr *Init = VD->getInit(); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2578 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 2579 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2580 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 2581 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2582 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 2583 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 2584 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
| 2585 | /*BindToTemporary=*/false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2586 | } |
| 2587 | } |
| 2588 | |
| 2589 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2590 | appendStmt(Block, DS); |
Artem Dergachev | 5fc1033 | 2018-02-10 01:55:23 +0000 | [diff] [blame] | 2591 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2592 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 2593 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2594 | Init); |
Artem Dergachev | 5fc1033 | 2018-02-10 01:55:23 +0000 | [diff] [blame] | 2595 | |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2596 | // Keep track of the last non-null block, as 'Block' can be nulled out |
| 2597 | // if the initializer expression is something like a 'while' in a |
| 2598 | // statement-expression. |
| 2599 | CFGBlock *LastBlock = Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2600 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2601 | if (Init) { |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2602 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2603 | // For expression with temporaries go directly to subexpression to omit |
| 2604 | // generating destructors for the second time. |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2605 | ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); |
| 2606 | if (CFGBlock *newBlock = Visit(EC->getSubExpr())) |
| 2607 | LastBlock = newBlock; |
| 2608 | } |
| 2609 | else { |
| 2610 | if (CFGBlock *newBlock = Visit(Init)) |
| 2611 | LastBlock = newBlock; |
| 2612 | } |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2613 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2614 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2615 | // 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] | 2616 | for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2617 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) { |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2618 | if (CFGBlock *newBlock = addStmt(VA->getSizeExpr())) |
| 2619 | LastBlock = newBlock; |
| 2620 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2621 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 2622 | maybeAddScopeBeginForVarDecl(Block, VD, DS); |
| 2623 | |
Marcin Swiderski | 667ffec | 2010-10-01 00:23:17 +0000 | [diff] [blame] | 2624 | // Remove variable from local scope. |
| 2625 | if (ScopePos && VD == *ScopePos) |
| 2626 | ++ScopePos; |
| 2627 | |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2628 | CFGBlock *B = LastBlock; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2629 | if (blockAfterStaticInit) { |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2630 | Succ = B; |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2631 | Block = createBlock(false); |
| 2632 | Block->setTerminator(DS); |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2633 | addSuccessor(Block, blockAfterStaticInit); |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2634 | addSuccessor(Block, B); |
| 2635 | B = Block; |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2636 | } |
| 2637 | |
| 2638 | return B; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2639 | } |
| 2640 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2641 | CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2642 | // We may see an if statement in the middle of a basic block, or it may be the |
| 2643 | // first statement we are processing. In either case, we create a new basic |
| 2644 | // block. First, we create the blocks for the then...else statements, and |
| 2645 | // 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] | 2646 | // middle of a block, we stop processing that block. That block is then the |
| 2647 | // implicit successor for the "then" and "else" clauses. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2648 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2649 | // Save local scope position because in case of condition variable ScopePos |
| 2650 | // won't be restored when traversing AST. |
| 2651 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2652 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2653 | // Create local scope for C++17 if init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2654 | if (Stmt *Init = I->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2655 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2656 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2657 | // Create local scope for possible condition variable. |
| 2658 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2659 | if (VarDecl *VD = I->getConditionVariable()) |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2660 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2661 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2662 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), I); |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2663 | |
Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 2664 | // The block we were processing is now finished. Make it the successor |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2665 | // block. |
| 2666 | if (Block) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2667 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2668 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2669 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2670 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2671 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2672 | // Process the false branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2673 | CFGBlock *ElseBlock = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2674 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2675 | if (Stmt *Else = I->getElse()) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2676 | SaveAndRestore<CFGBlock*> sv(Succ); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2677 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2678 | // NULL out Block so that the recursive call to Visit will |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2679 | // create a new basic block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2680 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2681 | |
| 2682 | // If branch is not a compound statement create implicit scope |
| 2683 | // and add destructors. |
| 2684 | if (!isa<CompoundStmt>(Else)) |
| 2685 | addLocalScopeAndDtors(Else); |
| 2686 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2687 | ElseBlock = addStmt(Else); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2688 | |
Ted Kremenek | bbad8ce | 2007-08-30 18:13:31 +0000 | [diff] [blame] | 2689 | if (!ElseBlock) // Can occur when the Else body has all NullStmts. |
| 2690 | ElseBlock = sv.get(); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2691 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2692 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2693 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2694 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2695 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2696 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2697 | // Process the true branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2698 | CFGBlock *ThenBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2699 | { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2700 | Stmt *Then = I->getThen(); |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 2701 | assert(Then); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2702 | SaveAndRestore<CFGBlock*> sv(Succ); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2703 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2704 | |
| 2705 | // If branch is not a compound statement create implicit scope |
| 2706 | // and add destructors. |
| 2707 | if (!isa<CompoundStmt>(Then)) |
| 2708 | addLocalScopeAndDtors(Then); |
| 2709 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2710 | ThenBlock = addStmt(Then); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2711 | |
Ted Kremenek | 1b37951 | 2009-04-01 03:52:47 +0000 | [diff] [blame] | 2712 | if (!ThenBlock) { |
| 2713 | // We can reach here if the "then" body has all NullStmts. |
| 2714 | // Create an empty block so we can distinguish between true and false |
| 2715 | // branches in path-sensitive analyses. |
| 2716 | ThenBlock = createBlock(false); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2717 | addSuccessor(ThenBlock, sv.get()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2718 | } else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2719 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2720 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2721 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2722 | } |
| 2723 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2724 | // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by |
| 2725 | // having these handle the actual control-flow jump. Note that |
| 2726 | // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)" |
| 2727 | // we resort to the old control-flow behavior. This special handling |
| 2728 | // removes infeasible paths from the control-flow graph by having the |
| 2729 | // control-flow transfer of '&&' or '||' go directly into the then/else |
| 2730 | // blocks directly. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2731 | BinaryOperator *Cond = |
| 2732 | I->getConditionVariable() |
| 2733 | ? nullptr |
| 2734 | : dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens()); |
| 2735 | CFGBlock *LastBlock; |
| 2736 | if (Cond && Cond->isLogicalOp()) |
| 2737 | LastBlock = VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first; |
| 2738 | else { |
| 2739 | // Now create a new block containing the if statement. |
| 2740 | Block = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2741 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2742 | // Set the terminator of the new block to the If statement. |
| 2743 | Block->setTerminator(I); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2744 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2745 | // See if this is a known constant. |
| 2746 | const TryResult &KnownVal = tryEvaluateBool(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2747 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2748 | // Add the successors. If we know that specific branches are |
| 2749 | // unreachable, inform addSuccessor() of that knowledge. |
| 2750 | addSuccessor(Block, ThenBlock, /* isReachable = */ !KnownVal.isFalse()); |
| 2751 | addSuccessor(Block, ElseBlock, /* isReachable = */ !KnownVal.isTrue()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2752 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2753 | // Add the condition as the last statement in the new block. This may |
| 2754 | // create new blocks as the condition may contain control-flow. Any newly |
| 2755 | // created blocks will be pointed to be "Block". |
| 2756 | LastBlock = addStmt(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2757 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2758 | // If the IfStmt contains a condition variable, add it and its |
| 2759 | // initializer to the CFG. |
| 2760 | if (const DeclStmt* DS = I->getConditionVariableDeclStmt()) { |
| 2761 | autoCreateBlock(); |
| 2762 | LastBlock = addStmt(const_cast<DeclStmt *>(DS)); |
| 2763 | } |
Ted Kremenek | a7bcbde | 2009-12-23 04:49:01 +0000 | [diff] [blame] | 2764 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2765 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2766 | // Finally, if the IfStmt contains a C++17 init-stmt, add it to the CFG. |
| 2767 | if (Stmt *Init = I->getInit()) { |
| 2768 | autoCreateBlock(); |
| 2769 | LastBlock = addStmt(Init); |
| 2770 | } |
| 2771 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2772 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2773 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2774 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2775 | CFGBlock *CFGBuilder::VisitReturnStmt(ReturnStmt *R) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 2776 | // 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] | 2777 | // |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2778 | // NOTE: If a "return" appears in the middle of a block, this means that the |
| 2779 | // code afterwards is DEAD (unreachable). We still keep a basic block |
| 2780 | // for that code; a simple "mark-and-sweep" from the entry block will be |
| 2781 | // able to report such dead blocks. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2782 | |
| 2783 | // Create the new block. |
| 2784 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2785 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2786 | addAutomaticObjHandling(ScopePos, LocalScope::const_iterator(), R); |
Pavel Labath | 921e765 | 2013-09-06 08:12:48 +0000 | [diff] [blame] | 2787 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2788 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 2789 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), R), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2790 | R->getRetValue()); |
Artem Dergachev | 9ac2e11 | 2018-02-12 22:36:36 +0000 | [diff] [blame] | 2791 | |
Pavel Labath | 921e765 | 2013-09-06 08:12:48 +0000 | [diff] [blame] | 2792 | // If the one of the destructors does not return, we already have the Exit |
| 2793 | // block as a successor. |
| 2794 | if (!Block->hasNoReturnElement()) |
| 2795 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2796 | |
| 2797 | // Add the return statement to the block. This may create new blocks if R |
| 2798 | // contains control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2799 | return VisitStmt(R, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2800 | } |
| 2801 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 2802 | CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) { |
| 2803 | // SEHExceptStmt are treated like labels, so they are the first statement in a |
| 2804 | // block. |
| 2805 | |
| 2806 | // Save local scope position because in case of exception variable ScopePos |
| 2807 | // won't be restored when traversing AST. |
| 2808 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2809 | |
| 2810 | addStmt(ES->getBlock()); |
| 2811 | CFGBlock *SEHExceptBlock = Block; |
| 2812 | if (!SEHExceptBlock) |
| 2813 | SEHExceptBlock = createBlock(); |
| 2814 | |
| 2815 | appendStmt(SEHExceptBlock, ES); |
| 2816 | |
| 2817 | // Also add the SEHExceptBlock as a label, like with regular labels. |
| 2818 | SEHExceptBlock->setLabel(ES); |
| 2819 | |
| 2820 | // Bail out if the CFG is bad. |
| 2821 | if (badCFG) |
| 2822 | return nullptr; |
| 2823 | |
| 2824 | // We set Block to NULL to allow lazy creation of a new block (if necessary). |
| 2825 | Block = nullptr; |
| 2826 | |
| 2827 | return SEHExceptBlock; |
| 2828 | } |
| 2829 | |
| 2830 | CFGBlock *CFGBuilder::VisitSEHFinallyStmt(SEHFinallyStmt *FS) { |
| 2831 | return VisitCompoundStmt(FS->getBlock()); |
| 2832 | } |
| 2833 | |
| 2834 | CFGBlock *CFGBuilder::VisitSEHLeaveStmt(SEHLeaveStmt *LS) { |
| 2835 | // "__leave" is a control-flow statement. Thus we stop processing the current |
| 2836 | // block. |
| 2837 | if (badCFG) |
| 2838 | return nullptr; |
| 2839 | |
| 2840 | // Now create a new block that ends with the __leave statement. |
| 2841 | Block = createBlock(false); |
| 2842 | Block->setTerminator(LS); |
| 2843 | |
| 2844 | // If there is no target for the __leave, then we are looking at an incomplete |
| 2845 | // AST. This means that the CFG cannot be constructed. |
| 2846 | if (SEHLeaveJumpTarget.block) { |
| 2847 | addAutomaticObjHandling(ScopePos, SEHLeaveJumpTarget.scopePosition, LS); |
| 2848 | addSuccessor(Block, SEHLeaveJumpTarget.block); |
| 2849 | } else |
| 2850 | badCFG = true; |
| 2851 | |
| 2852 | return Block; |
| 2853 | } |
| 2854 | |
| 2855 | CFGBlock *CFGBuilder::VisitSEHTryStmt(SEHTryStmt *Terminator) { |
| 2856 | // "__try"/"__except"/"__finally" is a control-flow statement. Thus we stop |
| 2857 | // processing the current block. |
| 2858 | CFGBlock *SEHTrySuccessor = nullptr; |
| 2859 | |
| 2860 | if (Block) { |
| 2861 | if (badCFG) |
| 2862 | return nullptr; |
| 2863 | SEHTrySuccessor = Block; |
| 2864 | } else SEHTrySuccessor = Succ; |
| 2865 | |
| 2866 | // FIXME: Implement __finally support. |
| 2867 | if (Terminator->getFinallyHandler()) |
| 2868 | return NYS(); |
| 2869 | |
| 2870 | CFGBlock *PrevSEHTryTerminatedBlock = TryTerminatedBlock; |
| 2871 | |
| 2872 | // Create a new block that will contain the __try statement. |
| 2873 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
| 2874 | |
| 2875 | // Add the terminator in the __try block. |
| 2876 | NewTryTerminatedBlock->setTerminator(Terminator); |
| 2877 | |
| 2878 | if (SEHExceptStmt *Except = Terminator->getExceptHandler()) { |
| 2879 | // The code after the try is the implicit successor if there's an __except. |
| 2880 | Succ = SEHTrySuccessor; |
| 2881 | Block = nullptr; |
| 2882 | CFGBlock *ExceptBlock = VisitSEHExceptStmt(Except); |
| 2883 | if (!ExceptBlock) |
| 2884 | return nullptr; |
| 2885 | // Add this block to the list of successors for the block with the try |
| 2886 | // statement. |
| 2887 | addSuccessor(NewTryTerminatedBlock, ExceptBlock); |
| 2888 | } |
| 2889 | if (PrevSEHTryTerminatedBlock) |
| 2890 | addSuccessor(NewTryTerminatedBlock, PrevSEHTryTerminatedBlock); |
| 2891 | else |
| 2892 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
| 2893 | |
| 2894 | // The code after the try is the implicit successor. |
| 2895 | Succ = SEHTrySuccessor; |
| 2896 | |
| 2897 | // Save the current "__try" context. |
| 2898 | SaveAndRestore<CFGBlock *> save_try(TryTerminatedBlock, |
| 2899 | NewTryTerminatedBlock); |
| 2900 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
| 2901 | |
| 2902 | // Save the current value for the __leave target. |
| 2903 | // All __leaves should go to the code following the __try |
| 2904 | // (FIXME: or if the __try has a __finally, to the __finally.) |
| 2905 | SaveAndRestore<JumpTarget> save_break(SEHLeaveJumpTarget); |
| 2906 | SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos); |
| 2907 | |
| 2908 | assert(Terminator->getTryBlock() && "__try must contain a non-NULL body"); |
| 2909 | Block = nullptr; |
| 2910 | return addStmt(Terminator->getTryBlock()); |
| 2911 | } |
| 2912 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2913 | CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2914 | // Get the block of the labeled statement. Add it to our map. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2915 | addStmt(L->getSubStmt()); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 2916 | CFGBlock *LabelBlock = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2917 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2918 | if (!LabelBlock) // This can happen when the body is empty, i.e. |
| 2919 | LabelBlock = createBlock(); // scopes that only contains NullStmts. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2920 | |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 2921 | assert(LabelMap.find(L->getDecl()) == LabelMap.end() && |
| 2922 | "label already in map"); |
| 2923 | LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2924 | |
| 2925 | // Labels partition blocks, so this is the end of the basic block we were |
| 2926 | // processing (L is the block's label). Because this is label (and we have |
| 2927 | // already processed the substatement) there is no extra control-flow to worry |
| 2928 | // about. |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 2929 | LabelBlock->setLabel(L); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2930 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2931 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2932 | |
| 2933 | // 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] | 2934 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2935 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2936 | // This block is now the implicit successor of other blocks. |
| 2937 | Succ = LabelBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2938 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2939 | return LabelBlock; |
| 2940 | } |
| 2941 | |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 2942 | CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) { |
| 2943 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 2944 | for (const BlockDecl::Capture &CI : E->getBlockDecl()->captures()) { |
| 2945 | if (Expr *CopyExpr = CI.getCopyExpr()) { |
| 2946 | CFGBlock *Tmp = Visit(CopyExpr); |
| 2947 | if (Tmp) |
| 2948 | LastBlock = Tmp; |
| 2949 | } |
| 2950 | } |
| 2951 | return LastBlock; |
| 2952 | } |
| 2953 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 2954 | CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) { |
| 2955 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 2956 | for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(), |
| 2957 | et = E->capture_init_end(); it != et; ++it) { |
| 2958 | if (Expr *Init = *it) { |
| 2959 | CFGBlock *Tmp = Visit(Init); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2960 | if (Tmp) |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 2961 | LastBlock = Tmp; |
| 2962 | } |
| 2963 | } |
| 2964 | return LastBlock; |
| 2965 | } |
| 2966 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2967 | CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2968 | // Goto is a control-flow statement. Thus we stop processing the current |
| 2969 | // block and create a new one. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2970 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2971 | Block = createBlock(false); |
| 2972 | Block->setTerminator(G); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2973 | |
| 2974 | // 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] | 2975 | LabelMapTy::iterator I = LabelMap.find(G->getLabel()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2976 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2977 | if (I == LabelMap.end()) |
| 2978 | // We will need to backpatch this block later. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2979 | BackpatchBlocks.push_back(JumpSource(Block, ScopePos)); |
| 2980 | else { |
| 2981 | JumpTarget JT = I->second; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2982 | addAutomaticObjHandling(ScopePos, JT.scopePosition, G); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2983 | addSuccessor(Block, JT.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2984 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2985 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2986 | return Block; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2987 | } |
| 2988 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2989 | CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2990 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2991 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 2992 | // Save local scope position because in case of condition variable ScopePos |
| 2993 | // won't be restored when traversing AST. |
| 2994 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2995 | |
| 2996 | // Create local scope for init statement and possible condition variable. |
| 2997 | // Add destructor for init statement and condition variable. |
| 2998 | // Store scope position for continue statement. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2999 | if (Stmt *Init = F->getInit()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3000 | addLocalScopeForStmt(Init); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3001 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
| 3002 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3003 | if (VarDecl *VD = F->getConditionVariable()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3004 | addLocalScopeForVarDecl(VD); |
| 3005 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 3006 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3007 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), F); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3008 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3009 | addLoopExit(F); |
| 3010 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 3011 | // "for" is a control-flow statement. Thus we stop processing the current |
| 3012 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3013 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3014 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3015 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3016 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3017 | } else |
| 3018 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3019 | |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 3020 | // Save the current value for the break targets. |
| 3021 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3022 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3023 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 3024 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3025 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3026 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3027 | // Now create the loop body. |
| 3028 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3029 | assert(F->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3030 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3031 | // Save the current values for Block, Succ, continue and break targets. |
| 3032 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3033 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3034 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3035 | // Create an empty block to represent the transition block for looping back |
| 3036 | // to the head of the loop. If we have increment code, it will |
| 3037 | // go in this block as well. |
| 3038 | Block = Succ = TransitionBlock = createBlock(false); |
| 3039 | TransitionBlock->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3040 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3041 | if (Stmt *I = F->getInc()) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3042 | // Generate increment code in its own basic block. This is the target of |
| 3043 | // continue statements. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3044 | Succ = addStmt(I); |
Ted Kremenek | b0746ca | 2008-09-04 21:48:47 +0000 | [diff] [blame] | 3045 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3046 | |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3047 | // Finish up the increment (or empty) block if it hasn't been already. |
| 3048 | if (Block) { |
| 3049 | assert(Block == Succ); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3050 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3051 | return nullptr; |
| 3052 | Block = nullptr; |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3053 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3054 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3055 | // The starting block for the loop increment is the block that should |
| 3056 | // represent the 'loop target' for looping back to the start of the loop. |
| 3057 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 3058 | ContinueJumpTarget.block->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3059 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3060 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3061 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, F); |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3062 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3063 | // If body is not a compound statement create implicit scope |
| 3064 | // and add destructors. |
| 3065 | if (!isa<CompoundStmt>(F->getBody())) |
| 3066 | addLocalScopeAndDtors(F->getBody()); |
| 3067 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3068 | // Now populate the body block, and in the process create new blocks as we |
| 3069 | // walk the body of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3070 | BodyBlock = addStmt(F->getBody()); |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3071 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3072 | if (!BodyBlock) { |
| 3073 | // In the case of "for (...;...;...);" we can have a null BodyBlock. |
| 3074 | // Use the continue jump target as the proxy for the body. |
| 3075 | BodyBlock = ContinueJumpTarget.block; |
| 3076 | } |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3077 | else if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3078 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3079 | } |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3080 | |
| 3081 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3082 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3083 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3084 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3085 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3086 | do { |
| 3087 | Expr *C = F->getCond(); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 3088 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3089 | |
| 3090 | // Specially handle logical operators, which have a slightly |
| 3091 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3092 | if (BinaryOperator *Cond = |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3093 | dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : nullptr)) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3094 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 3095 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3096 | VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor); |
| 3097 | break; |
| 3098 | } |
| 3099 | |
| 3100 | // The default case when not handling logical operators. |
| 3101 | EntryConditionBlock = ExitConditionBlock = createBlock(false); |
| 3102 | ExitConditionBlock->setTerminator(F); |
| 3103 | |
| 3104 | // See if this is a known constant. |
| 3105 | TryResult KnownVal(true); |
| 3106 | |
| 3107 | if (C) { |
| 3108 | // Now add the actual condition to the condition block. |
| 3109 | // Because the condition itself may contain control-flow, new blocks may |
| 3110 | // be created. Thus we update "Succ" after adding the condition. |
| 3111 | Block = ExitConditionBlock; |
| 3112 | EntryConditionBlock = addStmt(C); |
| 3113 | |
| 3114 | // If this block contains a condition variable, add both the condition |
| 3115 | // variable and initializer to the CFG. |
| 3116 | if (VarDecl *VD = F->getConditionVariable()) { |
| 3117 | if (Expr *Init = VD->getInit()) { |
| 3118 | autoCreateBlock(); |
| 3119 | appendStmt(Block, F->getConditionVariableDeclStmt()); |
| 3120 | EntryConditionBlock = addStmt(Init); |
| 3121 | assert(Block == EntryConditionBlock); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 3122 | maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3123 | } |
| 3124 | } |
| 3125 | |
| 3126 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3127 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3128 | |
| 3129 | KnownVal = tryEvaluateBool(C); |
| 3130 | } |
| 3131 | |
| 3132 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3133 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3134 | // Link up the condition block with the code that follows the loop. (the |
| 3135 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3136 | addSuccessor(ExitConditionBlock, |
| 3137 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3138 | } while (false); |
| 3139 | |
| 3140 | // Link up the loop-back block to the entry condition block. |
| 3141 | addSuccessor(TransitionBlock, EntryConditionBlock); |
| 3142 | |
| 3143 | // The condition block is the implicit successor for any code above the loop. |
| 3144 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3145 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3146 | // If the loop contains initialization, create a new block for those |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3147 | // statements. This block can also contain statements that precede the loop. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3148 | if (Stmt *I = F->getInit()) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 3149 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3150 | ScopePos = LoopBeginScopePos; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3151 | Block = createBlock(); |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3152 | return addStmt(I); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3153 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3154 | |
| 3155 | // There is no loop initialization. We are thus basically a while loop. |
| 3156 | // NULL out Block to force lazy block construction. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3157 | Block = nullptr; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3158 | Succ = EntryConditionBlock; |
| 3159 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3160 | } |
| 3161 | |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 3162 | CFGBlock * |
| 3163 | CFGBuilder::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE, |
| 3164 | AddStmtChoice asc) { |
| 3165 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 3166 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), MTE), |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 3167 | MTE->getTemporary()); |
| 3168 | |
| 3169 | return VisitStmt(MTE, asc); |
| 3170 | } |
| 3171 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3172 | CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3173 | if (asc.alwaysAdd(*this, M)) { |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3174 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3175 | appendStmt(Block, M); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3176 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3177 | return Visit(M->getBase()); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3178 | } |
| 3179 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3180 | CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3181 | // Objective-C fast enumeration 'for' statements: |
| 3182 | // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC |
| 3183 | // |
| 3184 | // for ( Type newVariable in collection_expression ) { statements } |
| 3185 | // |
| 3186 | // becomes: |
| 3187 | // |
| 3188 | // prologue: |
| 3189 | // 1. collection_expression |
| 3190 | // T. jump to loop_entry |
| 3191 | // loop_entry: |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3192 | // 1. side-effects of element expression |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3193 | // 1. ObjCForCollectionStmt [performs binding to newVariable] |
| 3194 | // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil] |
| 3195 | // TB: |
| 3196 | // statements |
| 3197 | // T. jump to loop_entry |
| 3198 | // FB: |
| 3199 | // what comes after |
| 3200 | // |
| 3201 | // and |
| 3202 | // |
| 3203 | // Type existingItem; |
| 3204 | // for ( existingItem in expression ) { statements } |
| 3205 | // |
| 3206 | // becomes: |
| 3207 | // |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3208 | // the same with newVariable replaced with existingItem; the binding works |
| 3209 | // the same except that for one ObjCForCollectionStmt::getElement() returns |
| 3210 | // a DeclStmt and the other returns a DeclRefExpr. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3211 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3212 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3213 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3214 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3215 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3216 | return nullptr; |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3217 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3218 | Block = nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3219 | } else |
| 3220 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3221 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3222 | // Build the condition blocks. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3223 | CFGBlock *ExitConditionBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3224 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3225 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3226 | ExitConditionBlock->setTerminator(S); |
| 3227 | |
| 3228 | // The last statement in the block should be the ObjCForCollectionStmt, which |
| 3229 | // performs the actual binding to 'element' and determines if there are any |
| 3230 | // more items in the collection. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3231 | appendStmt(ExitConditionBlock, S); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3232 | Block = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3233 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3234 | // 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] | 3235 | // 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] | 3236 | // the CFG unless it contains control-flow. |
Ted Kremenek | c14efa7 | 2011-08-17 21:04:19 +0000 | [diff] [blame] | 3237 | CFGBlock *EntryConditionBlock = Visit(S->getElement(), |
| 3238 | AddStmtChoice::NotAlwaysAdd); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3239 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3240 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3241 | return nullptr; |
| 3242 | Block = nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3243 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3244 | |
| 3245 | // The condition block is the implicit successor for the loop body as well as |
| 3246 | // any code above the loop. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3247 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3248 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3249 | // Now create the true branch. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3250 | { |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3251 | // Save the current values for Succ, continue and break targets. |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3252 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3253 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3254 | save_break(BreakJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3255 | |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3256 | // Add an intermediate block between the BodyBlock and the |
| 3257 | // EntryConditionBlock to represent the "loop back" transition, for looping |
| 3258 | // back to the head of the loop. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3259 | CFGBlock *LoopBackBlock = nullptr; |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3260 | Succ = LoopBackBlock = createBlock(); |
| 3261 | LoopBackBlock->setLoopTarget(S); |
| 3262 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3263 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3264 | ContinueJumpTarget = JumpTarget(Succ, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3265 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3266 | CFGBlock *BodyBlock = addStmt(S->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3267 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3268 | if (!BodyBlock) |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3269 | BodyBlock = ContinueJumpTarget.block; // can happen for "for (X in Y) ;" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3270 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3271 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3272 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3273 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3274 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3275 | // This new body block is a successor to our "exit" condition block. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3276 | addSuccessor(ExitConditionBlock, BodyBlock); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3277 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3278 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3279 | // Link up the condition block with the code that follows the loop. |
| 3280 | // (the false branch). |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3281 | addSuccessor(ExitConditionBlock, LoopSuccessor); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3282 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3283 | // Now create a prologue block to contain the collection expression. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3284 | Block = createBlock(); |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3285 | return addStmt(S->getCollection()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3286 | } |
| 3287 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 3288 | CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) { |
| 3289 | // Inline the body. |
| 3290 | return addStmt(S->getSubStmt()); |
| 3291 | // TODO: consider adding cleanups for the end of @autoreleasepool scope. |
| 3292 | } |
| 3293 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3294 | CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) { |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3295 | // FIXME: Add locking 'primitives' to CFG for @synchronized. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3296 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3297 | // Inline the body. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3298 | CFGBlock *SyncBlock = addStmt(S->getSynchBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3299 | |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3300 | // The sync body starts its own basic block. This makes it a little easier |
| 3301 | // for diagnostic clients. |
| 3302 | if (SyncBlock) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3303 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3304 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3305 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3306 | Block = nullptr; |
Ted Kremenek | ecc31c9 | 2010-05-13 16:38:08 +0000 | [diff] [blame] | 3307 | Succ = SyncBlock; |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3308 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3309 | |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3310 | // Add the @synchronized to the CFG. |
| 3311 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3312 | appendStmt(Block, S); |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3313 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3314 | // Inline the sync expression. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3315 | return addStmt(S->getSynchExpr()); |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3316 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3317 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3318 | CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3319 | // FIXME |
Ted Kremenek | 89be652 | 2009-04-07 04:26:02 +0000 | [diff] [blame] | 3320 | return NYS(); |
Ted Kremenek | 89cc8ea | 2009-03-30 22:29:21 +0000 | [diff] [blame] | 3321 | } |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3322 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3323 | CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) { |
| 3324 | autoCreateBlock(); |
| 3325 | |
| 3326 | // Add the PseudoObject as the last thing. |
| 3327 | appendStmt(Block, E); |
| 3328 | |
| 3329 | CFGBlock *lastBlock = Block; |
| 3330 | |
| 3331 | // Before that, evaluate all of the semantics in order. In |
| 3332 | // CFG-land, that means appending them in reverse order. |
| 3333 | for (unsigned i = E->getNumSemanticExprs(); i != 0; ) { |
| 3334 | Expr *Semantic = E->getSemanticExpr(--i); |
| 3335 | |
| 3336 | // If the semantic is an opaque value, we're being asked to bind |
| 3337 | // it to its source expression. |
| 3338 | if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic)) |
| 3339 | Semantic = OVE->getSourceExpr(); |
| 3340 | |
| 3341 | if (CFGBlock *B = Visit(Semantic)) |
| 3342 | lastBlock = B; |
| 3343 | } |
| 3344 | |
| 3345 | return lastBlock; |
| 3346 | } |
| 3347 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3348 | CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3349 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3350 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3351 | // Save local scope position because in case of condition variable ScopePos |
| 3352 | // won't be restored when traversing AST. |
| 3353 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3354 | |
| 3355 | // Create local scope for possible condition variable. |
| 3356 | // Store scope position for continue statement. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3357 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3358 | if (VarDecl *VD = W->getConditionVariable()) { |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3359 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3360 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3361 | } |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3362 | addLoopExit(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3363 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 3364 | // "while" is a control-flow statement. Thus we stop processing the current |
| 3365 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3366 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3367 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3368 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3369 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3370 | Block = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3371 | } else { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3372 | LoopSuccessor = Succ; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3373 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3374 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3375 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3376 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3377 | // Process the loop body. |
| 3378 | { |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3379 | assert(W->getBody()); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3380 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3381 | // Save the current values for Block, Succ, continue and break targets. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3382 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3383 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3384 | save_break(BreakJumpTarget); |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3385 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3386 | // Create an empty block to represent the transition block for looping back |
| 3387 | // to the head of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3388 | Succ = TransitionBlock = createBlock(false); |
| 3389 | TransitionBlock->setLoopTarget(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3390 | ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3391 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3392 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3393 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3394 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3395 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3396 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3397 | |
| 3398 | // If body is not a compound statement create implicit scope |
| 3399 | // and add destructors. |
| 3400 | if (!isa<CompoundStmt>(W->getBody())) |
| 3401 | addLocalScopeAndDtors(W->getBody()); |
| 3402 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3403 | // 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] | 3404 | BodyBlock = addStmt(W->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3405 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3406 | if (!BodyBlock) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3407 | BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;" |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3408 | else if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3409 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3410 | } |
| 3411 | |
| 3412 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3413 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3414 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3415 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3416 | |
| 3417 | do { |
| 3418 | Expr *C = W->getCond(); |
| 3419 | |
| 3420 | // Specially handle logical operators, which have a slightly |
| 3421 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3422 | if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens())) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3423 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 3424 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
| 3425 | VisitLogicalOperator(Cond, W, BodyBlock, LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3426 | break; |
| 3427 | } |
| 3428 | |
| 3429 | // The default case when not handling logical operators. |
Ted Kremenek | 451c4d5 | 2012-10-12 22:56:26 +0000 | [diff] [blame] | 3430 | ExitConditionBlock = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3431 | ExitConditionBlock->setTerminator(W); |
| 3432 | |
| 3433 | // Now add the actual condition to the condition block. |
| 3434 | // Because the condition itself may contain control-flow, new blocks may |
| 3435 | // be created. Thus we update "Succ" after adding the condition. |
| 3436 | Block = ExitConditionBlock; |
| 3437 | Block = EntryConditionBlock = addStmt(C); |
| 3438 | |
| 3439 | // If this block contains a condition variable, add both the condition |
| 3440 | // variable and initializer to the CFG. |
| 3441 | if (VarDecl *VD = W->getConditionVariable()) { |
| 3442 | if (Expr *Init = VD->getInit()) { |
| 3443 | autoCreateBlock(); |
| 3444 | appendStmt(Block, W->getConditionVariableDeclStmt()); |
| 3445 | EntryConditionBlock = addStmt(Init); |
| 3446 | assert(Block == EntryConditionBlock); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 3447 | maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3448 | } |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3449 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3450 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3451 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3452 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3453 | |
| 3454 | // See if this is a known constant. |
| 3455 | const TryResult& KnownVal = tryEvaluateBool(C); |
| 3456 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3457 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3458 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3459 | // Link up the condition block with the code that follows the loop. (the |
| 3460 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3461 | addSuccessor(ExitConditionBlock, |
| 3462 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3463 | } while(false); |
| 3464 | |
| 3465 | // Link up the loop-back block to the entry condition block. |
| 3466 | addSuccessor(TransitionBlock, EntryConditionBlock); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3467 | |
| 3468 | // There can be no more statements in the condition block since we loop back |
| 3469 | // 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] | 3470 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3471 | |
Ted Kremenek | 1ce53c4 | 2009-12-24 01:34:10 +0000 | [diff] [blame] | 3472 | // Return the condition block, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3473 | Succ = EntryConditionBlock; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3474 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3475 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3476 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3477 | CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3478 | // FIXME: For now we pretend that @catch and the code it contains does not |
| 3479 | // exit. |
| 3480 | return Block; |
| 3481 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3482 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3483 | CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3484 | // FIXME: This isn't complete. We basically treat @throw like a return |
| 3485 | // statement. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3486 | |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3487 | // 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] | 3488 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3489 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3490 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3491 | // Create the new block. |
| 3492 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3493 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3494 | // The Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3495 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3496 | |
| 3497 | // Add the statement to the block. This may create new blocks if S contains |
| 3498 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3499 | return VisitStmt(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3500 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3501 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3502 | CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3503 | // 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] | 3504 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3505 | return nullptr; |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3506 | |
| 3507 | // Create the new block. |
| 3508 | Block = createBlock(false); |
| 3509 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3510 | if (TryTerminatedBlock) |
| 3511 | // The current try statement is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3512 | addSuccessor(Block, TryTerminatedBlock); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3513 | else |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3514 | // otherwise the Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3515 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3516 | |
| 3517 | // Add the statement to the block. This may create new blocks if S contains |
| 3518 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3519 | return VisitStmt(T, AddStmtChoice::AlwaysAdd); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3520 | } |
| 3521 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3522 | CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3523 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3524 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3525 | addLoopExit(D); |
| 3526 | |
Mike Stump | 8d50b6a | 2009-07-21 01:27:50 +0000 | [diff] [blame] | 3527 | // "do...while" is a control-flow statement. Thus we stop processing the |
| 3528 | // current block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3529 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3530 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3531 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3532 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3533 | } else |
| 3534 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3535 | |
| 3536 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3537 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3538 | // evaluate the condition. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3539 | CFGBlock *ExitConditionBlock = createBlock(false); |
| 3540 | CFGBlock *EntryConditionBlock = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3541 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3542 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3543 | ExitConditionBlock->setTerminator(D); |
| 3544 | |
| 3545 | // Now add the actual condition to the condition block. Because the condition |
| 3546 | // itself may contain control-flow, new blocks may be created. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3547 | if (Stmt *C = D->getCond()) { |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3548 | Block = ExitConditionBlock; |
| 3549 | EntryConditionBlock = addStmt(C); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3550 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3551 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3552 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3553 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3554 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3555 | |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3556 | // The condition block is the implicit successor for the loop body. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3557 | Succ = EntryConditionBlock; |
| 3558 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3559 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3560 | const TryResult &KnownVal = tryEvaluateBool(D->getCond()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3561 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3562 | // Process the loop body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3563 | CFGBlock *BodyBlock = nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3564 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3565 | assert(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3566 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3567 | // Save the current values for Block, Succ, and continue and break targets |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3568 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3569 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
| 3570 | save_break(BreakJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3571 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3572 | // All continues within this loop should go to the condition block |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3573 | ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3574 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3575 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3576 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3577 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3578 | // NULL out Block to force lazy instantiation of blocks for the body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3579 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3580 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3581 | // If body is not a compound statement create implicit scope |
| 3582 | // and add destructors. |
| 3583 | if (!isa<CompoundStmt>(D->getBody())) |
| 3584 | addLocalScopeAndDtors(D->getBody()); |
| 3585 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3586 | // 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] | 3587 | BodyBlock = addStmt(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3588 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3589 | if (!BodyBlock) |
Ted Kremenek | 39321aa | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 3590 | BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3591 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3592 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3593 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3594 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3595 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3596 | // Add an intermediate block between the BodyBlock and the |
| 3597 | // ExitConditionBlock to represent the "loop back" transition. Create an |
| 3598 | // empty block to represent the transition block for looping back to the |
| 3599 | // head of the loop. |
| 3600 | // FIXME: Can we do this more efficiently without adding another block? |
| 3601 | Block = nullptr; |
| 3602 | Succ = BodyBlock; |
| 3603 | CFGBlock *LoopBackBlock = createBlock(); |
| 3604 | LoopBackBlock->setLoopTarget(D); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3605 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3606 | if (!KnownVal.isFalse()) |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3607 | // Add the loop body entry as a successor to the condition. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3608 | addSuccessor(ExitConditionBlock, LoopBackBlock); |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3609 | else |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3610 | addSuccessor(ExitConditionBlock, nullptr); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3611 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3612 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3613 | // Link up the condition block with the code that follows the loop. |
| 3614 | // (the false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3615 | addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3616 | |
| 3617 | // There can be no more statements in the body block(s) since we loop back to |
| 3618 | // the body. NULL out Block to force lazy creation of another block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3619 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3620 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3621 | // Return the loop body, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3622 | Succ = BodyBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3623 | return BodyBlock; |
| 3624 | } |
| 3625 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3626 | CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3627 | // "continue" is a control-flow statement. Thus we stop processing the |
| 3628 | // current block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3629 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3630 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3631 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3632 | // Now create a new block that ends with the continue statement. |
| 3633 | Block = createBlock(false); |
| 3634 | Block->setTerminator(C); |
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 | // 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] | 3637 | // incomplete AST. This means the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3638 | if (ContinueJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3639 | addAutomaticObjHandling(ScopePos, ContinueJumpTarget.scopePosition, C); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3640 | addSuccessor(Block, ContinueJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3641 | } else |
Ted Kremenek | 882cf06 | 2009-04-07 18:53:24 +0000 | [diff] [blame] | 3642 | badCFG = true; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3643 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3644 | return Block; |
| 3645 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3646 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3647 | CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 3648 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3649 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3650 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3651 | appendStmt(Block, E); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3652 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3653 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3654 | // VLA types have expressions that must be evaluated. |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3655 | CFGBlock *lastBlock = Block; |
| 3656 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3657 | if (E->isArgumentType()) { |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 3658 | for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3659 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3660 | lastBlock = addStmt(VA->getSizeExpr()); |
Ted Kremenek | 84a1ca5 | 2011-08-06 00:30:00 +0000 | [diff] [blame] | 3661 | } |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3662 | return lastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3663 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3664 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3665 | /// VisitStmtExpr - Utility method to handle (nested) statement |
| 3666 | /// expressions (a GCC extension). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3667 | CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3668 | if (asc.alwaysAdd(*this, SE)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3669 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3670 | appendStmt(Block, SE); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3671 | } |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3672 | return VisitCompoundStmt(SE->getSubStmt()); |
| 3673 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3674 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3675 | CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3676 | // "switch" is a control-flow statement. Thus we stop processing the current |
| 3677 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3678 | CFGBlock *SwitchSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3679 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3680 | // Save local scope position because in case of condition variable ScopePos |
| 3681 | // won't be restored when traversing AST. |
| 3682 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3683 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3684 | // Create local scope for C++17 switch init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3685 | if (Stmt *Init = Terminator->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3686 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3687 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3688 | // Create local scope for possible condition variable. |
| 3689 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3690 | if (VarDecl *VD = Terminator->getConditionVariable()) |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3691 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3692 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3693 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), Terminator); |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3694 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3695 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3696 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3697 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3698 | SwitchSuccessor = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3699 | } else SwitchSuccessor = Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3700 | |
| 3701 | // Save the current "switch" context. |
| 3702 | SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock), |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3703 | save_default(DefaultCaseBlock); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3704 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3705 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3706 | // Set the "default" case to be the block after the switch statement. If the |
| 3707 | // switch statement contains a "default:", this value will be overwritten with |
| 3708 | // the block for that code. |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3709 | DefaultCaseBlock = SwitchSuccessor; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3710 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3711 | // Create a new block that will contain the switch statement. |
| 3712 | SwitchTerminatedBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3713 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3714 | // Now process the switch body. The code after the switch is the implicit |
| 3715 | // successor. |
| 3716 | Succ = SwitchSuccessor; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3717 | BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3718 | |
| 3719 | // When visiting the body, the case statements should automatically get linked |
| 3720 | // up to the switch. We also don't keep a pointer to the body, since all |
| 3721 | // control-flow from the switch goes to case/default statements. |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3722 | assert(Terminator->getBody() && "switch must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3723 | Block = nullptr; |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3724 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3725 | // For pruning unreachable case statements, save the current state |
| 3726 | // for tracking the condition value. |
| 3727 | SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered, |
| 3728 | false); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3729 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3730 | // Determine if the switch condition can be explicitly evaluated. |
| 3731 | assert(Terminator->getCond() && "switch condition must be non-NULL"); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3732 | Expr::EvalResult result; |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3733 | bool b = tryEvaluate(Terminator->getCond(), result); |
| 3734 | SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond, |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3735 | b ? &result : nullptr); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3736 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3737 | // If body is not a compound statement create implicit scope |
| 3738 | // and add destructors. |
| 3739 | if (!isa<CompoundStmt>(Terminator->getBody())) |
| 3740 | addLocalScopeAndDtors(Terminator->getBody()); |
| 3741 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3742 | addStmt(Terminator->getBody()); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3743 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3744 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3745 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3746 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3747 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3748 | // 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] | 3749 | // following the switch body. Moreover, take into account if all the |
| 3750 | // 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] | 3751 | // |
| 3752 | // Note: We add a successor to a switch that is considered covered yet has no |
| 3753 | // case statements if the enumeration has no enumerators. |
| 3754 | bool SwitchAlwaysHasSuccessor = false; |
| 3755 | SwitchAlwaysHasSuccessor |= switchExclusivelyCovered; |
| 3756 | SwitchAlwaysHasSuccessor |= Terminator->isAllEnumCasesCovered() && |
| 3757 | Terminator->getSwitchCaseList(); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3758 | addSuccessor(SwitchTerminatedBlock, DefaultCaseBlock, |
| 3759 | !SwitchAlwaysHasSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3760 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3761 | // Add the terminator and condition in the switch block. |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3762 | SwitchTerminatedBlock->setTerminator(Terminator); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3763 | Block = SwitchTerminatedBlock; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3764 | CFGBlock *LastBlock = addStmt(Terminator->getCond()); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3765 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3766 | // If the SwitchStmt contains a condition variable, add both the |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 3767 | // SwitchStmt and the condition variable initialization to the CFG. |
| 3768 | if (VarDecl *VD = Terminator->getConditionVariable()) { |
| 3769 | if (Expr *Init = VD->getInit()) { |
| 3770 | autoCreateBlock(); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 3771 | appendStmt(Block, Terminator->getConditionVariableDeclStmt()); |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3772 | LastBlock = addStmt(Init); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 3773 | maybeAddScopeBeginForVarDecl(LastBlock, VD, Init); |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 3774 | } |
| 3775 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3776 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3777 | // Finally, if the SwitchStmt contains a C++17 init-stmt, add it to the CFG. |
| 3778 | if (Stmt *Init = Terminator->getInit()) { |
| 3779 | autoCreateBlock(); |
| 3780 | LastBlock = addStmt(Init); |
| 3781 | } |
| 3782 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3783 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3784 | } |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3785 | |
| 3786 | static bool shouldAddCase(bool &switchExclusivelyCovered, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3787 | const Expr::EvalResult *switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3788 | const CaseStmt *CS, |
| 3789 | ASTContext &Ctx) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3790 | if (!switchCond) |
| 3791 | return true; |
| 3792 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3793 | bool addCase = false; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3794 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3795 | if (!switchExclusivelyCovered) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3796 | if (switchCond->Val.isInt()) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3797 | // Evaluate the LHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 3798 | const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx); |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3799 | const llvm::APSInt &condInt = switchCond->Val.getInt(); |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3800 | |
| 3801 | if (condInt == lhsInt) { |
| 3802 | addCase = true; |
| 3803 | switchExclusivelyCovered = true; |
| 3804 | } |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 3805 | else if (condInt > lhsInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3806 | if (const Expr *RHS = CS->getRHS()) { |
| 3807 | // Evaluate the RHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 3808 | const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx); |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 3809 | if (V2 >= condInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3810 | addCase = true; |
| 3811 | switchExclusivelyCovered = true; |
| 3812 | } |
| 3813 | } |
| 3814 | } |
| 3815 | } |
| 3816 | else |
| 3817 | addCase = true; |
| 3818 | } |
| 3819 | return addCase; |
| 3820 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3821 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3822 | CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3823 | // CaseStmts are essentially labels, so they are the first statement in a |
| 3824 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3825 | CFGBlock *TopBlock = nullptr, *LastBlock = nullptr; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3826 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3827 | if (Stmt *Sub = CS->getSubStmt()) { |
| 3828 | // For deeply nested chains of CaseStmts, instead of doing a recursion |
| 3829 | // (which can blow out the stack), manually unroll and create blocks |
| 3830 | // along the way. |
| 3831 | while (isa<CaseStmt>(Sub)) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3832 | CFGBlock *currentBlock = createBlock(false); |
| 3833 | currentBlock->setLabel(CS); |
Ted Kremenek | 55e91e8 | 2007-08-30 18:48:11 +0000 | [diff] [blame] | 3834 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3835 | if (TopBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3836 | addSuccessor(LastBlock, currentBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3837 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3838 | TopBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3839 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3840 | addSuccessor(SwitchTerminatedBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3841 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3842 | CS, *Context) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3843 | ? currentBlock : nullptr); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3844 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3845 | LastBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3846 | CS = cast<CaseStmt>(Sub); |
| 3847 | Sub = CS->getSubStmt(); |
| 3848 | } |
| 3849 | |
| 3850 | addStmt(Sub); |
| 3851 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3852 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3853 | CFGBlock *CaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3854 | if (!CaseBlock) |
| 3855 | CaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3856 | |
| 3857 | // Cases statements partition blocks, so this is the top of the basic block we |
| 3858 | // were processing (the "case XXX:" is the label). |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3859 | CaseBlock->setLabel(CS); |
| 3860 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3861 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3862 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3863 | |
| 3864 | // Add this block to the list of successors for the block with the switch |
| 3865 | // statement. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3866 | assert(SwitchTerminatedBlock); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3867 | addSuccessor(SwitchTerminatedBlock, CaseBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3868 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3869 | CS, *Context)); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3870 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3871 | // 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] | 3872 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3873 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3874 | if (TopBlock) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3875 | addSuccessor(LastBlock, CaseBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3876 | Succ = TopBlock; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3877 | } else { |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3878 | // This block is now the implicit successor of other blocks. |
| 3879 | Succ = CaseBlock; |
| 3880 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3881 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3882 | return Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3883 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3884 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3885 | CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3886 | if (Terminator->getSubStmt()) |
| 3887 | addStmt(Terminator->getSubStmt()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3888 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3889 | DefaultCaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3890 | |
| 3891 | if (!DefaultCaseBlock) |
| 3892 | DefaultCaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3893 | |
| 3894 | // Default statements partition blocks, so this is the top of the basic block |
| 3895 | // we were processing (the "default:" is the label). |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3896 | DefaultCaseBlock->setLabel(Terminator); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3897 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3898 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3899 | return nullptr; |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3900 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3901 | // Unlike case statements, we don't add the default block to the successors |
| 3902 | // for the switch statement immediately. This is done when we finish |
| 3903 | // processing the switch statement. This allows for the default case |
| 3904 | // (including a fall-through to the code after the switch statement) to always |
| 3905 | // be the last successor of a switch-terminated block. |
| 3906 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3907 | // 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] | 3908 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3909 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3910 | // This block is now the implicit successor of other blocks. |
| 3911 | Succ = DefaultCaseBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3912 | |
| 3913 | return DefaultCaseBlock; |
Ted Kremenek | 9682be1 | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 3914 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3915 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3916 | CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) { |
| 3917 | // "try"/"catch" is a control-flow statement. Thus we stop processing the |
| 3918 | // current block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3919 | CFGBlock *TrySuccessor = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3920 | |
| 3921 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3922 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3923 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3924 | TrySuccessor = Block; |
| 3925 | } else TrySuccessor = Succ; |
| 3926 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3927 | CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3928 | |
| 3929 | // Create a new block that will contain the try statement. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 3930 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3931 | // Add the terminator in the try block. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 3932 | NewTryTerminatedBlock->setTerminator(Terminator); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3933 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3934 | bool HasCatchAll = false; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3935 | for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) { |
| 3936 | // The code after the try is the implicit successor. |
| 3937 | Succ = TrySuccessor; |
| 3938 | CXXCatchStmt *CS = Terminator->getHandler(h); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3939 | if (CS->getExceptionDecl() == nullptr) { |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3940 | HasCatchAll = true; |
| 3941 | } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3942 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3943 | CFGBlock *CatchBlock = VisitCXXCatchStmt(CS); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3944 | if (!CatchBlock) |
| 3945 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3946 | // Add this block to the list of successors for the block with the try |
| 3947 | // statement. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3948 | addSuccessor(NewTryTerminatedBlock, CatchBlock); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3949 | } |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3950 | if (!HasCatchAll) { |
| 3951 | if (PrevTryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3952 | addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3953 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3954 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 3955 | } |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3956 | |
| 3957 | // The code after the try is the implicit successor. |
| 3958 | Succ = TrySuccessor; |
| 3959 | |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 3960 | // Save the current "try" context. |
Ted Kremenek | 6b9964d | 2011-08-23 23:05:07 +0000 | [diff] [blame] | 3961 | SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock); |
| 3962 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 3963 | |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3964 | assert(Terminator->getTryBlock() && "try must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3965 | Block = nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3966 | return addStmt(Terminator->getTryBlock()); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3967 | } |
| 3968 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3969 | CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3970 | // CXXCatchStmt are treated like labels, so they are the first statement in a |
| 3971 | // block. |
| 3972 | |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 3973 | // Save local scope position because in case of exception variable ScopePos |
| 3974 | // won't be restored when traversing AST. |
| 3975 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3976 | |
| 3977 | // Create local scope for possible exception variable. |
| 3978 | // Store scope position. Add implicit destructor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3979 | if (VarDecl *VD = CS->getExceptionDecl()) { |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 3980 | LocalScope::const_iterator BeginScopePos = ScopePos; |
| 3981 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3982 | addAutomaticObjHandling(ScopePos, BeginScopePos, CS); |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 3983 | } |
| 3984 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3985 | if (CS->getHandlerBlock()) |
| 3986 | addStmt(CS->getHandlerBlock()); |
| 3987 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3988 | CFGBlock *CatchBlock = Block; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3989 | if (!CatchBlock) |
| 3990 | CatchBlock = createBlock(); |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 3991 | |
| 3992 | // CXXCatchStmt is more than just a label. They have semantic meaning |
| 3993 | // as well, as they implicitly "initialize" the catch variable. Add |
| 3994 | // it to the CFG as a CFGElement so that the control-flow of these |
| 3995 | // semantics gets captured. |
| 3996 | appendStmt(CatchBlock, CS); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3997 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 3998 | // Also add the CXXCatchStmt as a label, to mirror handling of regular |
| 3999 | // labels. |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4000 | CatchBlock->setLabel(CS); |
| 4001 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4002 | // Bail out if the CFG is bad. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4003 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4004 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4005 | |
| 4006 | // 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] | 4007 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4008 | |
| 4009 | return CatchBlock; |
| 4010 | } |
| 4011 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4012 | CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) { |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4013 | // C++0x for-range statements are specified as [stmt.ranged]: |
| 4014 | // |
| 4015 | // { |
| 4016 | // auto && __range = range-init; |
| 4017 | // for ( auto __begin = begin-expr, |
| 4018 | // __end = end-expr; |
| 4019 | // __begin != __end; |
| 4020 | // ++__begin ) { |
| 4021 | // for-range-declaration = *__begin; |
| 4022 | // statement |
| 4023 | // } |
| 4024 | // } |
| 4025 | |
| 4026 | // Save local scope position before the addition of the implicit variables. |
| 4027 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 4028 | |
| 4029 | // Create local scopes and destructors for range, begin and end variables. |
| 4030 | if (Stmt *Range = S->getRangeStmt()) |
| 4031 | addLocalScopeForStmt(Range); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 4032 | if (Stmt *Begin = S->getBeginStmt()) |
| 4033 | addLocalScopeForStmt(Begin); |
| 4034 | if (Stmt *End = S->getEndStmt()) |
| 4035 | addLocalScopeForStmt(End); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4036 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), S); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4037 | |
| 4038 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 4039 | |
| 4040 | // "for" is a control-flow statement. Thus we stop processing the current |
| 4041 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4042 | CFGBlock *LoopSuccessor = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4043 | if (Block) { |
| 4044 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4045 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4046 | LoopSuccessor = Block; |
| 4047 | } else |
| 4048 | LoopSuccessor = Succ; |
| 4049 | |
| 4050 | // Save the current value for the break targets. |
| 4051 | // All breaks should go to the code following the loop. |
| 4052 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
| 4053 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
| 4054 | |
| 4055 | // The block for the __begin != __end expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4056 | CFGBlock *ConditionBlock = createBlock(false); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4057 | ConditionBlock->setTerminator(S); |
| 4058 | |
| 4059 | // Now add the actual condition to the condition block. |
| 4060 | if (Expr *C = S->getCond()) { |
| 4061 | Block = ConditionBlock; |
| 4062 | CFGBlock *BeginConditionBlock = addStmt(C); |
| 4063 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4064 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4065 | assert(BeginConditionBlock == ConditionBlock && |
| 4066 | "condition block in for-range was unexpectedly complex"); |
| 4067 | (void)BeginConditionBlock; |
| 4068 | } |
| 4069 | |
| 4070 | // The condition block is the implicit successor for the loop body as well as |
| 4071 | // any code above the loop. |
| 4072 | Succ = ConditionBlock; |
| 4073 | |
| 4074 | // See if this is a known constant. |
| 4075 | TryResult KnownVal(true); |
| 4076 | |
| 4077 | if (S->getCond()) |
| 4078 | KnownVal = tryEvaluateBool(S->getCond()); |
| 4079 | |
| 4080 | // Now create the loop body. |
| 4081 | { |
| 4082 | assert(S->getBody()); |
| 4083 | |
| 4084 | // Save the current values for Block, Succ, and continue targets. |
| 4085 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 4086 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
| 4087 | |
| 4088 | // Generate increment code in its own basic block. This is the target of |
| 4089 | // continue statements. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4090 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4091 | Succ = addStmt(S->getInc()); |
Alexander Kornienko | ff2046a | 2016-07-08 10:50:51 +0000 | [diff] [blame] | 4092 | if (badCFG) |
| 4093 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4094 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 4095 | |
| 4096 | // The starting block for the loop increment is the block that should |
| 4097 | // represent the 'loop target' for looping back to the start of the loop. |
| 4098 | ContinueJumpTarget.block->setLoopTarget(S); |
| 4099 | |
| 4100 | // Finish up the increment block and prepare to start the loop body. |
| 4101 | assert(Block); |
| 4102 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4103 | return nullptr; |
| 4104 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4105 | |
| 4106 | // Add implicit scope and dtors for loop variable. |
| 4107 | addLocalScopeAndDtors(S->getLoopVarStmt()); |
| 4108 | |
| 4109 | // Populate a new block to contain the loop body and loop variable. |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4110 | addStmt(S->getBody()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4111 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4112 | return nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4113 | CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4114 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4115 | return nullptr; |
| 4116 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4117 | // This new body block is a successor to our condition block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4118 | addSuccessor(ConditionBlock, |
| 4119 | KnownVal.isFalse() ? nullptr : LoopVarStmtBlock); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4120 | } |
| 4121 | |
| 4122 | // Link up the condition block with the code that follows the loop (the |
| 4123 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4124 | addSuccessor(ConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4125 | |
| 4126 | // Add the initialization statements. |
| 4127 | Block = createBlock(); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 4128 | addStmt(S->getBeginStmt()); |
| 4129 | addStmt(S->getEndStmt()); |
Richard Smith | 0c502d2 | 2011-04-18 15:49:25 +0000 | [diff] [blame] | 4130 | return addStmt(S->getRangeStmt()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4131 | } |
| 4132 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 4133 | CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E, |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4134 | AddStmtChoice asc) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 4135 | if (BuildOpts.AddTemporaryDtors) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4136 | // If adding implicit destructors visit the full expression for adding |
| 4137 | // destructors of temporaries. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4138 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4139 | VisitForTemporaryDtors(E->getSubExpr(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4140 | |
| 4141 | // Full expression has to be added as CFGStmt so it will be sequenced |
| 4142 | // before destructors of it's temporaries. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4143 | asc = asc.withAlwaysAdd(true); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4144 | } |
| 4145 | return Visit(E->getSubExpr(), asc); |
| 4146 | } |
| 4147 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4148 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 4149 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4150 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4151 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4152 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4153 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4154 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 4155 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), E), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4156 | E->getSubExpr()); |
Artem Dergachev | 1f68d9d | 2018-02-15 03:13:36 +0000 | [diff] [blame] | 4157 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4158 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4159 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4160 | } |
| 4161 | return Visit(E->getSubExpr(), asc); |
| 4162 | } |
| 4163 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4164 | CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C, |
| 4165 | AddStmtChoice asc) { |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4166 | autoCreateBlock(); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4167 | appendConstructor(Block, C); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4168 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4169 | return VisitChildren(C); |
| 4170 | } |
| 4171 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4172 | CFGBlock *CFGBuilder::VisitCXXNewExpr(CXXNewExpr *NE, |
| 4173 | AddStmtChoice asc) { |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4174 | autoCreateBlock(); |
| 4175 | appendStmt(Block, NE); |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4176 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4177 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 4178 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), NE), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4179 | const_cast<CXXConstructExpr *>(NE->getConstructExpr())); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4180 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4181 | if (NE->getInitializer()) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4182 | Block = Visit(NE->getInitializer()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4183 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4184 | if (BuildOpts.AddCXXNewAllocator) |
| 4185 | appendNewAllocator(Block, NE); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4186 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4187 | if (NE->isArray()) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4188 | Block = Visit(NE->getArraySize()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4189 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4190 | for (CXXNewExpr::arg_iterator I = NE->placement_arg_begin(), |
| 4191 | E = NE->placement_arg_end(); I != E; ++I) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4192 | Block = Visit(*I); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4193 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4194 | return Block; |
| 4195 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4196 | |
| 4197 | CFGBlock *CFGBuilder::VisitCXXDeleteExpr(CXXDeleteExpr *DE, |
| 4198 | AddStmtChoice asc) { |
| 4199 | autoCreateBlock(); |
| 4200 | appendStmt(Block, DE); |
| 4201 | QualType DTy = DE->getDestroyedType(); |
Martin Bohme | f44cde8 | 2016-12-05 11:33:19 +0000 | [diff] [blame] | 4202 | if (!DTy.isNull()) { |
| 4203 | DTy = DTy.getNonReferenceType(); |
| 4204 | CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 4205 | if (RD) { |
| 4206 | if (RD->isCompleteDefinition() && !RD->hasTrivialDestructor()) |
| 4207 | appendDeleteDtor(Block, RD, DE); |
| 4208 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4209 | } |
| 4210 | |
| 4211 | return VisitChildren(DE); |
| 4212 | } |
| 4213 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4214 | CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 4215 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4216 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4217 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4218 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4219 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4220 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4221 | } |
| 4222 | return Visit(E->getSubExpr(), asc); |
| 4223 | } |
| 4224 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4225 | CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 4226 | AddStmtChoice asc) { |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4227 | autoCreateBlock(); |
Artem Dergachev | 1f68d9d | 2018-02-15 03:13:36 +0000 | [diff] [blame] | 4228 | appendConstructor(Block, C); |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4229 | return VisitChildren(C); |
| 4230 | } |
| 4231 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4232 | CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E, |
| 4233 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4234 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4235 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4236 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4237 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 4238 | return Visit(E->getSubExpr(), AddStmtChoice()); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4239 | } |
| 4240 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4241 | CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4242 | // 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] | 4243 | CFGBlock *IBlock = cfg->getIndirectGotoBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4244 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4245 | if (!IBlock) { |
| 4246 | IBlock = createBlock(false); |
| 4247 | cfg->setIndirectGotoBlock(IBlock); |
| 4248 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4249 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4250 | // IndirectGoto is a control-flow statement. Thus we stop processing the |
| 4251 | // current block and create a new one. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4252 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4253 | return nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4254 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4255 | Block = createBlock(false); |
| 4256 | Block->setTerminator(I); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4257 | addSuccessor(Block, IBlock); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4258 | return addStmt(I->getTarget()); |
| 4259 | } |
| 4260 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4261 | CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary, |
| 4262 | TempDtorContext &Context) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 4263 | assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors); |
| 4264 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4265 | tryAgain: |
| 4266 | if (!E) { |
| 4267 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4268 | return nullptr; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4269 | } |
| 4270 | switch (E->getStmtClass()) { |
| 4271 | default: |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4272 | return VisitChildrenForTemporaryDtors(E, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4273 | |
| 4274 | case Stmt::BinaryOperatorClass: |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4275 | return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E), |
| 4276 | Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4277 | |
| 4278 | case Stmt::CXXBindTemporaryExprClass: |
| 4279 | return VisitCXXBindTemporaryExprForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4280 | cast<CXXBindTemporaryExpr>(E), BindToTemporary, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4281 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4282 | case Stmt::BinaryConditionalOperatorClass: |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4283 | case Stmt::ConditionalOperatorClass: |
| 4284 | return VisitConditionalOperatorForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4285 | cast<AbstractConditionalOperator>(E), BindToTemporary, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4286 | |
| 4287 | case Stmt::ImplicitCastExprClass: |
| 4288 | // For implicit cast we want BindToTemporary to be passed further. |
| 4289 | E = cast<CastExpr>(E)->getSubExpr(); |
| 4290 | goto tryAgain; |
| 4291 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4292 | case Stmt::CXXFunctionalCastExprClass: |
| 4293 | // For functional cast we want BindToTemporary to be passed further. |
| 4294 | E = cast<CXXFunctionalCastExpr>(E)->getSubExpr(); |
| 4295 | goto tryAgain; |
| 4296 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4297 | case Stmt::ParenExprClass: |
| 4298 | E = cast<ParenExpr>(E)->getSubExpr(); |
| 4299 | goto tryAgain; |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4300 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4301 | case Stmt::MaterializeTemporaryExprClass: { |
| 4302 | const MaterializeTemporaryExpr* MTE = cast<MaterializeTemporaryExpr>(E); |
| 4303 | BindToTemporary = (MTE->getStorageDuration() != SD_FullExpression); |
| 4304 | SmallVector<const Expr *, 2> CommaLHSs; |
| 4305 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 4306 | // Find the expression whose lifetime needs to be extended. |
| 4307 | E = const_cast<Expr *>( |
| 4308 | cast<MaterializeTemporaryExpr>(E) |
| 4309 | ->GetTemporaryExpr() |
| 4310 | ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments)); |
| 4311 | // Visit the skipped comma operator left-hand sides for other temporaries. |
| 4312 | for (const Expr *CommaLHS : CommaLHSs) { |
| 4313 | VisitForTemporaryDtors(const_cast<Expr *>(CommaLHS), |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4314 | /*BindToTemporary=*/false, Context); |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4315 | } |
Douglas Gregor | fe31481 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 4316 | goto tryAgain; |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4317 | } |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4318 | |
| 4319 | case Stmt::BlockExprClass: |
| 4320 | // Don't recurse into blocks; their subexpressions don't get evaluated |
| 4321 | // here. |
| 4322 | return Block; |
| 4323 | |
| 4324 | case Stmt::LambdaExprClass: { |
| 4325 | // For lambda expressions, only recurse into the capture initializers, |
| 4326 | // and not the body. |
| 4327 | auto *LE = cast<LambdaExpr>(E); |
| 4328 | CFGBlock *B = Block; |
| 4329 | for (Expr *Init : LE->capture_inits()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4330 | if (CFGBlock *R = VisitForTemporaryDtors( |
| 4331 | Init, /*BindToTemporary=*/false, Context)) |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4332 | B = R; |
| 4333 | } |
| 4334 | return B; |
| 4335 | } |
| 4336 | |
| 4337 | case Stmt::CXXDefaultArgExprClass: |
| 4338 | E = cast<CXXDefaultArgExpr>(E)->getExpr(); |
| 4339 | goto tryAgain; |
| 4340 | |
| 4341 | case Stmt::CXXDefaultInitExprClass: |
| 4342 | E = cast<CXXDefaultInitExpr>(E)->getExpr(); |
| 4343 | goto tryAgain; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4344 | } |
| 4345 | } |
| 4346 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4347 | CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E, |
| 4348 | TempDtorContext &Context) { |
| 4349 | if (isa<LambdaExpr>(E)) { |
| 4350 | // Do not visit the children of lambdas; they have their own CFGs. |
| 4351 | return Block; |
| 4352 | } |
| 4353 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4354 | // When visiting children for destructors we want to visit them in reverse |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4355 | // order that they will appear in the CFG. Because the CFG is built |
| 4356 | // bottom-up, this means we visit them in their natural order, which |
| 4357 | // reverses them in the CFG. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4358 | CFGBlock *B = Block; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4359 | for (Stmt *Child : E->children()) |
| 4360 | if (Child) |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4361 | if (CFGBlock *R = VisitForTemporaryDtors(Child, false, Context)) |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4362 | B = R; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4363 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4364 | return B; |
| 4365 | } |
| 4366 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4367 | CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors( |
| 4368 | BinaryOperator *E, TempDtorContext &Context) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4369 | if (E->isLogicalOp()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4370 | VisitForTemporaryDtors(E->getLHS(), false, Context); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4371 | TryResult RHSExecuted = tryEvaluateBool(E->getLHS()); |
| 4372 | if (RHSExecuted.isKnown() && E->getOpcode() == BO_LOr) |
| 4373 | RHSExecuted.negate(); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4374 | |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4375 | // We do not know at CFG-construction time whether the right-hand-side was |
| 4376 | // executed, thus we add a branch node that depends on the temporary |
| 4377 | // constructor call. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4378 | TempDtorContext RHSContext( |
| 4379 | bothKnownTrue(Context.KnownExecuted, RHSExecuted)); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4380 | VisitForTemporaryDtors(E->getRHS(), false, RHSContext); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4381 | InsertTempDtorDecisionBlock(RHSContext); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4382 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4383 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4384 | } |
| 4385 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4386 | if (E->isAssignmentOp()) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4387 | // For assignment operator (=) LHS expression is visited |
| 4388 | // before RHS expression. For destructors visit them in reverse order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4389 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
| 4390 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4391 | return LHSBlock ? LHSBlock : RHSBlock; |
| 4392 | } |
| 4393 | |
| 4394 | // For any other binary operator RHS expression is visited before |
| 4395 | // LHS expression (order of children). For destructors visit them in reverse |
| 4396 | // order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4397 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
| 4398 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4399 | return RHSBlock ? RHSBlock : LHSBlock; |
| 4400 | } |
| 4401 | |
| 4402 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4403 | CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4404 | // First add destructors for temporaries in subexpression. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4405 | CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr(), false, Context); |
Zhongxing Xu | fee455f | 2010-11-14 15:23:50 +0000 | [diff] [blame] | 4406 | if (!BindToTemporary) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4407 | // If lifetime of temporary is not prolonged (by assigning to constant |
| 4408 | // reference) add destructor for it. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4409 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4410 | const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4411 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 4412 | if (Dtor->getParent()->isAnyDestructorNoReturn()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4413 | // If the destructor is marked as a no-return destructor, we need to |
| 4414 | // create a new block for the destructor which does not have as a |
| 4415 | // successor anything built thus far. Control won't flow out of this |
| 4416 | // block. |
| 4417 | if (B) Succ = B; |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 4418 | Block = createNoReturnBlock(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4419 | } else if (Context.needsTempDtorBranch()) { |
| 4420 | // If we need to introduce a branch, we add a new block that we will hook |
| 4421 | // up to a decision block later. |
| 4422 | if (B) Succ = B; |
| 4423 | Block = createBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4424 | } else { |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4425 | autoCreateBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4426 | } |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4427 | if (Context.needsTempDtorBranch()) { |
| 4428 | Context.setDecisionPoint(Succ, E); |
| 4429 | } |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4430 | appendTemporaryDtor(Block, E); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4431 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4432 | B = Block; |
| 4433 | } |
| 4434 | return B; |
| 4435 | } |
| 4436 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4437 | void CFGBuilder::InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 4438 | CFGBlock *FalseSucc) { |
| 4439 | if (!Context.TerminatorExpr) { |
| 4440 | // If no temporary was found, we do not need to insert a decision point. |
| 4441 | return; |
| 4442 | } |
| 4443 | assert(Context.TerminatorExpr); |
| 4444 | CFGBlock *Decision = createBlock(false); |
| 4445 | Decision->setTerminator(CFGTerminator(Context.TerminatorExpr, true)); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4446 | addSuccessor(Decision, Block, !Context.KnownExecuted.isFalse()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4447 | addSuccessor(Decision, FalseSucc ? FalseSucc : Context.Succ, |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4448 | !Context.KnownExecuted.isTrue()); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4449 | Block = Decision; |
| 4450 | } |
| 4451 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4452 | CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4453 | AbstractConditionalOperator *E, bool BindToTemporary, |
| 4454 | TempDtorContext &Context) { |
| 4455 | VisitForTemporaryDtors(E->getCond(), false, Context); |
| 4456 | CFGBlock *ConditionBlock = Block; |
| 4457 | CFGBlock *ConditionSucc = Succ; |
Manuel Klimek | 0ce9108 | 2014-08-07 14:25:43 +0000 | [diff] [blame] | 4458 | TryResult ConditionVal = tryEvaluateBool(E->getCond()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4459 | TryResult NegatedVal = ConditionVal; |
| 4460 | if (NegatedVal.isKnown()) NegatedVal.negate(); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4461 | |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4462 | TempDtorContext TrueContext( |
| 4463 | bothKnownTrue(Context.KnownExecuted, ConditionVal)); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4464 | VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary, TrueContext); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4465 | CFGBlock *TrueBlock = Block; |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4466 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4467 | Block = ConditionBlock; |
| 4468 | Succ = ConditionSucc; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4469 | TempDtorContext FalseContext( |
| 4470 | bothKnownTrue(Context.KnownExecuted, NegatedVal)); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4471 | VisitForTemporaryDtors(E->getFalseExpr(), BindToTemporary, FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4472 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4473 | if (TrueContext.TerminatorExpr && FalseContext.TerminatorExpr) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4474 | InsertTempDtorDecisionBlock(FalseContext, TrueBlock); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4475 | } else if (TrueContext.TerminatorExpr) { |
| 4476 | Block = TrueBlock; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4477 | InsertTempDtorDecisionBlock(TrueContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4478 | } else { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4479 | InsertTempDtorDecisionBlock(FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4480 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4481 | return Block; |
| 4482 | } |
| 4483 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4484 | /// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has |
| 4485 | /// no successors or predecessors. If this is the first block created in the |
| 4486 | /// 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] | 4487 | CFGBlock *CFG::createBlock() { |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4488 | bool first_block = begin() == end(); |
| 4489 | |
| 4490 | // Create the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4491 | CFGBlock *Mem = getAllocator().Allocate<CFGBlock>(); |
Anna Zaks | 02a1fc1 | 2011-12-05 21:33:11 +0000 | [diff] [blame] | 4492 | new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4493 | Blocks.push_back(Mem, BlkBVC); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4494 | |
| 4495 | // 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] | 4496 | if (first_block) |
| 4497 | Entry = Exit = &back(); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4498 | |
| 4499 | // Return the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4500 | return &back(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4501 | } |
| 4502 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 4503 | /// buildCFG - Constructs a CFG from an AST. |
| 4504 | std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement, |
| 4505 | ASTContext *C, const BuildOptions &BO) { |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 4506 | CFGBuilder Builder(C, BO); |
| 4507 | return Builder.buildCFG(D, Statement); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4508 | } |
| 4509 | |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4510 | const CXXDestructorDecl * |
| 4511 | CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4512 | switch (getKind()) { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4513 | case CFGElement::Initializer: |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4514 | case CFGElement::NewAllocator: |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 4515 | case CFGElement::LoopExit: |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4516 | case CFGElement::LifetimeEnds: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4517 | case CFGElement::Statement: |
| 4518 | case CFGElement::Constructor: |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 4519 | case CFGElement::ScopeBegin: |
| 4520 | case CFGElement::ScopeEnd: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4521 | llvm_unreachable("getDestructorDecl should only be used with " |
| 4522 | "ImplicitDtors"); |
| 4523 | case CFGElement::AutomaticObjectDtor: { |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4524 | const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4525 | QualType ty = var->getType(); |
Devin Coughlin | 6eb1ca7 | 2016-08-02 21:07:23 +0000 | [diff] [blame] | 4526 | |
| 4527 | // FIXME: See CFGBuilder::addLocalScopeForVarDecl. |
| 4528 | // |
| 4529 | // Lifetime-extending constructs are handled here. This works for a single |
| 4530 | // temporary in an initializer expression. |
| 4531 | if (ty->isReferenceType()) { |
| 4532 | if (const Expr *Init = var->getInit()) { |
| 4533 | ty = getReferenceInitTemporaryType(astContext, Init); |
| 4534 | } |
| 4535 | } |
| 4536 | |
Ted Kremenek | e7d7888 | 2012-03-19 23:48:41 +0000 | [diff] [blame] | 4537 | while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) { |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4538 | ty = arrayType->getElementType(); |
| 4539 | } |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4540 | const RecordType *recordType = ty->getAs<RecordType>(); |
| 4541 | const CXXRecordDecl *classDecl = |
Ted Kremenek | 1676a04 | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 4542 | cast<CXXRecordDecl>(recordType->getDecl()); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4543 | return classDecl->getDestructor(); |
| 4544 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4545 | case CFGElement::DeleteDtor: { |
| 4546 | const CXXDeleteExpr *DE = castAs<CFGDeleteDtor>().getDeleteExpr(); |
| 4547 | QualType DTy = DE->getDestroyedType(); |
| 4548 | DTy = DTy.getNonReferenceType(); |
| 4549 | const CXXRecordDecl *classDecl = |
| 4550 | astContext.getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 4551 | return classDecl->getDestructor(); |
| 4552 | } |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4553 | case CFGElement::TemporaryDtor: { |
| 4554 | const CXXBindTemporaryExpr *bindExpr = |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4555 | castAs<CFGTemporaryDtor>().getBindTemporaryExpr(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4556 | const CXXTemporary *temp = bindExpr->getTemporary(); |
| 4557 | return temp->getDestructor(); |
| 4558 | } |
| 4559 | case CFGElement::BaseDtor: |
| 4560 | case CFGElement::MemberDtor: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4561 | // Not yet supported. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4562 | return nullptr; |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4563 | } |
Ted Kremenek | 1676a04 | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 4564 | llvm_unreachable("getKind() returned bogus value"); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4565 | } |
| 4566 | |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4567 | bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const { |
Richard Smith | 10876ef | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 4568 | if (const CXXDestructorDecl *DD = getDestructorDecl(astContext)) |
| 4569 | return DD->isNoReturn(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4570 | return false; |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4571 | } |
| 4572 | |
Ted Kremenek | f2d4372b | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 4573 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4574 | // CFGBlock operations. |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4575 | //===----------------------------------------------------------------------===// |
| 4576 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4577 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, bool IsReachable) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4578 | : ReachableBlock(IsReachable ? B : nullptr), |
| 4579 | UnreachableBlock(!IsReachable ? B : nullptr, |
| 4580 | B && IsReachable ? AB_Normal : AB_Unreachable) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4581 | |
| 4582 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, CFGBlock *AlternateBlock) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4583 | : ReachableBlock(B), |
| 4584 | UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock, |
| 4585 | B == AlternateBlock ? AB_Alternate : AB_Normal) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4586 | |
| 4587 | void CFGBlock::addSuccessor(AdjacentBlock Succ, |
| 4588 | BumpVectorContext &C) { |
| 4589 | if (CFGBlock *B = Succ.getReachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4590 | B->Preds.push_back(AdjacentBlock(this, Succ.isReachable()), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4591 | |
| 4592 | if (CFGBlock *UnreachableB = Succ.getPossiblyUnreachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4593 | UnreachableB->Preds.push_back(AdjacentBlock(this, false), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4594 | |
| 4595 | Succs.push_back(Succ, C); |
| 4596 | } |
| 4597 | |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4598 | bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F, |
Ted Kremenek | f146cd1 | 2010-09-09 02:57:48 +0000 | [diff] [blame] | 4599 | const CFGBlock *From, const CFGBlock *To) { |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4600 | if (F.IgnoreNullPredecessors && !From) |
| 4601 | return true; |
| 4602 | |
| 4603 | if (To && From && F.IgnoreDefaultsWithCoveredEnums) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4604 | // If the 'To' has no label or is labeled but the label isn't a |
| 4605 | // CaseStmt then filter this edge. |
| 4606 | if (const SwitchStmt *S = |
Ted Kremenek | 8979474 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 4607 | dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4608 | if (S->isAllEnumCasesCovered()) { |
Ted Kremenek | 8979474 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 4609 | const Stmt *L = To->getLabel(); |
| 4610 | if (!L || !isa<CaseStmt>(L)) |
| 4611 | return true; |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4612 | } |
| 4613 | } |
| 4614 | } |
| 4615 | |
| 4616 | return false; |
| 4617 | } |
| 4618 | |
| 4619 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4620 | // CFG pretty printing |
| 4621 | //===----------------------------------------------------------------------===// |
| 4622 | |
Ted Kremenek | 7e776b1 | 2007-08-22 18:22:34 +0000 | [diff] [blame] | 4623 | namespace { |
| 4624 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 4625 | class StmtPrinterHelper : public PrinterHelper { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4626 | using StmtMapTy = llvm::DenseMap<const Stmt *, std::pair<unsigned, unsigned>>; |
| 4627 | using DeclMapTy = llvm::DenseMap<const Decl *, std::pair<unsigned, unsigned>>; |
| 4628 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4629 | StmtMapTy StmtMap; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4630 | DeclMapTy DeclMap; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4631 | signed currentBlock = 0; |
| 4632 | unsigned currStmt = 0; |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4633 | const LangOptions &LangOpts; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4634 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4635 | public: |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4636 | StmtPrinterHelper(const CFG* cfg, const LangOptions &LO) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4637 | : LangOpts(LO) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4638 | for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) { |
| 4639 | unsigned j = 1; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4640 | for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4641 | BI != BEnd; ++BI, ++j ) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4642 | if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) { |
| 4643 | const Stmt *stmt= SE->getStmt(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4644 | std::pair<unsigned, unsigned> P((*I)->getBlockID(), j); |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4645 | StmtMap[stmt] = P; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4646 | |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4647 | switch (stmt->getStmtClass()) { |
| 4648 | case Stmt::DeclStmtClass: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4649 | DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P; |
| 4650 | break; |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4651 | case Stmt::IfStmtClass: { |
| 4652 | const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable(); |
| 4653 | if (var) |
| 4654 | DeclMap[var] = P; |
| 4655 | break; |
| 4656 | } |
| 4657 | case Stmt::ForStmtClass: { |
| 4658 | const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable(); |
| 4659 | if (var) |
| 4660 | DeclMap[var] = P; |
| 4661 | break; |
| 4662 | } |
| 4663 | case Stmt::WhileStmtClass: { |
| 4664 | const VarDecl *var = |
| 4665 | cast<WhileStmt>(stmt)->getConditionVariable(); |
| 4666 | if (var) |
| 4667 | DeclMap[var] = P; |
| 4668 | break; |
| 4669 | } |
| 4670 | case Stmt::SwitchStmtClass: { |
| 4671 | const VarDecl *var = |
| 4672 | cast<SwitchStmt>(stmt)->getConditionVariable(); |
| 4673 | if (var) |
| 4674 | DeclMap[var] = P; |
| 4675 | break; |
| 4676 | } |
| 4677 | case Stmt::CXXCatchStmtClass: { |
| 4678 | const VarDecl *var = |
| 4679 | cast<CXXCatchStmt>(stmt)->getExceptionDecl(); |
| 4680 | if (var) |
| 4681 | DeclMap[var] = P; |
| 4682 | break; |
| 4683 | } |
| 4684 | default: |
| 4685 | break; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4686 | } |
| 4687 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4688 | } |
Zhongxing Xu | 2cd7a78 | 2010-09-16 01:25:47 +0000 | [diff] [blame] | 4689 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4690 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4691 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4692 | ~StmtPrinterHelper() override = default; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4693 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4694 | const LangOptions &getLangOpts() const { return LangOpts; } |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4695 | void setBlockID(signed i) { currentBlock = i; } |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4696 | void setStmtID(unsigned i) { currStmt = i; } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4697 | |
Craig Topper | b45acb8 | 2014-03-14 06:02:07 +0000 | [diff] [blame] | 4698 | bool handledStmt(Stmt *S, raw_ostream &OS) override { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4699 | StmtMapTy::iterator I = StmtMap.find(S); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4700 | |
| 4701 | if (I == StmtMap.end()) |
| 4702 | return false; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4703 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4704 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4705 | && I->second.second == currStmt) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4706 | return false; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4707 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4708 | |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4709 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4710 | return true; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4711 | } |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4712 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4713 | bool handleDecl(const Decl *D, raw_ostream &OS) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4714 | DeclMapTy::iterator I = DeclMap.find(D); |
| 4715 | |
| 4716 | if (I == DeclMap.end()) |
| 4717 | return false; |
| 4718 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4719 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4720 | && I->second.second == currStmt) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4721 | return false; |
| 4722 | } |
| 4723 | |
| 4724 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
| 4725 | return true; |
| 4726 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4727 | }; |
| 4728 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 4729 | class CFGBlockTerminatorPrint |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4730 | : public StmtVisitor<CFGBlockTerminatorPrint,void> { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4731 | raw_ostream &OS; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4732 | StmtPrinterHelper* Helper; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4733 | PrintingPolicy Policy; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4734 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4735 | public: |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4736 | CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper, |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4737 | const PrintingPolicy &Policy) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4738 | : OS(os), Helper(helper), Policy(Policy) { |
Ted Kremenek | 5d0fb1e | 2013-12-11 23:44:05 +0000 | [diff] [blame] | 4739 | this->Policy.IncludeNewlines = false; |
| 4740 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4741 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4742 | void VisitIfStmt(IfStmt *I) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4743 | OS << "if "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4744 | if (Stmt *C = I->getCond()) |
| 4745 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4746 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4747 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4748 | // Default case. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4749 | void VisitStmt(Stmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4750 | Terminator->printPretty(OS, Helper, Policy); |
| 4751 | } |
| 4752 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 4753 | void VisitDeclStmt(DeclStmt *DS) { |
| 4754 | VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); |
| 4755 | OS << "static init " << VD->getName(); |
| 4756 | } |
| 4757 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4758 | void VisitForStmt(ForStmt *F) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4759 | OS << "for (" ; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4760 | if (F->getInit()) |
| 4761 | OS << "..."; |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 4762 | OS << "; "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4763 | if (Stmt *C = F->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4764 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 4765 | OS << "; "; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4766 | if (F->getInc()) |
| 4767 | OS << "..."; |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4768 | OS << ")"; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4769 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4770 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4771 | void VisitWhileStmt(WhileStmt *W) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4772 | OS << "while " ; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4773 | if (Stmt *C = W->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4774 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4775 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4776 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4777 | void VisitDoStmt(DoStmt *D) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4778 | OS << "do ... while "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4779 | if (Stmt *C = D->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4780 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4781 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4782 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4783 | void VisitSwitchStmt(SwitchStmt *Terminator) { |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4784 | OS << "switch "; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4785 | Terminator->getCond()->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4786 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4787 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4788 | void VisitCXXTryStmt(CXXTryStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4789 | OS << "try ..."; |
| 4790 | } |
| 4791 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 4792 | void VisitSEHTryStmt(SEHTryStmt *CS) { |
| 4793 | OS << "__try ..."; |
| 4794 | } |
| 4795 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4796 | void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) { |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4797 | if (Stmt *Cond = C->getCond()) |
| 4798 | Cond->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4799 | OS << " ? ... : ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4800 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4801 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4802 | void VisitChooseExpr(ChooseExpr *C) { |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 4803 | OS << "__builtin_choose_expr( "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4804 | if (Stmt *Cond = C->getCond()) |
| 4805 | Cond->printPretty(OS, Helper, Policy); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4806 | OS << " )"; |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 4807 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4808 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4809 | void VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4810 | OS << "goto *"; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4811 | if (Stmt *T = I->getTarget()) |
| 4812 | T->printPretty(OS, Helper, Policy); |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4813 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4814 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4815 | void VisitBinaryOperator(BinaryOperator* B) { |
| 4816 | if (!B->isLogicalOp()) { |
| 4817 | VisitExpr(B); |
| 4818 | return; |
| 4819 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4820 | |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4821 | if (B->getLHS()) |
| 4822 | B->getLHS()->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4823 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4824 | switch (B->getOpcode()) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4825 | case BO_LOr: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4826 | OS << " || ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4827 | return; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4828 | case BO_LAnd: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4829 | OS << " && ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4830 | return; |
| 4831 | default: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4832 | llvm_unreachable("Invalid logical operator."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4833 | } |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4834 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4835 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4836 | void VisitExpr(Expr *E) { |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4837 | E->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4838 | } |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 4839 | |
| 4840 | public: |
| 4841 | void print(CFGTerminator T) { |
| 4842 | if (T.isTemporaryDtorsBranch()) |
| 4843 | OS << "(Temp Dtor) "; |
| 4844 | Visit(T.getStmt()); |
| 4845 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4846 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4847 | |
| 4848 | } // namespace |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4849 | |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 4850 | static void print_initializer(raw_ostream &OS, StmtPrinterHelper &Helper, |
| 4851 | const CXXCtorInitializer *I) { |
| 4852 | if (I->isBaseInitializer()) |
| 4853 | OS << I->getBaseClass()->getAsCXXRecordDecl()->getName(); |
| 4854 | else if (I->isDelegatingInitializer()) |
| 4855 | OS << I->getTypeSourceInfo()->getType()->getAsCXXRecordDecl()->getName(); |
| 4856 | else |
| 4857 | OS << I->getAnyMember()->getName(); |
| 4858 | OS << "("; |
| 4859 | if (Expr *IE = I->getInit()) |
| 4860 | IE->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
| 4861 | OS << ")"; |
| 4862 | |
| 4863 | if (I->isBaseInitializer()) |
| 4864 | OS << " (Base initializer)"; |
| 4865 | else if (I->isDelegatingInitializer()) |
| 4866 | OS << " (Delegating initializer)"; |
| 4867 | else |
| 4868 | OS << " (Member initializer)"; |
| 4869 | } |
| 4870 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4871 | static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper, |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 4872 | const CFGElement &E) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4873 | if (Optional<CFGStmt> CS = E.getAs<CFGStmt>()) { |
| 4874 | const Stmt *S = CS->getStmt(); |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4875 | assert(S != nullptr && "Expecting non-null Stmt"); |
| 4876 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4877 | // special printing for statement-expressions. |
| 4878 | if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) { |
| 4879 | const CompoundStmt *Sub = SE->getSubStmt(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4880 | |
Benjamin Kramer | 5733e35 | 2015-07-18 17:09:36 +0000 | [diff] [blame] | 4881 | auto Children = Sub->children(); |
| 4882 | if (Children.begin() != Children.end()) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4883 | OS << "({ ... ; "; |
| 4884 | Helper.handledStmt(*SE->getSubStmt()->body_rbegin(),OS); |
| 4885 | OS << " })\n"; |
| 4886 | return; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4887 | } |
| 4888 | } |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4889 | // special printing for comma expressions. |
| 4890 | if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) { |
| 4891 | if (B->getOpcode() == BO_Comma) { |
| 4892 | OS << "... , "; |
| 4893 | Helper.handledStmt(B->getRHS(),OS); |
| 4894 | OS << '\n'; |
| 4895 | return; |
| 4896 | } |
| 4897 | } |
| 4898 | S->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4899 | |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4900 | if (isa<CXXOperatorCallExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4901 | OS << " (OperatorCall)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4902 | } else if (isa<CXXBindTemporaryExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4903 | OS << " (BindTemporary)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4904 | } else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) { |
| 4905 | OS << " (CXXConstructExpr, "; |
| 4906 | if (Optional<CFGConstructor> CE = E.getAs<CFGConstructor>()) { |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 4907 | const ConstructionContext *CC = CE->getConstructionContext(); |
| 4908 | const Stmt *S1 = nullptr, *S2 = nullptr; |
| 4909 | switch (CC->getKind()) { |
| 4910 | case ConstructionContext::ConstructorInitializerKind: { |
| 4911 | const auto *ICC = cast<ConstructorInitializerConstructionContext>(CC); |
| 4912 | print_initializer(OS, Helper, ICC->getCXXCtorInitializer()); |
| 4913 | OS << ", "; |
| 4914 | break; |
| 4915 | } |
| 4916 | case ConstructionContext::SimpleVariableKind: { |
| 4917 | const auto *DSCC = cast<SimpleVariableConstructionContext>(CC); |
| 4918 | S1 = DSCC->getDeclStmt(); |
| 4919 | break; |
| 4920 | } |
| 4921 | case ConstructionContext::NewAllocatedObjectKind: { |
| 4922 | const auto *NECC = cast<NewAllocatedObjectConstructionContext>(CC); |
| 4923 | S1 = NECC->getCXXNewExpr(); |
| 4924 | break; |
| 4925 | } |
| 4926 | case ConstructionContext::ReturnedValueKind: { |
| 4927 | const auto *RSCC = cast<ReturnedValueConstructionContext>(CC); |
| 4928 | S1 = RSCC->getReturnStmt(); |
| 4929 | break; |
| 4930 | } |
| 4931 | case ConstructionContext::TemporaryObjectKind: { |
| 4932 | const auto *TOCC = cast<TemporaryObjectConstructionContext>(CC); |
| 4933 | S1 = TOCC->getCXXBindTemporaryExpr(); |
| 4934 | S2 = TOCC->getMaterializedTemporaryExpr(); |
| 4935 | break; |
| 4936 | } |
| 4937 | } |
| 4938 | if (S1) { |
| 4939 | Helper.handledStmt(const_cast<Stmt *>(S1), OS); |
| 4940 | OS << ", "; |
| 4941 | } |
| 4942 | if (S2) { |
| 4943 | Helper.handledStmt(const_cast<Stmt *>(S2), OS); |
| 4944 | OS << ", "; |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 4945 | } |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4946 | } |
| 4947 | OS << CCE->getType().getAsString() << ")"; |
| 4948 | } else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) { |
Ted Kremenek | 0ffba93 | 2011-12-21 19:32:38 +0000 | [diff] [blame] | 4949 | OS << " (" << CE->getStmtClassName() << ", " |
| 4950 | << CE->getCastKindName() |
| 4951 | << ", " << CE->getType().getAsString() |
| 4952 | << ")"; |
| 4953 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4954 | |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4955 | // Expressions need a newline. |
| 4956 | if (isa<Expr>(S)) |
| 4957 | OS << '\n'; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4958 | } else if (Optional<CFGInitializer> IE = E.getAs<CFGInitializer>()) { |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 4959 | print_initializer(OS, Helper, IE->getInitializer()); |
| 4960 | OS << '\n'; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4961 | } else if (Optional<CFGAutomaticObjDtor> DE = |
| 4962 | E.getAs<CFGAutomaticObjDtor>()) { |
| 4963 | const VarDecl *VD = DE->getVarDecl(); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 4964 | Helper.handleDecl(VD, OS); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4965 | |
Marcin Swiderski | 52e4bc1 | 2010-10-25 07:00:40 +0000 | [diff] [blame] | 4966 | const Type* T = VD->getType().getTypePtr(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4967 | if (const ReferenceType* RT = T->getAs<ReferenceType>()) |
| 4968 | T = RT->getPointeeType().getTypePtr(); |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 4969 | T = T->getBaseElementTypeUnsafe(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4970 | |
| 4971 | OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()"; |
| 4972 | OS << " (Implicit destructor)\n"; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4973 | } else if (Optional<CFGLifetimeEnds> DE = E.getAs<CFGLifetimeEnds>()) { |
| 4974 | const VarDecl *VD = DE->getVarDecl(); |
| 4975 | Helper.handleDecl(VD, OS); |
| 4976 | |
| 4977 | OS << " (Lifetime ends)\n"; |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 4978 | } else if (Optional<CFGLoopExit> LE = E.getAs<CFGLoopExit>()) { |
| 4979 | const Stmt *LoopStmt = LE->getLoopStmt(); |
| 4980 | OS << LoopStmt->getStmtClassName() << " (LoopExit)\n"; |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame^] | 4981 | } else if (Optional<CFGScopeBegin> SB = E.getAs<CFGScopeBegin>()) { |
| 4982 | OS << "CFGScopeBegin("; |
| 4983 | if (const VarDecl *VD = SB->getVarDecl()) |
| 4984 | OS << VD->getQualifiedNameAsString(); |
| 4985 | OS << ")\n"; |
| 4986 | } else if (Optional<CFGScopeEnd> SE = E.getAs<CFGScopeEnd>()) { |
| 4987 | OS << "CFGScopeEnd("; |
| 4988 | if (const VarDecl *VD = SE->getVarDecl()) |
| 4989 | OS << VD->getQualifiedNameAsString(); |
| 4990 | OS << ")\n"; |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4991 | } else if (Optional<CFGNewAllocator> NE = E.getAs<CFGNewAllocator>()) { |
| 4992 | OS << "CFGNewAllocator("; |
| 4993 | if (const CXXNewExpr *AllocExpr = NE->getAllocatorExpr()) |
| 4994 | AllocExpr->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
| 4995 | OS << ")\n"; |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4996 | } else if (Optional<CFGDeleteDtor> DE = E.getAs<CFGDeleteDtor>()) { |
| 4997 | const CXXRecordDecl *RD = DE->getCXXRecordDecl(); |
| 4998 | if (!RD) |
| 4999 | return; |
| 5000 | CXXDeleteExpr *DelExpr = |
| 5001 | const_cast<CXXDeleteExpr*>(DE->getDeleteExpr()); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5002 | Helper.handledStmt(cast<Stmt>(DelExpr->getArgument()), OS); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 5003 | OS << "->~" << RD->getName().str() << "()"; |
| 5004 | OS << " (Implicit destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5005 | } else if (Optional<CFGBaseDtor> BE = E.getAs<CFGBaseDtor>()) { |
| 5006 | const CXXBaseSpecifier *BS = BE->getBaseSpecifier(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 5007 | OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 5008 | OS << " (Base object destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5009 | } else if (Optional<CFGMemberDtor> ME = E.getAs<CFGMemberDtor>()) { |
| 5010 | const FieldDecl *FD = ME->getFieldDecl(); |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 5011 | const Type *T = FD->getType()->getBaseElementTypeUnsafe(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 5012 | OS << "this->" << FD->getName(); |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 5013 | OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 5014 | OS << " (Member object destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5015 | } else if (Optional<CFGTemporaryDtor> TE = E.getAs<CFGTemporaryDtor>()) { |
| 5016 | const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr(); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 5017 | OS << "~"; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5018 | BT->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 5019 | OS << "() (Temporary object destructor)\n"; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5020 | } |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 5021 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5022 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5023 | static void print_block(raw_ostream &OS, const CFG* cfg, |
| 5024 | const CFGBlock &B, |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5025 | StmtPrinterHelper &Helper, bool print_edges, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5026 | bool ShowColors) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5027 | Helper.setBlockID(B.getBlockID()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5028 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5029 | // Print the header. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5030 | if (ShowColors) |
| 5031 | OS.changeColor(raw_ostream::YELLOW, true); |
| 5032 | |
| 5033 | OS << "\n [B" << B.getBlockID(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5034 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5035 | if (&B == &cfg->getEntry()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5036 | OS << " (ENTRY)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5037 | else if (&B == &cfg->getExit()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5038 | OS << " (EXIT)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5039 | else if (&B == cfg->getIndirectGotoBlock()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5040 | OS << " (INDIRECT GOTO DISPATCH)]\n"; |
Jordan Rose | 398fb00 | 2014-04-01 16:39:33 +0000 | [diff] [blame] | 5041 | else if (B.hasNoReturnElement()) |
| 5042 | OS << " (NORETURN)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5043 | else |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5044 | OS << "]\n"; |
| 5045 | |
| 5046 | if (ShowColors) |
| 5047 | OS.resetColor(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5048 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5049 | // Print the label of this block. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5050 | if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5051 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5052 | OS << " "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5053 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5054 | if (LabelStmt *L = dyn_cast<LabelStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5055 | OS << L->getName(); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5056 | else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5057 | OS << "case "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5058 | if (C->getLHS()) |
| 5059 | C->getLHS()->printPretty(OS, &Helper, |
| 5060 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5061 | if (C->getRHS()) { |
| 5062 | OS << " ... "; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5063 | C->getRHS()->printPretty(OS, &Helper, |
| 5064 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5065 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5066 | } else if (isa<DefaultStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5067 | OS << "default"; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5068 | else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5069 | OS << "catch ("; |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 5070 | if (CS->getExceptionDecl()) |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5071 | CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()), |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 5072 | 0); |
| 5073 | else |
| 5074 | OS << "..."; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5075 | OS << ")"; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 5076 | } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) { |
| 5077 | OS << "__except ("; |
| 5078 | ES->getFilterExpr()->printPretty(OS, &Helper, |
| 5079 | PrintingPolicy(Helper.getLangOpts()), 0); |
| 5080 | OS << ")"; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5081 | } else |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 5082 | llvm_unreachable("Invalid label statement in CFGBlock."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5083 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5084 | OS << ":\n"; |
| 5085 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5086 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5087 | // Iterate through the statements in the block and print them. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5088 | unsigned j = 1; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5089 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5090 | for (CFGBlock::const_iterator I = B.begin(), E = B.end() ; |
| 5091 | I != E ; ++I, ++j ) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5092 | // Print the statement # in the basic block and the statement itself. |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5093 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5094 | OS << " "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5095 | |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5096 | OS << llvm::format("%3d", j) << ": "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5097 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5098 | Helper.setStmtID(j); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5099 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5100 | print_elem(OS, Helper, *I); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5101 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5102 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5103 | // Print the terminator of this block. |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5104 | if (B.getTerminator()) { |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5105 | if (ShowColors) |
| 5106 | OS.changeColor(raw_ostream::GREEN); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5107 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5108 | OS << " T: "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5109 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5110 | Helper.setBlockID(-1); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5111 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5112 | PrintingPolicy PP(Helper.getLangOpts()); |
| 5113 | CFGBlockTerminatorPrint TPrinter(OS, &Helper, PP); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5114 | TPrinter.print(B.getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5115 | OS << '\n'; |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5116 | |
| 5117 | if (ShowColors) |
| 5118 | OS.resetColor(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5119 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5120 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5121 | if (print_edges) { |
| 5122 | // Print the predecessors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5123 | if (!B.pred_empty()) { |
| 5124 | const raw_ostream::Colors Color = raw_ostream::BLUE; |
| 5125 | if (ShowColors) |
| 5126 | OS.changeColor(Color); |
| 5127 | OS << " Preds " ; |
| 5128 | if (ShowColors) |
| 5129 | OS.resetColor(); |
| 5130 | OS << '(' << B.pred_size() << "):"; |
| 5131 | unsigned i = 0; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5132 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5133 | if (ShowColors) |
| 5134 | OS.changeColor(Color); |
| 5135 | |
| 5136 | for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end(); |
| 5137 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 5138 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5139 | OS << "\n "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5140 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 5141 | CFGBlock *B = *I; |
| 5142 | bool Reachable = true; |
| 5143 | if (!B) { |
| 5144 | Reachable = false; |
| 5145 | B = I->getPossiblyUnreachableBlock(); |
| 5146 | } |
| 5147 | |
| 5148 | OS << " B" << B->getBlockID(); |
| 5149 | if (!Reachable) |
| 5150 | OS << "(Unreachable)"; |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5151 | } |
| 5152 | |
| 5153 | if (ShowColors) |
| 5154 | OS.resetColor(); |
| 5155 | |
| 5156 | OS << '\n'; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5157 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5158 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5159 | // Print the successors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5160 | if (!B.succ_empty()) { |
| 5161 | const raw_ostream::Colors Color = raw_ostream::MAGENTA; |
| 5162 | if (ShowColors) |
| 5163 | OS.changeColor(Color); |
| 5164 | OS << " Succs "; |
| 5165 | if (ShowColors) |
| 5166 | OS.resetColor(); |
| 5167 | OS << '(' << B.succ_size() << "):"; |
| 5168 | unsigned i = 0; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5169 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5170 | if (ShowColors) |
| 5171 | OS.changeColor(Color); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5172 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5173 | for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end(); |
| 5174 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 5175 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5176 | OS << "\n "; |
| 5177 | |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 5178 | CFGBlock *B = *I; |
| 5179 | |
| 5180 | bool Reachable = true; |
| 5181 | if (!B) { |
| 5182 | Reachable = false; |
| 5183 | B = I->getPossiblyUnreachableBlock(); |
| 5184 | } |
| 5185 | |
| 5186 | if (B) { |
| 5187 | OS << " B" << B->getBlockID(); |
| 5188 | if (!Reachable) |
| 5189 | OS << "(Unreachable)"; |
| 5190 | } |
| 5191 | else { |
| 5192 | OS << " NULL"; |
| 5193 | } |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5194 | } |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 5195 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5196 | if (ShowColors) |
| 5197 | OS.resetColor(); |
| 5198 | OS << '\n'; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5199 | } |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5200 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5201 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5202 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5203 | /// dump - A simple pretty printer of a CFG that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5204 | void CFG::dump(const LangOptions &LO, bool ShowColors) const { |
| 5205 | print(llvm::errs(), LO, ShowColors); |
| 5206 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5207 | |
| 5208 | /// 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] | 5209 | void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5210 | StmtPrinterHelper Helper(this, LO); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5211 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5212 | // Print the entry block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5213 | print_block(OS, this, getEntry(), Helper, true, ShowColors); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5214 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5215 | // Iterate through the CFGBlocks and print them one by one. |
| 5216 | for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) { |
| 5217 | // Skip the entry block, because we already printed it. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 5218 | if (&(**I) == &getEntry() || &(**I) == &getExit()) |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5219 | continue; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5220 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5221 | print_block(OS, this, **I, Helper, true, ShowColors); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5222 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5223 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5224 | // Print the exit block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5225 | print_block(OS, this, getExit(), Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5226 | OS << '\n'; |
Ted Kremenek | e03879b | 2008-11-24 20:50:24 +0000 | [diff] [blame] | 5227 | OS.flush(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5228 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5229 | |
| 5230 | /// dump - A simply pretty printer of a CFGBlock that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5231 | void CFGBlock::dump(const CFG* cfg, const LangOptions &LO, |
| 5232 | bool ShowColors) const { |
| 5233 | print(llvm::errs(), cfg, LO, ShowColors); |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5234 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5235 | |
Yaron Keren | cdae941 | 2016-01-29 19:38:18 +0000 | [diff] [blame] | 5236 | LLVM_DUMP_METHOD void CFGBlock::dump() const { |
Anna Zaks | a6fea13 | 2014-06-13 23:47:38 +0000 | [diff] [blame] | 5237 | dump(getParent(), LangOptions(), false); |
| 5238 | } |
| 5239 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5240 | /// print - A simple pretty printer of a CFGBlock that outputs to an ostream. |
| 5241 | /// Generally this will only be called from CFG::print. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5242 | void CFGBlock::print(raw_ostream &OS, const CFG* cfg, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5243 | const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5244 | StmtPrinterHelper Helper(cfg, LO); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5245 | print_block(OS, cfg, *this, Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5246 | OS << '\n'; |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 5247 | } |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5248 | |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5249 | /// printTerminator - A simple pretty printer of the terminator of a CFGBlock. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5250 | void CFGBlock::printTerminator(raw_ostream &OS, |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5251 | const LangOptions &LO) const { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5252 | CFGBlockTerminatorPrint TPrinter(OS, nullptr, PrintingPolicy(LO)); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5253 | TPrinter.print(getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5254 | } |
| 5255 | |
Ted Kremenek | ec3bbf4 | 2014-03-29 00:35:20 +0000 | [diff] [blame] | 5256 | Stmt *CFGBlock::getTerminatorCondition(bool StripParens) { |
Marcin Swiderski | a7d84a7 | 2010-10-29 05:21:47 +0000 | [diff] [blame] | 5257 | Stmt *Terminator = this->Terminator; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5258 | if (!Terminator) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5259 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5260 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5261 | Expr *E = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5262 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5263 | switch (Terminator->getStmtClass()) { |
| 5264 | default: |
| 5265 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5266 | |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 5267 | case Stmt::CXXForRangeStmtClass: |
| 5268 | E = cast<CXXForRangeStmt>(Terminator)->getCond(); |
| 5269 | break; |
| 5270 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5271 | case Stmt::ForStmtClass: |
| 5272 | E = cast<ForStmt>(Terminator)->getCond(); |
| 5273 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5274 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5275 | case Stmt::WhileStmtClass: |
| 5276 | E = cast<WhileStmt>(Terminator)->getCond(); |
| 5277 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5278 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5279 | case Stmt::DoStmtClass: |
| 5280 | E = cast<DoStmt>(Terminator)->getCond(); |
| 5281 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5282 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5283 | case Stmt::IfStmtClass: |
| 5284 | E = cast<IfStmt>(Terminator)->getCond(); |
| 5285 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5286 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5287 | case Stmt::ChooseExprClass: |
| 5288 | E = cast<ChooseExpr>(Terminator)->getCond(); |
| 5289 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5290 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5291 | case Stmt::IndirectGotoStmtClass: |
| 5292 | E = cast<IndirectGotoStmt>(Terminator)->getTarget(); |
| 5293 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5294 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5295 | case Stmt::SwitchStmtClass: |
| 5296 | E = cast<SwitchStmt>(Terminator)->getCond(); |
| 5297 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5298 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5299 | case Stmt::BinaryConditionalOperatorClass: |
| 5300 | E = cast<BinaryConditionalOperator>(Terminator)->getCond(); |
| 5301 | break; |
| 5302 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5303 | case Stmt::ConditionalOperatorClass: |
| 5304 | E = cast<ConditionalOperator>(Terminator)->getCond(); |
| 5305 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5306 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5307 | case Stmt::BinaryOperatorClass: // '&&' and '||' |
| 5308 | E = cast<BinaryOperator>(Terminator)->getLHS(); |
Ted Kremenek | 6d8b46e | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 5309 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5310 | |
Ted Kremenek | 6d8b46e | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 5311 | case Stmt::ObjCForCollectionStmtClass: |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5312 | return Terminator; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5313 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5314 | |
Ted Kremenek | ec3bbf4 | 2014-03-29 00:35:20 +0000 | [diff] [blame] | 5315 | if (!StripParens) |
| 5316 | return E; |
| 5317 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5318 | return E ? E->IgnoreParens() : nullptr; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5319 | } |
| 5320 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5321 | //===----------------------------------------------------------------------===// |
| 5322 | // CFG Graphviz Visualization |
| 5323 | //===----------------------------------------------------------------------===// |
| 5324 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5325 | #ifndef NDEBUG |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5326 | static StmtPrinterHelper* GraphHelper; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5327 | #endif |
| 5328 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5329 | void CFG::viewCFG(const LangOptions &LO) const { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5330 | #ifndef NDEBUG |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5331 | StmtPrinterHelper H(this, LO); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5332 | GraphHelper = &H; |
| 5333 | llvm::ViewGraph(this,"CFG"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5334 | GraphHelper = nullptr; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5335 | #endif |
| 5336 | } |
| 5337 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5338 | namespace llvm { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5339 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5340 | template<> |
| 5341 | struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5342 | DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {} |
Tobias Grosser | 9fc223a | 2009-11-30 14:16:05 +0000 | [diff] [blame] | 5343 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5344 | static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) { |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5345 | #ifndef NDEBUG |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5346 | std::string OutSStr; |
| 5347 | llvm::raw_string_ostream Out(OutSStr); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5348 | print_block(Out,Graph, *Node, *GraphHelper, false, false); |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5349 | std::string& OutStr = Out.str(); |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5350 | |
| 5351 | if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); |
| 5352 | |
| 5353 | // Process string output to make it nicer... |
| 5354 | for (unsigned i = 0; i != OutStr.length(); ++i) |
| 5355 | if (OutStr[i] == '\n') { // Left justify |
| 5356 | OutStr[i] = '\\'; |
| 5357 | OutStr.insert(OutStr.begin()+i+1, 'l'); |
| 5358 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5359 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5360 | return OutStr; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5361 | #else |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5362 | return {}; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5363 | #endif |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5364 | } |
| 5365 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5366 | |
| 5367 | } // namespace llvm |