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" |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 30 | #include "clang/Analysis/ConstructionContext.h" |
Csaba Dabis | dea605e | 2019-05-29 18:29:31 +0000 | [diff] [blame] | 31 | #include "clang/Analysis/Support/BumpVector.h" |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 32 | #include "clang/Basic/Builtins.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 33 | #include "clang/Basic/ExceptionSpecificationType.h" |
Csaba Dabis | dea605e | 2019-05-29 18:29:31 +0000 | [diff] [blame] | 34 | #include "clang/Basic/JsonSupport.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 35 | #include "clang/Basic/LLVM.h" |
| 36 | #include "clang/Basic/LangOptions.h" |
| 37 | #include "clang/Basic/SourceLocation.h" |
| 38 | #include "clang/Basic/Specifiers.h" |
| 39 | #include "llvm/ADT/APInt.h" |
| 40 | #include "llvm/ADT/APSInt.h" |
| 41 | #include "llvm/ADT/ArrayRef.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 42 | #include "llvm/ADT/DenseMap.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 43 | #include "llvm/ADT/Optional.h" |
| 44 | #include "llvm/ADT/STLExtras.h" |
| 45 | #include "llvm/ADT/SetVector.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 46 | #include "llvm/ADT/SmallPtrSet.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 47 | #include "llvm/ADT/SmallVector.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Allocator.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 49 | #include "llvm/Support/Casting.h" |
| 50 | #include "llvm/Support/Compiler.h" |
| 51 | #include "llvm/Support/DOTGraphTraits.h" |
| 52 | #include "llvm/Support/ErrorHandling.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 53 | #include "llvm/Support/Format.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 54 | #include "llvm/Support/GraphWriter.h" |
| 55 | #include "llvm/Support/SaveAndRestore.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 56 | #include "llvm/Support/raw_ostream.h" |
| 57 | #include <cassert> |
| 58 | #include <memory> |
| 59 | #include <string> |
| 60 | #include <tuple> |
| 61 | #include <utility> |
| 62 | #include <vector> |
Ted Kremenek | e5ccf9a | 2008-01-11 00:40:29 +0000 | [diff] [blame] | 63 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 64 | using namespace clang; |
| 65 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 66 | static SourceLocation GetEndLoc(Decl *D) { |
| 67 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 68 | if (Expr *Ex = VD->getInit()) |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 69 | return Ex->getSourceRange().getEnd(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 70 | return D->getLocation(); |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 71 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 72 | |
Richard Trieu | 6541c79 | 2019-09-21 02:37:10 +0000 | [diff] [blame] | 73 | /// Returns true on constant values based around a single IntegerLiteral. |
| 74 | /// Allow for use of parentheses, integer casts, and negative signs. |
| 75 | static bool IsIntegerLiteralConstantExpr(const Expr *E) { |
| 76 | // Allow parentheses |
| 77 | E = E->IgnoreParens(); |
| 78 | |
| 79 | // Allow conversions to different integer kind. |
| 80 | if (const auto *CE = dyn_cast<CastExpr>(E)) { |
| 81 | if (CE->getCastKind() != CK_IntegralCast) |
| 82 | return false; |
| 83 | E = CE->getSubExpr(); |
| 84 | } |
| 85 | |
| 86 | // Allow negative numbers. |
| 87 | if (const auto *UO = dyn_cast<UnaryOperator>(E)) { |
| 88 | if (UO->getOpcode() != UO_Minus) |
| 89 | return false; |
| 90 | E = UO->getSubExpr(); |
| 91 | } |
| 92 | |
| 93 | return isa<IntegerLiteral>(E); |
| 94 | } |
| 95 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 96 | /// Helper for tryNormalizeBinaryOperator. Attempts to extract an IntegerLiteral |
Richard Trieu | 6541c79 | 2019-09-21 02:37:10 +0000 | [diff] [blame] | 97 | /// constant expression or EnumConstantDecl from the given Expr. If it fails, |
| 98 | /// returns nullptr. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 99 | static const Expr *tryTransformToIntOrEnumConstant(const Expr *E) { |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 100 | E = E->IgnoreParens(); |
Richard Trieu | 6541c79 | 2019-09-21 02:37:10 +0000 | [diff] [blame] | 101 | if (IsIntegerLiteralConstantExpr(E)) |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 102 | return E; |
| 103 | if (auto *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts())) |
| 104 | return isa<EnumConstantDecl>(DR->getDecl()) ? DR : nullptr; |
| 105 | return nullptr; |
| 106 | } |
| 107 | |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 108 | /// Tries to interpret a binary operator into `Expr Op NumExpr` form, if |
| 109 | /// NumExpr is an integer literal or an enum constant. |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 110 | /// |
| 111 | /// If this fails, at least one of the returned DeclRefExpr or Expr will be |
| 112 | /// null. |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 113 | static std::tuple<const Expr *, BinaryOperatorKind, const Expr *> |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 114 | tryNormalizeBinaryOperator(const BinaryOperator *B) { |
| 115 | BinaryOperatorKind Op = B->getOpcode(); |
| 116 | |
| 117 | const Expr *MaybeDecl = B->getLHS(); |
| 118 | const Expr *Constant = tryTransformToIntOrEnumConstant(B->getRHS()); |
| 119 | // Expr looked like `0 == Foo` instead of `Foo == 0` |
| 120 | if (Constant == nullptr) { |
| 121 | // Flip the operator |
| 122 | if (Op == BO_GT) |
| 123 | Op = BO_LT; |
| 124 | else if (Op == BO_GE) |
| 125 | Op = BO_LE; |
| 126 | else if (Op == BO_LT) |
| 127 | Op = BO_GT; |
| 128 | else if (Op == BO_LE) |
| 129 | Op = BO_GE; |
| 130 | |
| 131 | MaybeDecl = B->getRHS(); |
| 132 | Constant = tryTransformToIntOrEnumConstant(B->getLHS()); |
| 133 | } |
| 134 | |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 135 | return std::make_tuple(MaybeDecl, Op, Constant); |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | /// For an expression `x == Foo && x == Bar`, this determines whether the |
| 139 | /// `Foo` and `Bar` are either of the same enumeration type, or both integer |
| 140 | /// literals. |
| 141 | /// |
| 142 | /// It's an error to pass this arguments that are not either IntegerLiterals |
| 143 | /// or DeclRefExprs (that have decls of type EnumConstantDecl) |
| 144 | static bool areExprTypesCompatible(const Expr *E1, const Expr *E2) { |
| 145 | // User intent isn't clear if they're mixing int literals with enum |
| 146 | // constants. |
Richard Trieu | 6541c79 | 2019-09-21 02:37:10 +0000 | [diff] [blame] | 147 | if (isa<DeclRefExpr>(E1) != isa<DeclRefExpr>(E2)) |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 148 | return false; |
| 149 | |
| 150 | // Integer literal comparisons, regardless of literal type, are acceptable. |
Richard Trieu | 6541c79 | 2019-09-21 02:37:10 +0000 | [diff] [blame] | 151 | if (!isa<DeclRefExpr>(E1)) |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 152 | return true; |
| 153 | |
| 154 | // IntegerLiterals are handled above and only EnumConstantDecls are expected |
| 155 | // beyond this point |
| 156 | assert(isa<DeclRefExpr>(E1) && isa<DeclRefExpr>(E2)); |
| 157 | auto *Decl1 = cast<DeclRefExpr>(E1)->getDecl(); |
| 158 | auto *Decl2 = cast<DeclRefExpr>(E2)->getDecl(); |
| 159 | |
| 160 | assert(isa<EnumConstantDecl>(Decl1) && isa<EnumConstantDecl>(Decl2)); |
| 161 | const DeclContext *DC1 = Decl1->getDeclContext(); |
| 162 | const DeclContext *DC2 = Decl2->getDeclContext(); |
| 163 | |
| 164 | assert(isa<EnumDecl>(DC1) && isa<EnumDecl>(DC2)); |
| 165 | return DC1 == DC2; |
| 166 | } |
| 167 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 168 | namespace { |
| 169 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 170 | class CFGBuilder; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 171 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 172 | /// The CFG builder uses a recursive algorithm to build the CFG. When |
| 173 | /// we process an expression, sometimes we know that we must add the |
| 174 | /// subexpressions as block-level expressions. For example: |
| 175 | /// |
| 176 | /// exp1 || exp2 |
| 177 | /// |
| 178 | /// When processing the '||' expression, we know that exp1 and exp2 |
| 179 | /// need to be added as block-level expressions, even though they |
| 180 | /// might not normally need to be. AddStmtChoice records this |
| 181 | /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then |
| 182 | /// the builder has an option not to add a subexpression as a |
| 183 | /// block-level expression. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 184 | class AddStmtChoice { |
| 185 | public: |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 186 | enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 }; |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 187 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 188 | AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {} |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 189 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 190 | bool alwaysAdd(CFGBuilder &builder, |
| 191 | const Stmt *stmt) const; |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 192 | |
| 193 | /// Return a copy of this object, except with the 'always-add' bit |
| 194 | /// set as specified. |
| 195 | AddStmtChoice withAlwaysAdd(bool alwaysAdd) const { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 196 | return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 199 | private: |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 200 | Kind kind; |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 201 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 202 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 203 | /// LocalScope - Node in tree of local scopes created for C++ implicit |
| 204 | /// destructor calls generation. It contains list of automatic variables |
| 205 | /// declared in the scope and link to position in previous scope this scope |
| 206 | /// began in. |
| 207 | /// |
| 208 | /// The process of creating local scopes is as follows: |
| 209 | /// - Init CFGBuilder::ScopePos with invalid position (equivalent for null), |
| 210 | /// - Before processing statements in scope (e.g. CompoundStmt) create |
| 211 | /// LocalScope object using CFGBuilder::ScopePos as link to previous scope |
| 212 | /// and set CFGBuilder::ScopePos to the end of new scope, |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 213 | /// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 214 | /// at this VarDecl, |
| 215 | /// - For every normal (without jump) end of scope add to CFGBlock destructors |
| 216 | /// for objects in the current scope, |
| 217 | /// - For every jump add to CFGBlock destructors for objects |
| 218 | /// between CFGBuilder::ScopePos and local scope position saved for jump |
| 219 | /// target. Thanks to C++ restrictions on goto jumps we can be sure that |
| 220 | /// jump target position will be on the path to root from CFGBuilder::ScopePos |
| 221 | /// (adding any variable that doesn't need constructor to be called to |
| 222 | /// LocalScope can break this assumption), |
| 223 | /// |
| 224 | class LocalScope { |
| 225 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 226 | friend class const_iterator; |
| 227 | |
| 228 | using AutomaticVarsTy = BumpVector<VarDecl *>; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 229 | |
| 230 | /// const_iterator - Iterates local scope backwards and jumps to previous |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 231 | /// scope on reaching the beginning of currently iterated scope. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 232 | class const_iterator { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 233 | const LocalScope* Scope = nullptr; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 234 | |
| 235 | /// VarIter is guaranteed to be greater then 0 for every valid iterator. |
| 236 | /// Invalid iterator (with null Scope) has VarIter equal to 0. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 237 | unsigned VarIter = 0; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 238 | |
| 239 | public: |
| 240 | /// Create invalid iterator. Dereferencing invalid iterator is not allowed. |
| 241 | /// Incrementing invalid iterator is allowed and will result in invalid |
| 242 | /// iterator. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 243 | const_iterator() = default; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 244 | |
| 245 | /// Create valid iterator. In case when S.Prev is an invalid iterator and |
| 246 | /// I is equal to 0, this will create invalid iterator. |
| 247 | const_iterator(const LocalScope& S, unsigned I) |
| 248 | : Scope(&S), VarIter(I) { |
| 249 | // Iterator to "end" of scope is not allowed. Handle it by going up |
| 250 | // in scopes tree possibly up to invalid iterator in the root. |
| 251 | if (VarIter == 0 && Scope) |
| 252 | *this = Scope->Prev; |
| 253 | } |
| 254 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 255 | VarDecl *const* operator->() const { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 256 | assert(Scope && "Dereferencing invalid iterator is not allowed"); |
| 257 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 258 | return &Scope->Vars[VarIter - 1]; |
| 259 | } |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 260 | |
| 261 | const VarDecl *getFirstVarInScope() const { |
| 262 | assert(Scope && "Dereferencing invalid iterator is not allowed"); |
| 263 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
| 264 | return Scope->Vars[0]; |
| 265 | } |
| 266 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 267 | VarDecl *operator*() const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 268 | return *this->operator->(); |
| 269 | } |
| 270 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 271 | const_iterator &operator++() { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 272 | if (!Scope) |
| 273 | return *this; |
| 274 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 275 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 276 | --VarIter; |
| 277 | if (VarIter == 0) |
| 278 | *this = Scope->Prev; |
| 279 | return *this; |
| 280 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 281 | const_iterator operator++(int) { |
| 282 | const_iterator P = *this; |
| 283 | ++*this; |
| 284 | return P; |
| 285 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 286 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 287 | bool operator==(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 288 | return Scope == rhs.Scope && VarIter == rhs.VarIter; |
| 289 | } |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 290 | bool operator!=(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 291 | return !(*this == rhs); |
| 292 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 293 | |
Aaron Ballman | 6734766 | 2015-02-15 22:00:28 +0000 | [diff] [blame] | 294 | explicit operator bool() const { |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 295 | return *this != const_iterator(); |
| 296 | } |
| 297 | |
| 298 | int distance(const_iterator L); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 299 | const_iterator shared_parent(const_iterator L); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 300 | bool pointsToFirstDeclaredVar() { return VarIter == 1; } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 301 | }; |
| 302 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 303 | private: |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 304 | BumpVectorContext ctx; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 305 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 306 | /// Automatic variables in order of declaration. |
| 307 | AutomaticVarsTy Vars; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 308 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 309 | /// Iterator to variable in previous scope that was declared just before |
| 310 | /// begin of this scope. |
| 311 | const_iterator Prev; |
| 312 | |
| 313 | public: |
| 314 | /// Constructs empty scope linked to previous scope in specified place. |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 315 | LocalScope(BumpVectorContext ctx, const_iterator P) |
| 316 | : ctx(std::move(ctx)), Vars(this->ctx, 4), Prev(P) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 317 | |
| 318 | /// Begin of scope in direction of CFG building (backwards). |
| 319 | const_iterator begin() const { return const_iterator(*this, Vars.size()); } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 320 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 321 | void addVar(VarDecl *VD) { |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 322 | Vars.push_back(VD, ctx); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 323 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 324 | }; |
| 325 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 326 | } // namespace |
| 327 | |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 328 | /// distance - Calculates distance from this to L. L must be reachable from this |
| 329 | /// (with use of ++ operator). Cost of calculating the distance is linear w.r.t. |
| 330 | /// number of scopes between this and L. |
| 331 | int LocalScope::const_iterator::distance(LocalScope::const_iterator L) { |
| 332 | int D = 0; |
| 333 | const_iterator F = *this; |
| 334 | while (F.Scope != L.Scope) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 335 | assert(F != const_iterator() && |
| 336 | "L iterator is not reachable from F iterator."); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 337 | D += F.VarIter; |
| 338 | F = F.Scope->Prev; |
| 339 | } |
| 340 | D += F.VarIter - L.VarIter; |
| 341 | return D; |
| 342 | } |
| 343 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 344 | /// Calculates the closest parent of this iterator |
| 345 | /// that is in a scope reachable through the parents of L. |
| 346 | /// I.e. when using 'goto' from this to L, the lifetime of all variables |
| 347 | /// between this and shared_parent(L) end. |
| 348 | LocalScope::const_iterator |
| 349 | LocalScope::const_iterator::shared_parent(LocalScope::const_iterator L) { |
| 350 | llvm::SmallPtrSet<const LocalScope *, 4> ScopesOfL; |
| 351 | while (true) { |
| 352 | ScopesOfL.insert(L.Scope); |
| 353 | if (L == const_iterator()) |
| 354 | break; |
| 355 | L = L.Scope->Prev; |
| 356 | } |
| 357 | |
| 358 | const_iterator F = *this; |
| 359 | while (true) { |
| 360 | if (ScopesOfL.count(F.Scope)) |
| 361 | return F; |
| 362 | assert(F != const_iterator() && |
| 363 | "L iterator is not reachable from F iterator."); |
| 364 | F = F.Scope->Prev; |
| 365 | } |
| 366 | } |
| 367 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 368 | namespace { |
| 369 | |
Jonathan Roelofs | 99bdd98 | 2015-05-19 18:51:56 +0000 | [diff] [blame] | 370 | /// Structure for specifying position in CFG during its build process. It |
| 371 | /// consists of CFGBlock that specifies position in CFG and |
| 372 | /// LocalScope::const_iterator that specifies position in LocalScope graph. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 373 | struct BlockScopePosPair { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 374 | CFGBlock *block = nullptr; |
| 375 | LocalScope::const_iterator scopePosition; |
| 376 | |
| 377 | BlockScopePosPair() = default; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 378 | BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 379 | : block(b), scopePosition(scopePos) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 380 | }; |
| 381 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 382 | /// TryResult - a class representing a variant over the values |
| 383 | /// 'true', 'false', or 'unknown'. This is returned by tryEvaluateBool, |
| 384 | /// and is used by the CFGBuilder to decide if a branch condition |
| 385 | /// can be decided up front during CFG construction. |
| 386 | class TryResult { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 387 | int X = -1; |
| 388 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 389 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 390 | TryResult() = default; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 391 | TryResult(bool b) : X(b ? 1 : 0) {} |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 392 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 393 | bool isTrue() const { return X == 1; } |
| 394 | bool isFalse() const { return X == 0; } |
| 395 | bool isKnown() const { return X >= 0; } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 396 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 397 | void negate() { |
| 398 | assert(isKnown()); |
| 399 | X ^= 0x1; |
| 400 | } |
| 401 | }; |
| 402 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 403 | } // namespace |
| 404 | |
| 405 | static TryResult bothKnownTrue(TryResult R1, TryResult R2) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 406 | if (!R1.isKnown() || !R2.isKnown()) |
| 407 | return TryResult(); |
| 408 | return TryResult(R1.isTrue() && R2.isTrue()); |
| 409 | } |
| 410 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 411 | namespace { |
| 412 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 413 | class reverse_children { |
| 414 | llvm::SmallVector<Stmt *, 12> childrenBuf; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 415 | ArrayRef<Stmt *> children; |
| 416 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 417 | public: |
| 418 | reverse_children(Stmt *S); |
| 419 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 420 | using iterator = ArrayRef<Stmt *>::reverse_iterator; |
| 421 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 422 | iterator begin() const { return children.rbegin(); } |
| 423 | iterator end() const { return children.rend(); } |
| 424 | }; |
| 425 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 426 | } // namespace |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 427 | |
| 428 | reverse_children::reverse_children(Stmt *S) { |
| 429 | if (CallExpr *CE = dyn_cast<CallExpr>(S)) { |
| 430 | children = CE->getRawSubExprs(); |
| 431 | return; |
| 432 | } |
| 433 | switch (S->getStmtClass()) { |
Ted Kremenek | 7d86b9c | 2013-02-05 22:03:14 +0000 | [diff] [blame] | 434 | // Note: Fill in this switch with more cases we want to optimize. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 435 | case Stmt::InitListExprClass: { |
| 436 | InitListExpr *IE = cast<InitListExpr>(S); |
| 437 | children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()), |
| 438 | IE->getNumInits()); |
| 439 | return; |
| 440 | } |
| 441 | default: |
| 442 | break; |
| 443 | } |
| 444 | |
| 445 | // Default case for all other statements. |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 446 | for (Stmt *SubStmt : S->children()) |
| 447 | childrenBuf.push_back(SubStmt); |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 448 | |
| 449 | // This needs to be done *after* childrenBuf has been populated. |
| 450 | children = childrenBuf; |
| 451 | } |
| 452 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 453 | namespace { |
| 454 | |
Ted Kremenek | be9b33b | 2008-08-04 22:51:42 +0000 | [diff] [blame] | 455 | /// CFGBuilder - This class implements CFG construction from an AST. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 456 | /// The builder is stateful: an instance of the builder should be used to only |
| 457 | /// construct a single CFG. |
| 458 | /// |
| 459 | /// Example usage: |
| 460 | /// |
| 461 | /// CFGBuilder builder; |
Jonathan Roelofs | ab046c5 | 2015-07-27 16:05:36 +0000 | [diff] [blame] | 462 | /// std::unique_ptr<CFG> cfg = builder.buildCFG(decl, stmt1); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 463 | /// |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 464 | /// CFG construction is done via a recursive walk of an AST. We actually parse |
| 465 | /// the AST in reverse order so that the successor of a basic block is |
| 466 | /// constructed prior to its predecessor. This allows us to nicely capture |
| 467 | /// implicit fall-throughs without extra basic blocks. |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 468 | class CFGBuilder { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 469 | using JumpTarget = BlockScopePosPair; |
| 470 | using JumpSource = BlockScopePosPair; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 471 | |
Mike Stump | 0d76d07 | 2009-07-20 23:24:15 +0000 | [diff] [blame] | 472 | ASTContext *Context; |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 473 | std::unique_ptr<CFG> cfg; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 474 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 475 | // Current block. |
| 476 | CFGBlock *Block = nullptr; |
| 477 | |
| 478 | // Block after the current block. |
| 479 | CFGBlock *Succ = nullptr; |
| 480 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 481 | JumpTarget ContinueJumpTarget; |
| 482 | JumpTarget BreakJumpTarget; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 483 | JumpTarget SEHLeaveJumpTarget; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 484 | CFGBlock *SwitchTerminatedBlock = nullptr; |
| 485 | CFGBlock *DefaultCaseBlock = nullptr; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 486 | |
| 487 | // This can point either to a try or a __try block. The frontend forbids |
| 488 | // 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] | 489 | CFGBlock *TryTerminatedBlock = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 490 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 491 | // Current position in local scope. |
| 492 | LocalScope::const_iterator ScopePos; |
| 493 | |
| 494 | // LabelMap records the mapping from Label expressions to their jump targets. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 495 | using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 496 | LabelMapTy LabelMap; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 497 | |
| 498 | // A list of blocks that end with a "goto" that must be backpatched to their |
| 499 | // resolved targets upon completion of CFG construction. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 500 | using BackpatchBlocksTy = std::vector<JumpSource>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 501 | BackpatchBlocksTy BackpatchBlocks; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 502 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 503 | // A list of labels whose address has been taken (for indirect gotos). |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 504 | using LabelSetTy = llvm::SmallSetVector<LabelDecl *, 8>; |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 505 | LabelSetTy AddressTakenLabels; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 506 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 507 | // Information about the currently visited C++ object construction site. |
| 508 | // This is set in the construction trigger and read when the constructor |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 509 | // or a function that returns an object by value is being visited. |
| 510 | llvm::DenseMap<Expr *, const ConstructionContextLayer *> |
Artem Dergachev | 5e2f6ba | 2018-02-23 22:49:25 +0000 | [diff] [blame] | 511 | ConstructionContextMap; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 512 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 513 | using DeclsWithEndedScopeSetTy = llvm::SmallSetVector<VarDecl *, 16>; |
| 514 | DeclsWithEndedScopeSetTy DeclsWithEndedScope; |
| 515 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 516 | bool badCFG = false; |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 517 | const CFG::BuildOptions &BuildOpts; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 518 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 519 | // State to track for building switch statements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 520 | bool switchExclusivelyCovered = false; |
| 521 | Expr::EvalResult *switchCond = nullptr; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 522 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 523 | CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry = nullptr; |
| 524 | const Stmt *lastLookup = nullptr; |
Zhongxing Xu | d38fb84 | 2010-09-16 03:28:18 +0000 | [diff] [blame] | 525 | |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 526 | // Caches boolean evaluations of expressions to avoid multiple re-evaluations |
| 527 | // during construction of branches for chained logical operators. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 528 | using CachedBoolEvalsTy = llvm::DenseMap<Expr *, TryResult>; |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 529 | CachedBoolEvalsTy CachedBoolEvals; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 530 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 531 | public: |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 532 | explicit CFGBuilder(ASTContext *astContext, |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 533 | const CFG::BuildOptions &buildOpts) |
| 534 | : Context(astContext), cfg(new CFG()), // crew a new CFG |
Artem Dergachev | 5e2f6ba | 2018-02-23 22:49:25 +0000 | [diff] [blame] | 535 | ConstructionContextMap(), BuildOpts(buildOpts) {} |
| 536 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 537 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 538 | // buildCFG - Used by external clients to construct the CFG. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 539 | std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 540 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 541 | bool alwaysAdd(const Stmt *stmt); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 542 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 543 | private: |
| 544 | // Visitors to walk an AST and construct the CFG. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 545 | CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); |
| 546 | CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 547 | CFGBlock *VisitBreakStmt(BreakStmt *B); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 548 | CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 549 | CFGBlock *VisitCaseStmt(CaseStmt *C); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 550 | CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 551 | CFGBlock *VisitCompoundStmt(CompoundStmt *C, bool ExternallyDestructed); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 552 | CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C, |
| 553 | AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 554 | CFGBlock *VisitContinueStmt(ContinueStmt *C); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 555 | CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 556 | AddStmtChoice asc); |
| 557 | CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S); |
| 558 | CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc); |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 559 | CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 560 | CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 561 | CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S); |
| 562 | CFGBlock *VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 563 | AddStmtChoice asc); |
| 564 | CFGBlock *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 565 | AddStmtChoice asc); |
| 566 | CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T); |
| 567 | CFGBlock *VisitCXXTryStmt(CXXTryStmt *S); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 568 | CFGBlock *VisitDeclStmt(DeclStmt *DS); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 569 | CFGBlock *VisitDeclSubExpr(DeclStmt *DS); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 570 | CFGBlock *VisitDefaultStmt(DefaultStmt *D); |
| 571 | CFGBlock *VisitDoStmt(DoStmt *D); |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 572 | CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, |
| 573 | AddStmtChoice asc, bool ExternallyDestructed); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 574 | CFGBlock *VisitForStmt(ForStmt *F); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 575 | CFGBlock *VisitGotoStmt(GotoStmt *G); |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 576 | CFGBlock *VisitGCCAsmStmt(GCCAsmStmt *G, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 577 | CFGBlock *VisitIfStmt(IfStmt *I); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 578 | CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc); |
Bill Wendling | 8003edc | 2018-11-09 00:41:36 +0000 | [diff] [blame] | 579 | CFGBlock *VisitConstantExpr(ConstantExpr *E, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 580 | CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I); |
| 581 | CFGBlock *VisitLabelStmt(LabelStmt *L); |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 582 | CFGBlock *VisitBlockExpr(BlockExpr *E, AddStmtChoice asc); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 583 | CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 584 | CFGBlock *VisitLogicalOperator(BinaryOperator *B); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 585 | std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B, |
| 586 | Stmt *Term, |
| 587 | CFGBlock *TrueBlock, |
| 588 | CFGBlock *FalseBlock); |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 589 | CFGBlock *VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE, |
| 590 | AddStmtChoice asc); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 591 | CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 592 | CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); |
| 593 | CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S); |
| 594 | CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); |
| 595 | CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 596 | CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 597 | CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S); |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 598 | CFGBlock *VisitObjCMessageExpr(ObjCMessageExpr *E, AddStmtChoice asc); |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 599 | CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E); |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 600 | CFGBlock *VisitReturnStmt(Stmt *S); |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 601 | CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S); |
| 602 | CFGBlock *VisitSEHFinallyStmt(SEHFinallyStmt *S); |
| 603 | CFGBlock *VisitSEHLeaveStmt(SEHLeaveStmt *S); |
| 604 | CFGBlock *VisitSEHTryStmt(SEHTryStmt *S); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 605 | CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 606 | CFGBlock *VisitSwitchStmt(SwitchStmt *S); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 607 | CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 608 | AddStmtChoice asc); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 609 | CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 610 | CFGBlock *VisitWhileStmt(WhileStmt *W); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 611 | |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 612 | CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd, |
| 613 | bool ExternallyDestructed = false); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 614 | CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 615 | CFGBlock *VisitChildren(Stmt *S); |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 616 | CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc); |
Alexey Bataev | c2c21ef | 2019-07-11 14:54:17 +0000 | [diff] [blame] | 617 | CFGBlock *VisitOMPExecutableDirective(OMPExecutableDirective *D, |
| 618 | AddStmtChoice asc); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 619 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 620 | void maybeAddScopeBeginForVarDecl(CFGBlock *B, const VarDecl *VD, |
| 621 | const Stmt *S) { |
| 622 | if (ScopePos && (VD == ScopePos.getFirstVarInScope())) |
| 623 | appendScopeBegin(B, VD, S); |
| 624 | } |
| 625 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 626 | /// When creating the CFG for temporary destructors, we want to mirror the |
| 627 | /// branch structure of the corresponding constructor calls. |
| 628 | /// Thus, while visiting a statement for temporary destructors, we keep a |
| 629 | /// context to keep track of the following information: |
| 630 | /// - whether a subexpression is executed unconditionally |
| 631 | /// - if a subexpression is executed conditionally, the first |
| 632 | /// CXXBindTemporaryExpr we encounter in that subexpression (which |
| 633 | /// corresponds to the last temporary destructor we have to call for this |
| 634 | /// subexpression) and the CFG block at that point (which will become the |
| 635 | /// successor block when inserting the decision point). |
| 636 | /// |
| 637 | /// That way, we can build the branch structure for temporary destructors as |
| 638 | /// follows: |
| 639 | /// 1. If a subexpression is executed unconditionally, we add the temporary |
| 640 | /// destructor calls to the current block. |
| 641 | /// 2. If a subexpression is executed conditionally, when we encounter a |
| 642 | /// CXXBindTemporaryExpr: |
| 643 | /// a) If it is the first temporary destructor call in the subexpression, |
| 644 | /// we remember the CXXBindTemporaryExpr and the current block in the |
| 645 | /// TempDtorContext; we start a new block, and insert the temporary |
| 646 | /// destructor call. |
| 647 | /// b) Otherwise, add the temporary destructor call to the current block. |
| 648 | /// 3. When we finished visiting a conditionally executed subexpression, |
| 649 | /// and we found at least one temporary constructor during the visitation |
| 650 | /// (2.a has executed), we insert a decision block that uses the |
| 651 | /// CXXBindTemporaryExpr as terminator, and branches to the current block |
| 652 | /// if the CXXBindTemporaryExpr was marked executed, and otherwise |
| 653 | /// branches to the stored successor. |
| 654 | struct TempDtorContext { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 655 | TempDtorContext() = default; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 656 | TempDtorContext(TryResult KnownExecuted) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 657 | : IsConditional(true), KnownExecuted(KnownExecuted) {} |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 658 | |
| 659 | /// 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] | 660 | /// call. This is the case when the temporary destructor is |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 661 | /// conditionally executed, and it is the first one we encounter while |
| 662 | /// visiting a subexpression - other temporary destructors at the same level |
| 663 | /// will be added to the same block and are executed under the same |
| 664 | /// condition. |
| 665 | bool needsTempDtorBranch() const { |
| 666 | return IsConditional && !TerminatorExpr; |
| 667 | } |
| 668 | |
| 669 | /// Remember the successor S of a temporary destructor decision branch for |
| 670 | /// the corresponding CXXBindTemporaryExpr E. |
| 671 | void setDecisionPoint(CFGBlock *S, CXXBindTemporaryExpr *E) { |
| 672 | Succ = S; |
| 673 | TerminatorExpr = E; |
| 674 | } |
| 675 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 676 | const bool IsConditional = false; |
| 677 | const TryResult KnownExecuted = true; |
| 678 | CFGBlock *Succ = nullptr; |
| 679 | CXXBindTemporaryExpr *TerminatorExpr = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 680 | }; |
| 681 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 682 | // Visitors to walk an AST and generate destructors of temporaries in |
| 683 | // full expression. |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 684 | CFGBlock *VisitForTemporaryDtors(Stmt *E, bool ExternallyDestructed, |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 685 | TempDtorContext &Context); |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 686 | CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E, bool ExternallyDestructed, |
| 687 | TempDtorContext &Context); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 688 | CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E, |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 689 | bool ExternallyDestructed, |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 690 | TempDtorContext &Context); |
| 691 | CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors( |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 692 | CXXBindTemporaryExpr *E, bool ExternallyDestructed, TempDtorContext &Context); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 693 | CFGBlock *VisitConditionalOperatorForTemporaryDtors( |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 694 | AbstractConditionalOperator *E, bool ExternallyDestructed, |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 695 | TempDtorContext &Context); |
| 696 | void InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 697 | CFGBlock *FalseSucc = nullptr); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 698 | |
Ted Kremenek | 6065ef6 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 699 | // NYS == Not Yet Supported |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 700 | CFGBlock *NYS() { |
Ted Kremenek | b64d183 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 701 | badCFG = true; |
| 702 | return Block; |
| 703 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 704 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 705 | // Remember to apply the construction context based on the current \p Layer |
| 706 | // when constructing the CFG element for \p CE. |
| 707 | void consumeConstructionContext(const ConstructionContextLayer *Layer, |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 708 | Expr *E); |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 709 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 710 | // Scan \p Child statement to find constructors in it, while keeping in mind |
| 711 | // that its parent statement is providing a partial construction context |
| 712 | // described by \p Layer. If a constructor is found, it would be assigned |
| 713 | // the context based on the layer. If an additional construction context layer |
| 714 | // is found, the function recurses into that. |
| 715 | void findConstructionContexts(const ConstructionContextLayer *Layer, |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 716 | Stmt *Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 717 | |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 718 | // Scan all arguments of a call expression for a construction context. |
| 719 | // These sorts of call expressions don't have a common superclass, |
| 720 | // hence strict duck-typing. |
| 721 | template <typename CallLikeExpr, |
| 722 | typename = typename std::enable_if< |
| 723 | std::is_same<CallLikeExpr, CallExpr>::value || |
| 724 | std::is_same<CallLikeExpr, CXXConstructExpr>::value || |
| 725 | std::is_same<CallLikeExpr, ObjCMessageExpr>::value>> |
| 726 | void findConstructionContextsForArguments(CallLikeExpr *E) { |
Artem Dergachev | a657a32 | 2018-07-31 20:45:53 +0000 | [diff] [blame] | 727 | for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) { |
| 728 | Expr *Arg = E->getArg(i); |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 729 | if (Arg->getType()->getAsCXXRecordDecl() && !Arg->isGLValue()) |
| 730 | findConstructionContexts( |
Artem Dergachev | 1f8cb3a | 2018-07-31 21:12:42 +0000 | [diff] [blame] | 731 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), |
| 732 | ConstructionContextItem(E, i)), |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 733 | Arg); |
Artem Dergachev | a657a32 | 2018-07-31 20:45:53 +0000 | [diff] [blame] | 734 | } |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 735 | } |
| 736 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 737 | // Unset the construction context after consuming it. This is done immediately |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 738 | // after adding the CFGConstructor or CFGCXXRecordTypedCall element, so |
| 739 | // there's no need to do this manually in every Visit... function. |
| 740 | void cleanupConstructionContext(Expr *E); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 741 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 742 | void autoCreateBlock() { if (!Block) Block = createBlock(); } |
| 743 | CFGBlock *createBlock(bool add_successor = true); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 744 | CFGBlock *createNoReturnBlock(); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 745 | |
Zhongxing Xu | ea9fcff | 2010-06-03 06:43:23 +0000 | [diff] [blame] | 746 | CFGBlock *addStmt(Stmt *S) { |
| 747 | return Visit(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 748 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 749 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 750 | CFGBlock *addInitializer(CXXCtorInitializer *I); |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 751 | void addLoopExit(const Stmt *LoopStmt); |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 752 | void addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 753 | LocalScope::const_iterator E, Stmt *S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 754 | void addLifetimeEnds(LocalScope::const_iterator B, |
| 755 | LocalScope::const_iterator E, Stmt *S); |
| 756 | void addAutomaticObjHandling(LocalScope::const_iterator B, |
| 757 | LocalScope::const_iterator E, Stmt *S); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 758 | void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 759 | void addScopesEnd(LocalScope::const_iterator B, LocalScope::const_iterator E, |
| 760 | Stmt *S); |
| 761 | |
| 762 | void getDeclsWithEndedScope(LocalScope::const_iterator B, |
| 763 | LocalScope::const_iterator E, Stmt *S); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 764 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 765 | // Local scopes creation. |
| 766 | LocalScope* createOrReuseLocalScope(LocalScope* Scope); |
| 767 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 768 | void addLocalScopeForStmt(Stmt *S); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 769 | LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS, |
| 770 | LocalScope* Scope = nullptr); |
| 771 | LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = nullptr); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 772 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 773 | void addLocalScopeAndDtors(Stmt *S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 774 | |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 775 | const ConstructionContext *retrieveAndCleanupConstructionContext(Expr *E) { |
| 776 | if (!BuildOpts.AddRichCXXConstructors) |
| 777 | return nullptr; |
| 778 | |
| 779 | const ConstructionContextLayer *Layer = ConstructionContextMap.lookup(E); |
| 780 | if (!Layer) |
| 781 | return nullptr; |
| 782 | |
| 783 | cleanupConstructionContext(E); |
| 784 | return ConstructionContext::createFromLayers(cfg->getBumpVectorContext(), |
| 785 | Layer); |
| 786 | } |
| 787 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 788 | // Interface to CFGBlock - adding CFGElements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 789 | |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 790 | void appendStmt(CFGBlock *B, const Stmt *S) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 791 | if (alwaysAdd(S) && cachedEntry) |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 792 | cachedEntry->second = B; |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 793 | |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 794 | // All block-level expressions should have already been IgnoreParens()ed. |
| 795 | assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 796 | B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 797 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 798 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 799 | void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) { |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 800 | if (const ConstructionContext *CC = |
| 801 | retrieveAndCleanupConstructionContext(CE)) { |
| 802 | B->appendConstructor(CE, CC, cfg->getBumpVectorContext()); |
| 803 | return; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | // No valid construction context found. Fall back to statement. |
| 807 | B->appendStmt(CE, cfg->getBumpVectorContext()); |
| 808 | } |
| 809 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 810 | void appendCall(CFGBlock *B, CallExpr *CE) { |
Richard Trieu | f4a0e9a | 2018-03-15 00:09:26 +0000 | [diff] [blame] | 811 | if (alwaysAdd(CE) && cachedEntry) |
| 812 | cachedEntry->second = B; |
| 813 | |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 814 | if (const ConstructionContext *CC = |
| 815 | retrieveAndCleanupConstructionContext(CE)) { |
| 816 | B->appendCXXRecordTypedCall(CE, CC, cfg->getBumpVectorContext()); |
| 817 | return; |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | // No valid construction context found. Fall back to statement. |
| 821 | B->appendStmt(CE, cfg->getBumpVectorContext()); |
| 822 | } |
| 823 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 824 | void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 825 | B->appendInitializer(I, cfg->getBumpVectorContext()); |
| 826 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 827 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 828 | void appendNewAllocator(CFGBlock *B, CXXNewExpr *NE) { |
| 829 | B->appendNewAllocator(NE, cfg->getBumpVectorContext()); |
| 830 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 831 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 832 | void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) { |
| 833 | B->appendBaseDtor(BS, cfg->getBumpVectorContext()); |
| 834 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 835 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 836 | void appendMemberDtor(CFGBlock *B, FieldDecl *FD) { |
| 837 | B->appendMemberDtor(FD, cfg->getBumpVectorContext()); |
| 838 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 839 | |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 840 | void appendObjCMessage(CFGBlock *B, ObjCMessageExpr *ME) { |
| 841 | if (alwaysAdd(ME) && cachedEntry) |
| 842 | cachedEntry->second = B; |
| 843 | |
| 844 | if (const ConstructionContext *CC = |
| 845 | retrieveAndCleanupConstructionContext(ME)) { |
| 846 | B->appendCXXRecordTypedCall(ME, CC, cfg->getBumpVectorContext()); |
| 847 | return; |
| 848 | } |
| 849 | |
| 850 | B->appendStmt(const_cast<ObjCMessageExpr *>(ME), |
| 851 | cfg->getBumpVectorContext()); |
| 852 | } |
| 853 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 854 | void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) { |
| 855 | B->appendTemporaryDtor(E, cfg->getBumpVectorContext()); |
| 856 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 857 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 858 | void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 859 | B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext()); |
| 860 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 861 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 862 | void appendLifetimeEnds(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 863 | B->appendLifetimeEnds(VD, S, cfg->getBumpVectorContext()); |
| 864 | } |
| 865 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 866 | void appendLoopExit(CFGBlock *B, const Stmt *LoopStmt) { |
| 867 | B->appendLoopExit(LoopStmt, cfg->getBumpVectorContext()); |
| 868 | } |
| 869 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 870 | void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) { |
| 871 | B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext()); |
| 872 | } |
| 873 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 874 | void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 875 | LocalScope::const_iterator B, LocalScope::const_iterator E); |
| 876 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 877 | void prependAutomaticObjLifetimeWithTerminator(CFGBlock *Blk, |
| 878 | LocalScope::const_iterator B, |
| 879 | LocalScope::const_iterator E); |
| 880 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 881 | const VarDecl * |
| 882 | prependAutomaticObjScopeEndWithTerminator(CFGBlock *Blk, |
| 883 | LocalScope::const_iterator B, |
| 884 | LocalScope::const_iterator E); |
| 885 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 886 | void addSuccessor(CFGBlock *B, CFGBlock *S, bool IsReachable = true) { |
| 887 | B->addSuccessor(CFGBlock::AdjacentBlock(S, IsReachable), |
| 888 | cfg->getBumpVectorContext()); |
| 889 | } |
| 890 | |
| 891 | /// Add a reachable successor to a block, with the alternate variant that is |
| 892 | /// unreachable. |
| 893 | void addSuccessor(CFGBlock *B, CFGBlock *ReachableBlock, CFGBlock *AltBlock) { |
| 894 | B->addSuccessor(CFGBlock::AdjacentBlock(ReachableBlock, AltBlock), |
| 895 | cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 896 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 897 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 898 | void appendScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 899 | if (BuildOpts.AddScopes) |
| 900 | B->appendScopeBegin(VD, S, cfg->getBumpVectorContext()); |
| 901 | } |
| 902 | |
| 903 | void prependScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 904 | if (BuildOpts.AddScopes) |
| 905 | B->prependScopeBegin(VD, S, cfg->getBumpVectorContext()); |
| 906 | } |
| 907 | |
| 908 | void appendScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 909 | if (BuildOpts.AddScopes) |
| 910 | B->appendScopeEnd(VD, S, cfg->getBumpVectorContext()); |
| 911 | } |
| 912 | |
| 913 | void prependScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 914 | if (BuildOpts.AddScopes) |
| 915 | B->prependScopeEnd(VD, S, cfg->getBumpVectorContext()); |
| 916 | } |
| 917 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 918 | /// Find a relational comparison with an expression evaluating to a |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 919 | /// boolean and a constant other than 0 and 1. |
| 920 | /// e.g. if ((x < y) == 10) |
| 921 | TryResult checkIncorrectRelationalOperator(const BinaryOperator *B) { |
| 922 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 923 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 924 | |
| 925 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 926 | const Expr *BoolExpr = RHSExpr; |
| 927 | bool IntFirst = true; |
| 928 | if (!IntLiteral) { |
| 929 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 930 | BoolExpr = LHSExpr; |
| 931 | IntFirst = false; |
| 932 | } |
| 933 | |
| 934 | if (!IntLiteral || !BoolExpr->isKnownToHaveBooleanValue()) |
| 935 | return TryResult(); |
| 936 | |
| 937 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 938 | if ((IntValue == 1) || (IntValue == 0)) |
| 939 | return TryResult(); |
| 940 | |
| 941 | bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || |
| 942 | !IntValue.isNegative(); |
| 943 | |
| 944 | BinaryOperatorKind Bok = B->getOpcode(); |
| 945 | if (Bok == BO_GT || Bok == BO_GE) { |
| 946 | // Always true for 10 > bool and bool > -1 |
| 947 | // Always false for -1 > bool and bool > 10 |
| 948 | return TryResult(IntFirst == IntLarger); |
| 949 | } else { |
| 950 | // Always true for -1 < bool and bool < 10 |
| 951 | // Always false for 10 < bool and bool < -1 |
| 952 | return TryResult(IntFirst != IntLarger); |
| 953 | } |
| 954 | } |
| 955 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 956 | /// Find an incorrect equality comparison. Either with an expression |
| 957 | /// evaluating to a boolean and a constant other than 0 and 1. |
| 958 | /// e.g. if (!x == 10) or a bitwise and/or operation that always evaluates to |
| 959 | /// true/false e.q. (x & 8) == 4. |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 960 | TryResult checkIncorrectEqualityOperator(const BinaryOperator *B) { |
| 961 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 962 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 963 | |
| 964 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 965 | const Expr *BoolExpr = RHSExpr; |
| 966 | |
| 967 | if (!IntLiteral) { |
| 968 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 969 | BoolExpr = LHSExpr; |
| 970 | } |
| 971 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 972 | if (!IntLiteral) |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 973 | return TryResult(); |
| 974 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 975 | const BinaryOperator *BitOp = dyn_cast<BinaryOperator>(BoolExpr); |
| 976 | if (BitOp && (BitOp->getOpcode() == BO_And || |
| 977 | BitOp->getOpcode() == BO_Or)) { |
| 978 | const Expr *LHSExpr2 = BitOp->getLHS()->IgnoreParens(); |
| 979 | const Expr *RHSExpr2 = BitOp->getRHS()->IgnoreParens(); |
| 980 | |
| 981 | const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2); |
| 982 | |
| 983 | if (!IntLiteral2) |
| 984 | IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2); |
| 985 | |
| 986 | if (!IntLiteral2) |
| 987 | return TryResult(); |
| 988 | |
| 989 | llvm::APInt L1 = IntLiteral->getValue(); |
| 990 | llvm::APInt L2 = IntLiteral2->getValue(); |
| 991 | if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) || |
| 992 | (BitOp->getOpcode() == BO_Or && (L2 | L1) != L1)) { |
| 993 | if (BuildOpts.Observer) |
| 994 | BuildOpts.Observer->compareBitwiseEquality(B, |
| 995 | B->getOpcode() != BO_EQ); |
| 996 | TryResult(B->getOpcode() != BO_EQ); |
| 997 | } |
| 998 | } else if (BoolExpr->isKnownToHaveBooleanValue()) { |
| 999 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 1000 | if ((IntValue == 1) || (IntValue == 0)) { |
| 1001 | return TryResult(); |
| 1002 | } |
| 1003 | return TryResult(B->getOpcode() != BO_EQ); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1004 | } |
| 1005 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 1006 | return TryResult(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1007 | } |
| 1008 | |
| 1009 | TryResult analyzeLogicOperatorCondition(BinaryOperatorKind Relation, |
| 1010 | const llvm::APSInt &Value1, |
| 1011 | const llvm::APSInt &Value2) { |
| 1012 | assert(Value1.isSigned() == Value2.isSigned()); |
| 1013 | switch (Relation) { |
| 1014 | default: |
| 1015 | return TryResult(); |
| 1016 | case BO_EQ: |
| 1017 | return TryResult(Value1 == Value2); |
| 1018 | case BO_NE: |
| 1019 | return TryResult(Value1 != Value2); |
| 1020 | case BO_LT: |
| 1021 | return TryResult(Value1 < Value2); |
| 1022 | case BO_LE: |
| 1023 | return TryResult(Value1 <= Value2); |
| 1024 | case BO_GT: |
| 1025 | return TryResult(Value1 > Value2); |
| 1026 | case BO_GE: |
| 1027 | return TryResult(Value1 >= Value2); |
| 1028 | } |
| 1029 | } |
| 1030 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1031 | /// Find a pair of comparison expressions with or without parentheses |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1032 | /// with a shared variable and constants and a logical operator between them |
| 1033 | /// that always evaluates to either true or false. |
| 1034 | /// e.g. if (x != 3 || x != 4) |
| 1035 | TryResult checkIncorrectLogicOperator(const BinaryOperator *B) { |
| 1036 | assert(B->isLogicalOp()); |
| 1037 | const BinaryOperator *LHS = |
| 1038 | dyn_cast<BinaryOperator>(B->getLHS()->IgnoreParens()); |
| 1039 | const BinaryOperator *RHS = |
| 1040 | dyn_cast<BinaryOperator>(B->getRHS()->IgnoreParens()); |
| 1041 | if (!LHS || !RHS) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1042 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1043 | |
| 1044 | if (!LHS->isComparisonOp() || !RHS->isComparisonOp()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1045 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1046 | |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 1047 | const Expr *DeclExpr1; |
| 1048 | const Expr *NumExpr1; |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1049 | BinaryOperatorKind BO1; |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 1050 | std::tie(DeclExpr1, BO1, NumExpr1) = tryNormalizeBinaryOperator(LHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1051 | |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 1052 | if (!DeclExpr1 || !NumExpr1) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1053 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1054 | |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 1055 | const Expr *DeclExpr2; |
| 1056 | const Expr *NumExpr2; |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1057 | BinaryOperatorKind BO2; |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 1058 | std::tie(DeclExpr2, BO2, NumExpr2) = tryNormalizeBinaryOperator(RHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1059 | |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 1060 | if (!DeclExpr2 || !NumExpr2) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1061 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1062 | |
| 1063 | // Check that it is the same variable on both sides. |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 1064 | if (!Expr::isSameComparisonOperand(DeclExpr1, DeclExpr2)) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1065 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1066 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1067 | // Make sure the user's intent is clear (e.g. they're comparing against two |
| 1068 | // int literals, or two things from the same enum) |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 1069 | if (!areExprTypesCompatible(NumExpr1, NumExpr2)) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1070 | return {}; |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1071 | |
Fangrui Song | 407659a | 2018-11-30 23:41:18 +0000 | [diff] [blame] | 1072 | Expr::EvalResult L1Result, L2Result; |
Richard Trieu | 4c05de8 | 2019-09-21 03:02:26 +0000 | [diff] [blame] | 1073 | if (!NumExpr1->EvaluateAsInt(L1Result, *Context) || |
| 1074 | !NumExpr2->EvaluateAsInt(L2Result, *Context)) |
Fangrui Song | f5d3335 | 2018-11-30 21:26:09 +0000 | [diff] [blame] | 1075 | return {}; |
Hans Wennborg | 48ee4ad | 2018-11-28 14:04:12 +0000 | [diff] [blame] | 1076 | |
Fangrui Song | 407659a | 2018-11-30 23:41:18 +0000 | [diff] [blame] | 1077 | llvm::APSInt L1 = L1Result.Val.getInt(); |
| 1078 | llvm::APSInt L2 = L2Result.Val.getInt(); |
| 1079 | |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1080 | // Can't compare signed with unsigned or with different bit width. |
| 1081 | if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth()) |
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 | // Values that will be used to determine if result of logical |
| 1085 | // operator is always true/false |
| 1086 | const llvm::APSInt Values[] = { |
| 1087 | // Value less than both Value1 and Value2 |
| 1088 | llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()), |
| 1089 | // L1 |
| 1090 | L1, |
| 1091 | // Value between Value1 and Value2 |
| 1092 | ((L1 < L2) ? L1 : L2) + llvm::APSInt(llvm::APInt(L1.getBitWidth(), 1), |
| 1093 | L1.isUnsigned()), |
| 1094 | // L2 |
| 1095 | L2, |
| 1096 | // Value greater than both Value1 and Value2 |
| 1097 | llvm::APSInt::getMaxValue(L1.getBitWidth(), L1.isUnsigned()), |
| 1098 | }; |
| 1099 | |
| 1100 | // Check whether expression is always true/false by evaluating the following |
| 1101 | // * variable x is less than the smallest literal. |
| 1102 | // * variable x is equal to the smallest literal. |
| 1103 | // * Variable x is between smallest and largest literal. |
| 1104 | // * Variable x is equal to the largest literal. |
| 1105 | // * Variable x is greater than largest literal. |
| 1106 | bool AlwaysTrue = true, AlwaysFalse = true; |
Richard Trieu | 6541c79 | 2019-09-21 02:37:10 +0000 | [diff] [blame] | 1107 | // Track value of both subexpressions. If either side is always |
| 1108 | // true/false, another warning should have already been emitted. |
| 1109 | bool LHSAlwaysTrue = true, LHSAlwaysFalse = true; |
| 1110 | bool RHSAlwaysTrue = true, RHSAlwaysFalse = true; |
Benjamin Kramer | 2e018ef | 2016-05-27 13:36:58 +0000 | [diff] [blame] | 1111 | for (const llvm::APSInt &Value : Values) { |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1112 | TryResult Res1, Res2; |
| 1113 | Res1 = analyzeLogicOperatorCondition(BO1, Value, L1); |
| 1114 | Res2 = analyzeLogicOperatorCondition(BO2, Value, L2); |
| 1115 | |
| 1116 | if (!Res1.isKnown() || !Res2.isKnown()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1117 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1118 | |
| 1119 | if (B->getOpcode() == BO_LAnd) { |
| 1120 | AlwaysTrue &= (Res1.isTrue() && Res2.isTrue()); |
| 1121 | AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue()); |
| 1122 | } else { |
| 1123 | AlwaysTrue &= (Res1.isTrue() || Res2.isTrue()); |
| 1124 | AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue()); |
| 1125 | } |
Richard Trieu | 6541c79 | 2019-09-21 02:37:10 +0000 | [diff] [blame] | 1126 | |
| 1127 | LHSAlwaysTrue &= Res1.isTrue(); |
| 1128 | LHSAlwaysFalse &= Res1.isFalse(); |
| 1129 | RHSAlwaysTrue &= Res2.isTrue(); |
| 1130 | RHSAlwaysFalse &= Res2.isFalse(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1131 | } |
| 1132 | |
| 1133 | if (AlwaysTrue || AlwaysFalse) { |
Richard Trieu | 6541c79 | 2019-09-21 02:37:10 +0000 | [diff] [blame] | 1134 | if (!LHSAlwaysTrue && !LHSAlwaysFalse && !RHSAlwaysTrue && |
| 1135 | !RHSAlwaysFalse && BuildOpts.Observer) |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1136 | BuildOpts.Observer->compareAlwaysTrue(B, AlwaysTrue); |
| 1137 | return TryResult(AlwaysTrue); |
| 1138 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1139 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1140 | } |
| 1141 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 1142 | /// Try and evaluate an expression to an integer constant. |
| 1143 | bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) { |
| 1144 | if (!BuildOpts.PruneTriviallyFalseEdges) |
| 1145 | return false; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1146 | return !S->isTypeDependent() && |
Ted Kremenek | 352a708 | 2011-04-04 20:30:58 +0000 | [diff] [blame] | 1147 | !S->isValueDependent() && |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 1148 | S->EvaluateAsRValue(outResult, *Context); |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 1149 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1150 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1151 | /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1 |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1152 | /// if we can evaluate to a known value, otherwise return -1. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1153 | TryResult tryEvaluateBool(Expr *S) { |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 1154 | if (!BuildOpts.PruneTriviallyFalseEdges || |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1155 | S->isTypeDependent() || S->isValueDependent()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1156 | return {}; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1157 | |
| 1158 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) { |
| 1159 | if (Bop->isLogicalOp()) { |
| 1160 | // Check the cache first. |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 1161 | CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S); |
| 1162 | if (I != CachedBoolEvals.end()) |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1163 | return I->second; // already in map; |
NAKAMURA Takumi | f0434b0 | 2012-03-25 06:30:32 +0000 | [diff] [blame] | 1164 | |
| 1165 | // Retrieve result at first, or the map might be updated. |
| 1166 | TryResult Result = evaluateAsBooleanConditionNoCache(S); |
| 1167 | CachedBoolEvals[S] = Result; // update or insert |
| 1168 | return Result; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1169 | } |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1170 | else { |
| 1171 | switch (Bop->getOpcode()) { |
| 1172 | default: break; |
| 1173 | // For 'x & 0' and 'x * 0', we can determine that |
| 1174 | // the value is always false. |
| 1175 | case BO_Mul: |
| 1176 | case BO_And: { |
| 1177 | // If either operand is zero, we know the value |
| 1178 | // must be false. |
Fangrui Song | 407659a | 2018-11-30 23:41:18 +0000 | [diff] [blame] | 1179 | Expr::EvalResult LHSResult; |
| 1180 | if (Bop->getLHS()->EvaluateAsInt(LHSResult, *Context)) { |
| 1181 | llvm::APSInt IntVal = LHSResult.Val.getInt(); |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1182 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1183 | return TryResult(false); |
| 1184 | } |
| 1185 | } |
Fangrui Song | 407659a | 2018-11-30 23:41:18 +0000 | [diff] [blame] | 1186 | Expr::EvalResult RHSResult; |
| 1187 | if (Bop->getRHS()->EvaluateAsInt(RHSResult, *Context)) { |
| 1188 | llvm::APSInt IntVal = RHSResult.Val.getInt(); |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1189 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1190 | return TryResult(false); |
| 1191 | } |
| 1192 | } |
| 1193 | } |
| 1194 | break; |
| 1195 | } |
| 1196 | } |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | return evaluateAsBooleanConditionNoCache(S); |
| 1200 | } |
| 1201 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1202 | /// Evaluate as boolean \param E without using the cache. |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1203 | TryResult evaluateAsBooleanConditionNoCache(Expr *E) { |
| 1204 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) { |
| 1205 | if (Bop->isLogicalOp()) { |
| 1206 | TryResult LHS = tryEvaluateBool(Bop->getLHS()); |
| 1207 | if (LHS.isKnown()) { |
| 1208 | // We were able to evaluate the LHS, see if we can get away with not |
| 1209 | // evaluating the RHS: 0 && X -> 0, 1 || X -> 1 |
| 1210 | if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1211 | return LHS.isTrue(); |
| 1212 | |
| 1213 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1214 | if (RHS.isKnown()) { |
| 1215 | if (Bop->getOpcode() == BO_LOr) |
| 1216 | return LHS.isTrue() || RHS.isTrue(); |
| 1217 | else |
| 1218 | return LHS.isTrue() && RHS.isTrue(); |
| 1219 | } |
| 1220 | } else { |
| 1221 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1222 | if (RHS.isKnown()) { |
| 1223 | // We can't evaluate the LHS; however, sometimes the result |
| 1224 | // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. |
| 1225 | if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1226 | return RHS.isTrue(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1227 | } else { |
| 1228 | TryResult BopRes = checkIncorrectLogicOperator(Bop); |
| 1229 | if (BopRes.isKnown()) |
| 1230 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1231 | } |
| 1232 | } |
| 1233 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1234 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1235 | } else if (Bop->isEqualityOp()) { |
| 1236 | TryResult BopRes = checkIncorrectEqualityOperator(Bop); |
| 1237 | if (BopRes.isKnown()) |
| 1238 | return BopRes.isTrue(); |
| 1239 | } else if (Bop->isRelationalOp()) { |
| 1240 | TryResult BopRes = checkIncorrectRelationalOperator(Bop); |
| 1241 | if (BopRes.isKnown()) |
| 1242 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1243 | } |
| 1244 | } |
| 1245 | |
| 1246 | bool Result; |
| 1247 | if (E->EvaluateAsBooleanCondition(Result, *Context)) |
| 1248 | return Result; |
| 1249 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1250 | return {}; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1251 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1252 | |
| 1253 | bool hasTrivialDestructor(VarDecl *VD); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1254 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1255 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1256 | } // namespace |
| 1257 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1258 | inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder, |
| 1259 | const Stmt *stmt) const { |
| 1260 | return builder.alwaysAdd(stmt) || kind == AlwaysAdd; |
| 1261 | } |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1262 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1263 | bool CFGBuilder::alwaysAdd(const Stmt *stmt) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1264 | bool shouldAdd = BuildOpts.alwaysAdd(stmt); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1265 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1266 | if (!BuildOpts.forcedBlkExprs) |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1267 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1268 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1269 | if (lastLookup == stmt) { |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1270 | if (cachedEntry) { |
| 1271 | assert(cachedEntry->first == stmt); |
| 1272 | return true; |
| 1273 | } |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1274 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1275 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1276 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1277 | lastLookup = stmt; |
| 1278 | |
| 1279 | // Perform the lookup! |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1280 | CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs; |
| 1281 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1282 | if (!fb) { |
| 1283 | // No need to update 'cachedEntry', since it will always be null. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1284 | assert(!cachedEntry); |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1285 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1286 | } |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1287 | |
| 1288 | CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt); |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1289 | if (itr == fb->end()) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1290 | cachedEntry = nullptr; |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1291 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1292 | } |
| 1293 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1294 | cachedEntry = &*itr; |
| 1295 | return true; |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1296 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1297 | |
Douglas Gregor | 4619e43 | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1298 | // FIXME: Add support for dependent-sized array types in C++? |
| 1299 | // 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] | 1300 | static const VariableArrayType *FindVA(const Type *t) { |
| 1301 | while (const ArrayType *vt = dyn_cast<ArrayType>(t)) { |
| 1302 | if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt)) |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1303 | if (vat->getSizeExpr()) |
| 1304 | return vat; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1305 | |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1306 | t = vt->getElementType().getTypePtr(); |
| 1307 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1308 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1309 | return nullptr; |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1310 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1311 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1312 | void CFGBuilder::consumeConstructionContext( |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1313 | const ConstructionContextLayer *Layer, Expr *E) { |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 1314 | assert((isa<CXXConstructExpr>(E) || isa<CallExpr>(E) || |
| 1315 | isa<ObjCMessageExpr>(E)) && "Expression cannot construct an object!"); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1316 | if (const ConstructionContextLayer *PreviouslyStoredLayer = |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1317 | ConstructionContextMap.lookup(E)) { |
George Burgess IV | a47e1b7 | 2018-03-06 07:45:11 +0000 | [diff] [blame] | 1318 | (void)PreviouslyStoredLayer; |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1319 | // We might have visited this child when we were finding construction |
| 1320 | // contexts within its parents. |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1321 | assert(PreviouslyStoredLayer->isStrictlyMoreSpecificThan(Layer) && |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1322 | "Already within a different construction context!"); |
| 1323 | } else { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1324 | ConstructionContextMap[E] = Layer; |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1325 | } |
| 1326 | } |
| 1327 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1328 | void CFGBuilder::findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1329 | const ConstructionContextLayer *Layer, Stmt *Child) { |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1330 | if (!BuildOpts.AddRichCXXConstructors) |
| 1331 | return; |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1332 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1333 | if (!Child) |
| 1334 | return; |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1335 | |
Artem Dergachev | 1f8cb3a | 2018-07-31 21:12:42 +0000 | [diff] [blame] | 1336 | auto withExtraLayer = [this, Layer](const ConstructionContextItem &Item) { |
| 1337 | return ConstructionContextLayer::create(cfg->getBumpVectorContext(), Item, |
| 1338 | Layer); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1339 | }; |
| 1340 | |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1341 | switch(Child->getStmtClass()) { |
| 1342 | case Stmt::CXXConstructExprClass: |
| 1343 | case Stmt::CXXTemporaryObjectExprClass: { |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1344 | // Support pre-C++17 copy elision AST. |
| 1345 | auto *CE = cast<CXXConstructExpr>(Child); |
| 1346 | if (BuildOpts.MarkElidedCXXConstructors && CE->isElidable()) { |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1347 | findConstructionContexts(withExtraLayer(CE), CE->getArg(0)); |
| 1348 | } |
| 1349 | |
| 1350 | consumeConstructionContext(Layer, CE); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1351 | break; |
| 1352 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1353 | // FIXME: This, like the main visit, doesn't support CUDAKernelCallExpr. |
| 1354 | // FIXME: An isa<> would look much better but this whole switch is a |
| 1355 | // workaround for an internal compiler error in MSVC 2015 (see r326021). |
| 1356 | case Stmt::CallExprClass: |
| 1357 | case Stmt::CXXMemberCallExprClass: |
| 1358 | case Stmt::CXXOperatorCallExprClass: |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 1359 | case Stmt::UserDefinedLiteralClass: |
| 1360 | case Stmt::ObjCMessageExprClass: { |
| 1361 | auto *E = cast<Expr>(Child); |
| 1362 | if (CFGCXXRecordTypedCall::isCXXRecordTypedCall(E)) |
| 1363 | consumeConstructionContext(Layer, E); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1364 | break; |
| 1365 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1366 | case Stmt::ExprWithCleanupsClass: { |
| 1367 | auto *Cleanups = cast<ExprWithCleanups>(Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1368 | findConstructionContexts(Layer, Cleanups->getSubExpr()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1369 | break; |
| 1370 | } |
| 1371 | case Stmt::CXXFunctionalCastExprClass: { |
| 1372 | auto *Cast = cast<CXXFunctionalCastExpr>(Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1373 | findConstructionContexts(Layer, Cast->getSubExpr()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1374 | break; |
| 1375 | } |
| 1376 | case Stmt::ImplicitCastExprClass: { |
| 1377 | auto *Cast = cast<ImplicitCastExpr>(Child); |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 1378 | // Should we support other implicit cast kinds? |
Artem Dergachev | 13f9664 | 2018-03-09 01:39:59 +0000 | [diff] [blame] | 1379 | switch (Cast->getCastKind()) { |
| 1380 | case CK_NoOp: |
| 1381 | case CK_ConstructorConversion: |
Artem Dergachev | 6603052 | 2018-03-01 01:09:24 +0000 | [diff] [blame] | 1382 | findConstructionContexts(Layer, Cast->getSubExpr()); |
Reid Kleckner | 4dc0b1a | 2018-11-01 19:54:45 +0000 | [diff] [blame] | 1383 | break; |
Artem Dergachev | 13f9664 | 2018-03-09 01:39:59 +0000 | [diff] [blame] | 1384 | default: |
| 1385 | break; |
| 1386 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1387 | break; |
| 1388 | } |
| 1389 | case Stmt::CXXBindTemporaryExprClass: { |
| 1390 | auto *BTE = cast<CXXBindTemporaryExpr>(Child); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1391 | findConstructionContexts(withExtraLayer(BTE), BTE->getSubExpr()); |
| 1392 | break; |
| 1393 | } |
| 1394 | case Stmt::MaterializeTemporaryExprClass: { |
| 1395 | // Normally we don't want to search in MaterializeTemporaryExpr because |
| 1396 | // it indicates the beginning of a temporary object construction context, |
| 1397 | // so it shouldn't be found in the middle. However, if it is the beginning |
| 1398 | // 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] | 1399 | if (Layer->getItem().getKind() == |
| 1400 | ConstructionContextItem::ElidableConstructorKind) { |
| 1401 | auto *MTE = cast<MaterializeTemporaryExpr>(Child); |
| 1402 | findConstructionContexts(withExtraLayer(MTE), MTE->GetTemporaryExpr()); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1403 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1404 | break; |
| 1405 | } |
| 1406 | case Stmt::ConditionalOperatorClass: { |
| 1407 | auto *CO = cast<ConditionalOperator>(Child); |
Artem Dergachev | 1f8cb3a | 2018-07-31 21:12:42 +0000 | [diff] [blame] | 1408 | if (Layer->getItem().getKind() != |
| 1409 | ConstructionContextItem::MaterializationKind) { |
Artem Dergachev | 9d3a7d8 | 2018-03-30 19:21:18 +0000 | [diff] [blame] | 1410 | // If the object returned by the conditional operator is not going to be a |
| 1411 | // temporary object that needs to be immediately materialized, then |
| 1412 | // it must be C++17 with its mandatory copy elision. Do not yet promise |
| 1413 | // to support this case. |
| 1414 | assert(!CO->getType()->getAsCXXRecordDecl() || CO->isGLValue() || |
| 1415 | Context->getLangOpts().CPlusPlus17); |
| 1416 | break; |
| 1417 | } |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1418 | findConstructionContexts(Layer, CO->getLHS()); |
| 1419 | findConstructionContexts(Layer, CO->getRHS()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1420 | break; |
| 1421 | } |
Artem Dergachev | aa40315 | 2019-03-21 00:15:07 +0000 | [diff] [blame] | 1422 | case Stmt::InitListExprClass: { |
| 1423 | auto *ILE = cast<InitListExpr>(Child); |
| 1424 | if (ILE->isTransparent()) { |
| 1425 | findConstructionContexts(Layer, ILE->getInit(0)); |
| 1426 | break; |
| 1427 | } |
| 1428 | // TODO: Handle other cases. For now, fail to find construction contexts. |
| 1429 | break; |
| 1430 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1431 | default: |
| 1432 | break; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1433 | } |
| 1434 | } |
| 1435 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1436 | void CFGBuilder::cleanupConstructionContext(Expr *E) { |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1437 | assert(BuildOpts.AddRichCXXConstructors && |
| 1438 | "We should not be managing construction contexts!"); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1439 | assert(ConstructionContextMap.count(E) && |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1440 | "Cannot exit construction context without the context!"); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1441 | ConstructionContextMap.erase(E); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1442 | } |
| 1443 | |
| 1444 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1445 | /// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an |
| 1446 | /// arbitrary statement. Examples include a single expression or a function |
| 1447 | /// body (compound statement). The ownership of the returned CFG is |
| 1448 | /// transferred to the caller. If CFG construction fails, this method returns |
| 1449 | /// NULL. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1450 | std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) { |
Ted Kremenek | 8aed490 | 2009-10-20 23:46:25 +0000 | [diff] [blame] | 1451 | assert(cfg.get()); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1452 | if (!Statement) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1453 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1454 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1455 | // Create an empty block that will serve as the exit block for the CFG. Since |
| 1456 | // this is the first block added to the CFG, it will be implicitly registered |
| 1457 | // as the exit block. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1458 | Succ = createBlock(); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 1459 | assert(Succ == &cfg->getExit()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1460 | Block = nullptr; // the EXIT block is empty. Create all other blocks lazily. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1461 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1462 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1463 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
| 1464 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1465 | if (BuildOpts.AddImplicitDtors) |
| 1466 | if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D)) |
| 1467 | addImplicitDtorsForDestructor(DD); |
| 1468 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1469 | // Visit the statements and create the CFG. |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1470 | CFGBlock *B = addStmt(Statement); |
| 1471 | |
| 1472 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1473 | return nullptr; |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1474 | |
Artem Dergachev | 192a747 | 2019-05-24 23:37:08 +0000 | [diff] [blame] | 1475 | // For C++ constructor add initializers to CFG. Constructors of virtual bases |
| 1476 | // are ignored unless the object is of the most derived class. |
| 1477 | // class VBase { VBase() = default; VBase(int) {} }; |
| 1478 | // class A : virtual public VBase { A() : VBase(0) {} }; |
| 1479 | // class B : public A {}; |
| 1480 | // B b; // Constructor calls in order: VBase(), A(), B(). |
| 1481 | // // VBase(0) is ignored because A isn't the most derived class. |
| 1482 | // This may result in the virtual base(s) being already initialized at this |
| 1483 | // point, in which case we should jump right onto non-virtual bases and |
| 1484 | // fields. To handle this, make a CFG branch. We only need to add one such |
| 1485 | // branch per constructor, since the Standard states that all virtual bases |
| 1486 | // shall be initialized before non-virtual bases and direct data members. |
| 1487 | if (const auto *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) { |
| 1488 | CFGBlock *VBaseSucc = nullptr; |
Pete Cooper | 57d3f14 | 2015-07-30 17:22:52 +0000 | [diff] [blame] | 1489 | for (auto *I : llvm::reverse(CD->inits())) { |
Artem Dergachev | 192a747 | 2019-05-24 23:37:08 +0000 | [diff] [blame] | 1490 | if (BuildOpts.AddVirtualBaseBranches && !VBaseSucc && |
| 1491 | I->isBaseInitializer() && I->isBaseVirtual()) { |
| 1492 | // We've reached the first virtual base init while iterating in reverse |
| 1493 | // order. Make a new block for virtual base initializers so that we |
| 1494 | // could skip them. |
| 1495 | VBaseSucc = Succ = B ? B : &cfg->getExit(); |
| 1496 | Block = createBlock(); |
| 1497 | } |
Pete Cooper | 57d3f14 | 2015-07-30 17:22:52 +0000 | [diff] [blame] | 1498 | B = addInitializer(I); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1499 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1500 | return nullptr; |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1501 | } |
Artem Dergachev | 192a747 | 2019-05-24 23:37:08 +0000 | [diff] [blame] | 1502 | if (VBaseSucc) { |
| 1503 | // Make a branch block for potentially skipping virtual base initializers. |
| 1504 | Succ = VBaseSucc; |
| 1505 | B = createBlock(); |
| 1506 | B->setTerminator( |
| 1507 | CFGTerminator(nullptr, CFGTerminator::VirtualBaseBranch)); |
| 1508 | addSuccessor(B, Block, true); |
| 1509 | } |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1510 | } |
| 1511 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1512 | if (B) |
| 1513 | Succ = B; |
Mike Stump | 6bf1c08 | 2010-01-21 02:21:40 +0000 | [diff] [blame] | 1514 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1515 | // Backpatch the gotos whose label -> block mappings we didn't know when we |
| 1516 | // encountered them. |
| 1517 | for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(), |
| 1518 | E = BackpatchBlocks.end(); I != E; ++I ) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1519 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1520 | CFGBlock *B = I->block; |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 1521 | if (auto *G = dyn_cast<GotoStmt>(B->getTerminator())) { |
| 1522 | LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); |
| 1523 | // If there is no target for the goto, then we are looking at an |
| 1524 | // incomplete AST. Handle this by not registering a successor. |
| 1525 | if (LI == LabelMap.end()) |
| 1526 | continue; |
| 1527 | JumpTarget JT = LI->second; |
| 1528 | prependAutomaticObjLifetimeWithTerminator(B, I->scopePosition, |
| 1529 | JT.scopePosition); |
| 1530 | prependAutomaticObjDtorsWithTerminator(B, I->scopePosition, |
| 1531 | JT.scopePosition); |
| 1532 | const VarDecl *VD = prependAutomaticObjScopeEndWithTerminator( |
| 1533 | B, I->scopePosition, JT.scopePosition); |
| 1534 | appendScopeBegin(JT.block, VD, G); |
| 1535 | addSuccessor(B, JT.block); |
| 1536 | }; |
| 1537 | if (auto *G = dyn_cast<GCCAsmStmt>(B->getTerminator())) { |
| 1538 | CFGBlock *Successor = (I+1)->block; |
| 1539 | for (auto *L : G->labels()) { |
| 1540 | LabelMapTy::iterator LI = LabelMap.find(L->getLabel()); |
| 1541 | // If there is no target for the goto, then we are looking at an |
| 1542 | // incomplete AST. Handle this by not registering a successor. |
| 1543 | if (LI == LabelMap.end()) |
| 1544 | continue; |
| 1545 | JumpTarget JT = LI->second; |
| 1546 | // Successor has been added, so skip it. |
| 1547 | if (JT.block == Successor) |
| 1548 | continue; |
| 1549 | addSuccessor(B, JT.block); |
| 1550 | } |
| 1551 | I++; |
| 1552 | } |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1553 | } |
| 1554 | |
| 1555 | // Add successors to the Indirect Goto Dispatch block (if we have one). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1556 | if (CFGBlock *B = cfg->getIndirectGotoBlock()) |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1557 | for (LabelSetTy::iterator I = AddressTakenLabels.begin(), |
| 1558 | E = AddressTakenLabels.end(); I != E; ++I ) { |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1559 | // Lookup the target block. |
| 1560 | LabelMapTy::iterator LI = LabelMap.find(*I); |
| 1561 | |
| 1562 | // If there is no target block that contains label, then we are looking |
| 1563 | // at an incomplete AST. Handle this by not registering a successor. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1564 | if (LI == LabelMap.end()) continue; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1565 | |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1566 | addSuccessor(B, LI->second.block); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 1567 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1568 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1569 | // Create an empty entry block that has no predecessors. |
Ted Kremenek | 5c50fd1 | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 1570 | cfg->setEntry(createBlock()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1571 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1572 | if (BuildOpts.AddRichCXXConstructors) |
| 1573 | assert(ConstructionContextMap.empty() && |
| 1574 | "Not all construction contexts were cleaned up!"); |
| 1575 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1576 | return std::move(cfg); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1577 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1578 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1579 | /// createBlock - Used to lazily create blocks that are connected |
| 1580 | /// to the current (global) succcessor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1581 | CFGBlock *CFGBuilder::createBlock(bool add_successor) { |
| 1582 | CFGBlock *B = cfg->createBlock(); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1583 | if (add_successor && Succ) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1584 | addSuccessor(B, Succ); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1585 | return B; |
| 1586 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1587 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1588 | /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the |
| 1589 | /// CFG. It is *not* connected to the current (global) successor, and instead |
| 1590 | /// directly tied to the exit block in order to be reachable. |
| 1591 | CFGBlock *CFGBuilder::createNoReturnBlock() { |
| 1592 | CFGBlock *B = createBlock(false); |
Chandler Carruth | 75d7823 | 2011-09-13 09:53:55 +0000 | [diff] [blame] | 1593 | B->setHasNoReturnElement(); |
Ted Kremenek | f353919 | 2014-02-27 00:24:05 +0000 | [diff] [blame] | 1594 | addSuccessor(B, &cfg->getExit(), Succ); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1595 | return B; |
| 1596 | } |
| 1597 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1598 | /// addInitializer - Add C++ base or member initializer element to CFG. |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1599 | CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1600 | if (!BuildOpts.AddInitializers) |
| 1601 | return Block; |
| 1602 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1603 | bool HasTemporaries = false; |
| 1604 | |
| 1605 | // Destructors of temporaries in initialization expression should be called |
| 1606 | // after initialization finishes. |
| 1607 | Expr *Init = I->getInit(); |
| 1608 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1609 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1610 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 1611 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1612 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 1613 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 1614 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 1615 | /*ExternallyDestructed=*/false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1616 | } |
| 1617 | } |
| 1618 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1619 | autoCreateBlock(); |
| 1620 | appendInitializer(Block, I); |
| 1621 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1622 | if (Init) { |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1623 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1624 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), I), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1625 | Init); |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 1626 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1627 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1628 | // For expression with temporaries go directly to subexpression to omit |
| 1629 | // generating destructors for the second time. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1630 | return Visit(cast<ExprWithCleanups>(Init)->getSubExpr()); |
| 1631 | } |
Enrico Pertoso | faed801 | 2015-06-03 10:12:40 +0000 | [diff] [blame] | 1632 | if (BuildOpts.AddCXXDefaultInitExprInCtors) { |
| 1633 | if (CXXDefaultInitExpr *Default = dyn_cast<CXXDefaultInitExpr>(Init)) { |
| 1634 | // In general, appending the expression wrapped by a CXXDefaultInitExpr |
| 1635 | // may cause the same Expr to appear more than once in the CFG. Doing it |
| 1636 | // here is safe because there's only one initializer per field. |
| 1637 | autoCreateBlock(); |
| 1638 | appendStmt(Block, Default); |
| 1639 | if (Stmt *Child = Default->getExpr()) |
| 1640 | if (CFGBlock *R = Visit(Child)) |
| 1641 | Block = R; |
| 1642 | return Block; |
| 1643 | } |
| 1644 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1645 | return Visit(Init); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1646 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1647 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1648 | return Block; |
| 1649 | } |
| 1650 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1651 | /// Retrieve the type of the temporary object whose lifetime was |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1652 | /// extended by a local reference with the given initializer. |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1653 | static QualType getReferenceInitTemporaryType(const Expr *Init, |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1654 | bool *FoundMTE = nullptr) { |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1655 | while (true) { |
| 1656 | // Skip parentheses. |
| 1657 | Init = Init->IgnoreParens(); |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1658 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1659 | // Skip through cleanups. |
| 1660 | if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) { |
| 1661 | Init = EWC->getSubExpr(); |
| 1662 | continue; |
| 1663 | } |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1664 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1665 | // Skip through the temporary-materialization expression. |
| 1666 | if (const MaterializeTemporaryExpr *MTE |
| 1667 | = dyn_cast<MaterializeTemporaryExpr>(Init)) { |
| 1668 | Init = MTE->GetTemporaryExpr(); |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1669 | if (FoundMTE) |
| 1670 | *FoundMTE = true; |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1671 | continue; |
| 1672 | } |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1673 | |
| 1674 | // Skip sub-object accesses into rvalues. |
| 1675 | SmallVector<const Expr *, 2> CommaLHSs; |
| 1676 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 1677 | const Expr *SkippedInit = |
| 1678 | Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments); |
| 1679 | if (SkippedInit != Init) { |
| 1680 | Init = SkippedInit; |
| 1681 | continue; |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1682 | } |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1683 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1684 | break; |
| 1685 | } |
| 1686 | |
| 1687 | return Init->getType(); |
| 1688 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1689 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 1690 | // TODO: Support adding LoopExit element to the CFG in case where the loop is |
| 1691 | // ended by ReturnStmt, GotoStmt or ThrowExpr. |
| 1692 | void CFGBuilder::addLoopExit(const Stmt *LoopStmt){ |
| 1693 | if(!BuildOpts.AddLoopExit) |
| 1694 | return; |
| 1695 | autoCreateBlock(); |
| 1696 | appendLoopExit(Block, LoopStmt); |
| 1697 | } |
| 1698 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1699 | void CFGBuilder::getDeclsWithEndedScope(LocalScope::const_iterator B, |
| 1700 | LocalScope::const_iterator E, Stmt *S) { |
| 1701 | if (!BuildOpts.AddScopes) |
| 1702 | return; |
| 1703 | |
| 1704 | if (B == E) |
| 1705 | return; |
| 1706 | |
| 1707 | // To go from B to E, one first goes up the scopes from B to P |
| 1708 | // then sideways in one scope from P to P' and then down |
| 1709 | // the scopes from P' to E. |
| 1710 | // The lifetime of all objects between B and P end. |
| 1711 | LocalScope::const_iterator P = B.shared_parent(E); |
| 1712 | int Dist = B.distance(P); |
| 1713 | if (Dist <= 0) |
| 1714 | return; |
| 1715 | |
| 1716 | for (LocalScope::const_iterator I = B; I != P; ++I) |
| 1717 | if (I.pointsToFirstDeclaredVar()) |
| 1718 | DeclsWithEndedScope.insert(*I); |
| 1719 | } |
| 1720 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1721 | void CFGBuilder::addAutomaticObjHandling(LocalScope::const_iterator B, |
| 1722 | LocalScope::const_iterator E, |
| 1723 | Stmt *S) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1724 | getDeclsWithEndedScope(B, E, S); |
| 1725 | if (BuildOpts.AddScopes) |
| 1726 | addScopesEnd(B, E, S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1727 | if (BuildOpts.AddImplicitDtors) |
| 1728 | addAutomaticObjDtors(B, E, S); |
| 1729 | if (BuildOpts.AddLifetime) |
| 1730 | addLifetimeEnds(B, E, S); |
| 1731 | } |
| 1732 | |
| 1733 | /// Add to current block automatic objects that leave the scope. |
| 1734 | void CFGBuilder::addLifetimeEnds(LocalScope::const_iterator B, |
| 1735 | LocalScope::const_iterator E, Stmt *S) { |
| 1736 | if (!BuildOpts.AddLifetime) |
| 1737 | return; |
| 1738 | |
| 1739 | if (B == E) |
| 1740 | return; |
| 1741 | |
| 1742 | // To go from B to E, one first goes up the scopes from B to P |
| 1743 | // then sideways in one scope from P to P' and then down |
| 1744 | // the scopes from P' to E. |
| 1745 | // The lifetime of all objects between B and P end. |
| 1746 | LocalScope::const_iterator P = B.shared_parent(E); |
| 1747 | int dist = B.distance(P); |
| 1748 | if (dist <= 0) |
| 1749 | return; |
| 1750 | |
| 1751 | // We need to perform the scope leaving in reverse order |
| 1752 | SmallVector<VarDecl *, 10> DeclsTrivial; |
| 1753 | SmallVector<VarDecl *, 10> DeclsNonTrivial; |
| 1754 | DeclsTrivial.reserve(dist); |
| 1755 | DeclsNonTrivial.reserve(dist); |
| 1756 | |
| 1757 | for (LocalScope::const_iterator I = B; I != P; ++I) |
| 1758 | if (hasTrivialDestructor(*I)) |
| 1759 | DeclsTrivial.push_back(*I); |
| 1760 | else |
| 1761 | DeclsNonTrivial.push_back(*I); |
| 1762 | |
| 1763 | autoCreateBlock(); |
| 1764 | // object with trivial destructor end their lifetime last (when storage |
| 1765 | // duration ends) |
| 1766 | for (SmallVectorImpl<VarDecl *>::reverse_iterator I = DeclsTrivial.rbegin(), |
| 1767 | E = DeclsTrivial.rend(); |
| 1768 | I != E; ++I) |
| 1769 | appendLifetimeEnds(Block, *I, S); |
| 1770 | |
| 1771 | for (SmallVectorImpl<VarDecl *>::reverse_iterator |
| 1772 | I = DeclsNonTrivial.rbegin(), |
| 1773 | E = DeclsNonTrivial.rend(); |
| 1774 | I != E; ++I) |
| 1775 | appendLifetimeEnds(Block, *I, S); |
| 1776 | } |
| 1777 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1778 | /// Add to current block markers for ending scopes. |
| 1779 | void CFGBuilder::addScopesEnd(LocalScope::const_iterator B, |
| 1780 | LocalScope::const_iterator E, Stmt *S) { |
| 1781 | // If implicit destructors are enabled, we'll add scope ends in |
| 1782 | // addAutomaticObjDtors. |
| 1783 | if (BuildOpts.AddImplicitDtors) |
| 1784 | return; |
| 1785 | |
| 1786 | autoCreateBlock(); |
| 1787 | |
| 1788 | for (auto I = DeclsWithEndedScope.rbegin(), E = DeclsWithEndedScope.rend(); |
| 1789 | I != E; ++I) |
| 1790 | appendScopeEnd(Block, *I, S); |
| 1791 | |
| 1792 | return; |
| 1793 | } |
| 1794 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1795 | /// addAutomaticObjDtors - Add to current block automatic objects destructors |
| 1796 | /// for objects in range of local scope positions. Use S as trigger statement |
| 1797 | /// for destructors. |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1798 | void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1799 | LocalScope::const_iterator E, Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1800 | if (!BuildOpts.AddImplicitDtors) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1801 | return; |
| 1802 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1803 | if (B == E) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1804 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1805 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1806 | // We need to append the destructors in reverse order, but any one of them |
| 1807 | // may be a no-return destructor which changes the CFG. As a result, buffer |
| 1808 | // this sequence up and replay them in reverse order when appending onto the |
| 1809 | // CFGBlock(s). |
| 1810 | SmallVector<VarDecl*, 10> Decls; |
| 1811 | Decls.reserve(B.distance(E)); |
| 1812 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1813 | Decls.push_back(*I); |
| 1814 | |
| 1815 | for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(), |
| 1816 | E = Decls.rend(); |
| 1817 | I != E; ++I) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1818 | if (hasTrivialDestructor(*I)) { |
| 1819 | // If AddScopes is enabled and *I is a first variable in a scope, add a |
| 1820 | // ScopeEnd marker in a Block. |
| 1821 | if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) { |
| 1822 | autoCreateBlock(); |
| 1823 | appendScopeEnd(Block, *I, S); |
| 1824 | } |
| 1825 | continue; |
| 1826 | } |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1827 | // If this destructor is marked as a no-return destructor, we need to |
| 1828 | // create a new block for the destructor which does not have as a successor |
| 1829 | // anything built thus far: control won't flow out of this block. |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1830 | QualType Ty = (*I)->getType(); |
| 1831 | if (Ty->isReferenceType()) { |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1832 | Ty = getReferenceInitTemporaryType((*I)->getInit()); |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1833 | } |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1834 | Ty = Context->getBaseElementType(Ty); |
| 1835 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 1836 | if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn()) |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1837 | Block = createNoReturnBlock(); |
| 1838 | else |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1839 | autoCreateBlock(); |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1840 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1841 | // Add ScopeEnd just after automatic obj destructor. |
| 1842 | if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) |
| 1843 | appendScopeEnd(Block, *I, S); |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1844 | appendAutomaticObjDtor(Block, *I, S); |
| 1845 | } |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1846 | } |
| 1847 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1848 | /// addImplicitDtorsForDestructor - Add implicit destructors generated for |
| 1849 | /// base and member objects in destructor. |
| 1850 | void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1851 | assert(BuildOpts.AddImplicitDtors && |
| 1852 | "Can be called only when dtors should be added"); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1853 | const CXXRecordDecl *RD = DD->getParent(); |
| 1854 | |
| 1855 | // At the end destroy virtual base objects. |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1856 | for (const auto &VI : RD->vbases()) { |
Artem Dergachev | 192a747 | 2019-05-24 23:37:08 +0000 | [diff] [blame] | 1857 | // TODO: Add a VirtualBaseBranch to see if the most derived class |
| 1858 | // (which is different from the current class) is responsible for |
| 1859 | // destroying them. |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1860 | const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1861 | if (!CD->hasTrivialDestructor()) { |
| 1862 | autoCreateBlock(); |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1863 | appendBaseDtor(Block, &VI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1864 | } |
| 1865 | } |
| 1866 | |
| 1867 | // Before virtual bases destroy direct base objects. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1868 | for (const auto &BI : RD->bases()) { |
| 1869 | if (!BI.isVirtual()) { |
| 1870 | const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl(); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1871 | if (!CD->hasTrivialDestructor()) { |
| 1872 | autoCreateBlock(); |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1873 | appendBaseDtor(Block, &BI); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1874 | } |
| 1875 | } |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1876 | } |
| 1877 | |
| 1878 | // First destroy member objects. |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1879 | for (auto *FI : RD->fields()) { |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 1880 | // Check for constant size array. Set type to array element type. |
| 1881 | QualType QT = FI->getType(); |
| 1882 | if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1883 | if (AT->getSize() == 0) |
| 1884 | continue; |
| 1885 | QT = AT->getElementType(); |
| 1886 | } |
| 1887 | |
| 1888 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1889 | if (!CD->hasTrivialDestructor()) { |
| 1890 | autoCreateBlock(); |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1891 | appendMemberDtor(Block, FI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1892 | } |
| 1893 | } |
| 1894 | } |
| 1895 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1896 | /// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either |
| 1897 | /// way return valid LocalScope object. |
| 1898 | LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) { |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 1899 | if (Scope) |
| 1900 | return Scope; |
| 1901 | llvm::BumpPtrAllocator &alloc = cfg->getAllocator(); |
| 1902 | return new (alloc.Allocate<LocalScope>()) |
| 1903 | LocalScope(BumpVectorContext(alloc), ScopePos); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1904 | } |
| 1905 | |
| 1906 | /// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1907 | /// that should create implicit scope (e.g. if/else substatements). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1908 | void CFGBuilder::addLocalScopeForStmt(Stmt *S) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1909 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1910 | !BuildOpts.AddScopes) |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1911 | return; |
| 1912 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1913 | LocalScope *Scope = nullptr; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1914 | |
| 1915 | // For compound statement we will be creating explicit scope. |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1916 | if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) { |
Aaron Ballman | c7e4e21 | 2014-03-17 14:19:37 +0000 | [diff] [blame] | 1917 | for (auto *BI : CS->body()) { |
| 1918 | Stmt *SI = BI->stripLabelLikeStatements(); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1919 | if (DeclStmt *DS = dyn_cast<DeclStmt>(SI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1920 | Scope = addLocalScopeForDeclStmt(DS, Scope); |
| 1921 | } |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1922 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1923 | } |
| 1924 | |
| 1925 | // For any other statement scope will be implicit and as such will be |
| 1926 | // interesting only for DeclStmt. |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 1927 | if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements())) |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1928 | addLocalScopeForDeclStmt(DS); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1929 | } |
| 1930 | |
| 1931 | /// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will |
| 1932 | /// reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1933 | LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1934 | LocalScope* Scope) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1935 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1936 | !BuildOpts.AddScopes) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1937 | return Scope; |
| 1938 | |
Aaron Ballman | 535bbcc | 2014-03-14 17:01:24 +0000 | [diff] [blame] | 1939 | for (auto *DI : DS->decls()) |
| 1940 | if (VarDecl *VD = dyn_cast<VarDecl>(DI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1941 | Scope = addLocalScopeForVarDecl(VD, Scope); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1942 | return Scope; |
| 1943 | } |
| 1944 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1945 | bool CFGBuilder::hasTrivialDestructor(VarDecl *VD) { |
| 1946 | // Check for const references bound to temporary. Set type to pointee. |
| 1947 | QualType QT = VD->getType(); |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1948 | if (QT->isReferenceType()) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1949 | // Attempt to determine whether this declaration lifetime-extends a |
| 1950 | // temporary. |
| 1951 | // |
| 1952 | // FIXME: This is incorrect. Non-reference declarations can lifetime-extend |
| 1953 | // temporaries, and a single declaration can extend multiple temporaries. |
| 1954 | // We should look at the storage duration on each nested |
| 1955 | // MaterializeTemporaryExpr instead. |
| 1956 | |
| 1957 | const Expr *Init = VD->getInit(); |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1958 | if (!Init) { |
| 1959 | // Probably an exception catch-by-reference variable. |
| 1960 | // FIXME: It doesn't really mean that the object has a trivial destructor. |
| 1961 | // Also are there other cases? |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1962 | return true; |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1963 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1964 | |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1965 | // Lifetime-extending a temporary? |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1966 | bool FoundMTE = false; |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1967 | QT = getReferenceInitTemporaryType(Init, &FoundMTE); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1968 | if (!FoundMTE) |
| 1969 | return true; |
| 1970 | } |
| 1971 | |
| 1972 | // Check for constant size array. Set type to array element type. |
| 1973 | while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1974 | if (AT->getSize() == 0) |
| 1975 | return true; |
| 1976 | QT = AT->getElementType(); |
| 1977 | } |
| 1978 | |
| 1979 | // Check if type is a C++ class with non-trivial destructor. |
| 1980 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
| 1981 | return !CD->hasDefinition() || CD->hasTrivialDestructor(); |
| 1982 | return true; |
| 1983 | } |
| 1984 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1985 | /// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will |
| 1986 | /// create add scope for automatic objects and temporary objects bound to |
| 1987 | /// const reference. Will reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1988 | LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1989 | LocalScope* Scope) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1990 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1991 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1992 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1993 | !BuildOpts.AddScopes) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1994 | return Scope; |
| 1995 | |
| 1996 | // Check if variable is local. |
| 1997 | switch (VD->getStorageClass()) { |
| 1998 | case SC_None: |
| 1999 | case SC_Auto: |
| 2000 | case SC_Register: |
| 2001 | break; |
| 2002 | default: return Scope; |
| 2003 | } |
| 2004 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2005 | if (BuildOpts.AddImplicitDtors) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 2006 | if (!hasTrivialDestructor(VD) || BuildOpts.AddScopes) { |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 2007 | // Add the variable to scope |
| 2008 | Scope = createOrReuseLocalScope(Scope); |
| 2009 | Scope->addVar(VD); |
| 2010 | ScopePos = Scope->begin(); |
| 2011 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2012 | return Scope; |
| 2013 | } |
| 2014 | |
| 2015 | assert(BuildOpts.AddLifetime); |
| 2016 | // Add the variable to scope |
| 2017 | Scope = createOrReuseLocalScope(Scope); |
| 2018 | Scope->addVar(VD); |
| 2019 | ScopePos = Scope->begin(); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 2020 | return Scope; |
| 2021 | } |
| 2022 | |
| 2023 | /// addLocalScopeAndDtors - For given statement add local scope for it and |
| 2024 | /// 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] | 2025 | void CFGBuilder::addLocalScopeAndDtors(Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 2026 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 2027 | addLocalScopeForStmt(S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2028 | addAutomaticObjHandling(ScopePos, scopeBeginPos, S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 2029 | } |
| 2030 | |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 2031 | /// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for |
| 2032 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 2033 | /// Elements will be prepended to physical beginning of the vector which |
| 2034 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 2035 | /// destructors call site. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 2036 | /// FIXME: This mechanism for adding automatic destructors doesn't handle |
| 2037 | /// no-return destructors properly. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2038 | void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 2039 | LocalScope::const_iterator B, LocalScope::const_iterator E) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2040 | if (!BuildOpts.AddImplicitDtors) |
| 2041 | return; |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 2042 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 2043 | CFGBlock::iterator InsertPos |
| 2044 | = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C); |
| 2045 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 2046 | InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I, |
Artem Dergachev | 4e53032 | 2019-05-24 01:34:22 +0000 | [diff] [blame] | 2047 | Blk->getTerminatorStmt()); |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 2048 | } |
| 2049 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2050 | /// prependAutomaticObjLifetimeWithTerminator - Prepend lifetime CFGElements for |
| 2051 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 2052 | /// Elements will be prepended to physical beginning of the vector which |
| 2053 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 2054 | /// where lifetime ends. |
| 2055 | void CFGBuilder::prependAutomaticObjLifetimeWithTerminator( |
| 2056 | CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) { |
| 2057 | if (!BuildOpts.AddLifetime) |
| 2058 | return; |
| 2059 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 2060 | CFGBlock::iterator InsertPos = |
| 2061 | Blk->beginLifetimeEndsInsert(Blk->end(), B.distance(E), C); |
Artem Dergachev | 4e53032 | 2019-05-24 01:34:22 +0000 | [diff] [blame] | 2062 | for (LocalScope::const_iterator I = B; I != E; ++I) { |
| 2063 | InsertPos = |
| 2064 | Blk->insertLifetimeEnds(InsertPos, *I, Blk->getTerminatorStmt()); |
| 2065 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2066 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 2067 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 2068 | /// prependAutomaticObjScopeEndWithTerminator - Prepend scope end CFGElements for |
| 2069 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 2070 | /// Elements will be prepended to physical beginning of the vector which |
| 2071 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 2072 | /// where scope ends. |
| 2073 | const VarDecl * |
| 2074 | CFGBuilder::prependAutomaticObjScopeEndWithTerminator( |
| 2075 | CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) { |
| 2076 | if (!BuildOpts.AddScopes) |
| 2077 | return nullptr; |
| 2078 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 2079 | CFGBlock::iterator InsertPos = |
| 2080 | Blk->beginScopeEndInsert(Blk->end(), 1, C); |
| 2081 | LocalScope::const_iterator PlaceToInsert = B; |
| 2082 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 2083 | PlaceToInsert = I; |
Artem Dergachev | 4e53032 | 2019-05-24 01:34:22 +0000 | [diff] [blame] | 2084 | Blk->insertScopeEnd(InsertPos, *PlaceToInsert, Blk->getTerminatorStmt()); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 2085 | return *PlaceToInsert; |
| 2086 | } |
| 2087 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2088 | /// Visit - Walk the subtree of a statement and add extra |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2089 | /// blocks for ternary operators, &&, and ||. We also process "," and |
| 2090 | /// DeclStmts (which may contain nested control-flow). |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 2091 | CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc, |
| 2092 | bool ExternallyDestructed) { |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 2093 | if (!S) { |
| 2094 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2095 | return nullptr; |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 2096 | } |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 2097 | |
| 2098 | if (Expr *E = dyn_cast<Expr>(S)) |
| 2099 | S = E->IgnoreParens(); |
| 2100 | |
Alexey Bataev | c2c21ef | 2019-07-11 14:54:17 +0000 | [diff] [blame] | 2101 | if (Context->getLangOpts().OpenMP) |
| 2102 | if (auto *D = dyn_cast<OMPExecutableDirective>(S)) |
| 2103 | return VisitOMPExecutableDirective(D, asc); |
| 2104 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2105 | switch (S->getStmtClass()) { |
| 2106 | default: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2107 | return VisitStmt(S, asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2108 | |
| 2109 | case Stmt::AddrLabelExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2110 | return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2111 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2112 | case Stmt::BinaryConditionalOperatorClass: |
| 2113 | return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc); |
| 2114 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2115 | case Stmt::BinaryOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2116 | return VisitBinaryOperator(cast<BinaryOperator>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2117 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2118 | case Stmt::BlockExprClass: |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 2119 | return VisitBlockExpr(cast<BlockExpr>(S), asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2120 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2121 | case Stmt::BreakStmtClass: |
| 2122 | return VisitBreakStmt(cast<BreakStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2123 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2124 | case Stmt::CallExprClass: |
Ted Kremenek | 128d04d | 2010-08-31 18:47:34 +0000 | [diff] [blame] | 2125 | case Stmt::CXXOperatorCallExprClass: |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2126 | case Stmt::CXXMemberCallExprClass: |
Richard Smith | c67fdd4 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 2127 | case Stmt::UserDefinedLiteralClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2128 | return VisitCallExpr(cast<CallExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2129 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2130 | case Stmt::CaseStmtClass: |
| 2131 | return VisitCaseStmt(cast<CaseStmt>(S)); |
| 2132 | |
| 2133 | case Stmt::ChooseExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2134 | return VisitChooseExpr(cast<ChooseExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2135 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2136 | case Stmt::CompoundStmtClass: |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 2137 | return VisitCompoundStmt(cast<CompoundStmt>(S), ExternallyDestructed); |
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::ConditionalOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2140 | return VisitConditionalOperator(cast<ConditionalOperator>(S), asc); |
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::ContinueStmtClass: |
| 2143 | return VisitContinueStmt(cast<ContinueStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2144 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 2145 | case Stmt::CXXCatchStmtClass: |
| 2146 | return VisitCXXCatchStmt(cast<CXXCatchStmt>(S)); |
| 2147 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 2148 | case Stmt::ExprWithCleanupsClass: |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 2149 | return VisitExprWithCleanups(cast<ExprWithCleanups>(S), |
| 2150 | asc, ExternallyDestructed); |
Ted Kremenek | 82bfc86 | 2010-08-28 00:19:02 +0000 | [diff] [blame] | 2151 | |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 2152 | case Stmt::CXXDefaultArgExprClass: |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 2153 | case Stmt::CXXDefaultInitExprClass: |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 2154 | // FIXME: The expression inside a CXXDefaultArgExpr is owned by the |
| 2155 | // called function's declaration, not by the caller. If we simply add |
| 2156 | // this expression to the CFG, we could end up with the same Expr |
| 2157 | // appearing multiple times. |
| 2158 | // PR13385 / <rdar://problem/12156507> |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 2159 | // |
| 2160 | // It's likewise possible for multiple CXXDefaultInitExprs for the same |
| 2161 | // expression to be used in the same function (through aggregate |
| 2162 | // initialization). |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 2163 | return VisitStmt(S, asc); |
| 2164 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2165 | case Stmt::CXXBindTemporaryExprClass: |
| 2166 | return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc); |
| 2167 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 2168 | case Stmt::CXXConstructExprClass: |
| 2169 | return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc); |
| 2170 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 2171 | case Stmt::CXXNewExprClass: |
| 2172 | return VisitCXXNewExpr(cast<CXXNewExpr>(S), asc); |
| 2173 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 2174 | case Stmt::CXXDeleteExprClass: |
| 2175 | return VisitCXXDeleteExpr(cast<CXXDeleteExpr>(S), asc); |
| 2176 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2177 | case Stmt::CXXFunctionalCastExprClass: |
| 2178 | return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc); |
| 2179 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 2180 | case Stmt::CXXTemporaryObjectExprClass: |
| 2181 | return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc); |
| 2182 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 2183 | case Stmt::CXXThrowExprClass: |
| 2184 | return VisitCXXThrowExpr(cast<CXXThrowExpr>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2185 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 2186 | case Stmt::CXXTryStmtClass: |
| 2187 | return VisitCXXTryStmt(cast<CXXTryStmt>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2188 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 2189 | case Stmt::CXXForRangeStmtClass: |
| 2190 | return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S)); |
| 2191 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2192 | case Stmt::DeclStmtClass: |
| 2193 | return VisitDeclStmt(cast<DeclStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2194 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2195 | case Stmt::DefaultStmtClass: |
| 2196 | return VisitDefaultStmt(cast<DefaultStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2197 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2198 | case Stmt::DoStmtClass: |
| 2199 | return VisitDoStmt(cast<DoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2200 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2201 | case Stmt::ForStmtClass: |
| 2202 | return VisitForStmt(cast<ForStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2203 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2204 | case Stmt::GotoStmtClass: |
| 2205 | return VisitGotoStmt(cast<GotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2206 | |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 2207 | case Stmt::GCCAsmStmtClass: |
| 2208 | return VisitGCCAsmStmt(cast<GCCAsmStmt>(S), asc); |
| 2209 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2210 | case Stmt::IfStmtClass: |
| 2211 | return VisitIfStmt(cast<IfStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2212 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2213 | case Stmt::ImplicitCastExprClass: |
| 2214 | return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2215 | |
Bill Wendling | 8003edc | 2018-11-09 00:41:36 +0000 | [diff] [blame] | 2216 | case Stmt::ConstantExprClass: |
| 2217 | return VisitConstantExpr(cast<ConstantExpr>(S), asc); |
| 2218 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2219 | case Stmt::IndirectGotoStmtClass: |
| 2220 | return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2221 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2222 | case Stmt::LabelStmtClass: |
| 2223 | return VisitLabelStmt(cast<LabelStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2224 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 2225 | case Stmt::LambdaExprClass: |
| 2226 | return VisitLambdaExpr(cast<LambdaExpr>(S), asc); |
| 2227 | |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 2228 | case Stmt::MaterializeTemporaryExprClass: |
| 2229 | return VisitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(S), |
| 2230 | asc); |
| 2231 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2232 | case Stmt::MemberExprClass: |
| 2233 | return VisitMemberExpr(cast<MemberExpr>(S), asc); |
| 2234 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 2235 | case Stmt::NullStmtClass: |
| 2236 | return Block; |
| 2237 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2238 | case Stmt::ObjCAtCatchStmtClass: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2239 | return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); |
| 2240 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 2241 | case Stmt::ObjCAutoreleasePoolStmtClass: |
| 2242 | return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S)); |
| 2243 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2244 | case Stmt::ObjCAtSynchronizedStmtClass: |
| 2245 | return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2246 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2247 | case Stmt::ObjCAtThrowStmtClass: |
| 2248 | return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2249 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2250 | case Stmt::ObjCAtTryStmtClass: |
| 2251 | return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2252 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2253 | case Stmt::ObjCForCollectionStmtClass: |
| 2254 | return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2255 | |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 2256 | case Stmt::ObjCMessageExprClass: |
| 2257 | return VisitObjCMessageExpr(cast<ObjCMessageExpr>(S), asc); |
| 2258 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 2259 | case Stmt::OpaqueValueExprClass: |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2260 | return Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2261 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 2262 | case Stmt::PseudoObjectExprClass: |
| 2263 | return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S)); |
| 2264 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2265 | case Stmt::ReturnStmtClass: |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 2266 | case Stmt::CoreturnStmtClass: |
| 2267 | return VisitReturnStmt(S); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2268 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 2269 | case Stmt::SEHExceptStmtClass: |
| 2270 | return VisitSEHExceptStmt(cast<SEHExceptStmt>(S)); |
| 2271 | |
| 2272 | case Stmt::SEHFinallyStmtClass: |
| 2273 | return VisitSEHFinallyStmt(cast<SEHFinallyStmt>(S)); |
| 2274 | |
| 2275 | case Stmt::SEHLeaveStmtClass: |
| 2276 | return VisitSEHLeaveStmt(cast<SEHLeaveStmt>(S)); |
| 2277 | |
| 2278 | case Stmt::SEHTryStmtClass: |
| 2279 | return VisitSEHTryStmt(cast<SEHTryStmt>(S)); |
| 2280 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2281 | case Stmt::UnaryExprOrTypeTraitExprClass: |
| 2282 | return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S), |
| 2283 | asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2284 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2285 | case Stmt::StmtExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2286 | return VisitStmtExpr(cast<StmtExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2287 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2288 | case Stmt::SwitchStmtClass: |
| 2289 | return VisitSwitchStmt(cast<SwitchStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2290 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2291 | case Stmt::UnaryOperatorClass: |
| 2292 | return VisitUnaryOperator(cast<UnaryOperator>(S), asc); |
| 2293 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2294 | case Stmt::WhileStmtClass: |
| 2295 | return VisitWhileStmt(cast<WhileStmt>(S)); |
| 2296 | } |
| 2297 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2298 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2299 | CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2300 | if (asc.alwaysAdd(*this, S)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2301 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2302 | appendStmt(Block, S); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2303 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2304 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2305 | return VisitChildren(S); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2306 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2307 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2308 | /// VisitChildren - Visit the children of a Stmt. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 2309 | CFGBlock *CFGBuilder::VisitChildren(Stmt *S) { |
| 2310 | CFGBlock *B = Block; |
Ted Kremenek | 828f631 | 2011-02-21 22:11:26 +0000 | [diff] [blame] | 2311 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 2312 | // Visit the children in their reverse order so that they appear in |
| 2313 | // left-to-right (natural) order in the CFG. |
| 2314 | reverse_children RChildren(S); |
| 2315 | for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end(); |
| 2316 | I != E; ++I) { |
| 2317 | if (Stmt *Child = *I) |
| 2318 | if (CFGBlock *R = Visit(Child)) |
| 2319 | B = R; |
| 2320 | } |
| 2321 | return B; |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2322 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2323 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2324 | CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, |
| 2325 | AddStmtChoice asc) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2326 | AddressTakenLabels.insert(A->getLabel()); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2327 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2328 | if (asc.alwaysAdd(*this, A)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2329 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2330 | appendStmt(Block, A); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2331 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2332 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2333 | return Block; |
| 2334 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2335 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2336 | CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U, |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2337 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2338 | if (asc.alwaysAdd(*this, U)) { |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2339 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2340 | appendStmt(Block, U); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2341 | } |
| 2342 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2343 | return Visit(U->getSubExpr(), AddStmtChoice()); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2344 | } |
| 2345 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2346 | CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) { |
| 2347 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
| 2348 | appendStmt(ConfluenceBlock, B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2349 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2350 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2351 | return nullptr; |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2352 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2353 | return VisitLogicalOperator(B, nullptr, ConfluenceBlock, |
| 2354 | ConfluenceBlock).first; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2355 | } |
| 2356 | |
| 2357 | std::pair<CFGBlock*, CFGBlock*> |
| 2358 | CFGBuilder::VisitLogicalOperator(BinaryOperator *B, |
| 2359 | Stmt *Term, |
| 2360 | CFGBlock *TrueBlock, |
| 2361 | CFGBlock *FalseBlock) { |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2362 | // Introspect the RHS. If it is a nested logical operation, we recursively |
| 2363 | // build the CFG using this function. Otherwise, resort to default |
| 2364 | // CFG construction behavior. |
| 2365 | Expr *RHS = B->getRHS()->IgnoreParens(); |
| 2366 | CFGBlock *RHSBlock, *ExitBlock; |
| 2367 | |
| 2368 | do { |
| 2369 | if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS)) |
| 2370 | if (B_RHS->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 2371 | std::tie(RHSBlock, ExitBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2372 | VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock); |
| 2373 | break; |
| 2374 | } |
| 2375 | |
| 2376 | // The RHS is not a nested logical operation. Don't push the terminator |
| 2377 | // down further, but instead visit RHS and construct the respective |
| 2378 | // pieces of the CFG, and link up the RHSBlock with the terminator |
| 2379 | // we have been provided. |
| 2380 | ExitBlock = RHSBlock = createBlock(false); |
| 2381 | |
Richard Trieu | 6a6af52 | 2017-01-04 00:46:30 +0000 | [diff] [blame] | 2382 | // Even though KnownVal is only used in the else branch of the next |
| 2383 | // conditional, tryEvaluateBool performs additional checking on the |
| 2384 | // Expr, so it should be called unconditionally. |
| 2385 | TryResult KnownVal = tryEvaluateBool(RHS); |
| 2386 | if (!KnownVal.isKnown()) |
| 2387 | KnownVal = tryEvaluateBool(B); |
| 2388 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2389 | if (!Term) { |
| 2390 | assert(TrueBlock == FalseBlock); |
| 2391 | addSuccessor(RHSBlock, TrueBlock); |
| 2392 | } |
| 2393 | else { |
| 2394 | RHSBlock->setTerminator(Term); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2395 | addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 2396 | addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2397 | } |
| 2398 | |
| 2399 | Block = RHSBlock; |
| 2400 | RHSBlock = addStmt(RHS); |
| 2401 | } |
| 2402 | while (false); |
| 2403 | |
| 2404 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2405 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2406 | |
| 2407 | // Generate the blocks for evaluating the LHS. |
| 2408 | Expr *LHS = B->getLHS()->IgnoreParens(); |
| 2409 | |
| 2410 | if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS)) |
| 2411 | if (B_LHS->isLogicalOp()) { |
| 2412 | if (B->getOpcode() == BO_LOr) |
| 2413 | FalseBlock = RHSBlock; |
| 2414 | else |
| 2415 | TrueBlock = RHSBlock; |
| 2416 | |
| 2417 | // For the LHS, treat 'B' as the terminator that we want to sink |
| 2418 | // into the nested branch. The RHS always gets the top-most |
| 2419 | // terminator. |
| 2420 | return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock); |
| 2421 | } |
| 2422 | |
| 2423 | // Create the block evaluating the LHS. |
| 2424 | // This contains the '&&' or '||' as the terminator. |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2425 | CFGBlock *LHSBlock = createBlock(false); |
| 2426 | LHSBlock->setTerminator(B); |
| 2427 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2428 | Block = LHSBlock; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2429 | CFGBlock *EntryLHSBlock = addStmt(LHS); |
| 2430 | |
| 2431 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2432 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2433 | |
| 2434 | // See if this is a known constant. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2435 | TryResult KnownVal = tryEvaluateBool(LHS); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2436 | |
| 2437 | // Now link the LHSBlock with RHSBlock. |
| 2438 | if (B->getOpcode() == BO_LOr) { |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2439 | addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 2440 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2441 | } else { |
| 2442 | assert(B->getOpcode() == BO_LAnd); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2443 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse()); |
| 2444 | addSuccessor(LHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2445 | } |
| 2446 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2447 | return std::make_pair(EntryLHSBlock, ExitBlock); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2448 | } |
| 2449 | |
| 2450 | CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B, |
| 2451 | AddStmtChoice asc) { |
| 2452 | // && or || |
| 2453 | if (B->isLogicalOp()) |
| 2454 | return VisitLogicalOperator(B); |
| 2455 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2456 | if (B->getOpcode() == BO_Comma) { // , |
Ted Kremenek | fe9b768 | 2009-07-17 22:57:50 +0000 | [diff] [blame] | 2457 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2458 | appendStmt(Block, B); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2459 | addStmt(B->getRHS()); |
| 2460 | return addStmt(B->getLHS()); |
| 2461 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2462 | |
| 2463 | if (B->isAssignmentOp()) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2464 | if (asc.alwaysAdd(*this, B)) { |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2465 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2466 | appendStmt(Block, B); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2467 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2468 | Visit(B->getLHS()); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2469 | return Visit(B->getRHS()); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2470 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2471 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2472 | if (asc.alwaysAdd(*this, B)) { |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2473 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2474 | appendStmt(Block, B); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2475 | } |
| 2476 | |
Zhongxing Xu | d95ccd5 | 2010-10-27 03:23:10 +0000 | [diff] [blame] | 2477 | CFGBlock *RBlock = Visit(B->getRHS()); |
| 2478 | CFGBlock *LBlock = Visit(B->getLHS()); |
| 2479 | // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr |
| 2480 | // containing a DoStmt, and the LHS doesn't create a new block, then we should |
| 2481 | // return RBlock. Otherwise we'll incorrectly return NULL. |
| 2482 | return (LBlock ? LBlock : RBlock); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2483 | } |
| 2484 | |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 2485 | CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2486 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2487 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2488 | appendStmt(Block, E); |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2489 | } |
| 2490 | return Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2491 | } |
| 2492 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2493 | CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { |
| 2494 | // "break" is a control-flow statement. Thus we stop processing the current |
| 2495 | // block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2496 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2497 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2498 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2499 | // Now create a new block that ends with the break statement. |
| 2500 | Block = createBlock(false); |
| 2501 | Block->setTerminator(B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2502 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2503 | // If there is no target for the break, then we are looking at an incomplete |
| 2504 | // AST. This means that the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2505 | if (BreakJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2506 | addAutomaticObjHandling(ScopePos, BreakJumpTarget.scopePosition, B); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2507 | addSuccessor(Block, BreakJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2508 | } else |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2509 | badCFG = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2510 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2511 | return Block; |
| 2512 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2513 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2514 | static bool CanThrow(Expr *E, ASTContext &Ctx) { |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2515 | QualType Ty = E->getType(); |
Artem Dergachev | 3517d10 | 2019-08-28 21:19:58 +0000 | [diff] [blame] | 2516 | if (Ty->isFunctionPointerType() || Ty->isBlockPointerType()) |
| 2517 | Ty = Ty->getPointeeType(); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2518 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2519 | const FunctionType *FT = Ty->getAs<FunctionType>(); |
| 2520 | if (FT) { |
| 2521 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) |
Richard Smith | d3b5c908 | 2012-07-27 04:22:15 +0000 | [diff] [blame] | 2522 | if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && |
Richard Smith | eaf11ad | 2018-05-03 03:58:32 +0000 | [diff] [blame] | 2523 | Proto->isNothrow()) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2524 | return false; |
| 2525 | } |
| 2526 | return true; |
| 2527 | } |
| 2528 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2529 | CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) { |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2530 | // Compute the callee type. |
| 2531 | QualType calleeType = C->getCallee()->getType(); |
| 2532 | if (calleeType == Context->BoundMemberTy) { |
| 2533 | QualType boundType = Expr::findBoundMemberType(C->getCallee()); |
| 2534 | |
| 2535 | // We should only get a null bound type if processing a dependent |
| 2536 | // CFG. Recover by assuming nothing. |
| 2537 | if (!boundType.isNull()) calleeType = boundType; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2538 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2539 | |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2540 | // If this is a call to a no-return function, this stops the block here. |
| 2541 | bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); |
| 2542 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2543 | bool AddEHEdge = false; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2544 | |
| 2545 | // Languages without exceptions are assumed to not throw. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2546 | if (Context->getLangOpts().Exceptions) { |
Ted Kremenek | e97b1eb | 2010-09-14 23:41:16 +0000 | [diff] [blame] | 2547 | if (BuildOpts.AddEHEdges) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2548 | AddEHEdge = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2549 | } |
| 2550 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2551 | // If this is a call to a builtin function, it might not actually evaluate |
| 2552 | // its arguments. Don't add them to the CFG if this is the case. |
| 2553 | bool OmitArguments = false; |
| 2554 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2555 | if (FunctionDecl *FD = C->getDirectCallee()) { |
Artem Dergachev | 594b541 | 2018-08-29 21:50:52 +0000 | [diff] [blame] | 2556 | // TODO: Support construction contexts for variadic function arguments. |
| 2557 | // These are a bit problematic and not very useful because passing |
| 2558 | // C++ objects as C-style variadic arguments doesn't work in general |
| 2559 | // (see [expr.call]). |
| 2560 | if (!FD->isVariadic()) |
| 2561 | findConstructionContextsForArguments(C); |
| 2562 | |
Nico Weber | 758fbac | 2018-02-13 21:31:47 +0000 | [diff] [blame] | 2563 | if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context)) |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2564 | NoReturn = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2565 | if (FD->hasAttr<NoThrowAttr>()) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2566 | AddEHEdge = false; |
Erik Pilkington | 9c3b588 | 2019-01-30 20:34:53 +0000 | [diff] [blame] | 2567 | if (FD->getBuiltinID() == Builtin::BI__builtin_object_size || |
| 2568 | FD->getBuiltinID() == Builtin::BI__builtin_dynamic_object_size) |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2569 | OmitArguments = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2570 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2571 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2572 | if (!CanThrow(C->getCallee(), *Context)) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2573 | AddEHEdge = false; |
| 2574 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2575 | if (OmitArguments) { |
| 2576 | assert(!NoReturn && "noreturn calls with unevaluated args not implemented"); |
| 2577 | assert(!AddEHEdge && "EH calls with unevaluated args not implemented"); |
| 2578 | autoCreateBlock(); |
| 2579 | appendStmt(Block, C); |
| 2580 | return Visit(C->getCallee()); |
| 2581 | } |
| 2582 | |
| 2583 | if (!NoReturn && !AddEHEdge) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 2584 | autoCreateBlock(); |
| 2585 | appendCall(Block, C); |
| 2586 | |
| 2587 | return VisitChildren(C); |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2588 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2589 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2590 | if (Block) { |
| 2591 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2592 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2593 | return nullptr; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2594 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2595 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 2596 | if (NoReturn) |
| 2597 | Block = createNoReturnBlock(); |
| 2598 | else |
| 2599 | Block = createBlock(); |
| 2600 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 2601 | appendCall(Block, C); |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2602 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2603 | if (AddEHEdge) { |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2604 | // Add exceptional edges. |
| 2605 | if (TryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2606 | addSuccessor(Block, TryTerminatedBlock); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2607 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2608 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2609 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2610 | |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2611 | return VisitChildren(C); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2612 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2613 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2614 | CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, |
| 2615 | AddStmtChoice asc) { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2616 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2617 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2618 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2619 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2620 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2621 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2622 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2623 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2624 | CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2625 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2626 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2627 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2628 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2629 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2630 | CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2631 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2632 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2633 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2634 | Block = createBlock(false); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2635 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2636 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2637 | addSuccessor(Block, KnownVal.isFalse() ? nullptr : LHSBlock); |
| 2638 | addSuccessor(Block, KnownVal.isTrue() ? nullptr : RHSBlock); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2639 | Block->setTerminator(C); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2640 | return addStmt(C->getCond()); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2641 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2642 | |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 2643 | CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C, bool ExternallyDestructed) { |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2644 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2645 | addLocalScopeForStmt(C); |
| 2646 | |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2647 | if (!C->body_empty() && !isa<ReturnStmt>(*C->body_rbegin())) { |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2648 | // If the body ends with a ReturnStmt, the dtors will be added in |
| 2649 | // VisitReturnStmt. |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2650 | addAutomaticObjHandling(ScopePos, scopeBeginPos, C); |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2651 | } |
| 2652 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2653 | CFGBlock *LastBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2654 | |
| 2655 | for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend(); |
| 2656 | I != E; ++I ) { |
Ted Kremenek | 4f2ab5a | 2010-08-17 21:00:06 +0000 | [diff] [blame] | 2657 | // If we hit a segment of code just containing ';' (NullStmts), we can |
| 2658 | // get a null block back. In such cases, just use the LastBlock |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 2659 | CFGBlock *newBlock = Visit(*I, AddStmtChoice::AlwaysAdd, |
| 2660 | ExternallyDestructed); |
| 2661 | |
| 2662 | if (newBlock) |
Ted Kremenek | 4f2ab5a | 2010-08-17 21:00:06 +0000 | [diff] [blame] | 2663 | LastBlock = newBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2664 | |
Ted Kremenek | ce499c2 | 2009-08-27 23:16:26 +0000 | [diff] [blame] | 2665 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2666 | return nullptr; |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 2667 | |
| 2668 | ExternallyDestructed = false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2669 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2670 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2671 | return LastBlock; |
| 2672 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2673 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2674 | CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C, |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2675 | AddStmtChoice asc) { |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2676 | const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2677 | const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : nullptr); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2678 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2679 | // Create the confluence block that will "merge" the results of the ternary |
| 2680 | // expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2681 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2682 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2683 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2684 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2685 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2686 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2687 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2688 | // Create a block for the LHS expression if there is an LHS expression. A |
| 2689 | // GCC extension allows LHS to be NULL, causing the condition to be the |
| 2690 | // value that is returned instead. |
| 2691 | // e.g: x ?: y is shorthand for: x ? x : y; |
| 2692 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2693 | Block = nullptr; |
| 2694 | CFGBlock *LHSBlock = nullptr; |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2695 | const Expr *trueExpr = C->getTrueExpr(); |
| 2696 | if (trueExpr != opaqueValue) { |
| 2697 | LHSBlock = Visit(C->getTrueExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2698 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2699 | return nullptr; |
| 2700 | Block = nullptr; |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2701 | } |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2702 | else |
| 2703 | LHSBlock = ConfluenceBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2704 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2705 | // Create the block for the RHS expression. |
| 2706 | Succ = ConfluenceBlock; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2707 | CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2708 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2709 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2710 | |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 2711 | // If the condition is a logical '&&' or '||', build a more accurate CFG. |
| 2712 | if (BinaryOperator *Cond = |
| 2713 | dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens())) |
| 2714 | if (Cond->isLogicalOp()) |
| 2715 | return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first; |
| 2716 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2717 | // Create the block that will contain the condition. |
| 2718 | Block = createBlock(false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2719 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2720 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2721 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Ted Kremenek | 5a09527 | 2014-03-04 21:53:26 +0000 | [diff] [blame] | 2722 | addSuccessor(Block, LHSBlock, !KnownVal.isFalse()); |
| 2723 | addSuccessor(Block, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2724 | Block->setTerminator(C); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2725 | Expr *condExpr = C->getCond(); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2726 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2727 | if (opaqueValue) { |
| 2728 | // Run the condition expression if it's not trivially expressed in |
| 2729 | // terms of the opaque value (or if there is no opaque value). |
| 2730 | if (condExpr != opaqueValue) |
| 2731 | addStmt(condExpr); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2732 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2733 | // Before that, run the common subexpression if there was one. |
| 2734 | // At least one of this or the above will be run. |
| 2735 | return addStmt(BCO->getCommon()); |
| 2736 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2737 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2738 | return addStmt(condExpr); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2739 | } |
| 2740 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2741 | CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) { |
Ted Kremenek | 6878c36 | 2011-05-10 18:42:15 +0000 | [diff] [blame] | 2742 | // Check if the Decl is for an __label__. If so, elide it from the |
| 2743 | // CFG entirely. |
| 2744 | if (isa<LabelDecl>(*DS->decl_begin())) |
| 2745 | return Block; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2746 | |
Ted Kremenek | 3a60114 | 2011-05-24 20:41:31 +0000 | [diff] [blame] | 2747 | // This case also handles static_asserts. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2748 | if (DS->isSingleDecl()) |
| 2749 | return VisitDeclSubExpr(DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2750 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2751 | CFGBlock *B = nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2752 | |
Jordan Rose | 8c6c8a9 | 2012-07-20 18:50:48 +0000 | [diff] [blame] | 2753 | // Build an individual DeclStmt for each decl. |
| 2754 | for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(), |
| 2755 | E = DS->decl_rend(); |
| 2756 | I != E; ++I) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2757 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2758 | // Allocate the DeclStmt using the BumpPtrAllocator. It will get |
| 2759 | // automatically freed with the CFG. |
| 2760 | DeclGroupRef DG(*I); |
| 2761 | Decl *D = *I; |
George Karpenkov | c1ac808 | 2018-10-02 21:19:01 +0000 | [diff] [blame] | 2762 | DeclStmt *DSNew = new (Context) DeclStmt(DG, D->getLocation(), GetEndLoc(D)); |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 2763 | cfg->addSyntheticDeclStmt(DSNew, DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2764 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2765 | // Append the fake DeclStmt to block. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2766 | B = VisitDeclSubExpr(DSNew); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2767 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2768 | |
| 2769 | return B; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2770 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2771 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2772 | /// VisitDeclSubExpr - Utility method to add block-level expressions for |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2773 | /// DeclStmts and initializers in them. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2774 | CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2775 | assert(DS->isSingleDecl() && "Can handle single declarations only."); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2776 | VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2777 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2778 | if (!VD) { |
Jordan Rose | 5250b87 | 2013-06-03 22:59:41 +0000 | [diff] [blame] | 2779 | // Of everything that can be declared in a DeclStmt, only VarDecls impact |
| 2780 | // runtime semantics. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2781 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2782 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2783 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2784 | bool HasTemporaries = false; |
| 2785 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2786 | // Guard static initializers under a branch. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2787 | CFGBlock *blockAfterStaticInit = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2788 | |
| 2789 | if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) { |
| 2790 | // For static variables, we need to create a branch to track |
| 2791 | // whether or not they are initialized. |
| 2792 | if (Block) { |
| 2793 | Succ = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2794 | Block = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2795 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2796 | return nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2797 | } |
| 2798 | blockAfterStaticInit = Succ; |
| 2799 | } |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2800 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2801 | // Destructors of temporaries in initialization expression should be called |
| 2802 | // after initialization finishes. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2803 | Expr *Init = VD->getInit(); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2804 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 2805 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2806 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 2807 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2808 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 2809 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 2810 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 2811 | /*ExternallyDestructed=*/true, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2812 | } |
| 2813 | } |
| 2814 | |
| 2815 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2816 | appendStmt(Block, DS); |
Artem Dergachev | 5fc1033 | 2018-02-10 01:55:23 +0000 | [diff] [blame] | 2817 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2818 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 2819 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2820 | Init); |
Artem Dergachev | 5fc1033 | 2018-02-10 01:55:23 +0000 | [diff] [blame] | 2821 | |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2822 | // Keep track of the last non-null block, as 'Block' can be nulled out |
| 2823 | // if the initializer expression is something like a 'while' in a |
| 2824 | // statement-expression. |
| 2825 | CFGBlock *LastBlock = Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2826 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2827 | if (Init) { |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2828 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2829 | // For expression with temporaries go directly to subexpression to omit |
| 2830 | // generating destructors for the second time. |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2831 | ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); |
| 2832 | if (CFGBlock *newBlock = Visit(EC->getSubExpr())) |
| 2833 | LastBlock = newBlock; |
| 2834 | } |
| 2835 | else { |
| 2836 | if (CFGBlock *newBlock = Visit(Init)) |
| 2837 | LastBlock = newBlock; |
| 2838 | } |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2839 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2840 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2841 | // 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] | 2842 | for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2843 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) { |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2844 | if (CFGBlock *newBlock = addStmt(VA->getSizeExpr())) |
| 2845 | LastBlock = newBlock; |
| 2846 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2847 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 2848 | maybeAddScopeBeginForVarDecl(Block, VD, DS); |
| 2849 | |
Marcin Swiderski | 667ffec | 2010-10-01 00:23:17 +0000 | [diff] [blame] | 2850 | // Remove variable from local scope. |
| 2851 | if (ScopePos && VD == *ScopePos) |
| 2852 | ++ScopePos; |
| 2853 | |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2854 | CFGBlock *B = LastBlock; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2855 | if (blockAfterStaticInit) { |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2856 | Succ = B; |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2857 | Block = createBlock(false); |
| 2858 | Block->setTerminator(DS); |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2859 | addSuccessor(Block, blockAfterStaticInit); |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2860 | addSuccessor(Block, B); |
| 2861 | B = Block; |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2862 | } |
| 2863 | |
| 2864 | return B; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2865 | } |
| 2866 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2867 | CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2868 | // We may see an if statement in the middle of a basic block, or it may be the |
| 2869 | // first statement we are processing. In either case, we create a new basic |
| 2870 | // block. First, we create the blocks for the then...else statements, and |
| 2871 | // 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] | 2872 | // middle of a block, we stop processing that block. That block is then the |
| 2873 | // implicit successor for the "then" and "else" clauses. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2874 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2875 | // Save local scope position because in case of condition variable ScopePos |
| 2876 | // won't be restored when traversing AST. |
| 2877 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2878 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2879 | // Create local scope for C++17 if init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2880 | if (Stmt *Init = I->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2881 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2882 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2883 | // Create local scope for possible condition variable. |
| 2884 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2885 | if (VarDecl *VD = I->getConditionVariable()) |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2886 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2887 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2888 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), I); |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2889 | |
Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 2890 | // The block we were processing is now finished. Make it the successor |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2891 | // block. |
| 2892 | if (Block) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2893 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2894 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2895 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2896 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2897 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2898 | // Process the false branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2899 | CFGBlock *ElseBlock = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2900 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2901 | if (Stmt *Else = I->getElse()) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2902 | SaveAndRestore<CFGBlock*> sv(Succ); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2903 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2904 | // NULL out Block so that the recursive call to Visit will |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2905 | // create a new basic block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2906 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2907 | |
| 2908 | // If branch is not a compound statement create implicit scope |
| 2909 | // and add destructors. |
| 2910 | if (!isa<CompoundStmt>(Else)) |
| 2911 | addLocalScopeAndDtors(Else); |
| 2912 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2913 | ElseBlock = addStmt(Else); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2914 | |
Ted Kremenek | bbad8ce | 2007-08-30 18:13:31 +0000 | [diff] [blame] | 2915 | if (!ElseBlock) // Can occur when the Else body has all NullStmts. |
| 2916 | ElseBlock = sv.get(); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2917 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2918 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2919 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2920 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2921 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2922 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2923 | // Process the true branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2924 | CFGBlock *ThenBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2925 | { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2926 | Stmt *Then = I->getThen(); |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 2927 | assert(Then); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2928 | SaveAndRestore<CFGBlock*> sv(Succ); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2929 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2930 | |
| 2931 | // If branch is not a compound statement create implicit scope |
| 2932 | // and add destructors. |
| 2933 | if (!isa<CompoundStmt>(Then)) |
| 2934 | addLocalScopeAndDtors(Then); |
| 2935 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2936 | ThenBlock = addStmt(Then); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2937 | |
Ted Kremenek | 1b37951 | 2009-04-01 03:52:47 +0000 | [diff] [blame] | 2938 | if (!ThenBlock) { |
| 2939 | // We can reach here if the "then" body has all NullStmts. |
| 2940 | // Create an empty block so we can distinguish between true and false |
| 2941 | // branches in path-sensitive analyses. |
| 2942 | ThenBlock = createBlock(false); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2943 | addSuccessor(ThenBlock, sv.get()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2944 | } else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2945 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2946 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2947 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2948 | } |
| 2949 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2950 | // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by |
| 2951 | // having these handle the actual control-flow jump. Note that |
| 2952 | // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)" |
| 2953 | // we resort to the old control-flow behavior. This special handling |
| 2954 | // removes infeasible paths from the control-flow graph by having the |
| 2955 | // control-flow transfer of '&&' or '||' go directly into the then/else |
| 2956 | // blocks directly. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2957 | BinaryOperator *Cond = |
| 2958 | I->getConditionVariable() |
| 2959 | ? nullptr |
| 2960 | : dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens()); |
| 2961 | CFGBlock *LastBlock; |
| 2962 | if (Cond && Cond->isLogicalOp()) |
| 2963 | LastBlock = VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first; |
| 2964 | else { |
| 2965 | // Now create a new block containing the if statement. |
| 2966 | Block = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2967 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2968 | // Set the terminator of the new block to the If statement. |
| 2969 | Block->setTerminator(I); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2970 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2971 | // See if this is a known constant. |
| 2972 | const TryResult &KnownVal = tryEvaluateBool(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2973 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2974 | // Add the successors. If we know that specific branches are |
| 2975 | // unreachable, inform addSuccessor() of that knowledge. |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 2976 | addSuccessor(Block, ThenBlock, /* IsReachable = */ !KnownVal.isFalse()); |
| 2977 | addSuccessor(Block, ElseBlock, /* IsReachable = */ !KnownVal.isTrue()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2978 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2979 | // Add the condition as the last statement in the new block. This may |
| 2980 | // create new blocks as the condition may contain control-flow. Any newly |
| 2981 | // created blocks will be pointed to be "Block". |
| 2982 | LastBlock = addStmt(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2983 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2984 | // If the IfStmt contains a condition variable, add it and its |
| 2985 | // initializer to the CFG. |
| 2986 | if (const DeclStmt* DS = I->getConditionVariableDeclStmt()) { |
| 2987 | autoCreateBlock(); |
| 2988 | LastBlock = addStmt(const_cast<DeclStmt *>(DS)); |
| 2989 | } |
Ted Kremenek | a7bcbde | 2009-12-23 04:49:01 +0000 | [diff] [blame] | 2990 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2991 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2992 | // Finally, if the IfStmt contains a C++17 init-stmt, add it to the CFG. |
| 2993 | if (Stmt *Init = I->getInit()) { |
| 2994 | autoCreateBlock(); |
| 2995 | LastBlock = addStmt(Init); |
| 2996 | } |
| 2997 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2998 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2999 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3000 | |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 3001 | CFGBlock *CFGBuilder::VisitReturnStmt(Stmt *S) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3002 | // 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] | 3003 | // |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 3004 | // NOTE: If a "return" or "co_return" appears in the middle of a block, this |
| 3005 | // means that the code afterwards is DEAD (unreachable). We still keep |
| 3006 | // a basic block for that code; a simple "mark-and-sweep" from the entry |
| 3007 | // block will be able to report such dead blocks. |
| 3008 | assert(isa<ReturnStmt>(S) || isa<CoreturnStmt>(S)); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3009 | |
| 3010 | // Create the new block. |
| 3011 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3012 | |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 3013 | addAutomaticObjHandling(ScopePos, LocalScope::const_iterator(), S); |
Pavel Labath | 921e765 | 2013-09-06 08:12:48 +0000 | [diff] [blame] | 3014 | |
Brian Gesiak | a87ecf6 | 2018-11-03 22:35:17 +0000 | [diff] [blame] | 3015 | if (auto *R = dyn_cast<ReturnStmt>(S)) |
| 3016 | findConstructionContexts( |
| 3017 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), R), |
| 3018 | R->getRetValue()); |
Artem Dergachev | 9ac2e11 | 2018-02-12 22:36:36 +0000 | [diff] [blame] | 3019 | |
Pavel Labath | 921e765 | 2013-09-06 08:12:48 +0000 | [diff] [blame] | 3020 | // If the one of the destructors does not return, we already have the Exit |
| 3021 | // block as a successor. |
| 3022 | if (!Block->hasNoReturnElement()) |
| 3023 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3024 | |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 3025 | // Add the return statement to the block. |
| 3026 | appendStmt(Block, S); |
| 3027 | |
| 3028 | // Visit children |
| 3029 | if (ReturnStmt *RS = dyn_cast<ReturnStmt>(S)) { |
Artem Dergachev | e5c0994 | 2019-08-29 20:37:28 +0000 | [diff] [blame] | 3030 | if (Expr *O = RS->getRetValue()) |
| 3031 | return Visit(O, AddStmtChoice::AlwaysAdd, /*ExternallyDestructed=*/true); |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 3032 | return Block; |
| 3033 | } else { // co_return |
| 3034 | return VisitChildren(S); |
| 3035 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3036 | } |
| 3037 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 3038 | CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) { |
| 3039 | // SEHExceptStmt are treated like labels, so they are the first statement in a |
| 3040 | // block. |
| 3041 | |
| 3042 | // Save local scope position because in case of exception variable ScopePos |
| 3043 | // won't be restored when traversing AST. |
| 3044 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3045 | |
| 3046 | addStmt(ES->getBlock()); |
| 3047 | CFGBlock *SEHExceptBlock = Block; |
| 3048 | if (!SEHExceptBlock) |
| 3049 | SEHExceptBlock = createBlock(); |
| 3050 | |
| 3051 | appendStmt(SEHExceptBlock, ES); |
| 3052 | |
| 3053 | // Also add the SEHExceptBlock as a label, like with regular labels. |
| 3054 | SEHExceptBlock->setLabel(ES); |
| 3055 | |
| 3056 | // Bail out if the CFG is bad. |
| 3057 | if (badCFG) |
| 3058 | return nullptr; |
| 3059 | |
| 3060 | // We set Block to NULL to allow lazy creation of a new block (if necessary). |
| 3061 | Block = nullptr; |
| 3062 | |
| 3063 | return SEHExceptBlock; |
| 3064 | } |
| 3065 | |
| 3066 | CFGBlock *CFGBuilder::VisitSEHFinallyStmt(SEHFinallyStmt *FS) { |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 3067 | return VisitCompoundStmt(FS->getBlock(), /*ExternallyDestructed=*/false); |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 3068 | } |
| 3069 | |
| 3070 | CFGBlock *CFGBuilder::VisitSEHLeaveStmt(SEHLeaveStmt *LS) { |
| 3071 | // "__leave" is a control-flow statement. Thus we stop processing the current |
| 3072 | // block. |
| 3073 | if (badCFG) |
| 3074 | return nullptr; |
| 3075 | |
| 3076 | // Now create a new block that ends with the __leave statement. |
| 3077 | Block = createBlock(false); |
| 3078 | Block->setTerminator(LS); |
| 3079 | |
| 3080 | // If there is no target for the __leave, then we are looking at an incomplete |
| 3081 | // AST. This means that the CFG cannot be constructed. |
| 3082 | if (SEHLeaveJumpTarget.block) { |
| 3083 | addAutomaticObjHandling(ScopePos, SEHLeaveJumpTarget.scopePosition, LS); |
| 3084 | addSuccessor(Block, SEHLeaveJumpTarget.block); |
| 3085 | } else |
| 3086 | badCFG = true; |
| 3087 | |
| 3088 | return Block; |
| 3089 | } |
| 3090 | |
| 3091 | CFGBlock *CFGBuilder::VisitSEHTryStmt(SEHTryStmt *Terminator) { |
| 3092 | // "__try"/"__except"/"__finally" is a control-flow statement. Thus we stop |
| 3093 | // processing the current block. |
| 3094 | CFGBlock *SEHTrySuccessor = nullptr; |
| 3095 | |
| 3096 | if (Block) { |
| 3097 | if (badCFG) |
| 3098 | return nullptr; |
| 3099 | SEHTrySuccessor = Block; |
| 3100 | } else SEHTrySuccessor = Succ; |
| 3101 | |
| 3102 | // FIXME: Implement __finally support. |
| 3103 | if (Terminator->getFinallyHandler()) |
| 3104 | return NYS(); |
| 3105 | |
| 3106 | CFGBlock *PrevSEHTryTerminatedBlock = TryTerminatedBlock; |
| 3107 | |
| 3108 | // Create a new block that will contain the __try statement. |
| 3109 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
| 3110 | |
| 3111 | // Add the terminator in the __try block. |
| 3112 | NewTryTerminatedBlock->setTerminator(Terminator); |
| 3113 | |
| 3114 | if (SEHExceptStmt *Except = Terminator->getExceptHandler()) { |
| 3115 | // The code after the try is the implicit successor if there's an __except. |
| 3116 | Succ = SEHTrySuccessor; |
| 3117 | Block = nullptr; |
| 3118 | CFGBlock *ExceptBlock = VisitSEHExceptStmt(Except); |
| 3119 | if (!ExceptBlock) |
| 3120 | return nullptr; |
| 3121 | // Add this block to the list of successors for the block with the try |
| 3122 | // statement. |
| 3123 | addSuccessor(NewTryTerminatedBlock, ExceptBlock); |
| 3124 | } |
| 3125 | if (PrevSEHTryTerminatedBlock) |
| 3126 | addSuccessor(NewTryTerminatedBlock, PrevSEHTryTerminatedBlock); |
| 3127 | else |
| 3128 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
| 3129 | |
| 3130 | // The code after the try is the implicit successor. |
| 3131 | Succ = SEHTrySuccessor; |
| 3132 | |
| 3133 | // Save the current "__try" context. |
| 3134 | SaveAndRestore<CFGBlock *> save_try(TryTerminatedBlock, |
| 3135 | NewTryTerminatedBlock); |
| 3136 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
| 3137 | |
| 3138 | // Save the current value for the __leave target. |
| 3139 | // All __leaves should go to the code following the __try |
| 3140 | // (FIXME: or if the __try has a __finally, to the __finally.) |
| 3141 | SaveAndRestore<JumpTarget> save_break(SEHLeaveJumpTarget); |
| 3142 | SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos); |
| 3143 | |
| 3144 | assert(Terminator->getTryBlock() && "__try must contain a non-NULL body"); |
| 3145 | Block = nullptr; |
| 3146 | return addStmt(Terminator->getTryBlock()); |
| 3147 | } |
| 3148 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3149 | CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3150 | // Get the block of the labeled statement. Add it to our map. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3151 | addStmt(L->getSubStmt()); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 3152 | CFGBlock *LabelBlock = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3153 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3154 | if (!LabelBlock) // This can happen when the body is empty, i.e. |
| 3155 | LabelBlock = createBlock(); // scopes that only contains NullStmts. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3156 | |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 3157 | assert(LabelMap.find(L->getDecl()) == LabelMap.end() && |
| 3158 | "label already in map"); |
| 3159 | LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3160 | |
| 3161 | // Labels partition blocks, so this is the end of the basic block we were |
| 3162 | // processing (L is the block's label). Because this is label (and we have |
| 3163 | // already processed the substatement) there is no extra control-flow to worry |
| 3164 | // about. |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 3165 | LabelBlock->setLabel(L); |
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; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3168 | |
| 3169 | // 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] | 3170 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3171 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3172 | // This block is now the implicit successor of other blocks. |
| 3173 | Succ = LabelBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3174 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3175 | return LabelBlock; |
| 3176 | } |
| 3177 | |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 3178 | CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) { |
| 3179 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 3180 | for (const BlockDecl::Capture &CI : E->getBlockDecl()->captures()) { |
| 3181 | if (Expr *CopyExpr = CI.getCopyExpr()) { |
| 3182 | CFGBlock *Tmp = Visit(CopyExpr); |
| 3183 | if (Tmp) |
| 3184 | LastBlock = Tmp; |
| 3185 | } |
| 3186 | } |
| 3187 | return LastBlock; |
| 3188 | } |
| 3189 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 3190 | CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) { |
| 3191 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 3192 | for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(), |
| 3193 | et = E->capture_init_end(); it != et; ++it) { |
| 3194 | if (Expr *Init = *it) { |
| 3195 | CFGBlock *Tmp = Visit(Init); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3196 | if (Tmp) |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 3197 | LastBlock = Tmp; |
| 3198 | } |
| 3199 | } |
| 3200 | return LastBlock; |
| 3201 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3202 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3203 | CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3204 | // Goto is a control-flow statement. Thus we stop processing the current |
| 3205 | // block and create a new one. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3206 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3207 | Block = createBlock(false); |
| 3208 | Block->setTerminator(G); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3209 | |
| 3210 | // 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] | 3211 | LabelMapTy::iterator I = LabelMap.find(G->getLabel()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3212 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3213 | if (I == LabelMap.end()) |
| 3214 | // We will need to backpatch this block later. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3215 | BackpatchBlocks.push_back(JumpSource(Block, ScopePos)); |
| 3216 | else { |
| 3217 | JumpTarget JT = I->second; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3218 | addAutomaticObjHandling(ScopePos, JT.scopePosition, G); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3219 | addSuccessor(Block, JT.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3220 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3221 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3222 | return Block; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3223 | } |
| 3224 | |
Jennifer Yu | b8fee67 | 2019-06-03 15:57:25 +0000 | [diff] [blame] | 3225 | CFGBlock *CFGBuilder::VisitGCCAsmStmt(GCCAsmStmt *G, AddStmtChoice asc) { |
| 3226 | // Goto is a control-flow statement. Thus we stop processing the current |
| 3227 | // block and create a new one. |
| 3228 | |
| 3229 | if (!G->isAsmGoto()) |
| 3230 | return VisitStmt(G, asc); |
| 3231 | |
| 3232 | if (Block) { |
| 3233 | Succ = Block; |
| 3234 | if (badCFG) |
| 3235 | return nullptr; |
| 3236 | } |
| 3237 | Block = createBlock(); |
| 3238 | Block->setTerminator(G); |
| 3239 | // We will backpatch this block later for all the labels. |
| 3240 | BackpatchBlocks.push_back(JumpSource(Block, ScopePos)); |
| 3241 | // Save "Succ" in BackpatchBlocks. In the backpatch processing, "Succ" is |
| 3242 | // used to avoid adding "Succ" again. |
| 3243 | BackpatchBlocks.push_back(JumpSource(Succ, ScopePos)); |
| 3244 | return Block; |
| 3245 | } |
| 3246 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3247 | CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3248 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3249 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3250 | // Save local scope position because in case of condition variable ScopePos |
| 3251 | // won't be restored when traversing AST. |
| 3252 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3253 | |
| 3254 | // Create local scope for init statement and possible condition variable. |
| 3255 | // Add destructor for init statement and condition variable. |
| 3256 | // Store scope position for continue statement. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3257 | if (Stmt *Init = F->getInit()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3258 | addLocalScopeForStmt(Init); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3259 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
| 3260 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3261 | if (VarDecl *VD = F->getConditionVariable()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3262 | addLocalScopeForVarDecl(VD); |
| 3263 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 3264 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3265 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), F); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3266 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3267 | addLoopExit(F); |
| 3268 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 3269 | // "for" is a control-flow statement. Thus we stop processing the current |
| 3270 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3271 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3272 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3273 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3274 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3275 | } else |
| 3276 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3277 | |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 3278 | // Save the current value for the break targets. |
| 3279 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3280 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3281 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 3282 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3283 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3284 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3285 | // Now create the loop body. |
| 3286 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3287 | assert(F->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3288 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3289 | // Save the current values for Block, Succ, continue and break targets. |
| 3290 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3291 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3292 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3293 | // Create an empty block to represent the transition block for looping back |
| 3294 | // to the head of the loop. If we have increment code, it will |
| 3295 | // go in this block as well. |
| 3296 | Block = Succ = TransitionBlock = createBlock(false); |
| 3297 | TransitionBlock->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3298 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3299 | if (Stmt *I = F->getInc()) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3300 | // Generate increment code in its own basic block. This is the target of |
| 3301 | // continue statements. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3302 | Succ = addStmt(I); |
Ted Kremenek | b0746ca | 2008-09-04 21:48:47 +0000 | [diff] [blame] | 3303 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3304 | |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3305 | // Finish up the increment (or empty) block if it hasn't been already. |
| 3306 | if (Block) { |
| 3307 | assert(Block == Succ); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3308 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3309 | return nullptr; |
| 3310 | Block = nullptr; |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3311 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3312 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3313 | // The starting block for the loop increment is the block that should |
| 3314 | // represent the 'loop target' for looping back to the start of the loop. |
| 3315 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 3316 | ContinueJumpTarget.block->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3317 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3318 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3319 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, F); |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3320 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3321 | // If body is not a compound statement create implicit scope |
| 3322 | // and add destructors. |
| 3323 | if (!isa<CompoundStmt>(F->getBody())) |
| 3324 | addLocalScopeAndDtors(F->getBody()); |
| 3325 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3326 | // Now populate the body block, and in the process create new blocks as we |
| 3327 | // walk the body of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3328 | BodyBlock = addStmt(F->getBody()); |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3329 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3330 | if (!BodyBlock) { |
| 3331 | // In the case of "for (...;...;...);" we can have a null BodyBlock. |
| 3332 | // Use the continue jump target as the proxy for the body. |
| 3333 | BodyBlock = ContinueJumpTarget.block; |
| 3334 | } |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3335 | else if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3336 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3337 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3338 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3339 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3340 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3341 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3342 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3343 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3344 | do { |
| 3345 | Expr *C = F->getCond(); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3346 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3347 | |
| 3348 | // Specially handle logical operators, which have a slightly |
| 3349 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3350 | if (BinaryOperator *Cond = |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3351 | dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : nullptr)) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3352 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 3353 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3354 | VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor); |
| 3355 | break; |
| 3356 | } |
| 3357 | |
| 3358 | // The default case when not handling logical operators. |
| 3359 | EntryConditionBlock = ExitConditionBlock = createBlock(false); |
| 3360 | ExitConditionBlock->setTerminator(F); |
| 3361 | |
| 3362 | // See if this is a known constant. |
| 3363 | TryResult KnownVal(true); |
| 3364 | |
| 3365 | if (C) { |
| 3366 | // Now add the actual condition to the condition block. |
| 3367 | // Because the condition itself may contain control-flow, new blocks may |
| 3368 | // be created. Thus we update "Succ" after adding the condition. |
| 3369 | Block = ExitConditionBlock; |
| 3370 | EntryConditionBlock = addStmt(C); |
| 3371 | |
| 3372 | // If this block contains a condition variable, add both the condition |
| 3373 | // variable and initializer to the CFG. |
| 3374 | if (VarDecl *VD = F->getConditionVariable()) { |
| 3375 | if (Expr *Init = VD->getInit()) { |
| 3376 | autoCreateBlock(); |
Artem Dergachev | ab9b78b | 2018-04-19 23:30:15 +0000 | [diff] [blame] | 3377 | const DeclStmt *DS = F->getConditionVariableDeclStmt(); |
| 3378 | assert(DS->isSingleDecl()); |
| 3379 | findConstructionContexts( |
Artem Dergachev | 1f8cb3a | 2018-07-31 21:12:42 +0000 | [diff] [blame] | 3380 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS), |
Artem Dergachev | ab9b78b | 2018-04-19 23:30:15 +0000 | [diff] [blame] | 3381 | Init); |
| 3382 | appendStmt(Block, DS); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3383 | EntryConditionBlock = addStmt(Init); |
| 3384 | assert(Block == EntryConditionBlock); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3385 | maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3386 | } |
| 3387 | } |
| 3388 | |
| 3389 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3390 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3391 | |
| 3392 | KnownVal = tryEvaluateBool(C); |
| 3393 | } |
| 3394 | |
| 3395 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3396 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3397 | // Link up the condition block with the code that follows the loop. (the |
| 3398 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3399 | addSuccessor(ExitConditionBlock, |
| 3400 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3401 | } while (false); |
| 3402 | |
| 3403 | // Link up the loop-back block to the entry condition block. |
| 3404 | addSuccessor(TransitionBlock, EntryConditionBlock); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3405 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3406 | // The condition block is the implicit successor for any code above the loop. |
| 3407 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3408 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3409 | // If the loop contains initialization, create a new block for those |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3410 | // statements. This block can also contain statements that precede the loop. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3411 | if (Stmt *I = F->getInit()) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3412 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3413 | ScopePos = LoopBeginScopePos; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3414 | Block = createBlock(); |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3415 | return addStmt(I); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3416 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3417 | |
| 3418 | // There is no loop initialization. We are thus basically a while loop. |
| 3419 | // NULL out Block to force lazy block construction. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3420 | Block = nullptr; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3421 | Succ = EntryConditionBlock; |
| 3422 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3423 | } |
| 3424 | |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 3425 | CFGBlock * |
| 3426 | CFGBuilder::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE, |
| 3427 | AddStmtChoice asc) { |
| 3428 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 3429 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), MTE), |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 3430 | MTE->getTemporary()); |
| 3431 | |
| 3432 | return VisitStmt(MTE, asc); |
| 3433 | } |
| 3434 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3435 | CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3436 | if (asc.alwaysAdd(*this, M)) { |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3437 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3438 | appendStmt(Block, M); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3439 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3440 | return Visit(M->getBase()); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3441 | } |
| 3442 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3443 | CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3444 | // Objective-C fast enumeration 'for' statements: |
| 3445 | // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC |
| 3446 | // |
| 3447 | // for ( Type newVariable in collection_expression ) { statements } |
| 3448 | // |
| 3449 | // becomes: |
| 3450 | // |
| 3451 | // prologue: |
| 3452 | // 1. collection_expression |
| 3453 | // T. jump to loop_entry |
| 3454 | // loop_entry: |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3455 | // 1. side-effects of element expression |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3456 | // 1. ObjCForCollectionStmt [performs binding to newVariable] |
| 3457 | // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil] |
| 3458 | // TB: |
| 3459 | // statements |
| 3460 | // T. jump to loop_entry |
| 3461 | // FB: |
| 3462 | // what comes after |
| 3463 | // |
| 3464 | // and |
| 3465 | // |
| 3466 | // Type existingItem; |
| 3467 | // for ( existingItem in expression ) { statements } |
| 3468 | // |
| 3469 | // becomes: |
| 3470 | // |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3471 | // the same with newVariable replaced with existingItem; the binding works |
| 3472 | // the same except that for one ObjCForCollectionStmt::getElement() returns |
| 3473 | // a DeclStmt and the other returns a DeclRefExpr. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3474 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3475 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3476 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3477 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3478 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3479 | return nullptr; |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3480 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3481 | Block = nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3482 | } else |
| 3483 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3484 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3485 | // Build the condition blocks. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3486 | CFGBlock *ExitConditionBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3487 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3488 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3489 | ExitConditionBlock->setTerminator(S); |
| 3490 | |
| 3491 | // The last statement in the block should be the ObjCForCollectionStmt, which |
| 3492 | // performs the actual binding to 'element' and determines if there are any |
| 3493 | // more items in the collection. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3494 | appendStmt(ExitConditionBlock, S); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3495 | Block = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3496 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3497 | // 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] | 3498 | // 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] | 3499 | // the CFG unless it contains control-flow. |
Ted Kremenek | c14efa7 | 2011-08-17 21:04:19 +0000 | [diff] [blame] | 3500 | CFGBlock *EntryConditionBlock = Visit(S->getElement(), |
| 3501 | AddStmtChoice::NotAlwaysAdd); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3502 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3503 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3504 | return nullptr; |
| 3505 | Block = nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3506 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3507 | |
| 3508 | // The condition block is the implicit successor for the loop body as well as |
| 3509 | // any code above the loop. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3510 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3511 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3512 | // Now create the true branch. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3513 | { |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3514 | // Save the current values for Succ, continue and break targets. |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3515 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3516 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3517 | save_break(BreakJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3518 | |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3519 | // Add an intermediate block between the BodyBlock and the |
| 3520 | // EntryConditionBlock to represent the "loop back" transition, for looping |
| 3521 | // back to the head of the loop. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3522 | CFGBlock *LoopBackBlock = nullptr; |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3523 | Succ = LoopBackBlock = createBlock(); |
| 3524 | LoopBackBlock->setLoopTarget(S); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3525 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3526 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3527 | ContinueJumpTarget = JumpTarget(Succ, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3528 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3529 | CFGBlock *BodyBlock = addStmt(S->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3530 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3531 | if (!BodyBlock) |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3532 | BodyBlock = ContinueJumpTarget.block; // can happen for "for (X in Y) ;" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3533 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3534 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3535 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3536 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3537 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3538 | // This new body block is a successor to our "exit" condition block. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3539 | addSuccessor(ExitConditionBlock, BodyBlock); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3540 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3541 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3542 | // Link up the condition block with the code that follows the loop. |
| 3543 | // (the false branch). |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3544 | addSuccessor(ExitConditionBlock, LoopSuccessor); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3545 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3546 | // Now create a prologue block to contain the collection expression. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3547 | Block = createBlock(); |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3548 | return addStmt(S->getCollection()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3549 | } |
| 3550 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 3551 | CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) { |
| 3552 | // Inline the body. |
| 3553 | return addStmt(S->getSubStmt()); |
| 3554 | // TODO: consider adding cleanups for the end of @autoreleasepool scope. |
| 3555 | } |
| 3556 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3557 | CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) { |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3558 | // FIXME: Add locking 'primitives' to CFG for @synchronized. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3559 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3560 | // Inline the body. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3561 | CFGBlock *SyncBlock = addStmt(S->getSynchBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3562 | |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3563 | // The sync body starts its own basic block. This makes it a little easier |
| 3564 | // for diagnostic clients. |
| 3565 | if (SyncBlock) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3566 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3567 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3568 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3569 | Block = nullptr; |
Ted Kremenek | ecc31c9 | 2010-05-13 16:38:08 +0000 | [diff] [blame] | 3570 | Succ = SyncBlock; |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3571 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3572 | |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3573 | // Add the @synchronized to the CFG. |
| 3574 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3575 | appendStmt(Block, S); |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3576 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3577 | // Inline the sync expression. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3578 | return addStmt(S->getSynchExpr()); |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3579 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3580 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3581 | CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3582 | // FIXME |
Ted Kremenek | 89be652 | 2009-04-07 04:26:02 +0000 | [diff] [blame] | 3583 | return NYS(); |
Ted Kremenek | 89cc8ea | 2009-03-30 22:29:21 +0000 | [diff] [blame] | 3584 | } |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3585 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3586 | CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) { |
| 3587 | autoCreateBlock(); |
| 3588 | |
| 3589 | // Add the PseudoObject as the last thing. |
| 3590 | appendStmt(Block, E); |
| 3591 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3592 | CFGBlock *lastBlock = Block; |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3593 | |
| 3594 | // Before that, evaluate all of the semantics in order. In |
| 3595 | // CFG-land, that means appending them in reverse order. |
| 3596 | for (unsigned i = E->getNumSemanticExprs(); i != 0; ) { |
| 3597 | Expr *Semantic = E->getSemanticExpr(--i); |
| 3598 | |
| 3599 | // If the semantic is an opaque value, we're being asked to bind |
| 3600 | // it to its source expression. |
| 3601 | if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic)) |
| 3602 | Semantic = OVE->getSourceExpr(); |
| 3603 | |
| 3604 | if (CFGBlock *B = Visit(Semantic)) |
| 3605 | lastBlock = B; |
| 3606 | } |
| 3607 | |
| 3608 | return lastBlock; |
| 3609 | } |
| 3610 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3611 | CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3612 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3613 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3614 | // Save local scope position because in case of condition variable ScopePos |
| 3615 | // won't be restored when traversing AST. |
| 3616 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3617 | |
| 3618 | // Create local scope for possible condition variable. |
| 3619 | // Store scope position for continue statement. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3620 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3621 | if (VarDecl *VD = W->getConditionVariable()) { |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3622 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3623 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3624 | } |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3625 | addLoopExit(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3626 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 3627 | // "while" is a control-flow statement. Thus we stop processing the current |
| 3628 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3629 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3630 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3631 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3632 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3633 | Block = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3634 | } else { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3635 | LoopSuccessor = Succ; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3636 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3637 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3638 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3639 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3640 | // Process the loop body. |
| 3641 | { |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3642 | assert(W->getBody()); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3643 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3644 | // Save the current values for Block, Succ, continue and break targets. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3645 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3646 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3647 | save_break(BreakJumpTarget); |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3648 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3649 | // Create an empty block to represent the transition block for looping back |
| 3650 | // to the head of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3651 | Succ = TransitionBlock = createBlock(false); |
| 3652 | TransitionBlock->setLoopTarget(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3653 | ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3654 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3655 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3656 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3657 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3658 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3659 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3660 | |
| 3661 | // If body is not a compound statement create implicit scope |
| 3662 | // and add destructors. |
| 3663 | if (!isa<CompoundStmt>(W->getBody())) |
| 3664 | addLocalScopeAndDtors(W->getBody()); |
| 3665 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3666 | // 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] | 3667 | BodyBlock = addStmt(W->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3668 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3669 | if (!BodyBlock) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3670 | BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;" |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3671 | else if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3672 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3673 | } |
| 3674 | |
| 3675 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3676 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3677 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3678 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3679 | |
| 3680 | do { |
| 3681 | Expr *C = W->getCond(); |
| 3682 | |
| 3683 | // Specially handle logical operators, which have a slightly |
| 3684 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3685 | if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens())) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3686 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 3687 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
| 3688 | VisitLogicalOperator(Cond, W, BodyBlock, LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3689 | break; |
| 3690 | } |
| 3691 | |
| 3692 | // The default case when not handling logical operators. |
Ted Kremenek | 451c4d5 | 2012-10-12 22:56:26 +0000 | [diff] [blame] | 3693 | ExitConditionBlock = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3694 | ExitConditionBlock->setTerminator(W); |
| 3695 | |
| 3696 | // Now add the actual condition to the condition block. |
| 3697 | // Because the condition itself may contain control-flow, new blocks may |
| 3698 | // be created. Thus we update "Succ" after adding the condition. |
| 3699 | Block = ExitConditionBlock; |
| 3700 | Block = EntryConditionBlock = addStmt(C); |
| 3701 | |
| 3702 | // If this block contains a condition variable, add both the condition |
| 3703 | // variable and initializer to the CFG. |
| 3704 | if (VarDecl *VD = W->getConditionVariable()) { |
| 3705 | if (Expr *Init = VD->getInit()) { |
| 3706 | autoCreateBlock(); |
Artem Dergachev | ab9b78b | 2018-04-19 23:30:15 +0000 | [diff] [blame] | 3707 | const DeclStmt *DS = W->getConditionVariableDeclStmt(); |
| 3708 | assert(DS->isSingleDecl()); |
| 3709 | findConstructionContexts( |
| 3710 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), |
| 3711 | const_cast<DeclStmt *>(DS)), |
| 3712 | Init); |
| 3713 | appendStmt(Block, DS); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3714 | EntryConditionBlock = addStmt(Init); |
| 3715 | assert(Block == EntryConditionBlock); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3716 | maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3717 | } |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3718 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3719 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3720 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3721 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3722 | |
| 3723 | // See if this is a known constant. |
| 3724 | const TryResult& KnownVal = tryEvaluateBool(C); |
| 3725 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3726 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3727 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3728 | // Link up the condition block with the code that follows the loop. (the |
| 3729 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3730 | addSuccessor(ExitConditionBlock, |
| 3731 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3732 | } while(false); |
| 3733 | |
| 3734 | // Link up the loop-back block to the entry condition block. |
| 3735 | addSuccessor(TransitionBlock, EntryConditionBlock); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3736 | |
| 3737 | // There can be no more statements in the condition block since we loop back |
| 3738 | // 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] | 3739 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3740 | |
Ted Kremenek | 1ce53c4 | 2009-12-24 01:34:10 +0000 | [diff] [blame] | 3741 | // Return the condition block, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3742 | Succ = EntryConditionBlock; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3743 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3744 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3745 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3746 | CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3747 | // FIXME: For now we pretend that @catch and the code it contains does not |
| 3748 | // exit. |
| 3749 | return Block; |
| 3750 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3751 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3752 | CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3753 | // FIXME: This isn't complete. We basically treat @throw like a return |
| 3754 | // statement. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3755 | |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3756 | // 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] | 3757 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3758 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3759 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3760 | // Create the new block. |
| 3761 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3762 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3763 | // The Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3764 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3765 | |
| 3766 | // Add the statement to the block. This may create new blocks if S contains |
| 3767 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3768 | return VisitStmt(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3769 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3770 | |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 3771 | CFGBlock *CFGBuilder::VisitObjCMessageExpr(ObjCMessageExpr *ME, |
| 3772 | AddStmtChoice asc) { |
| 3773 | findConstructionContextsForArguments(ME); |
| 3774 | |
| 3775 | autoCreateBlock(); |
Artem Dergachev | e1f3062 | 2018-07-31 19:46:14 +0000 | [diff] [blame] | 3776 | appendObjCMessage(Block, ME); |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 3777 | |
| 3778 | return VisitChildren(ME); |
| 3779 | } |
| 3780 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3781 | CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3782 | // 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] | 3783 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3784 | return nullptr; |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3785 | |
| 3786 | // Create the new block. |
| 3787 | Block = createBlock(false); |
| 3788 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3789 | if (TryTerminatedBlock) |
| 3790 | // The current try statement is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3791 | addSuccessor(Block, TryTerminatedBlock); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3792 | else |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3793 | // otherwise the Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3794 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3795 | |
| 3796 | // Add the statement to the block. This may create new blocks if S contains |
| 3797 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3798 | return VisitStmt(T, AddStmtChoice::AlwaysAdd); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3799 | } |
| 3800 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3801 | CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3802 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3803 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3804 | addLoopExit(D); |
| 3805 | |
Mike Stump | 8d50b6a | 2009-07-21 01:27:50 +0000 | [diff] [blame] | 3806 | // "do...while" is a control-flow statement. Thus we stop processing the |
| 3807 | // current block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3808 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3809 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3810 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3811 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3812 | } else |
| 3813 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3814 | |
| 3815 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3816 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3817 | // evaluate the condition. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3818 | CFGBlock *ExitConditionBlock = createBlock(false); |
| 3819 | CFGBlock *EntryConditionBlock = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3820 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3821 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3822 | ExitConditionBlock->setTerminator(D); |
| 3823 | |
| 3824 | // Now add the actual condition to the condition block. Because the condition |
| 3825 | // itself may contain control-flow, new blocks may be created. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3826 | if (Stmt *C = D->getCond()) { |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3827 | Block = ExitConditionBlock; |
| 3828 | EntryConditionBlock = addStmt(C); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3829 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3830 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3831 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3832 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3833 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3834 | |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3835 | // The condition block is the implicit successor for the loop body. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3836 | Succ = EntryConditionBlock; |
| 3837 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3838 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3839 | const TryResult &KnownVal = tryEvaluateBool(D->getCond()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3840 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3841 | // Process the loop body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3842 | CFGBlock *BodyBlock = nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3843 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3844 | assert(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3845 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3846 | // Save the current values for Block, Succ, and continue and break targets |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3847 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3848 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
| 3849 | save_break(BreakJumpTarget); |
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 | // All continues within this loop should go to the condition block |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3852 | ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3853 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3854 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3855 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3856 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3857 | // NULL out Block to force lazy instantiation of blocks for the body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3858 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3859 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3860 | // If body is not a compound statement create implicit scope |
| 3861 | // and add destructors. |
| 3862 | if (!isa<CompoundStmt>(D->getBody())) |
| 3863 | addLocalScopeAndDtors(D->getBody()); |
| 3864 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3865 | // 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] | 3866 | BodyBlock = addStmt(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3867 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3868 | if (!BodyBlock) |
Ted Kremenek | 39321aa | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 3869 | BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3870 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3871 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3872 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3873 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3874 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3875 | // Add an intermediate block between the BodyBlock and the |
| 3876 | // ExitConditionBlock to represent the "loop back" transition. Create an |
| 3877 | // empty block to represent the transition block for looping back to the |
| 3878 | // head of the loop. |
| 3879 | // FIXME: Can we do this more efficiently without adding another block? |
| 3880 | Block = nullptr; |
| 3881 | Succ = BodyBlock; |
| 3882 | CFGBlock *LoopBackBlock = createBlock(); |
| 3883 | LoopBackBlock->setLoopTarget(D); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3884 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3885 | if (!KnownVal.isFalse()) |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3886 | // Add the loop body entry as a successor to the condition. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3887 | addSuccessor(ExitConditionBlock, LoopBackBlock); |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3888 | else |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3889 | addSuccessor(ExitConditionBlock, nullptr); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3890 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3891 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3892 | // Link up the condition block with the code that follows the loop. |
| 3893 | // (the false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3894 | addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3895 | |
| 3896 | // There can be no more statements in the body block(s) since we loop back to |
| 3897 | // the body. NULL out Block to force lazy creation of another block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3898 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3899 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3900 | // Return the loop body, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3901 | Succ = BodyBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3902 | return BodyBlock; |
| 3903 | } |
| 3904 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3905 | CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3906 | // "continue" is a control-flow statement. Thus we stop processing the |
| 3907 | // current block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3908 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3909 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3910 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3911 | // Now create a new block that ends with the continue statement. |
| 3912 | Block = createBlock(false); |
| 3913 | Block->setTerminator(C); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3914 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3915 | // 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] | 3916 | // incomplete AST. This means the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3917 | if (ContinueJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3918 | addAutomaticObjHandling(ScopePos, ContinueJumpTarget.scopePosition, C); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3919 | addSuccessor(Block, ContinueJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3920 | } else |
Ted Kremenek | 882cf06 | 2009-04-07 18:53:24 +0000 | [diff] [blame] | 3921 | badCFG = true; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3922 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3923 | return Block; |
| 3924 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3925 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3926 | CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 3927 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3928 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3929 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3930 | appendStmt(Block, E); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3931 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3932 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3933 | // VLA types have expressions that must be evaluated. |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3934 | CFGBlock *lastBlock = Block; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3935 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3936 | if (E->isArgumentType()) { |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 3937 | for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3938 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3939 | lastBlock = addStmt(VA->getSizeExpr()); |
Ted Kremenek | 84a1ca5 | 2011-08-06 00:30:00 +0000 | [diff] [blame] | 3940 | } |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3941 | return lastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3942 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3943 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3944 | /// VisitStmtExpr - Utility method to handle (nested) statement |
| 3945 | /// expressions (a GCC extension). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3946 | CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3947 | if (asc.alwaysAdd(*this, SE)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3948 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3949 | appendStmt(Block, SE); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3950 | } |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 3951 | return VisitCompoundStmt(SE->getSubStmt(), /*ExternallyDestructed=*/true); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3952 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3953 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3954 | CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3955 | // "switch" is a control-flow statement. Thus we stop processing the current |
| 3956 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3957 | CFGBlock *SwitchSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3958 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3959 | // Save local scope position because in case of condition variable ScopePos |
| 3960 | // won't be restored when traversing AST. |
| 3961 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3962 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3963 | // Create local scope for C++17 switch init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3964 | if (Stmt *Init = Terminator->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3965 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3966 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3967 | // Create local scope for possible condition variable. |
| 3968 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3969 | if (VarDecl *VD = Terminator->getConditionVariable()) |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3970 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3971 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3972 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), Terminator); |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3973 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3974 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3975 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3976 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3977 | SwitchSuccessor = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3978 | } else SwitchSuccessor = Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3979 | |
| 3980 | // Save the current "switch" context. |
| 3981 | SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock), |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3982 | save_default(DefaultCaseBlock); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3983 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3984 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3985 | // Set the "default" case to be the block after the switch statement. If the |
| 3986 | // switch statement contains a "default:", this value will be overwritten with |
| 3987 | // the block for that code. |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3988 | DefaultCaseBlock = SwitchSuccessor; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3989 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3990 | // Create a new block that will contain the switch statement. |
| 3991 | SwitchTerminatedBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3992 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3993 | // Now process the switch body. The code after the switch is the implicit |
| 3994 | // successor. |
| 3995 | Succ = SwitchSuccessor; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3996 | BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3997 | |
| 3998 | // When visiting the body, the case statements should automatically get linked |
| 3999 | // up to the switch. We also don't keep a pointer to the body, since all |
| 4000 | // control-flow from the switch goes to case/default statements. |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 4001 | assert(Terminator->getBody() && "switch must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4002 | Block = nullptr; |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 4003 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4004 | // For pruning unreachable case statements, save the current state |
| 4005 | // for tracking the condition value. |
| 4006 | SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered, |
| 4007 | false); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 4008 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4009 | // Determine if the switch condition can be explicitly evaluated. |
| 4010 | assert(Terminator->getCond() && "switch condition must be non-NULL"); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 4011 | Expr::EvalResult result; |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 4012 | bool b = tryEvaluate(Terminator->getCond(), result); |
| 4013 | SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond, |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4014 | b ? &result : nullptr); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 4015 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 4016 | // If body is not a compound statement create implicit scope |
| 4017 | // and add destructors. |
| 4018 | if (!isa<CompoundStmt>(Terminator->getBody())) |
| 4019 | addLocalScopeAndDtors(Terminator->getBody()); |
| 4020 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4021 | addStmt(Terminator->getBody()); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 4022 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4023 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4024 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 4025 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 4026 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4027 | // 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] | 4028 | // following the switch body. Moreover, take into account if all the |
| 4029 | // 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] | 4030 | // |
| 4031 | // Note: We add a successor to a switch that is considered covered yet has no |
| 4032 | // case statements if the enumeration has no enumerators. |
| 4033 | bool SwitchAlwaysHasSuccessor = false; |
| 4034 | SwitchAlwaysHasSuccessor |= switchExclusivelyCovered; |
| 4035 | SwitchAlwaysHasSuccessor |= Terminator->isAllEnumCasesCovered() && |
| 4036 | Terminator->getSwitchCaseList(); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 4037 | addSuccessor(SwitchTerminatedBlock, DefaultCaseBlock, |
| 4038 | !SwitchAlwaysHasSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4039 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 4040 | // Add the terminator and condition in the switch block. |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4041 | SwitchTerminatedBlock->setTerminator(Terminator); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4042 | Block = SwitchTerminatedBlock; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4043 | CFGBlock *LastBlock = addStmt(Terminator->getCond()); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 4044 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 4045 | // If the SwitchStmt contains a condition variable, add both the |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 4046 | // SwitchStmt and the condition variable initialization to the CFG. |
| 4047 | if (VarDecl *VD = Terminator->getConditionVariable()) { |
| 4048 | if (Expr *Init = VD->getInit()) { |
| 4049 | autoCreateBlock(); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 4050 | appendStmt(Block, Terminator->getConditionVariableDeclStmt()); |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4051 | LastBlock = addStmt(Init); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 4052 | maybeAddScopeBeginForVarDecl(LastBlock, VD, Init); |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 4053 | } |
| 4054 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 4055 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 4056 | // Finally, if the SwitchStmt contains a C++17 init-stmt, add it to the CFG. |
| 4057 | if (Stmt *Init = Terminator->getInit()) { |
| 4058 | autoCreateBlock(); |
| 4059 | LastBlock = addStmt(Init); |
| 4060 | } |
| 4061 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4062 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4063 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 4064 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4065 | static bool shouldAddCase(bool &switchExclusivelyCovered, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 4066 | const Expr::EvalResult *switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4067 | const CaseStmt *CS, |
| 4068 | ASTContext &Ctx) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 4069 | if (!switchCond) |
| 4070 | return true; |
| 4071 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4072 | bool addCase = false; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 4073 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4074 | if (!switchExclusivelyCovered) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 4075 | if (switchCond->Val.isInt()) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4076 | // Evaluate the LHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 4077 | const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx); |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 4078 | const llvm::APSInt &condInt = switchCond->Val.getInt(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 4079 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4080 | if (condInt == lhsInt) { |
| 4081 | addCase = true; |
| 4082 | switchExclusivelyCovered = true; |
| 4083 | } |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 4084 | else if (condInt > lhsInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4085 | if (const Expr *RHS = CS->getRHS()) { |
| 4086 | // Evaluate the RHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 4087 | const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx); |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 4088 | if (V2 >= condInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4089 | addCase = true; |
| 4090 | switchExclusivelyCovered = true; |
| 4091 | } |
| 4092 | } |
| 4093 | } |
| 4094 | } |
| 4095 | else |
| 4096 | addCase = true; |
| 4097 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 4098 | return addCase; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4099 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4100 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4101 | CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4102 | // CaseStmts are essentially labels, so they are the first statement in a |
| 4103 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4104 | CFGBlock *TopBlock = nullptr, *LastBlock = nullptr; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 4105 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4106 | if (Stmt *Sub = CS->getSubStmt()) { |
| 4107 | // For deeply nested chains of CaseStmts, instead of doing a recursion |
| 4108 | // (which can blow out the stack), manually unroll and create blocks |
| 4109 | // along the way. |
| 4110 | while (isa<CaseStmt>(Sub)) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4111 | CFGBlock *currentBlock = createBlock(false); |
| 4112 | currentBlock->setLabel(CS); |
Ted Kremenek | 55e91e8 | 2007-08-30 18:48:11 +0000 | [diff] [blame] | 4113 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4114 | if (TopBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4115 | addSuccessor(LastBlock, currentBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4116 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4117 | TopBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4118 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4119 | addSuccessor(SwitchTerminatedBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 4120 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4121 | CS, *Context) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4122 | ? currentBlock : nullptr); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4123 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 4124 | LastBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4125 | CS = cast<CaseStmt>(Sub); |
| 4126 | Sub = CS->getSubStmt(); |
| 4127 | } |
| 4128 | |
| 4129 | addStmt(Sub); |
| 4130 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4131 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4132 | CFGBlock *CaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4133 | if (!CaseBlock) |
| 4134 | CaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4135 | |
| 4136 | // Cases statements partition blocks, so this is the top of the basic block we |
| 4137 | // were processing (the "case XXX:" is the label). |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4138 | CaseBlock->setLabel(CS); |
| 4139 | |
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 | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4142 | |
| 4143 | // Add this block to the list of successors for the block with the switch |
| 4144 | // statement. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4145 | assert(SwitchTerminatedBlock); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 4146 | addSuccessor(SwitchTerminatedBlock, CaseBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 4147 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 4148 | CS, *Context)); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4149 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4150 | // 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] | 4151 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4152 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4153 | if (TopBlock) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4154 | addSuccessor(LastBlock, CaseBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4155 | Succ = TopBlock; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4156 | } else { |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4157 | // This block is now the implicit successor of other blocks. |
| 4158 | Succ = CaseBlock; |
| 4159 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4160 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 4161 | return Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4162 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4163 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4164 | CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4165 | if (Terminator->getSubStmt()) |
| 4166 | addStmt(Terminator->getSubStmt()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4167 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 4168 | DefaultCaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4169 | |
| 4170 | if (!DefaultCaseBlock) |
| 4171 | DefaultCaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4172 | |
| 4173 | // Default statements partition blocks, so this is the top of the basic block |
| 4174 | // we were processing (the "default:" is the label). |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 4175 | DefaultCaseBlock->setLabel(Terminator); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4176 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4177 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4178 | return nullptr; |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 4179 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4180 | // Unlike case statements, we don't add the default block to the successors |
| 4181 | // for the switch statement immediately. This is done when we finish |
| 4182 | // processing the switch statement. This allows for the default case |
| 4183 | // (including a fall-through to the code after the switch statement) to always |
| 4184 | // be the last successor of a switch-terminated block. |
| 4185 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 4186 | // 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] | 4187 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4188 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 4189 | // This block is now the implicit successor of other blocks. |
| 4190 | Succ = DefaultCaseBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4191 | |
| 4192 | return DefaultCaseBlock; |
Ted Kremenek | 9682be1 | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 4193 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4194 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4195 | CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) { |
| 4196 | // "try"/"catch" is a control-flow statement. Thus we stop processing the |
| 4197 | // current block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4198 | CFGBlock *TrySuccessor = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4199 | |
| 4200 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4201 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4202 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4203 | TrySuccessor = Block; |
| 4204 | } else TrySuccessor = Succ; |
| 4205 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4206 | CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4207 | |
| 4208 | // Create a new block that will contain the try statement. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4209 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4210 | // Add the terminator in the try block. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4211 | NewTryTerminatedBlock->setTerminator(Terminator); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4212 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4213 | bool HasCatchAll = false; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4214 | for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) { |
| 4215 | // The code after the try is the implicit successor. |
| 4216 | Succ = TrySuccessor; |
| 4217 | CXXCatchStmt *CS = Terminator->getHandler(h); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4218 | if (CS->getExceptionDecl() == nullptr) { |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4219 | HasCatchAll = true; |
| 4220 | } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4221 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4222 | CFGBlock *CatchBlock = VisitCXXCatchStmt(CS); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4223 | if (!CatchBlock) |
| 4224 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4225 | // Add this block to the list of successors for the block with the try |
| 4226 | // statement. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4227 | addSuccessor(NewTryTerminatedBlock, CatchBlock); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4228 | } |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4229 | if (!HasCatchAll) { |
| 4230 | if (PrevTryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4231 | addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4232 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4233 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4234 | } |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4235 | |
| 4236 | // The code after the try is the implicit successor. |
| 4237 | Succ = TrySuccessor; |
| 4238 | |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4239 | // Save the current "try" context. |
Ted Kremenek | 6b9964d | 2011-08-23 23:05:07 +0000 | [diff] [blame] | 4240 | SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock); |
| 4241 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4242 | |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 4243 | assert(Terminator->getTryBlock() && "try must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4244 | Block = nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4245 | return addStmt(Terminator->getTryBlock()); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4246 | } |
| 4247 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4248 | CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4249 | // CXXCatchStmt are treated like labels, so they are the first statement in a |
| 4250 | // block. |
| 4251 | |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 4252 | // Save local scope position because in case of exception variable ScopePos |
| 4253 | // won't be restored when traversing AST. |
| 4254 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 4255 | |
| 4256 | // Create local scope for possible exception variable. |
| 4257 | // Store scope position. Add implicit destructor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4258 | if (VarDecl *VD = CS->getExceptionDecl()) { |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 4259 | LocalScope::const_iterator BeginScopePos = ScopePos; |
| 4260 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4261 | addAutomaticObjHandling(ScopePos, BeginScopePos, CS); |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 4262 | } |
| 4263 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4264 | if (CS->getHandlerBlock()) |
| 4265 | addStmt(CS->getHandlerBlock()); |
| 4266 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4267 | CFGBlock *CatchBlock = Block; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4268 | if (!CatchBlock) |
| 4269 | CatchBlock = createBlock(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 4270 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4271 | // CXXCatchStmt is more than just a label. They have semantic meaning |
| 4272 | // as well, as they implicitly "initialize" the catch variable. Add |
| 4273 | // it to the CFG as a CFGElement so that the control-flow of these |
| 4274 | // semantics gets captured. |
| 4275 | appendStmt(CatchBlock, CS); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4276 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4277 | // Also add the CXXCatchStmt as a label, to mirror handling of regular |
| 4278 | // labels. |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4279 | CatchBlock->setLabel(CS); |
| 4280 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4281 | // Bail out if the CFG is bad. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4282 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4283 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4284 | |
| 4285 | // 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] | 4286 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4287 | |
| 4288 | return CatchBlock; |
| 4289 | } |
| 4290 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4291 | CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) { |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4292 | // C++0x for-range statements are specified as [stmt.ranged]: |
| 4293 | // |
| 4294 | // { |
| 4295 | // auto && __range = range-init; |
| 4296 | // for ( auto __begin = begin-expr, |
| 4297 | // __end = end-expr; |
| 4298 | // __begin != __end; |
| 4299 | // ++__begin ) { |
| 4300 | // for-range-declaration = *__begin; |
| 4301 | // statement |
| 4302 | // } |
| 4303 | // } |
| 4304 | |
| 4305 | // Save local scope position before the addition of the implicit variables. |
| 4306 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 4307 | |
| 4308 | // Create local scopes and destructors for range, begin and end variables. |
| 4309 | if (Stmt *Range = S->getRangeStmt()) |
| 4310 | addLocalScopeForStmt(Range); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 4311 | if (Stmt *Begin = S->getBeginStmt()) |
| 4312 | addLocalScopeForStmt(Begin); |
| 4313 | if (Stmt *End = S->getEndStmt()) |
| 4314 | addLocalScopeForStmt(End); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4315 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), S); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4316 | |
| 4317 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 4318 | |
| 4319 | // "for" is a control-flow statement. Thus we stop processing the current |
| 4320 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4321 | CFGBlock *LoopSuccessor = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4322 | if (Block) { |
| 4323 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4324 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4325 | LoopSuccessor = Block; |
| 4326 | } else |
| 4327 | LoopSuccessor = Succ; |
| 4328 | |
| 4329 | // Save the current value for the break targets. |
| 4330 | // All breaks should go to the code following the loop. |
| 4331 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
| 4332 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
| 4333 | |
| 4334 | // The block for the __begin != __end expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4335 | CFGBlock *ConditionBlock = createBlock(false); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4336 | ConditionBlock->setTerminator(S); |
| 4337 | |
| 4338 | // Now add the actual condition to the condition block. |
| 4339 | if (Expr *C = S->getCond()) { |
| 4340 | Block = ConditionBlock; |
| 4341 | CFGBlock *BeginConditionBlock = addStmt(C); |
| 4342 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4343 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4344 | assert(BeginConditionBlock == ConditionBlock && |
| 4345 | "condition block in for-range was unexpectedly complex"); |
| 4346 | (void)BeginConditionBlock; |
| 4347 | } |
| 4348 | |
| 4349 | // The condition block is the implicit successor for the loop body as well as |
| 4350 | // any code above the loop. |
| 4351 | Succ = ConditionBlock; |
| 4352 | |
| 4353 | // See if this is a known constant. |
| 4354 | TryResult KnownVal(true); |
| 4355 | |
| 4356 | if (S->getCond()) |
| 4357 | KnownVal = tryEvaluateBool(S->getCond()); |
| 4358 | |
| 4359 | // Now create the loop body. |
| 4360 | { |
| 4361 | assert(S->getBody()); |
| 4362 | |
| 4363 | // Save the current values for Block, Succ, and continue targets. |
| 4364 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 4365 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
| 4366 | |
| 4367 | // Generate increment code in its own basic block. This is the target of |
| 4368 | // continue statements. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4369 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4370 | Succ = addStmt(S->getInc()); |
Alexander Kornienko | ff2046a | 2016-07-08 10:50:51 +0000 | [diff] [blame] | 4371 | if (badCFG) |
| 4372 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4373 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 4374 | |
| 4375 | // The starting block for the loop increment is the block that should |
| 4376 | // represent the 'loop target' for looping back to the start of the loop. |
| 4377 | ContinueJumpTarget.block->setLoopTarget(S); |
| 4378 | |
| 4379 | // Finish up the increment block and prepare to start the loop body. |
| 4380 | assert(Block); |
| 4381 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4382 | return nullptr; |
| 4383 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4384 | |
| 4385 | // Add implicit scope and dtors for loop variable. |
| 4386 | addLocalScopeAndDtors(S->getLoopVarStmt()); |
| 4387 | |
| 4388 | // Populate a new block to contain the loop body and loop variable. |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4389 | addStmt(S->getBody()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4390 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4391 | return nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4392 | CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4393 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4394 | return nullptr; |
| 4395 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4396 | // This new body block is a successor to our condition block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4397 | addSuccessor(ConditionBlock, |
| 4398 | KnownVal.isFalse() ? nullptr : LoopVarStmtBlock); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4399 | } |
| 4400 | |
| 4401 | // Link up the condition block with the code that follows the loop (the |
| 4402 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4403 | addSuccessor(ConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4404 | |
| 4405 | // Add the initialization statements. |
| 4406 | Block = createBlock(); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 4407 | addStmt(S->getBeginStmt()); |
| 4408 | addStmt(S->getEndStmt()); |
Richard Smith | 8baa500 | 2018-09-28 18:44:09 +0000 | [diff] [blame] | 4409 | CFGBlock *Head = addStmt(S->getRangeStmt()); |
| 4410 | if (S->getInit()) |
| 4411 | Head = addStmt(S->getInit()); |
| 4412 | return Head; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4413 | } |
| 4414 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 4415 | CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E, |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4416 | AddStmtChoice asc, bool ExternallyDestructed) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 4417 | if (BuildOpts.AddTemporaryDtors) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4418 | // If adding implicit destructors visit the full expression for adding |
| 4419 | // destructors of temporaries. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4420 | TempDtorContext Context; |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4421 | VisitForTemporaryDtors(E->getSubExpr(), ExternallyDestructed, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4422 | |
| 4423 | // Full expression has to be added as CFGStmt so it will be sequenced |
| 4424 | // before destructors of it's temporaries. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4425 | asc = asc.withAlwaysAdd(true); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4426 | } |
| 4427 | return Visit(E->getSubExpr(), asc); |
| 4428 | } |
| 4429 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4430 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 4431 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4432 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4433 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4434 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4435 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4436 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 4437 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), E), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4438 | E->getSubExpr()); |
Artem Dergachev | 1f68d9d | 2018-02-15 03:13:36 +0000 | [diff] [blame] | 4439 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4440 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4441 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4442 | } |
| 4443 | return Visit(E->getSubExpr(), asc); |
| 4444 | } |
| 4445 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4446 | CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C, |
| 4447 | AddStmtChoice asc) { |
Artem Dergachev | bd880fe | 2018-07-31 19:39:37 +0000 | [diff] [blame] | 4448 | // If the constructor takes objects as arguments by value, we need to properly |
| 4449 | // construct these objects. Construction contexts we find here aren't for the |
| 4450 | // constructor C, they're for its arguments only. |
| 4451 | findConstructionContextsForArguments(C); |
| 4452 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4453 | autoCreateBlock(); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4454 | appendConstructor(Block, C); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4455 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4456 | return VisitChildren(C); |
| 4457 | } |
| 4458 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4459 | CFGBlock *CFGBuilder::VisitCXXNewExpr(CXXNewExpr *NE, |
| 4460 | AddStmtChoice asc) { |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4461 | autoCreateBlock(); |
| 4462 | appendStmt(Block, NE); |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4463 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4464 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 4465 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), NE), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4466 | const_cast<CXXConstructExpr *>(NE->getConstructExpr())); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4467 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4468 | if (NE->getInitializer()) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4469 | Block = Visit(NE->getInitializer()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4470 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4471 | if (BuildOpts.AddCXXNewAllocator) |
| 4472 | appendNewAllocator(Block, NE); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4473 | |
Richard Smith | b9fb121 | 2019-05-06 03:47:15 +0000 | [diff] [blame] | 4474 | if (NE->isArray() && *NE->getArraySize()) |
| 4475 | Block = Visit(*NE->getArraySize()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4476 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4477 | for (CXXNewExpr::arg_iterator I = NE->placement_arg_begin(), |
| 4478 | E = NE->placement_arg_end(); I != E; ++I) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4479 | Block = Visit(*I); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4480 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4481 | return Block; |
| 4482 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4483 | |
| 4484 | CFGBlock *CFGBuilder::VisitCXXDeleteExpr(CXXDeleteExpr *DE, |
| 4485 | AddStmtChoice asc) { |
| 4486 | autoCreateBlock(); |
| 4487 | appendStmt(Block, DE); |
| 4488 | QualType DTy = DE->getDestroyedType(); |
Martin Bohme | f44cde8 | 2016-12-05 11:33:19 +0000 | [diff] [blame] | 4489 | if (!DTy.isNull()) { |
| 4490 | DTy = DTy.getNonReferenceType(); |
| 4491 | CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 4492 | if (RD) { |
| 4493 | if (RD->isCompleteDefinition() && !RD->hasTrivialDestructor()) |
| 4494 | appendDeleteDtor(Block, RD, DE); |
| 4495 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4496 | } |
| 4497 | |
| 4498 | return VisitChildren(DE); |
| 4499 | } |
| 4500 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4501 | CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 4502 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4503 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4504 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4505 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4506 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4507 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4508 | } |
| 4509 | return Visit(E->getSubExpr(), asc); |
| 4510 | } |
| 4511 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4512 | CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 4513 | AddStmtChoice asc) { |
Artem Dergachev | c531d54 | 2018-08-14 21:10:46 +0000 | [diff] [blame] | 4514 | // If the constructor takes objects as arguments by value, we need to properly |
| 4515 | // construct these objects. Construction contexts we find here aren't for the |
| 4516 | // constructor C, they're for its arguments only. |
| 4517 | findConstructionContextsForArguments(C); |
| 4518 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4519 | autoCreateBlock(); |
Artem Dergachev | 1f68d9d | 2018-02-15 03:13:36 +0000 | [diff] [blame] | 4520 | appendConstructor(Block, C); |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4521 | return VisitChildren(C); |
| 4522 | } |
| 4523 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4524 | CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E, |
| 4525 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4526 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4527 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4528 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4529 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 4530 | return Visit(E->getSubExpr(), AddStmtChoice()); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4531 | } |
| 4532 | |
Bill Wendling | 8003edc | 2018-11-09 00:41:36 +0000 | [diff] [blame] | 4533 | CFGBlock *CFGBuilder::VisitConstantExpr(ConstantExpr *E, AddStmtChoice asc) { |
| 4534 | return Visit(E->getSubExpr(), AddStmtChoice()); |
| 4535 | } |
| 4536 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4537 | CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4538 | // 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] | 4539 | CFGBlock *IBlock = cfg->getIndirectGotoBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4540 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4541 | if (!IBlock) { |
| 4542 | IBlock = createBlock(false); |
| 4543 | cfg->setIndirectGotoBlock(IBlock); |
| 4544 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4545 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4546 | // IndirectGoto is a control-flow statement. Thus we stop processing the |
| 4547 | // current block and create a new one. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4548 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4549 | return nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4550 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4551 | Block = createBlock(false); |
| 4552 | Block->setTerminator(I); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4553 | addSuccessor(Block, IBlock); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4554 | return addStmt(I->getTarget()); |
| 4555 | } |
| 4556 | |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4557 | CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool ExternallyDestructed, |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4558 | TempDtorContext &Context) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 4559 | assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors); |
| 4560 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4561 | tryAgain: |
| 4562 | if (!E) { |
| 4563 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4564 | return nullptr; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4565 | } |
| 4566 | switch (E->getStmtClass()) { |
| 4567 | default: |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4568 | return VisitChildrenForTemporaryDtors(E, false, Context); |
| 4569 | |
| 4570 | case Stmt::InitListExprClass: |
| 4571 | return VisitChildrenForTemporaryDtors(E, ExternallyDestructed, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4572 | |
| 4573 | case Stmt::BinaryOperatorClass: |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4574 | return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E), |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4575 | ExternallyDestructed, |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4576 | Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4577 | |
| 4578 | case Stmt::CXXBindTemporaryExprClass: |
| 4579 | return VisitCXXBindTemporaryExprForTemporaryDtors( |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4580 | cast<CXXBindTemporaryExpr>(E), ExternallyDestructed, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4581 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4582 | case Stmt::BinaryConditionalOperatorClass: |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4583 | case Stmt::ConditionalOperatorClass: |
| 4584 | return VisitConditionalOperatorForTemporaryDtors( |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4585 | cast<AbstractConditionalOperator>(E), ExternallyDestructed, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4586 | |
| 4587 | case Stmt::ImplicitCastExprClass: |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4588 | // For implicit cast we want ExternallyDestructed to be passed further. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4589 | E = cast<CastExpr>(E)->getSubExpr(); |
| 4590 | goto tryAgain; |
| 4591 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4592 | case Stmt::CXXFunctionalCastExprClass: |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4593 | // For functional cast we want ExternallyDestructed to be passed further. |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4594 | E = cast<CXXFunctionalCastExpr>(E)->getSubExpr(); |
| 4595 | goto tryAgain; |
| 4596 | |
Bill Wendling | 8003edc | 2018-11-09 00:41:36 +0000 | [diff] [blame] | 4597 | case Stmt::ConstantExprClass: |
| 4598 | E = cast<ConstantExpr>(E)->getSubExpr(); |
| 4599 | goto tryAgain; |
| 4600 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4601 | case Stmt::ParenExprClass: |
| 4602 | E = cast<ParenExpr>(E)->getSubExpr(); |
| 4603 | goto tryAgain; |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4604 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4605 | case Stmt::MaterializeTemporaryExprClass: { |
| 4606 | const MaterializeTemporaryExpr* MTE = cast<MaterializeTemporaryExpr>(E); |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4607 | ExternallyDestructed = (MTE->getStorageDuration() != SD_FullExpression); |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4608 | SmallVector<const Expr *, 2> CommaLHSs; |
| 4609 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 4610 | // Find the expression whose lifetime needs to be extended. |
| 4611 | E = const_cast<Expr *>( |
| 4612 | cast<MaterializeTemporaryExpr>(E) |
| 4613 | ->GetTemporaryExpr() |
| 4614 | ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments)); |
| 4615 | // Visit the skipped comma operator left-hand sides for other temporaries. |
| 4616 | for (const Expr *CommaLHS : CommaLHSs) { |
| 4617 | VisitForTemporaryDtors(const_cast<Expr *>(CommaLHS), |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4618 | /*ExternallyDestructed=*/false, Context); |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4619 | } |
Douglas Gregor | fe31481 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 4620 | goto tryAgain; |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4621 | } |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4622 | |
| 4623 | case Stmt::BlockExprClass: |
| 4624 | // Don't recurse into blocks; their subexpressions don't get evaluated |
| 4625 | // here. |
| 4626 | return Block; |
| 4627 | |
| 4628 | case Stmt::LambdaExprClass: { |
| 4629 | // For lambda expressions, only recurse into the capture initializers, |
| 4630 | // and not the body. |
| 4631 | auto *LE = cast<LambdaExpr>(E); |
| 4632 | CFGBlock *B = Block; |
| 4633 | for (Expr *Init : LE->capture_inits()) { |
Richard Smith | 7ed5fb2 | 2018-07-27 17:13:18 +0000 | [diff] [blame] | 4634 | if (Init) { |
| 4635 | if (CFGBlock *R = VisitForTemporaryDtors( |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4636 | Init, /*ExternallyDestructed=*/true, Context)) |
Richard Smith | 7ed5fb2 | 2018-07-27 17:13:18 +0000 | [diff] [blame] | 4637 | B = R; |
| 4638 | } |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4639 | } |
| 4640 | return B; |
| 4641 | } |
| 4642 | |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4643 | case Stmt::StmtExprClass: |
| 4644 | // Don't recurse into statement expressions; any cleanups inside them |
| 4645 | // will be wrapped in their own ExprWithCleanups. |
| 4646 | return Block; |
| 4647 | |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4648 | case Stmt::CXXDefaultArgExprClass: |
| 4649 | E = cast<CXXDefaultArgExpr>(E)->getExpr(); |
| 4650 | goto tryAgain; |
| 4651 | |
| 4652 | case Stmt::CXXDefaultInitExprClass: |
| 4653 | E = cast<CXXDefaultInitExpr>(E)->getExpr(); |
| 4654 | goto tryAgain; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4655 | } |
| 4656 | } |
| 4657 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4658 | CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E, |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4659 | bool ExternallyDestructed, |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4660 | TempDtorContext &Context) { |
| 4661 | if (isa<LambdaExpr>(E)) { |
| 4662 | // Do not visit the children of lambdas; they have their own CFGs. |
| 4663 | return Block; |
| 4664 | } |
| 4665 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4666 | // When visiting children for destructors we want to visit them in reverse |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4667 | // order that they will appear in the CFG. Because the CFG is built |
| 4668 | // bottom-up, this means we visit them in their natural order, which |
| 4669 | // reverses them in the CFG. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4670 | CFGBlock *B = Block; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4671 | for (Stmt *Child : E->children()) |
| 4672 | if (Child) |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4673 | if (CFGBlock *R = VisitForTemporaryDtors(Child, ExternallyDestructed, Context)) |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4674 | B = R; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4675 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4676 | return B; |
| 4677 | } |
| 4678 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4679 | CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors( |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4680 | BinaryOperator *E, bool ExternallyDestructed, TempDtorContext &Context) { |
| 4681 | if (E->isCommaOp()) { |
| 4682 | // For comma operator LHS expression is visited |
| 4683 | // before RHS expression. For destructors visit them in reverse order. |
| 4684 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), ExternallyDestructed, Context); |
| 4685 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
| 4686 | return LHSBlock ? LHSBlock : RHSBlock; |
| 4687 | } |
| 4688 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4689 | if (E->isLogicalOp()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4690 | VisitForTemporaryDtors(E->getLHS(), false, Context); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4691 | TryResult RHSExecuted = tryEvaluateBool(E->getLHS()); |
| 4692 | if (RHSExecuted.isKnown() && E->getOpcode() == BO_LOr) |
| 4693 | RHSExecuted.negate(); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4694 | |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4695 | // We do not know at CFG-construction time whether the right-hand-side was |
| 4696 | // executed, thus we add a branch node that depends on the temporary |
| 4697 | // constructor call. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4698 | TempDtorContext RHSContext( |
| 4699 | bothKnownTrue(Context.KnownExecuted, RHSExecuted)); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4700 | VisitForTemporaryDtors(E->getRHS(), false, RHSContext); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4701 | InsertTempDtorDecisionBlock(RHSContext); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4702 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4703 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4704 | } |
| 4705 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4706 | if (E->isAssignmentOp()) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4707 | // For assignment operator (=) LHS expression is visited |
| 4708 | // before RHS expression. For destructors visit them in reverse order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4709 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
| 4710 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4711 | return LHSBlock ? LHSBlock : RHSBlock; |
| 4712 | } |
| 4713 | |
| 4714 | // For any other binary operator RHS expression is visited before |
| 4715 | // LHS expression (order of children). For destructors visit them in reverse |
| 4716 | // order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4717 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
| 4718 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4719 | return RHSBlock ? RHSBlock : LHSBlock; |
| 4720 | } |
| 4721 | |
| 4722 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors( |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4723 | CXXBindTemporaryExpr *E, bool ExternallyDestructed, TempDtorContext &Context) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4724 | // First add destructors for temporaries in subexpression. |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4725 | // Because VisitCXXBindTemporaryExpr calls setDestructed: |
| 4726 | CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr(), true, Context); |
| 4727 | if (!ExternallyDestructed) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4728 | // If lifetime of temporary is not prolonged (by assigning to constant |
| 4729 | // reference) add destructor for it. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4730 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4731 | const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4732 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 4733 | if (Dtor->getParent()->isAnyDestructorNoReturn()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4734 | // If the destructor is marked as a no-return destructor, we need to |
| 4735 | // create a new block for the destructor which does not have as a |
| 4736 | // successor anything built thus far. Control won't flow out of this |
| 4737 | // block. |
| 4738 | if (B) Succ = B; |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 4739 | Block = createNoReturnBlock(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4740 | } else if (Context.needsTempDtorBranch()) { |
| 4741 | // If we need to introduce a branch, we add a new block that we will hook |
| 4742 | // up to a decision block later. |
| 4743 | if (B) Succ = B; |
| 4744 | Block = createBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4745 | } else { |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4746 | autoCreateBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4747 | } |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4748 | if (Context.needsTempDtorBranch()) { |
| 4749 | Context.setDecisionPoint(Succ, E); |
| 4750 | } |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4751 | appendTemporaryDtor(Block, E); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4752 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4753 | B = Block; |
| 4754 | } |
| 4755 | return B; |
| 4756 | } |
| 4757 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4758 | void CFGBuilder::InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 4759 | CFGBlock *FalseSucc) { |
| 4760 | if (!Context.TerminatorExpr) { |
| 4761 | // If no temporary was found, we do not need to insert a decision point. |
| 4762 | return; |
| 4763 | } |
| 4764 | assert(Context.TerminatorExpr); |
| 4765 | CFGBlock *Decision = createBlock(false); |
Artem Dergachev | 4e53032 | 2019-05-24 01:34:22 +0000 | [diff] [blame] | 4766 | Decision->setTerminator(CFGTerminator(Context.TerminatorExpr, |
| 4767 | CFGTerminator::TemporaryDtorsBranch)); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4768 | addSuccessor(Decision, Block, !Context.KnownExecuted.isFalse()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4769 | addSuccessor(Decision, FalseSucc ? FalseSucc : Context.Succ, |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4770 | !Context.KnownExecuted.isTrue()); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4771 | Block = Decision; |
| 4772 | } |
| 4773 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4774 | CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors( |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4775 | AbstractConditionalOperator *E, bool ExternallyDestructed, |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4776 | TempDtorContext &Context) { |
| 4777 | VisitForTemporaryDtors(E->getCond(), false, Context); |
| 4778 | CFGBlock *ConditionBlock = Block; |
| 4779 | CFGBlock *ConditionSucc = Succ; |
Manuel Klimek | 0ce9108 | 2014-08-07 14:25:43 +0000 | [diff] [blame] | 4780 | TryResult ConditionVal = tryEvaluateBool(E->getCond()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4781 | TryResult NegatedVal = ConditionVal; |
| 4782 | if (NegatedVal.isKnown()) NegatedVal.negate(); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4783 | |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4784 | TempDtorContext TrueContext( |
| 4785 | bothKnownTrue(Context.KnownExecuted, ConditionVal)); |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4786 | VisitForTemporaryDtors(E->getTrueExpr(), ExternallyDestructed, TrueContext); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4787 | CFGBlock *TrueBlock = Block; |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4788 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4789 | Block = ConditionBlock; |
| 4790 | Succ = ConditionSucc; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4791 | TempDtorContext FalseContext( |
| 4792 | bothKnownTrue(Context.KnownExecuted, NegatedVal)); |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 4793 | VisitForTemporaryDtors(E->getFalseExpr(), ExternallyDestructed, FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4794 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4795 | if (TrueContext.TerminatorExpr && FalseContext.TerminatorExpr) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4796 | InsertTempDtorDecisionBlock(FalseContext, TrueBlock); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4797 | } else if (TrueContext.TerminatorExpr) { |
| 4798 | Block = TrueBlock; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4799 | InsertTempDtorDecisionBlock(TrueContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4800 | } else { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4801 | InsertTempDtorDecisionBlock(FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4802 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4803 | return Block; |
| 4804 | } |
| 4805 | |
Alexey Bataev | c2c21ef | 2019-07-11 14:54:17 +0000 | [diff] [blame] | 4806 | CFGBlock *CFGBuilder::VisitOMPExecutableDirective(OMPExecutableDirective *D, |
| 4807 | AddStmtChoice asc) { |
| 4808 | if (asc.alwaysAdd(*this, D)) { |
| 4809 | autoCreateBlock(); |
| 4810 | appendStmt(Block, D); |
| 4811 | } |
| 4812 | |
| 4813 | // Iterate over all used expression in clauses. |
| 4814 | CFGBlock *B = Block; |
| 4815 | |
| 4816 | // Reverse the elements to process them in natural order. Iterators are not |
| 4817 | // bidirectional, so we need to create temp vector. |
Alexey Bataev | 655cb4a | 2019-07-16 14:51:46 +0000 | [diff] [blame] | 4818 | SmallVector<Stmt *, 8> Used( |
| 4819 | OMPExecutableDirective::used_clauses_children(D->clauses())); |
| 4820 | for (Stmt *S : llvm::reverse(Used)) { |
Alexey Bataev | c2c21ef | 2019-07-11 14:54:17 +0000 | [diff] [blame] | 4821 | assert(S && "Expected non-null used-in-clause child."); |
| 4822 | if (CFGBlock *R = Visit(S)) |
| 4823 | B = R; |
| 4824 | } |
| 4825 | // Visit associated structured block if any. |
| 4826 | if (!D->isStandaloneDirective()) |
| 4827 | if (Stmt *S = D->getStructuredBlock()) { |
| 4828 | if (!isa<CompoundStmt>(S)) |
| 4829 | addLocalScopeAndDtors(S); |
| 4830 | if (CFGBlock *R = addStmt(S)) |
| 4831 | B = R; |
| 4832 | } |
| 4833 | |
| 4834 | return B; |
| 4835 | } |
| 4836 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4837 | /// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has |
| 4838 | /// no successors or predecessors. If this is the first block created in the |
| 4839 | /// 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] | 4840 | CFGBlock *CFG::createBlock() { |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4841 | bool first_block = begin() == end(); |
| 4842 | |
| 4843 | // Create the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4844 | CFGBlock *Mem = getAllocator().Allocate<CFGBlock>(); |
Anna Zaks | 02a1fc1 | 2011-12-05 21:33:11 +0000 | [diff] [blame] | 4845 | new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4846 | Blocks.push_back(Mem, BlkBVC); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4847 | |
| 4848 | // 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] | 4849 | if (first_block) |
| 4850 | Entry = Exit = &back(); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4851 | |
| 4852 | // Return the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4853 | return &back(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4854 | } |
| 4855 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 4856 | /// buildCFG - Constructs a CFG from an AST. |
| 4857 | std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement, |
| 4858 | ASTContext *C, const BuildOptions &BO) { |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 4859 | CFGBuilder Builder(C, BO); |
| 4860 | return Builder.buildCFG(D, Statement); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4861 | } |
| 4862 | |
Artem Dergachev | ab7747b | 2019-04-30 03:01:02 +0000 | [diff] [blame] | 4863 | bool CFG::isLinear() const { |
| 4864 | // Quick path: if we only have the ENTRY block, the EXIT block, and some code |
| 4865 | // in between, then we have no room for control flow. |
| 4866 | if (size() <= 3) |
| 4867 | return true; |
| 4868 | |
| 4869 | // Traverse the CFG until we find a branch. |
| 4870 | // TODO: While this should still be very fast, |
| 4871 | // maybe we should cache the answer. |
| 4872 | llvm::SmallPtrSet<const CFGBlock *, 4> Visited; |
| 4873 | const CFGBlock *B = Entry; |
| 4874 | while (B != Exit) { |
| 4875 | auto IteratorAndFlag = Visited.insert(B); |
| 4876 | if (!IteratorAndFlag.second) { |
| 4877 | // We looped back to a block that we've already visited. Not linear. |
| 4878 | return false; |
| 4879 | } |
| 4880 | |
| 4881 | // Iterate over reachable successors. |
| 4882 | const CFGBlock *FirstReachableB = nullptr; |
| 4883 | for (const CFGBlock::AdjacentBlock &AB : B->succs()) { |
| 4884 | if (!AB.isReachable()) |
| 4885 | continue; |
| 4886 | |
| 4887 | if (FirstReachableB == nullptr) { |
| 4888 | FirstReachableB = &*AB; |
| 4889 | } else { |
| 4890 | // We've encountered a branch. It's not a linear CFG. |
| 4891 | return false; |
| 4892 | } |
| 4893 | } |
| 4894 | |
| 4895 | if (!FirstReachableB) { |
| 4896 | // We reached a dead end. EXIT is unreachable. This is linear enough. |
| 4897 | return true; |
| 4898 | } |
| 4899 | |
| 4900 | // There's only one way to move forward. Proceed. |
| 4901 | B = FirstReachableB; |
| 4902 | } |
| 4903 | |
| 4904 | // We reached EXIT and found no branches. |
| 4905 | return true; |
| 4906 | } |
| 4907 | |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4908 | const CXXDestructorDecl * |
| 4909 | CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4910 | switch (getKind()) { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4911 | case CFGElement::Initializer: |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4912 | case CFGElement::NewAllocator: |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 4913 | case CFGElement::LoopExit: |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4914 | case CFGElement::LifetimeEnds: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4915 | case CFGElement::Statement: |
| 4916 | case CFGElement::Constructor: |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4917 | case CFGElement::CXXRecordTypedCall: |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 4918 | case CFGElement::ScopeBegin: |
| 4919 | case CFGElement::ScopeEnd: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4920 | llvm_unreachable("getDestructorDecl should only be used with " |
| 4921 | "ImplicitDtors"); |
| 4922 | case CFGElement::AutomaticObjectDtor: { |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4923 | const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4924 | QualType ty = var->getType(); |
Devin Coughlin | 6eb1ca7 | 2016-08-02 21:07:23 +0000 | [diff] [blame] | 4925 | |
| 4926 | // FIXME: See CFGBuilder::addLocalScopeForVarDecl. |
| 4927 | // |
| 4928 | // Lifetime-extending constructs are handled here. This works for a single |
| 4929 | // temporary in an initializer expression. |
| 4930 | if (ty->isReferenceType()) { |
| 4931 | if (const Expr *Init = var->getInit()) { |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 4932 | ty = getReferenceInitTemporaryType(Init); |
Devin Coughlin | 6eb1ca7 | 2016-08-02 21:07:23 +0000 | [diff] [blame] | 4933 | } |
| 4934 | } |
| 4935 | |
Ted Kremenek | e7d7888 | 2012-03-19 23:48:41 +0000 | [diff] [blame] | 4936 | while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) { |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4937 | ty = arrayType->getElementType(); |
| 4938 | } |
Artem Dergachev | 3517d10 | 2019-08-28 21:19:58 +0000 | [diff] [blame] | 4939 | |
| 4940 | // The situation when the type of the lifetime-extending reference |
| 4941 | // does not correspond to the type of the object is supposed |
| 4942 | // to be handled by now. In particular, 'ty' is now the unwrapped |
| 4943 | // record type. |
| 4944 | const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); |
| 4945 | assert(classDecl); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 4946 | return classDecl->getDestructor(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4947 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4948 | case CFGElement::DeleteDtor: { |
| 4949 | const CXXDeleteExpr *DE = castAs<CFGDeleteDtor>().getDeleteExpr(); |
| 4950 | QualType DTy = DE->getDestroyedType(); |
| 4951 | DTy = DTy.getNonReferenceType(); |
| 4952 | const CXXRecordDecl *classDecl = |
| 4953 | astContext.getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 4954 | return classDecl->getDestructor(); |
| 4955 | } |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4956 | case CFGElement::TemporaryDtor: { |
| 4957 | const CXXBindTemporaryExpr *bindExpr = |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4958 | castAs<CFGTemporaryDtor>().getBindTemporaryExpr(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4959 | const CXXTemporary *temp = bindExpr->getTemporary(); |
| 4960 | return temp->getDestructor(); |
| 4961 | } |
| 4962 | case CFGElement::BaseDtor: |
| 4963 | case CFGElement::MemberDtor: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4964 | // Not yet supported. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4965 | return nullptr; |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4966 | } |
Ted Kremenek | 1676a04 | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 4967 | llvm_unreachable("getKind() returned bogus value"); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4968 | } |
| 4969 | |
Ted Kremenek | f2d4372b | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 4970 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4971 | // CFGBlock operations. |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4972 | //===----------------------------------------------------------------------===// |
| 4973 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4974 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, bool IsReachable) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4975 | : ReachableBlock(IsReachable ? B : nullptr), |
| 4976 | UnreachableBlock(!IsReachable ? B : nullptr, |
| 4977 | B && IsReachable ? AB_Normal : AB_Unreachable) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4978 | |
| 4979 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, CFGBlock *AlternateBlock) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4980 | : ReachableBlock(B), |
| 4981 | UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock, |
| 4982 | B == AlternateBlock ? AB_Alternate : AB_Normal) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4983 | |
| 4984 | void CFGBlock::addSuccessor(AdjacentBlock Succ, |
| 4985 | BumpVectorContext &C) { |
| 4986 | if (CFGBlock *B = Succ.getReachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4987 | B->Preds.push_back(AdjacentBlock(this, Succ.isReachable()), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4988 | |
| 4989 | if (CFGBlock *UnreachableB = Succ.getPossiblyUnreachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4990 | UnreachableB->Preds.push_back(AdjacentBlock(this, false), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4991 | |
| 4992 | Succs.push_back(Succ, C); |
| 4993 | } |
| 4994 | |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4995 | bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F, |
Ted Kremenek | f146cd1 | 2010-09-09 02:57:48 +0000 | [diff] [blame] | 4996 | const CFGBlock *From, const CFGBlock *To) { |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4997 | if (F.IgnoreNullPredecessors && !From) |
| 4998 | return true; |
| 4999 | |
| 5000 | if (To && From && F.IgnoreDefaultsWithCoveredEnums) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 5001 | // If the 'To' has no label or is labeled but the label isn't a |
| 5002 | // CaseStmt then filter this edge. |
| 5003 | if (const SwitchStmt *S = |
Artem Dergachev | 4e53032 | 2019-05-24 01:34:22 +0000 | [diff] [blame] | 5004 | dyn_cast_or_null<SwitchStmt>(From->getTerminatorStmt())) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 5005 | if (S->isAllEnumCasesCovered()) { |
Ted Kremenek | 8979474 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 5006 | const Stmt *L = To->getLabel(); |
| 5007 | if (!L || !isa<CaseStmt>(L)) |
| 5008 | return true; |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 5009 | } |
| 5010 | } |
| 5011 | } |
| 5012 | |
| 5013 | return false; |
| 5014 | } |
| 5015 | |
| 5016 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5017 | // CFG pretty printing |
| 5018 | //===----------------------------------------------------------------------===// |
| 5019 | |
Ted Kremenek | 7e776b1 | 2007-08-22 18:22:34 +0000 | [diff] [blame] | 5020 | namespace { |
| 5021 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 5022 | class StmtPrinterHelper : public PrinterHelper { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5023 | using StmtMapTy = llvm::DenseMap<const Stmt *, std::pair<unsigned, unsigned>>; |
| 5024 | using DeclMapTy = llvm::DenseMap<const Decl *, std::pair<unsigned, unsigned>>; |
| 5025 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5026 | StmtMapTy StmtMap; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5027 | DeclMapTy DeclMap; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5028 | signed currentBlock = 0; |
| 5029 | unsigned currStmt = 0; |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5030 | const LangOptions &LangOpts; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 5031 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5032 | public: |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5033 | StmtPrinterHelper(const CFG* cfg, const LangOptions &LO) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5034 | : LangOpts(LO) { |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5035 | if (!cfg) |
| 5036 | return; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5037 | for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) { |
| 5038 | unsigned j = 1; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 5039 | for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5040 | BI != BEnd; ++BI, ++j ) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5041 | if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) { |
| 5042 | const Stmt *stmt= SE->getStmt(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5043 | std::pair<unsigned, unsigned> P((*I)->getBlockID(), j); |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 5044 | StmtMap[stmt] = P; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5045 | |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 5046 | switch (stmt->getStmtClass()) { |
| 5047 | case Stmt::DeclStmtClass: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5048 | DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P; |
| 5049 | break; |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 5050 | case Stmt::IfStmtClass: { |
| 5051 | const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable(); |
| 5052 | if (var) |
| 5053 | DeclMap[var] = P; |
| 5054 | break; |
| 5055 | } |
| 5056 | case Stmt::ForStmtClass: { |
| 5057 | const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable(); |
| 5058 | if (var) |
| 5059 | DeclMap[var] = P; |
| 5060 | break; |
| 5061 | } |
| 5062 | case Stmt::WhileStmtClass: { |
| 5063 | const VarDecl *var = |
| 5064 | cast<WhileStmt>(stmt)->getConditionVariable(); |
| 5065 | if (var) |
| 5066 | DeclMap[var] = P; |
| 5067 | break; |
| 5068 | } |
| 5069 | case Stmt::SwitchStmtClass: { |
| 5070 | const VarDecl *var = |
| 5071 | cast<SwitchStmt>(stmt)->getConditionVariable(); |
| 5072 | if (var) |
| 5073 | DeclMap[var] = P; |
| 5074 | break; |
| 5075 | } |
| 5076 | case Stmt::CXXCatchStmtClass: { |
| 5077 | const VarDecl *var = |
| 5078 | cast<CXXCatchStmt>(stmt)->getExceptionDecl(); |
| 5079 | if (var) |
| 5080 | DeclMap[var] = P; |
| 5081 | break; |
| 5082 | } |
| 5083 | default: |
| 5084 | break; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5085 | } |
| 5086 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5087 | } |
Zhongxing Xu | 2cd7a78 | 2010-09-16 01:25:47 +0000 | [diff] [blame] | 5088 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5089 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5090 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5091 | ~StmtPrinterHelper() override = default; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5092 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5093 | const LangOptions &getLangOpts() const { return LangOpts; } |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 5094 | void setBlockID(signed i) { currentBlock = i; } |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 5095 | void setStmtID(unsigned i) { currStmt = i; } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5096 | |
Craig Topper | b45acb8 | 2014-03-14 06:02:07 +0000 | [diff] [blame] | 5097 | bool handledStmt(Stmt *S, raw_ostream &OS) override { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5098 | StmtMapTy::iterator I = StmtMap.find(S); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5099 | |
| 5100 | if (I == StmtMap.end()) |
| 5101 | return false; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5102 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 5103 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 5104 | && I->second.second == currStmt) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5105 | return false; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 5106 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5107 | |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 5108 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 5109 | return true; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5110 | } |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5111 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5112 | bool handleDecl(const Decl *D, raw_ostream &OS) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5113 | DeclMapTy::iterator I = DeclMap.find(D); |
| 5114 | |
| 5115 | if (I == DeclMap.end()) |
| 5116 | return false; |
| 5117 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 5118 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 5119 | && I->second.second == currStmt) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5120 | return false; |
| 5121 | } |
| 5122 | |
| 5123 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
| 5124 | return true; |
| 5125 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5126 | }; |
| 5127 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 5128 | class CFGBlockTerminatorPrint |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5129 | : public StmtVisitor<CFGBlockTerminatorPrint,void> { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5130 | raw_ostream &OS; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5131 | StmtPrinterHelper* Helper; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 5132 | PrintingPolicy Policy; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5133 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5134 | public: |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5135 | CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper, |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5136 | const PrintingPolicy &Policy) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5137 | : OS(os), Helper(helper), Policy(Policy) { |
Ted Kremenek | 5d0fb1e | 2013-12-11 23:44:05 +0000 | [diff] [blame] | 5138 | this->Policy.IncludeNewlines = false; |
| 5139 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5140 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5141 | void VisitIfStmt(IfStmt *I) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5142 | OS << "if "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5143 | if (Stmt *C = I->getCond()) |
| 5144 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5145 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5146 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5147 | // Default case. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5148 | void VisitStmt(Stmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5149 | Terminator->printPretty(OS, Helper, Policy); |
| 5150 | } |
| 5151 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 5152 | void VisitDeclStmt(DeclStmt *DS) { |
| 5153 | VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); |
| 5154 | OS << "static init " << VD->getName(); |
| 5155 | } |
| 5156 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5157 | void VisitForStmt(ForStmt *F) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5158 | OS << "for (" ; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 5159 | if (F->getInit()) |
| 5160 | OS << "..."; |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 5161 | OS << "; "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5162 | if (Stmt *C = F->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 5163 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 5164 | OS << "; "; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 5165 | if (F->getInc()) |
| 5166 | OS << "..."; |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5167 | OS << ")"; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5168 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5169 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5170 | void VisitWhileStmt(WhileStmt *W) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5171 | OS << "while " ; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5172 | if (Stmt *C = W->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 5173 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5174 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5175 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5176 | void VisitDoStmt(DoStmt *D) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5177 | OS << "do ... while "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5178 | if (Stmt *C = D->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 5179 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 5180 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5181 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5182 | void VisitSwitchStmt(SwitchStmt *Terminator) { |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 5183 | OS << "switch "; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 5184 | Terminator->getCond()->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 5185 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5186 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5187 | void VisitCXXTryStmt(CXXTryStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5188 | OS << "try ..."; |
| 5189 | } |
| 5190 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 5191 | void VisitSEHTryStmt(SEHTryStmt *CS) { |
| 5192 | OS << "__try ..."; |
| 5193 | } |
| 5194 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5195 | void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) { |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5196 | if (Stmt *Cond = C->getCond()) |
| 5197 | Cond->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5198 | OS << " ? ... : ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 5199 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5200 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5201 | void VisitChooseExpr(ChooseExpr *C) { |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 5202 | OS << "__builtin_choose_expr( "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5203 | if (Stmt *Cond = C->getCond()) |
| 5204 | Cond->printPretty(OS, Helper, Policy); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5205 | OS << " )"; |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 5206 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5207 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5208 | void VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 5209 | OS << "goto *"; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5210 | if (Stmt *T = I->getTarget()) |
| 5211 | T->printPretty(OS, Helper, Policy); |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 5212 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5213 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 5214 | void VisitBinaryOperator(BinaryOperator* B) { |
| 5215 | if (!B->isLogicalOp()) { |
| 5216 | VisitExpr(B); |
| 5217 | return; |
| 5218 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5219 | |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5220 | if (B->getLHS()) |
| 5221 | B->getLHS()->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5222 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 5223 | switch (B->getOpcode()) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 5224 | case BO_LOr: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5225 | OS << " || ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 5226 | return; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 5227 | case BO_LAnd: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5228 | OS << " && ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 5229 | return; |
| 5230 | default: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 5231 | llvm_unreachable("Invalid logical operator."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5232 | } |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 5233 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5234 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5235 | void VisitExpr(Expr *E) { |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 5236 | E->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5237 | } |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5238 | |
| 5239 | public: |
| 5240 | void print(CFGTerminator T) { |
Artem Dergachev | 4e53032 | 2019-05-24 01:34:22 +0000 | [diff] [blame] | 5241 | switch (T.getKind()) { |
| 5242 | case CFGTerminator::StmtBranch: |
| 5243 | Visit(T.getStmt()); |
| 5244 | break; |
| 5245 | case CFGTerminator::TemporaryDtorsBranch: |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5246 | OS << "(Temp Dtor) "; |
Artem Dergachev | 4e53032 | 2019-05-24 01:34:22 +0000 | [diff] [blame] | 5247 | Visit(T.getStmt()); |
| 5248 | break; |
Artem Dergachev | 192a747 | 2019-05-24 23:37:08 +0000 | [diff] [blame] | 5249 | case CFGTerminator::VirtualBaseBranch: |
| 5250 | OS << "(See if most derived ctor has already initialized vbases)"; |
| 5251 | break; |
Artem Dergachev | 4e53032 | 2019-05-24 01:34:22 +0000 | [diff] [blame] | 5252 | } |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5253 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 5254 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5255 | |
| 5256 | } // namespace |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5257 | |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 5258 | static void print_initializer(raw_ostream &OS, StmtPrinterHelper &Helper, |
| 5259 | const CXXCtorInitializer *I) { |
| 5260 | if (I->isBaseInitializer()) |
| 5261 | OS << I->getBaseClass()->getAsCXXRecordDecl()->getName(); |
| 5262 | else if (I->isDelegatingInitializer()) |
| 5263 | OS << I->getTypeSourceInfo()->getType()->getAsCXXRecordDecl()->getName(); |
| 5264 | else |
| 5265 | OS << I->getAnyMember()->getName(); |
| 5266 | OS << "("; |
| 5267 | if (Expr *IE = I->getInit()) |
| 5268 | IE->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
| 5269 | OS << ")"; |
| 5270 | |
| 5271 | if (I->isBaseInitializer()) |
| 5272 | OS << " (Base initializer)"; |
| 5273 | else if (I->isDelegatingInitializer()) |
| 5274 | OS << " (Delegating initializer)"; |
| 5275 | else |
| 5276 | OS << " (Member initializer)"; |
| 5277 | } |
| 5278 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5279 | static void print_construction_context(raw_ostream &OS, |
| 5280 | StmtPrinterHelper &Helper, |
| 5281 | const ConstructionContext *CC) { |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5282 | SmallVector<const Stmt *, 3> Stmts; |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5283 | switch (CC->getKind()) { |
Artem Dergachev | 922455f | 2018-03-22 22:02:38 +0000 | [diff] [blame] | 5284 | case ConstructionContext::SimpleConstructorInitializerKind: { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5285 | OS << ", "; |
Artem Dergachev | 922455f | 2018-03-22 22:02:38 +0000 | [diff] [blame] | 5286 | const auto *SICC = cast<SimpleConstructorInitializerConstructionContext>(CC); |
| 5287 | print_initializer(OS, Helper, SICC->getCXXCtorInitializer()); |
Artem Dergachev | a657a32 | 2018-07-31 20:45:53 +0000 | [diff] [blame] | 5288 | return; |
Artem Dergachev | 922455f | 2018-03-22 22:02:38 +0000 | [diff] [blame] | 5289 | } |
| 5290 | case ConstructionContext::CXX17ElidedCopyConstructorInitializerKind: { |
| 5291 | OS << ", "; |
| 5292 | const auto *CICC = |
| 5293 | cast<CXX17ElidedCopyConstructorInitializerConstructionContext>(CC); |
| 5294 | print_initializer(OS, Helper, CICC->getCXXCtorInitializer()); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5295 | Stmts.push_back(CICC->getCXXBindTemporaryExpr()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5296 | break; |
| 5297 | } |
| 5298 | case ConstructionContext::SimpleVariableKind: { |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5299 | const auto *SDSCC = cast<SimpleVariableConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5300 | Stmts.push_back(SDSCC->getDeclStmt()); |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5301 | break; |
| 5302 | } |
| 5303 | case ConstructionContext::CXX17ElidedCopyVariableKind: { |
| 5304 | const auto *CDSCC = cast<CXX17ElidedCopyVariableConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5305 | Stmts.push_back(CDSCC->getDeclStmt()); |
| 5306 | Stmts.push_back(CDSCC->getCXXBindTemporaryExpr()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5307 | break; |
| 5308 | } |
| 5309 | case ConstructionContext::NewAllocatedObjectKind: { |
| 5310 | const auto *NECC = cast<NewAllocatedObjectConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5311 | Stmts.push_back(NECC->getCXXNewExpr()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5312 | break; |
| 5313 | } |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5314 | case ConstructionContext::SimpleReturnedValueKind: { |
| 5315 | const auto *RSCC = cast<SimpleReturnedValueConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5316 | Stmts.push_back(RSCC->getReturnStmt()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5317 | break; |
| 5318 | } |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5319 | case ConstructionContext::CXX17ElidedCopyReturnedValueKind: { |
| 5320 | const auto *RSCC = |
| 5321 | cast<CXX17ElidedCopyReturnedValueConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5322 | Stmts.push_back(RSCC->getReturnStmt()); |
| 5323 | Stmts.push_back(RSCC->getCXXBindTemporaryExpr()); |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5324 | break; |
| 5325 | } |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5326 | case ConstructionContext::SimpleTemporaryObjectKind: { |
| 5327 | const auto *TOCC = cast<SimpleTemporaryObjectConstructionContext>(CC); |
| 5328 | Stmts.push_back(TOCC->getCXXBindTemporaryExpr()); |
| 5329 | Stmts.push_back(TOCC->getMaterializedTemporaryExpr()); |
| 5330 | break; |
| 5331 | } |
| 5332 | case ConstructionContext::ElidedTemporaryObjectKind: { |
| 5333 | const auto *TOCC = cast<ElidedTemporaryObjectConstructionContext>(CC); |
| 5334 | Stmts.push_back(TOCC->getCXXBindTemporaryExpr()); |
| 5335 | Stmts.push_back(TOCC->getMaterializedTemporaryExpr()); |
| 5336 | Stmts.push_back(TOCC->getConstructorAfterElision()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5337 | break; |
| 5338 | } |
Artem Dergachev | a657a32 | 2018-07-31 20:45:53 +0000 | [diff] [blame] | 5339 | case ConstructionContext::ArgumentKind: { |
| 5340 | const auto *ACC = cast<ArgumentConstructionContext>(CC); |
| 5341 | if (const Stmt *BTE = ACC->getCXXBindTemporaryExpr()) { |
| 5342 | OS << ", "; |
| 5343 | Helper.handledStmt(const_cast<Stmt *>(BTE), OS); |
| 5344 | } |
| 5345 | OS << ", "; |
| 5346 | Helper.handledStmt(const_cast<Expr *>(ACC->getCallLikeExpr()), OS); |
| 5347 | OS << "+" << ACC->getIndex(); |
| 5348 | return; |
| 5349 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5350 | } |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5351 | for (auto I: Stmts) |
| 5352 | if (I) { |
| 5353 | OS << ", "; |
| 5354 | Helper.handledStmt(const_cast<Stmt *>(I), OS); |
| 5355 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5356 | } |
| 5357 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5358 | static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper, |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5359 | const CFGElement &E); |
| 5360 | |
| 5361 | void CFGElement::dumpToStream(llvm::raw_ostream &OS) const { |
| 5362 | StmtPrinterHelper Helper(nullptr, {}); |
| 5363 | print_elem(OS, Helper, *this); |
| 5364 | } |
| 5365 | |
| 5366 | static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper, |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5367 | const CFGElement &E) { |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5368 | switch (E.getKind()) { |
| 5369 | case CFGElement::Kind::Statement: |
| 5370 | case CFGElement::Kind::CXXRecordTypedCall: |
| 5371 | case CFGElement::Kind::Constructor: { |
| 5372 | CFGStmt CS = E.castAs<CFGStmt>(); |
| 5373 | const Stmt *S = CS.getStmt(); |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5374 | assert(S != nullptr && "Expecting non-null Stmt"); |
| 5375 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5376 | // special printing for statement-expressions. |
| 5377 | if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) { |
| 5378 | const CompoundStmt *Sub = SE->getSubStmt(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5379 | |
Benjamin Kramer | 5733e35 | 2015-07-18 17:09:36 +0000 | [diff] [blame] | 5380 | auto Children = Sub->children(); |
| 5381 | if (Children.begin() != Children.end()) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5382 | OS << "({ ... ; "; |
| 5383 | Helper.handledStmt(*SE->getSubStmt()->body_rbegin(),OS); |
| 5384 | OS << " })\n"; |
| 5385 | return; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 5386 | } |
| 5387 | } |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5388 | // special printing for comma expressions. |
| 5389 | if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) { |
| 5390 | if (B->getOpcode() == BO_Comma) { |
| 5391 | OS << "... , "; |
| 5392 | Helper.handledStmt(B->getRHS(),OS); |
| 5393 | OS << '\n'; |
| 5394 | return; |
| 5395 | } |
| 5396 | } |
| 5397 | S->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5398 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5399 | if (auto VTC = E.getAs<CFGCXXRecordTypedCall>()) { |
| 5400 | if (isa<CXXOperatorCallExpr>(S)) |
| 5401 | OS << " (OperatorCall)"; |
| 5402 | OS << " (CXXRecordTypedCall"; |
| 5403 | print_construction_context(OS, Helper, VTC->getConstructionContext()); |
| 5404 | OS << ")"; |
| 5405 | } else if (isa<CXXOperatorCallExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 5406 | OS << " (OperatorCall)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5407 | } else if (isa<CXXBindTemporaryExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 5408 | OS << " (BindTemporary)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5409 | } else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5410 | OS << " (CXXConstructExpr"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5411 | if (Optional<CFGConstructor> CE = E.getAs<CFGConstructor>()) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5412 | print_construction_context(OS, Helper, CE->getConstructionContext()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5413 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5414 | OS << ", " << CCE->getType().getAsString() << ")"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5415 | } else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) { |
Ted Kremenek | 0ffba93 | 2011-12-21 19:32:38 +0000 | [diff] [blame] | 5416 | OS << " (" << CE->getStmtClassName() << ", " |
| 5417 | << CE->getCastKindName() |
| 5418 | << ", " << CE->getType().getAsString() |
| 5419 | << ")"; |
| 5420 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5421 | |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5422 | // Expressions need a newline. |
| 5423 | if (isa<Expr>(S)) |
| 5424 | OS << '\n'; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5425 | |
| 5426 | break; |
| 5427 | } |
| 5428 | |
| 5429 | case CFGElement::Kind::Initializer: |
| 5430 | print_initializer(OS, Helper, E.castAs<CFGInitializer>().getInitializer()); |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 5431 | OS << '\n'; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5432 | break; |
| 5433 | |
| 5434 | case CFGElement::Kind::AutomaticObjectDtor: { |
| 5435 | CFGAutomaticObjDtor DE = E.castAs<CFGAutomaticObjDtor>(); |
| 5436 | const VarDecl *VD = DE.getVarDecl(); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5437 | Helper.handleDecl(VD, OS); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5438 | |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 5439 | QualType T = VD->getType(); |
| 5440 | if (T->isReferenceType()) |
| 5441 | T = getReferenceInitTemporaryType(VD->getInit(), nullptr); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5442 | |
Artem Dergachev | ead98ea | 2019-08-28 18:44:42 +0000 | [diff] [blame] | 5443 | OS << ".~"; |
| 5444 | T.getUnqualifiedType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
| 5445 | OS << "() (Implicit destructor)\n"; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5446 | break; |
| 5447 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 5448 | |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5449 | case CFGElement::Kind::LifetimeEnds: |
| 5450 | Helper.handleDecl(E.castAs<CFGLifetimeEnds>().getVarDecl(), OS); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 5451 | OS << " (Lifetime ends)\n"; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5452 | break; |
| 5453 | |
| 5454 | case CFGElement::Kind::LoopExit: |
| 5455 | OS << E.castAs<CFGLoopExit>().getLoopStmt()->getStmtClassName() << " (LoopExit)\n"; |
| 5456 | break; |
| 5457 | |
| 5458 | case CFGElement::Kind::ScopeBegin: |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 5459 | OS << "CFGScopeBegin("; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5460 | if (const VarDecl *VD = E.castAs<CFGScopeBegin>().getVarDecl()) |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 5461 | OS << VD->getQualifiedNameAsString(); |
| 5462 | OS << ")\n"; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5463 | break; |
| 5464 | |
| 5465 | case CFGElement::Kind::ScopeEnd: |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 5466 | OS << "CFGScopeEnd("; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5467 | if (const VarDecl *VD = E.castAs<CFGScopeEnd>().getVarDecl()) |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 5468 | OS << VD->getQualifiedNameAsString(); |
| 5469 | OS << ")\n"; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5470 | break; |
| 5471 | |
| 5472 | case CFGElement::Kind::NewAllocator: |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 5473 | OS << "CFGNewAllocator("; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5474 | if (const CXXNewExpr *AllocExpr = E.castAs<CFGNewAllocator>().getAllocatorExpr()) |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 5475 | AllocExpr->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
| 5476 | OS << ")\n"; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5477 | break; |
| 5478 | |
| 5479 | case CFGElement::Kind::DeleteDtor: { |
| 5480 | CFGDeleteDtor DE = E.castAs<CFGDeleteDtor>(); |
| 5481 | const CXXRecordDecl *RD = DE.getCXXRecordDecl(); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 5482 | if (!RD) |
| 5483 | return; |
| 5484 | CXXDeleteExpr *DelExpr = |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5485 | const_cast<CXXDeleteExpr*>(DE.getDeleteExpr()); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5486 | Helper.handledStmt(cast<Stmt>(DelExpr->getArgument()), OS); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 5487 | OS << "->~" << RD->getName().str() << "()"; |
| 5488 | OS << " (Implicit destructor)\n"; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5489 | break; |
| 5490 | } |
| 5491 | |
| 5492 | case CFGElement::Kind::BaseDtor: { |
| 5493 | const CXXBaseSpecifier *BS = E.castAs<CFGBaseDtor>().getBaseSpecifier(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 5494 | OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 5495 | OS << " (Base object destructor)\n"; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5496 | break; |
| 5497 | } |
| 5498 | |
| 5499 | case CFGElement::Kind::MemberDtor: { |
| 5500 | const FieldDecl *FD = E.castAs<CFGMemberDtor>().getFieldDecl(); |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 5501 | const Type *T = FD->getType()->getBaseElementTypeUnsafe(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 5502 | OS << "this->" << FD->getName(); |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 5503 | OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 5504 | OS << " (Member object destructor)\n"; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5505 | break; |
| 5506 | } |
| 5507 | |
| 5508 | case CFGElement::Kind::TemporaryDtor: { |
| 5509 | const CXXBindTemporaryExpr *BT = E.castAs<CFGTemporaryDtor>().getBindTemporaryExpr(); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 5510 | OS << "~"; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5511 | BT->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 5512 | OS << "() (Temporary object destructor)\n"; |
Kristof Umann | f174670 | 2019-09-12 19:52:34 +0000 | [diff] [blame] | 5513 | break; |
| 5514 | } |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5515 | } |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 5516 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5517 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5518 | static void print_block(raw_ostream &OS, const CFG* cfg, |
| 5519 | const CFGBlock &B, |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5520 | StmtPrinterHelper &Helper, bool print_edges, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5521 | bool ShowColors) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5522 | Helper.setBlockID(B.getBlockID()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5523 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5524 | // Print the header. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5525 | if (ShowColors) |
| 5526 | OS.changeColor(raw_ostream::YELLOW, true); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5527 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5528 | OS << "\n [B" << B.getBlockID(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5529 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5530 | if (&B == &cfg->getEntry()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5531 | OS << " (ENTRY)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5532 | else if (&B == &cfg->getExit()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5533 | OS << " (EXIT)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5534 | else if (&B == cfg->getIndirectGotoBlock()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5535 | OS << " (INDIRECT GOTO DISPATCH)]\n"; |
Jordan Rose | 398fb00 | 2014-04-01 16:39:33 +0000 | [diff] [blame] | 5536 | else if (B.hasNoReturnElement()) |
| 5537 | OS << " (NORETURN)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5538 | else |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5539 | OS << "]\n"; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5540 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5541 | if (ShowColors) |
| 5542 | OS.resetColor(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5543 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5544 | // Print the label of this block. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5545 | if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5546 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5547 | OS << " "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5548 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5549 | if (LabelStmt *L = dyn_cast<LabelStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5550 | OS << L->getName(); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5551 | else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5552 | OS << "case "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5553 | if (C->getLHS()) |
| 5554 | C->getLHS()->printPretty(OS, &Helper, |
| 5555 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5556 | if (C->getRHS()) { |
| 5557 | OS << " ... "; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5558 | C->getRHS()->printPretty(OS, &Helper, |
| 5559 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5560 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5561 | } else if (isa<DefaultStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5562 | OS << "default"; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5563 | else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5564 | OS << "catch ("; |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 5565 | if (CS->getExceptionDecl()) |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5566 | CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()), |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 5567 | 0); |
| 5568 | else |
| 5569 | OS << "..."; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5570 | OS << ")"; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 5571 | } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) { |
| 5572 | OS << "__except ("; |
| 5573 | ES->getFilterExpr()->printPretty(OS, &Helper, |
| 5574 | PrintingPolicy(Helper.getLangOpts()), 0); |
| 5575 | OS << ")"; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5576 | } else |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 5577 | llvm_unreachable("Invalid label statement in CFGBlock."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5578 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5579 | OS << ":\n"; |
| 5580 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5581 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5582 | // Iterate through the statements in the block and print them. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5583 | unsigned j = 1; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5584 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5585 | for (CFGBlock::const_iterator I = B.begin(), E = B.end() ; |
| 5586 | I != E ; ++I, ++j ) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5587 | // Print the statement # in the basic block and the statement itself. |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5588 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5589 | OS << " "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5590 | |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5591 | OS << llvm::format("%3d", j) << ": "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5592 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5593 | Helper.setStmtID(j); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5594 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5595 | print_elem(OS, Helper, *I); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5596 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5597 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5598 | // Print the terminator of this block. |
Artem Dergachev | 4e53032 | 2019-05-24 01:34:22 +0000 | [diff] [blame] | 5599 | if (B.getTerminator().isValid()) { |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5600 | if (ShowColors) |
| 5601 | OS.changeColor(raw_ostream::GREEN); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5602 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5603 | OS << " T: "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5604 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5605 | Helper.setBlockID(-1); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5606 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5607 | PrintingPolicy PP(Helper.getLangOpts()); |
| 5608 | CFGBlockTerminatorPrint TPrinter(OS, &Helper, PP); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5609 | TPrinter.print(B.getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5610 | OS << '\n'; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5611 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5612 | if (ShowColors) |
| 5613 | OS.resetColor(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5614 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5615 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5616 | if (print_edges) { |
| 5617 | // Print the predecessors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5618 | if (!B.pred_empty()) { |
Rui Ueyama | 4d41c33 | 2019-08-02 07:22:34 +0000 | [diff] [blame] | 5619 | const raw_ostream::Colors Color = raw_ostream::BLUE; |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5620 | if (ShowColors) |
| 5621 | OS.changeColor(Color); |
| 5622 | OS << " Preds " ; |
| 5623 | if (ShowColors) |
| 5624 | OS.resetColor(); |
| 5625 | OS << '(' << B.pred_size() << "):"; |
| 5626 | unsigned i = 0; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5627 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5628 | if (ShowColors) |
| 5629 | OS.changeColor(Color); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5630 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5631 | for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end(); |
| 5632 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 5633 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5634 | OS << "\n "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5635 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 5636 | CFGBlock *B = *I; |
| 5637 | bool Reachable = true; |
| 5638 | if (!B) { |
| 5639 | Reachable = false; |
| 5640 | B = I->getPossiblyUnreachableBlock(); |
| 5641 | } |
| 5642 | |
| 5643 | OS << " B" << B->getBlockID(); |
| 5644 | if (!Reachable) |
| 5645 | OS << "(Unreachable)"; |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5646 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5647 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5648 | if (ShowColors) |
| 5649 | OS.resetColor(); |
| 5650 | |
| 5651 | OS << '\n'; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5652 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5653 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5654 | // Print the successors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5655 | if (!B.succ_empty()) { |
Rui Ueyama | 4d41c33 | 2019-08-02 07:22:34 +0000 | [diff] [blame] | 5656 | const raw_ostream::Colors Color = raw_ostream::MAGENTA; |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5657 | if (ShowColors) |
| 5658 | OS.changeColor(Color); |
| 5659 | OS << " Succs "; |
| 5660 | if (ShowColors) |
| 5661 | OS.resetColor(); |
| 5662 | OS << '(' << B.succ_size() << "):"; |
| 5663 | unsigned i = 0; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5664 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5665 | if (ShowColors) |
| 5666 | OS.changeColor(Color); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5667 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5668 | for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end(); |
| 5669 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 5670 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5671 | OS << "\n "; |
| 5672 | |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 5673 | CFGBlock *B = *I; |
| 5674 | |
| 5675 | bool Reachable = true; |
| 5676 | if (!B) { |
| 5677 | Reachable = false; |
| 5678 | B = I->getPossiblyUnreachableBlock(); |
| 5679 | } |
| 5680 | |
| 5681 | if (B) { |
| 5682 | OS << " B" << B->getBlockID(); |
| 5683 | if (!Reachable) |
| 5684 | OS << "(Unreachable)"; |
| 5685 | } |
| 5686 | else { |
| 5687 | OS << " NULL"; |
| 5688 | } |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5689 | } |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 5690 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5691 | if (ShowColors) |
| 5692 | OS.resetColor(); |
| 5693 | OS << '\n'; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5694 | } |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5695 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5696 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5697 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5698 | /// dump - A simple pretty printer of a CFG that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5699 | void CFG::dump(const LangOptions &LO, bool ShowColors) const { |
| 5700 | print(llvm::errs(), LO, ShowColors); |
| 5701 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5702 | |
| 5703 | /// 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] | 5704 | void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5705 | StmtPrinterHelper Helper(this, LO); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5706 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5707 | // Print the entry block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5708 | print_block(OS, this, getEntry(), Helper, true, ShowColors); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5709 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5710 | // Iterate through the CFGBlocks and print them one by one. |
| 5711 | for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) { |
| 5712 | // Skip the entry block, because we already printed it. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 5713 | if (&(**I) == &getEntry() || &(**I) == &getExit()) |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5714 | continue; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5715 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5716 | print_block(OS, this, **I, Helper, true, ShowColors); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5717 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5718 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5719 | // Print the exit block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5720 | print_block(OS, this, getExit(), Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5721 | OS << '\n'; |
Ted Kremenek | e03879b | 2008-11-24 20:50:24 +0000 | [diff] [blame] | 5722 | OS.flush(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5723 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5724 | |
Kristof Umann | 92541e3 | 2019-08-14 17:05:55 +0000 | [diff] [blame] | 5725 | size_t CFGBlock::getIndexInCFG() const { |
| 5726 | return llvm::find(*getParent(), this) - getParent()->begin(); |
| 5727 | } |
| 5728 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5729 | /// dump - A simply pretty printer of a CFGBlock that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5730 | void CFGBlock::dump(const CFG* cfg, const LangOptions &LO, |
| 5731 | bool ShowColors) const { |
| 5732 | print(llvm::errs(), cfg, LO, ShowColors); |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5733 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5734 | |
Yaron Keren | cdae941 | 2016-01-29 19:38:18 +0000 | [diff] [blame] | 5735 | LLVM_DUMP_METHOD void CFGBlock::dump() const { |
Anna Zaks | a6fea13 | 2014-06-13 23:47:38 +0000 | [diff] [blame] | 5736 | dump(getParent(), LangOptions(), false); |
| 5737 | } |
| 5738 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5739 | /// print - A simple pretty printer of a CFGBlock that outputs to an ostream. |
| 5740 | /// Generally this will only be called from CFG::print. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5741 | void CFGBlock::print(raw_ostream &OS, const CFG* cfg, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5742 | const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5743 | StmtPrinterHelper Helper(cfg, LO); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5744 | print_block(OS, cfg, *this, Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5745 | OS << '\n'; |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 5746 | } |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5747 | |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5748 | /// printTerminator - A simple pretty printer of the terminator of a CFGBlock. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5749 | void CFGBlock::printTerminator(raw_ostream &OS, |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5750 | const LangOptions &LO) const { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5751 | CFGBlockTerminatorPrint TPrinter(OS, nullptr, PrintingPolicy(LO)); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5752 | TPrinter.print(getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5753 | } |
| 5754 | |
Csaba Dabis | dea605e | 2019-05-29 18:29:31 +0000 | [diff] [blame] | 5755 | /// printTerminatorJson - Pretty-prints the terminator in JSON format. |
| 5756 | void CFGBlock::printTerminatorJson(raw_ostream &Out, const LangOptions &LO, |
| 5757 | bool AddQuotes) const { |
| 5758 | std::string Buf; |
| 5759 | llvm::raw_string_ostream TempOut(Buf); |
| 5760 | |
| 5761 | printTerminator(TempOut, LO); |
| 5762 | |
| 5763 | Out << JsonFormat(TempOut.str(), AddQuotes); |
| 5764 | } |
| 5765 | |
Kristof Umann | dd53bdb | 2019-08-14 12:20:08 +0000 | [diff] [blame] | 5766 | // Returns true if by simply looking at the block, we can be sure that it |
| 5767 | // results in a sink during analysis. This is useful to know when the analysis |
| 5768 | // was interrupted, and we try to figure out if it would sink eventually. |
| 5769 | // There may be many more reasons why a sink would appear during analysis |
| 5770 | // (eg. checkers may generate sinks arbitrarily), but here we only consider |
| 5771 | // sinks that would be obvious by looking at the CFG. |
| 5772 | static bool isImmediateSinkBlock(const CFGBlock *Blk) { |
| 5773 | if (Blk->hasNoReturnElement()) |
| 5774 | return true; |
| 5775 | |
| 5776 | // FIXME: Throw-expressions are currently generating sinks during analysis: |
| 5777 | // they're not supported yet, and also often used for actually terminating |
| 5778 | // the program. So we should treat them as sinks in this analysis as well, |
| 5779 | // at least for now, but once we have better support for exceptions, |
| 5780 | // we'd need to carefully handle the case when the throw is being |
| 5781 | // immediately caught. |
| 5782 | if (std::any_of(Blk->begin(), Blk->end(), [](const CFGElement &Elm) { |
| 5783 | if (Optional<CFGStmt> StmtElm = Elm.getAs<CFGStmt>()) |
| 5784 | if (isa<CXXThrowExpr>(StmtElm->getStmt())) |
| 5785 | return true; |
| 5786 | return false; |
| 5787 | })) |
| 5788 | return true; |
| 5789 | |
| 5790 | return false; |
| 5791 | } |
| 5792 | |
| 5793 | bool CFGBlock::isInevitablySinking() const { |
| 5794 | const CFG &Cfg = *getParent(); |
| 5795 | |
| 5796 | const CFGBlock *StartBlk = this; |
| 5797 | if (isImmediateSinkBlock(StartBlk)) |
| 5798 | return true; |
| 5799 | |
| 5800 | llvm::SmallVector<const CFGBlock *, 32> DFSWorkList; |
| 5801 | llvm::SmallPtrSet<const CFGBlock *, 32> Visited; |
| 5802 | |
| 5803 | DFSWorkList.push_back(StartBlk); |
| 5804 | while (!DFSWorkList.empty()) { |
| 5805 | const CFGBlock *Blk = DFSWorkList.back(); |
| 5806 | DFSWorkList.pop_back(); |
| 5807 | Visited.insert(Blk); |
| 5808 | |
| 5809 | // If at least one path reaches the CFG exit, it means that control is |
| 5810 | // returned to the caller. For now, say that we are not sure what |
| 5811 | // happens next. If necessary, this can be improved to analyze |
| 5812 | // the parent StackFrameContext's call site in a similar manner. |
| 5813 | if (Blk == &Cfg.getExit()) |
| 5814 | return false; |
| 5815 | |
| 5816 | for (const auto &Succ : Blk->succs()) { |
| 5817 | if (const CFGBlock *SuccBlk = Succ.getReachableBlock()) { |
| 5818 | if (!isImmediateSinkBlock(SuccBlk) && !Visited.count(SuccBlk)) { |
| 5819 | // If the block has reachable child blocks that aren't no-return, |
| 5820 | // add them to the worklist. |
| 5821 | DFSWorkList.push_back(SuccBlk); |
| 5822 | } |
| 5823 | } |
| 5824 | } |
| 5825 | } |
| 5826 | |
| 5827 | // Nothing reached the exit. It can only mean one thing: there's no return. |
| 5828 | return true; |
| 5829 | } |
| 5830 | |
Kristof Umann | d5c9d9b | 2019-07-05 09:52:00 +0000 | [diff] [blame] | 5831 | const Expr *CFGBlock::getLastCondition() const { |
| 5832 | // If the terminator is a temporary dtor or a virtual base, etc, we can't |
| 5833 | // retrieve a meaningful condition, bail out. |
| 5834 | if (Terminator.getKind() != CFGTerminator::StmtBranch) |
| 5835 | return nullptr; |
| 5836 | |
| 5837 | // Also, if this method was called on a block that doesn't have 2 successors, |
| 5838 | // this block doesn't have retrievable condition. |
| 5839 | if (succ_size() < 2) |
| 5840 | return nullptr; |
| 5841 | |
| 5842 | auto StmtElem = rbegin()->getAs<CFGStmt>(); |
| 5843 | if (!StmtElem) |
| 5844 | return nullptr; |
| 5845 | |
| 5846 | const Stmt *Cond = StmtElem->getStmt(); |
| 5847 | if (isa<ObjCForCollectionStmt>(Cond)) |
| 5848 | return nullptr; |
| 5849 | |
| 5850 | // Only ObjCForCollectionStmt is known not to be a non-Expr terminator, hence |
| 5851 | // the cast<>. |
| 5852 | return cast<Expr>(Cond)->IgnoreParens(); |
| 5853 | } |
| 5854 | |
Kristof Umann | 9854d77 | 2019-07-03 13:03:33 +0000 | [diff] [blame] | 5855 | Stmt *CFGBlock::getTerminatorCondition(bool StripParens) { |
| 5856 | Stmt *Terminator = getTerminatorStmt(); |
| 5857 | if (!Terminator) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5858 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5859 | |
Kristof Umann | 9854d77 | 2019-07-03 13:03:33 +0000 | [diff] [blame] | 5860 | Expr *E = nullptr; |
| 5861 | |
| 5862 | switch (Terminator->getStmtClass()) { |
| 5863 | default: |
| 5864 | break; |
| 5865 | |
| 5866 | case Stmt::CXXForRangeStmtClass: |
| 5867 | E = cast<CXXForRangeStmt>(Terminator)->getCond(); |
| 5868 | break; |
| 5869 | |
| 5870 | case Stmt::ForStmtClass: |
| 5871 | E = cast<ForStmt>(Terminator)->getCond(); |
| 5872 | break; |
| 5873 | |
| 5874 | case Stmt::WhileStmtClass: |
| 5875 | E = cast<WhileStmt>(Terminator)->getCond(); |
| 5876 | break; |
| 5877 | |
| 5878 | case Stmt::DoStmtClass: |
| 5879 | E = cast<DoStmt>(Terminator)->getCond(); |
| 5880 | break; |
| 5881 | |
| 5882 | case Stmt::IfStmtClass: |
| 5883 | E = cast<IfStmt>(Terminator)->getCond(); |
| 5884 | break; |
| 5885 | |
| 5886 | case Stmt::ChooseExprClass: |
| 5887 | E = cast<ChooseExpr>(Terminator)->getCond(); |
| 5888 | break; |
| 5889 | |
| 5890 | case Stmt::IndirectGotoStmtClass: |
| 5891 | E = cast<IndirectGotoStmt>(Terminator)->getTarget(); |
| 5892 | break; |
| 5893 | |
| 5894 | case Stmt::SwitchStmtClass: |
| 5895 | E = cast<SwitchStmt>(Terminator)->getCond(); |
| 5896 | break; |
| 5897 | |
| 5898 | case Stmt::BinaryConditionalOperatorClass: |
| 5899 | E = cast<BinaryConditionalOperator>(Terminator)->getCond(); |
| 5900 | break; |
| 5901 | |
| 5902 | case Stmt::ConditionalOperatorClass: |
| 5903 | E = cast<ConditionalOperator>(Terminator)->getCond(); |
| 5904 | break; |
| 5905 | |
| 5906 | case Stmt::BinaryOperatorClass: // '&&' and '||' |
| 5907 | E = cast<BinaryOperator>(Terminator)->getLHS(); |
| 5908 | break; |
| 5909 | |
| 5910 | case Stmt::ObjCForCollectionStmtClass: |
| 5911 | return Terminator; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5912 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5913 | |
Kristof Umann | 9854d77 | 2019-07-03 13:03:33 +0000 | [diff] [blame] | 5914 | if (!StripParens) |
| 5915 | return E; |
| 5916 | |
| 5917 | return E ? E->IgnoreParens() : nullptr; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5918 | } |
| 5919 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5920 | //===----------------------------------------------------------------------===// |
| 5921 | // CFG Graphviz Visualization |
| 5922 | //===----------------------------------------------------------------------===// |
| 5923 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5924 | #ifndef NDEBUG |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5925 | static StmtPrinterHelper* GraphHelper; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5926 | #endif |
| 5927 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5928 | void CFG::viewCFG(const LangOptions &LO) const { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5929 | #ifndef NDEBUG |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5930 | StmtPrinterHelper H(this, LO); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5931 | GraphHelper = &H; |
| 5932 | llvm::ViewGraph(this,"CFG"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5933 | GraphHelper = nullptr; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5934 | #endif |
| 5935 | } |
| 5936 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5937 | namespace llvm { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5938 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5939 | template<> |
| 5940 | struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5941 | DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {} |
Tobias Grosser | 9fc223a | 2009-11-30 14:16:05 +0000 | [diff] [blame] | 5942 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5943 | static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) { |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5944 | #ifndef NDEBUG |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5945 | std::string OutSStr; |
| 5946 | llvm::raw_string_ostream Out(OutSStr); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5947 | print_block(Out,Graph, *Node, *GraphHelper, false, false); |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5948 | std::string& OutStr = Out.str(); |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5949 | |
| 5950 | if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); |
| 5951 | |
| 5952 | // Process string output to make it nicer... |
| 5953 | for (unsigned i = 0; i != OutStr.length(); ++i) |
| 5954 | if (OutStr[i] == '\n') { // Left justify |
| 5955 | OutStr[i] = '\\'; |
| 5956 | OutStr.insert(OutStr.begin()+i+1, 'l'); |
| 5957 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5958 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5959 | return OutStr; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5960 | #else |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5961 | return {}; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5962 | #endif |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5963 | } |
| 5964 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5965 | |
| 5966 | } // namespace llvm |