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 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame^] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file defines the CFG and CFGBuilder classes for representing and |
| 10 | // building Control-Flow Graphs (CFGs) from ASTs. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Ted Kremenek | 6796fbd | 2009-07-16 18:13:04 +0000 | [diff] [blame] | 14 | #include "clang/Analysis/CFG.h" |
Benjamin Kramer | 1ea8e09 | 2012-07-04 17:04:04 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 16 | #include "clang/AST/Attr.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 17 | #include "clang/AST/Decl.h" |
| 18 | #include "clang/AST/DeclBase.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclCXX.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclGroup.h" |
| 21 | #include "clang/AST/Expr.h" |
| 22 | #include "clang/AST/ExprCXX.h" |
| 23 | #include "clang/AST/OperationKinds.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 24 | #include "clang/AST/PrettyPrinter.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 25 | #include "clang/AST/Stmt.h" |
| 26 | #include "clang/AST/StmtCXX.h" |
| 27 | #include "clang/AST/StmtObjC.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 28 | #include "clang/AST/StmtVisitor.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 29 | #include "clang/AST/Type.h" |
| 30 | #include "clang/Analysis/Support/BumpVector.h" |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 31 | #include "clang/Analysis/ConstructionContext.h" |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 32 | #include "clang/Basic/Builtins.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 33 | #include "clang/Basic/ExceptionSpecificationType.h" |
| 34 | #include "clang/Basic/LLVM.h" |
| 35 | #include "clang/Basic/LangOptions.h" |
| 36 | #include "clang/Basic/SourceLocation.h" |
| 37 | #include "clang/Basic/Specifiers.h" |
| 38 | #include "llvm/ADT/APInt.h" |
| 39 | #include "llvm/ADT/APSInt.h" |
| 40 | #include "llvm/ADT/ArrayRef.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 41 | #include "llvm/ADT/DenseMap.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 42 | #include "llvm/ADT/Optional.h" |
| 43 | #include "llvm/ADT/STLExtras.h" |
| 44 | #include "llvm/ADT/SetVector.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 45 | #include "llvm/ADT/SmallPtrSet.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 46 | #include "llvm/ADT/SmallVector.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 47 | #include "llvm/Support/Allocator.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Casting.h" |
| 49 | #include "llvm/Support/Compiler.h" |
| 50 | #include "llvm/Support/DOTGraphTraits.h" |
| 51 | #include "llvm/Support/ErrorHandling.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 52 | #include "llvm/Support/Format.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 53 | #include "llvm/Support/GraphWriter.h" |
| 54 | #include "llvm/Support/SaveAndRestore.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 55 | #include "llvm/Support/raw_ostream.h" |
| 56 | #include <cassert> |
| 57 | #include <memory> |
| 58 | #include <string> |
| 59 | #include <tuple> |
| 60 | #include <utility> |
| 61 | #include <vector> |
Ted Kremenek | e5ccf9a | 2008-01-11 00:40:29 +0000 | [diff] [blame] | 62 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 63 | using namespace clang; |
| 64 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 65 | static SourceLocation GetEndLoc(Decl *D) { |
| 66 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 67 | if (Expr *Ex = VD->getInit()) |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 68 | return Ex->getSourceRange().getEnd(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 69 | return D->getLocation(); |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 70 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 71 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 72 | /// Helper for tryNormalizeBinaryOperator. Attempts to extract an IntegerLiteral |
| 73 | /// or EnumConstantDecl from the given Expr. If it fails, returns nullptr. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 74 | static const Expr *tryTransformToIntOrEnumConstant(const Expr *E) { |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 75 | E = E->IgnoreParens(); |
| 76 | if (isa<IntegerLiteral>(E)) |
| 77 | return E; |
| 78 | if (auto *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts())) |
| 79 | return isa<EnumConstantDecl>(DR->getDecl()) ? DR : nullptr; |
| 80 | return nullptr; |
| 81 | } |
| 82 | |
| 83 | /// Tries to interpret a binary operator into `Decl Op Expr` form, if Expr is |
| 84 | /// an integer literal or an enum constant. |
| 85 | /// |
| 86 | /// If this fails, at least one of the returned DeclRefExpr or Expr will be |
| 87 | /// null. |
| 88 | static std::tuple<const DeclRefExpr *, BinaryOperatorKind, const Expr *> |
| 89 | tryNormalizeBinaryOperator(const BinaryOperator *B) { |
| 90 | BinaryOperatorKind Op = B->getOpcode(); |
| 91 | |
| 92 | const Expr *MaybeDecl = B->getLHS(); |
| 93 | const Expr *Constant = tryTransformToIntOrEnumConstant(B->getRHS()); |
| 94 | // Expr looked like `0 == Foo` instead of `Foo == 0` |
| 95 | if (Constant == nullptr) { |
| 96 | // Flip the operator |
| 97 | if (Op == BO_GT) |
| 98 | Op = BO_LT; |
| 99 | else if (Op == BO_GE) |
| 100 | Op = BO_LE; |
| 101 | else if (Op == BO_LT) |
| 102 | Op = BO_GT; |
| 103 | else if (Op == BO_LE) |
| 104 | Op = BO_GE; |
| 105 | |
| 106 | MaybeDecl = B->getRHS(); |
| 107 | Constant = tryTransformToIntOrEnumConstant(B->getLHS()); |
| 108 | } |
| 109 | |
| 110 | auto *D = dyn_cast<DeclRefExpr>(MaybeDecl->IgnoreParenImpCasts()); |
| 111 | return std::make_tuple(D, Op, Constant); |
| 112 | } |
| 113 | |
| 114 | /// For an expression `x == Foo && x == Bar`, this determines whether the |
| 115 | /// `Foo` and `Bar` are either of the same enumeration type, or both integer |
| 116 | /// literals. |
| 117 | /// |
| 118 | /// It's an error to pass this arguments that are not either IntegerLiterals |
| 119 | /// or DeclRefExprs (that have decls of type EnumConstantDecl) |
| 120 | static bool areExprTypesCompatible(const Expr *E1, const Expr *E2) { |
| 121 | // User intent isn't clear if they're mixing int literals with enum |
| 122 | // constants. |
| 123 | if (isa<IntegerLiteral>(E1) != isa<IntegerLiteral>(E2)) |
| 124 | return false; |
| 125 | |
| 126 | // Integer literal comparisons, regardless of literal type, are acceptable. |
| 127 | if (isa<IntegerLiteral>(E1)) |
| 128 | return true; |
| 129 | |
| 130 | // IntegerLiterals are handled above and only EnumConstantDecls are expected |
| 131 | // beyond this point |
| 132 | assert(isa<DeclRefExpr>(E1) && isa<DeclRefExpr>(E2)); |
| 133 | auto *Decl1 = cast<DeclRefExpr>(E1)->getDecl(); |
| 134 | auto *Decl2 = cast<DeclRefExpr>(E2)->getDecl(); |
| 135 | |
| 136 | assert(isa<EnumConstantDecl>(Decl1) && isa<EnumConstantDecl>(Decl2)); |
| 137 | const DeclContext *DC1 = Decl1->getDeclContext(); |
| 138 | const DeclContext *DC2 = Decl2->getDeclContext(); |
| 139 | |
| 140 | assert(isa<EnumDecl>(DC1) && isa<EnumDecl>(DC2)); |
| 141 | return DC1 == DC2; |
| 142 | } |
| 143 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 144 | namespace { |
| 145 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 146 | class CFGBuilder; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 147 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 148 | /// The CFG builder uses a recursive algorithm to build the CFG. When |
| 149 | /// we process an expression, sometimes we know that we must add the |
| 150 | /// subexpressions as block-level expressions. For example: |
| 151 | /// |
| 152 | /// exp1 || exp2 |
| 153 | /// |
| 154 | /// When processing the '||' expression, we know that exp1 and exp2 |
| 155 | /// need to be added as block-level expressions, even though they |
| 156 | /// might not normally need to be. AddStmtChoice records this |
| 157 | /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then |
| 158 | /// the builder has an option not to add a subexpression as a |
| 159 | /// block-level expression. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 160 | class AddStmtChoice { |
| 161 | public: |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 162 | enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 }; |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 163 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 164 | AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {} |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 165 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 166 | bool alwaysAdd(CFGBuilder &builder, |
| 167 | const Stmt *stmt) const; |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 168 | |
| 169 | /// Return a copy of this object, except with the 'always-add' bit |
| 170 | /// set as specified. |
| 171 | AddStmtChoice withAlwaysAdd(bool alwaysAdd) const { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 172 | return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 175 | private: |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 176 | Kind kind; |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 177 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 178 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 179 | /// LocalScope - Node in tree of local scopes created for C++ implicit |
| 180 | /// destructor calls generation. It contains list of automatic variables |
| 181 | /// declared in the scope and link to position in previous scope this scope |
| 182 | /// began in. |
| 183 | /// |
| 184 | /// The process of creating local scopes is as follows: |
| 185 | /// - Init CFGBuilder::ScopePos with invalid position (equivalent for null), |
| 186 | /// - Before processing statements in scope (e.g. CompoundStmt) create |
| 187 | /// LocalScope object using CFGBuilder::ScopePos as link to previous scope |
| 188 | /// and set CFGBuilder::ScopePos to the end of new scope, |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 189 | /// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 190 | /// at this VarDecl, |
| 191 | /// - For every normal (without jump) end of scope add to CFGBlock destructors |
| 192 | /// for objects in the current scope, |
| 193 | /// - For every jump add to CFGBlock destructors for objects |
| 194 | /// between CFGBuilder::ScopePos and local scope position saved for jump |
| 195 | /// target. Thanks to C++ restrictions on goto jumps we can be sure that |
| 196 | /// jump target position will be on the path to root from CFGBuilder::ScopePos |
| 197 | /// (adding any variable that doesn't need constructor to be called to |
| 198 | /// LocalScope can break this assumption), |
| 199 | /// |
| 200 | class LocalScope { |
| 201 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 202 | friend class const_iterator; |
| 203 | |
| 204 | using AutomaticVarsTy = BumpVector<VarDecl *>; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 205 | |
| 206 | /// const_iterator - Iterates local scope backwards and jumps to previous |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 207 | /// scope on reaching the beginning of currently iterated scope. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 208 | class const_iterator { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 209 | const LocalScope* Scope = nullptr; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 210 | |
| 211 | /// VarIter is guaranteed to be greater then 0 for every valid iterator. |
| 212 | /// Invalid iterator (with null Scope) has VarIter equal to 0. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 213 | unsigned VarIter = 0; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 214 | |
| 215 | public: |
| 216 | /// Create invalid iterator. Dereferencing invalid iterator is not allowed. |
| 217 | /// Incrementing invalid iterator is allowed and will result in invalid |
| 218 | /// iterator. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 219 | const_iterator() = default; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 220 | |
| 221 | /// Create valid iterator. In case when S.Prev is an invalid iterator and |
| 222 | /// I is equal to 0, this will create invalid iterator. |
| 223 | const_iterator(const LocalScope& S, unsigned I) |
| 224 | : Scope(&S), VarIter(I) { |
| 225 | // Iterator to "end" of scope is not allowed. Handle it by going up |
| 226 | // in scopes tree possibly up to invalid iterator in the root. |
| 227 | if (VarIter == 0 && Scope) |
| 228 | *this = Scope->Prev; |
| 229 | } |
| 230 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 231 | VarDecl *const* operator->() const { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 232 | assert(Scope && "Dereferencing invalid iterator is not allowed"); |
| 233 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 234 | return &Scope->Vars[VarIter - 1]; |
| 235 | } |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 236 | |
| 237 | const VarDecl *getFirstVarInScope() const { |
| 238 | assert(Scope && "Dereferencing invalid iterator is not allowed"); |
| 239 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
| 240 | return Scope->Vars[0]; |
| 241 | } |
| 242 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 243 | VarDecl *operator*() const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 244 | return *this->operator->(); |
| 245 | } |
| 246 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 247 | const_iterator &operator++() { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 248 | if (!Scope) |
| 249 | return *this; |
| 250 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 251 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 252 | --VarIter; |
| 253 | if (VarIter == 0) |
| 254 | *this = Scope->Prev; |
| 255 | return *this; |
| 256 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 257 | const_iterator operator++(int) { |
| 258 | const_iterator P = *this; |
| 259 | ++*this; |
| 260 | return P; |
| 261 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 262 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 263 | bool operator==(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 264 | return Scope == rhs.Scope && VarIter == rhs.VarIter; |
| 265 | } |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 266 | bool operator!=(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 267 | return !(*this == rhs); |
| 268 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 269 | |
Aaron Ballman | 6734766 | 2015-02-15 22:00:28 +0000 | [diff] [blame] | 270 | explicit operator bool() const { |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 271 | return *this != const_iterator(); |
| 272 | } |
| 273 | |
| 274 | int distance(const_iterator L); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 275 | const_iterator shared_parent(const_iterator L); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 276 | bool pointsToFirstDeclaredVar() { return VarIter == 1; } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 277 | }; |
| 278 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 279 | private: |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 280 | BumpVectorContext ctx; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 281 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 282 | /// Automatic variables in order of declaration. |
| 283 | AutomaticVarsTy Vars; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 284 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 285 | /// Iterator to variable in previous scope that was declared just before |
| 286 | /// begin of this scope. |
| 287 | const_iterator Prev; |
| 288 | |
| 289 | public: |
| 290 | /// Constructs empty scope linked to previous scope in specified place. |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 291 | LocalScope(BumpVectorContext ctx, const_iterator P) |
| 292 | : ctx(std::move(ctx)), Vars(this->ctx, 4), Prev(P) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 293 | |
| 294 | /// Begin of scope in direction of CFG building (backwards). |
| 295 | const_iterator begin() const { return const_iterator(*this, Vars.size()); } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 296 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 297 | void addVar(VarDecl *VD) { |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 298 | Vars.push_back(VD, ctx); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 299 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 300 | }; |
| 301 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 302 | } // namespace |
| 303 | |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 304 | /// distance - Calculates distance from this to L. L must be reachable from this |
| 305 | /// (with use of ++ operator). Cost of calculating the distance is linear w.r.t. |
| 306 | /// number of scopes between this and L. |
| 307 | int LocalScope::const_iterator::distance(LocalScope::const_iterator L) { |
| 308 | int D = 0; |
| 309 | const_iterator F = *this; |
| 310 | while (F.Scope != L.Scope) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 311 | assert(F != const_iterator() && |
| 312 | "L iterator is not reachable from F iterator."); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 313 | D += F.VarIter; |
| 314 | F = F.Scope->Prev; |
| 315 | } |
| 316 | D += F.VarIter - L.VarIter; |
| 317 | return D; |
| 318 | } |
| 319 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 320 | /// Calculates the closest parent of this iterator |
| 321 | /// that is in a scope reachable through the parents of L. |
| 322 | /// I.e. when using 'goto' from this to L, the lifetime of all variables |
| 323 | /// between this and shared_parent(L) end. |
| 324 | LocalScope::const_iterator |
| 325 | LocalScope::const_iterator::shared_parent(LocalScope::const_iterator L) { |
| 326 | llvm::SmallPtrSet<const LocalScope *, 4> ScopesOfL; |
| 327 | while (true) { |
| 328 | ScopesOfL.insert(L.Scope); |
| 329 | if (L == const_iterator()) |
| 330 | break; |
| 331 | L = L.Scope->Prev; |
| 332 | } |
| 333 | |
| 334 | const_iterator F = *this; |
| 335 | while (true) { |
| 336 | if (ScopesOfL.count(F.Scope)) |
| 337 | return F; |
| 338 | assert(F != const_iterator() && |
| 339 | "L iterator is not reachable from F iterator."); |
| 340 | F = F.Scope->Prev; |
| 341 | } |
| 342 | } |
| 343 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 344 | namespace { |
| 345 | |
Jonathan Roelofs | 99bdd98 | 2015-05-19 18:51:56 +0000 | [diff] [blame] | 346 | /// Structure for specifying position in CFG during its build process. It |
| 347 | /// consists of CFGBlock that specifies position in CFG and |
| 348 | /// LocalScope::const_iterator that specifies position in LocalScope graph. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 349 | struct BlockScopePosPair { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 350 | CFGBlock *block = nullptr; |
| 351 | LocalScope::const_iterator scopePosition; |
| 352 | |
| 353 | BlockScopePosPair() = default; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 354 | BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 355 | : block(b), scopePosition(scopePos) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 356 | }; |
| 357 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 358 | /// TryResult - a class representing a variant over the values |
| 359 | /// 'true', 'false', or 'unknown'. This is returned by tryEvaluateBool, |
| 360 | /// and is used by the CFGBuilder to decide if a branch condition |
| 361 | /// can be decided up front during CFG construction. |
| 362 | class TryResult { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 363 | int X = -1; |
| 364 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 365 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 366 | TryResult() = default; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 367 | TryResult(bool b) : X(b ? 1 : 0) {} |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 368 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 369 | bool isTrue() const { return X == 1; } |
| 370 | bool isFalse() const { return X == 0; } |
| 371 | bool isKnown() const { return X >= 0; } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 372 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 373 | void negate() { |
| 374 | assert(isKnown()); |
| 375 | X ^= 0x1; |
| 376 | } |
| 377 | }; |
| 378 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 379 | } // namespace |
| 380 | |
| 381 | static TryResult bothKnownTrue(TryResult R1, TryResult R2) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 382 | if (!R1.isKnown() || !R2.isKnown()) |
| 383 | return TryResult(); |
| 384 | return TryResult(R1.isTrue() && R2.isTrue()); |
| 385 | } |
| 386 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 387 | namespace { |
| 388 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 389 | class reverse_children { |
| 390 | llvm::SmallVector<Stmt *, 12> childrenBuf; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 391 | ArrayRef<Stmt *> children; |
| 392 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 393 | public: |
| 394 | reverse_children(Stmt *S); |
| 395 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 396 | using iterator = ArrayRef<Stmt *>::reverse_iterator; |
| 397 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 398 | iterator begin() const { return children.rbegin(); } |
| 399 | iterator end() const { return children.rend(); } |
| 400 | }; |
| 401 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 402 | } // namespace |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 403 | |
| 404 | reverse_children::reverse_children(Stmt *S) { |
| 405 | if (CallExpr *CE = dyn_cast<CallExpr>(S)) { |
| 406 | children = CE->getRawSubExprs(); |
| 407 | return; |
| 408 | } |
| 409 | switch (S->getStmtClass()) { |
Ted Kremenek | 7d86b9c | 2013-02-05 22:03:14 +0000 | [diff] [blame] | 410 | // Note: Fill in this switch with more cases we want to optimize. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 411 | case Stmt::InitListExprClass: { |
| 412 | InitListExpr *IE = cast<InitListExpr>(S); |
| 413 | children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()), |
| 414 | IE->getNumInits()); |
| 415 | return; |
| 416 | } |
| 417 | default: |
| 418 | break; |
| 419 | } |
| 420 | |
| 421 | // Default case for all other statements. |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 422 | for (Stmt *SubStmt : S->children()) |
| 423 | childrenBuf.push_back(SubStmt); |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 424 | |
| 425 | // This needs to be done *after* childrenBuf has been populated. |
| 426 | children = childrenBuf; |
| 427 | } |
| 428 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 429 | namespace { |
| 430 | |
Ted Kremenek | be9b33b | 2008-08-04 22:51:42 +0000 | [diff] [blame] | 431 | /// CFGBuilder - This class implements CFG construction from an AST. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 432 | /// The builder is stateful: an instance of the builder should be used to only |
| 433 | /// construct a single CFG. |
| 434 | /// |
| 435 | /// Example usage: |
| 436 | /// |
| 437 | /// CFGBuilder builder; |
Jonathan Roelofs | ab046c5 | 2015-07-27 16:05:36 +0000 | [diff] [blame] | 438 | /// std::unique_ptr<CFG> cfg = builder.buildCFG(decl, stmt1); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 439 | /// |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 440 | /// CFG construction is done via a recursive walk of an AST. We actually parse |
| 441 | /// the AST in reverse order so that the successor of a basic block is |
| 442 | /// constructed prior to its predecessor. This allows us to nicely capture |
| 443 | /// implicit fall-throughs without extra basic blocks. |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 444 | class CFGBuilder { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 445 | using JumpTarget = BlockScopePosPair; |
| 446 | using JumpSource = BlockScopePosPair; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 447 | |
Mike Stump | 0d76d07 | 2009-07-20 23:24:15 +0000 | [diff] [blame] | 448 | ASTContext *Context; |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 449 | std::unique_ptr<CFG> cfg; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 450 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 451 | // Current block. |
| 452 | CFGBlock *Block = nullptr; |
| 453 | |
| 454 | // Block after the current block. |
| 455 | CFGBlock *Succ = nullptr; |
| 456 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 457 | JumpTarget ContinueJumpTarget; |
| 458 | JumpTarget BreakJumpTarget; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 459 | JumpTarget SEHLeaveJumpTarget; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 460 | CFGBlock *SwitchTerminatedBlock = nullptr; |
| 461 | CFGBlock *DefaultCaseBlock = nullptr; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 462 | |
| 463 | // This can point either to a try or a __try block. The frontend forbids |
| 464 | // 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] | 465 | CFGBlock *TryTerminatedBlock = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 466 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 467 | // Current position in local scope. |
| 468 | LocalScope::const_iterator ScopePos; |
| 469 | |
| 470 | // LabelMap records the mapping from Label expressions to their jump targets. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 471 | using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 472 | LabelMapTy LabelMap; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 473 | |
| 474 | // A list of blocks that end with a "goto" that must be backpatched to their |
| 475 | // resolved targets upon completion of CFG construction. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 476 | using BackpatchBlocksTy = std::vector<JumpSource>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 477 | BackpatchBlocksTy BackpatchBlocks; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 478 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 479 | // A list of labels whose address has been taken (for indirect gotos). |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 480 | using LabelSetTy = llvm::SmallSetVector<LabelDecl *, 8>; |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 481 | LabelSetTy AddressTakenLabels; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 482 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 483 | // Information about the currently visited C++ object construction site. |
| 484 | // This is set in the construction trigger and read when the constructor |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 485 | // or a function that returns an object by value is being visited. |
| 486 | llvm::DenseMap<Expr *, const ConstructionContextLayer *> |
Artem Dergachev | 5e2f6ba | 2018-02-23 22:49:25 +0000 | [diff] [blame] | 487 | ConstructionContextMap; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 488 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 489 | using DeclsWithEndedScopeSetTy = llvm::SmallSetVector<VarDecl *, 16>; |
| 490 | DeclsWithEndedScopeSetTy DeclsWithEndedScope; |
| 491 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 492 | bool badCFG = false; |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 493 | const CFG::BuildOptions &BuildOpts; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 494 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 495 | // State to track for building switch statements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 496 | bool switchExclusivelyCovered = false; |
| 497 | Expr::EvalResult *switchCond = nullptr; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 498 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 499 | CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry = nullptr; |
| 500 | const Stmt *lastLookup = nullptr; |
Zhongxing Xu | d38fb84 | 2010-09-16 03:28:18 +0000 | [diff] [blame] | 501 | |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 502 | // Caches boolean evaluations of expressions to avoid multiple re-evaluations |
| 503 | // during construction of branches for chained logical operators. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 504 | using CachedBoolEvalsTy = llvm::DenseMap<Expr *, TryResult>; |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 505 | CachedBoolEvalsTy CachedBoolEvals; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 506 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 507 | public: |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 508 | explicit CFGBuilder(ASTContext *astContext, |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 509 | const CFG::BuildOptions &buildOpts) |
| 510 | : Context(astContext), cfg(new CFG()), // crew a new CFG |
Artem Dergachev | 5e2f6ba | 2018-02-23 22:49:25 +0000 | [diff] [blame] | 511 | ConstructionContextMap(), BuildOpts(buildOpts) {} |
| 512 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 513 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 514 | // buildCFG - Used by external clients to construct the CFG. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 515 | std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 516 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 517 | bool alwaysAdd(const Stmt *stmt); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 518 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 519 | private: |
| 520 | // Visitors to walk an AST and construct the CFG. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 521 | CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); |
| 522 | CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 523 | CFGBlock *VisitBreakStmt(BreakStmt *B); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 524 | CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 525 | CFGBlock *VisitCaseStmt(CaseStmt *C); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 526 | CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 527 | CFGBlock *VisitCompoundStmt(CompoundStmt *C); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 528 | CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C, |
| 529 | AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 530 | CFGBlock *VisitContinueStmt(ContinueStmt *C); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 531 | CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 532 | AddStmtChoice asc); |
| 533 | CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S); |
| 534 | CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc); |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 535 | CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 536 | CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 537 | CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S); |
| 538 | CFGBlock *VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 539 | AddStmtChoice asc); |
| 540 | CFGBlock *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 541 | AddStmtChoice asc); |
| 542 | CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T); |
| 543 | CFGBlock *VisitCXXTryStmt(CXXTryStmt *S); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 544 | CFGBlock *VisitDeclStmt(DeclStmt *DS); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 545 | CFGBlock *VisitDeclSubExpr(DeclStmt *DS); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 546 | CFGBlock *VisitDefaultStmt(DefaultStmt *D); |
| 547 | CFGBlock *VisitDoStmt(DoStmt *D); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 548 | CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 549 | CFGBlock *VisitForStmt(ForStmt *F); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 550 | CFGBlock *VisitGotoStmt(GotoStmt *G); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 551 | CFGBlock *VisitIfStmt(IfStmt *I); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 552 | CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc); |
Bill Wendling | 8003edc | 2018-11-09 00:41:36 +0000 | [diff] [blame] | 553 | CFGBlock *VisitConstantExpr(ConstantExpr *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); |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 572 | CFGBlock *VisitObjCMessageExpr(ObjCMessageExpr *E, AddStmtChoice asc); |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 573 | CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E); |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 574 | CFGBlock *VisitReturnStmt(Stmt *S); |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 575 | CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S); |
| 576 | CFGBlock *VisitSEHFinallyStmt(SEHFinallyStmt *S); |
| 577 | CFGBlock *VisitSEHLeaveStmt(SEHLeaveStmt *S); |
| 578 | CFGBlock *VisitSEHTryStmt(SEHTryStmt *S); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 579 | CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 580 | CFGBlock *VisitSwitchStmt(SwitchStmt *S); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 581 | CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 582 | AddStmtChoice asc); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 583 | CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 584 | CFGBlock *VisitWhileStmt(WhileStmt *W); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 585 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 586 | CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd); |
| 587 | CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 588 | CFGBlock *VisitChildren(Stmt *S); |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 589 | CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 590 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 591 | void maybeAddScopeBeginForVarDecl(CFGBlock *B, const VarDecl *VD, |
| 592 | const Stmt *S) { |
| 593 | if (ScopePos && (VD == ScopePos.getFirstVarInScope())) |
| 594 | appendScopeBegin(B, VD, S); |
| 595 | } |
| 596 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 597 | /// When creating the CFG for temporary destructors, we want to mirror the |
| 598 | /// branch structure of the corresponding constructor calls. |
| 599 | /// Thus, while visiting a statement for temporary destructors, we keep a |
| 600 | /// context to keep track of the following information: |
| 601 | /// - whether a subexpression is executed unconditionally |
| 602 | /// - if a subexpression is executed conditionally, the first |
| 603 | /// CXXBindTemporaryExpr we encounter in that subexpression (which |
| 604 | /// corresponds to the last temporary destructor we have to call for this |
| 605 | /// subexpression) and the CFG block at that point (which will become the |
| 606 | /// successor block when inserting the decision point). |
| 607 | /// |
| 608 | /// That way, we can build the branch structure for temporary destructors as |
| 609 | /// follows: |
| 610 | /// 1. If a subexpression is executed unconditionally, we add the temporary |
| 611 | /// destructor calls to the current block. |
| 612 | /// 2. If a subexpression is executed conditionally, when we encounter a |
| 613 | /// CXXBindTemporaryExpr: |
| 614 | /// a) If it is the first temporary destructor call in the subexpression, |
| 615 | /// we remember the CXXBindTemporaryExpr and the current block in the |
| 616 | /// TempDtorContext; we start a new block, and insert the temporary |
| 617 | /// destructor call. |
| 618 | /// b) Otherwise, add the temporary destructor call to the current block. |
| 619 | /// 3. When we finished visiting a conditionally executed subexpression, |
| 620 | /// and we found at least one temporary constructor during the visitation |
| 621 | /// (2.a has executed), we insert a decision block that uses the |
| 622 | /// CXXBindTemporaryExpr as terminator, and branches to the current block |
| 623 | /// if the CXXBindTemporaryExpr was marked executed, and otherwise |
| 624 | /// branches to the stored successor. |
| 625 | struct TempDtorContext { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 626 | TempDtorContext() = default; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 627 | TempDtorContext(TryResult KnownExecuted) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 628 | : IsConditional(true), KnownExecuted(KnownExecuted) {} |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 629 | |
| 630 | /// 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] | 631 | /// call. This is the case when the temporary destructor is |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 632 | /// conditionally executed, and it is the first one we encounter while |
| 633 | /// visiting a subexpression - other temporary destructors at the same level |
| 634 | /// will be added to the same block and are executed under the same |
| 635 | /// condition. |
| 636 | bool needsTempDtorBranch() const { |
| 637 | return IsConditional && !TerminatorExpr; |
| 638 | } |
| 639 | |
| 640 | /// Remember the successor S of a temporary destructor decision branch for |
| 641 | /// the corresponding CXXBindTemporaryExpr E. |
| 642 | void setDecisionPoint(CFGBlock *S, CXXBindTemporaryExpr *E) { |
| 643 | Succ = S; |
| 644 | TerminatorExpr = E; |
| 645 | } |
| 646 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 647 | const bool IsConditional = false; |
| 648 | const TryResult KnownExecuted = true; |
| 649 | CFGBlock *Succ = nullptr; |
| 650 | CXXBindTemporaryExpr *TerminatorExpr = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 651 | }; |
| 652 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 653 | // Visitors to walk an AST and generate destructors of temporaries in |
| 654 | // full expression. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 655 | CFGBlock *VisitForTemporaryDtors(Stmt *E, bool BindToTemporary, |
| 656 | TempDtorContext &Context); |
| 657 | CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E, TempDtorContext &Context); |
| 658 | CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E, |
| 659 | TempDtorContext &Context); |
| 660 | CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors( |
| 661 | CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context); |
| 662 | CFGBlock *VisitConditionalOperatorForTemporaryDtors( |
| 663 | AbstractConditionalOperator *E, bool BindToTemporary, |
| 664 | TempDtorContext &Context); |
| 665 | void InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 666 | CFGBlock *FalseSucc = nullptr); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 667 | |
Ted Kremenek | 6065ef6 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 668 | // NYS == Not Yet Supported |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 669 | CFGBlock *NYS() { |
Ted Kremenek | b64d183 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 670 | badCFG = true; |
| 671 | return Block; |
| 672 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 673 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 674 | // Remember to apply the construction context based on the current \p Layer |
| 675 | // when constructing the CFG element for \p CE. |
| 676 | void consumeConstructionContext(const ConstructionContextLayer *Layer, |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 677 | Expr *E); |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 678 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 679 | // Scan \p Child statement to find constructors in it, while keeping in mind |
| 680 | // that its parent statement is providing a partial construction context |
| 681 | // described by \p Layer. If a constructor is found, it would be assigned |
| 682 | // the context based on the layer. If an additional construction context layer |
| 683 | // is found, the function recurses into that. |
| 684 | void findConstructionContexts(const ConstructionContextLayer *Layer, |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 685 | Stmt *Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 686 | |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 687 | // Scan all arguments of a call expression for a construction context. |
| 688 | // These sorts of call expressions don't have a common superclass, |
| 689 | // hence strict duck-typing. |
| 690 | template <typename CallLikeExpr, |
| 691 | typename = typename std::enable_if< |
| 692 | std::is_same<CallLikeExpr, CallExpr>::value || |
| 693 | std::is_same<CallLikeExpr, CXXConstructExpr>::value || |
| 694 | std::is_same<CallLikeExpr, ObjCMessageExpr>::value>> |
| 695 | void findConstructionContextsForArguments(CallLikeExpr *E) { |
Artem Dergachev | a657a32 | 2018-07-31 20:45:53 +0000 | [diff] [blame] | 696 | for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) { |
| 697 | Expr *Arg = E->getArg(i); |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 698 | if (Arg->getType()->getAsCXXRecordDecl() && !Arg->isGLValue()) |
| 699 | findConstructionContexts( |
Artem Dergachev | 1f8cb3a | 2018-07-31 21:12:42 +0000 | [diff] [blame] | 700 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), |
| 701 | ConstructionContextItem(E, i)), |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 702 | Arg); |
Artem Dergachev | a657a32 | 2018-07-31 20:45:53 +0000 | [diff] [blame] | 703 | } |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 704 | } |
| 705 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 706 | // Unset the construction context after consuming it. This is done immediately |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 707 | // after adding the CFGConstructor or CFGCXXRecordTypedCall element, so |
| 708 | // there's no need to do this manually in every Visit... function. |
| 709 | void cleanupConstructionContext(Expr *E); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 710 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 711 | void autoCreateBlock() { if (!Block) Block = createBlock(); } |
| 712 | CFGBlock *createBlock(bool add_successor = true); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 713 | CFGBlock *createNoReturnBlock(); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 714 | |
Zhongxing Xu | ea9fcff | 2010-06-03 06:43:23 +0000 | [diff] [blame] | 715 | CFGBlock *addStmt(Stmt *S) { |
| 716 | return Visit(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 717 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 718 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 719 | CFGBlock *addInitializer(CXXCtorInitializer *I); |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 720 | void addLoopExit(const Stmt *LoopStmt); |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 721 | void addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 722 | LocalScope::const_iterator E, Stmt *S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 723 | void addLifetimeEnds(LocalScope::const_iterator B, |
| 724 | LocalScope::const_iterator E, Stmt *S); |
| 725 | void addAutomaticObjHandling(LocalScope::const_iterator B, |
| 726 | LocalScope::const_iterator E, Stmt *S); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 727 | void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 728 | void addScopesEnd(LocalScope::const_iterator B, LocalScope::const_iterator E, |
| 729 | Stmt *S); |
| 730 | |
| 731 | void getDeclsWithEndedScope(LocalScope::const_iterator B, |
| 732 | LocalScope::const_iterator E, Stmt *S); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 733 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 734 | // Local scopes creation. |
| 735 | LocalScope* createOrReuseLocalScope(LocalScope* Scope); |
| 736 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 737 | void addLocalScopeForStmt(Stmt *S); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 738 | LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS, |
| 739 | LocalScope* Scope = nullptr); |
| 740 | LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = nullptr); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 741 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 742 | void addLocalScopeAndDtors(Stmt *S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 743 | |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 744 | const ConstructionContext *retrieveAndCleanupConstructionContext(Expr *E) { |
| 745 | if (!BuildOpts.AddRichCXXConstructors) |
| 746 | return nullptr; |
| 747 | |
| 748 | const ConstructionContextLayer *Layer = ConstructionContextMap.lookup(E); |
| 749 | if (!Layer) |
| 750 | return nullptr; |
| 751 | |
| 752 | cleanupConstructionContext(E); |
| 753 | return ConstructionContext::createFromLayers(cfg->getBumpVectorContext(), |
| 754 | Layer); |
| 755 | } |
| 756 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 757 | // Interface to CFGBlock - adding CFGElements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 758 | |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 759 | void appendStmt(CFGBlock *B, const Stmt *S) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 760 | if (alwaysAdd(S) && cachedEntry) |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 761 | cachedEntry->second = B; |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 762 | |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 763 | // All block-level expressions should have already been IgnoreParens()ed. |
| 764 | assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 765 | B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 766 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 767 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 768 | void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) { |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 769 | if (const ConstructionContext *CC = |
| 770 | retrieveAndCleanupConstructionContext(CE)) { |
| 771 | B->appendConstructor(CE, CC, cfg->getBumpVectorContext()); |
| 772 | return; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 773 | } |
| 774 | |
| 775 | // No valid construction context found. Fall back to statement. |
| 776 | B->appendStmt(CE, cfg->getBumpVectorContext()); |
| 777 | } |
| 778 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 779 | void appendCall(CFGBlock *B, CallExpr *CE) { |
Richard Trieu | f4a0e9a | 2018-03-15 00:09:26 +0000 | [diff] [blame] | 780 | if (alwaysAdd(CE) && cachedEntry) |
| 781 | cachedEntry->second = B; |
| 782 | |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 783 | if (const ConstructionContext *CC = |
| 784 | retrieveAndCleanupConstructionContext(CE)) { |
| 785 | B->appendCXXRecordTypedCall(CE, CC, cfg->getBumpVectorContext()); |
| 786 | return; |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | // No valid construction context found. Fall back to statement. |
| 790 | B->appendStmt(CE, cfg->getBumpVectorContext()); |
| 791 | } |
| 792 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 793 | void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 794 | B->appendInitializer(I, cfg->getBumpVectorContext()); |
| 795 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 796 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 797 | void appendNewAllocator(CFGBlock *B, CXXNewExpr *NE) { |
| 798 | B->appendNewAllocator(NE, cfg->getBumpVectorContext()); |
| 799 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 800 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 801 | void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) { |
| 802 | B->appendBaseDtor(BS, cfg->getBumpVectorContext()); |
| 803 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 804 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 805 | void appendMemberDtor(CFGBlock *B, FieldDecl *FD) { |
| 806 | B->appendMemberDtor(FD, cfg->getBumpVectorContext()); |
| 807 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 808 | |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 809 | void appendObjCMessage(CFGBlock *B, ObjCMessageExpr *ME) { |
| 810 | if (alwaysAdd(ME) && cachedEntry) |
| 811 | cachedEntry->second = B; |
| 812 | |
| 813 | if (const ConstructionContext *CC = |
| 814 | retrieveAndCleanupConstructionContext(ME)) { |
| 815 | B->appendCXXRecordTypedCall(ME, CC, cfg->getBumpVectorContext()); |
| 816 | return; |
| 817 | } |
| 818 | |
| 819 | B->appendStmt(const_cast<ObjCMessageExpr *>(ME), |
| 820 | cfg->getBumpVectorContext()); |
| 821 | } |
| 822 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 823 | void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) { |
| 824 | B->appendTemporaryDtor(E, cfg->getBumpVectorContext()); |
| 825 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 826 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 827 | void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 828 | B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext()); |
| 829 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 830 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 831 | void appendLifetimeEnds(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 832 | B->appendLifetimeEnds(VD, S, cfg->getBumpVectorContext()); |
| 833 | } |
| 834 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 835 | void appendLoopExit(CFGBlock *B, const Stmt *LoopStmt) { |
| 836 | B->appendLoopExit(LoopStmt, cfg->getBumpVectorContext()); |
| 837 | } |
| 838 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 839 | void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) { |
| 840 | B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext()); |
| 841 | } |
| 842 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 843 | void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 844 | LocalScope::const_iterator B, LocalScope::const_iterator E); |
| 845 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 846 | void prependAutomaticObjLifetimeWithTerminator(CFGBlock *Blk, |
| 847 | LocalScope::const_iterator B, |
| 848 | LocalScope::const_iterator E); |
| 849 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 850 | const VarDecl * |
| 851 | prependAutomaticObjScopeEndWithTerminator(CFGBlock *Blk, |
| 852 | LocalScope::const_iterator B, |
| 853 | LocalScope::const_iterator E); |
| 854 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 855 | void addSuccessor(CFGBlock *B, CFGBlock *S, bool IsReachable = true) { |
| 856 | B->addSuccessor(CFGBlock::AdjacentBlock(S, IsReachable), |
| 857 | cfg->getBumpVectorContext()); |
| 858 | } |
| 859 | |
| 860 | /// Add a reachable successor to a block, with the alternate variant that is |
| 861 | /// unreachable. |
| 862 | void addSuccessor(CFGBlock *B, CFGBlock *ReachableBlock, CFGBlock *AltBlock) { |
| 863 | B->addSuccessor(CFGBlock::AdjacentBlock(ReachableBlock, AltBlock), |
| 864 | cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 865 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 866 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 867 | void appendScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 868 | if (BuildOpts.AddScopes) |
| 869 | B->appendScopeBegin(VD, S, cfg->getBumpVectorContext()); |
| 870 | } |
| 871 | |
| 872 | void prependScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 873 | if (BuildOpts.AddScopes) |
| 874 | B->prependScopeBegin(VD, S, cfg->getBumpVectorContext()); |
| 875 | } |
| 876 | |
| 877 | void appendScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 878 | if (BuildOpts.AddScopes) |
| 879 | B->appendScopeEnd(VD, S, cfg->getBumpVectorContext()); |
| 880 | } |
| 881 | |
| 882 | void prependScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 883 | if (BuildOpts.AddScopes) |
| 884 | B->prependScopeEnd(VD, S, cfg->getBumpVectorContext()); |
| 885 | } |
| 886 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 887 | /// Find a relational comparison with an expression evaluating to a |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 888 | /// boolean and a constant other than 0 and 1. |
| 889 | /// e.g. if ((x < y) == 10) |
| 890 | TryResult checkIncorrectRelationalOperator(const BinaryOperator *B) { |
| 891 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 892 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 893 | |
| 894 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 895 | const Expr *BoolExpr = RHSExpr; |
| 896 | bool IntFirst = true; |
| 897 | if (!IntLiteral) { |
| 898 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 899 | BoolExpr = LHSExpr; |
| 900 | IntFirst = false; |
| 901 | } |
| 902 | |
| 903 | if (!IntLiteral || !BoolExpr->isKnownToHaveBooleanValue()) |
| 904 | return TryResult(); |
| 905 | |
| 906 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 907 | if ((IntValue == 1) || (IntValue == 0)) |
| 908 | return TryResult(); |
| 909 | |
| 910 | bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || |
| 911 | !IntValue.isNegative(); |
| 912 | |
| 913 | BinaryOperatorKind Bok = B->getOpcode(); |
| 914 | if (Bok == BO_GT || Bok == BO_GE) { |
| 915 | // Always true for 10 > bool and bool > -1 |
| 916 | // Always false for -1 > bool and bool > 10 |
| 917 | return TryResult(IntFirst == IntLarger); |
| 918 | } else { |
| 919 | // Always true for -1 < bool and bool < 10 |
| 920 | // Always false for 10 < bool and bool < -1 |
| 921 | return TryResult(IntFirst != IntLarger); |
| 922 | } |
| 923 | } |
| 924 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 925 | /// Find an incorrect equality comparison. Either with an expression |
| 926 | /// evaluating to a boolean and a constant other than 0 and 1. |
| 927 | /// e.g. if (!x == 10) or a bitwise and/or operation that always evaluates to |
| 928 | /// true/false e.q. (x & 8) == 4. |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 929 | TryResult checkIncorrectEqualityOperator(const BinaryOperator *B) { |
| 930 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 931 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 932 | |
| 933 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 934 | const Expr *BoolExpr = RHSExpr; |
| 935 | |
| 936 | if (!IntLiteral) { |
| 937 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 938 | BoolExpr = LHSExpr; |
| 939 | } |
| 940 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 941 | if (!IntLiteral) |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 942 | return TryResult(); |
| 943 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 944 | const BinaryOperator *BitOp = dyn_cast<BinaryOperator>(BoolExpr); |
| 945 | if (BitOp && (BitOp->getOpcode() == BO_And || |
| 946 | BitOp->getOpcode() == BO_Or)) { |
| 947 | const Expr *LHSExpr2 = BitOp->getLHS()->IgnoreParens(); |
| 948 | const Expr *RHSExpr2 = BitOp->getRHS()->IgnoreParens(); |
| 949 | |
| 950 | const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2); |
| 951 | |
| 952 | if (!IntLiteral2) |
| 953 | IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2); |
| 954 | |
| 955 | if (!IntLiteral2) |
| 956 | return TryResult(); |
| 957 | |
| 958 | llvm::APInt L1 = IntLiteral->getValue(); |
| 959 | llvm::APInt L2 = IntLiteral2->getValue(); |
| 960 | if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) || |
| 961 | (BitOp->getOpcode() == BO_Or && (L2 | L1) != L1)) { |
| 962 | if (BuildOpts.Observer) |
| 963 | BuildOpts.Observer->compareBitwiseEquality(B, |
| 964 | B->getOpcode() != BO_EQ); |
| 965 | TryResult(B->getOpcode() != BO_EQ); |
| 966 | } |
| 967 | } else if (BoolExpr->isKnownToHaveBooleanValue()) { |
| 968 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 969 | if ((IntValue == 1) || (IntValue == 0)) { |
| 970 | return TryResult(); |
| 971 | } |
| 972 | return TryResult(B->getOpcode() != BO_EQ); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 973 | } |
| 974 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 975 | return TryResult(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 976 | } |
| 977 | |
| 978 | TryResult analyzeLogicOperatorCondition(BinaryOperatorKind Relation, |
| 979 | const llvm::APSInt &Value1, |
| 980 | const llvm::APSInt &Value2) { |
| 981 | assert(Value1.isSigned() == Value2.isSigned()); |
| 982 | switch (Relation) { |
| 983 | default: |
| 984 | return TryResult(); |
| 985 | case BO_EQ: |
| 986 | return TryResult(Value1 == Value2); |
| 987 | case BO_NE: |
| 988 | return TryResult(Value1 != Value2); |
| 989 | case BO_LT: |
| 990 | return TryResult(Value1 < Value2); |
| 991 | case BO_LE: |
| 992 | return TryResult(Value1 <= Value2); |
| 993 | case BO_GT: |
| 994 | return TryResult(Value1 > Value2); |
| 995 | case BO_GE: |
| 996 | return TryResult(Value1 >= Value2); |
| 997 | } |
| 998 | } |
| 999 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1000 | /// Find a pair of comparison expressions with or without parentheses |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1001 | /// with a shared variable and constants and a logical operator between them |
| 1002 | /// that always evaluates to either true or false. |
| 1003 | /// e.g. if (x != 3 || x != 4) |
| 1004 | TryResult checkIncorrectLogicOperator(const BinaryOperator *B) { |
| 1005 | assert(B->isLogicalOp()); |
| 1006 | const BinaryOperator *LHS = |
| 1007 | dyn_cast<BinaryOperator>(B->getLHS()->IgnoreParens()); |
| 1008 | const BinaryOperator *RHS = |
| 1009 | dyn_cast<BinaryOperator>(B->getRHS()->IgnoreParens()); |
| 1010 | if (!LHS || !RHS) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1011 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1012 | |
| 1013 | if (!LHS->isComparisonOp() || !RHS->isComparisonOp()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1014 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1015 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1016 | const DeclRefExpr *Decl1; |
| 1017 | const Expr *Expr1; |
| 1018 | BinaryOperatorKind BO1; |
| 1019 | std::tie(Decl1, BO1, Expr1) = tryNormalizeBinaryOperator(LHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1020 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1021 | if (!Decl1 || !Expr1) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1022 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1023 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1024 | const DeclRefExpr *Decl2; |
| 1025 | const Expr *Expr2; |
| 1026 | BinaryOperatorKind BO2; |
| 1027 | std::tie(Decl2, BO2, Expr2) = tryNormalizeBinaryOperator(RHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1028 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1029 | if (!Decl2 || !Expr2) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1030 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1031 | |
| 1032 | // Check that it is the same variable on both sides. |
| 1033 | if (Decl1->getDecl() != Decl2->getDecl()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1034 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1035 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1036 | // Make sure the user's intent is clear (e.g. they're comparing against two |
| 1037 | // int literals, or two things from the same enum) |
| 1038 | if (!areExprTypesCompatible(Expr1, Expr2)) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1039 | return {}; |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1040 | |
Fangrui Song | 407659a | 2018-11-30 23:41:18 +0000 | [diff] [blame] | 1041 | Expr::EvalResult L1Result, L2Result; |
| 1042 | if (!Expr1->EvaluateAsInt(L1Result, *Context) || |
| 1043 | !Expr2->EvaluateAsInt(L2Result, *Context)) |
Fangrui Song | f5d3335 | 2018-11-30 21:26:09 +0000 | [diff] [blame] | 1044 | return {}; |
Hans Wennborg | 48ee4ad | 2018-11-28 14:04:12 +0000 | [diff] [blame] | 1045 | |
Fangrui Song | 407659a | 2018-11-30 23:41:18 +0000 | [diff] [blame] | 1046 | llvm::APSInt L1 = L1Result.Val.getInt(); |
| 1047 | llvm::APSInt L2 = L2Result.Val.getInt(); |
| 1048 | |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1049 | // Can't compare signed with unsigned or with different bit width. |
| 1050 | if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1051 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1052 | |
| 1053 | // Values that will be used to determine if result of logical |
| 1054 | // operator is always true/false |
| 1055 | const llvm::APSInt Values[] = { |
| 1056 | // Value less than both Value1 and Value2 |
| 1057 | llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()), |
| 1058 | // L1 |
| 1059 | L1, |
| 1060 | // Value between Value1 and Value2 |
| 1061 | ((L1 < L2) ? L1 : L2) + llvm::APSInt(llvm::APInt(L1.getBitWidth(), 1), |
| 1062 | L1.isUnsigned()), |
| 1063 | // L2 |
| 1064 | L2, |
| 1065 | // Value greater than both Value1 and Value2 |
| 1066 | llvm::APSInt::getMaxValue(L1.getBitWidth(), L1.isUnsigned()), |
| 1067 | }; |
| 1068 | |
| 1069 | // Check whether expression is always true/false by evaluating the following |
| 1070 | // * variable x is less than the smallest literal. |
| 1071 | // * variable x is equal to the smallest literal. |
| 1072 | // * Variable x is between smallest and largest literal. |
| 1073 | // * Variable x is equal to the largest literal. |
| 1074 | // * Variable x is greater than largest literal. |
| 1075 | bool AlwaysTrue = true, AlwaysFalse = true; |
Benjamin Kramer | 2e018ef | 2016-05-27 13:36:58 +0000 | [diff] [blame] | 1076 | for (const llvm::APSInt &Value : Values) { |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1077 | TryResult Res1, Res2; |
| 1078 | Res1 = analyzeLogicOperatorCondition(BO1, Value, L1); |
| 1079 | Res2 = analyzeLogicOperatorCondition(BO2, Value, L2); |
| 1080 | |
| 1081 | if (!Res1.isKnown() || !Res2.isKnown()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1082 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1083 | |
| 1084 | if (B->getOpcode() == BO_LAnd) { |
| 1085 | AlwaysTrue &= (Res1.isTrue() && Res2.isTrue()); |
| 1086 | AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue()); |
| 1087 | } else { |
| 1088 | AlwaysTrue &= (Res1.isTrue() || Res2.isTrue()); |
| 1089 | AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue()); |
| 1090 | } |
| 1091 | } |
| 1092 | |
| 1093 | if (AlwaysTrue || AlwaysFalse) { |
| 1094 | if (BuildOpts.Observer) |
| 1095 | BuildOpts.Observer->compareAlwaysTrue(B, AlwaysTrue); |
| 1096 | return TryResult(AlwaysTrue); |
| 1097 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1098 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1099 | } |
| 1100 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 1101 | /// Try and evaluate an expression to an integer constant. |
| 1102 | bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) { |
| 1103 | if (!BuildOpts.PruneTriviallyFalseEdges) |
| 1104 | return false; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1105 | return !S->isTypeDependent() && |
Ted Kremenek | 352a708 | 2011-04-04 20:30:58 +0000 | [diff] [blame] | 1106 | !S->isValueDependent() && |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 1107 | S->EvaluateAsRValue(outResult, *Context); |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 1108 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1109 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1110 | /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1 |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1111 | /// if we can evaluate to a known value, otherwise return -1. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1112 | TryResult tryEvaluateBool(Expr *S) { |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 1113 | if (!BuildOpts.PruneTriviallyFalseEdges || |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1114 | S->isTypeDependent() || S->isValueDependent()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1115 | return {}; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1116 | |
| 1117 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) { |
| 1118 | if (Bop->isLogicalOp()) { |
| 1119 | // Check the cache first. |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 1120 | CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S); |
| 1121 | if (I != CachedBoolEvals.end()) |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1122 | return I->second; // already in map; |
NAKAMURA Takumi | f0434b0 | 2012-03-25 06:30:32 +0000 | [diff] [blame] | 1123 | |
| 1124 | // Retrieve result at first, or the map might be updated. |
| 1125 | TryResult Result = evaluateAsBooleanConditionNoCache(S); |
| 1126 | CachedBoolEvals[S] = Result; // update or insert |
| 1127 | return Result; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1128 | } |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1129 | else { |
| 1130 | switch (Bop->getOpcode()) { |
| 1131 | default: break; |
| 1132 | // For 'x & 0' and 'x * 0', we can determine that |
| 1133 | // the value is always false. |
| 1134 | case BO_Mul: |
| 1135 | case BO_And: { |
| 1136 | // If either operand is zero, we know the value |
| 1137 | // must be false. |
Fangrui Song | 407659a | 2018-11-30 23:41:18 +0000 | [diff] [blame] | 1138 | Expr::EvalResult LHSResult; |
| 1139 | if (Bop->getLHS()->EvaluateAsInt(LHSResult, *Context)) { |
| 1140 | llvm::APSInt IntVal = LHSResult.Val.getInt(); |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1141 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1142 | return TryResult(false); |
| 1143 | } |
| 1144 | } |
Fangrui Song | 407659a | 2018-11-30 23:41:18 +0000 | [diff] [blame] | 1145 | Expr::EvalResult RHSResult; |
| 1146 | if (Bop->getRHS()->EvaluateAsInt(RHSResult, *Context)) { |
| 1147 | llvm::APSInt IntVal = RHSResult.Val.getInt(); |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1148 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1149 | return TryResult(false); |
| 1150 | } |
| 1151 | } |
| 1152 | } |
| 1153 | break; |
| 1154 | } |
| 1155 | } |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1156 | } |
| 1157 | |
| 1158 | return evaluateAsBooleanConditionNoCache(S); |
| 1159 | } |
| 1160 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1161 | /// Evaluate as boolean \param E without using the cache. |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1162 | TryResult evaluateAsBooleanConditionNoCache(Expr *E) { |
| 1163 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) { |
| 1164 | if (Bop->isLogicalOp()) { |
| 1165 | TryResult LHS = tryEvaluateBool(Bop->getLHS()); |
| 1166 | if (LHS.isKnown()) { |
| 1167 | // We were able to evaluate the LHS, see if we can get away with not |
| 1168 | // evaluating the RHS: 0 && X -> 0, 1 || X -> 1 |
| 1169 | if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1170 | return LHS.isTrue(); |
| 1171 | |
| 1172 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1173 | if (RHS.isKnown()) { |
| 1174 | if (Bop->getOpcode() == BO_LOr) |
| 1175 | return LHS.isTrue() || RHS.isTrue(); |
| 1176 | else |
| 1177 | return LHS.isTrue() && RHS.isTrue(); |
| 1178 | } |
| 1179 | } else { |
| 1180 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1181 | if (RHS.isKnown()) { |
| 1182 | // We can't evaluate the LHS; however, sometimes the result |
| 1183 | // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. |
| 1184 | if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1185 | return RHS.isTrue(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1186 | } else { |
| 1187 | TryResult BopRes = checkIncorrectLogicOperator(Bop); |
| 1188 | if (BopRes.isKnown()) |
| 1189 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1190 | } |
| 1191 | } |
| 1192 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1193 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1194 | } else if (Bop->isEqualityOp()) { |
| 1195 | TryResult BopRes = checkIncorrectEqualityOperator(Bop); |
| 1196 | if (BopRes.isKnown()) |
| 1197 | return BopRes.isTrue(); |
| 1198 | } else if (Bop->isRelationalOp()) { |
| 1199 | TryResult BopRes = checkIncorrectRelationalOperator(Bop); |
| 1200 | if (BopRes.isKnown()) |
| 1201 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1202 | } |
| 1203 | } |
| 1204 | |
| 1205 | bool Result; |
| 1206 | if (E->EvaluateAsBooleanCondition(Result, *Context)) |
| 1207 | return Result; |
| 1208 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1209 | return {}; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1210 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1211 | |
| 1212 | bool hasTrivialDestructor(VarDecl *VD); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1213 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1214 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1215 | } // namespace |
| 1216 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1217 | inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder, |
| 1218 | const Stmt *stmt) const { |
| 1219 | return builder.alwaysAdd(stmt) || kind == AlwaysAdd; |
| 1220 | } |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1221 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1222 | bool CFGBuilder::alwaysAdd(const Stmt *stmt) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1223 | bool shouldAdd = BuildOpts.alwaysAdd(stmt); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1224 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1225 | if (!BuildOpts.forcedBlkExprs) |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1226 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1227 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1228 | if (lastLookup == stmt) { |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1229 | if (cachedEntry) { |
| 1230 | assert(cachedEntry->first == stmt); |
| 1231 | return true; |
| 1232 | } |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1233 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1234 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1235 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1236 | lastLookup = stmt; |
| 1237 | |
| 1238 | // Perform the lookup! |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1239 | CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs; |
| 1240 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1241 | if (!fb) { |
| 1242 | // No need to update 'cachedEntry', since it will always be null. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1243 | assert(!cachedEntry); |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1244 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1245 | } |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1246 | |
| 1247 | CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt); |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1248 | if (itr == fb->end()) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1249 | cachedEntry = nullptr; |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1250 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1251 | } |
| 1252 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1253 | cachedEntry = &*itr; |
| 1254 | return true; |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1255 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1256 | |
Douglas Gregor | 4619e43 | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1257 | // FIXME: Add support for dependent-sized array types in C++? |
| 1258 | // 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] | 1259 | static const VariableArrayType *FindVA(const Type *t) { |
| 1260 | while (const ArrayType *vt = dyn_cast<ArrayType>(t)) { |
| 1261 | if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt)) |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1262 | if (vat->getSizeExpr()) |
| 1263 | return vat; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1264 | |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1265 | t = vt->getElementType().getTypePtr(); |
| 1266 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1267 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1268 | return nullptr; |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1269 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1270 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1271 | void CFGBuilder::consumeConstructionContext( |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1272 | const ConstructionContextLayer *Layer, Expr *E) { |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 1273 | assert((isa<CXXConstructExpr>(E) || isa<CallExpr>(E) || |
| 1274 | isa<ObjCMessageExpr>(E)) && "Expression cannot construct an object!"); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1275 | if (const ConstructionContextLayer *PreviouslyStoredLayer = |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1276 | ConstructionContextMap.lookup(E)) { |
George Burgess IV | a47e1b7 | 2018-03-06 07:45:11 +0000 | [diff] [blame] | 1277 | (void)PreviouslyStoredLayer; |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1278 | // We might have visited this child when we were finding construction |
| 1279 | // contexts within its parents. |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1280 | assert(PreviouslyStoredLayer->isStrictlyMoreSpecificThan(Layer) && |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1281 | "Already within a different construction context!"); |
| 1282 | } else { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1283 | ConstructionContextMap[E] = Layer; |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1284 | } |
| 1285 | } |
| 1286 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1287 | void CFGBuilder::findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1288 | const ConstructionContextLayer *Layer, Stmt *Child) { |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1289 | if (!BuildOpts.AddRichCXXConstructors) |
| 1290 | return; |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1291 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1292 | if (!Child) |
| 1293 | return; |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1294 | |
Artem Dergachev | 1f8cb3a | 2018-07-31 21:12:42 +0000 | [diff] [blame] | 1295 | auto withExtraLayer = [this, Layer](const ConstructionContextItem &Item) { |
| 1296 | return ConstructionContextLayer::create(cfg->getBumpVectorContext(), Item, |
| 1297 | Layer); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1298 | }; |
| 1299 | |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1300 | switch(Child->getStmtClass()) { |
| 1301 | case Stmt::CXXConstructExprClass: |
| 1302 | case Stmt::CXXTemporaryObjectExprClass: { |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1303 | // Support pre-C++17 copy elision AST. |
| 1304 | auto *CE = cast<CXXConstructExpr>(Child); |
| 1305 | if (BuildOpts.MarkElidedCXXConstructors && CE->isElidable()) { |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1306 | findConstructionContexts(withExtraLayer(CE), CE->getArg(0)); |
| 1307 | } |
| 1308 | |
| 1309 | consumeConstructionContext(Layer, CE); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1310 | break; |
| 1311 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1312 | // FIXME: This, like the main visit, doesn't support CUDAKernelCallExpr. |
| 1313 | // FIXME: An isa<> would look much better but this whole switch is a |
| 1314 | // workaround for an internal compiler error in MSVC 2015 (see r326021). |
| 1315 | case Stmt::CallExprClass: |
| 1316 | case Stmt::CXXMemberCallExprClass: |
| 1317 | case Stmt::CXXOperatorCallExprClass: |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 1318 | case Stmt::UserDefinedLiteralClass: |
| 1319 | case Stmt::ObjCMessageExprClass: { |
| 1320 | auto *E = cast<Expr>(Child); |
| 1321 | if (CFGCXXRecordTypedCall::isCXXRecordTypedCall(E)) |
| 1322 | consumeConstructionContext(Layer, E); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1323 | break; |
| 1324 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1325 | case Stmt::ExprWithCleanupsClass: { |
| 1326 | auto *Cleanups = cast<ExprWithCleanups>(Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1327 | findConstructionContexts(Layer, Cleanups->getSubExpr()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1328 | break; |
| 1329 | } |
| 1330 | case Stmt::CXXFunctionalCastExprClass: { |
| 1331 | auto *Cast = cast<CXXFunctionalCastExpr>(Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1332 | findConstructionContexts(Layer, Cast->getSubExpr()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1333 | break; |
| 1334 | } |
| 1335 | case Stmt::ImplicitCastExprClass: { |
| 1336 | auto *Cast = cast<ImplicitCastExpr>(Child); |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 1337 | // Should we support other implicit cast kinds? |
Artem Dergachev | 13f9664 | 2018-03-09 01:39:59 +0000 | [diff] [blame] | 1338 | switch (Cast->getCastKind()) { |
| 1339 | case CK_NoOp: |
| 1340 | case CK_ConstructorConversion: |
Artem Dergachev | 6603052 | 2018-03-01 01:09:24 +0000 | [diff] [blame] | 1341 | findConstructionContexts(Layer, Cast->getSubExpr()); |
Reid Kleckner | 4dc0b1a | 2018-11-01 19:54:45 +0000 | [diff] [blame] | 1342 | break; |
Artem Dergachev | 13f9664 | 2018-03-09 01:39:59 +0000 | [diff] [blame] | 1343 | default: |
| 1344 | break; |
| 1345 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1346 | break; |
| 1347 | } |
| 1348 | case Stmt::CXXBindTemporaryExprClass: { |
| 1349 | auto *BTE = cast<CXXBindTemporaryExpr>(Child); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1350 | findConstructionContexts(withExtraLayer(BTE), BTE->getSubExpr()); |
| 1351 | break; |
| 1352 | } |
| 1353 | case Stmt::MaterializeTemporaryExprClass: { |
| 1354 | // Normally we don't want to search in MaterializeTemporaryExpr because |
| 1355 | // it indicates the beginning of a temporary object construction context, |
| 1356 | // so it shouldn't be found in the middle. However, if it is the beginning |
| 1357 | // of an elidable copy or move construction context, we need to include it. |
Artem Dergachev | 1f8cb3a | 2018-07-31 21:12:42 +0000 | [diff] [blame] | 1358 | if (Layer->getItem().getKind() == |
| 1359 | ConstructionContextItem::ElidableConstructorKind) { |
| 1360 | auto *MTE = cast<MaterializeTemporaryExpr>(Child); |
| 1361 | findConstructionContexts(withExtraLayer(MTE), MTE->GetTemporaryExpr()); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1362 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1363 | break; |
| 1364 | } |
| 1365 | case Stmt::ConditionalOperatorClass: { |
| 1366 | auto *CO = cast<ConditionalOperator>(Child); |
Artem Dergachev | 1f8cb3a | 2018-07-31 21:12:42 +0000 | [diff] [blame] | 1367 | if (Layer->getItem().getKind() != |
| 1368 | ConstructionContextItem::MaterializationKind) { |
Artem Dergachev | 9d3a7d8 | 2018-03-30 19:21:18 +0000 | [diff] [blame] | 1369 | // If the object returned by the conditional operator is not going to be a |
| 1370 | // temporary object that needs to be immediately materialized, then |
| 1371 | // it must be C++17 with its mandatory copy elision. Do not yet promise |
| 1372 | // to support this case. |
| 1373 | assert(!CO->getType()->getAsCXXRecordDecl() || CO->isGLValue() || |
| 1374 | Context->getLangOpts().CPlusPlus17); |
| 1375 | break; |
| 1376 | } |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1377 | findConstructionContexts(Layer, CO->getLHS()); |
| 1378 | findConstructionContexts(Layer, CO->getRHS()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1379 | break; |
| 1380 | } |
| 1381 | default: |
| 1382 | break; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1383 | } |
| 1384 | } |
| 1385 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1386 | void CFGBuilder::cleanupConstructionContext(Expr *E) { |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1387 | assert(BuildOpts.AddRichCXXConstructors && |
| 1388 | "We should not be managing construction contexts!"); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1389 | assert(ConstructionContextMap.count(E) && |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1390 | "Cannot exit construction context without the context!"); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1391 | ConstructionContextMap.erase(E); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1392 | } |
| 1393 | |
| 1394 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1395 | /// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an |
| 1396 | /// arbitrary statement. Examples include a single expression or a function |
| 1397 | /// body (compound statement). The ownership of the returned CFG is |
| 1398 | /// transferred to the caller. If CFG construction fails, this method returns |
| 1399 | /// NULL. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1400 | std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) { |
Ted Kremenek | 8aed490 | 2009-10-20 23:46:25 +0000 | [diff] [blame] | 1401 | assert(cfg.get()); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1402 | if (!Statement) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1403 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1404 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1405 | // Create an empty block that will serve as the exit block for the CFG. Since |
| 1406 | // this is the first block added to the CFG, it will be implicitly registered |
| 1407 | // as the exit block. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1408 | Succ = createBlock(); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 1409 | assert(Succ == &cfg->getExit()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1410 | Block = nullptr; // the EXIT block is empty. Create all other blocks lazily. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1411 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1412 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1413 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
| 1414 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1415 | if (BuildOpts.AddImplicitDtors) |
| 1416 | if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D)) |
| 1417 | addImplicitDtorsForDestructor(DD); |
| 1418 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1419 | // Visit the statements and create the CFG. |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1420 | CFGBlock *B = addStmt(Statement); |
| 1421 | |
| 1422 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1423 | return nullptr; |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1424 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1425 | // For C++ constructor add initializers to CFG. |
| 1426 | if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) { |
Pete Cooper | 57d3f14 | 2015-07-30 17:22:52 +0000 | [diff] [blame] | 1427 | for (auto *I : llvm::reverse(CD->inits())) { |
| 1428 | B = addInitializer(I); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1429 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1430 | return nullptr; |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1431 | } |
| 1432 | } |
| 1433 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1434 | if (B) |
| 1435 | Succ = B; |
Mike Stump | 6bf1c08 | 2010-01-21 02:21:40 +0000 | [diff] [blame] | 1436 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1437 | // Backpatch the gotos whose label -> block mappings we didn't know when we |
| 1438 | // encountered them. |
| 1439 | for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(), |
| 1440 | E = BackpatchBlocks.end(); I != E; ++I ) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1441 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1442 | CFGBlock *B = I->block; |
Rafael Espindola | 210de57 | 2013-03-27 15:37:54 +0000 | [diff] [blame] | 1443 | const GotoStmt *G = cast<GotoStmt>(B->getTerminator()); |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1444 | LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1445 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1446 | // If there is no target for the goto, then we are looking at an |
| 1447 | // incomplete AST. Handle this by not registering a successor. |
| 1448 | if (LI == LabelMap.end()) continue; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1449 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 1450 | JumpTarget JT = LI->second; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1451 | prependAutomaticObjLifetimeWithTerminator(B, I->scopePosition, |
| 1452 | JT.scopePosition); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1453 | prependAutomaticObjDtorsWithTerminator(B, I->scopePosition, |
| 1454 | JT.scopePosition); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1455 | const VarDecl *VD = prependAutomaticObjScopeEndWithTerminator( |
| 1456 | B, I->scopePosition, JT.scopePosition); |
| 1457 | appendScopeBegin(JT.block, VD, G); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1458 | addSuccessor(B, JT.block); |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1459 | } |
| 1460 | |
| 1461 | // Add successors to the Indirect Goto Dispatch block (if we have one). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1462 | if (CFGBlock *B = cfg->getIndirectGotoBlock()) |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1463 | for (LabelSetTy::iterator I = AddressTakenLabels.begin(), |
| 1464 | E = AddressTakenLabels.end(); I != E; ++I ) { |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1465 | // Lookup the target block. |
| 1466 | LabelMapTy::iterator LI = LabelMap.find(*I); |
| 1467 | |
| 1468 | // If there is no target block that contains label, then we are looking |
| 1469 | // at an incomplete AST. Handle this by not registering a successor. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1470 | if (LI == LabelMap.end()) continue; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1471 | |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1472 | addSuccessor(B, LI->second.block); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 1473 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1474 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1475 | // Create an empty entry block that has no predecessors. |
Ted Kremenek | 5c50fd1 | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 1476 | cfg->setEntry(createBlock()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1477 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1478 | if (BuildOpts.AddRichCXXConstructors) |
| 1479 | assert(ConstructionContextMap.empty() && |
| 1480 | "Not all construction contexts were cleaned up!"); |
| 1481 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1482 | return std::move(cfg); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1483 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1484 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1485 | /// createBlock - Used to lazily create blocks that are connected |
| 1486 | /// to the current (global) succcessor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1487 | CFGBlock *CFGBuilder::createBlock(bool add_successor) { |
| 1488 | CFGBlock *B = cfg->createBlock(); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1489 | if (add_successor && Succ) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1490 | addSuccessor(B, Succ); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1491 | return B; |
| 1492 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1493 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1494 | /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the |
| 1495 | /// CFG. It is *not* connected to the current (global) successor, and instead |
| 1496 | /// directly tied to the exit block in order to be reachable. |
| 1497 | CFGBlock *CFGBuilder::createNoReturnBlock() { |
| 1498 | CFGBlock *B = createBlock(false); |
Chandler Carruth | 75d7823 | 2011-09-13 09:53:55 +0000 | [diff] [blame] | 1499 | B->setHasNoReturnElement(); |
Ted Kremenek | f353919 | 2014-02-27 00:24:05 +0000 | [diff] [blame] | 1500 | addSuccessor(B, &cfg->getExit(), Succ); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1501 | return B; |
| 1502 | } |
| 1503 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1504 | /// addInitializer - Add C++ base or member initializer element to CFG. |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1505 | CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1506 | if (!BuildOpts.AddInitializers) |
| 1507 | return Block; |
| 1508 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1509 | bool HasTemporaries = false; |
| 1510 | |
| 1511 | // Destructors of temporaries in initialization expression should be called |
| 1512 | // after initialization finishes. |
| 1513 | Expr *Init = I->getInit(); |
| 1514 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1515 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1516 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 1517 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1518 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 1519 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 1520 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
| 1521 | /*BindToTemporary=*/false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1522 | } |
| 1523 | } |
| 1524 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1525 | autoCreateBlock(); |
| 1526 | appendInitializer(Block, I); |
| 1527 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1528 | if (Init) { |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1529 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1530 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), I), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1531 | Init); |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 1532 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1533 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1534 | // For expression with temporaries go directly to subexpression to omit |
| 1535 | // generating destructors for the second time. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1536 | return Visit(cast<ExprWithCleanups>(Init)->getSubExpr()); |
| 1537 | } |
Enrico Pertoso | faed801 | 2015-06-03 10:12:40 +0000 | [diff] [blame] | 1538 | if (BuildOpts.AddCXXDefaultInitExprInCtors) { |
| 1539 | if (CXXDefaultInitExpr *Default = dyn_cast<CXXDefaultInitExpr>(Init)) { |
| 1540 | // In general, appending the expression wrapped by a CXXDefaultInitExpr |
| 1541 | // may cause the same Expr to appear more than once in the CFG. Doing it |
| 1542 | // here is safe because there's only one initializer per field. |
| 1543 | autoCreateBlock(); |
| 1544 | appendStmt(Block, Default); |
| 1545 | if (Stmt *Child = Default->getExpr()) |
| 1546 | if (CFGBlock *R = Visit(Child)) |
| 1547 | Block = R; |
| 1548 | return Block; |
| 1549 | } |
| 1550 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1551 | return Visit(Init); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1552 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1553 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1554 | return Block; |
| 1555 | } |
| 1556 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1557 | /// Retrieve the type of the temporary object whose lifetime was |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1558 | /// extended by a local reference with the given initializer. |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1559 | static QualType getReferenceInitTemporaryType(const Expr *Init, |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1560 | bool *FoundMTE = nullptr) { |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1561 | while (true) { |
| 1562 | // Skip parentheses. |
| 1563 | Init = Init->IgnoreParens(); |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1564 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1565 | // Skip through cleanups. |
| 1566 | if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) { |
| 1567 | Init = EWC->getSubExpr(); |
| 1568 | continue; |
| 1569 | } |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1570 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1571 | // Skip through the temporary-materialization expression. |
| 1572 | if (const MaterializeTemporaryExpr *MTE |
| 1573 | = dyn_cast<MaterializeTemporaryExpr>(Init)) { |
| 1574 | Init = MTE->GetTemporaryExpr(); |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1575 | if (FoundMTE) |
| 1576 | *FoundMTE = true; |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1577 | continue; |
| 1578 | } |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1579 | |
| 1580 | // Skip sub-object accesses into rvalues. |
| 1581 | SmallVector<const Expr *, 2> CommaLHSs; |
| 1582 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 1583 | const Expr *SkippedInit = |
| 1584 | Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments); |
| 1585 | if (SkippedInit != Init) { |
| 1586 | Init = SkippedInit; |
| 1587 | continue; |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1588 | } |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1589 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1590 | break; |
| 1591 | } |
| 1592 | |
| 1593 | return Init->getType(); |
| 1594 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1595 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 1596 | // TODO: Support adding LoopExit element to the CFG in case where the loop is |
| 1597 | // ended by ReturnStmt, GotoStmt or ThrowExpr. |
| 1598 | void CFGBuilder::addLoopExit(const Stmt *LoopStmt){ |
| 1599 | if(!BuildOpts.AddLoopExit) |
| 1600 | return; |
| 1601 | autoCreateBlock(); |
| 1602 | appendLoopExit(Block, LoopStmt); |
| 1603 | } |
| 1604 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1605 | void CFGBuilder::getDeclsWithEndedScope(LocalScope::const_iterator B, |
| 1606 | LocalScope::const_iterator E, Stmt *S) { |
| 1607 | if (!BuildOpts.AddScopes) |
| 1608 | return; |
| 1609 | |
| 1610 | if (B == E) |
| 1611 | return; |
| 1612 | |
| 1613 | // To go from B to E, one first goes up the scopes from B to P |
| 1614 | // then sideways in one scope from P to P' and then down |
| 1615 | // the scopes from P' to E. |
| 1616 | // The lifetime of all objects between B and P end. |
| 1617 | LocalScope::const_iterator P = B.shared_parent(E); |
| 1618 | int Dist = B.distance(P); |
| 1619 | if (Dist <= 0) |
| 1620 | return; |
| 1621 | |
| 1622 | for (LocalScope::const_iterator I = B; I != P; ++I) |
| 1623 | if (I.pointsToFirstDeclaredVar()) |
| 1624 | DeclsWithEndedScope.insert(*I); |
| 1625 | } |
| 1626 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1627 | void CFGBuilder::addAutomaticObjHandling(LocalScope::const_iterator B, |
| 1628 | LocalScope::const_iterator E, |
| 1629 | Stmt *S) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1630 | getDeclsWithEndedScope(B, E, S); |
| 1631 | if (BuildOpts.AddScopes) |
| 1632 | addScopesEnd(B, E, S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1633 | if (BuildOpts.AddImplicitDtors) |
| 1634 | addAutomaticObjDtors(B, E, S); |
| 1635 | if (BuildOpts.AddLifetime) |
| 1636 | addLifetimeEnds(B, E, S); |
| 1637 | } |
| 1638 | |
| 1639 | /// Add to current block automatic objects that leave the scope. |
| 1640 | void CFGBuilder::addLifetimeEnds(LocalScope::const_iterator B, |
| 1641 | LocalScope::const_iterator E, Stmt *S) { |
| 1642 | if (!BuildOpts.AddLifetime) |
| 1643 | return; |
| 1644 | |
| 1645 | if (B == E) |
| 1646 | return; |
| 1647 | |
| 1648 | // To go from B to E, one first goes up the scopes from B to P |
| 1649 | // then sideways in one scope from P to P' and then down |
| 1650 | // the scopes from P' to E. |
| 1651 | // The lifetime of all objects between B and P end. |
| 1652 | LocalScope::const_iterator P = B.shared_parent(E); |
| 1653 | int dist = B.distance(P); |
| 1654 | if (dist <= 0) |
| 1655 | return; |
| 1656 | |
| 1657 | // We need to perform the scope leaving in reverse order |
| 1658 | SmallVector<VarDecl *, 10> DeclsTrivial; |
| 1659 | SmallVector<VarDecl *, 10> DeclsNonTrivial; |
| 1660 | DeclsTrivial.reserve(dist); |
| 1661 | DeclsNonTrivial.reserve(dist); |
| 1662 | |
| 1663 | for (LocalScope::const_iterator I = B; I != P; ++I) |
| 1664 | if (hasTrivialDestructor(*I)) |
| 1665 | DeclsTrivial.push_back(*I); |
| 1666 | else |
| 1667 | DeclsNonTrivial.push_back(*I); |
| 1668 | |
| 1669 | autoCreateBlock(); |
| 1670 | // object with trivial destructor end their lifetime last (when storage |
| 1671 | // duration ends) |
| 1672 | for (SmallVectorImpl<VarDecl *>::reverse_iterator I = DeclsTrivial.rbegin(), |
| 1673 | E = DeclsTrivial.rend(); |
| 1674 | I != E; ++I) |
| 1675 | appendLifetimeEnds(Block, *I, S); |
| 1676 | |
| 1677 | for (SmallVectorImpl<VarDecl *>::reverse_iterator |
| 1678 | I = DeclsNonTrivial.rbegin(), |
| 1679 | E = DeclsNonTrivial.rend(); |
| 1680 | I != E; ++I) |
| 1681 | appendLifetimeEnds(Block, *I, S); |
| 1682 | } |
| 1683 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1684 | /// Add to current block markers for ending scopes. |
| 1685 | void CFGBuilder::addScopesEnd(LocalScope::const_iterator B, |
| 1686 | LocalScope::const_iterator E, Stmt *S) { |
| 1687 | // If implicit destructors are enabled, we'll add scope ends in |
| 1688 | // addAutomaticObjDtors. |
| 1689 | if (BuildOpts.AddImplicitDtors) |
| 1690 | return; |
| 1691 | |
| 1692 | autoCreateBlock(); |
| 1693 | |
| 1694 | for (auto I = DeclsWithEndedScope.rbegin(), E = DeclsWithEndedScope.rend(); |
| 1695 | I != E; ++I) |
| 1696 | appendScopeEnd(Block, *I, S); |
| 1697 | |
| 1698 | return; |
| 1699 | } |
| 1700 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1701 | /// addAutomaticObjDtors - Add to current block automatic objects destructors |
| 1702 | /// for objects in range of local scope positions. Use S as trigger statement |
| 1703 | /// for destructors. |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1704 | void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1705 | LocalScope::const_iterator E, Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1706 | if (!BuildOpts.AddImplicitDtors) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1707 | return; |
| 1708 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1709 | if (B == E) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1710 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1711 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1712 | // We need to append the destructors in reverse order, but any one of them |
| 1713 | // may be a no-return destructor which changes the CFG. As a result, buffer |
| 1714 | // this sequence up and replay them in reverse order when appending onto the |
| 1715 | // CFGBlock(s). |
| 1716 | SmallVector<VarDecl*, 10> Decls; |
| 1717 | Decls.reserve(B.distance(E)); |
| 1718 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1719 | Decls.push_back(*I); |
| 1720 | |
| 1721 | for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(), |
| 1722 | E = Decls.rend(); |
| 1723 | I != E; ++I) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1724 | if (hasTrivialDestructor(*I)) { |
| 1725 | // If AddScopes is enabled and *I is a first variable in a scope, add a |
| 1726 | // ScopeEnd marker in a Block. |
| 1727 | if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) { |
| 1728 | autoCreateBlock(); |
| 1729 | appendScopeEnd(Block, *I, S); |
| 1730 | } |
| 1731 | continue; |
| 1732 | } |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1733 | // If this destructor is marked as a no-return destructor, we need to |
| 1734 | // create a new block for the destructor which does not have as a successor |
| 1735 | // anything built thus far: control won't flow out of this block. |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1736 | QualType Ty = (*I)->getType(); |
| 1737 | if (Ty->isReferenceType()) { |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1738 | Ty = getReferenceInitTemporaryType((*I)->getInit()); |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1739 | } |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1740 | Ty = Context->getBaseElementType(Ty); |
| 1741 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 1742 | if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn()) |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1743 | Block = createNoReturnBlock(); |
| 1744 | else |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1745 | autoCreateBlock(); |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1746 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1747 | // Add ScopeEnd just after automatic obj destructor. |
| 1748 | if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) |
| 1749 | appendScopeEnd(Block, *I, S); |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1750 | appendAutomaticObjDtor(Block, *I, S); |
| 1751 | } |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1752 | } |
| 1753 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1754 | /// addImplicitDtorsForDestructor - Add implicit destructors generated for |
| 1755 | /// base and member objects in destructor. |
| 1756 | void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1757 | assert(BuildOpts.AddImplicitDtors && |
| 1758 | "Can be called only when dtors should be added"); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1759 | const CXXRecordDecl *RD = DD->getParent(); |
| 1760 | |
| 1761 | // At the end destroy virtual base objects. |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1762 | for (const auto &VI : RD->vbases()) { |
| 1763 | const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1764 | if (!CD->hasTrivialDestructor()) { |
| 1765 | autoCreateBlock(); |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1766 | appendBaseDtor(Block, &VI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1767 | } |
| 1768 | } |
| 1769 | |
| 1770 | // Before virtual bases destroy direct base objects. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1771 | for (const auto &BI : RD->bases()) { |
| 1772 | if (!BI.isVirtual()) { |
| 1773 | const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl(); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1774 | if (!CD->hasTrivialDestructor()) { |
| 1775 | autoCreateBlock(); |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1776 | appendBaseDtor(Block, &BI); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1777 | } |
| 1778 | } |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1779 | } |
| 1780 | |
| 1781 | // First destroy member objects. |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1782 | for (auto *FI : RD->fields()) { |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 1783 | // Check for constant size array. Set type to array element type. |
| 1784 | QualType QT = FI->getType(); |
| 1785 | if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1786 | if (AT->getSize() == 0) |
| 1787 | continue; |
| 1788 | QT = AT->getElementType(); |
| 1789 | } |
| 1790 | |
| 1791 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1792 | if (!CD->hasTrivialDestructor()) { |
| 1793 | autoCreateBlock(); |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1794 | appendMemberDtor(Block, FI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1795 | } |
| 1796 | } |
| 1797 | } |
| 1798 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1799 | /// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either |
| 1800 | /// way return valid LocalScope object. |
| 1801 | LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) { |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 1802 | if (Scope) |
| 1803 | return Scope; |
| 1804 | llvm::BumpPtrAllocator &alloc = cfg->getAllocator(); |
| 1805 | return new (alloc.Allocate<LocalScope>()) |
| 1806 | LocalScope(BumpVectorContext(alloc), ScopePos); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1807 | } |
| 1808 | |
| 1809 | /// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1810 | /// that should create implicit scope (e.g. if/else substatements). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1811 | void CFGBuilder::addLocalScopeForStmt(Stmt *S) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1812 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1813 | !BuildOpts.AddScopes) |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1814 | return; |
| 1815 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1816 | LocalScope *Scope = nullptr; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1817 | |
| 1818 | // For compound statement we will be creating explicit scope. |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1819 | if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) { |
Aaron Ballman | c7e4e21 | 2014-03-17 14:19:37 +0000 | [diff] [blame] | 1820 | for (auto *BI : CS->body()) { |
| 1821 | Stmt *SI = BI->stripLabelLikeStatements(); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1822 | if (DeclStmt *DS = dyn_cast<DeclStmt>(SI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1823 | Scope = addLocalScopeForDeclStmt(DS, Scope); |
| 1824 | } |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1825 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1826 | } |
| 1827 | |
| 1828 | // For any other statement scope will be implicit and as such will be |
| 1829 | // interesting only for DeclStmt. |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 1830 | if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements())) |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1831 | addLocalScopeForDeclStmt(DS); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1832 | } |
| 1833 | |
| 1834 | /// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will |
| 1835 | /// reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1836 | LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1837 | LocalScope* Scope) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1838 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1839 | !BuildOpts.AddScopes) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1840 | return Scope; |
| 1841 | |
Aaron Ballman | 535bbcc | 2014-03-14 17:01:24 +0000 | [diff] [blame] | 1842 | for (auto *DI : DS->decls()) |
| 1843 | if (VarDecl *VD = dyn_cast<VarDecl>(DI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1844 | Scope = addLocalScopeForVarDecl(VD, Scope); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1845 | return Scope; |
| 1846 | } |
| 1847 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1848 | bool CFGBuilder::hasTrivialDestructor(VarDecl *VD) { |
| 1849 | // Check for const references bound to temporary. Set type to pointee. |
| 1850 | QualType QT = VD->getType(); |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1851 | if (QT->isReferenceType()) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1852 | // Attempt to determine whether this declaration lifetime-extends a |
| 1853 | // temporary. |
| 1854 | // |
| 1855 | // FIXME: This is incorrect. Non-reference declarations can lifetime-extend |
| 1856 | // temporaries, and a single declaration can extend multiple temporaries. |
| 1857 | // We should look at the storage duration on each nested |
| 1858 | // MaterializeTemporaryExpr instead. |
| 1859 | |
| 1860 | const Expr *Init = VD->getInit(); |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1861 | if (!Init) { |
| 1862 | // Probably an exception catch-by-reference variable. |
| 1863 | // FIXME: It doesn't really mean that the object has a trivial destructor. |
| 1864 | // Also are there other cases? |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1865 | return true; |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1866 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1867 | |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1868 | // Lifetime-extending a temporary? |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1869 | bool FoundMTE = false; |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1870 | QT = getReferenceInitTemporaryType(Init, &FoundMTE); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1871 | if (!FoundMTE) |
| 1872 | return true; |
| 1873 | } |
| 1874 | |
| 1875 | // Check for constant size array. Set type to array element type. |
| 1876 | while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1877 | if (AT->getSize() == 0) |
| 1878 | return true; |
| 1879 | QT = AT->getElementType(); |
| 1880 | } |
| 1881 | |
| 1882 | // Check if type is a C++ class with non-trivial destructor. |
| 1883 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
| 1884 | return !CD->hasDefinition() || CD->hasTrivialDestructor(); |
| 1885 | return true; |
| 1886 | } |
| 1887 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1888 | /// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will |
| 1889 | /// create add scope for automatic objects and temporary objects bound to |
| 1890 | /// const reference. Will reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1891 | LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1892 | LocalScope* Scope) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1893 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1894 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1895 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1896 | !BuildOpts.AddScopes) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1897 | return Scope; |
| 1898 | |
| 1899 | // Check if variable is local. |
| 1900 | switch (VD->getStorageClass()) { |
| 1901 | case SC_None: |
| 1902 | case SC_Auto: |
| 1903 | case SC_Register: |
| 1904 | break; |
| 1905 | default: return Scope; |
| 1906 | } |
| 1907 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1908 | if (BuildOpts.AddImplicitDtors) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1909 | if (!hasTrivialDestructor(VD) || BuildOpts.AddScopes) { |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 1910 | // Add the variable to scope |
| 1911 | Scope = createOrReuseLocalScope(Scope); |
| 1912 | Scope->addVar(VD); |
| 1913 | ScopePos = Scope->begin(); |
| 1914 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1915 | return Scope; |
| 1916 | } |
| 1917 | |
| 1918 | assert(BuildOpts.AddLifetime); |
| 1919 | // Add the variable to scope |
| 1920 | Scope = createOrReuseLocalScope(Scope); |
| 1921 | Scope->addVar(VD); |
| 1922 | ScopePos = Scope->begin(); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1923 | return Scope; |
| 1924 | } |
| 1925 | |
| 1926 | /// addLocalScopeAndDtors - For given statement add local scope for it and |
| 1927 | /// 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] | 1928 | void CFGBuilder::addLocalScopeAndDtors(Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1929 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1930 | addLocalScopeForStmt(S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1931 | addAutomaticObjHandling(ScopePos, scopeBeginPos, S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1932 | } |
| 1933 | |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1934 | /// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for |
| 1935 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1936 | /// Elements will be prepended to physical beginning of the vector which |
| 1937 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1938 | /// destructors call site. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1939 | /// FIXME: This mechanism for adding automatic destructors doesn't handle |
| 1940 | /// no-return destructors properly. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1941 | void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1942 | LocalScope::const_iterator B, LocalScope::const_iterator E) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1943 | if (!BuildOpts.AddImplicitDtors) |
| 1944 | return; |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1945 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1946 | CFGBlock::iterator InsertPos |
| 1947 | = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C); |
| 1948 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1949 | InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I, |
| 1950 | Blk->getTerminator()); |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1951 | } |
| 1952 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1953 | /// prependAutomaticObjLifetimeWithTerminator - Prepend lifetime CFGElements for |
| 1954 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1955 | /// Elements will be prepended to physical beginning of the vector which |
| 1956 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1957 | /// where lifetime ends. |
| 1958 | void CFGBuilder::prependAutomaticObjLifetimeWithTerminator( |
| 1959 | CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) { |
| 1960 | if (!BuildOpts.AddLifetime) |
| 1961 | return; |
| 1962 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1963 | CFGBlock::iterator InsertPos = |
| 1964 | Blk->beginLifetimeEndsInsert(Blk->end(), B.distance(E), C); |
| 1965 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1966 | InsertPos = Blk->insertLifetimeEnds(InsertPos, *I, Blk->getTerminator()); |
| 1967 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1968 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1969 | /// prependAutomaticObjScopeEndWithTerminator - Prepend scope end CFGElements for |
| 1970 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1971 | /// Elements will be prepended to physical beginning of the vector which |
| 1972 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1973 | /// where scope ends. |
| 1974 | const VarDecl * |
| 1975 | CFGBuilder::prependAutomaticObjScopeEndWithTerminator( |
| 1976 | CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) { |
| 1977 | if (!BuildOpts.AddScopes) |
| 1978 | return nullptr; |
| 1979 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1980 | CFGBlock::iterator InsertPos = |
| 1981 | Blk->beginScopeEndInsert(Blk->end(), 1, C); |
| 1982 | LocalScope::const_iterator PlaceToInsert = B; |
| 1983 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1984 | PlaceToInsert = I; |
| 1985 | Blk->insertScopeEnd(InsertPos, *PlaceToInsert, Blk->getTerminator()); |
| 1986 | return *PlaceToInsert; |
| 1987 | } |
| 1988 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1989 | /// Visit - Walk the subtree of a statement and add extra |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1990 | /// blocks for ternary operators, &&, and ||. We also process "," and |
| 1991 | /// DeclStmts (which may contain nested control-flow). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1992 | CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) { |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 1993 | if (!S) { |
| 1994 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1995 | return nullptr; |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 1996 | } |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 1997 | |
| 1998 | if (Expr *E = dyn_cast<Expr>(S)) |
| 1999 | S = E->IgnoreParens(); |
| 2000 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2001 | switch (S->getStmtClass()) { |
| 2002 | default: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2003 | return VisitStmt(S, asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2004 | |
| 2005 | case Stmt::AddrLabelExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2006 | return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2007 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2008 | case Stmt::BinaryConditionalOperatorClass: |
| 2009 | return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc); |
| 2010 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2011 | case Stmt::BinaryOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2012 | return VisitBinaryOperator(cast<BinaryOperator>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2013 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2014 | case Stmt::BlockExprClass: |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 2015 | return VisitBlockExpr(cast<BlockExpr>(S), asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2016 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2017 | case Stmt::BreakStmtClass: |
| 2018 | return VisitBreakStmt(cast<BreakStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2019 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2020 | case Stmt::CallExprClass: |
Ted Kremenek | 128d04d | 2010-08-31 18:47:34 +0000 | [diff] [blame] | 2021 | case Stmt::CXXOperatorCallExprClass: |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2022 | case Stmt::CXXMemberCallExprClass: |
Richard Smith | c67fdd4 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 2023 | case Stmt::UserDefinedLiteralClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2024 | return VisitCallExpr(cast<CallExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2025 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2026 | case Stmt::CaseStmtClass: |
| 2027 | return VisitCaseStmt(cast<CaseStmt>(S)); |
| 2028 | |
| 2029 | case Stmt::ChooseExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2030 | return VisitChooseExpr(cast<ChooseExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2031 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2032 | case Stmt::CompoundStmtClass: |
| 2033 | return VisitCompoundStmt(cast<CompoundStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2034 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2035 | case Stmt::ConditionalOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2036 | return VisitConditionalOperator(cast<ConditionalOperator>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2037 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2038 | case Stmt::ContinueStmtClass: |
| 2039 | return VisitContinueStmt(cast<ContinueStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2040 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 2041 | case Stmt::CXXCatchStmtClass: |
| 2042 | return VisitCXXCatchStmt(cast<CXXCatchStmt>(S)); |
| 2043 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 2044 | case Stmt::ExprWithCleanupsClass: |
| 2045 | return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc); |
Ted Kremenek | 82bfc86 | 2010-08-28 00:19:02 +0000 | [diff] [blame] | 2046 | |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 2047 | case Stmt::CXXDefaultArgExprClass: |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 2048 | case Stmt::CXXDefaultInitExprClass: |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 2049 | // FIXME: The expression inside a CXXDefaultArgExpr is owned by the |
| 2050 | // called function's declaration, not by the caller. If we simply add |
| 2051 | // this expression to the CFG, we could end up with the same Expr |
| 2052 | // appearing multiple times. |
| 2053 | // PR13385 / <rdar://problem/12156507> |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 2054 | // |
| 2055 | // It's likewise possible for multiple CXXDefaultInitExprs for the same |
| 2056 | // expression to be used in the same function (through aggregate |
| 2057 | // initialization). |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 2058 | return VisitStmt(S, asc); |
| 2059 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2060 | case Stmt::CXXBindTemporaryExprClass: |
| 2061 | return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc); |
| 2062 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 2063 | case Stmt::CXXConstructExprClass: |
| 2064 | return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc); |
| 2065 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 2066 | case Stmt::CXXNewExprClass: |
| 2067 | return VisitCXXNewExpr(cast<CXXNewExpr>(S), asc); |
| 2068 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 2069 | case Stmt::CXXDeleteExprClass: |
| 2070 | return VisitCXXDeleteExpr(cast<CXXDeleteExpr>(S), asc); |
| 2071 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2072 | case Stmt::CXXFunctionalCastExprClass: |
| 2073 | return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc); |
| 2074 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 2075 | case Stmt::CXXTemporaryObjectExprClass: |
| 2076 | return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc); |
| 2077 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 2078 | case Stmt::CXXThrowExprClass: |
| 2079 | return VisitCXXThrowExpr(cast<CXXThrowExpr>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2080 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 2081 | case Stmt::CXXTryStmtClass: |
| 2082 | return VisitCXXTryStmt(cast<CXXTryStmt>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2083 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 2084 | case Stmt::CXXForRangeStmtClass: |
| 2085 | return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S)); |
| 2086 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2087 | case Stmt::DeclStmtClass: |
| 2088 | return VisitDeclStmt(cast<DeclStmt>(S)); |
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 | case Stmt::DefaultStmtClass: |
| 2091 | return VisitDefaultStmt(cast<DefaultStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2092 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2093 | case Stmt::DoStmtClass: |
| 2094 | return VisitDoStmt(cast<DoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2095 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2096 | case Stmt::ForStmtClass: |
| 2097 | return VisitForStmt(cast<ForStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2098 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2099 | case Stmt::GotoStmtClass: |
| 2100 | return VisitGotoStmt(cast<GotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2101 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2102 | case Stmt::IfStmtClass: |
| 2103 | return VisitIfStmt(cast<IfStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2104 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2105 | case Stmt::ImplicitCastExprClass: |
| 2106 | return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2107 | |
Bill Wendling | 8003edc | 2018-11-09 00:41:36 +0000 | [diff] [blame] | 2108 | case Stmt::ConstantExprClass: |
| 2109 | return VisitConstantExpr(cast<ConstantExpr>(S), asc); |
| 2110 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2111 | case Stmt::IndirectGotoStmtClass: |
| 2112 | return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2113 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2114 | case Stmt::LabelStmtClass: |
| 2115 | return VisitLabelStmt(cast<LabelStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2116 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 2117 | case Stmt::LambdaExprClass: |
| 2118 | return VisitLambdaExpr(cast<LambdaExpr>(S), asc); |
| 2119 | |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 2120 | case Stmt::MaterializeTemporaryExprClass: |
| 2121 | return VisitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(S), |
| 2122 | asc); |
| 2123 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2124 | case Stmt::MemberExprClass: |
| 2125 | return VisitMemberExpr(cast<MemberExpr>(S), asc); |
| 2126 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 2127 | case Stmt::NullStmtClass: |
| 2128 | return Block; |
| 2129 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2130 | case Stmt::ObjCAtCatchStmtClass: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2131 | return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); |
| 2132 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 2133 | case Stmt::ObjCAutoreleasePoolStmtClass: |
| 2134 | return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S)); |
| 2135 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2136 | case Stmt::ObjCAtSynchronizedStmtClass: |
| 2137 | return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2138 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2139 | case Stmt::ObjCAtThrowStmtClass: |
| 2140 | return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2141 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2142 | case Stmt::ObjCAtTryStmtClass: |
| 2143 | return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2144 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2145 | case Stmt::ObjCForCollectionStmtClass: |
| 2146 | return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2147 | |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 2148 | case Stmt::ObjCMessageExprClass: |
| 2149 | return VisitObjCMessageExpr(cast<ObjCMessageExpr>(S), asc); |
| 2150 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 2151 | case Stmt::OpaqueValueExprClass: |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2152 | return Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2153 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 2154 | case Stmt::PseudoObjectExprClass: |
| 2155 | return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S)); |
| 2156 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2157 | case Stmt::ReturnStmtClass: |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 2158 | case Stmt::CoreturnStmtClass: |
| 2159 | return VisitReturnStmt(S); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2160 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 2161 | case Stmt::SEHExceptStmtClass: |
| 2162 | return VisitSEHExceptStmt(cast<SEHExceptStmt>(S)); |
| 2163 | |
| 2164 | case Stmt::SEHFinallyStmtClass: |
| 2165 | return VisitSEHFinallyStmt(cast<SEHFinallyStmt>(S)); |
| 2166 | |
| 2167 | case Stmt::SEHLeaveStmtClass: |
| 2168 | return VisitSEHLeaveStmt(cast<SEHLeaveStmt>(S)); |
| 2169 | |
| 2170 | case Stmt::SEHTryStmtClass: |
| 2171 | return VisitSEHTryStmt(cast<SEHTryStmt>(S)); |
| 2172 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2173 | case Stmt::UnaryExprOrTypeTraitExprClass: |
| 2174 | return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S), |
| 2175 | asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2176 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2177 | case Stmt::StmtExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2178 | return VisitStmtExpr(cast<StmtExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2179 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2180 | case Stmt::SwitchStmtClass: |
| 2181 | return VisitSwitchStmt(cast<SwitchStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2182 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2183 | case Stmt::UnaryOperatorClass: |
| 2184 | return VisitUnaryOperator(cast<UnaryOperator>(S), asc); |
| 2185 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2186 | case Stmt::WhileStmtClass: |
| 2187 | return VisitWhileStmt(cast<WhileStmt>(S)); |
| 2188 | } |
| 2189 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2190 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2191 | CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2192 | if (asc.alwaysAdd(*this, S)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2193 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2194 | appendStmt(Block, S); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2195 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2196 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2197 | return VisitChildren(S); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2198 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2199 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2200 | /// VisitChildren - Visit the children of a Stmt. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 2201 | CFGBlock *CFGBuilder::VisitChildren(Stmt *S) { |
| 2202 | CFGBlock *B = Block; |
Ted Kremenek | 828f631 | 2011-02-21 22:11:26 +0000 | [diff] [blame] | 2203 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 2204 | // Visit the children in their reverse order so that they appear in |
| 2205 | // left-to-right (natural) order in the CFG. |
| 2206 | reverse_children RChildren(S); |
| 2207 | for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end(); |
| 2208 | I != E; ++I) { |
| 2209 | if (Stmt *Child = *I) |
| 2210 | if (CFGBlock *R = Visit(Child)) |
| 2211 | B = R; |
| 2212 | } |
| 2213 | return B; |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2214 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2215 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2216 | CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, |
| 2217 | AddStmtChoice asc) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2218 | AddressTakenLabels.insert(A->getLabel()); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2219 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2220 | if (asc.alwaysAdd(*this, A)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2221 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2222 | appendStmt(Block, A); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2223 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2224 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2225 | return Block; |
| 2226 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2227 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2228 | CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U, |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2229 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2230 | if (asc.alwaysAdd(*this, U)) { |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2231 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2232 | appendStmt(Block, U); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2233 | } |
| 2234 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2235 | return Visit(U->getSubExpr(), AddStmtChoice()); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2236 | } |
| 2237 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2238 | CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) { |
| 2239 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
| 2240 | appendStmt(ConfluenceBlock, B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2241 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2242 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2243 | return nullptr; |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2244 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2245 | return VisitLogicalOperator(B, nullptr, ConfluenceBlock, |
| 2246 | ConfluenceBlock).first; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2247 | } |
| 2248 | |
| 2249 | std::pair<CFGBlock*, CFGBlock*> |
| 2250 | CFGBuilder::VisitLogicalOperator(BinaryOperator *B, |
| 2251 | Stmt *Term, |
| 2252 | CFGBlock *TrueBlock, |
| 2253 | CFGBlock *FalseBlock) { |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2254 | // Introspect the RHS. If it is a nested logical operation, we recursively |
| 2255 | // build the CFG using this function. Otherwise, resort to default |
| 2256 | // CFG construction behavior. |
| 2257 | Expr *RHS = B->getRHS()->IgnoreParens(); |
| 2258 | CFGBlock *RHSBlock, *ExitBlock; |
| 2259 | |
| 2260 | do { |
| 2261 | if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS)) |
| 2262 | if (B_RHS->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 2263 | std::tie(RHSBlock, ExitBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2264 | VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock); |
| 2265 | break; |
| 2266 | } |
| 2267 | |
| 2268 | // The RHS is not a nested logical operation. Don't push the terminator |
| 2269 | // down further, but instead visit RHS and construct the respective |
| 2270 | // pieces of the CFG, and link up the RHSBlock with the terminator |
| 2271 | // we have been provided. |
| 2272 | ExitBlock = RHSBlock = createBlock(false); |
| 2273 | |
Richard Trieu | 6a6af52 | 2017-01-04 00:46:30 +0000 | [diff] [blame] | 2274 | // Even though KnownVal is only used in the else branch of the next |
| 2275 | // conditional, tryEvaluateBool performs additional checking on the |
| 2276 | // Expr, so it should be called unconditionally. |
| 2277 | TryResult KnownVal = tryEvaluateBool(RHS); |
| 2278 | if (!KnownVal.isKnown()) |
| 2279 | KnownVal = tryEvaluateBool(B); |
| 2280 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2281 | if (!Term) { |
| 2282 | assert(TrueBlock == FalseBlock); |
| 2283 | addSuccessor(RHSBlock, TrueBlock); |
| 2284 | } |
| 2285 | else { |
| 2286 | RHSBlock->setTerminator(Term); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2287 | addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 2288 | addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2289 | } |
| 2290 | |
| 2291 | Block = RHSBlock; |
| 2292 | RHSBlock = addStmt(RHS); |
| 2293 | } |
| 2294 | while (false); |
| 2295 | |
| 2296 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2297 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2298 | |
| 2299 | // Generate the blocks for evaluating the LHS. |
| 2300 | Expr *LHS = B->getLHS()->IgnoreParens(); |
| 2301 | |
| 2302 | if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS)) |
| 2303 | if (B_LHS->isLogicalOp()) { |
| 2304 | if (B->getOpcode() == BO_LOr) |
| 2305 | FalseBlock = RHSBlock; |
| 2306 | else |
| 2307 | TrueBlock = RHSBlock; |
| 2308 | |
| 2309 | // For the LHS, treat 'B' as the terminator that we want to sink |
| 2310 | // into the nested branch. The RHS always gets the top-most |
| 2311 | // terminator. |
| 2312 | return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock); |
| 2313 | } |
| 2314 | |
| 2315 | // Create the block evaluating the LHS. |
| 2316 | // This contains the '&&' or '||' as the terminator. |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2317 | CFGBlock *LHSBlock = createBlock(false); |
| 2318 | LHSBlock->setTerminator(B); |
| 2319 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2320 | Block = LHSBlock; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2321 | CFGBlock *EntryLHSBlock = addStmt(LHS); |
| 2322 | |
| 2323 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2324 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2325 | |
| 2326 | // See if this is a known constant. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2327 | TryResult KnownVal = tryEvaluateBool(LHS); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2328 | |
| 2329 | // Now link the LHSBlock with RHSBlock. |
| 2330 | if (B->getOpcode() == BO_LOr) { |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2331 | addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 2332 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2333 | } else { |
| 2334 | assert(B->getOpcode() == BO_LAnd); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2335 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse()); |
| 2336 | addSuccessor(LHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2337 | } |
| 2338 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2339 | return std::make_pair(EntryLHSBlock, ExitBlock); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2340 | } |
| 2341 | |
| 2342 | CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B, |
| 2343 | AddStmtChoice asc) { |
| 2344 | // && or || |
| 2345 | if (B->isLogicalOp()) |
| 2346 | return VisitLogicalOperator(B); |
| 2347 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2348 | if (B->getOpcode() == BO_Comma) { // , |
Ted Kremenek | fe9b768 | 2009-07-17 22:57:50 +0000 | [diff] [blame] | 2349 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2350 | appendStmt(Block, B); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2351 | addStmt(B->getRHS()); |
| 2352 | return addStmt(B->getLHS()); |
| 2353 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2354 | |
| 2355 | if (B->isAssignmentOp()) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2356 | if (asc.alwaysAdd(*this, B)) { |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2357 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2358 | appendStmt(Block, B); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2359 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2360 | Visit(B->getLHS()); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2361 | return Visit(B->getRHS()); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2362 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2363 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2364 | if (asc.alwaysAdd(*this, B)) { |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2365 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2366 | appendStmt(Block, B); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2367 | } |
| 2368 | |
Zhongxing Xu | d95ccd5 | 2010-10-27 03:23:10 +0000 | [diff] [blame] | 2369 | CFGBlock *RBlock = Visit(B->getRHS()); |
| 2370 | CFGBlock *LBlock = Visit(B->getLHS()); |
| 2371 | // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr |
| 2372 | // containing a DoStmt, and the LHS doesn't create a new block, then we should |
| 2373 | // return RBlock. Otherwise we'll incorrectly return NULL. |
| 2374 | return (LBlock ? LBlock : RBlock); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2375 | } |
| 2376 | |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 2377 | CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2378 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2379 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2380 | appendStmt(Block, E); |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2381 | } |
| 2382 | return Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2383 | } |
| 2384 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2385 | CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { |
| 2386 | // "break" is a control-flow statement. Thus we stop processing the current |
| 2387 | // block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2388 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2389 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2390 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2391 | // Now create a new block that ends with the break statement. |
| 2392 | Block = createBlock(false); |
| 2393 | Block->setTerminator(B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2394 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2395 | // If there is no target for the break, then we are looking at an incomplete |
| 2396 | // AST. This means that the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2397 | if (BreakJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2398 | addAutomaticObjHandling(ScopePos, BreakJumpTarget.scopePosition, B); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2399 | addSuccessor(Block, BreakJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2400 | } else |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2401 | badCFG = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2402 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2403 | return Block; |
| 2404 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2405 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2406 | static bool CanThrow(Expr *E, ASTContext &Ctx) { |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2407 | QualType Ty = E->getType(); |
| 2408 | if (Ty->isFunctionPointerType()) |
| 2409 | Ty = Ty->getAs<PointerType>()->getPointeeType(); |
| 2410 | else if (Ty->isBlockPointerType()) |
| 2411 | Ty = Ty->getAs<BlockPointerType>()->getPointeeType(); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2412 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2413 | const FunctionType *FT = Ty->getAs<FunctionType>(); |
| 2414 | if (FT) { |
| 2415 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) |
Richard Smith | d3b5c908 | 2012-07-27 04:22:15 +0000 | [diff] [blame] | 2416 | if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && |
Richard Smith | eaf11ad | 2018-05-03 03:58:32 +0000 | [diff] [blame] | 2417 | Proto->isNothrow()) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2418 | return false; |
| 2419 | } |
| 2420 | return true; |
| 2421 | } |
| 2422 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2423 | CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) { |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2424 | // Compute the callee type. |
| 2425 | QualType calleeType = C->getCallee()->getType(); |
| 2426 | if (calleeType == Context->BoundMemberTy) { |
| 2427 | QualType boundType = Expr::findBoundMemberType(C->getCallee()); |
| 2428 | |
| 2429 | // We should only get a null bound type if processing a dependent |
| 2430 | // CFG. Recover by assuming nothing. |
| 2431 | if (!boundType.isNull()) calleeType = boundType; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2432 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2433 | |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2434 | // If this is a call to a no-return function, this stops the block here. |
| 2435 | bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); |
| 2436 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2437 | bool AddEHEdge = false; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2438 | |
| 2439 | // Languages without exceptions are assumed to not throw. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2440 | if (Context->getLangOpts().Exceptions) { |
Ted Kremenek | e97b1eb | 2010-09-14 23:41:16 +0000 | [diff] [blame] | 2441 | if (BuildOpts.AddEHEdges) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2442 | AddEHEdge = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2443 | } |
| 2444 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2445 | // If this is a call to a builtin function, it might not actually evaluate |
| 2446 | // its arguments. Don't add them to the CFG if this is the case. |
| 2447 | bool OmitArguments = false; |
| 2448 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2449 | if (FunctionDecl *FD = C->getDirectCallee()) { |
Artem Dergachev | 594b541 | 2018-08-29 21:50:52 +0000 | [diff] [blame] | 2450 | // TODO: Support construction contexts for variadic function arguments. |
| 2451 | // These are a bit problematic and not very useful because passing |
| 2452 | // C++ objects as C-style variadic arguments doesn't work in general |
| 2453 | // (see [expr.call]). |
| 2454 | if (!FD->isVariadic()) |
| 2455 | findConstructionContextsForArguments(C); |
| 2456 | |
Nico Weber | 758fbac | 2018-02-13 21:31:47 +0000 | [diff] [blame] | 2457 | if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context)) |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2458 | NoReturn = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2459 | if (FD->hasAttr<NoThrowAttr>()) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2460 | AddEHEdge = false; |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2461 | if (FD->getBuiltinID() == Builtin::BI__builtin_object_size) |
| 2462 | OmitArguments = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2463 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2464 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2465 | if (!CanThrow(C->getCallee(), *Context)) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2466 | AddEHEdge = false; |
| 2467 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2468 | if (OmitArguments) { |
| 2469 | assert(!NoReturn && "noreturn calls with unevaluated args not implemented"); |
| 2470 | assert(!AddEHEdge && "EH calls with unevaluated args not implemented"); |
| 2471 | autoCreateBlock(); |
| 2472 | appendStmt(Block, C); |
| 2473 | return Visit(C->getCallee()); |
| 2474 | } |
| 2475 | |
| 2476 | if (!NoReturn && !AddEHEdge) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 2477 | autoCreateBlock(); |
| 2478 | appendCall(Block, C); |
| 2479 | |
| 2480 | return VisitChildren(C); |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2481 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2482 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2483 | if (Block) { |
| 2484 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2485 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2486 | return nullptr; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2487 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2488 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 2489 | if (NoReturn) |
| 2490 | Block = createNoReturnBlock(); |
| 2491 | else |
| 2492 | Block = createBlock(); |
| 2493 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 2494 | appendCall(Block, C); |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2495 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2496 | if (AddEHEdge) { |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2497 | // Add exceptional edges. |
| 2498 | if (TryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2499 | addSuccessor(Block, TryTerminatedBlock); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2500 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2501 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2502 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2503 | |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2504 | return VisitChildren(C); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2505 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2506 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2507 | CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, |
| 2508 | AddStmtChoice asc) { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2509 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2510 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2511 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2512 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2513 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2514 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2515 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2516 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2517 | CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2518 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2519 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2520 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2521 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2522 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2523 | CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2524 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2525 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2526 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2527 | Block = createBlock(false); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2528 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2529 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2530 | addSuccessor(Block, KnownVal.isFalse() ? nullptr : LHSBlock); |
| 2531 | addSuccessor(Block, KnownVal.isTrue() ? nullptr : RHSBlock); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2532 | Block->setTerminator(C); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2533 | return addStmt(C->getCond()); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2534 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2535 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2536 | CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) { |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2537 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2538 | addLocalScopeForStmt(C); |
| 2539 | |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2540 | if (!C->body_empty() && !isa<ReturnStmt>(*C->body_rbegin())) { |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2541 | // If the body ends with a ReturnStmt, the dtors will be added in |
| 2542 | // VisitReturnStmt. |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2543 | addAutomaticObjHandling(ScopePos, scopeBeginPos, C); |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2544 | } |
| 2545 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2546 | CFGBlock *LastBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2547 | |
| 2548 | for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend(); |
| 2549 | I != E; ++I ) { |
Ted Kremenek | 4f2ab5a | 2010-08-17 21:00:06 +0000 | [diff] [blame] | 2550 | // If we hit a segment of code just containing ';' (NullStmts), we can |
| 2551 | // get a null block back. In such cases, just use the LastBlock |
| 2552 | if (CFGBlock *newBlock = addStmt(*I)) |
| 2553 | LastBlock = newBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2554 | |
Ted Kremenek | ce499c2 | 2009-08-27 23:16:26 +0000 | [diff] [blame] | 2555 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2556 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2557 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2558 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2559 | return LastBlock; |
| 2560 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2561 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2562 | CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C, |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2563 | AddStmtChoice asc) { |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2564 | const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2565 | const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : nullptr); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2566 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2567 | // Create the confluence block that will "merge" the results of the ternary |
| 2568 | // expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2569 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2570 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2571 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2572 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2573 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2574 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2575 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2576 | // Create a block for the LHS expression if there is an LHS expression. A |
| 2577 | // GCC extension allows LHS to be NULL, causing the condition to be the |
| 2578 | // value that is returned instead. |
| 2579 | // e.g: x ?: y is shorthand for: x ? x : y; |
| 2580 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2581 | Block = nullptr; |
| 2582 | CFGBlock *LHSBlock = nullptr; |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2583 | const Expr *trueExpr = C->getTrueExpr(); |
| 2584 | if (trueExpr != opaqueValue) { |
| 2585 | LHSBlock = Visit(C->getTrueExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2586 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2587 | return nullptr; |
| 2588 | Block = nullptr; |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2589 | } |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2590 | else |
| 2591 | LHSBlock = ConfluenceBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2592 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2593 | // Create the block for the RHS expression. |
| 2594 | Succ = ConfluenceBlock; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2595 | CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2596 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2597 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2598 | |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 2599 | // If the condition is a logical '&&' or '||', build a more accurate CFG. |
| 2600 | if (BinaryOperator *Cond = |
| 2601 | dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens())) |
| 2602 | if (Cond->isLogicalOp()) |
| 2603 | return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first; |
| 2604 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2605 | // Create the block that will contain the condition. |
| 2606 | Block = createBlock(false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2607 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2608 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2609 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Ted Kremenek | 5a09527 | 2014-03-04 21:53:26 +0000 | [diff] [blame] | 2610 | addSuccessor(Block, LHSBlock, !KnownVal.isFalse()); |
| 2611 | addSuccessor(Block, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2612 | Block->setTerminator(C); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2613 | Expr *condExpr = C->getCond(); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2614 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2615 | if (opaqueValue) { |
| 2616 | // Run the condition expression if it's not trivially expressed in |
| 2617 | // terms of the opaque value (or if there is no opaque value). |
| 2618 | if (condExpr != opaqueValue) |
| 2619 | addStmt(condExpr); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2620 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2621 | // Before that, run the common subexpression if there was one. |
| 2622 | // At least one of this or the above will be run. |
| 2623 | return addStmt(BCO->getCommon()); |
| 2624 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2625 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2626 | return addStmt(condExpr); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2627 | } |
| 2628 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2629 | CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) { |
Ted Kremenek | 6878c36 | 2011-05-10 18:42:15 +0000 | [diff] [blame] | 2630 | // Check if the Decl is for an __label__. If so, elide it from the |
| 2631 | // CFG entirely. |
| 2632 | if (isa<LabelDecl>(*DS->decl_begin())) |
| 2633 | return Block; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2634 | |
Ted Kremenek | 3a60114 | 2011-05-24 20:41:31 +0000 | [diff] [blame] | 2635 | // This case also handles static_asserts. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2636 | if (DS->isSingleDecl()) |
| 2637 | return VisitDeclSubExpr(DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2638 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2639 | CFGBlock *B = nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2640 | |
Jordan Rose | 8c6c8a9 | 2012-07-20 18:50:48 +0000 | [diff] [blame] | 2641 | // Build an individual DeclStmt for each decl. |
| 2642 | for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(), |
| 2643 | E = DS->decl_rend(); |
| 2644 | I != E; ++I) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2645 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2646 | // Allocate the DeclStmt using the BumpPtrAllocator. It will get |
| 2647 | // automatically freed with the CFG. |
| 2648 | DeclGroupRef DG(*I); |
| 2649 | Decl *D = *I; |
George Karpenkov | c1ac808 | 2018-10-02 21:19:01 +0000 | [diff] [blame] | 2650 | DeclStmt *DSNew = new (Context) DeclStmt(DG, D->getLocation(), GetEndLoc(D)); |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 2651 | cfg->addSyntheticDeclStmt(DSNew, DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2652 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2653 | // Append the fake DeclStmt to block. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2654 | B = VisitDeclSubExpr(DSNew); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2655 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2656 | |
| 2657 | return B; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2658 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2659 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2660 | /// VisitDeclSubExpr - Utility method to add block-level expressions for |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2661 | /// DeclStmts and initializers in them. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2662 | CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2663 | assert(DS->isSingleDecl() && "Can handle single declarations only."); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2664 | VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2665 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2666 | if (!VD) { |
Jordan Rose | 5250b87 | 2013-06-03 22:59:41 +0000 | [diff] [blame] | 2667 | // Of everything that can be declared in a DeclStmt, only VarDecls impact |
| 2668 | // runtime semantics. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2669 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2670 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2671 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2672 | bool HasTemporaries = false; |
| 2673 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2674 | // Guard static initializers under a branch. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2675 | CFGBlock *blockAfterStaticInit = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2676 | |
| 2677 | if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) { |
| 2678 | // For static variables, we need to create a branch to track |
| 2679 | // whether or not they are initialized. |
| 2680 | if (Block) { |
| 2681 | Succ = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2682 | Block = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2683 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2684 | return nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2685 | } |
| 2686 | blockAfterStaticInit = Succ; |
| 2687 | } |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2688 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2689 | // Destructors of temporaries in initialization expression should be called |
| 2690 | // after initialization finishes. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2691 | Expr *Init = VD->getInit(); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2692 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 2693 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2694 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 2695 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2696 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 2697 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 2698 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
| 2699 | /*BindToTemporary=*/false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2700 | } |
| 2701 | } |
| 2702 | |
| 2703 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2704 | appendStmt(Block, DS); |
Artem Dergachev | 5fc1033 | 2018-02-10 01:55:23 +0000 | [diff] [blame] | 2705 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2706 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 2707 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2708 | Init); |
Artem Dergachev | 5fc1033 | 2018-02-10 01:55:23 +0000 | [diff] [blame] | 2709 | |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2710 | // Keep track of the last non-null block, as 'Block' can be nulled out |
| 2711 | // if the initializer expression is something like a 'while' in a |
| 2712 | // statement-expression. |
| 2713 | CFGBlock *LastBlock = Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2714 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2715 | if (Init) { |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2716 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2717 | // For expression with temporaries go directly to subexpression to omit |
| 2718 | // generating destructors for the second time. |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2719 | ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); |
| 2720 | if (CFGBlock *newBlock = Visit(EC->getSubExpr())) |
| 2721 | LastBlock = newBlock; |
| 2722 | } |
| 2723 | else { |
| 2724 | if (CFGBlock *newBlock = Visit(Init)) |
| 2725 | LastBlock = newBlock; |
| 2726 | } |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2727 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2728 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2729 | // 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] | 2730 | for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2731 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) { |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2732 | if (CFGBlock *newBlock = addStmt(VA->getSizeExpr())) |
| 2733 | LastBlock = newBlock; |
| 2734 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2735 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 2736 | maybeAddScopeBeginForVarDecl(Block, VD, DS); |
| 2737 | |
Marcin Swiderski | 667ffec | 2010-10-01 00:23:17 +0000 | [diff] [blame] | 2738 | // Remove variable from local scope. |
| 2739 | if (ScopePos && VD == *ScopePos) |
| 2740 | ++ScopePos; |
| 2741 | |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2742 | CFGBlock *B = LastBlock; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2743 | if (blockAfterStaticInit) { |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2744 | Succ = B; |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2745 | Block = createBlock(false); |
| 2746 | Block->setTerminator(DS); |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2747 | addSuccessor(Block, blockAfterStaticInit); |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2748 | addSuccessor(Block, B); |
| 2749 | B = Block; |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2750 | } |
| 2751 | |
| 2752 | return B; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2753 | } |
| 2754 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2755 | CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2756 | // We may see an if statement in the middle of a basic block, or it may be the |
| 2757 | // first statement we are processing. In either case, we create a new basic |
| 2758 | // block. First, we create the blocks for the then...else statements, and |
| 2759 | // 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] | 2760 | // middle of a block, we stop processing that block. That block is then the |
| 2761 | // implicit successor for the "then" and "else" clauses. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2762 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2763 | // Save local scope position because in case of condition variable ScopePos |
| 2764 | // won't be restored when traversing AST. |
| 2765 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2766 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2767 | // Create local scope for C++17 if init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2768 | if (Stmt *Init = I->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2769 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2770 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2771 | // Create local scope for possible condition variable. |
| 2772 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2773 | if (VarDecl *VD = I->getConditionVariable()) |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2774 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2775 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2776 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), I); |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2777 | |
Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 2778 | // The block we were processing is now finished. Make it the successor |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2779 | // block. |
| 2780 | if (Block) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2781 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2782 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2783 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2784 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2785 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2786 | // Process the false branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2787 | CFGBlock *ElseBlock = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2788 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2789 | if (Stmt *Else = I->getElse()) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2790 | SaveAndRestore<CFGBlock*> sv(Succ); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2791 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2792 | // NULL out Block so that the recursive call to Visit will |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2793 | // create a new basic block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2794 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2795 | |
| 2796 | // If branch is not a compound statement create implicit scope |
| 2797 | // and add destructors. |
| 2798 | if (!isa<CompoundStmt>(Else)) |
| 2799 | addLocalScopeAndDtors(Else); |
| 2800 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2801 | ElseBlock = addStmt(Else); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2802 | |
Ted Kremenek | bbad8ce | 2007-08-30 18:13:31 +0000 | [diff] [blame] | 2803 | if (!ElseBlock) // Can occur when the Else body has all NullStmts. |
| 2804 | ElseBlock = sv.get(); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2805 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2806 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2807 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2808 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2809 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2810 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2811 | // Process the true branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2812 | CFGBlock *ThenBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2813 | { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2814 | Stmt *Then = I->getThen(); |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 2815 | assert(Then); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2816 | SaveAndRestore<CFGBlock*> sv(Succ); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2817 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2818 | |
| 2819 | // If branch is not a compound statement create implicit scope |
| 2820 | // and add destructors. |
| 2821 | if (!isa<CompoundStmt>(Then)) |
| 2822 | addLocalScopeAndDtors(Then); |
| 2823 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2824 | ThenBlock = addStmt(Then); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2825 | |
Ted Kremenek | 1b37951 | 2009-04-01 03:52:47 +0000 | [diff] [blame] | 2826 | if (!ThenBlock) { |
| 2827 | // We can reach here if the "then" body has all NullStmts. |
| 2828 | // Create an empty block so we can distinguish between true and false |
| 2829 | // branches in path-sensitive analyses. |
| 2830 | ThenBlock = createBlock(false); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2831 | addSuccessor(ThenBlock, sv.get()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2832 | } else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2833 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2834 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2835 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2836 | } |
| 2837 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2838 | // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by |
| 2839 | // having these handle the actual control-flow jump. Note that |
| 2840 | // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)" |
| 2841 | // we resort to the old control-flow behavior. This special handling |
| 2842 | // removes infeasible paths from the control-flow graph by having the |
| 2843 | // control-flow transfer of '&&' or '||' go directly into the then/else |
| 2844 | // blocks directly. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2845 | BinaryOperator *Cond = |
| 2846 | I->getConditionVariable() |
| 2847 | ? nullptr |
| 2848 | : dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens()); |
| 2849 | CFGBlock *LastBlock; |
| 2850 | if (Cond && Cond->isLogicalOp()) |
| 2851 | LastBlock = VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first; |
| 2852 | else { |
| 2853 | // Now create a new block containing the if statement. |
| 2854 | Block = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2855 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2856 | // Set the terminator of the new block to the If statement. |
| 2857 | Block->setTerminator(I); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2858 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2859 | // See if this is a known constant. |
| 2860 | const TryResult &KnownVal = tryEvaluateBool(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2861 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2862 | // Add the successors. If we know that specific branches are |
| 2863 | // unreachable, inform addSuccessor() of that knowledge. |
| 2864 | addSuccessor(Block, ThenBlock, /* isReachable = */ !KnownVal.isFalse()); |
| 2865 | addSuccessor(Block, ElseBlock, /* isReachable = */ !KnownVal.isTrue()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2866 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2867 | // Add the condition as the last statement in the new block. This may |
| 2868 | // create new blocks as the condition may contain control-flow. Any newly |
| 2869 | // created blocks will be pointed to be "Block". |
| 2870 | LastBlock = addStmt(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2871 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2872 | // If the IfStmt contains a condition variable, add it and its |
| 2873 | // initializer to the CFG. |
| 2874 | if (const DeclStmt* DS = I->getConditionVariableDeclStmt()) { |
| 2875 | autoCreateBlock(); |
| 2876 | LastBlock = addStmt(const_cast<DeclStmt *>(DS)); |
| 2877 | } |
Ted Kremenek | a7bcbde | 2009-12-23 04:49:01 +0000 | [diff] [blame] | 2878 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2879 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2880 | // Finally, if the IfStmt contains a C++17 init-stmt, add it to the CFG. |
| 2881 | if (Stmt *Init = I->getInit()) { |
| 2882 | autoCreateBlock(); |
| 2883 | LastBlock = addStmt(Init); |
| 2884 | } |
| 2885 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2886 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2887 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2888 | |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 2889 | CFGBlock *CFGBuilder::VisitReturnStmt(Stmt *S) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 2890 | // 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] | 2891 | // |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 2892 | // NOTE: If a "return" or "co_return" appears in the middle of a block, this |
| 2893 | // means that the code afterwards is DEAD (unreachable). We still keep |
| 2894 | // a basic block for that code; a simple "mark-and-sweep" from the entry |
| 2895 | // block will be able to report such dead blocks. |
| 2896 | assert(isa<ReturnStmt>(S) || isa<CoreturnStmt>(S)); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2897 | |
| 2898 | // Create the new block. |
| 2899 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2900 | |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 2901 | addAutomaticObjHandling(ScopePos, LocalScope::const_iterator(), S); |
Pavel Labath | 921e765 | 2013-09-06 08:12:48 +0000 | [diff] [blame] | 2902 | |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 2903 | if (auto *R = dyn_cast<ReturnStmt>(S)) |
| 2904 | findConstructionContexts( |
| 2905 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), R), |
| 2906 | R->getRetValue()); |
Artem Dergachev | 9ac2e11 | 2018-02-12 22:36:36 +0000 | [diff] [blame] | 2907 | |
Pavel Labath | 921e765 | 2013-09-06 08:12:48 +0000 | [diff] [blame] | 2908 | // If the one of the destructors does not return, we already have the Exit |
| 2909 | // block as a successor. |
| 2910 | if (!Block->hasNoReturnElement()) |
| 2911 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2912 | |
| 2913 | // Add the return statement to the block. This may create new blocks if R |
| 2914 | // contains control-flow (short-circuit operations). |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 2915 | return VisitStmt(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2916 | } |
| 2917 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 2918 | CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) { |
| 2919 | // SEHExceptStmt are treated like labels, so they are the first statement in a |
| 2920 | // block. |
| 2921 | |
| 2922 | // Save local scope position because in case of exception variable ScopePos |
| 2923 | // won't be restored when traversing AST. |
| 2924 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2925 | |
| 2926 | addStmt(ES->getBlock()); |
| 2927 | CFGBlock *SEHExceptBlock = Block; |
| 2928 | if (!SEHExceptBlock) |
| 2929 | SEHExceptBlock = createBlock(); |
| 2930 | |
| 2931 | appendStmt(SEHExceptBlock, ES); |
| 2932 | |
| 2933 | // Also add the SEHExceptBlock as a label, like with regular labels. |
| 2934 | SEHExceptBlock->setLabel(ES); |
| 2935 | |
| 2936 | // Bail out if the CFG is bad. |
| 2937 | if (badCFG) |
| 2938 | return nullptr; |
| 2939 | |
| 2940 | // We set Block to NULL to allow lazy creation of a new block (if necessary). |
| 2941 | Block = nullptr; |
| 2942 | |
| 2943 | return SEHExceptBlock; |
| 2944 | } |
| 2945 | |
| 2946 | CFGBlock *CFGBuilder::VisitSEHFinallyStmt(SEHFinallyStmt *FS) { |
| 2947 | return VisitCompoundStmt(FS->getBlock()); |
| 2948 | } |
| 2949 | |
| 2950 | CFGBlock *CFGBuilder::VisitSEHLeaveStmt(SEHLeaveStmt *LS) { |
| 2951 | // "__leave" is a control-flow statement. Thus we stop processing the current |
| 2952 | // block. |
| 2953 | if (badCFG) |
| 2954 | return nullptr; |
| 2955 | |
| 2956 | // Now create a new block that ends with the __leave statement. |
| 2957 | Block = createBlock(false); |
| 2958 | Block->setTerminator(LS); |
| 2959 | |
| 2960 | // If there is no target for the __leave, then we are looking at an incomplete |
| 2961 | // AST. This means that the CFG cannot be constructed. |
| 2962 | if (SEHLeaveJumpTarget.block) { |
| 2963 | addAutomaticObjHandling(ScopePos, SEHLeaveJumpTarget.scopePosition, LS); |
| 2964 | addSuccessor(Block, SEHLeaveJumpTarget.block); |
| 2965 | } else |
| 2966 | badCFG = true; |
| 2967 | |
| 2968 | return Block; |
| 2969 | } |
| 2970 | |
| 2971 | CFGBlock *CFGBuilder::VisitSEHTryStmt(SEHTryStmt *Terminator) { |
| 2972 | // "__try"/"__except"/"__finally" is a control-flow statement. Thus we stop |
| 2973 | // processing the current block. |
| 2974 | CFGBlock *SEHTrySuccessor = nullptr; |
| 2975 | |
| 2976 | if (Block) { |
| 2977 | if (badCFG) |
| 2978 | return nullptr; |
| 2979 | SEHTrySuccessor = Block; |
| 2980 | } else SEHTrySuccessor = Succ; |
| 2981 | |
| 2982 | // FIXME: Implement __finally support. |
| 2983 | if (Terminator->getFinallyHandler()) |
| 2984 | return NYS(); |
| 2985 | |
| 2986 | CFGBlock *PrevSEHTryTerminatedBlock = TryTerminatedBlock; |
| 2987 | |
| 2988 | // Create a new block that will contain the __try statement. |
| 2989 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
| 2990 | |
| 2991 | // Add the terminator in the __try block. |
| 2992 | NewTryTerminatedBlock->setTerminator(Terminator); |
| 2993 | |
| 2994 | if (SEHExceptStmt *Except = Terminator->getExceptHandler()) { |
| 2995 | // The code after the try is the implicit successor if there's an __except. |
| 2996 | Succ = SEHTrySuccessor; |
| 2997 | Block = nullptr; |
| 2998 | CFGBlock *ExceptBlock = VisitSEHExceptStmt(Except); |
| 2999 | if (!ExceptBlock) |
| 3000 | return nullptr; |
| 3001 | // Add this block to the list of successors for the block with the try |
| 3002 | // statement. |
| 3003 | addSuccessor(NewTryTerminatedBlock, ExceptBlock); |
| 3004 | } |
| 3005 | if (PrevSEHTryTerminatedBlock) |
| 3006 | addSuccessor(NewTryTerminatedBlock, PrevSEHTryTerminatedBlock); |
| 3007 | else |
| 3008 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
| 3009 | |
| 3010 | // The code after the try is the implicit successor. |
| 3011 | Succ = SEHTrySuccessor; |
| 3012 | |
| 3013 | // Save the current "__try" context. |
| 3014 | SaveAndRestore<CFGBlock *> save_try(TryTerminatedBlock, |
| 3015 | NewTryTerminatedBlock); |
| 3016 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
| 3017 | |
| 3018 | // Save the current value for the __leave target. |
| 3019 | // All __leaves should go to the code following the __try |
| 3020 | // (FIXME: or if the __try has a __finally, to the __finally.) |
| 3021 | SaveAndRestore<JumpTarget> save_break(SEHLeaveJumpTarget); |
| 3022 | SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos); |
| 3023 | |
| 3024 | assert(Terminator->getTryBlock() && "__try must contain a non-NULL body"); |
| 3025 | Block = nullptr; |
| 3026 | return addStmt(Terminator->getTryBlock()); |
| 3027 | } |
| 3028 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3029 | CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3030 | // Get the block of the labeled statement. Add it to our map. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3031 | addStmt(L->getSubStmt()); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 3032 | CFGBlock *LabelBlock = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3033 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3034 | if (!LabelBlock) // This can happen when the body is empty, i.e. |
| 3035 | LabelBlock = createBlock(); // scopes that only contains NullStmts. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3036 | |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 3037 | assert(LabelMap.find(L->getDecl()) == LabelMap.end() && |
| 3038 | "label already in map"); |
| 3039 | LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3040 | |
| 3041 | // Labels partition blocks, so this is the end of the basic block we were |
| 3042 | // processing (L is the block's label). Because this is label (and we have |
| 3043 | // already processed the substatement) there is no extra control-flow to worry |
| 3044 | // about. |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3045 | LabelBlock->setLabel(L); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3046 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3047 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3048 | |
| 3049 | // 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] | 3050 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3051 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3052 | // This block is now the implicit successor of other blocks. |
| 3053 | Succ = LabelBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3054 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3055 | return LabelBlock; |
| 3056 | } |
| 3057 | |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 3058 | CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) { |
| 3059 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 3060 | for (const BlockDecl::Capture &CI : E->getBlockDecl()->captures()) { |
| 3061 | if (Expr *CopyExpr = CI.getCopyExpr()) { |
| 3062 | CFGBlock *Tmp = Visit(CopyExpr); |
| 3063 | if (Tmp) |
| 3064 | LastBlock = Tmp; |
| 3065 | } |
| 3066 | } |
| 3067 | return LastBlock; |
| 3068 | } |
| 3069 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 3070 | CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) { |
| 3071 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 3072 | for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(), |
| 3073 | et = E->capture_init_end(); it != et; ++it) { |
| 3074 | if (Expr *Init = *it) { |
| 3075 | CFGBlock *Tmp = Visit(Init); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3076 | if (Tmp) |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 3077 | LastBlock = Tmp; |
| 3078 | } |
| 3079 | } |
| 3080 | return LastBlock; |
| 3081 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3082 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3083 | CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3084 | // Goto is a control-flow statement. Thus we stop processing the current |
| 3085 | // block and create a new one. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3086 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3087 | Block = createBlock(false); |
| 3088 | Block->setTerminator(G); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3089 | |
| 3090 | // 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] | 3091 | LabelMapTy::iterator I = LabelMap.find(G->getLabel()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3092 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3093 | if (I == LabelMap.end()) |
| 3094 | // We will need to backpatch this block later. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3095 | BackpatchBlocks.push_back(JumpSource(Block, ScopePos)); |
| 3096 | else { |
| 3097 | JumpTarget JT = I->second; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3098 | addAutomaticObjHandling(ScopePos, JT.scopePosition, G); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3099 | addSuccessor(Block, JT.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3100 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3101 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3102 | return Block; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3103 | } |
| 3104 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3105 | CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3106 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3107 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3108 | // Save local scope position because in case of condition variable ScopePos |
| 3109 | // won't be restored when traversing AST. |
| 3110 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3111 | |
| 3112 | // Create local scope for init statement and possible condition variable. |
| 3113 | // Add destructor for init statement and condition variable. |
| 3114 | // Store scope position for continue statement. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3115 | if (Stmt *Init = F->getInit()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3116 | addLocalScopeForStmt(Init); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3117 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
| 3118 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3119 | if (VarDecl *VD = F->getConditionVariable()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3120 | addLocalScopeForVarDecl(VD); |
| 3121 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 3122 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3123 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), F); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3124 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3125 | addLoopExit(F); |
| 3126 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 3127 | // "for" is a control-flow statement. Thus we stop processing the current |
| 3128 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3129 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3130 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3131 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3132 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3133 | } else |
| 3134 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3135 | |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 3136 | // Save the current value for the break targets. |
| 3137 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3138 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3139 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 3140 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3141 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3142 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3143 | // Now create the loop body. |
| 3144 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3145 | assert(F->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3146 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3147 | // Save the current values for Block, Succ, continue and break targets. |
| 3148 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3149 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3150 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3151 | // Create an empty block to represent the transition block for looping back |
| 3152 | // to the head of the loop. If we have increment code, it will |
| 3153 | // go in this block as well. |
| 3154 | Block = Succ = TransitionBlock = createBlock(false); |
| 3155 | TransitionBlock->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3156 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3157 | if (Stmt *I = F->getInc()) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3158 | // Generate increment code in its own basic block. This is the target of |
| 3159 | // continue statements. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3160 | Succ = addStmt(I); |
Ted Kremenek | b0746ca | 2008-09-04 21:48:47 +0000 | [diff] [blame] | 3161 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3162 | |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3163 | // Finish up the increment (or empty) block if it hasn't been already. |
| 3164 | if (Block) { |
| 3165 | assert(Block == Succ); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3166 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3167 | return nullptr; |
| 3168 | Block = nullptr; |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3169 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3170 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3171 | // The starting block for the loop increment is the block that should |
| 3172 | // represent the 'loop target' for looping back to the start of the loop. |
| 3173 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 3174 | ContinueJumpTarget.block->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3175 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3176 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3177 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, F); |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3178 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3179 | // If body is not a compound statement create implicit scope |
| 3180 | // and add destructors. |
| 3181 | if (!isa<CompoundStmt>(F->getBody())) |
| 3182 | addLocalScopeAndDtors(F->getBody()); |
| 3183 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3184 | // Now populate the body block, and in the process create new blocks as we |
| 3185 | // walk the body of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3186 | BodyBlock = addStmt(F->getBody()); |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3187 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3188 | if (!BodyBlock) { |
| 3189 | // In the case of "for (...;...;...);" we can have a null BodyBlock. |
| 3190 | // Use the continue jump target as the proxy for the body. |
| 3191 | BodyBlock = ContinueJumpTarget.block; |
| 3192 | } |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3193 | else if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3194 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3195 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3196 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3197 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3198 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3199 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3200 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3201 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3202 | do { |
| 3203 | Expr *C = F->getCond(); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3204 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3205 | |
| 3206 | // Specially handle logical operators, which have a slightly |
| 3207 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3208 | if (BinaryOperator *Cond = |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3209 | dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : nullptr)) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3210 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 3211 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3212 | VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor); |
| 3213 | break; |
| 3214 | } |
| 3215 | |
| 3216 | // The default case when not handling logical operators. |
| 3217 | EntryConditionBlock = ExitConditionBlock = createBlock(false); |
| 3218 | ExitConditionBlock->setTerminator(F); |
| 3219 | |
| 3220 | // See if this is a known constant. |
| 3221 | TryResult KnownVal(true); |
| 3222 | |
| 3223 | if (C) { |
| 3224 | // Now add the actual condition to the condition block. |
| 3225 | // Because the condition itself may contain control-flow, new blocks may |
| 3226 | // be created. Thus we update "Succ" after adding the condition. |
| 3227 | Block = ExitConditionBlock; |
| 3228 | EntryConditionBlock = addStmt(C); |
| 3229 | |
| 3230 | // If this block contains a condition variable, add both the condition |
| 3231 | // variable and initializer to the CFG. |
| 3232 | if (VarDecl *VD = F->getConditionVariable()) { |
| 3233 | if (Expr *Init = VD->getInit()) { |
| 3234 | autoCreateBlock(); |
Artem Dergachev | ab9b78b | 2018-04-19 23:30:15 +0000 | [diff] [blame] | 3235 | const DeclStmt *DS = F->getConditionVariableDeclStmt(); |
| 3236 | assert(DS->isSingleDecl()); |
| 3237 | findConstructionContexts( |
Artem Dergachev | 1f8cb3a | 2018-07-31 21:12:42 +0000 | [diff] [blame] | 3238 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS), |
Artem Dergachev | ab9b78b | 2018-04-19 23:30:15 +0000 | [diff] [blame] | 3239 | Init); |
| 3240 | appendStmt(Block, DS); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3241 | EntryConditionBlock = addStmt(Init); |
| 3242 | assert(Block == EntryConditionBlock); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3243 | maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3244 | } |
| 3245 | } |
| 3246 | |
| 3247 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3248 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3249 | |
| 3250 | KnownVal = tryEvaluateBool(C); |
| 3251 | } |
| 3252 | |
| 3253 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3254 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3255 | // Link up the condition block with the code that follows the loop. (the |
| 3256 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3257 | addSuccessor(ExitConditionBlock, |
| 3258 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3259 | } while (false); |
| 3260 | |
| 3261 | // Link up the loop-back block to the entry condition block. |
| 3262 | addSuccessor(TransitionBlock, EntryConditionBlock); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3263 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3264 | // The condition block is the implicit successor for any code above the loop. |
| 3265 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3266 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3267 | // If the loop contains initialization, create a new block for those |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3268 | // statements. This block can also contain statements that precede the loop. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3269 | if (Stmt *I = F->getInit()) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3270 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3271 | ScopePos = LoopBeginScopePos; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3272 | Block = createBlock(); |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3273 | return addStmt(I); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3274 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3275 | |
| 3276 | // There is no loop initialization. We are thus basically a while loop. |
| 3277 | // NULL out Block to force lazy block construction. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3278 | Block = nullptr; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3279 | Succ = EntryConditionBlock; |
| 3280 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3281 | } |
| 3282 | |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 3283 | CFGBlock * |
| 3284 | CFGBuilder::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE, |
| 3285 | AddStmtChoice asc) { |
| 3286 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 3287 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), MTE), |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 3288 | MTE->getTemporary()); |
| 3289 | |
| 3290 | return VisitStmt(MTE, asc); |
| 3291 | } |
| 3292 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3293 | CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3294 | if (asc.alwaysAdd(*this, M)) { |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3295 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3296 | appendStmt(Block, M); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3297 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3298 | return Visit(M->getBase()); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3299 | } |
| 3300 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3301 | CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3302 | // Objective-C fast enumeration 'for' statements: |
| 3303 | // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC |
| 3304 | // |
| 3305 | // for ( Type newVariable in collection_expression ) { statements } |
| 3306 | // |
| 3307 | // becomes: |
| 3308 | // |
| 3309 | // prologue: |
| 3310 | // 1. collection_expression |
| 3311 | // T. jump to loop_entry |
| 3312 | // loop_entry: |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3313 | // 1. side-effects of element expression |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3314 | // 1. ObjCForCollectionStmt [performs binding to newVariable] |
| 3315 | // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil] |
| 3316 | // TB: |
| 3317 | // statements |
| 3318 | // T. jump to loop_entry |
| 3319 | // FB: |
| 3320 | // what comes after |
| 3321 | // |
| 3322 | // and |
| 3323 | // |
| 3324 | // Type existingItem; |
| 3325 | // for ( existingItem in expression ) { statements } |
| 3326 | // |
| 3327 | // becomes: |
| 3328 | // |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3329 | // the same with newVariable replaced with existingItem; the binding works |
| 3330 | // the same except that for one ObjCForCollectionStmt::getElement() returns |
| 3331 | // a DeclStmt and the other returns a DeclRefExpr. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3332 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3333 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3334 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3335 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3336 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3337 | return nullptr; |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3338 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3339 | Block = nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3340 | } else |
| 3341 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3342 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3343 | // Build the condition blocks. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3344 | CFGBlock *ExitConditionBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3345 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3346 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3347 | ExitConditionBlock->setTerminator(S); |
| 3348 | |
| 3349 | // The last statement in the block should be the ObjCForCollectionStmt, which |
| 3350 | // performs the actual binding to 'element' and determines if there are any |
| 3351 | // more items in the collection. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3352 | appendStmt(ExitConditionBlock, S); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3353 | Block = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3354 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3355 | // 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] | 3356 | // 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] | 3357 | // the CFG unless it contains control-flow. |
Ted Kremenek | c14efa7 | 2011-08-17 21:04:19 +0000 | [diff] [blame] | 3358 | CFGBlock *EntryConditionBlock = Visit(S->getElement(), |
| 3359 | AddStmtChoice::NotAlwaysAdd); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3360 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3361 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3362 | return nullptr; |
| 3363 | Block = nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3364 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3365 | |
| 3366 | // The condition block is the implicit successor for the loop body as well as |
| 3367 | // any code above the loop. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3368 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3369 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3370 | // Now create the true branch. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3371 | { |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3372 | // Save the current values for Succ, continue and break targets. |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3373 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3374 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3375 | save_break(BreakJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3376 | |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3377 | // Add an intermediate block between the BodyBlock and the |
| 3378 | // EntryConditionBlock to represent the "loop back" transition, for looping |
| 3379 | // back to the head of the loop. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3380 | CFGBlock *LoopBackBlock = nullptr; |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3381 | Succ = LoopBackBlock = createBlock(); |
| 3382 | LoopBackBlock->setLoopTarget(S); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3383 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3384 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3385 | ContinueJumpTarget = JumpTarget(Succ, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3386 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3387 | CFGBlock *BodyBlock = addStmt(S->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3388 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3389 | if (!BodyBlock) |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3390 | BodyBlock = ContinueJumpTarget.block; // can happen for "for (X in Y) ;" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3391 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3392 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3393 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3394 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3395 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3396 | // This new body block is a successor to our "exit" condition block. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3397 | addSuccessor(ExitConditionBlock, BodyBlock); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3398 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3399 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3400 | // Link up the condition block with the code that follows the loop. |
| 3401 | // (the false branch). |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3402 | addSuccessor(ExitConditionBlock, LoopSuccessor); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3403 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3404 | // Now create a prologue block to contain the collection expression. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3405 | Block = createBlock(); |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3406 | return addStmt(S->getCollection()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3407 | } |
| 3408 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 3409 | CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) { |
| 3410 | // Inline the body. |
| 3411 | return addStmt(S->getSubStmt()); |
| 3412 | // TODO: consider adding cleanups for the end of @autoreleasepool scope. |
| 3413 | } |
| 3414 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3415 | CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) { |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3416 | // FIXME: Add locking 'primitives' to CFG for @synchronized. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3417 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3418 | // Inline the body. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3419 | CFGBlock *SyncBlock = addStmt(S->getSynchBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3420 | |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3421 | // The sync body starts its own basic block. This makes it a little easier |
| 3422 | // for diagnostic clients. |
| 3423 | if (SyncBlock) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3424 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3425 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3426 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3427 | Block = nullptr; |
Ted Kremenek | ecc31c9 | 2010-05-13 16:38:08 +0000 | [diff] [blame] | 3428 | Succ = SyncBlock; |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3429 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3430 | |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3431 | // Add the @synchronized to the CFG. |
| 3432 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3433 | appendStmt(Block, S); |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3434 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3435 | // Inline the sync expression. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3436 | return addStmt(S->getSynchExpr()); |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3437 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3438 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3439 | CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3440 | // FIXME |
Ted Kremenek | 89be652 | 2009-04-07 04:26:02 +0000 | [diff] [blame] | 3441 | return NYS(); |
Ted Kremenek | 89cc8ea | 2009-03-30 22:29:21 +0000 | [diff] [blame] | 3442 | } |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3443 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3444 | CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) { |
| 3445 | autoCreateBlock(); |
| 3446 | |
| 3447 | // Add the PseudoObject as the last thing. |
| 3448 | appendStmt(Block, E); |
| 3449 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3450 | CFGBlock *lastBlock = Block; |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3451 | |
| 3452 | // Before that, evaluate all of the semantics in order. In |
| 3453 | // CFG-land, that means appending them in reverse order. |
| 3454 | for (unsigned i = E->getNumSemanticExprs(); i != 0; ) { |
| 3455 | Expr *Semantic = E->getSemanticExpr(--i); |
| 3456 | |
| 3457 | // If the semantic is an opaque value, we're being asked to bind |
| 3458 | // it to its source expression. |
| 3459 | if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic)) |
| 3460 | Semantic = OVE->getSourceExpr(); |
| 3461 | |
| 3462 | if (CFGBlock *B = Visit(Semantic)) |
| 3463 | lastBlock = B; |
| 3464 | } |
| 3465 | |
| 3466 | return lastBlock; |
| 3467 | } |
| 3468 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3469 | CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3470 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3471 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3472 | // Save local scope position because in case of condition variable ScopePos |
| 3473 | // won't be restored when traversing AST. |
| 3474 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3475 | |
| 3476 | // Create local scope for possible condition variable. |
| 3477 | // Store scope position for continue statement. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3478 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3479 | if (VarDecl *VD = W->getConditionVariable()) { |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3480 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3481 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3482 | } |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3483 | addLoopExit(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3484 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 3485 | // "while" is a control-flow statement. Thus we stop processing the current |
| 3486 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3487 | if (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; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3490 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3491 | Block = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3492 | } else { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3493 | LoopSuccessor = Succ; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3494 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3495 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3496 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3497 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3498 | // Process the loop body. |
| 3499 | { |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3500 | assert(W->getBody()); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3501 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3502 | // Save the current values for Block, Succ, continue and break targets. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3503 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3504 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3505 | save_break(BreakJumpTarget); |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3506 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3507 | // Create an empty block to represent the transition block for looping back |
| 3508 | // to the head of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3509 | Succ = TransitionBlock = createBlock(false); |
| 3510 | TransitionBlock->setLoopTarget(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3511 | ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3512 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3513 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3514 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3515 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3516 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3517 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3518 | |
| 3519 | // If body is not a compound statement create implicit scope |
| 3520 | // and add destructors. |
| 3521 | if (!isa<CompoundStmt>(W->getBody())) |
| 3522 | addLocalScopeAndDtors(W->getBody()); |
| 3523 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3524 | // 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] | 3525 | BodyBlock = addStmt(W->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3526 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3527 | if (!BodyBlock) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3528 | BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;" |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3529 | else if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3530 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3531 | } |
| 3532 | |
| 3533 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3534 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3535 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3536 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3537 | |
| 3538 | do { |
| 3539 | Expr *C = W->getCond(); |
| 3540 | |
| 3541 | // Specially handle logical operators, which have a slightly |
| 3542 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3543 | if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens())) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3544 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 3545 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
| 3546 | VisitLogicalOperator(Cond, W, BodyBlock, LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3547 | break; |
| 3548 | } |
| 3549 | |
| 3550 | // The default case when not handling logical operators. |
Ted Kremenek | 451c4d5 | 2012-10-12 22:56:26 +0000 | [diff] [blame] | 3551 | ExitConditionBlock = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3552 | ExitConditionBlock->setTerminator(W); |
| 3553 | |
| 3554 | // Now add the actual condition to the condition block. |
| 3555 | // Because the condition itself may contain control-flow, new blocks may |
| 3556 | // be created. Thus we update "Succ" after adding the condition. |
| 3557 | Block = ExitConditionBlock; |
| 3558 | Block = EntryConditionBlock = addStmt(C); |
| 3559 | |
| 3560 | // If this block contains a condition variable, add both the condition |
| 3561 | // variable and initializer to the CFG. |
| 3562 | if (VarDecl *VD = W->getConditionVariable()) { |
| 3563 | if (Expr *Init = VD->getInit()) { |
| 3564 | autoCreateBlock(); |
Artem Dergachev | ab9b78b | 2018-04-19 23:30:15 +0000 | [diff] [blame] | 3565 | const DeclStmt *DS = W->getConditionVariableDeclStmt(); |
| 3566 | assert(DS->isSingleDecl()); |
| 3567 | findConstructionContexts( |
| 3568 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), |
| 3569 | const_cast<DeclStmt *>(DS)), |
| 3570 | Init); |
| 3571 | appendStmt(Block, DS); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3572 | EntryConditionBlock = addStmt(Init); |
| 3573 | assert(Block == EntryConditionBlock); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3574 | maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3575 | } |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3576 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3577 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3578 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3579 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3580 | |
| 3581 | // See if this is a known constant. |
| 3582 | const TryResult& KnownVal = tryEvaluateBool(C); |
| 3583 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3584 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3585 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3586 | // Link up the condition block with the code that follows the loop. (the |
| 3587 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3588 | addSuccessor(ExitConditionBlock, |
| 3589 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3590 | } while(false); |
| 3591 | |
| 3592 | // Link up the loop-back block to the entry condition block. |
| 3593 | addSuccessor(TransitionBlock, EntryConditionBlock); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3594 | |
| 3595 | // There can be no more statements in the condition block since we loop back |
| 3596 | // 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] | 3597 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3598 | |
Ted Kremenek | 1ce53c4 | 2009-12-24 01:34:10 +0000 | [diff] [blame] | 3599 | // Return the condition block, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3600 | Succ = EntryConditionBlock; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3601 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3602 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3603 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3604 | CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3605 | // FIXME: For now we pretend that @catch and the code it contains does not |
| 3606 | // exit. |
| 3607 | return Block; |
| 3608 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3609 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3610 | CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3611 | // FIXME: This isn't complete. We basically treat @throw like a return |
| 3612 | // statement. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3613 | |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3614 | // 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] | 3615 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3616 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3617 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3618 | // Create the new block. |
| 3619 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3620 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3621 | // The Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3622 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3623 | |
| 3624 | // Add the statement to the block. This may create new blocks if S contains |
| 3625 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3626 | return VisitStmt(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3627 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3628 | |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 3629 | CFGBlock *CFGBuilder::VisitObjCMessageExpr(ObjCMessageExpr *ME, |
| 3630 | AddStmtChoice asc) { |
| 3631 | findConstructionContextsForArguments(ME); |
| 3632 | |
| 3633 | autoCreateBlock(); |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 3634 | appendObjCMessage(Block, ME); |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 3635 | |
| 3636 | return VisitChildren(ME); |
| 3637 | } |
| 3638 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3639 | CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3640 | // 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] | 3641 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3642 | return nullptr; |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3643 | |
| 3644 | // Create the new block. |
| 3645 | Block = createBlock(false); |
| 3646 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3647 | if (TryTerminatedBlock) |
| 3648 | // The current try statement is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3649 | addSuccessor(Block, TryTerminatedBlock); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3650 | else |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3651 | // otherwise the Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3652 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3653 | |
| 3654 | // Add the statement to the block. This may create new blocks if S contains |
| 3655 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3656 | return VisitStmt(T, AddStmtChoice::AlwaysAdd); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3657 | } |
| 3658 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3659 | CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3660 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3661 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3662 | addLoopExit(D); |
| 3663 | |
Mike Stump | 8d50b6a | 2009-07-21 01:27:50 +0000 | [diff] [blame] | 3664 | // "do...while" is a control-flow statement. Thus we stop processing the |
| 3665 | // current block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3666 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3667 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3668 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3669 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3670 | } else |
| 3671 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3672 | |
| 3673 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3674 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3675 | // evaluate the condition. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3676 | CFGBlock *ExitConditionBlock = createBlock(false); |
| 3677 | CFGBlock *EntryConditionBlock = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3678 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3679 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3680 | ExitConditionBlock->setTerminator(D); |
| 3681 | |
| 3682 | // Now add the actual condition to the condition block. Because the condition |
| 3683 | // itself may contain control-flow, new blocks may be created. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3684 | if (Stmt *C = D->getCond()) { |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3685 | Block = ExitConditionBlock; |
| 3686 | EntryConditionBlock = addStmt(C); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3687 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3688 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3689 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3690 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3691 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3692 | |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3693 | // The condition block is the implicit successor for the loop body. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3694 | Succ = EntryConditionBlock; |
| 3695 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3696 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3697 | const TryResult &KnownVal = tryEvaluateBool(D->getCond()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3698 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3699 | // Process the loop body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3700 | CFGBlock *BodyBlock = nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3701 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3702 | assert(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3703 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3704 | // Save the current values for Block, Succ, and continue and break targets |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3705 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3706 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
| 3707 | save_break(BreakJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3708 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3709 | // All continues within this loop should go to the condition block |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3710 | ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3711 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3712 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3713 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3714 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3715 | // NULL out Block to force lazy instantiation of blocks for the body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3716 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3717 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3718 | // If body is not a compound statement create implicit scope |
| 3719 | // and add destructors. |
| 3720 | if (!isa<CompoundStmt>(D->getBody())) |
| 3721 | addLocalScopeAndDtors(D->getBody()); |
| 3722 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3723 | // 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] | 3724 | BodyBlock = addStmt(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3725 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3726 | if (!BodyBlock) |
Ted Kremenek | 39321aa | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 3727 | BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3728 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3729 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3730 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3731 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3732 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3733 | // Add an intermediate block between the BodyBlock and the |
| 3734 | // ExitConditionBlock to represent the "loop back" transition. Create an |
| 3735 | // empty block to represent the transition block for looping back to the |
| 3736 | // head of the loop. |
| 3737 | // FIXME: Can we do this more efficiently without adding another block? |
| 3738 | Block = nullptr; |
| 3739 | Succ = BodyBlock; |
| 3740 | CFGBlock *LoopBackBlock = createBlock(); |
| 3741 | LoopBackBlock->setLoopTarget(D); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3742 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3743 | if (!KnownVal.isFalse()) |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3744 | // Add the loop body entry as a successor to the condition. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3745 | addSuccessor(ExitConditionBlock, LoopBackBlock); |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3746 | else |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3747 | addSuccessor(ExitConditionBlock, nullptr); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3748 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3749 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3750 | // Link up the condition block with the code that follows the loop. |
| 3751 | // (the false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3752 | addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3753 | |
| 3754 | // There can be no more statements in the body block(s) since we loop back to |
| 3755 | // the body. NULL out Block to force lazy creation of another block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3756 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3757 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3758 | // Return the loop body, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3759 | Succ = BodyBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3760 | return BodyBlock; |
| 3761 | } |
| 3762 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3763 | CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3764 | // "continue" is a control-flow statement. Thus we stop processing the |
| 3765 | // current block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3766 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3767 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3768 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3769 | // Now create a new block that ends with the continue statement. |
| 3770 | Block = createBlock(false); |
| 3771 | Block->setTerminator(C); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3772 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3773 | // 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] | 3774 | // incomplete AST. This means the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3775 | if (ContinueJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3776 | addAutomaticObjHandling(ScopePos, ContinueJumpTarget.scopePosition, C); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3777 | addSuccessor(Block, ContinueJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3778 | } else |
Ted Kremenek | 882cf06 | 2009-04-07 18:53:24 +0000 | [diff] [blame] | 3779 | badCFG = true; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3780 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3781 | return Block; |
| 3782 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3783 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3784 | CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 3785 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3786 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3787 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3788 | appendStmt(Block, E); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3789 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3790 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3791 | // VLA types have expressions that must be evaluated. |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3792 | CFGBlock *lastBlock = Block; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3793 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3794 | if (E->isArgumentType()) { |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 3795 | for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3796 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3797 | lastBlock = addStmt(VA->getSizeExpr()); |
Ted Kremenek | 84a1ca5 | 2011-08-06 00:30:00 +0000 | [diff] [blame] | 3798 | } |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3799 | return lastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3800 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3801 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3802 | /// VisitStmtExpr - Utility method to handle (nested) statement |
| 3803 | /// expressions (a GCC extension). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3804 | CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3805 | if (asc.alwaysAdd(*this, SE)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3806 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3807 | appendStmt(Block, SE); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3808 | } |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3809 | return VisitCompoundStmt(SE->getSubStmt()); |
| 3810 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3811 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3812 | CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3813 | // "switch" is a control-flow statement. Thus we stop processing the current |
| 3814 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3815 | CFGBlock *SwitchSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3816 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3817 | // Save local scope position because in case of condition variable ScopePos |
| 3818 | // won't be restored when traversing AST. |
| 3819 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3820 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3821 | // Create local scope for C++17 switch init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3822 | if (Stmt *Init = Terminator->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3823 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3824 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3825 | // Create local scope for possible condition variable. |
| 3826 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3827 | if (VarDecl *VD = Terminator->getConditionVariable()) |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3828 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3829 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3830 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), Terminator); |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3831 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3832 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3833 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3834 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3835 | SwitchSuccessor = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3836 | } else SwitchSuccessor = Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3837 | |
| 3838 | // Save the current "switch" context. |
| 3839 | SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock), |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3840 | save_default(DefaultCaseBlock); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3841 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3842 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3843 | // Set the "default" case to be the block after the switch statement. If the |
| 3844 | // switch statement contains a "default:", this value will be overwritten with |
| 3845 | // the block for that code. |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3846 | DefaultCaseBlock = SwitchSuccessor; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3847 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3848 | // Create a new block that will contain the switch statement. |
| 3849 | SwitchTerminatedBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3850 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3851 | // Now process the switch body. The code after the switch is the implicit |
| 3852 | // successor. |
| 3853 | Succ = SwitchSuccessor; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3854 | BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3855 | |
| 3856 | // When visiting the body, the case statements should automatically get linked |
| 3857 | // up to the switch. We also don't keep a pointer to the body, since all |
| 3858 | // control-flow from the switch goes to case/default statements. |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3859 | assert(Terminator->getBody() && "switch must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3860 | Block = nullptr; |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3861 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3862 | // For pruning unreachable case statements, save the current state |
| 3863 | // for tracking the condition value. |
| 3864 | SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered, |
| 3865 | false); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3866 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3867 | // Determine if the switch condition can be explicitly evaluated. |
| 3868 | assert(Terminator->getCond() && "switch condition must be non-NULL"); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3869 | Expr::EvalResult result; |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3870 | bool b = tryEvaluate(Terminator->getCond(), result); |
| 3871 | SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond, |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3872 | b ? &result : nullptr); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3873 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3874 | // If body is not a compound statement create implicit scope |
| 3875 | // and add destructors. |
| 3876 | if (!isa<CompoundStmt>(Terminator->getBody())) |
| 3877 | addLocalScopeAndDtors(Terminator->getBody()); |
| 3878 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3879 | addStmt(Terminator->getBody()); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3880 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3881 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3882 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3883 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3884 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3885 | // 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] | 3886 | // following the switch body. Moreover, take into account if all the |
| 3887 | // 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] | 3888 | // |
| 3889 | // Note: We add a successor to a switch that is considered covered yet has no |
| 3890 | // case statements if the enumeration has no enumerators. |
| 3891 | bool SwitchAlwaysHasSuccessor = false; |
| 3892 | SwitchAlwaysHasSuccessor |= switchExclusivelyCovered; |
| 3893 | SwitchAlwaysHasSuccessor |= Terminator->isAllEnumCasesCovered() && |
| 3894 | Terminator->getSwitchCaseList(); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3895 | addSuccessor(SwitchTerminatedBlock, DefaultCaseBlock, |
| 3896 | !SwitchAlwaysHasSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3897 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3898 | // Add the terminator and condition in the switch block. |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3899 | SwitchTerminatedBlock->setTerminator(Terminator); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3900 | Block = SwitchTerminatedBlock; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3901 | CFGBlock *LastBlock = addStmt(Terminator->getCond()); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3902 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3903 | // If the SwitchStmt contains a condition variable, add both the |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 3904 | // SwitchStmt and the condition variable initialization to the CFG. |
| 3905 | if (VarDecl *VD = Terminator->getConditionVariable()) { |
| 3906 | if (Expr *Init = VD->getInit()) { |
| 3907 | autoCreateBlock(); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 3908 | appendStmt(Block, Terminator->getConditionVariableDeclStmt()); |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3909 | LastBlock = addStmt(Init); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3910 | maybeAddScopeBeginForVarDecl(LastBlock, VD, Init); |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 3911 | } |
| 3912 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3913 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3914 | // Finally, if the SwitchStmt contains a C++17 init-stmt, add it to the CFG. |
| 3915 | if (Stmt *Init = Terminator->getInit()) { |
| 3916 | autoCreateBlock(); |
| 3917 | LastBlock = addStmt(Init); |
| 3918 | } |
| 3919 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3920 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3921 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3922 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3923 | static bool shouldAddCase(bool &switchExclusivelyCovered, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3924 | const Expr::EvalResult *switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3925 | const CaseStmt *CS, |
| 3926 | ASTContext &Ctx) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3927 | if (!switchCond) |
| 3928 | return true; |
| 3929 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3930 | bool addCase = false; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3931 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3932 | if (!switchExclusivelyCovered) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3933 | if (switchCond->Val.isInt()) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3934 | // Evaluate the LHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 3935 | const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx); |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3936 | const llvm::APSInt &condInt = switchCond->Val.getInt(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3937 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3938 | if (condInt == lhsInt) { |
| 3939 | addCase = true; |
| 3940 | switchExclusivelyCovered = true; |
| 3941 | } |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 3942 | else if (condInt > lhsInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3943 | if (const Expr *RHS = CS->getRHS()) { |
| 3944 | // Evaluate the RHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 3945 | const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx); |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 3946 | if (V2 >= condInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3947 | addCase = true; |
| 3948 | switchExclusivelyCovered = true; |
| 3949 | } |
| 3950 | } |
| 3951 | } |
| 3952 | } |
| 3953 | else |
| 3954 | addCase = true; |
| 3955 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3956 | return addCase; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3957 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3958 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3959 | CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3960 | // CaseStmts are essentially labels, so they are the first statement in a |
| 3961 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3962 | CFGBlock *TopBlock = nullptr, *LastBlock = nullptr; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3963 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3964 | if (Stmt *Sub = CS->getSubStmt()) { |
| 3965 | // For deeply nested chains of CaseStmts, instead of doing a recursion |
| 3966 | // (which can blow out the stack), manually unroll and create blocks |
| 3967 | // along the way. |
| 3968 | while (isa<CaseStmt>(Sub)) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3969 | CFGBlock *currentBlock = createBlock(false); |
| 3970 | currentBlock->setLabel(CS); |
Ted Kremenek | 55e91e8 | 2007-08-30 18:48:11 +0000 | [diff] [blame] | 3971 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3972 | if (TopBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3973 | addSuccessor(LastBlock, currentBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3974 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3975 | TopBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3976 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3977 | addSuccessor(SwitchTerminatedBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3978 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3979 | CS, *Context) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3980 | ? currentBlock : nullptr); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3981 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3982 | LastBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3983 | CS = cast<CaseStmt>(Sub); |
| 3984 | Sub = CS->getSubStmt(); |
| 3985 | } |
| 3986 | |
| 3987 | addStmt(Sub); |
| 3988 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3989 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3990 | CFGBlock *CaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3991 | if (!CaseBlock) |
| 3992 | CaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3993 | |
| 3994 | // Cases statements partition blocks, so this is the top of the basic block we |
| 3995 | // were processing (the "case XXX:" is the label). |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3996 | CaseBlock->setLabel(CS); |
| 3997 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3998 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3999 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4000 | |
| 4001 | // Add this block to the list of successors for the block with the switch |
| 4002 | // statement. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4003 | assert(SwitchTerminatedBlock); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 4004 | addSuccessor(SwitchTerminatedBlock, CaseBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 4005 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 4006 | CS, *Context)); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4007 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4008 | // 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] | 4009 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4010 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4011 | if (TopBlock) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4012 | addSuccessor(LastBlock, CaseBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4013 | Succ = TopBlock; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4014 | } else { |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4015 | // This block is now the implicit successor of other blocks. |
| 4016 | Succ = CaseBlock; |
| 4017 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4018 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4019 | return Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4020 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4021 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4022 | CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4023 | if (Terminator->getSubStmt()) |
| 4024 | addStmt(Terminator->getSubStmt()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4025 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 4026 | DefaultCaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4027 | |
| 4028 | if (!DefaultCaseBlock) |
| 4029 | DefaultCaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4030 | |
| 4031 | // Default statements partition blocks, so this is the top of the basic block |
| 4032 | // we were processing (the "default:" is the label). |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4033 | DefaultCaseBlock->setLabel(Terminator); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4034 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4035 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4036 | return nullptr; |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 4037 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4038 | // Unlike case statements, we don't add the default block to the successors |
| 4039 | // for the switch statement immediately. This is done when we finish |
| 4040 | // processing the switch statement. This allows for the default case |
| 4041 | // (including a fall-through to the code after the switch statement) to always |
| 4042 | // be the last successor of a switch-terminated block. |
| 4043 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 4044 | // 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] | 4045 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4046 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 4047 | // This block is now the implicit successor of other blocks. |
| 4048 | Succ = DefaultCaseBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4049 | |
| 4050 | return DefaultCaseBlock; |
Ted Kremenek | 9682be1 | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 4051 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4052 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4053 | CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) { |
| 4054 | // "try"/"catch" is a control-flow statement. Thus we stop processing the |
| 4055 | // current block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4056 | CFGBlock *TrySuccessor = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4057 | |
| 4058 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4059 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4060 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4061 | TrySuccessor = Block; |
| 4062 | } else TrySuccessor = Succ; |
| 4063 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4064 | CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4065 | |
| 4066 | // Create a new block that will contain the try statement. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4067 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4068 | // Add the terminator in the try block. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4069 | NewTryTerminatedBlock->setTerminator(Terminator); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4070 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4071 | bool HasCatchAll = false; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4072 | for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) { |
| 4073 | // The code after the try is the implicit successor. |
| 4074 | Succ = TrySuccessor; |
| 4075 | CXXCatchStmt *CS = Terminator->getHandler(h); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4076 | if (CS->getExceptionDecl() == nullptr) { |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4077 | HasCatchAll = true; |
| 4078 | } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4079 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4080 | CFGBlock *CatchBlock = VisitCXXCatchStmt(CS); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4081 | if (!CatchBlock) |
| 4082 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4083 | // Add this block to the list of successors for the block with the try |
| 4084 | // statement. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4085 | addSuccessor(NewTryTerminatedBlock, CatchBlock); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4086 | } |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4087 | if (!HasCatchAll) { |
| 4088 | if (PrevTryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4089 | addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4090 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4091 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4092 | } |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4093 | |
| 4094 | // The code after the try is the implicit successor. |
| 4095 | Succ = TrySuccessor; |
| 4096 | |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4097 | // Save the current "try" context. |
Ted Kremenek | 6b9964d | 2011-08-23 23:05:07 +0000 | [diff] [blame] | 4098 | SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock); |
| 4099 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4100 | |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 4101 | assert(Terminator->getTryBlock() && "try must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4102 | Block = nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4103 | return addStmt(Terminator->getTryBlock()); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4104 | } |
| 4105 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4106 | CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4107 | // CXXCatchStmt are treated like labels, so they are the first statement in a |
| 4108 | // block. |
| 4109 | |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 4110 | // Save local scope position because in case of exception variable ScopePos |
| 4111 | // won't be restored when traversing AST. |
| 4112 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 4113 | |
| 4114 | // Create local scope for possible exception variable. |
| 4115 | // Store scope position. Add implicit destructor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4116 | if (VarDecl *VD = CS->getExceptionDecl()) { |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 4117 | LocalScope::const_iterator BeginScopePos = ScopePos; |
| 4118 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4119 | addAutomaticObjHandling(ScopePos, BeginScopePos, CS); |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 4120 | } |
| 4121 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4122 | if (CS->getHandlerBlock()) |
| 4123 | addStmt(CS->getHandlerBlock()); |
| 4124 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4125 | CFGBlock *CatchBlock = Block; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4126 | if (!CatchBlock) |
| 4127 | CatchBlock = createBlock(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 4128 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4129 | // CXXCatchStmt is more than just a label. They have semantic meaning |
| 4130 | // as well, as they implicitly "initialize" the catch variable. Add |
| 4131 | // it to the CFG as a CFGElement so that the control-flow of these |
| 4132 | // semantics gets captured. |
| 4133 | appendStmt(CatchBlock, CS); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4134 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4135 | // Also add the CXXCatchStmt as a label, to mirror handling of regular |
| 4136 | // labels. |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4137 | CatchBlock->setLabel(CS); |
| 4138 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4139 | // Bail out if the CFG is bad. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4140 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4141 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4142 | |
| 4143 | // 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] | 4144 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4145 | |
| 4146 | return CatchBlock; |
| 4147 | } |
| 4148 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4149 | CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) { |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4150 | // C++0x for-range statements are specified as [stmt.ranged]: |
| 4151 | // |
| 4152 | // { |
| 4153 | // auto && __range = range-init; |
| 4154 | // for ( auto __begin = begin-expr, |
| 4155 | // __end = end-expr; |
| 4156 | // __begin != __end; |
| 4157 | // ++__begin ) { |
| 4158 | // for-range-declaration = *__begin; |
| 4159 | // statement |
| 4160 | // } |
| 4161 | // } |
| 4162 | |
| 4163 | // Save local scope position before the addition of the implicit variables. |
| 4164 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 4165 | |
| 4166 | // Create local scopes and destructors for range, begin and end variables. |
| 4167 | if (Stmt *Range = S->getRangeStmt()) |
| 4168 | addLocalScopeForStmt(Range); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 4169 | if (Stmt *Begin = S->getBeginStmt()) |
| 4170 | addLocalScopeForStmt(Begin); |
| 4171 | if (Stmt *End = S->getEndStmt()) |
| 4172 | addLocalScopeForStmt(End); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4173 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), S); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4174 | |
| 4175 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 4176 | |
| 4177 | // "for" is a control-flow statement. Thus we stop processing the current |
| 4178 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4179 | CFGBlock *LoopSuccessor = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4180 | if (Block) { |
| 4181 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4182 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4183 | LoopSuccessor = Block; |
| 4184 | } else |
| 4185 | LoopSuccessor = Succ; |
| 4186 | |
| 4187 | // Save the current value for the break targets. |
| 4188 | // All breaks should go to the code following the loop. |
| 4189 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
| 4190 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
| 4191 | |
| 4192 | // The block for the __begin != __end expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4193 | CFGBlock *ConditionBlock = createBlock(false); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4194 | ConditionBlock->setTerminator(S); |
| 4195 | |
| 4196 | // Now add the actual condition to the condition block. |
| 4197 | if (Expr *C = S->getCond()) { |
| 4198 | Block = ConditionBlock; |
| 4199 | CFGBlock *BeginConditionBlock = addStmt(C); |
| 4200 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4201 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4202 | assert(BeginConditionBlock == ConditionBlock && |
| 4203 | "condition block in for-range was unexpectedly complex"); |
| 4204 | (void)BeginConditionBlock; |
| 4205 | } |
| 4206 | |
| 4207 | // The condition block is the implicit successor for the loop body as well as |
| 4208 | // any code above the loop. |
| 4209 | Succ = ConditionBlock; |
| 4210 | |
| 4211 | // See if this is a known constant. |
| 4212 | TryResult KnownVal(true); |
| 4213 | |
| 4214 | if (S->getCond()) |
| 4215 | KnownVal = tryEvaluateBool(S->getCond()); |
| 4216 | |
| 4217 | // Now create the loop body. |
| 4218 | { |
| 4219 | assert(S->getBody()); |
| 4220 | |
| 4221 | // Save the current values for Block, Succ, and continue targets. |
| 4222 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 4223 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
| 4224 | |
| 4225 | // Generate increment code in its own basic block. This is the target of |
| 4226 | // continue statements. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4227 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4228 | Succ = addStmt(S->getInc()); |
Alexander Kornienko | ff2046a | 2016-07-08 10:50:51 +0000 | [diff] [blame] | 4229 | if (badCFG) |
| 4230 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4231 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 4232 | |
| 4233 | // The starting block for the loop increment is the block that should |
| 4234 | // represent the 'loop target' for looping back to the start of the loop. |
| 4235 | ContinueJumpTarget.block->setLoopTarget(S); |
| 4236 | |
| 4237 | // Finish up the increment block and prepare to start the loop body. |
| 4238 | assert(Block); |
| 4239 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4240 | return nullptr; |
| 4241 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4242 | |
| 4243 | // Add implicit scope and dtors for loop variable. |
| 4244 | addLocalScopeAndDtors(S->getLoopVarStmt()); |
| 4245 | |
| 4246 | // Populate a new block to contain the loop body and loop variable. |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4247 | addStmt(S->getBody()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4248 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4249 | return nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4250 | CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4251 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4252 | return nullptr; |
| 4253 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4254 | // This new body block is a successor to our condition block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4255 | addSuccessor(ConditionBlock, |
| 4256 | KnownVal.isFalse() ? nullptr : LoopVarStmtBlock); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4257 | } |
| 4258 | |
| 4259 | // Link up the condition block with the code that follows the loop (the |
| 4260 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4261 | addSuccessor(ConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4262 | |
| 4263 | // Add the initialization statements. |
| 4264 | Block = createBlock(); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 4265 | addStmt(S->getBeginStmt()); |
| 4266 | addStmt(S->getEndStmt()); |
Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 4267 | CFGBlock *Head = addStmt(S->getRangeStmt()); |
| 4268 | if (S->getInit()) |
| 4269 | Head = addStmt(S->getInit()); |
| 4270 | return Head; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4271 | } |
| 4272 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 4273 | CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E, |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4274 | AddStmtChoice asc) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 4275 | if (BuildOpts.AddTemporaryDtors) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4276 | // If adding implicit destructors visit the full expression for adding |
| 4277 | // destructors of temporaries. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4278 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4279 | VisitForTemporaryDtors(E->getSubExpr(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4280 | |
| 4281 | // Full expression has to be added as CFGStmt so it will be sequenced |
| 4282 | // before destructors of it's temporaries. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4283 | asc = asc.withAlwaysAdd(true); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4284 | } |
| 4285 | return Visit(E->getSubExpr(), asc); |
| 4286 | } |
| 4287 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4288 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 4289 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4290 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4291 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4292 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4293 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4294 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 4295 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), E), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4296 | E->getSubExpr()); |
Artem Dergachev | 1f68d9d | 2018-02-15 03:13:36 +0000 | [diff] [blame] | 4297 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4298 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4299 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4300 | } |
| 4301 | return Visit(E->getSubExpr(), asc); |
| 4302 | } |
| 4303 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4304 | CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C, |
| 4305 | AddStmtChoice asc) { |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 4306 | // If the constructor takes objects as arguments by value, we need to properly |
| 4307 | // construct these objects. Construction contexts we find here aren't for the |
| 4308 | // constructor C, they're for its arguments only. |
| 4309 | findConstructionContextsForArguments(C); |
| 4310 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4311 | autoCreateBlock(); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4312 | appendConstructor(Block, C); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4313 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4314 | return VisitChildren(C); |
| 4315 | } |
| 4316 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4317 | CFGBlock *CFGBuilder::VisitCXXNewExpr(CXXNewExpr *NE, |
| 4318 | AddStmtChoice asc) { |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4319 | autoCreateBlock(); |
| 4320 | appendStmt(Block, NE); |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4321 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4322 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 4323 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), NE), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4324 | const_cast<CXXConstructExpr *>(NE->getConstructExpr())); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4325 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4326 | if (NE->getInitializer()) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4327 | Block = Visit(NE->getInitializer()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4328 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4329 | if (BuildOpts.AddCXXNewAllocator) |
| 4330 | appendNewAllocator(Block, NE); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4331 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4332 | if (NE->isArray()) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4333 | Block = Visit(NE->getArraySize()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4334 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4335 | for (CXXNewExpr::arg_iterator I = NE->placement_arg_begin(), |
| 4336 | E = NE->placement_arg_end(); I != E; ++I) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4337 | Block = Visit(*I); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4338 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4339 | return Block; |
| 4340 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4341 | |
| 4342 | CFGBlock *CFGBuilder::VisitCXXDeleteExpr(CXXDeleteExpr *DE, |
| 4343 | AddStmtChoice asc) { |
| 4344 | autoCreateBlock(); |
| 4345 | appendStmt(Block, DE); |
| 4346 | QualType DTy = DE->getDestroyedType(); |
Martin Bohme | f44cde8 | 2016-12-05 11:33:19 +0000 | [diff] [blame] | 4347 | if (!DTy.isNull()) { |
| 4348 | DTy = DTy.getNonReferenceType(); |
| 4349 | CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 4350 | if (RD) { |
| 4351 | if (RD->isCompleteDefinition() && !RD->hasTrivialDestructor()) |
| 4352 | appendDeleteDtor(Block, RD, DE); |
| 4353 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4354 | } |
| 4355 | |
| 4356 | return VisitChildren(DE); |
| 4357 | } |
| 4358 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4359 | CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 4360 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4361 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4362 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4363 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4364 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4365 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4366 | } |
| 4367 | return Visit(E->getSubExpr(), asc); |
| 4368 | } |
| 4369 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4370 | CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 4371 | AddStmtChoice asc) { |
Artem Dergachev | c531d54 | 2018-08-14 21:10:46 +0000 | [diff] [blame] | 4372 | // If the constructor takes objects as arguments by value, we need to properly |
| 4373 | // construct these objects. Construction contexts we find here aren't for the |
| 4374 | // constructor C, they're for its arguments only. |
| 4375 | findConstructionContextsForArguments(C); |
| 4376 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4377 | autoCreateBlock(); |
Artem Dergachev | 1f68d9d | 2018-02-15 03:13:36 +0000 | [diff] [blame] | 4378 | appendConstructor(Block, C); |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4379 | return VisitChildren(C); |
| 4380 | } |
| 4381 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4382 | CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E, |
| 4383 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4384 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4385 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4386 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4387 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 4388 | return Visit(E->getSubExpr(), AddStmtChoice()); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4389 | } |
| 4390 | |
Bill Wendling | 8003edc | 2018-11-09 00:41:36 +0000 | [diff] [blame] | 4391 | CFGBlock *CFGBuilder::VisitConstantExpr(ConstantExpr *E, AddStmtChoice asc) { |
| 4392 | return Visit(E->getSubExpr(), AddStmtChoice()); |
| 4393 | } |
| 4394 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4395 | CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4396 | // 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] | 4397 | CFGBlock *IBlock = cfg->getIndirectGotoBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4398 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4399 | if (!IBlock) { |
| 4400 | IBlock = createBlock(false); |
| 4401 | cfg->setIndirectGotoBlock(IBlock); |
| 4402 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4403 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4404 | // IndirectGoto is a control-flow statement. Thus we stop processing the |
| 4405 | // current block and create a new one. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4406 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4407 | return nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4408 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4409 | Block = createBlock(false); |
| 4410 | Block->setTerminator(I); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4411 | addSuccessor(Block, IBlock); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4412 | return addStmt(I->getTarget()); |
| 4413 | } |
| 4414 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4415 | CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary, |
| 4416 | TempDtorContext &Context) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 4417 | assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors); |
| 4418 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4419 | tryAgain: |
| 4420 | if (!E) { |
| 4421 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4422 | return nullptr; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4423 | } |
| 4424 | switch (E->getStmtClass()) { |
| 4425 | default: |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4426 | return VisitChildrenForTemporaryDtors(E, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4427 | |
| 4428 | case Stmt::BinaryOperatorClass: |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4429 | return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E), |
| 4430 | Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4431 | |
| 4432 | case Stmt::CXXBindTemporaryExprClass: |
| 4433 | return VisitCXXBindTemporaryExprForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4434 | cast<CXXBindTemporaryExpr>(E), BindToTemporary, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4435 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4436 | case Stmt::BinaryConditionalOperatorClass: |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4437 | case Stmt::ConditionalOperatorClass: |
| 4438 | return VisitConditionalOperatorForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4439 | cast<AbstractConditionalOperator>(E), BindToTemporary, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4440 | |
| 4441 | case Stmt::ImplicitCastExprClass: |
| 4442 | // For implicit cast we want BindToTemporary to be passed further. |
| 4443 | E = cast<CastExpr>(E)->getSubExpr(); |
| 4444 | goto tryAgain; |
| 4445 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4446 | case Stmt::CXXFunctionalCastExprClass: |
| 4447 | // For functional cast we want BindToTemporary to be passed further. |
| 4448 | E = cast<CXXFunctionalCastExpr>(E)->getSubExpr(); |
| 4449 | goto tryAgain; |
| 4450 | |
Bill Wendling | 8003edc | 2018-11-09 00:41:36 +0000 | [diff] [blame] | 4451 | case Stmt::ConstantExprClass: |
| 4452 | E = cast<ConstantExpr>(E)->getSubExpr(); |
| 4453 | goto tryAgain; |
| 4454 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4455 | case Stmt::ParenExprClass: |
| 4456 | E = cast<ParenExpr>(E)->getSubExpr(); |
| 4457 | goto tryAgain; |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4458 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4459 | case Stmt::MaterializeTemporaryExprClass: { |
| 4460 | const MaterializeTemporaryExpr* MTE = cast<MaterializeTemporaryExpr>(E); |
| 4461 | BindToTemporary = (MTE->getStorageDuration() != SD_FullExpression); |
| 4462 | SmallVector<const Expr *, 2> CommaLHSs; |
| 4463 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 4464 | // Find the expression whose lifetime needs to be extended. |
| 4465 | E = const_cast<Expr *>( |
| 4466 | cast<MaterializeTemporaryExpr>(E) |
| 4467 | ->GetTemporaryExpr() |
| 4468 | ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments)); |
| 4469 | // Visit the skipped comma operator left-hand sides for other temporaries. |
| 4470 | for (const Expr *CommaLHS : CommaLHSs) { |
| 4471 | VisitForTemporaryDtors(const_cast<Expr *>(CommaLHS), |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4472 | /*BindToTemporary=*/false, Context); |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4473 | } |
Douglas Gregor | fe31481 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 4474 | goto tryAgain; |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4475 | } |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4476 | |
| 4477 | case Stmt::BlockExprClass: |
| 4478 | // Don't recurse into blocks; their subexpressions don't get evaluated |
| 4479 | // here. |
| 4480 | return Block; |
| 4481 | |
| 4482 | case Stmt::LambdaExprClass: { |
| 4483 | // For lambda expressions, only recurse into the capture initializers, |
| 4484 | // and not the body. |
| 4485 | auto *LE = cast<LambdaExpr>(E); |
| 4486 | CFGBlock *B = Block; |
| 4487 | for (Expr *Init : LE->capture_inits()) { |
Richard Smith | 7ed5fb2 | 2018-07-27 17:13:18 +0000 | [diff] [blame] | 4488 | if (Init) { |
| 4489 | if (CFGBlock *R = VisitForTemporaryDtors( |
| 4490 | Init, /*BindToTemporary=*/false, Context)) |
| 4491 | B = R; |
| 4492 | } |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4493 | } |
| 4494 | return B; |
| 4495 | } |
| 4496 | |
| 4497 | case Stmt::CXXDefaultArgExprClass: |
| 4498 | E = cast<CXXDefaultArgExpr>(E)->getExpr(); |
| 4499 | goto tryAgain; |
| 4500 | |
| 4501 | case Stmt::CXXDefaultInitExprClass: |
| 4502 | E = cast<CXXDefaultInitExpr>(E)->getExpr(); |
| 4503 | goto tryAgain; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4504 | } |
| 4505 | } |
| 4506 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4507 | CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E, |
| 4508 | TempDtorContext &Context) { |
| 4509 | if (isa<LambdaExpr>(E)) { |
| 4510 | // Do not visit the children of lambdas; they have their own CFGs. |
| 4511 | return Block; |
| 4512 | } |
| 4513 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4514 | // When visiting children for destructors we want to visit them in reverse |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4515 | // order that they will appear in the CFG. Because the CFG is built |
| 4516 | // bottom-up, this means we visit them in their natural order, which |
| 4517 | // reverses them in the CFG. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4518 | CFGBlock *B = Block; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4519 | for (Stmt *Child : E->children()) |
| 4520 | if (Child) |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4521 | if (CFGBlock *R = VisitForTemporaryDtors(Child, false, Context)) |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4522 | B = R; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4523 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4524 | return B; |
| 4525 | } |
| 4526 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4527 | CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors( |
| 4528 | BinaryOperator *E, TempDtorContext &Context) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4529 | if (E->isLogicalOp()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4530 | VisitForTemporaryDtors(E->getLHS(), false, Context); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4531 | TryResult RHSExecuted = tryEvaluateBool(E->getLHS()); |
| 4532 | if (RHSExecuted.isKnown() && E->getOpcode() == BO_LOr) |
| 4533 | RHSExecuted.negate(); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4534 | |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4535 | // We do not know at CFG-construction time whether the right-hand-side was |
| 4536 | // executed, thus we add a branch node that depends on the temporary |
| 4537 | // constructor call. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4538 | TempDtorContext RHSContext( |
| 4539 | bothKnownTrue(Context.KnownExecuted, RHSExecuted)); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4540 | VisitForTemporaryDtors(E->getRHS(), false, RHSContext); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4541 | InsertTempDtorDecisionBlock(RHSContext); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4542 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4543 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4544 | } |
| 4545 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4546 | if (E->isAssignmentOp()) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4547 | // For assignment operator (=) LHS expression is visited |
| 4548 | // before RHS expression. For destructors visit them in reverse order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4549 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
| 4550 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4551 | return LHSBlock ? LHSBlock : RHSBlock; |
| 4552 | } |
| 4553 | |
| 4554 | // For any other binary operator RHS expression is visited before |
| 4555 | // LHS expression (order of children). For destructors visit them in reverse |
| 4556 | // order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4557 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
| 4558 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4559 | return RHSBlock ? RHSBlock : LHSBlock; |
| 4560 | } |
| 4561 | |
| 4562 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4563 | CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4564 | // First add destructors for temporaries in subexpression. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4565 | CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr(), false, Context); |
Zhongxing Xu | fee455f | 2010-11-14 15:23:50 +0000 | [diff] [blame] | 4566 | if (!BindToTemporary) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4567 | // If lifetime of temporary is not prolonged (by assigning to constant |
| 4568 | // reference) add destructor for it. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4569 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4570 | const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4571 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 4572 | if (Dtor->getParent()->isAnyDestructorNoReturn()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4573 | // If the destructor is marked as a no-return destructor, we need to |
| 4574 | // create a new block for the destructor which does not have as a |
| 4575 | // successor anything built thus far. Control won't flow out of this |
| 4576 | // block. |
| 4577 | if (B) Succ = B; |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 4578 | Block = createNoReturnBlock(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4579 | } else if (Context.needsTempDtorBranch()) { |
| 4580 | // If we need to introduce a branch, we add a new block that we will hook |
| 4581 | // up to a decision block later. |
| 4582 | if (B) Succ = B; |
| 4583 | Block = createBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4584 | } else { |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4585 | autoCreateBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4586 | } |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4587 | if (Context.needsTempDtorBranch()) { |
| 4588 | Context.setDecisionPoint(Succ, E); |
| 4589 | } |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4590 | appendTemporaryDtor(Block, E); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4591 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4592 | B = Block; |
| 4593 | } |
| 4594 | return B; |
| 4595 | } |
| 4596 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4597 | void CFGBuilder::InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 4598 | CFGBlock *FalseSucc) { |
| 4599 | if (!Context.TerminatorExpr) { |
| 4600 | // If no temporary was found, we do not need to insert a decision point. |
| 4601 | return; |
| 4602 | } |
| 4603 | assert(Context.TerminatorExpr); |
| 4604 | CFGBlock *Decision = createBlock(false); |
| 4605 | Decision->setTerminator(CFGTerminator(Context.TerminatorExpr, true)); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4606 | addSuccessor(Decision, Block, !Context.KnownExecuted.isFalse()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4607 | addSuccessor(Decision, FalseSucc ? FalseSucc : Context.Succ, |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4608 | !Context.KnownExecuted.isTrue()); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4609 | Block = Decision; |
| 4610 | } |
| 4611 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4612 | CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4613 | AbstractConditionalOperator *E, bool BindToTemporary, |
| 4614 | TempDtorContext &Context) { |
| 4615 | VisitForTemporaryDtors(E->getCond(), false, Context); |
| 4616 | CFGBlock *ConditionBlock = Block; |
| 4617 | CFGBlock *ConditionSucc = Succ; |
Manuel Klimek | 0ce9108 | 2014-08-07 14:25:43 +0000 | [diff] [blame] | 4618 | TryResult ConditionVal = tryEvaluateBool(E->getCond()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4619 | TryResult NegatedVal = ConditionVal; |
| 4620 | if (NegatedVal.isKnown()) NegatedVal.negate(); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4621 | |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4622 | TempDtorContext TrueContext( |
| 4623 | bothKnownTrue(Context.KnownExecuted, ConditionVal)); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4624 | VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary, TrueContext); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4625 | CFGBlock *TrueBlock = Block; |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4626 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4627 | Block = ConditionBlock; |
| 4628 | Succ = ConditionSucc; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4629 | TempDtorContext FalseContext( |
| 4630 | bothKnownTrue(Context.KnownExecuted, NegatedVal)); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4631 | VisitForTemporaryDtors(E->getFalseExpr(), BindToTemporary, FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4632 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4633 | if (TrueContext.TerminatorExpr && FalseContext.TerminatorExpr) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4634 | InsertTempDtorDecisionBlock(FalseContext, TrueBlock); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4635 | } else if (TrueContext.TerminatorExpr) { |
| 4636 | Block = TrueBlock; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4637 | InsertTempDtorDecisionBlock(TrueContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4638 | } else { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4639 | InsertTempDtorDecisionBlock(FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4640 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4641 | return Block; |
| 4642 | } |
| 4643 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4644 | /// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has |
| 4645 | /// no successors or predecessors. If this is the first block created in the |
| 4646 | /// 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] | 4647 | CFGBlock *CFG::createBlock() { |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4648 | bool first_block = begin() == end(); |
| 4649 | |
| 4650 | // Create the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4651 | CFGBlock *Mem = getAllocator().Allocate<CFGBlock>(); |
Anna Zaks | 02a1fc1 | 2011-12-05 21:33:11 +0000 | [diff] [blame] | 4652 | new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4653 | Blocks.push_back(Mem, BlkBVC); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4654 | |
| 4655 | // 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] | 4656 | if (first_block) |
| 4657 | Entry = Exit = &back(); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4658 | |
| 4659 | // Return the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4660 | return &back(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4661 | } |
| 4662 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 4663 | /// buildCFG - Constructs a CFG from an AST. |
| 4664 | std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement, |
| 4665 | ASTContext *C, const BuildOptions &BO) { |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 4666 | CFGBuilder Builder(C, BO); |
| 4667 | return Builder.buildCFG(D, Statement); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4668 | } |
| 4669 | |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4670 | const CXXDestructorDecl * |
| 4671 | CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4672 | switch (getKind()) { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4673 | case CFGElement::Initializer: |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4674 | case CFGElement::NewAllocator: |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 4675 | case CFGElement::LoopExit: |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4676 | case CFGElement::LifetimeEnds: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4677 | case CFGElement::Statement: |
| 4678 | case CFGElement::Constructor: |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4679 | case CFGElement::CXXRecordTypedCall: |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 4680 | case CFGElement::ScopeBegin: |
| 4681 | case CFGElement::ScopeEnd: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4682 | llvm_unreachable("getDestructorDecl should only be used with " |
| 4683 | "ImplicitDtors"); |
| 4684 | case CFGElement::AutomaticObjectDtor: { |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4685 | const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4686 | QualType ty = var->getType(); |
Devin Coughlin | 6eb1ca7 | 2016-08-02 21:07:23 +0000 | [diff] [blame] | 4687 | |
| 4688 | // FIXME: See CFGBuilder::addLocalScopeForVarDecl. |
| 4689 | // |
| 4690 | // Lifetime-extending constructs are handled here. This works for a single |
| 4691 | // temporary in an initializer expression. |
| 4692 | if (ty->isReferenceType()) { |
| 4693 | if (const Expr *Init = var->getInit()) { |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 4694 | ty = getReferenceInitTemporaryType(Init); |
Devin Coughlin | 6eb1ca7 | 2016-08-02 21:07:23 +0000 | [diff] [blame] | 4695 | } |
| 4696 | } |
| 4697 | |
Ted Kremenek | e7d7888 | 2012-03-19 23:48:41 +0000 | [diff] [blame] | 4698 | while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) { |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4699 | ty = arrayType->getElementType(); |
| 4700 | } |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4701 | const RecordType *recordType = ty->getAs<RecordType>(); |
| 4702 | const CXXRecordDecl *classDecl = |
Ted Kremenek | 1676a04 | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 4703 | cast<CXXRecordDecl>(recordType->getDecl()); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 4704 | return classDecl->getDestructor(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4705 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4706 | case CFGElement::DeleteDtor: { |
| 4707 | const CXXDeleteExpr *DE = castAs<CFGDeleteDtor>().getDeleteExpr(); |
| 4708 | QualType DTy = DE->getDestroyedType(); |
| 4709 | DTy = DTy.getNonReferenceType(); |
| 4710 | const CXXRecordDecl *classDecl = |
| 4711 | astContext.getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 4712 | return classDecl->getDestructor(); |
| 4713 | } |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4714 | case CFGElement::TemporaryDtor: { |
| 4715 | const CXXBindTemporaryExpr *bindExpr = |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4716 | castAs<CFGTemporaryDtor>().getBindTemporaryExpr(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4717 | const CXXTemporary *temp = bindExpr->getTemporary(); |
| 4718 | return temp->getDestructor(); |
| 4719 | } |
| 4720 | case CFGElement::BaseDtor: |
| 4721 | case CFGElement::MemberDtor: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4722 | // Not yet supported. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4723 | return nullptr; |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4724 | } |
Ted Kremenek | 1676a04 | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 4725 | llvm_unreachable("getKind() returned bogus value"); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4726 | } |
| 4727 | |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4728 | bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const { |
Richard Smith | 10876ef | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 4729 | if (const CXXDestructorDecl *DD = getDestructorDecl(astContext)) |
| 4730 | return DD->isNoReturn(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4731 | return false; |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4732 | } |
| 4733 | |
Ted Kremenek | f2d4372b | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 4734 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4735 | // CFGBlock operations. |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4736 | //===----------------------------------------------------------------------===// |
| 4737 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4738 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, bool IsReachable) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4739 | : ReachableBlock(IsReachable ? B : nullptr), |
| 4740 | UnreachableBlock(!IsReachable ? B : nullptr, |
| 4741 | B && IsReachable ? AB_Normal : AB_Unreachable) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4742 | |
| 4743 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, CFGBlock *AlternateBlock) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4744 | : ReachableBlock(B), |
| 4745 | UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock, |
| 4746 | B == AlternateBlock ? AB_Alternate : AB_Normal) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4747 | |
| 4748 | void CFGBlock::addSuccessor(AdjacentBlock Succ, |
| 4749 | BumpVectorContext &C) { |
| 4750 | if (CFGBlock *B = Succ.getReachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4751 | B->Preds.push_back(AdjacentBlock(this, Succ.isReachable()), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4752 | |
| 4753 | if (CFGBlock *UnreachableB = Succ.getPossiblyUnreachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4754 | UnreachableB->Preds.push_back(AdjacentBlock(this, false), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4755 | |
| 4756 | Succs.push_back(Succ, C); |
| 4757 | } |
| 4758 | |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4759 | bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F, |
Ted Kremenek | f146cd1 | 2010-09-09 02:57:48 +0000 | [diff] [blame] | 4760 | const CFGBlock *From, const CFGBlock *To) { |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4761 | if (F.IgnoreNullPredecessors && !From) |
| 4762 | return true; |
| 4763 | |
| 4764 | if (To && From && F.IgnoreDefaultsWithCoveredEnums) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4765 | // If the 'To' has no label or is labeled but the label isn't a |
| 4766 | // CaseStmt then filter this edge. |
| 4767 | if (const SwitchStmt *S = |
Ted Kremenek | 8979474 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 4768 | dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4769 | if (S->isAllEnumCasesCovered()) { |
Ted Kremenek | 8979474 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 4770 | const Stmt *L = To->getLabel(); |
| 4771 | if (!L || !isa<CaseStmt>(L)) |
| 4772 | return true; |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4773 | } |
| 4774 | } |
| 4775 | } |
| 4776 | |
| 4777 | return false; |
| 4778 | } |
| 4779 | |
| 4780 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4781 | // CFG pretty printing |
| 4782 | //===----------------------------------------------------------------------===// |
| 4783 | |
Ted Kremenek | 7e776b1 | 2007-08-22 18:22:34 +0000 | [diff] [blame] | 4784 | namespace { |
| 4785 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 4786 | class StmtPrinterHelper : public PrinterHelper { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4787 | using StmtMapTy = llvm::DenseMap<const Stmt *, std::pair<unsigned, unsigned>>; |
| 4788 | using DeclMapTy = llvm::DenseMap<const Decl *, std::pair<unsigned, unsigned>>; |
| 4789 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4790 | StmtMapTy StmtMap; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4791 | DeclMapTy DeclMap; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4792 | signed currentBlock = 0; |
| 4793 | unsigned currStmt = 0; |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4794 | const LangOptions &LangOpts; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4795 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4796 | public: |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4797 | StmtPrinterHelper(const CFG* cfg, const LangOptions &LO) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4798 | : LangOpts(LO) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4799 | for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) { |
| 4800 | unsigned j = 1; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4801 | for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 4802 | BI != BEnd; ++BI, ++j ) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4803 | if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) { |
| 4804 | const Stmt *stmt= SE->getStmt(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4805 | std::pair<unsigned, unsigned> P((*I)->getBlockID(), j); |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4806 | StmtMap[stmt] = P; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4807 | |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4808 | switch (stmt->getStmtClass()) { |
| 4809 | case Stmt::DeclStmtClass: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4810 | DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P; |
| 4811 | break; |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4812 | case Stmt::IfStmtClass: { |
| 4813 | const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable(); |
| 4814 | if (var) |
| 4815 | DeclMap[var] = P; |
| 4816 | break; |
| 4817 | } |
| 4818 | case Stmt::ForStmtClass: { |
| 4819 | const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable(); |
| 4820 | if (var) |
| 4821 | DeclMap[var] = P; |
| 4822 | break; |
| 4823 | } |
| 4824 | case Stmt::WhileStmtClass: { |
| 4825 | const VarDecl *var = |
| 4826 | cast<WhileStmt>(stmt)->getConditionVariable(); |
| 4827 | if (var) |
| 4828 | DeclMap[var] = P; |
| 4829 | break; |
| 4830 | } |
| 4831 | case Stmt::SwitchStmtClass: { |
| 4832 | const VarDecl *var = |
| 4833 | cast<SwitchStmt>(stmt)->getConditionVariable(); |
| 4834 | if (var) |
| 4835 | DeclMap[var] = P; |
| 4836 | break; |
| 4837 | } |
| 4838 | case Stmt::CXXCatchStmtClass: { |
| 4839 | const VarDecl *var = |
| 4840 | cast<CXXCatchStmt>(stmt)->getExceptionDecl(); |
| 4841 | if (var) |
| 4842 | DeclMap[var] = P; |
| 4843 | break; |
| 4844 | } |
| 4845 | default: |
| 4846 | break; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4847 | } |
| 4848 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4849 | } |
Zhongxing Xu | 2cd7a78 | 2010-09-16 01:25:47 +0000 | [diff] [blame] | 4850 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4851 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4852 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4853 | ~StmtPrinterHelper() override = default; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4854 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4855 | const LangOptions &getLangOpts() const { return LangOpts; } |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4856 | void setBlockID(signed i) { currentBlock = i; } |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4857 | void setStmtID(unsigned i) { currStmt = i; } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4858 | |
Craig Topper | b45acb8 | 2014-03-14 06:02:07 +0000 | [diff] [blame] | 4859 | bool handledStmt(Stmt *S, raw_ostream &OS) override { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4860 | StmtMapTy::iterator I = StmtMap.find(S); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4861 | |
| 4862 | if (I == StmtMap.end()) |
| 4863 | return false; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4864 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4865 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4866 | && I->second.second == currStmt) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4867 | return false; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4868 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4869 | |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4870 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4871 | return true; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4872 | } |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4873 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4874 | bool handleDecl(const Decl *D, raw_ostream &OS) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4875 | DeclMapTy::iterator I = DeclMap.find(D); |
| 4876 | |
| 4877 | if (I == DeclMap.end()) |
| 4878 | return false; |
| 4879 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4880 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4881 | && I->second.second == currStmt) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4882 | return false; |
| 4883 | } |
| 4884 | |
| 4885 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
| 4886 | return true; |
| 4887 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4888 | }; |
| 4889 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 4890 | class CFGBlockTerminatorPrint |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4891 | : public StmtVisitor<CFGBlockTerminatorPrint,void> { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4892 | raw_ostream &OS; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4893 | StmtPrinterHelper* Helper; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4894 | PrintingPolicy Policy; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4895 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4896 | public: |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4897 | CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper, |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4898 | const PrintingPolicy &Policy) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4899 | : OS(os), Helper(helper), Policy(Policy) { |
Ted Kremenek | 5d0fb1e | 2013-12-11 23:44:05 +0000 | [diff] [blame] | 4900 | this->Policy.IncludeNewlines = false; |
| 4901 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4902 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4903 | void VisitIfStmt(IfStmt *I) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4904 | OS << "if "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4905 | if (Stmt *C = I->getCond()) |
| 4906 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4907 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4908 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4909 | // Default case. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4910 | void VisitStmt(Stmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4911 | Terminator->printPretty(OS, Helper, Policy); |
| 4912 | } |
| 4913 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 4914 | void VisitDeclStmt(DeclStmt *DS) { |
| 4915 | VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); |
| 4916 | OS << "static init " << VD->getName(); |
| 4917 | } |
| 4918 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4919 | void VisitForStmt(ForStmt *F) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4920 | OS << "for (" ; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4921 | if (F->getInit()) |
| 4922 | OS << "..."; |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 4923 | OS << "; "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4924 | if (Stmt *C = F->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4925 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 4926 | OS << "; "; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4927 | if (F->getInc()) |
| 4928 | OS << "..."; |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4929 | OS << ")"; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4930 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4931 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4932 | void VisitWhileStmt(WhileStmt *W) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4933 | OS << "while " ; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4934 | if (Stmt *C = W->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4935 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4936 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4937 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4938 | void VisitDoStmt(DoStmt *D) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4939 | OS << "do ... while "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4940 | if (Stmt *C = D->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4941 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4942 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4943 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4944 | void VisitSwitchStmt(SwitchStmt *Terminator) { |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4945 | OS << "switch "; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4946 | Terminator->getCond()->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4947 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4948 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4949 | void VisitCXXTryStmt(CXXTryStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4950 | OS << "try ..."; |
| 4951 | } |
| 4952 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 4953 | void VisitSEHTryStmt(SEHTryStmt *CS) { |
| 4954 | OS << "__try ..."; |
| 4955 | } |
| 4956 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4957 | void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) { |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4958 | if (Stmt *Cond = C->getCond()) |
| 4959 | Cond->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4960 | OS << " ? ... : ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4961 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4962 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4963 | void VisitChooseExpr(ChooseExpr *C) { |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 4964 | OS << "__builtin_choose_expr( "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4965 | if (Stmt *Cond = C->getCond()) |
| 4966 | Cond->printPretty(OS, Helper, Policy); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4967 | OS << " )"; |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 4968 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4969 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4970 | void VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4971 | OS << "goto *"; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4972 | if (Stmt *T = I->getTarget()) |
| 4973 | T->printPretty(OS, Helper, Policy); |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4974 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4975 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4976 | void VisitBinaryOperator(BinaryOperator* B) { |
| 4977 | if (!B->isLogicalOp()) { |
| 4978 | VisitExpr(B); |
| 4979 | return; |
| 4980 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4981 | |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4982 | if (B->getLHS()) |
| 4983 | B->getLHS()->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4984 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4985 | switch (B->getOpcode()) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4986 | case BO_LOr: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4987 | OS << " || ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4988 | return; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4989 | case BO_LAnd: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4990 | OS << " && ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4991 | return; |
| 4992 | default: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4993 | llvm_unreachable("Invalid logical operator."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4994 | } |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4995 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4996 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4997 | void VisitExpr(Expr *E) { |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4998 | E->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4999 | } |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5000 | |
| 5001 | public: |
| 5002 | void print(CFGTerminator T) { |
| 5003 | if (T.isTemporaryDtorsBranch()) |
| 5004 | OS << "(Temp Dtor) "; |
| 5005 | Visit(T.getStmt()); |
| 5006 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5007 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5008 | |
| 5009 | } // namespace |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5010 | |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 5011 | static void print_initializer(raw_ostream &OS, StmtPrinterHelper &Helper, |
| 5012 | const CXXCtorInitializer *I) { |
| 5013 | if (I->isBaseInitializer()) |
| 5014 | OS << I->getBaseClass()->getAsCXXRecordDecl()->getName(); |
| 5015 | else if (I->isDelegatingInitializer()) |
| 5016 | OS << I->getTypeSourceInfo()->getType()->getAsCXXRecordDecl()->getName(); |
| 5017 | else |
| 5018 | OS << I->getAnyMember()->getName(); |
| 5019 | OS << "("; |
| 5020 | if (Expr *IE = I->getInit()) |
| 5021 | IE->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
| 5022 | OS << ")"; |
| 5023 | |
| 5024 | if (I->isBaseInitializer()) |
| 5025 | OS << " (Base initializer)"; |
| 5026 | else if (I->isDelegatingInitializer()) |
| 5027 | OS << " (Delegating initializer)"; |
| 5028 | else |
| 5029 | OS << " (Member initializer)"; |
| 5030 | } |
| 5031 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5032 | static void print_construction_context(raw_ostream &OS, |
| 5033 | StmtPrinterHelper &Helper, |
| 5034 | const ConstructionContext *CC) { |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5035 | SmallVector<const Stmt *, 3> Stmts; |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5036 | switch (CC->getKind()) { |
Artem Dergachev | 922455f | 2018-03-22 22:02:38 +0000 | [diff] [blame] | 5037 | case ConstructionContext::SimpleConstructorInitializerKind: { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5038 | OS << ", "; |
Artem Dergachev | 922455f | 2018-03-22 22:02:38 +0000 | [diff] [blame] | 5039 | const auto *SICC = cast<SimpleConstructorInitializerConstructionContext>(CC); |
| 5040 | print_initializer(OS, Helper, SICC->getCXXCtorInitializer()); |
Artem Dergachev | a657a32 | 2018-07-31 20:45:53 +0000 | [diff] [blame] | 5041 | return; |
Artem Dergachev | 922455f | 2018-03-22 22:02:38 +0000 | [diff] [blame] | 5042 | } |
| 5043 | case ConstructionContext::CXX17ElidedCopyConstructorInitializerKind: { |
| 5044 | OS << ", "; |
| 5045 | const auto *CICC = |
| 5046 | cast<CXX17ElidedCopyConstructorInitializerConstructionContext>(CC); |
| 5047 | print_initializer(OS, Helper, CICC->getCXXCtorInitializer()); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5048 | Stmts.push_back(CICC->getCXXBindTemporaryExpr()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5049 | break; |
| 5050 | } |
| 5051 | case ConstructionContext::SimpleVariableKind: { |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5052 | const auto *SDSCC = cast<SimpleVariableConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5053 | Stmts.push_back(SDSCC->getDeclStmt()); |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5054 | break; |
| 5055 | } |
| 5056 | case ConstructionContext::CXX17ElidedCopyVariableKind: { |
| 5057 | const auto *CDSCC = cast<CXX17ElidedCopyVariableConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5058 | Stmts.push_back(CDSCC->getDeclStmt()); |
| 5059 | Stmts.push_back(CDSCC->getCXXBindTemporaryExpr()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5060 | break; |
| 5061 | } |
| 5062 | case ConstructionContext::NewAllocatedObjectKind: { |
| 5063 | const auto *NECC = cast<NewAllocatedObjectConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5064 | Stmts.push_back(NECC->getCXXNewExpr()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5065 | break; |
| 5066 | } |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5067 | case ConstructionContext::SimpleReturnedValueKind: { |
| 5068 | const auto *RSCC = cast<SimpleReturnedValueConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5069 | Stmts.push_back(RSCC->getReturnStmt()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5070 | break; |
| 5071 | } |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5072 | case ConstructionContext::CXX17ElidedCopyReturnedValueKind: { |
| 5073 | const auto *RSCC = |
| 5074 | cast<CXX17ElidedCopyReturnedValueConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5075 | Stmts.push_back(RSCC->getReturnStmt()); |
| 5076 | Stmts.push_back(RSCC->getCXXBindTemporaryExpr()); |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5077 | break; |
| 5078 | } |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5079 | case ConstructionContext::SimpleTemporaryObjectKind: { |
| 5080 | const auto *TOCC = cast<SimpleTemporaryObjectConstructionContext>(CC); |
| 5081 | Stmts.push_back(TOCC->getCXXBindTemporaryExpr()); |
| 5082 | Stmts.push_back(TOCC->getMaterializedTemporaryExpr()); |
| 5083 | break; |
| 5084 | } |
| 5085 | case ConstructionContext::ElidedTemporaryObjectKind: { |
| 5086 | const auto *TOCC = cast<ElidedTemporaryObjectConstructionContext>(CC); |
| 5087 | Stmts.push_back(TOCC->getCXXBindTemporaryExpr()); |
| 5088 | Stmts.push_back(TOCC->getMaterializedTemporaryExpr()); |
| 5089 | Stmts.push_back(TOCC->getConstructorAfterElision()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5090 | break; |
| 5091 | } |
Artem Dergachev | a657a32 | 2018-07-31 20:45:53 +0000 | [diff] [blame] | 5092 | case ConstructionContext::ArgumentKind: { |
| 5093 | const auto *ACC = cast<ArgumentConstructionContext>(CC); |
| 5094 | if (const Stmt *BTE = ACC->getCXXBindTemporaryExpr()) { |
| 5095 | OS << ", "; |
| 5096 | Helper.handledStmt(const_cast<Stmt *>(BTE), OS); |
| 5097 | } |
| 5098 | OS << ", "; |
| 5099 | Helper.handledStmt(const_cast<Expr *>(ACC->getCallLikeExpr()), OS); |
| 5100 | OS << "+" << ACC->getIndex(); |
| 5101 | return; |
| 5102 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5103 | } |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5104 | for (auto I: Stmts) |
| 5105 | if (I) { |
| 5106 | OS << ", "; |
| 5107 | Helper.handledStmt(const_cast<Stmt *>(I), OS); |
| 5108 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5109 | } |
| 5110 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5111 | static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper, |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5112 | const CFGElement &E) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5113 | if (Optional<CFGStmt> CS = E.getAs<CFGStmt>()) { |
| 5114 | const Stmt *S = CS->getStmt(); |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5115 | assert(S != nullptr && "Expecting non-null Stmt"); |
| 5116 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5117 | // special printing for statement-expressions. |
| 5118 | if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) { |
| 5119 | const CompoundStmt *Sub = SE->getSubStmt(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5120 | |
Benjamin Kramer | 5733e35 | 2015-07-18 17:09:36 +0000 | [diff] [blame] | 5121 | auto Children = Sub->children(); |
| 5122 | if (Children.begin() != Children.end()) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5123 | OS << "({ ... ; "; |
| 5124 | Helper.handledStmt(*SE->getSubStmt()->body_rbegin(),OS); |
| 5125 | OS << " })\n"; |
| 5126 | return; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 5127 | } |
| 5128 | } |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5129 | // special printing for comma expressions. |
| 5130 | if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) { |
| 5131 | if (B->getOpcode() == BO_Comma) { |
| 5132 | OS << "... , "; |
| 5133 | Helper.handledStmt(B->getRHS(),OS); |
| 5134 | OS << '\n'; |
| 5135 | return; |
| 5136 | } |
| 5137 | } |
| 5138 | S->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5139 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5140 | if (auto VTC = E.getAs<CFGCXXRecordTypedCall>()) { |
| 5141 | if (isa<CXXOperatorCallExpr>(S)) |
| 5142 | OS << " (OperatorCall)"; |
| 5143 | OS << " (CXXRecordTypedCall"; |
| 5144 | print_construction_context(OS, Helper, VTC->getConstructionContext()); |
| 5145 | OS << ")"; |
| 5146 | } else if (isa<CXXOperatorCallExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 5147 | OS << " (OperatorCall)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5148 | } else if (isa<CXXBindTemporaryExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 5149 | OS << " (BindTemporary)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5150 | } else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5151 | OS << " (CXXConstructExpr"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5152 | if (Optional<CFGConstructor> CE = E.getAs<CFGConstructor>()) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5153 | print_construction_context(OS, Helper, CE->getConstructionContext()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5154 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5155 | OS << ", " << CCE->getType().getAsString() << ")"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5156 | } else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) { |
Ted Kremenek | 0ffba93 | 2011-12-21 19:32:38 +0000 | [diff] [blame] | 5157 | OS << " (" << CE->getStmtClassName() << ", " |
| 5158 | << CE->getCastKindName() |
| 5159 | << ", " << CE->getType().getAsString() |
| 5160 | << ")"; |
| 5161 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5162 | |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5163 | // Expressions need a newline. |
| 5164 | if (isa<Expr>(S)) |
| 5165 | OS << '\n'; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5166 | } else if (Optional<CFGInitializer> IE = E.getAs<CFGInitializer>()) { |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 5167 | print_initializer(OS, Helper, IE->getInitializer()); |
| 5168 | OS << '\n'; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5169 | } else if (Optional<CFGAutomaticObjDtor> DE = |
| 5170 | E.getAs<CFGAutomaticObjDtor>()) { |
| 5171 | const VarDecl *VD = DE->getVarDecl(); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5172 | Helper.handleDecl(VD, OS); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5173 | |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 5174 | ASTContext &ACtx = VD->getASTContext(); |
| 5175 | QualType T = VD->getType(); |
| 5176 | if (T->isReferenceType()) |
| 5177 | T = getReferenceInitTemporaryType(VD->getInit(), nullptr); |
| 5178 | if (const ArrayType *AT = ACtx.getAsArrayType(T)) |
| 5179 | T = ACtx.getBaseElementType(AT); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5180 | |
| 5181 | OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()"; |
| 5182 | OS << " (Implicit destructor)\n"; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 5183 | } else if (Optional<CFGLifetimeEnds> DE = E.getAs<CFGLifetimeEnds>()) { |
| 5184 | const VarDecl *VD = DE->getVarDecl(); |
| 5185 | Helper.handleDecl(VD, OS); |
| 5186 | |
| 5187 | OS << " (Lifetime ends)\n"; |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 5188 | } else if (Optional<CFGLoopExit> LE = E.getAs<CFGLoopExit>()) { |
| 5189 | const Stmt *LoopStmt = LE->getLoopStmt(); |
| 5190 | OS << LoopStmt->getStmtClassName() << " (LoopExit)\n"; |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 5191 | } else if (Optional<CFGScopeBegin> SB = E.getAs<CFGScopeBegin>()) { |
| 5192 | OS << "CFGScopeBegin("; |
| 5193 | if (const VarDecl *VD = SB->getVarDecl()) |
| 5194 | OS << VD->getQualifiedNameAsString(); |
| 5195 | OS << ")\n"; |
| 5196 | } else if (Optional<CFGScopeEnd> SE = E.getAs<CFGScopeEnd>()) { |
| 5197 | OS << "CFGScopeEnd("; |
| 5198 | if (const VarDecl *VD = SE->getVarDecl()) |
| 5199 | OS << VD->getQualifiedNameAsString(); |
| 5200 | OS << ")\n"; |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 5201 | } else if (Optional<CFGNewAllocator> NE = E.getAs<CFGNewAllocator>()) { |
| 5202 | OS << "CFGNewAllocator("; |
| 5203 | if (const CXXNewExpr *AllocExpr = NE->getAllocatorExpr()) |
| 5204 | AllocExpr->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
| 5205 | OS << ")\n"; |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 5206 | } else if (Optional<CFGDeleteDtor> DE = E.getAs<CFGDeleteDtor>()) { |
| 5207 | const CXXRecordDecl *RD = DE->getCXXRecordDecl(); |
| 5208 | if (!RD) |
| 5209 | return; |
| 5210 | CXXDeleteExpr *DelExpr = |
| 5211 | const_cast<CXXDeleteExpr*>(DE->getDeleteExpr()); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5212 | Helper.handledStmt(cast<Stmt>(DelExpr->getArgument()), OS); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 5213 | OS << "->~" << RD->getName().str() << "()"; |
| 5214 | OS << " (Implicit destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5215 | } else if (Optional<CFGBaseDtor> BE = E.getAs<CFGBaseDtor>()) { |
| 5216 | const CXXBaseSpecifier *BS = BE->getBaseSpecifier(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 5217 | OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 5218 | OS << " (Base object destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5219 | } else if (Optional<CFGMemberDtor> ME = E.getAs<CFGMemberDtor>()) { |
| 5220 | const FieldDecl *FD = ME->getFieldDecl(); |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 5221 | const Type *T = FD->getType()->getBaseElementTypeUnsafe(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 5222 | OS << "this->" << FD->getName(); |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 5223 | OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 5224 | OS << " (Member object destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5225 | } else if (Optional<CFGTemporaryDtor> TE = E.getAs<CFGTemporaryDtor>()) { |
| 5226 | const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr(); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 5227 | OS << "~"; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5228 | BT->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 5229 | OS << "() (Temporary object destructor)\n"; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5230 | } |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 5231 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5232 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5233 | static void print_block(raw_ostream &OS, const CFG* cfg, |
| 5234 | const CFGBlock &B, |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5235 | StmtPrinterHelper &Helper, bool print_edges, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5236 | bool ShowColors) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5237 | Helper.setBlockID(B.getBlockID()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5238 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5239 | // Print the header. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5240 | if (ShowColors) |
| 5241 | OS.changeColor(raw_ostream::YELLOW, true); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5242 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5243 | OS << "\n [B" << B.getBlockID(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5244 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5245 | if (&B == &cfg->getEntry()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5246 | OS << " (ENTRY)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5247 | else if (&B == &cfg->getExit()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5248 | OS << " (EXIT)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5249 | else if (&B == cfg->getIndirectGotoBlock()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5250 | OS << " (INDIRECT GOTO DISPATCH)]\n"; |
Jordan Rose | 398fb00 | 2014-04-01 16:39:33 +0000 | [diff] [blame] | 5251 | else if (B.hasNoReturnElement()) |
| 5252 | OS << " (NORETURN)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5253 | else |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5254 | OS << "]\n"; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5255 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5256 | if (ShowColors) |
| 5257 | OS.resetColor(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5258 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5259 | // Print the label of this block. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5260 | if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5261 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5262 | OS << " "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5263 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5264 | if (LabelStmt *L = dyn_cast<LabelStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5265 | OS << L->getName(); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5266 | else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5267 | OS << "case "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5268 | if (C->getLHS()) |
| 5269 | C->getLHS()->printPretty(OS, &Helper, |
| 5270 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5271 | if (C->getRHS()) { |
| 5272 | OS << " ... "; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5273 | C->getRHS()->printPretty(OS, &Helper, |
| 5274 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5275 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5276 | } else if (isa<DefaultStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5277 | OS << "default"; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5278 | else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5279 | OS << "catch ("; |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 5280 | if (CS->getExceptionDecl()) |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5281 | CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()), |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 5282 | 0); |
| 5283 | else |
| 5284 | OS << "..."; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5285 | OS << ")"; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 5286 | } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) { |
| 5287 | OS << "__except ("; |
| 5288 | ES->getFilterExpr()->printPretty(OS, &Helper, |
| 5289 | PrintingPolicy(Helper.getLangOpts()), 0); |
| 5290 | OS << ")"; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5291 | } else |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 5292 | llvm_unreachable("Invalid label statement in CFGBlock."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5293 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5294 | OS << ":\n"; |
| 5295 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5296 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5297 | // Iterate through the statements in the block and print them. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5298 | unsigned j = 1; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5299 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5300 | for (CFGBlock::const_iterator I = B.begin(), E = B.end() ; |
| 5301 | I != E ; ++I, ++j ) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5302 | // Print the statement # in the basic block and the statement itself. |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5303 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5304 | OS << " "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5305 | |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5306 | OS << llvm::format("%3d", j) << ": "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5307 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5308 | Helper.setStmtID(j); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5309 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5310 | print_elem(OS, Helper, *I); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5311 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5312 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5313 | // Print the terminator of this block. |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5314 | if (B.getTerminator()) { |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5315 | if (ShowColors) |
| 5316 | OS.changeColor(raw_ostream::GREEN); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5317 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5318 | OS << " T: "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5319 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5320 | Helper.setBlockID(-1); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5321 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5322 | PrintingPolicy PP(Helper.getLangOpts()); |
| 5323 | CFGBlockTerminatorPrint TPrinter(OS, &Helper, PP); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5324 | TPrinter.print(B.getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5325 | OS << '\n'; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5326 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5327 | if (ShowColors) |
| 5328 | OS.resetColor(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5329 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5330 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5331 | if (print_edges) { |
| 5332 | // Print the predecessors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5333 | if (!B.pred_empty()) { |
| 5334 | const raw_ostream::Colors Color = raw_ostream::BLUE; |
| 5335 | if (ShowColors) |
| 5336 | OS.changeColor(Color); |
| 5337 | OS << " Preds " ; |
| 5338 | if (ShowColors) |
| 5339 | OS.resetColor(); |
| 5340 | OS << '(' << B.pred_size() << "):"; |
| 5341 | unsigned i = 0; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5342 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5343 | if (ShowColors) |
| 5344 | OS.changeColor(Color); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5345 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5346 | for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end(); |
| 5347 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 5348 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5349 | OS << "\n "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5350 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 5351 | CFGBlock *B = *I; |
| 5352 | bool Reachable = true; |
| 5353 | if (!B) { |
| 5354 | Reachable = false; |
| 5355 | B = I->getPossiblyUnreachableBlock(); |
| 5356 | } |
| 5357 | |
| 5358 | OS << " B" << B->getBlockID(); |
| 5359 | if (!Reachable) |
| 5360 | OS << "(Unreachable)"; |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5361 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5362 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5363 | if (ShowColors) |
| 5364 | OS.resetColor(); |
| 5365 | |
| 5366 | OS << '\n'; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5367 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5368 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5369 | // Print the successors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5370 | if (!B.succ_empty()) { |
| 5371 | const raw_ostream::Colors Color = raw_ostream::MAGENTA; |
| 5372 | if (ShowColors) |
| 5373 | OS.changeColor(Color); |
| 5374 | OS << " Succs "; |
| 5375 | if (ShowColors) |
| 5376 | OS.resetColor(); |
| 5377 | OS << '(' << B.succ_size() << "):"; |
| 5378 | unsigned i = 0; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5379 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5380 | if (ShowColors) |
| 5381 | OS.changeColor(Color); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5382 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5383 | for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end(); |
| 5384 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 5385 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5386 | OS << "\n "; |
| 5387 | |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 5388 | CFGBlock *B = *I; |
| 5389 | |
| 5390 | bool Reachable = true; |
| 5391 | if (!B) { |
| 5392 | Reachable = false; |
| 5393 | B = I->getPossiblyUnreachableBlock(); |
| 5394 | } |
| 5395 | |
| 5396 | if (B) { |
| 5397 | OS << " B" << B->getBlockID(); |
| 5398 | if (!Reachable) |
| 5399 | OS << "(Unreachable)"; |
| 5400 | } |
| 5401 | else { |
| 5402 | OS << " NULL"; |
| 5403 | } |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5404 | } |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 5405 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5406 | if (ShowColors) |
| 5407 | OS.resetColor(); |
| 5408 | OS << '\n'; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5409 | } |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5410 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5411 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5412 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5413 | /// dump - A simple pretty printer of a CFG that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5414 | void CFG::dump(const LangOptions &LO, bool ShowColors) const { |
| 5415 | print(llvm::errs(), LO, ShowColors); |
| 5416 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5417 | |
| 5418 | /// 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] | 5419 | void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5420 | StmtPrinterHelper Helper(this, LO); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5421 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5422 | // Print the entry block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5423 | print_block(OS, this, getEntry(), Helper, true, ShowColors); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5424 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5425 | // Iterate through the CFGBlocks and print them one by one. |
| 5426 | for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) { |
| 5427 | // Skip the entry block, because we already printed it. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 5428 | if (&(**I) == &getEntry() || &(**I) == &getExit()) |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5429 | continue; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5430 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5431 | print_block(OS, this, **I, Helper, true, ShowColors); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5432 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5433 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5434 | // Print the exit block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5435 | print_block(OS, this, getExit(), Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5436 | OS << '\n'; |
Ted Kremenek | e03879b | 2008-11-24 20:50:24 +0000 | [diff] [blame] | 5437 | OS.flush(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5438 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5439 | |
| 5440 | /// dump - A simply pretty printer of a CFGBlock that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5441 | void CFGBlock::dump(const CFG* cfg, const LangOptions &LO, |
| 5442 | bool ShowColors) const { |
| 5443 | print(llvm::errs(), cfg, LO, ShowColors); |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5444 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5445 | |
Yaron Keren | cdae941 | 2016-01-29 19:38:18 +0000 | [diff] [blame] | 5446 | LLVM_DUMP_METHOD void CFGBlock::dump() const { |
Anna Zaks | a6fea13 | 2014-06-13 23:47:38 +0000 | [diff] [blame] | 5447 | dump(getParent(), LangOptions(), false); |
| 5448 | } |
| 5449 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5450 | /// print - A simple pretty printer of a CFGBlock that outputs to an ostream. |
| 5451 | /// Generally this will only be called from CFG::print. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5452 | void CFGBlock::print(raw_ostream &OS, const CFG* cfg, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5453 | const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5454 | StmtPrinterHelper Helper(cfg, LO); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5455 | print_block(OS, cfg, *this, Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5456 | OS << '\n'; |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 5457 | } |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5458 | |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5459 | /// printTerminator - A simple pretty printer of the terminator of a CFGBlock. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5460 | void CFGBlock::printTerminator(raw_ostream &OS, |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5461 | const LangOptions &LO) const { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5462 | CFGBlockTerminatorPrint TPrinter(OS, nullptr, PrintingPolicy(LO)); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5463 | TPrinter.print(getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5464 | } |
| 5465 | |
Ted Kremenek | ec3bbf4 | 2014-03-29 00:35:20 +0000 | [diff] [blame] | 5466 | Stmt *CFGBlock::getTerminatorCondition(bool StripParens) { |
Marcin Swiderski | a7d84a7 | 2010-10-29 05:21:47 +0000 | [diff] [blame] | 5467 | Stmt *Terminator = this->Terminator; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5468 | if (!Terminator) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5469 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5470 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5471 | Expr *E = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5472 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5473 | switch (Terminator->getStmtClass()) { |
| 5474 | default: |
| 5475 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5476 | |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 5477 | case Stmt::CXXForRangeStmtClass: |
| 5478 | E = cast<CXXForRangeStmt>(Terminator)->getCond(); |
| 5479 | break; |
| 5480 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5481 | case Stmt::ForStmtClass: |
| 5482 | E = cast<ForStmt>(Terminator)->getCond(); |
| 5483 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5484 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5485 | case Stmt::WhileStmtClass: |
| 5486 | E = cast<WhileStmt>(Terminator)->getCond(); |
| 5487 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5488 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5489 | case Stmt::DoStmtClass: |
| 5490 | E = cast<DoStmt>(Terminator)->getCond(); |
| 5491 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5492 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5493 | case Stmt::IfStmtClass: |
| 5494 | E = cast<IfStmt>(Terminator)->getCond(); |
| 5495 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5496 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5497 | case Stmt::ChooseExprClass: |
| 5498 | E = cast<ChooseExpr>(Terminator)->getCond(); |
| 5499 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5500 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5501 | case Stmt::IndirectGotoStmtClass: |
| 5502 | E = cast<IndirectGotoStmt>(Terminator)->getTarget(); |
| 5503 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5504 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5505 | case Stmt::SwitchStmtClass: |
| 5506 | E = cast<SwitchStmt>(Terminator)->getCond(); |
| 5507 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5508 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5509 | case Stmt::BinaryConditionalOperatorClass: |
| 5510 | E = cast<BinaryConditionalOperator>(Terminator)->getCond(); |
| 5511 | break; |
| 5512 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5513 | case Stmt::ConditionalOperatorClass: |
| 5514 | E = cast<ConditionalOperator>(Terminator)->getCond(); |
| 5515 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5516 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5517 | case Stmt::BinaryOperatorClass: // '&&' and '||' |
| 5518 | E = cast<BinaryOperator>(Terminator)->getLHS(); |
Ted Kremenek | 6d8b46e | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 5519 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5520 | |
Ted Kremenek | 6d8b46e | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 5521 | case Stmt::ObjCForCollectionStmtClass: |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5522 | return Terminator; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5523 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5524 | |
Ted Kremenek | ec3bbf4 | 2014-03-29 00:35:20 +0000 | [diff] [blame] | 5525 | if (!StripParens) |
| 5526 | return E; |
| 5527 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5528 | return E ? E->IgnoreParens() : nullptr; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5529 | } |
| 5530 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5531 | //===----------------------------------------------------------------------===// |
| 5532 | // CFG Graphviz Visualization |
| 5533 | //===----------------------------------------------------------------------===// |
| 5534 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5535 | #ifndef NDEBUG |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5536 | static StmtPrinterHelper* GraphHelper; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5537 | #endif |
| 5538 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5539 | void CFG::viewCFG(const LangOptions &LO) const { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5540 | #ifndef NDEBUG |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5541 | StmtPrinterHelper H(this, LO); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5542 | GraphHelper = &H; |
| 5543 | llvm::ViewGraph(this,"CFG"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5544 | GraphHelper = nullptr; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5545 | #endif |
| 5546 | } |
| 5547 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5548 | namespace llvm { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5549 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5550 | template<> |
| 5551 | struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5552 | DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {} |
Tobias Grosser | 9fc223a | 2009-11-30 14:16:05 +0000 | [diff] [blame] | 5553 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5554 | static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) { |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5555 | #ifndef NDEBUG |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5556 | std::string OutSStr; |
| 5557 | llvm::raw_string_ostream Out(OutSStr); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5558 | print_block(Out,Graph, *Node, *GraphHelper, false, false); |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5559 | std::string& OutStr = Out.str(); |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5560 | |
| 5561 | if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); |
| 5562 | |
| 5563 | // Process string output to make it nicer... |
| 5564 | for (unsigned i = 0; i != OutStr.length(); ++i) |
| 5565 | if (OutStr[i] == '\n') { // Left justify |
| 5566 | OutStr[i] = '\\'; |
| 5567 | OutStr.insert(OutStr.begin()+i+1, 'l'); |
| 5568 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5569 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5570 | return OutStr; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5571 | #else |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5572 | return {}; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5573 | #endif |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5574 | } |
| 5575 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5576 | |
| 5577 | } // namespace llvm |