Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1 | //===- CFG.cpp - Classes for representing and building CFGs ---------------===// |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 5b12ab8 | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the CFG and CFGBuilder classes for representing and |
| 11 | // building Control-Flow Graphs (CFGs) from ASTs. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Ted Kremenek | 6796fbd | 2009-07-16 18:13:04 +0000 | [diff] [blame] | 15 | #include "clang/Analysis/CFG.h" |
Benjamin Kramer | 1ea8e09 | 2012-07-04 17:04:04 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 17 | #include "clang/AST/Attr.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 18 | #include "clang/AST/Decl.h" |
| 19 | #include "clang/AST/DeclBase.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclCXX.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclGroup.h" |
| 22 | #include "clang/AST/Expr.h" |
| 23 | #include "clang/AST/ExprCXX.h" |
| 24 | #include "clang/AST/OperationKinds.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 25 | #include "clang/AST/PrettyPrinter.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 26 | #include "clang/AST/Stmt.h" |
| 27 | #include "clang/AST/StmtCXX.h" |
| 28 | #include "clang/AST/StmtObjC.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 29 | #include "clang/AST/StmtVisitor.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 30 | #include "clang/AST/Type.h" |
| 31 | #include "clang/Analysis/Support/BumpVector.h" |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 32 | #include "clang/Analysis/ConstructionContext.h" |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 33 | #include "clang/Basic/Builtins.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 34 | #include "clang/Basic/ExceptionSpecificationType.h" |
| 35 | #include "clang/Basic/LLVM.h" |
| 36 | #include "clang/Basic/LangOptions.h" |
| 37 | #include "clang/Basic/SourceLocation.h" |
| 38 | #include "clang/Basic/Specifiers.h" |
| 39 | #include "llvm/ADT/APInt.h" |
| 40 | #include "llvm/ADT/APSInt.h" |
| 41 | #include "llvm/ADT/ArrayRef.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 42 | #include "llvm/ADT/DenseMap.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 43 | #include "llvm/ADT/Optional.h" |
| 44 | #include "llvm/ADT/STLExtras.h" |
| 45 | #include "llvm/ADT/SetVector.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 46 | #include "llvm/ADT/SmallPtrSet.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 47 | #include "llvm/ADT/SmallVector.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Allocator.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 49 | #include "llvm/Support/Casting.h" |
| 50 | #include "llvm/Support/Compiler.h" |
| 51 | #include "llvm/Support/DOTGraphTraits.h" |
| 52 | #include "llvm/Support/ErrorHandling.h" |
Benjamin Kramer | 89b422c | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 53 | #include "llvm/Support/Format.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 54 | #include "llvm/Support/GraphWriter.h" |
| 55 | #include "llvm/Support/SaveAndRestore.h" |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 56 | #include "llvm/Support/raw_ostream.h" |
| 57 | #include <cassert> |
| 58 | #include <memory> |
| 59 | #include <string> |
| 60 | #include <tuple> |
| 61 | #include <utility> |
| 62 | #include <vector> |
Ted Kremenek | e5ccf9a | 2008-01-11 00:40:29 +0000 | [diff] [blame] | 63 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 64 | using namespace clang; |
| 65 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 66 | static SourceLocation GetEndLoc(Decl *D) { |
| 67 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 68 | if (Expr *Ex = VD->getInit()) |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 69 | return Ex->getSourceRange().getEnd(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 70 | return D->getLocation(); |
Ted Kremenek | 8889bb3 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 71 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 72 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 73 | /// Helper for tryNormalizeBinaryOperator. Attempts to extract an IntegerLiteral |
| 74 | /// or EnumConstantDecl from the given Expr. If it fails, returns nullptr. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 75 | static const Expr *tryTransformToIntOrEnumConstant(const Expr *E) { |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 76 | E = E->IgnoreParens(); |
| 77 | if (isa<IntegerLiteral>(E)) |
| 78 | return E; |
| 79 | if (auto *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts())) |
| 80 | return isa<EnumConstantDecl>(DR->getDecl()) ? DR : nullptr; |
| 81 | return nullptr; |
| 82 | } |
| 83 | |
| 84 | /// Tries to interpret a binary operator into `Decl Op Expr` form, if Expr is |
| 85 | /// an integer literal or an enum constant. |
| 86 | /// |
| 87 | /// If this fails, at least one of the returned DeclRefExpr or Expr will be |
| 88 | /// null. |
| 89 | static std::tuple<const DeclRefExpr *, BinaryOperatorKind, const Expr *> |
| 90 | tryNormalizeBinaryOperator(const BinaryOperator *B) { |
| 91 | BinaryOperatorKind Op = B->getOpcode(); |
| 92 | |
| 93 | const Expr *MaybeDecl = B->getLHS(); |
| 94 | const Expr *Constant = tryTransformToIntOrEnumConstant(B->getRHS()); |
| 95 | // Expr looked like `0 == Foo` instead of `Foo == 0` |
| 96 | if (Constant == nullptr) { |
| 97 | // Flip the operator |
| 98 | if (Op == BO_GT) |
| 99 | Op = BO_LT; |
| 100 | else if (Op == BO_GE) |
| 101 | Op = BO_LE; |
| 102 | else if (Op == BO_LT) |
| 103 | Op = BO_GT; |
| 104 | else if (Op == BO_LE) |
| 105 | Op = BO_GE; |
| 106 | |
| 107 | MaybeDecl = B->getRHS(); |
| 108 | Constant = tryTransformToIntOrEnumConstant(B->getLHS()); |
| 109 | } |
| 110 | |
| 111 | auto *D = dyn_cast<DeclRefExpr>(MaybeDecl->IgnoreParenImpCasts()); |
| 112 | return std::make_tuple(D, Op, Constant); |
| 113 | } |
| 114 | |
| 115 | /// For an expression `x == Foo && x == Bar`, this determines whether the |
| 116 | /// `Foo` and `Bar` are either of the same enumeration type, or both integer |
| 117 | /// literals. |
| 118 | /// |
| 119 | /// It's an error to pass this arguments that are not either IntegerLiterals |
| 120 | /// or DeclRefExprs (that have decls of type EnumConstantDecl) |
| 121 | static bool areExprTypesCompatible(const Expr *E1, const Expr *E2) { |
| 122 | // User intent isn't clear if they're mixing int literals with enum |
| 123 | // constants. |
| 124 | if (isa<IntegerLiteral>(E1) != isa<IntegerLiteral>(E2)) |
| 125 | return false; |
| 126 | |
| 127 | // Integer literal comparisons, regardless of literal type, are acceptable. |
| 128 | if (isa<IntegerLiteral>(E1)) |
| 129 | return true; |
| 130 | |
| 131 | // IntegerLiterals are handled above and only EnumConstantDecls are expected |
| 132 | // beyond this point |
| 133 | assert(isa<DeclRefExpr>(E1) && isa<DeclRefExpr>(E2)); |
| 134 | auto *Decl1 = cast<DeclRefExpr>(E1)->getDecl(); |
| 135 | auto *Decl2 = cast<DeclRefExpr>(E2)->getDecl(); |
| 136 | |
| 137 | assert(isa<EnumConstantDecl>(Decl1) && isa<EnumConstantDecl>(Decl2)); |
| 138 | const DeclContext *DC1 = Decl1->getDeclContext(); |
| 139 | const DeclContext *DC2 = Decl2->getDeclContext(); |
| 140 | |
| 141 | assert(isa<EnumDecl>(DC1) && isa<EnumDecl>(DC2)); |
| 142 | return DC1 == DC2; |
| 143 | } |
| 144 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 145 | namespace { |
| 146 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 147 | class CFGBuilder; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 148 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 149 | /// The CFG builder uses a recursive algorithm to build the CFG. When |
| 150 | /// we process an expression, sometimes we know that we must add the |
| 151 | /// subexpressions as block-level expressions. For example: |
| 152 | /// |
| 153 | /// exp1 || exp2 |
| 154 | /// |
| 155 | /// When processing the '||' expression, we know that exp1 and exp2 |
| 156 | /// need to be added as block-level expressions, even though they |
| 157 | /// might not normally need to be. AddStmtChoice records this |
| 158 | /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then |
| 159 | /// the builder has an option not to add a subexpression as a |
| 160 | /// block-level expression. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 161 | class AddStmtChoice { |
| 162 | public: |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 163 | enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 }; |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 164 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 165 | AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {} |
Ted Kremenek | 5d2bb1b | 2010-03-02 21:43:54 +0000 | [diff] [blame] | 166 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 167 | bool alwaysAdd(CFGBuilder &builder, |
| 168 | const Stmt *stmt) const; |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 169 | |
| 170 | /// Return a copy of this object, except with the 'always-add' bit |
| 171 | /// set as specified. |
| 172 | AddStmtChoice withAlwaysAdd(bool alwaysAdd) const { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 173 | return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 176 | private: |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 177 | Kind kind; |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 178 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 179 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 180 | /// LocalScope - Node in tree of local scopes created for C++ implicit |
| 181 | /// destructor calls generation. It contains list of automatic variables |
| 182 | /// declared in the scope and link to position in previous scope this scope |
| 183 | /// began in. |
| 184 | /// |
| 185 | /// The process of creating local scopes is as follows: |
| 186 | /// - Init CFGBuilder::ScopePos with invalid position (equivalent for null), |
| 187 | /// - Before processing statements in scope (e.g. CompoundStmt) create |
| 188 | /// LocalScope object using CFGBuilder::ScopePos as link to previous scope |
| 189 | /// and set CFGBuilder::ScopePos to the end of new scope, |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 190 | /// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 191 | /// at this VarDecl, |
| 192 | /// - For every normal (without jump) end of scope add to CFGBlock destructors |
| 193 | /// for objects in the current scope, |
| 194 | /// - For every jump add to CFGBlock destructors for objects |
| 195 | /// between CFGBuilder::ScopePos and local scope position saved for jump |
| 196 | /// target. Thanks to C++ restrictions on goto jumps we can be sure that |
| 197 | /// jump target position will be on the path to root from CFGBuilder::ScopePos |
| 198 | /// (adding any variable that doesn't need constructor to be called to |
| 199 | /// LocalScope can break this assumption), |
| 200 | /// |
| 201 | class LocalScope { |
| 202 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 203 | friend class const_iterator; |
| 204 | |
| 205 | using AutomaticVarsTy = BumpVector<VarDecl *>; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 206 | |
| 207 | /// const_iterator - Iterates local scope backwards and jumps to previous |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 208 | /// scope on reaching the beginning of currently iterated scope. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 209 | class const_iterator { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 210 | const LocalScope* Scope = nullptr; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 211 | |
| 212 | /// VarIter is guaranteed to be greater then 0 for every valid iterator. |
| 213 | /// Invalid iterator (with null Scope) has VarIter equal to 0. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 214 | unsigned VarIter = 0; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 215 | |
| 216 | public: |
| 217 | /// Create invalid iterator. Dereferencing invalid iterator is not allowed. |
| 218 | /// Incrementing invalid iterator is allowed and will result in invalid |
| 219 | /// iterator. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 220 | const_iterator() = default; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 221 | |
| 222 | /// Create valid iterator. In case when S.Prev is an invalid iterator and |
| 223 | /// I is equal to 0, this will create invalid iterator. |
| 224 | const_iterator(const LocalScope& S, unsigned I) |
| 225 | : Scope(&S), VarIter(I) { |
| 226 | // Iterator to "end" of scope is not allowed. Handle it by going up |
| 227 | // in scopes tree possibly up to invalid iterator in the root. |
| 228 | if (VarIter == 0 && Scope) |
| 229 | *this = Scope->Prev; |
| 230 | } |
| 231 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 232 | VarDecl *const* operator->() const { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 233 | assert(Scope && "Dereferencing invalid iterator is not allowed"); |
| 234 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 235 | return &Scope->Vars[VarIter - 1]; |
| 236 | } |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 237 | |
| 238 | const VarDecl *getFirstVarInScope() const { |
| 239 | assert(Scope && "Dereferencing invalid iterator is not allowed"); |
| 240 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
| 241 | return Scope->Vars[0]; |
| 242 | } |
| 243 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 244 | VarDecl *operator*() const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 245 | return *this->operator->(); |
| 246 | } |
| 247 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 248 | const_iterator &operator++() { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 249 | if (!Scope) |
| 250 | return *this; |
| 251 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 252 | assert(VarIter != 0 && "Iterator has invalid value of VarIter member"); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 253 | --VarIter; |
| 254 | if (VarIter == 0) |
| 255 | *this = Scope->Prev; |
| 256 | return *this; |
| 257 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 258 | const_iterator operator++(int) { |
| 259 | const_iterator P = *this; |
| 260 | ++*this; |
| 261 | return P; |
| 262 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 263 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 264 | bool operator==(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 265 | return Scope == rhs.Scope && VarIter == rhs.VarIter; |
| 266 | } |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 267 | bool operator!=(const const_iterator &rhs) const { |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 268 | return !(*this == rhs); |
| 269 | } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 270 | |
Aaron Ballman | 6734766 | 2015-02-15 22:00:28 +0000 | [diff] [blame] | 271 | explicit operator bool() const { |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 272 | return *this != const_iterator(); |
| 273 | } |
| 274 | |
| 275 | int distance(const_iterator L); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 276 | const_iterator shared_parent(const_iterator L); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 277 | bool pointsToFirstDeclaredVar() { return VarIter == 1; } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 278 | }; |
| 279 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 280 | private: |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 281 | BumpVectorContext ctx; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 282 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 283 | /// Automatic variables in order of declaration. |
| 284 | AutomaticVarsTy Vars; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 285 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 286 | /// Iterator to variable in previous scope that was declared just before |
| 287 | /// begin of this scope. |
| 288 | const_iterator Prev; |
| 289 | |
| 290 | public: |
| 291 | /// Constructs empty scope linked to previous scope in specified place. |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 292 | LocalScope(BumpVectorContext ctx, const_iterator P) |
| 293 | : ctx(std::move(ctx)), Vars(this->ctx, 4), Prev(P) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 294 | |
| 295 | /// Begin of scope in direction of CFG building (backwards). |
| 296 | const_iterator begin() const { return const_iterator(*this, Vars.size()); } |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 297 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 298 | void addVar(VarDecl *VD) { |
Ted Kremenek | c7bfdcd | 2011-02-15 02:47:45 +0000 | [diff] [blame] | 299 | Vars.push_back(VD, ctx); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 300 | } |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 301 | }; |
| 302 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 303 | } // namespace |
| 304 | |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 305 | /// distance - Calculates distance from this to L. L must be reachable from this |
| 306 | /// (with use of ++ operator). Cost of calculating the distance is linear w.r.t. |
| 307 | /// number of scopes between this and L. |
| 308 | int LocalScope::const_iterator::distance(LocalScope::const_iterator L) { |
| 309 | int D = 0; |
| 310 | const_iterator F = *this; |
| 311 | while (F.Scope != L.Scope) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 312 | assert(F != const_iterator() && |
| 313 | "L iterator is not reachable from F iterator."); |
Marcin Swiderski | e9862ce | 2010-09-30 22:42:32 +0000 | [diff] [blame] | 314 | D += F.VarIter; |
| 315 | F = F.Scope->Prev; |
| 316 | } |
| 317 | D += F.VarIter - L.VarIter; |
| 318 | return D; |
| 319 | } |
| 320 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 321 | /// Calculates the closest parent of this iterator |
| 322 | /// that is in a scope reachable through the parents of L. |
| 323 | /// I.e. when using 'goto' from this to L, the lifetime of all variables |
| 324 | /// between this and shared_parent(L) end. |
| 325 | LocalScope::const_iterator |
| 326 | LocalScope::const_iterator::shared_parent(LocalScope::const_iterator L) { |
| 327 | llvm::SmallPtrSet<const LocalScope *, 4> ScopesOfL; |
| 328 | while (true) { |
| 329 | ScopesOfL.insert(L.Scope); |
| 330 | if (L == const_iterator()) |
| 331 | break; |
| 332 | L = L.Scope->Prev; |
| 333 | } |
| 334 | |
| 335 | const_iterator F = *this; |
| 336 | while (true) { |
| 337 | if (ScopesOfL.count(F.Scope)) |
| 338 | return F; |
| 339 | assert(F != const_iterator() && |
| 340 | "L iterator is not reachable from F iterator."); |
| 341 | F = F.Scope->Prev; |
| 342 | } |
| 343 | } |
| 344 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 345 | namespace { |
| 346 | |
Jonathan Roelofs | 99bdd98 | 2015-05-19 18:51:56 +0000 | [diff] [blame] | 347 | /// Structure for specifying position in CFG during its build process. It |
| 348 | /// consists of CFGBlock that specifies position in CFG and |
| 349 | /// LocalScope::const_iterator that specifies position in LocalScope graph. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 350 | struct BlockScopePosPair { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 351 | CFGBlock *block = nullptr; |
| 352 | LocalScope::const_iterator scopePosition; |
| 353 | |
| 354 | BlockScopePosPair() = default; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 355 | BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 356 | : block(b), scopePosition(scopePos) {} |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 357 | }; |
| 358 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 359 | /// TryResult - a class representing a variant over the values |
| 360 | /// 'true', 'false', or 'unknown'. This is returned by tryEvaluateBool, |
| 361 | /// and is used by the CFGBuilder to decide if a branch condition |
| 362 | /// can be decided up front during CFG construction. |
| 363 | class TryResult { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 364 | int X = -1; |
| 365 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 366 | public: |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 367 | TryResult() = default; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 368 | TryResult(bool b) : X(b ? 1 : 0) {} |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 369 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 370 | bool isTrue() const { return X == 1; } |
| 371 | bool isFalse() const { return X == 0; } |
| 372 | bool isKnown() const { return X >= 0; } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 373 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 374 | void negate() { |
| 375 | assert(isKnown()); |
| 376 | X ^= 0x1; |
| 377 | } |
| 378 | }; |
| 379 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 380 | } // namespace |
| 381 | |
| 382 | static TryResult bothKnownTrue(TryResult R1, TryResult R2) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 383 | if (!R1.isKnown() || !R2.isKnown()) |
| 384 | return TryResult(); |
| 385 | return TryResult(R1.isTrue() && R2.isTrue()); |
| 386 | } |
| 387 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 388 | namespace { |
| 389 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 390 | class reverse_children { |
| 391 | llvm::SmallVector<Stmt *, 12> childrenBuf; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 392 | ArrayRef<Stmt *> children; |
| 393 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 394 | public: |
| 395 | reverse_children(Stmt *S); |
| 396 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 397 | using iterator = ArrayRef<Stmt *>::reverse_iterator; |
| 398 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 399 | iterator begin() const { return children.rbegin(); } |
| 400 | iterator end() const { return children.rend(); } |
| 401 | }; |
| 402 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 403 | } // namespace |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 404 | |
| 405 | reverse_children::reverse_children(Stmt *S) { |
| 406 | if (CallExpr *CE = dyn_cast<CallExpr>(S)) { |
| 407 | children = CE->getRawSubExprs(); |
| 408 | return; |
| 409 | } |
| 410 | switch (S->getStmtClass()) { |
Ted Kremenek | 7d86b9c | 2013-02-05 22:03:14 +0000 | [diff] [blame] | 411 | // Note: Fill in this switch with more cases we want to optimize. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 412 | case Stmt::InitListExprClass: { |
| 413 | InitListExpr *IE = cast<InitListExpr>(S); |
| 414 | children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()), |
| 415 | IE->getNumInits()); |
| 416 | return; |
| 417 | } |
| 418 | default: |
| 419 | break; |
| 420 | } |
| 421 | |
| 422 | // Default case for all other statements. |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 423 | for (Stmt *SubStmt : S->children()) |
| 424 | childrenBuf.push_back(SubStmt); |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 425 | |
| 426 | // This needs to be done *after* childrenBuf has been populated. |
| 427 | children = childrenBuf; |
| 428 | } |
| 429 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 430 | namespace { |
| 431 | |
Ted Kremenek | be9b33b | 2008-08-04 22:51:42 +0000 | [diff] [blame] | 432 | /// CFGBuilder - This class implements CFG construction from an AST. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 433 | /// The builder is stateful: an instance of the builder should be used to only |
| 434 | /// construct a single CFG. |
| 435 | /// |
| 436 | /// Example usage: |
| 437 | /// |
| 438 | /// CFGBuilder builder; |
Jonathan Roelofs | ab046c5 | 2015-07-27 16:05:36 +0000 | [diff] [blame] | 439 | /// std::unique_ptr<CFG> cfg = builder.buildCFG(decl, stmt1); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 440 | /// |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 441 | /// CFG construction is done via a recursive walk of an AST. We actually parse |
| 442 | /// the AST in reverse order so that the successor of a basic block is |
| 443 | /// constructed prior to its predecessor. This allows us to nicely capture |
| 444 | /// implicit fall-throughs without extra basic blocks. |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 445 | class CFGBuilder { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 446 | using JumpTarget = BlockScopePosPair; |
| 447 | using JumpSource = BlockScopePosPair; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 448 | |
Mike Stump | 0d76d07 | 2009-07-20 23:24:15 +0000 | [diff] [blame] | 449 | ASTContext *Context; |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 450 | std::unique_ptr<CFG> cfg; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 451 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 452 | // Current block. |
| 453 | CFGBlock *Block = nullptr; |
| 454 | |
| 455 | // Block after the current block. |
| 456 | CFGBlock *Succ = nullptr; |
| 457 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 458 | JumpTarget ContinueJumpTarget; |
| 459 | JumpTarget BreakJumpTarget; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 460 | JumpTarget SEHLeaveJumpTarget; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 461 | CFGBlock *SwitchTerminatedBlock = nullptr; |
| 462 | CFGBlock *DefaultCaseBlock = nullptr; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 463 | |
| 464 | // This can point either to a try or a __try block. The frontend forbids |
| 465 | // mixing both kinds in one function, so having one for both is enough. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 466 | CFGBlock *TryTerminatedBlock = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 467 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 468 | // Current position in local scope. |
| 469 | LocalScope::const_iterator ScopePos; |
| 470 | |
| 471 | // LabelMap records the mapping from Label expressions to their jump targets. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 472 | using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 473 | LabelMapTy LabelMap; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 474 | |
| 475 | // A list of blocks that end with a "goto" that must be backpatched to their |
| 476 | // resolved targets upon completion of CFG construction. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 477 | using BackpatchBlocksTy = std::vector<JumpSource>; |
Ted Kremenek | 8a63218 | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 478 | BackpatchBlocksTy BackpatchBlocks; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 479 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 480 | // A list of labels whose address has been taken (for indirect gotos). |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 481 | using LabelSetTy = llvm::SmallSetVector<LabelDecl *, 8>; |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 482 | LabelSetTy AddressTakenLabels; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 483 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 484 | // Information about the currently visited C++ object construction site. |
| 485 | // This is set in the construction trigger and read when the constructor |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 486 | // or a function that returns an object by value is being visited. |
| 487 | llvm::DenseMap<Expr *, const ConstructionContextLayer *> |
Artem Dergachev | 5e2f6ba | 2018-02-23 22:49:25 +0000 | [diff] [blame] | 488 | ConstructionContextMap; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 489 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 490 | using DeclsWithEndedScopeSetTy = llvm::SmallSetVector<VarDecl *, 16>; |
| 491 | DeclsWithEndedScopeSetTy DeclsWithEndedScope; |
| 492 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 493 | bool badCFG = false; |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 494 | const CFG::BuildOptions &BuildOpts; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 495 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 496 | // State to track for building switch statements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 497 | bool switchExclusivelyCovered = false; |
| 498 | Expr::EvalResult *switchCond = nullptr; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 499 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 500 | CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry = nullptr; |
| 501 | const Stmt *lastLookup = nullptr; |
Zhongxing Xu | d38fb84 | 2010-09-16 03:28:18 +0000 | [diff] [blame] | 502 | |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 503 | // Caches boolean evaluations of expressions to avoid multiple re-evaluations |
| 504 | // during construction of branches for chained logical operators. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 505 | using CachedBoolEvalsTy = llvm::DenseMap<Expr *, TryResult>; |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 506 | CachedBoolEvalsTy CachedBoolEvals; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 507 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 508 | public: |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 509 | explicit CFGBuilder(ASTContext *astContext, |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 510 | const CFG::BuildOptions &buildOpts) |
| 511 | : Context(astContext), cfg(new CFG()), // crew a new CFG |
Artem Dergachev | 5e2f6ba | 2018-02-23 22:49:25 +0000 | [diff] [blame] | 512 | ConstructionContextMap(), BuildOpts(buildOpts) {} |
| 513 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 514 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 515 | // buildCFG - Used by external clients to construct the CFG. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 516 | std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 517 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 518 | bool alwaysAdd(const Stmt *stmt); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 519 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 520 | private: |
| 521 | // Visitors to walk an AST and construct the CFG. |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 522 | CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); |
| 523 | CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 524 | CFGBlock *VisitBreakStmt(BreakStmt *B); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 525 | CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 526 | CFGBlock *VisitCaseStmt(CaseStmt *C); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 527 | CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 528 | CFGBlock *VisitCompoundStmt(CompoundStmt *C); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 529 | CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C, |
| 530 | AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 531 | CFGBlock *VisitContinueStmt(ContinueStmt *C); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 532 | CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 533 | AddStmtChoice asc); |
| 534 | CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S); |
| 535 | CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc); |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 536 | CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 537 | CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 538 | CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S); |
| 539 | CFGBlock *VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 540 | AddStmtChoice asc); |
| 541 | CFGBlock *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 542 | AddStmtChoice asc); |
| 543 | CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T); |
| 544 | CFGBlock *VisitCXXTryStmt(CXXTryStmt *S); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 545 | CFGBlock *VisitDeclStmt(DeclStmt *DS); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 546 | CFGBlock *VisitDeclSubExpr(DeclStmt *DS); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 547 | CFGBlock *VisitDefaultStmt(DefaultStmt *D); |
| 548 | CFGBlock *VisitDoStmt(DoStmt *D); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 549 | CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 550 | CFGBlock *VisitForStmt(ForStmt *F); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 551 | CFGBlock *VisitGotoStmt(GotoStmt *G); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 552 | CFGBlock *VisitIfStmt(IfStmt *I); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 553 | CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 554 | CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I); |
| 555 | CFGBlock *VisitLabelStmt(LabelStmt *L); |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 556 | CFGBlock *VisitBlockExpr(BlockExpr *E, AddStmtChoice asc); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 557 | CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 558 | CFGBlock *VisitLogicalOperator(BinaryOperator *B); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 559 | std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B, |
| 560 | Stmt *Term, |
| 561 | CFGBlock *TrueBlock, |
| 562 | CFGBlock *FalseBlock); |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 563 | CFGBlock *VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE, |
| 564 | AddStmtChoice asc); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 565 | CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 566 | CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); |
| 567 | CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S); |
| 568 | CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); |
| 569 | CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 570 | CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 571 | CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S); |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 572 | CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 573 | CFGBlock *VisitReturnStmt(ReturnStmt *R); |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 574 | CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S); |
| 575 | CFGBlock *VisitSEHFinallyStmt(SEHFinallyStmt *S); |
| 576 | CFGBlock *VisitSEHLeaveStmt(SEHLeaveStmt *S); |
| 577 | CFGBlock *VisitSEHTryStmt(SEHTryStmt *S); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 578 | CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 579 | CFGBlock *VisitSwitchStmt(SwitchStmt *S); |
Ted Kremenek | 6f40024 | 2012-07-14 05:04:01 +0000 | [diff] [blame] | 580 | CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 581 | AddStmtChoice asc); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 582 | CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 583 | CFGBlock *VisitWhileStmt(WhileStmt *W); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 584 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 585 | CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd); |
| 586 | CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 587 | CFGBlock *VisitChildren(Stmt *S); |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 588 | CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc); |
Mike Stump | 48871a2 | 2009-07-17 01:04:31 +0000 | [diff] [blame] | 589 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 590 | void maybeAddScopeBeginForVarDecl(CFGBlock *B, const VarDecl *VD, |
| 591 | const Stmt *S) { |
| 592 | if (ScopePos && (VD == ScopePos.getFirstVarInScope())) |
| 593 | appendScopeBegin(B, VD, S); |
| 594 | } |
| 595 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 596 | /// When creating the CFG for temporary destructors, we want to mirror the |
| 597 | /// branch structure of the corresponding constructor calls. |
| 598 | /// Thus, while visiting a statement for temporary destructors, we keep a |
| 599 | /// context to keep track of the following information: |
| 600 | /// - whether a subexpression is executed unconditionally |
| 601 | /// - if a subexpression is executed conditionally, the first |
| 602 | /// CXXBindTemporaryExpr we encounter in that subexpression (which |
| 603 | /// corresponds to the last temporary destructor we have to call for this |
| 604 | /// subexpression) and the CFG block at that point (which will become the |
| 605 | /// successor block when inserting the decision point). |
| 606 | /// |
| 607 | /// That way, we can build the branch structure for temporary destructors as |
| 608 | /// follows: |
| 609 | /// 1. If a subexpression is executed unconditionally, we add the temporary |
| 610 | /// destructor calls to the current block. |
| 611 | /// 2. If a subexpression is executed conditionally, when we encounter a |
| 612 | /// CXXBindTemporaryExpr: |
| 613 | /// a) If it is the first temporary destructor call in the subexpression, |
| 614 | /// we remember the CXXBindTemporaryExpr and the current block in the |
| 615 | /// TempDtorContext; we start a new block, and insert the temporary |
| 616 | /// destructor call. |
| 617 | /// b) Otherwise, add the temporary destructor call to the current block. |
| 618 | /// 3. When we finished visiting a conditionally executed subexpression, |
| 619 | /// and we found at least one temporary constructor during the visitation |
| 620 | /// (2.a has executed), we insert a decision block that uses the |
| 621 | /// CXXBindTemporaryExpr as terminator, and branches to the current block |
| 622 | /// if the CXXBindTemporaryExpr was marked executed, and otherwise |
| 623 | /// branches to the stored successor. |
| 624 | struct TempDtorContext { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 625 | TempDtorContext() = default; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 626 | TempDtorContext(TryResult KnownExecuted) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 627 | : IsConditional(true), KnownExecuted(KnownExecuted) {} |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 628 | |
| 629 | /// Returns whether we need to start a new branch for a temporary destructor |
Eric Christopher | 2c4555a | 2015-06-19 01:52:53 +0000 | [diff] [blame] | 630 | /// call. This is the case when the temporary destructor is |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 631 | /// conditionally executed, and it is the first one we encounter while |
| 632 | /// visiting a subexpression - other temporary destructors at the same level |
| 633 | /// will be added to the same block and are executed under the same |
| 634 | /// condition. |
| 635 | bool needsTempDtorBranch() const { |
| 636 | return IsConditional && !TerminatorExpr; |
| 637 | } |
| 638 | |
| 639 | /// Remember the successor S of a temporary destructor decision branch for |
| 640 | /// the corresponding CXXBindTemporaryExpr E. |
| 641 | void setDecisionPoint(CFGBlock *S, CXXBindTemporaryExpr *E) { |
| 642 | Succ = S; |
| 643 | TerminatorExpr = E; |
| 644 | } |
| 645 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 646 | const bool IsConditional = false; |
| 647 | const TryResult KnownExecuted = true; |
| 648 | CFGBlock *Succ = nullptr; |
| 649 | CXXBindTemporaryExpr *TerminatorExpr = nullptr; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 650 | }; |
| 651 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 652 | // Visitors to walk an AST and generate destructors of temporaries in |
| 653 | // full expression. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 654 | CFGBlock *VisitForTemporaryDtors(Stmt *E, bool BindToTemporary, |
| 655 | TempDtorContext &Context); |
| 656 | CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E, TempDtorContext &Context); |
| 657 | CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E, |
| 658 | TempDtorContext &Context); |
| 659 | CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors( |
| 660 | CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context); |
| 661 | CFGBlock *VisitConditionalOperatorForTemporaryDtors( |
| 662 | AbstractConditionalOperator *E, bool BindToTemporary, |
| 663 | TempDtorContext &Context); |
| 664 | void InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 665 | CFGBlock *FalseSucc = nullptr); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 666 | |
Ted Kremenek | 6065ef6 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 667 | // NYS == Not Yet Supported |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 668 | CFGBlock *NYS() { |
Ted Kremenek | b64d183 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 669 | badCFG = true; |
| 670 | return Block; |
| 671 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 672 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 673 | // Remember to apply the construction context based on the current \p Layer |
| 674 | // when constructing the CFG element for \p CE. |
| 675 | void consumeConstructionContext(const ConstructionContextLayer *Layer, |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 676 | Expr *E); |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 677 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 678 | // Scan \p Child statement to find constructors in it, while keeping in mind |
| 679 | // that its parent statement is providing a partial construction context |
| 680 | // described by \p Layer. If a constructor is found, it would be assigned |
| 681 | // the context based on the layer. If an additional construction context layer |
| 682 | // is found, the function recurses into that. |
| 683 | void findConstructionContexts(const ConstructionContextLayer *Layer, |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 684 | Stmt *Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 685 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 686 | // Unset the construction context after consuming it. This is done immediately |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 687 | // after adding the CFGConstructor or CFGCXXRecordTypedCall element, so |
| 688 | // there's no need to do this manually in every Visit... function. |
| 689 | void cleanupConstructionContext(Expr *E); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 690 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 691 | void autoCreateBlock() { if (!Block) Block = createBlock(); } |
| 692 | CFGBlock *createBlock(bool add_successor = true); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 693 | CFGBlock *createNoReturnBlock(); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 694 | |
Zhongxing Xu | ea9fcff | 2010-06-03 06:43:23 +0000 | [diff] [blame] | 695 | CFGBlock *addStmt(Stmt *S) { |
| 696 | return Visit(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 697 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 698 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 699 | CFGBlock *addInitializer(CXXCtorInitializer *I); |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 700 | void addLoopExit(const Stmt *LoopStmt); |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 701 | void addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 702 | LocalScope::const_iterator E, Stmt *S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 703 | void addLifetimeEnds(LocalScope::const_iterator B, |
| 704 | LocalScope::const_iterator E, Stmt *S); |
| 705 | void addAutomaticObjHandling(LocalScope::const_iterator B, |
| 706 | LocalScope::const_iterator E, Stmt *S); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 707 | void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 708 | void addScopesEnd(LocalScope::const_iterator B, LocalScope::const_iterator E, |
| 709 | Stmt *S); |
| 710 | |
| 711 | void getDeclsWithEndedScope(LocalScope::const_iterator B, |
| 712 | LocalScope::const_iterator E, Stmt *S); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 713 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 714 | // Local scopes creation. |
| 715 | LocalScope* createOrReuseLocalScope(LocalScope* Scope); |
| 716 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 717 | void addLocalScopeForStmt(Stmt *S); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 718 | LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS, |
| 719 | LocalScope* Scope = nullptr); |
| 720 | LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = nullptr); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 721 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 722 | void addLocalScopeAndDtors(Stmt *S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 723 | |
| 724 | // Interface to CFGBlock - adding CFGElements. |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 725 | |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 726 | void appendStmt(CFGBlock *B, const Stmt *S) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 727 | if (alwaysAdd(S) && cachedEntry) |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 728 | cachedEntry->second = B; |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 729 | |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 730 | // All block-level expressions should have already been IgnoreParens()ed. |
| 731 | assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 732 | B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 733 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 734 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 735 | void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) { |
| 736 | if (BuildOpts.AddRichCXXConstructors) { |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 737 | if (const ConstructionContextLayer *Layer = |
| 738 | ConstructionContextMap.lookup(CE)) { |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 739 | cleanupConstructionContext(CE); |
Artem Dergachev | 6a5cd5e | 2018-03-30 19:25:39 +0000 | [diff] [blame] | 740 | if (const auto *CC = ConstructionContext::createFromLayers( |
| 741 | cfg->getBumpVectorContext(), Layer)) { |
| 742 | B->appendConstructor(CE, CC, cfg->getBumpVectorContext()); |
| 743 | return; |
| 744 | } |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 745 | } |
| 746 | } |
| 747 | |
| 748 | // No valid construction context found. Fall back to statement. |
| 749 | B->appendStmt(CE, cfg->getBumpVectorContext()); |
| 750 | } |
| 751 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 752 | void appendCall(CFGBlock *B, CallExpr *CE) { |
Richard Trieu | f4a0e9a | 2018-03-15 00:09:26 +0000 | [diff] [blame] | 753 | if (alwaysAdd(CE) && cachedEntry) |
| 754 | cachedEntry->second = B; |
| 755 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 756 | if (BuildOpts.AddRichCXXConstructors) { |
Artem Dergachev | 54ed642 | 2018-03-12 23:52:36 +0000 | [diff] [blame] | 757 | if (CFGCXXRecordTypedCall::isCXXRecordTypedCall(CE, *Context)) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 758 | if (const ConstructionContextLayer *Layer = |
| 759 | ConstructionContextMap.lookup(CE)) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 760 | cleanupConstructionContext(CE); |
Artem Dergachev | 6a5cd5e | 2018-03-30 19:25:39 +0000 | [diff] [blame] | 761 | if (const auto *CC = ConstructionContext::createFromLayers( |
| 762 | cfg->getBumpVectorContext(), Layer)) { |
| 763 | B->appendCXXRecordTypedCall(CE, CC, cfg->getBumpVectorContext()); |
| 764 | return; |
| 765 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 766 | } |
| 767 | } |
| 768 | } |
| 769 | |
| 770 | // No valid construction context found. Fall back to statement. |
| 771 | B->appendStmt(CE, cfg->getBumpVectorContext()); |
| 772 | } |
| 773 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 774 | void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 775 | B->appendInitializer(I, cfg->getBumpVectorContext()); |
| 776 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 777 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 778 | void appendNewAllocator(CFGBlock *B, CXXNewExpr *NE) { |
| 779 | B->appendNewAllocator(NE, cfg->getBumpVectorContext()); |
| 780 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 781 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 782 | void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) { |
| 783 | B->appendBaseDtor(BS, cfg->getBumpVectorContext()); |
| 784 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 785 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 786 | void appendMemberDtor(CFGBlock *B, FieldDecl *FD) { |
| 787 | B->appendMemberDtor(FD, cfg->getBumpVectorContext()); |
| 788 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 789 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 790 | void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) { |
| 791 | B->appendTemporaryDtor(E, cfg->getBumpVectorContext()); |
| 792 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 793 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 794 | void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 795 | B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext()); |
| 796 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 797 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 798 | void appendLifetimeEnds(CFGBlock *B, VarDecl *VD, Stmt *S) { |
| 799 | B->appendLifetimeEnds(VD, S, cfg->getBumpVectorContext()); |
| 800 | } |
| 801 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 802 | void appendLoopExit(CFGBlock *B, const Stmt *LoopStmt) { |
| 803 | B->appendLoopExit(LoopStmt, cfg->getBumpVectorContext()); |
| 804 | } |
| 805 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 806 | void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) { |
| 807 | B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext()); |
| 808 | } |
| 809 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 810 | void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 811 | LocalScope::const_iterator B, LocalScope::const_iterator E); |
| 812 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 813 | void prependAutomaticObjLifetimeWithTerminator(CFGBlock *Blk, |
| 814 | LocalScope::const_iterator B, |
| 815 | LocalScope::const_iterator E); |
| 816 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 817 | const VarDecl * |
| 818 | prependAutomaticObjScopeEndWithTerminator(CFGBlock *Blk, |
| 819 | LocalScope::const_iterator B, |
| 820 | LocalScope::const_iterator E); |
| 821 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 822 | void addSuccessor(CFGBlock *B, CFGBlock *S, bool IsReachable = true) { |
| 823 | B->addSuccessor(CFGBlock::AdjacentBlock(S, IsReachable), |
| 824 | cfg->getBumpVectorContext()); |
| 825 | } |
| 826 | |
| 827 | /// Add a reachable successor to a block, with the alternate variant that is |
| 828 | /// unreachable. |
| 829 | void addSuccessor(CFGBlock *B, CFGBlock *ReachableBlock, CFGBlock *AltBlock) { |
| 830 | B->addSuccessor(CFGBlock::AdjacentBlock(ReachableBlock, AltBlock), |
| 831 | cfg->getBumpVectorContext()); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 832 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 833 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 834 | void appendScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 835 | if (BuildOpts.AddScopes) |
| 836 | B->appendScopeBegin(VD, S, cfg->getBumpVectorContext()); |
| 837 | } |
| 838 | |
| 839 | void prependScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 840 | if (BuildOpts.AddScopes) |
| 841 | B->prependScopeBegin(VD, S, cfg->getBumpVectorContext()); |
| 842 | } |
| 843 | |
| 844 | void appendScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 845 | if (BuildOpts.AddScopes) |
| 846 | B->appendScopeEnd(VD, S, cfg->getBumpVectorContext()); |
| 847 | } |
| 848 | |
| 849 | void prependScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) { |
| 850 | if (BuildOpts.AddScopes) |
| 851 | B->prependScopeEnd(VD, S, cfg->getBumpVectorContext()); |
| 852 | } |
| 853 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 854 | /// Find a relational comparison with an expression evaluating to a |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 855 | /// boolean and a constant other than 0 and 1. |
| 856 | /// e.g. if ((x < y) == 10) |
| 857 | TryResult checkIncorrectRelationalOperator(const BinaryOperator *B) { |
| 858 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 859 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 860 | |
| 861 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 862 | const Expr *BoolExpr = RHSExpr; |
| 863 | bool IntFirst = true; |
| 864 | if (!IntLiteral) { |
| 865 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 866 | BoolExpr = LHSExpr; |
| 867 | IntFirst = false; |
| 868 | } |
| 869 | |
| 870 | if (!IntLiteral || !BoolExpr->isKnownToHaveBooleanValue()) |
| 871 | return TryResult(); |
| 872 | |
| 873 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 874 | if ((IntValue == 1) || (IntValue == 0)) |
| 875 | return TryResult(); |
| 876 | |
| 877 | bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || |
| 878 | !IntValue.isNegative(); |
| 879 | |
| 880 | BinaryOperatorKind Bok = B->getOpcode(); |
| 881 | if (Bok == BO_GT || Bok == BO_GE) { |
| 882 | // Always true for 10 > bool and bool > -1 |
| 883 | // Always false for -1 > bool and bool > 10 |
| 884 | return TryResult(IntFirst == IntLarger); |
| 885 | } else { |
| 886 | // Always true for -1 < bool and bool < 10 |
| 887 | // Always false for 10 < bool and bool < -1 |
| 888 | return TryResult(IntFirst != IntLarger); |
| 889 | } |
| 890 | } |
| 891 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 892 | /// Find an incorrect equality comparison. Either with an expression |
| 893 | /// evaluating to a boolean and a constant other than 0 and 1. |
| 894 | /// e.g. if (!x == 10) or a bitwise and/or operation that always evaluates to |
| 895 | /// true/false e.q. (x & 8) == 4. |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 896 | TryResult checkIncorrectEqualityOperator(const BinaryOperator *B) { |
| 897 | const Expr *LHSExpr = B->getLHS()->IgnoreParens(); |
| 898 | const Expr *RHSExpr = B->getRHS()->IgnoreParens(); |
| 899 | |
| 900 | const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr); |
| 901 | const Expr *BoolExpr = RHSExpr; |
| 902 | |
| 903 | if (!IntLiteral) { |
| 904 | IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr); |
| 905 | BoolExpr = LHSExpr; |
| 906 | } |
| 907 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 908 | if (!IntLiteral) |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 909 | return TryResult(); |
| 910 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 911 | const BinaryOperator *BitOp = dyn_cast<BinaryOperator>(BoolExpr); |
| 912 | if (BitOp && (BitOp->getOpcode() == BO_And || |
| 913 | BitOp->getOpcode() == BO_Or)) { |
| 914 | const Expr *LHSExpr2 = BitOp->getLHS()->IgnoreParens(); |
| 915 | const Expr *RHSExpr2 = BitOp->getRHS()->IgnoreParens(); |
| 916 | |
| 917 | const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2); |
| 918 | |
| 919 | if (!IntLiteral2) |
| 920 | IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2); |
| 921 | |
| 922 | if (!IntLiteral2) |
| 923 | return TryResult(); |
| 924 | |
| 925 | llvm::APInt L1 = IntLiteral->getValue(); |
| 926 | llvm::APInt L2 = IntLiteral2->getValue(); |
| 927 | if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) || |
| 928 | (BitOp->getOpcode() == BO_Or && (L2 | L1) != L1)) { |
| 929 | if (BuildOpts.Observer) |
| 930 | BuildOpts.Observer->compareBitwiseEquality(B, |
| 931 | B->getOpcode() != BO_EQ); |
| 932 | TryResult(B->getOpcode() != BO_EQ); |
| 933 | } |
| 934 | } else if (BoolExpr->isKnownToHaveBooleanValue()) { |
| 935 | llvm::APInt IntValue = IntLiteral->getValue(); |
| 936 | if ((IntValue == 1) || (IntValue == 0)) { |
| 937 | return TryResult(); |
| 938 | } |
| 939 | return TryResult(B->getOpcode() != BO_EQ); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 940 | } |
| 941 | |
Jordan Rose | 7afd71e | 2014-05-20 17:31:11 +0000 | [diff] [blame] | 942 | return TryResult(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 943 | } |
| 944 | |
| 945 | TryResult analyzeLogicOperatorCondition(BinaryOperatorKind Relation, |
| 946 | const llvm::APSInt &Value1, |
| 947 | const llvm::APSInt &Value2) { |
| 948 | assert(Value1.isSigned() == Value2.isSigned()); |
| 949 | switch (Relation) { |
| 950 | default: |
| 951 | return TryResult(); |
| 952 | case BO_EQ: |
| 953 | return TryResult(Value1 == Value2); |
| 954 | case BO_NE: |
| 955 | return TryResult(Value1 != Value2); |
| 956 | case BO_LT: |
| 957 | return TryResult(Value1 < Value2); |
| 958 | case BO_LE: |
| 959 | return TryResult(Value1 <= Value2); |
| 960 | case BO_GT: |
| 961 | return TryResult(Value1 > Value2); |
| 962 | case BO_GE: |
| 963 | return TryResult(Value1 >= Value2); |
| 964 | } |
| 965 | } |
| 966 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 967 | /// Find a pair of comparison expressions with or without parentheses |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 968 | /// with a shared variable and constants and a logical operator between them |
| 969 | /// that always evaluates to either true or false. |
| 970 | /// e.g. if (x != 3 || x != 4) |
| 971 | TryResult checkIncorrectLogicOperator(const BinaryOperator *B) { |
| 972 | assert(B->isLogicalOp()); |
| 973 | const BinaryOperator *LHS = |
| 974 | dyn_cast<BinaryOperator>(B->getLHS()->IgnoreParens()); |
| 975 | const BinaryOperator *RHS = |
| 976 | dyn_cast<BinaryOperator>(B->getRHS()->IgnoreParens()); |
| 977 | if (!LHS || !RHS) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 978 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 979 | |
| 980 | if (!LHS->isComparisonOp() || !RHS->isComparisonOp()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 981 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 982 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 983 | const DeclRefExpr *Decl1; |
| 984 | const Expr *Expr1; |
| 985 | BinaryOperatorKind BO1; |
| 986 | std::tie(Decl1, BO1, Expr1) = tryNormalizeBinaryOperator(LHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 987 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 988 | if (!Decl1 || !Expr1) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 989 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 990 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 991 | const DeclRefExpr *Decl2; |
| 992 | const Expr *Expr2; |
| 993 | BinaryOperatorKind BO2; |
| 994 | std::tie(Decl2, BO2, Expr2) = tryNormalizeBinaryOperator(RHS); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 995 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 996 | if (!Decl2 || !Expr2) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 997 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 998 | |
| 999 | // Check that it is the same variable on both sides. |
| 1000 | if (Decl1->getDecl() != Decl2->getDecl()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1001 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1002 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1003 | // Make sure the user's intent is clear (e.g. they're comparing against two |
| 1004 | // int literals, or two things from the same enum) |
| 1005 | if (!areExprTypesCompatible(Expr1, Expr2)) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1006 | return {}; |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1007 | |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1008 | llvm::APSInt L1, L2; |
| 1009 | |
George Burgess IV | ced56e6 | 2015-10-01 18:47:52 +0000 | [diff] [blame] | 1010 | if (!Expr1->EvaluateAsInt(L1, *Context) || |
| 1011 | !Expr2->EvaluateAsInt(L2, *Context)) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1012 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1013 | |
| 1014 | // Can't compare signed with unsigned or with different bit width. |
| 1015 | if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1016 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1017 | |
| 1018 | // Values that will be used to determine if result of logical |
| 1019 | // operator is always true/false |
| 1020 | const llvm::APSInt Values[] = { |
| 1021 | // Value less than both Value1 and Value2 |
| 1022 | llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()), |
| 1023 | // L1 |
| 1024 | L1, |
| 1025 | // Value between Value1 and Value2 |
| 1026 | ((L1 < L2) ? L1 : L2) + llvm::APSInt(llvm::APInt(L1.getBitWidth(), 1), |
| 1027 | L1.isUnsigned()), |
| 1028 | // L2 |
| 1029 | L2, |
| 1030 | // Value greater than both Value1 and Value2 |
| 1031 | llvm::APSInt::getMaxValue(L1.getBitWidth(), L1.isUnsigned()), |
| 1032 | }; |
| 1033 | |
| 1034 | // Check whether expression is always true/false by evaluating the following |
| 1035 | // * variable x is less than the smallest literal. |
| 1036 | // * variable x is equal to the smallest literal. |
| 1037 | // * Variable x is between smallest and largest literal. |
| 1038 | // * Variable x is equal to the largest literal. |
| 1039 | // * Variable x is greater than largest literal. |
| 1040 | bool AlwaysTrue = true, AlwaysFalse = true; |
Benjamin Kramer | 2e018ef | 2016-05-27 13:36:58 +0000 | [diff] [blame] | 1041 | for (const llvm::APSInt &Value : Values) { |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1042 | TryResult Res1, Res2; |
| 1043 | Res1 = analyzeLogicOperatorCondition(BO1, Value, L1); |
| 1044 | Res2 = analyzeLogicOperatorCondition(BO2, Value, L2); |
| 1045 | |
| 1046 | if (!Res1.isKnown() || !Res2.isKnown()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1047 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1048 | |
| 1049 | if (B->getOpcode() == BO_LAnd) { |
| 1050 | AlwaysTrue &= (Res1.isTrue() && Res2.isTrue()); |
| 1051 | AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue()); |
| 1052 | } else { |
| 1053 | AlwaysTrue &= (Res1.isTrue() || Res2.isTrue()); |
| 1054 | AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue()); |
| 1055 | } |
| 1056 | } |
| 1057 | |
| 1058 | if (AlwaysTrue || AlwaysFalse) { |
| 1059 | if (BuildOpts.Observer) |
| 1060 | BuildOpts.Observer->compareAlwaysTrue(B, AlwaysTrue); |
| 1061 | return TryResult(AlwaysTrue); |
| 1062 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1063 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1064 | } |
| 1065 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 1066 | /// Try and evaluate an expression to an integer constant. |
| 1067 | bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) { |
| 1068 | if (!BuildOpts.PruneTriviallyFalseEdges) |
| 1069 | return false; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 1070 | return !S->isTypeDependent() && |
Ted Kremenek | 352a708 | 2011-04-04 20:30:58 +0000 | [diff] [blame] | 1071 | !S->isValueDependent() && |
Richard Smith | 7b553f1 | 2011-10-29 00:50:52 +0000 | [diff] [blame] | 1072 | S->EvaluateAsRValue(outResult, *Context); |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 1073 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1074 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1075 | /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1 |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1076 | /// if we can evaluate to a known value, otherwise return -1. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1077 | TryResult tryEvaluateBool(Expr *S) { |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 1078 | if (!BuildOpts.PruneTriviallyFalseEdges || |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1079 | S->isTypeDependent() || S->isValueDependent()) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1080 | return {}; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1081 | |
| 1082 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) { |
| 1083 | if (Bop->isLogicalOp()) { |
| 1084 | // Check the cache first. |
NAKAMURA Takumi | e9ca55e | 2012-03-25 06:30:37 +0000 | [diff] [blame] | 1085 | CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S); |
| 1086 | if (I != CachedBoolEvals.end()) |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1087 | return I->second; // already in map; |
NAKAMURA Takumi | f0434b0 | 2012-03-25 06:30:32 +0000 | [diff] [blame] | 1088 | |
| 1089 | // Retrieve result at first, or the map might be updated. |
| 1090 | TryResult Result = evaluateAsBooleanConditionNoCache(S); |
| 1091 | CachedBoolEvals[S] = Result; // update or insert |
| 1092 | return Result; |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1093 | } |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1094 | else { |
| 1095 | switch (Bop->getOpcode()) { |
| 1096 | default: break; |
| 1097 | // For 'x & 0' and 'x * 0', we can determine that |
| 1098 | // the value is always false. |
| 1099 | case BO_Mul: |
| 1100 | case BO_And: { |
| 1101 | // If either operand is zero, we know the value |
| 1102 | // must be false. |
| 1103 | llvm::APSInt IntVal; |
| 1104 | if (Bop->getLHS()->EvaluateAsInt(IntVal, *Context)) { |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1105 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1106 | return TryResult(false); |
| 1107 | } |
| 1108 | } |
| 1109 | if (Bop->getRHS()->EvaluateAsInt(IntVal, *Context)) { |
David Blaikie | 7a3cbb2 | 2015-03-09 02:02:07 +0000 | [diff] [blame] | 1110 | if (!IntVal.getBoolValue()) { |
Ted Kremenek | 64fea5f | 2012-08-24 07:42:09 +0000 | [diff] [blame] | 1111 | return TryResult(false); |
| 1112 | } |
| 1113 | } |
| 1114 | } |
| 1115 | break; |
| 1116 | } |
| 1117 | } |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1118 | } |
| 1119 | |
| 1120 | return evaluateAsBooleanConditionNoCache(S); |
| 1121 | } |
| 1122 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1123 | /// Evaluate as boolean \param E without using the cache. |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1124 | TryResult evaluateAsBooleanConditionNoCache(Expr *E) { |
| 1125 | if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) { |
| 1126 | if (Bop->isLogicalOp()) { |
| 1127 | TryResult LHS = tryEvaluateBool(Bop->getLHS()); |
| 1128 | if (LHS.isKnown()) { |
| 1129 | // We were able to evaluate the LHS, see if we can get away with not |
| 1130 | // evaluating the RHS: 0 && X -> 0, 1 || X -> 1 |
| 1131 | if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1132 | return LHS.isTrue(); |
| 1133 | |
| 1134 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1135 | if (RHS.isKnown()) { |
| 1136 | if (Bop->getOpcode() == BO_LOr) |
| 1137 | return LHS.isTrue() || RHS.isTrue(); |
| 1138 | else |
| 1139 | return LHS.isTrue() && RHS.isTrue(); |
| 1140 | } |
| 1141 | } else { |
| 1142 | TryResult RHS = tryEvaluateBool(Bop->getRHS()); |
| 1143 | if (RHS.isKnown()) { |
| 1144 | // We can't evaluate the LHS; however, sometimes the result |
| 1145 | // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. |
| 1146 | if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr)) |
| 1147 | return RHS.isTrue(); |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1148 | } else { |
| 1149 | TryResult BopRes = checkIncorrectLogicOperator(Bop); |
| 1150 | if (BopRes.isKnown()) |
| 1151 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1152 | } |
| 1153 | } |
| 1154 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1155 | return {}; |
Richard Trieu | f935b56 | 2014-04-05 05:17:01 +0000 | [diff] [blame] | 1156 | } else if (Bop->isEqualityOp()) { |
| 1157 | TryResult BopRes = checkIncorrectEqualityOperator(Bop); |
| 1158 | if (BopRes.isKnown()) |
| 1159 | return BopRes.isTrue(); |
| 1160 | } else if (Bop->isRelationalOp()) { |
| 1161 | TryResult BopRes = checkIncorrectRelationalOperator(Bop); |
| 1162 | if (BopRes.isKnown()) |
| 1163 | return BopRes.isTrue(); |
Argyrios Kyrtzidis | 5f172a3 | 2012-03-23 00:59:17 +0000 | [diff] [blame] | 1164 | } |
| 1165 | } |
| 1166 | |
| 1167 | bool Result; |
| 1168 | if (E->EvaluateAsBooleanCondition(Result, *Context)) |
| 1169 | return Result; |
| 1170 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1171 | return {}; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 1172 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1173 | |
| 1174 | bool hasTrivialDestructor(VarDecl *VD); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1175 | }; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1176 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1177 | } // namespace |
| 1178 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1179 | inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder, |
| 1180 | const Stmt *stmt) const { |
| 1181 | return builder.alwaysAdd(stmt) || kind == AlwaysAdd; |
| 1182 | } |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1183 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1184 | bool CFGBuilder::alwaysAdd(const Stmt *stmt) { |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1185 | bool shouldAdd = BuildOpts.alwaysAdd(stmt); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 1186 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1187 | if (!BuildOpts.forcedBlkExprs) |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1188 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1189 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 1190 | if (lastLookup == stmt) { |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1191 | if (cachedEntry) { |
| 1192 | assert(cachedEntry->first == stmt); |
| 1193 | return true; |
| 1194 | } |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1195 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1196 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 1197 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1198 | lastLookup = stmt; |
| 1199 | |
| 1200 | // Perform the lookup! |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1201 | CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs; |
| 1202 | |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1203 | if (!fb) { |
| 1204 | // No need to update 'cachedEntry', since it will always be null. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1205 | assert(!cachedEntry); |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1206 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1207 | } |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1208 | |
| 1209 | CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt); |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1210 | if (itr == fb->end()) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1211 | cachedEntry = nullptr; |
Ted Kremenek | 8b46c00 | 2011-07-19 14:18:43 +0000 | [diff] [blame] | 1212 | return shouldAdd; |
Ted Kremenek | dcc4c38 | 2011-03-23 21:33:21 +0000 | [diff] [blame] | 1213 | } |
| 1214 | |
Ted Kremenek | a099c59 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 1215 | cachedEntry = &*itr; |
| 1216 | return true; |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 1217 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 1218 | |
Douglas Gregor | 4619e43 | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1219 | // FIXME: Add support for dependent-sized array types in C++? |
| 1220 | // 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] | 1221 | static const VariableArrayType *FindVA(const Type *t) { |
| 1222 | while (const ArrayType *vt = dyn_cast<ArrayType>(t)) { |
| 1223 | if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt)) |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1224 | if (vat->getSizeExpr()) |
| 1225 | return vat; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1226 | |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1227 | t = vt->getElementType().getTypePtr(); |
| 1228 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1229 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1230 | return nullptr; |
Ted Kremenek | d86d39c | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 1231 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1232 | |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1233 | void CFGBuilder::consumeConstructionContext( |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1234 | const ConstructionContextLayer *Layer, Expr *E) { |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1235 | if (const ConstructionContextLayer *PreviouslyStoredLayer = |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1236 | ConstructionContextMap.lookup(E)) { |
George Burgess IV | a47e1b7 | 2018-03-06 07:45:11 +0000 | [diff] [blame] | 1237 | (void)PreviouslyStoredLayer; |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1238 | // We might have visited this child when we were finding construction |
| 1239 | // contexts within its parents. |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1240 | assert(PreviouslyStoredLayer->isStrictlyMoreSpecificThan(Layer) && |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1241 | "Already within a different construction context!"); |
| 1242 | } else { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1243 | ConstructionContextMap[E] = Layer; |
Artem Dergachev | c1b07bd | 2018-02-23 23:38:41 +0000 | [diff] [blame] | 1244 | } |
| 1245 | } |
| 1246 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1247 | void CFGBuilder::findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1248 | const ConstructionContextLayer *Layer, Stmt *Child) { |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1249 | if (!BuildOpts.AddRichCXXConstructors) |
| 1250 | return; |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1251 | |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1252 | if (!Child) |
| 1253 | return; |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1254 | |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1255 | auto withExtraLayer = [this, Layer](Stmt *S) { |
| 1256 | return ConstructionContextLayer::create(cfg->getBumpVectorContext(), S, |
| 1257 | Layer); |
| 1258 | }; |
| 1259 | |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1260 | switch(Child->getStmtClass()) { |
| 1261 | case Stmt::CXXConstructExprClass: |
| 1262 | case Stmt::CXXTemporaryObjectExprClass: { |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1263 | // Support pre-C++17 copy elision AST. |
| 1264 | auto *CE = cast<CXXConstructExpr>(Child); |
| 1265 | if (BuildOpts.MarkElidedCXXConstructors && CE->isElidable()) { |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1266 | findConstructionContexts(withExtraLayer(CE), CE->getArg(0)); |
| 1267 | } |
| 1268 | |
| 1269 | consumeConstructionContext(Layer, CE); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1270 | break; |
| 1271 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1272 | // FIXME: This, like the main visit, doesn't support CUDAKernelCallExpr. |
| 1273 | // FIXME: An isa<> would look much better but this whole switch is a |
| 1274 | // workaround for an internal compiler error in MSVC 2015 (see r326021). |
| 1275 | case Stmt::CallExprClass: |
| 1276 | case Stmt::CXXMemberCallExprClass: |
| 1277 | case Stmt::CXXOperatorCallExprClass: |
| 1278 | case Stmt::UserDefinedLiteralClass: { |
| 1279 | auto *CE = cast<CallExpr>(Child); |
Artem Dergachev | 54ed642 | 2018-03-12 23:52:36 +0000 | [diff] [blame] | 1280 | if (CFGCXXRecordTypedCall::isCXXRecordTypedCall(CE, *Context)) |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1281 | consumeConstructionContext(Layer, CE); |
| 1282 | break; |
| 1283 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1284 | case Stmt::ExprWithCleanupsClass: { |
| 1285 | auto *Cleanups = cast<ExprWithCleanups>(Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1286 | findConstructionContexts(Layer, Cleanups->getSubExpr()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1287 | break; |
| 1288 | } |
| 1289 | case Stmt::CXXFunctionalCastExprClass: { |
| 1290 | auto *Cast = cast<CXXFunctionalCastExpr>(Child); |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1291 | findConstructionContexts(Layer, Cast->getSubExpr()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1292 | break; |
| 1293 | } |
| 1294 | case Stmt::ImplicitCastExprClass: { |
| 1295 | auto *Cast = cast<ImplicitCastExpr>(Child); |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 1296 | // Should we support other implicit cast kinds? |
Artem Dergachev | 13f9664 | 2018-03-09 01:39:59 +0000 | [diff] [blame] | 1297 | switch (Cast->getCastKind()) { |
| 1298 | case CK_NoOp: |
| 1299 | case CK_ConstructorConversion: |
Artem Dergachev | 6603052 | 2018-03-01 01:09:24 +0000 | [diff] [blame] | 1300 | findConstructionContexts(Layer, Cast->getSubExpr()); |
Artem Dergachev | 13f9664 | 2018-03-09 01:39:59 +0000 | [diff] [blame] | 1301 | default: |
| 1302 | break; |
| 1303 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1304 | break; |
| 1305 | } |
| 1306 | case Stmt::CXXBindTemporaryExprClass: { |
| 1307 | auto *BTE = cast<CXXBindTemporaryExpr>(Child); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 1308 | findConstructionContexts(withExtraLayer(BTE), BTE->getSubExpr()); |
| 1309 | break; |
| 1310 | } |
| 1311 | case Stmt::MaterializeTemporaryExprClass: { |
| 1312 | // Normally we don't want to search in MaterializeTemporaryExpr because |
| 1313 | // it indicates the beginning of a temporary object construction context, |
| 1314 | // so it shouldn't be found in the middle. However, if it is the beginning |
| 1315 | // of an elidable copy or move construction context, we need to include it. |
| 1316 | if (const auto *CE = |
| 1317 | dyn_cast_or_null<CXXConstructExpr>(Layer->getTriggerStmt())) { |
| 1318 | if (CE->isElidable()) { |
| 1319 | auto *MTE = cast<MaterializeTemporaryExpr>(Child); |
| 1320 | findConstructionContexts(withExtraLayer(MTE), MTE->GetTemporaryExpr()); |
| 1321 | } |
| 1322 | } |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1323 | break; |
| 1324 | } |
| 1325 | case Stmt::ConditionalOperatorClass: { |
| 1326 | auto *CO = cast<ConditionalOperator>(Child); |
Artem Dergachev | 9d3a7d8 | 2018-03-30 19:21:18 +0000 | [diff] [blame] | 1327 | if (!dyn_cast_or_null<MaterializeTemporaryExpr>(Layer->getTriggerStmt())) { |
| 1328 | // If the object returned by the conditional operator is not going to be a |
| 1329 | // temporary object that needs to be immediately materialized, then |
| 1330 | // it must be C++17 with its mandatory copy elision. Do not yet promise |
| 1331 | // to support this case. |
| 1332 | assert(!CO->getType()->getAsCXXRecordDecl() || CO->isGLValue() || |
| 1333 | Context->getLangOpts().CPlusPlus17); |
| 1334 | break; |
| 1335 | } |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1336 | findConstructionContexts(Layer, CO->getLHS()); |
| 1337 | findConstructionContexts(Layer, CO->getRHS()); |
Artem Dergachev | 1c6ed3a | 2018-02-24 03:54:22 +0000 | [diff] [blame] | 1338 | break; |
| 1339 | } |
| 1340 | default: |
| 1341 | break; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1342 | } |
| 1343 | } |
| 1344 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1345 | void CFGBuilder::cleanupConstructionContext(Expr *E) { |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1346 | assert(BuildOpts.AddRichCXXConstructors && |
| 1347 | "We should not be managing construction contexts!"); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1348 | assert(ConstructionContextMap.count(E) && |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1349 | "Cannot exit construction context without the context!"); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 1350 | ConstructionContextMap.erase(E); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 1351 | } |
| 1352 | |
| 1353 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1354 | /// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an |
| 1355 | /// arbitrary statement. Examples include a single expression or a function |
| 1356 | /// body (compound statement). The ownership of the returned CFG is |
| 1357 | /// transferred to the caller. If CFG construction fails, this method returns |
| 1358 | /// NULL. |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1359 | std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) { |
Ted Kremenek | 8aed490 | 2009-10-20 23:46:25 +0000 | [diff] [blame] | 1360 | assert(cfg.get()); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1361 | if (!Statement) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1362 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1363 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1364 | // Create an empty block that will serve as the exit block for the CFG. Since |
| 1365 | // this is the first block added to the CFG, it will be implicitly registered |
| 1366 | // as the exit block. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1367 | Succ = createBlock(); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 1368 | assert(Succ == &cfg->getExit()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1369 | Block = nullptr; // the EXIT block is empty. Create all other blocks lazily. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1370 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1371 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1372 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
| 1373 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1374 | if (BuildOpts.AddImplicitDtors) |
| 1375 | if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D)) |
| 1376 | addImplicitDtorsForDestructor(DD); |
| 1377 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1378 | // Visit the statements and create the CFG. |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1379 | CFGBlock *B = addStmt(Statement); |
| 1380 | |
| 1381 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1382 | return nullptr; |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1383 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1384 | // For C++ constructor add initializers to CFG. |
| 1385 | if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) { |
Pete Cooper | 57d3f14 | 2015-07-30 17:22:52 +0000 | [diff] [blame] | 1386 | for (auto *I : llvm::reverse(CD->inits())) { |
| 1387 | B = addInitializer(I); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1388 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1389 | return nullptr; |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1390 | } |
| 1391 | } |
| 1392 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1393 | if (B) |
| 1394 | Succ = B; |
Mike Stump | 6bf1c08 | 2010-01-21 02:21:40 +0000 | [diff] [blame] | 1395 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1396 | // Backpatch the gotos whose label -> block mappings we didn't know when we |
| 1397 | // encountered them. |
| 1398 | for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(), |
| 1399 | E = BackpatchBlocks.end(); I != E; ++I ) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1400 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1401 | CFGBlock *B = I->block; |
Rafael Espindola | 210de57 | 2013-03-27 15:37:54 +0000 | [diff] [blame] | 1402 | const GotoStmt *G = cast<GotoStmt>(B->getTerminator()); |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1403 | LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1404 | |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1405 | // If there is no target for the goto, then we are looking at an |
| 1406 | // incomplete AST. Handle this by not registering a successor. |
| 1407 | if (LI == LabelMap.end()) continue; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1408 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 1409 | JumpTarget JT = LI->second; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1410 | prependAutomaticObjLifetimeWithTerminator(B, I->scopePosition, |
| 1411 | JT.scopePosition); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1412 | prependAutomaticObjDtorsWithTerminator(B, I->scopePosition, |
| 1413 | JT.scopePosition); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1414 | const VarDecl *VD = prependAutomaticObjScopeEndWithTerminator( |
| 1415 | B, I->scopePosition, JT.scopePosition); |
| 1416 | appendScopeBegin(JT.block, VD, G); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1417 | addSuccessor(B, JT.block); |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1418 | } |
| 1419 | |
| 1420 | // Add successors to the Indirect Goto Dispatch block (if we have one). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1421 | if (CFGBlock *B = cfg->getIndirectGotoBlock()) |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1422 | for (LabelSetTy::iterator I = AddressTakenLabels.begin(), |
| 1423 | E = AddressTakenLabels.end(); I != E; ++I ) { |
Zhongxing Xu | b1e10aa | 2010-09-06 07:04:06 +0000 | [diff] [blame] | 1424 | // Lookup the target block. |
| 1425 | LabelMapTy::iterator LI = LabelMap.find(*I); |
| 1426 | |
| 1427 | // If there is no target block that contains label, then we are looking |
| 1428 | // at an incomplete AST. Handle this by not registering a successor. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1429 | if (LI == LabelMap.end()) continue; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 1430 | |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 1431 | addSuccessor(B, LI->second.block); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 1432 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1433 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1434 | // Create an empty entry block that has no predecessors. |
Ted Kremenek | 5c50fd1 | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 1435 | cfg->setEntry(createBlock()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1436 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1437 | if (BuildOpts.AddRichCXXConstructors) |
| 1438 | assert(ConstructionContextMap.empty() && |
| 1439 | "Not all construction contexts were cleaned up!"); |
| 1440 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 1441 | return std::move(cfg); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1442 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1443 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1444 | /// createBlock - Used to lazily create blocks that are connected |
| 1445 | /// to the current (global) succcessor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1446 | CFGBlock *CFGBuilder::createBlock(bool add_successor) { |
| 1447 | CFGBlock *B = cfg->createBlock(); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1448 | if (add_successor && Succ) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 1449 | addSuccessor(B, Succ); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1450 | return B; |
| 1451 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1452 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1453 | /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the |
| 1454 | /// CFG. It is *not* connected to the current (global) successor, and instead |
| 1455 | /// directly tied to the exit block in order to be reachable. |
| 1456 | CFGBlock *CFGBuilder::createNoReturnBlock() { |
| 1457 | CFGBlock *B = createBlock(false); |
Chandler Carruth | 75d7823 | 2011-09-13 09:53:55 +0000 | [diff] [blame] | 1458 | B->setHasNoReturnElement(); |
Ted Kremenek | f353919 | 2014-02-27 00:24:05 +0000 | [diff] [blame] | 1459 | addSuccessor(B, &cfg->getExit(), Succ); |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1460 | return B; |
| 1461 | } |
| 1462 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1463 | /// addInitializer - Add C++ base or member initializer element to CFG. |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1464 | CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) { |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1465 | if (!BuildOpts.AddInitializers) |
| 1466 | return Block; |
| 1467 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1468 | bool HasTemporaries = false; |
| 1469 | |
| 1470 | // Destructors of temporaries in initialization expression should be called |
| 1471 | // after initialization finishes. |
| 1472 | Expr *Init = I->getInit(); |
| 1473 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1474 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1475 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 1476 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1477 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 1478 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 1479 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
| 1480 | /*BindToTemporary=*/false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1481 | } |
| 1482 | } |
| 1483 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1484 | autoCreateBlock(); |
| 1485 | appendInitializer(Block, I); |
| 1486 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1487 | if (Init) { |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1488 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 1489 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), I), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 1490 | Init); |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 1491 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1492 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1493 | // For expression with temporaries go directly to subexpression to omit |
| 1494 | // generating destructors for the second time. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1495 | return Visit(cast<ExprWithCleanups>(Init)->getSubExpr()); |
| 1496 | } |
Enrico Pertoso | faed801 | 2015-06-03 10:12:40 +0000 | [diff] [blame] | 1497 | if (BuildOpts.AddCXXDefaultInitExprInCtors) { |
| 1498 | if (CXXDefaultInitExpr *Default = dyn_cast<CXXDefaultInitExpr>(Init)) { |
| 1499 | // In general, appending the expression wrapped by a CXXDefaultInitExpr |
| 1500 | // may cause the same Expr to appear more than once in the CFG. Doing it |
| 1501 | // here is safe because there's only one initializer per field. |
| 1502 | autoCreateBlock(); |
| 1503 | appendStmt(Block, Default); |
| 1504 | if (Stmt *Child = Default->getExpr()) |
| 1505 | if (CFGBlock *R = Visit(Child)) |
| 1506 | Block = R; |
| 1507 | return Block; |
| 1508 | } |
| 1509 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 1510 | return Visit(Init); |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1511 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 1512 | |
Marcin Swiderski | 87b1bb6 | 2010-10-04 03:38:22 +0000 | [diff] [blame] | 1513 | return Block; |
| 1514 | } |
| 1515 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 1516 | /// Retrieve the type of the temporary object whose lifetime was |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1517 | /// extended by a local reference with the given initializer. |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1518 | static QualType getReferenceInitTemporaryType(const Expr *Init, |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1519 | bool *FoundMTE = nullptr) { |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1520 | while (true) { |
| 1521 | // Skip parentheses. |
| 1522 | Init = Init->IgnoreParens(); |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1523 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1524 | // Skip through cleanups. |
| 1525 | if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) { |
| 1526 | Init = EWC->getSubExpr(); |
| 1527 | continue; |
| 1528 | } |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1529 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1530 | // Skip through the temporary-materialization expression. |
| 1531 | if (const MaterializeTemporaryExpr *MTE |
| 1532 | = dyn_cast<MaterializeTemporaryExpr>(Init)) { |
| 1533 | Init = MTE->GetTemporaryExpr(); |
Richard Smith | b8c0f55 | 2016-12-09 18:49:13 +0000 | [diff] [blame] | 1534 | if (FoundMTE) |
| 1535 | *FoundMTE = true; |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1536 | continue; |
| 1537 | } |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1538 | |
| 1539 | // Skip sub-object accesses into rvalues. |
| 1540 | SmallVector<const Expr *, 2> CommaLHSs; |
| 1541 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 1542 | const Expr *SkippedInit = |
| 1543 | Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments); |
| 1544 | if (SkippedInit != Init) { |
| 1545 | Init = SkippedInit; |
| 1546 | continue; |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1547 | } |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1548 | |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1549 | break; |
| 1550 | } |
| 1551 | |
| 1552 | return Init->getType(); |
| 1553 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1554 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 1555 | // TODO: Support adding LoopExit element to the CFG in case where the loop is |
| 1556 | // ended by ReturnStmt, GotoStmt or ThrowExpr. |
| 1557 | void CFGBuilder::addLoopExit(const Stmt *LoopStmt){ |
| 1558 | if(!BuildOpts.AddLoopExit) |
| 1559 | return; |
| 1560 | autoCreateBlock(); |
| 1561 | appendLoopExit(Block, LoopStmt); |
| 1562 | } |
| 1563 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1564 | void CFGBuilder::getDeclsWithEndedScope(LocalScope::const_iterator B, |
| 1565 | LocalScope::const_iterator E, Stmt *S) { |
| 1566 | if (!BuildOpts.AddScopes) |
| 1567 | return; |
| 1568 | |
| 1569 | if (B == E) |
| 1570 | return; |
| 1571 | |
| 1572 | // To go from B to E, one first goes up the scopes from B to P |
| 1573 | // then sideways in one scope from P to P' and then down |
| 1574 | // the scopes from P' to E. |
| 1575 | // The lifetime of all objects between B and P end. |
| 1576 | LocalScope::const_iterator P = B.shared_parent(E); |
| 1577 | int Dist = B.distance(P); |
| 1578 | if (Dist <= 0) |
| 1579 | return; |
| 1580 | |
| 1581 | for (LocalScope::const_iterator I = B; I != P; ++I) |
| 1582 | if (I.pointsToFirstDeclaredVar()) |
| 1583 | DeclsWithEndedScope.insert(*I); |
| 1584 | } |
| 1585 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1586 | void CFGBuilder::addAutomaticObjHandling(LocalScope::const_iterator B, |
| 1587 | LocalScope::const_iterator E, |
| 1588 | Stmt *S) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1589 | getDeclsWithEndedScope(B, E, S); |
| 1590 | if (BuildOpts.AddScopes) |
| 1591 | addScopesEnd(B, E, S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1592 | if (BuildOpts.AddImplicitDtors) |
| 1593 | addAutomaticObjDtors(B, E, S); |
| 1594 | if (BuildOpts.AddLifetime) |
| 1595 | addLifetimeEnds(B, E, S); |
| 1596 | } |
| 1597 | |
| 1598 | /// Add to current block automatic objects that leave the scope. |
| 1599 | void CFGBuilder::addLifetimeEnds(LocalScope::const_iterator B, |
| 1600 | LocalScope::const_iterator E, Stmt *S) { |
| 1601 | if (!BuildOpts.AddLifetime) |
| 1602 | return; |
| 1603 | |
| 1604 | if (B == E) |
| 1605 | return; |
| 1606 | |
| 1607 | // To go from B to E, one first goes up the scopes from B to P |
| 1608 | // then sideways in one scope from P to P' and then down |
| 1609 | // the scopes from P' to E. |
| 1610 | // The lifetime of all objects between B and P end. |
| 1611 | LocalScope::const_iterator P = B.shared_parent(E); |
| 1612 | int dist = B.distance(P); |
| 1613 | if (dist <= 0) |
| 1614 | return; |
| 1615 | |
| 1616 | // We need to perform the scope leaving in reverse order |
| 1617 | SmallVector<VarDecl *, 10> DeclsTrivial; |
| 1618 | SmallVector<VarDecl *, 10> DeclsNonTrivial; |
| 1619 | DeclsTrivial.reserve(dist); |
| 1620 | DeclsNonTrivial.reserve(dist); |
| 1621 | |
| 1622 | for (LocalScope::const_iterator I = B; I != P; ++I) |
| 1623 | if (hasTrivialDestructor(*I)) |
| 1624 | DeclsTrivial.push_back(*I); |
| 1625 | else |
| 1626 | DeclsNonTrivial.push_back(*I); |
| 1627 | |
| 1628 | autoCreateBlock(); |
| 1629 | // object with trivial destructor end their lifetime last (when storage |
| 1630 | // duration ends) |
| 1631 | for (SmallVectorImpl<VarDecl *>::reverse_iterator I = DeclsTrivial.rbegin(), |
| 1632 | E = DeclsTrivial.rend(); |
| 1633 | I != E; ++I) |
| 1634 | appendLifetimeEnds(Block, *I, S); |
| 1635 | |
| 1636 | for (SmallVectorImpl<VarDecl *>::reverse_iterator |
| 1637 | I = DeclsNonTrivial.rbegin(), |
| 1638 | E = DeclsNonTrivial.rend(); |
| 1639 | I != E; ++I) |
| 1640 | appendLifetimeEnds(Block, *I, S); |
| 1641 | } |
| 1642 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1643 | /// Add to current block markers for ending scopes. |
| 1644 | void CFGBuilder::addScopesEnd(LocalScope::const_iterator B, |
| 1645 | LocalScope::const_iterator E, Stmt *S) { |
| 1646 | // If implicit destructors are enabled, we'll add scope ends in |
| 1647 | // addAutomaticObjDtors. |
| 1648 | if (BuildOpts.AddImplicitDtors) |
| 1649 | return; |
| 1650 | |
| 1651 | autoCreateBlock(); |
| 1652 | |
| 1653 | for (auto I = DeclsWithEndedScope.rbegin(), E = DeclsWithEndedScope.rend(); |
| 1654 | I != E; ++I) |
| 1655 | appendScopeEnd(Block, *I, S); |
| 1656 | |
| 1657 | return; |
| 1658 | } |
| 1659 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1660 | /// addAutomaticObjDtors - Add to current block automatic objects destructors |
| 1661 | /// for objects in range of local scope positions. Use S as trigger statement |
| 1662 | /// for destructors. |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1663 | void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B, |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1664 | LocalScope::const_iterator E, Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1665 | if (!BuildOpts.AddImplicitDtors) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1666 | return; |
| 1667 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1668 | if (B == E) |
Zhongxing Xu | 6d372f7 | 2010-10-01 03:22:39 +0000 | [diff] [blame] | 1669 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1670 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1671 | // We need to append the destructors in reverse order, but any one of them |
| 1672 | // may be a no-return destructor which changes the CFG. As a result, buffer |
| 1673 | // this sequence up and replay them in reverse order when appending onto the |
| 1674 | // CFGBlock(s). |
| 1675 | SmallVector<VarDecl*, 10> Decls; |
| 1676 | Decls.reserve(B.distance(E)); |
| 1677 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1678 | Decls.push_back(*I); |
| 1679 | |
| 1680 | for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(), |
| 1681 | E = Decls.rend(); |
| 1682 | I != E; ++I) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1683 | if (hasTrivialDestructor(*I)) { |
| 1684 | // If AddScopes is enabled and *I is a first variable in a scope, add a |
| 1685 | // ScopeEnd marker in a Block. |
| 1686 | if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) { |
| 1687 | autoCreateBlock(); |
| 1688 | appendScopeEnd(Block, *I, S); |
| 1689 | } |
| 1690 | continue; |
| 1691 | } |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1692 | // If this destructor is marked as a no-return destructor, we need to |
| 1693 | // create a new block for the destructor which does not have as a successor |
| 1694 | // anything built thus far: control won't flow out of this block. |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1695 | QualType Ty = (*I)->getType(); |
| 1696 | if (Ty->isReferenceType()) { |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1697 | Ty = getReferenceInitTemporaryType((*I)->getInit()); |
Douglas Gregor | 6c8f07f | 2011-11-15 15:29:30 +0000 | [diff] [blame] | 1698 | } |
Ted Kremenek | 3d61773 | 2012-07-18 04:57:57 +0000 | [diff] [blame] | 1699 | Ty = Context->getBaseElementType(Ty); |
| 1700 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 1701 | if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn()) |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 1702 | Block = createNoReturnBlock(); |
| 1703 | else |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1704 | autoCreateBlock(); |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1705 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1706 | // Add ScopeEnd just after automatic obj destructor. |
| 1707 | if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) |
| 1708 | appendScopeEnd(Block, *I, S); |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1709 | appendAutomaticObjDtor(Block, *I, S); |
| 1710 | } |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1711 | } |
| 1712 | |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1713 | /// addImplicitDtorsForDestructor - Add implicit destructors generated for |
| 1714 | /// base and member objects in destructor. |
| 1715 | void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1716 | assert(BuildOpts.AddImplicitDtors && |
| 1717 | "Can be called only when dtors should be added"); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1718 | const CXXRecordDecl *RD = DD->getParent(); |
| 1719 | |
| 1720 | // At the end destroy virtual base objects. |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1721 | for (const auto &VI : RD->vbases()) { |
| 1722 | const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1723 | if (!CD->hasTrivialDestructor()) { |
| 1724 | autoCreateBlock(); |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 1725 | appendBaseDtor(Block, &VI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1726 | } |
| 1727 | } |
| 1728 | |
| 1729 | // Before virtual bases destroy direct base objects. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1730 | for (const auto &BI : RD->bases()) { |
| 1731 | if (!BI.isVirtual()) { |
| 1732 | const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl(); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1733 | if (!CD->hasTrivialDestructor()) { |
| 1734 | autoCreateBlock(); |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1735 | appendBaseDtor(Block, &BI); |
David Blaikie | 0f2ae78 | 2012-01-24 04:51:48 +0000 | [diff] [blame] | 1736 | } |
| 1737 | } |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1738 | } |
| 1739 | |
| 1740 | // First destroy member objects. |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1741 | for (auto *FI : RD->fields()) { |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 1742 | // Check for constant size array. Set type to array element type. |
| 1743 | QualType QT = FI->getType(); |
| 1744 | if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1745 | if (AT->getSize() == 0) |
| 1746 | continue; |
| 1747 | QT = AT->getElementType(); |
| 1748 | } |
| 1749 | |
| 1750 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1751 | if (!CD->hasTrivialDestructor()) { |
| 1752 | autoCreateBlock(); |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 1753 | appendMemberDtor(Block, FI); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 1754 | } |
| 1755 | } |
| 1756 | } |
| 1757 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1758 | /// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either |
| 1759 | /// way return valid LocalScope object. |
| 1760 | LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) { |
David Blaikie | c1334cc | 2015-08-13 22:12:21 +0000 | [diff] [blame] | 1761 | if (Scope) |
| 1762 | return Scope; |
| 1763 | llvm::BumpPtrAllocator &alloc = cfg->getAllocator(); |
| 1764 | return new (alloc.Allocate<LocalScope>()) |
| 1765 | LocalScope(BumpVectorContext(alloc), ScopePos); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1766 | } |
| 1767 | |
| 1768 | /// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 1769 | /// that should create implicit scope (e.g. if/else substatements). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1770 | void CFGBuilder::addLocalScopeForStmt(Stmt *S) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1771 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1772 | !BuildOpts.AddScopes) |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1773 | return; |
| 1774 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1775 | LocalScope *Scope = nullptr; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1776 | |
| 1777 | // For compound statement we will be creating explicit scope. |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1778 | if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) { |
Aaron Ballman | c7e4e21 | 2014-03-17 14:19:37 +0000 | [diff] [blame] | 1779 | for (auto *BI : CS->body()) { |
| 1780 | Stmt *SI = BI->stripLabelLikeStatements(); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 1781 | if (DeclStmt *DS = dyn_cast<DeclStmt>(SI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1782 | Scope = addLocalScopeForDeclStmt(DS, Scope); |
| 1783 | } |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1784 | return; |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1785 | } |
| 1786 | |
| 1787 | // For any other statement scope will be implicit and as such will be |
| 1788 | // interesting only for DeclStmt. |
Chandler Carruth | a626d64 | 2011-09-10 00:02:34 +0000 | [diff] [blame] | 1789 | if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements())) |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1790 | addLocalScopeForDeclStmt(DS); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1791 | } |
| 1792 | |
| 1793 | /// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will |
| 1794 | /// reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1795 | LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1796 | LocalScope* Scope) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1797 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1798 | !BuildOpts.AddScopes) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1799 | return Scope; |
| 1800 | |
Aaron Ballman | 535bbcc | 2014-03-14 17:01:24 +0000 | [diff] [blame] | 1801 | for (auto *DI : DS->decls()) |
| 1802 | if (VarDecl *VD = dyn_cast<VarDecl>(DI)) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1803 | Scope = addLocalScopeForVarDecl(VD, Scope); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1804 | return Scope; |
| 1805 | } |
| 1806 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1807 | bool CFGBuilder::hasTrivialDestructor(VarDecl *VD) { |
| 1808 | // Check for const references bound to temporary. Set type to pointee. |
| 1809 | QualType QT = VD->getType(); |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1810 | if (QT->isReferenceType()) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1811 | // Attempt to determine whether this declaration lifetime-extends a |
| 1812 | // temporary. |
| 1813 | // |
| 1814 | // FIXME: This is incorrect. Non-reference declarations can lifetime-extend |
| 1815 | // temporaries, and a single declaration can extend multiple temporaries. |
| 1816 | // We should look at the storage duration on each nested |
| 1817 | // MaterializeTemporaryExpr instead. |
| 1818 | |
| 1819 | const Expr *Init = VD->getInit(); |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1820 | if (!Init) { |
| 1821 | // Probably an exception catch-by-reference variable. |
| 1822 | // FIXME: It doesn't really mean that the object has a trivial destructor. |
| 1823 | // Also are there other cases? |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1824 | return true; |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1825 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1826 | |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1827 | // Lifetime-extending a temporary? |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1828 | bool FoundMTE = false; |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 1829 | QT = getReferenceInitTemporaryType(Init, &FoundMTE); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1830 | if (!FoundMTE) |
| 1831 | return true; |
| 1832 | } |
| 1833 | |
| 1834 | // Check for constant size array. Set type to array element type. |
| 1835 | while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) { |
| 1836 | if (AT->getSize() == 0) |
| 1837 | return true; |
| 1838 | QT = AT->getElementType(); |
| 1839 | } |
| 1840 | |
| 1841 | // Check if type is a C++ class with non-trivial destructor. |
| 1842 | if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl()) |
| 1843 | return !CD->hasDefinition() || CD->hasTrivialDestructor(); |
| 1844 | return true; |
| 1845 | } |
| 1846 | |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1847 | /// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will |
| 1848 | /// create add scope for automatic objects and temporary objects bound to |
| 1849 | /// const reference. Will reuse Scope if not NULL. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1850 | LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD, |
Zhongxing Xu | 307701e | 2010-10-01 03:09:09 +0000 | [diff] [blame] | 1851 | LocalScope* Scope) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1852 | assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) && |
| 1853 | "AddImplicitDtors and AddLifetime cannot be used at the same time"); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1854 | if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime && |
| 1855 | !BuildOpts.AddScopes) |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1856 | return Scope; |
| 1857 | |
| 1858 | // Check if variable is local. |
| 1859 | switch (VD->getStorageClass()) { |
| 1860 | case SC_None: |
| 1861 | case SC_Auto: |
| 1862 | case SC_Register: |
| 1863 | break; |
| 1864 | default: return Scope; |
| 1865 | } |
| 1866 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1867 | if (BuildOpts.AddImplicitDtors) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1868 | if (!hasTrivialDestructor(VD) || BuildOpts.AddScopes) { |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 1869 | // Add the variable to scope |
| 1870 | Scope = createOrReuseLocalScope(Scope); |
| 1871 | Scope->addVar(VD); |
| 1872 | ScopePos = Scope->begin(); |
| 1873 | } |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1874 | return Scope; |
| 1875 | } |
| 1876 | |
| 1877 | assert(BuildOpts.AddLifetime); |
| 1878 | // Add the variable to scope |
| 1879 | Scope = createOrReuseLocalScope(Scope); |
| 1880 | Scope->addVar(VD); |
| 1881 | ScopePos = Scope->begin(); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1882 | return Scope; |
| 1883 | } |
| 1884 | |
| 1885 | /// addLocalScopeAndDtors - For given statement add local scope for it and |
| 1886 | /// 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] | 1887 | void CFGBuilder::addLocalScopeAndDtors(Stmt *S) { |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1888 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Zhongxing Xu | 81714f2 | 2010-10-01 03:00:16 +0000 | [diff] [blame] | 1889 | addLocalScopeForStmt(S); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1890 | addAutomaticObjHandling(ScopePos, scopeBeginPos, S); |
Marcin Swiderski | 5e41573 | 2010-09-30 23:05:00 +0000 | [diff] [blame] | 1891 | } |
| 1892 | |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1893 | /// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for |
| 1894 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1895 | /// Elements will be prepended to physical beginning of the vector which |
| 1896 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1897 | /// destructors call site. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1898 | /// FIXME: This mechanism for adding automatic destructors doesn't handle |
| 1899 | /// no-return destructors properly. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1900 | void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk, |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1901 | LocalScope::const_iterator B, LocalScope::const_iterator E) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1902 | if (!BuildOpts.AddImplicitDtors) |
| 1903 | return; |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 1904 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1905 | CFGBlock::iterator InsertPos |
| 1906 | = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C); |
| 1907 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1908 | InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I, |
| 1909 | Blk->getTerminator()); |
Marcin Swiderski | 321a707 | 2010-09-30 22:54:37 +0000 | [diff] [blame] | 1910 | } |
| 1911 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 1912 | /// prependAutomaticObjLifetimeWithTerminator - Prepend lifetime CFGElements for |
| 1913 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1914 | /// Elements will be prepended to physical beginning of the vector which |
| 1915 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1916 | /// where lifetime ends. |
| 1917 | void CFGBuilder::prependAutomaticObjLifetimeWithTerminator( |
| 1918 | CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) { |
| 1919 | if (!BuildOpts.AddLifetime) |
| 1920 | return; |
| 1921 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1922 | CFGBlock::iterator InsertPos = |
| 1923 | Blk->beginLifetimeEndsInsert(Blk->end(), B.distance(E), C); |
| 1924 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1925 | InsertPos = Blk->insertLifetimeEnds(InsertPos, *I, Blk->getTerminator()); |
| 1926 | } |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 1927 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 1928 | /// prependAutomaticObjScopeEndWithTerminator - Prepend scope end CFGElements for |
| 1929 | /// variables with automatic storage duration to CFGBlock's elements vector. |
| 1930 | /// Elements will be prepended to physical beginning of the vector which |
| 1931 | /// happens to be logical end. Use blocks terminator as statement that specifies |
| 1932 | /// where scope ends. |
| 1933 | const VarDecl * |
| 1934 | CFGBuilder::prependAutomaticObjScopeEndWithTerminator( |
| 1935 | CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) { |
| 1936 | if (!BuildOpts.AddScopes) |
| 1937 | return nullptr; |
| 1938 | BumpVectorContext &C = cfg->getBumpVectorContext(); |
| 1939 | CFGBlock::iterator InsertPos = |
| 1940 | Blk->beginScopeEndInsert(Blk->end(), 1, C); |
| 1941 | LocalScope::const_iterator PlaceToInsert = B; |
| 1942 | for (LocalScope::const_iterator I = B; I != E; ++I) |
| 1943 | PlaceToInsert = I; |
| 1944 | Blk->insertScopeEnd(InsertPos, *PlaceToInsert, Blk->getTerminator()); |
| 1945 | return *PlaceToInsert; |
| 1946 | } |
| 1947 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1948 | /// Visit - Walk the subtree of a statement and add extra |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 1949 | /// blocks for ternary operators, &&, and ||. We also process "," and |
| 1950 | /// DeclStmts (which may contain nested control-flow). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 1951 | CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) { |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 1952 | if (!S) { |
| 1953 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 1954 | return nullptr; |
Ted Kremenek | bc1416d | 2010-04-30 22:25:53 +0000 | [diff] [blame] | 1955 | } |
Jordy Rose | 1734737 | 2011-06-10 08:49:37 +0000 | [diff] [blame] | 1956 | |
| 1957 | if (Expr *E = dyn_cast<Expr>(S)) |
| 1958 | S = E->IgnoreParens(); |
| 1959 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1960 | switch (S->getStmtClass()) { |
| 1961 | default: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1962 | return VisitStmt(S, asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1963 | |
| 1964 | case Stmt::AddrLabelExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1965 | return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1966 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1967 | case Stmt::BinaryConditionalOperatorClass: |
| 1968 | return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc); |
| 1969 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1970 | case Stmt::BinaryOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1971 | return VisitBinaryOperator(cast<BinaryOperator>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1972 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1973 | case Stmt::BlockExprClass: |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 1974 | return VisitBlockExpr(cast<BlockExpr>(S), asc); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1975 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1976 | case Stmt::BreakStmtClass: |
| 1977 | return VisitBreakStmt(cast<BreakStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1978 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1979 | case Stmt::CallExprClass: |
Ted Kremenek | 128d04d | 2010-08-31 18:47:34 +0000 | [diff] [blame] | 1980 | case Stmt::CXXOperatorCallExprClass: |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 1981 | case Stmt::CXXMemberCallExprClass: |
Richard Smith | c67fdd4 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 1982 | case Stmt::UserDefinedLiteralClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1983 | return VisitCallExpr(cast<CallExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1984 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1985 | case Stmt::CaseStmtClass: |
| 1986 | return VisitCaseStmt(cast<CaseStmt>(S)); |
| 1987 | |
| 1988 | case Stmt::ChooseExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1989 | return VisitChooseExpr(cast<ChooseExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1990 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1991 | case Stmt::CompoundStmtClass: |
| 1992 | return VisitCompoundStmt(cast<CompoundStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1993 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1994 | case Stmt::ConditionalOperatorClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 1995 | return VisitConditionalOperator(cast<ConditionalOperator>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1996 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 1997 | case Stmt::ContinueStmtClass: |
| 1998 | return VisitContinueStmt(cast<ContinueStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1999 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 2000 | case Stmt::CXXCatchStmtClass: |
| 2001 | return VisitCXXCatchStmt(cast<CXXCatchStmt>(S)); |
| 2002 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 2003 | case Stmt::ExprWithCleanupsClass: |
| 2004 | return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc); |
Ted Kremenek | 82bfc86 | 2010-08-28 00:19:02 +0000 | [diff] [blame] | 2005 | |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 2006 | case Stmt::CXXDefaultArgExprClass: |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 2007 | case Stmt::CXXDefaultInitExprClass: |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 2008 | // FIXME: The expression inside a CXXDefaultArgExpr is owned by the |
| 2009 | // called function's declaration, not by the caller. If we simply add |
| 2010 | // this expression to the CFG, we could end up with the same Expr |
| 2011 | // appearing multiple times. |
| 2012 | // PR13385 / <rdar://problem/12156507> |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 2013 | // |
| 2014 | // It's likewise possible for multiple CXXDefaultInitExprs for the same |
| 2015 | // expression to be used in the same function (through aggregate |
| 2016 | // initialization). |
Jordan Rose | e5d5393 | 2012-08-23 18:10:53 +0000 | [diff] [blame] | 2017 | return VisitStmt(S, asc); |
| 2018 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2019 | case Stmt::CXXBindTemporaryExprClass: |
| 2020 | return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc); |
| 2021 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 2022 | case Stmt::CXXConstructExprClass: |
| 2023 | return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc); |
| 2024 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 2025 | case Stmt::CXXNewExprClass: |
| 2026 | return VisitCXXNewExpr(cast<CXXNewExpr>(S), asc); |
| 2027 | |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 2028 | case Stmt::CXXDeleteExprClass: |
| 2029 | return VisitCXXDeleteExpr(cast<CXXDeleteExpr>(S), asc); |
| 2030 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2031 | case Stmt::CXXFunctionalCastExprClass: |
| 2032 | return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc); |
| 2033 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 2034 | case Stmt::CXXTemporaryObjectExprClass: |
| 2035 | return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc); |
| 2036 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 2037 | case Stmt::CXXThrowExprClass: |
| 2038 | return VisitCXXThrowExpr(cast<CXXThrowExpr>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2039 | |
Ted Kremenek | b27378c | 2010-01-19 20:40:33 +0000 | [diff] [blame] | 2040 | case Stmt::CXXTryStmtClass: |
| 2041 | return VisitCXXTryStmt(cast<CXXTryStmt>(S)); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2042 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 2043 | case Stmt::CXXForRangeStmtClass: |
| 2044 | return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S)); |
| 2045 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2046 | case Stmt::DeclStmtClass: |
| 2047 | return VisitDeclStmt(cast<DeclStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2048 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2049 | case Stmt::DefaultStmtClass: |
| 2050 | return VisitDefaultStmt(cast<DefaultStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2051 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2052 | case Stmt::DoStmtClass: |
| 2053 | return VisitDoStmt(cast<DoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2054 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2055 | case Stmt::ForStmtClass: |
| 2056 | return VisitForStmt(cast<ForStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2057 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2058 | case Stmt::GotoStmtClass: |
| 2059 | return VisitGotoStmt(cast<GotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2060 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2061 | case Stmt::IfStmtClass: |
| 2062 | return VisitIfStmt(cast<IfStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2063 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2064 | case Stmt::ImplicitCastExprClass: |
| 2065 | return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 2066 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2067 | case Stmt::IndirectGotoStmtClass: |
| 2068 | return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2069 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2070 | case Stmt::LabelStmtClass: |
| 2071 | return VisitLabelStmt(cast<LabelStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2072 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 2073 | case Stmt::LambdaExprClass: |
| 2074 | return VisitLambdaExpr(cast<LambdaExpr>(S), asc); |
| 2075 | |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 2076 | case Stmt::MaterializeTemporaryExprClass: |
| 2077 | return VisitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(S), |
| 2078 | asc); |
| 2079 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2080 | case Stmt::MemberExprClass: |
| 2081 | return VisitMemberExpr(cast<MemberExpr>(S), asc); |
| 2082 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 2083 | case Stmt::NullStmtClass: |
| 2084 | return Block; |
| 2085 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2086 | case Stmt::ObjCAtCatchStmtClass: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2087 | return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); |
| 2088 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 2089 | case Stmt::ObjCAutoreleasePoolStmtClass: |
| 2090 | return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S)); |
| 2091 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2092 | case Stmt::ObjCAtSynchronizedStmtClass: |
| 2093 | return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2094 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2095 | case Stmt::ObjCAtThrowStmtClass: |
| 2096 | return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2097 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2098 | case Stmt::ObjCAtTryStmtClass: |
| 2099 | return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2100 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2101 | case Stmt::ObjCForCollectionStmtClass: |
| 2102 | return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2103 | |
Ted Kremenek | 0426823 | 2011-11-05 00:10:15 +0000 | [diff] [blame] | 2104 | case Stmt::OpaqueValueExprClass: |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2105 | return Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2106 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 2107 | case Stmt::PseudoObjectExprClass: |
| 2108 | return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S)); |
| 2109 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2110 | case Stmt::ReturnStmtClass: |
| 2111 | return VisitReturnStmt(cast<ReturnStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2112 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 2113 | case Stmt::SEHExceptStmtClass: |
| 2114 | return VisitSEHExceptStmt(cast<SEHExceptStmt>(S)); |
| 2115 | |
| 2116 | case Stmt::SEHFinallyStmtClass: |
| 2117 | return VisitSEHFinallyStmt(cast<SEHFinallyStmt>(S)); |
| 2118 | |
| 2119 | case Stmt::SEHLeaveStmtClass: |
| 2120 | return VisitSEHLeaveStmt(cast<SEHLeaveStmt>(S)); |
| 2121 | |
| 2122 | case Stmt::SEHTryStmtClass: |
| 2123 | return VisitSEHTryStmt(cast<SEHTryStmt>(S)); |
| 2124 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 2125 | case Stmt::UnaryExprOrTypeTraitExprClass: |
| 2126 | return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S), |
| 2127 | asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2128 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2129 | case Stmt::StmtExprClass: |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2130 | return VisitStmtExpr(cast<StmtExpr>(S), asc); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2131 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2132 | case Stmt::SwitchStmtClass: |
| 2133 | return VisitSwitchStmt(cast<SwitchStmt>(S)); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2134 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2135 | case Stmt::UnaryOperatorClass: |
| 2136 | return VisitUnaryOperator(cast<UnaryOperator>(S), asc); |
| 2137 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2138 | case Stmt::WhileStmtClass: |
| 2139 | return VisitWhileStmt(cast<WhileStmt>(S)); |
| 2140 | } |
| 2141 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2142 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2143 | CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2144 | if (asc.alwaysAdd(*this, S)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2145 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2146 | appendStmt(Block, S); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2147 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2148 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2149 | return VisitChildren(S); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2150 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2151 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2152 | /// VisitChildren - Visit the children of a Stmt. |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 2153 | CFGBlock *CFGBuilder::VisitChildren(Stmt *S) { |
| 2154 | CFGBlock *B = Block; |
Ted Kremenek | 828f631 | 2011-02-21 22:11:26 +0000 | [diff] [blame] | 2155 | |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 2156 | // Visit the children in their reverse order so that they appear in |
| 2157 | // left-to-right (natural) order in the CFG. |
| 2158 | reverse_children RChildren(S); |
| 2159 | for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end(); |
| 2160 | I != E; ++I) { |
| 2161 | if (Stmt *Child = *I) |
| 2162 | if (CFGBlock *R = Visit(Child)) |
| 2163 | B = R; |
| 2164 | } |
| 2165 | return B; |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2166 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2167 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2168 | CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, |
| 2169 | AddStmtChoice asc) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2170 | AddressTakenLabels.insert(A->getLabel()); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 2171 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2172 | if (asc.alwaysAdd(*this, A)) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2173 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2174 | appendStmt(Block, A); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2175 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 2176 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2177 | return Block; |
| 2178 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2179 | |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2180 | CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U, |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2181 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2182 | if (asc.alwaysAdd(*this, U)) { |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2183 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2184 | appendStmt(Block, U); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2185 | } |
| 2186 | |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2187 | return Visit(U->getSubExpr(), AddStmtChoice()); |
Zhanyong Wan | 6dace61 | 2010-11-22 08:45:56 +0000 | [diff] [blame] | 2188 | } |
| 2189 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2190 | CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) { |
| 2191 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
| 2192 | appendStmt(ConfluenceBlock, B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2193 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2194 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2195 | return nullptr; |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2196 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2197 | return VisitLogicalOperator(B, nullptr, ConfluenceBlock, |
| 2198 | ConfluenceBlock).first; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2199 | } |
| 2200 | |
| 2201 | std::pair<CFGBlock*, CFGBlock*> |
| 2202 | CFGBuilder::VisitLogicalOperator(BinaryOperator *B, |
| 2203 | Stmt *Term, |
| 2204 | CFGBlock *TrueBlock, |
| 2205 | CFGBlock *FalseBlock) { |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2206 | // Introspect the RHS. If it is a nested logical operation, we recursively |
| 2207 | // build the CFG using this function. Otherwise, resort to default |
| 2208 | // CFG construction behavior. |
| 2209 | Expr *RHS = B->getRHS()->IgnoreParens(); |
| 2210 | CFGBlock *RHSBlock, *ExitBlock; |
| 2211 | |
| 2212 | do { |
| 2213 | if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS)) |
| 2214 | if (B_RHS->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 2215 | std::tie(RHSBlock, ExitBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2216 | VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock); |
| 2217 | break; |
| 2218 | } |
| 2219 | |
| 2220 | // The RHS is not a nested logical operation. Don't push the terminator |
| 2221 | // down further, but instead visit RHS and construct the respective |
| 2222 | // pieces of the CFG, and link up the RHSBlock with the terminator |
| 2223 | // we have been provided. |
| 2224 | ExitBlock = RHSBlock = createBlock(false); |
| 2225 | |
Richard Trieu | 6a6af52 | 2017-01-04 00:46:30 +0000 | [diff] [blame] | 2226 | // Even though KnownVal is only used in the else branch of the next |
| 2227 | // conditional, tryEvaluateBool performs additional checking on the |
| 2228 | // Expr, so it should be called unconditionally. |
| 2229 | TryResult KnownVal = tryEvaluateBool(RHS); |
| 2230 | if (!KnownVal.isKnown()) |
| 2231 | KnownVal = tryEvaluateBool(B); |
| 2232 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2233 | if (!Term) { |
| 2234 | assert(TrueBlock == FalseBlock); |
| 2235 | addSuccessor(RHSBlock, TrueBlock); |
| 2236 | } |
| 2237 | else { |
| 2238 | RHSBlock->setTerminator(Term); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2239 | addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 2240 | addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2241 | } |
| 2242 | |
| 2243 | Block = RHSBlock; |
| 2244 | RHSBlock = addStmt(RHS); |
| 2245 | } |
| 2246 | while (false); |
| 2247 | |
| 2248 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2249 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2250 | |
| 2251 | // Generate the blocks for evaluating the LHS. |
| 2252 | Expr *LHS = B->getLHS()->IgnoreParens(); |
| 2253 | |
| 2254 | if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS)) |
| 2255 | if (B_LHS->isLogicalOp()) { |
| 2256 | if (B->getOpcode() == BO_LOr) |
| 2257 | FalseBlock = RHSBlock; |
| 2258 | else |
| 2259 | TrueBlock = RHSBlock; |
| 2260 | |
| 2261 | // For the LHS, treat 'B' as the terminator that we want to sink |
| 2262 | // into the nested branch. The RHS always gets the top-most |
| 2263 | // terminator. |
| 2264 | return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock); |
| 2265 | } |
| 2266 | |
| 2267 | // Create the block evaluating the LHS. |
| 2268 | // This contains the '&&' or '||' as the terminator. |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2269 | CFGBlock *LHSBlock = createBlock(false); |
| 2270 | LHSBlock->setTerminator(B); |
| 2271 | |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2272 | Block = LHSBlock; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2273 | CFGBlock *EntryLHSBlock = addStmt(LHS); |
| 2274 | |
| 2275 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2276 | return std::make_pair(nullptr, nullptr); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2277 | |
| 2278 | // See if this is a known constant. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2279 | TryResult KnownVal = tryEvaluateBool(LHS); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2280 | |
| 2281 | // Now link the LHSBlock with RHSBlock. |
| 2282 | if (B->getOpcode() == BO_LOr) { |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2283 | addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse()); |
| 2284 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2285 | } else { |
| 2286 | assert(B->getOpcode() == BO_LAnd); |
Ted Kremenek | 782f003 | 2014-03-07 02:25:53 +0000 | [diff] [blame] | 2287 | addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse()); |
| 2288 | addSuccessor(LHSBlock, FalseBlock, !KnownVal.isTrue()); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2289 | } |
| 2290 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2291 | return std::make_pair(EntryLHSBlock, ExitBlock); |
Ted Kremenek | a16436f | 2012-07-14 05:04:06 +0000 | [diff] [blame] | 2292 | } |
| 2293 | |
| 2294 | CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B, |
| 2295 | AddStmtChoice asc) { |
| 2296 | // && or || |
| 2297 | if (B->isLogicalOp()) |
| 2298 | return VisitLogicalOperator(B); |
| 2299 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2300 | if (B->getOpcode() == BO_Comma) { // , |
Ted Kremenek | fe9b768 | 2009-07-17 22:57:50 +0000 | [diff] [blame] | 2301 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2302 | appendStmt(Block, B); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2303 | addStmt(B->getRHS()); |
| 2304 | return addStmt(B->getLHS()); |
| 2305 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 2306 | |
| 2307 | if (B->isAssignmentOp()) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2308 | if (asc.alwaysAdd(*this, B)) { |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2309 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2310 | appendStmt(Block, B); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2311 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2312 | Visit(B->getLHS()); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2313 | return Visit(B->getRHS()); |
Zhongxing Xu | 41cdf58 | 2010-06-03 06:23:18 +0000 | [diff] [blame] | 2314 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2315 | |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2316 | if (asc.alwaysAdd(*this, B)) { |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2317 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2318 | appendStmt(Block, B); |
Marcin Swiderski | 7723249 | 2010-10-24 08:21:40 +0000 | [diff] [blame] | 2319 | } |
| 2320 | |
Zhongxing Xu | d95ccd5 | 2010-10-27 03:23:10 +0000 | [diff] [blame] | 2321 | CFGBlock *RBlock = Visit(B->getRHS()); |
| 2322 | CFGBlock *LBlock = Visit(B->getLHS()); |
| 2323 | // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr |
| 2324 | // containing a DoStmt, and the LHS doesn't create a new block, then we should |
| 2325 | // return RBlock. Otherwise we'll incorrectly return NULL. |
| 2326 | return (LBlock ? LBlock : RBlock); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2327 | } |
| 2328 | |
Ted Kremenek | e249984 | 2012-04-12 20:03:44 +0000 | [diff] [blame] | 2329 | CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 2330 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2331 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2332 | appendStmt(Block, E); |
Ted Kremenek | 470bfa4 | 2009-11-25 01:34:30 +0000 | [diff] [blame] | 2333 | } |
| 2334 | return Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2335 | } |
| 2336 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2337 | CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) { |
| 2338 | // "break" is a control-flow statement. Thus we stop processing the current |
| 2339 | // block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2340 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2341 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2342 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2343 | // Now create a new block that ends with the break statement. |
| 2344 | Block = createBlock(false); |
| 2345 | Block->setTerminator(B); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2346 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2347 | // If there is no target for the break, then we are looking at an incomplete |
| 2348 | // AST. This means that the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2349 | if (BreakJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2350 | addAutomaticObjHandling(ScopePos, BreakJumpTarget.scopePosition, B); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 2351 | addSuccessor(Block, BreakJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 2352 | } else |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2353 | badCFG = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2354 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2355 | return Block; |
| 2356 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2357 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2358 | static bool CanThrow(Expr *E, ASTContext &Ctx) { |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2359 | QualType Ty = E->getType(); |
| 2360 | if (Ty->isFunctionPointerType()) |
| 2361 | Ty = Ty->getAs<PointerType>()->getPointeeType(); |
| 2362 | else if (Ty->isBlockPointerType()) |
| 2363 | Ty = Ty->getAs<BlockPointerType>()->getPointeeType(); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2364 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2365 | const FunctionType *FT = Ty->getAs<FunctionType>(); |
| 2366 | if (FT) { |
| 2367 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) |
Richard Smith | d3b5c908 | 2012-07-27 04:22:15 +0000 | [diff] [blame] | 2368 | if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && |
Richard Smith | eaf11ad | 2018-05-03 03:58:32 +0000 | [diff] [blame] | 2369 | Proto->isNothrow()) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2370 | return false; |
| 2371 | } |
| 2372 | return true; |
| 2373 | } |
| 2374 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2375 | CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) { |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2376 | // Compute the callee type. |
| 2377 | QualType calleeType = C->getCallee()->getType(); |
| 2378 | if (calleeType == Context->BoundMemberTy) { |
| 2379 | QualType boundType = Expr::findBoundMemberType(C->getCallee()); |
| 2380 | |
| 2381 | // We should only get a null bound type if processing a dependent |
| 2382 | // CFG. Recover by assuming nothing. |
| 2383 | if (!boundType.isNull()) calleeType = boundType; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2384 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2385 | |
Artem Dergachev | 72da02f | 2018-04-19 23:09:22 +0000 | [diff] [blame] | 2386 | // FIXME: Once actually implemented, this construction context layer should |
| 2387 | // include the number of the argument as well. |
| 2388 | for (auto Arg: C->arguments()) { |
| 2389 | findConstructionContexts( |
| 2390 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), C), Arg); |
| 2391 | } |
| 2392 | |
John McCall | c67067f | 2011-05-11 07:19:11 +0000 | [diff] [blame] | 2393 | // If this is a call to a no-return function, this stops the block here. |
| 2394 | bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); |
| 2395 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2396 | bool AddEHEdge = false; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2397 | |
| 2398 | // Languages without exceptions are assumed to not throw. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2399 | if (Context->getLangOpts().Exceptions) { |
Ted Kremenek | e97b1eb | 2010-09-14 23:41:16 +0000 | [diff] [blame] | 2400 | if (BuildOpts.AddEHEdges) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2401 | AddEHEdge = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2402 | } |
| 2403 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2404 | // If this is a call to a builtin function, it might not actually evaluate |
| 2405 | // its arguments. Don't add them to the CFG if this is the case. |
| 2406 | bool OmitArguments = false; |
| 2407 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2408 | if (FunctionDecl *FD = C->getDirectCallee()) { |
Nico Weber | 758fbac | 2018-02-13 21:31:47 +0000 | [diff] [blame] | 2409 | if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context)) |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2410 | NoReturn = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2411 | if (FD->hasAttr<NoThrowAttr>()) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2412 | AddEHEdge = false; |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2413 | if (FD->getBuiltinID() == Builtin::BI__builtin_object_size) |
| 2414 | OmitArguments = true; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2415 | } |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2416 | |
Sebastian Redl | 31ad754 | 2011-03-13 17:09:40 +0000 | [diff] [blame] | 2417 | if (!CanThrow(C->getCallee(), *Context)) |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2418 | AddEHEdge = false; |
| 2419 | |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2420 | if (OmitArguments) { |
| 2421 | assert(!NoReturn && "noreturn calls with unevaluated args not implemented"); |
| 2422 | assert(!AddEHEdge && "EH calls with unevaluated args not implemented"); |
| 2423 | autoCreateBlock(); |
| 2424 | appendStmt(Block, C); |
| 2425 | return Visit(C->getCallee()); |
| 2426 | } |
| 2427 | |
| 2428 | if (!NoReturn && !AddEHEdge) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 2429 | autoCreateBlock(); |
| 2430 | appendCall(Block, C); |
| 2431 | |
| 2432 | return VisitChildren(C); |
Jordan Rose | 5374c07 | 2013-08-19 16:27:28 +0000 | [diff] [blame] | 2433 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2434 | |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2435 | if (Block) { |
| 2436 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2437 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2438 | return nullptr; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2439 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2440 | |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 2441 | if (NoReturn) |
| 2442 | Block = createNoReturnBlock(); |
| 2443 | else |
| 2444 | Block = createBlock(); |
| 2445 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 2446 | appendCall(Block, C); |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2447 | |
Mike Stump | 04c6851 | 2010-01-21 15:20:48 +0000 | [diff] [blame] | 2448 | if (AddEHEdge) { |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2449 | // Add exceptional edges. |
| 2450 | if (TryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2451 | addSuccessor(Block, TryTerminatedBlock); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2452 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2453 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2454 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2455 | |
Mike Stump | 8c5d799 | 2009-07-25 21:26:53 +0000 | [diff] [blame] | 2456 | return VisitChildren(C); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2457 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2458 | |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2459 | CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C, |
| 2460 | AddStmtChoice asc) { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2461 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2462 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2463 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2464 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2465 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2466 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2467 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2468 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2469 | CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2470 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2471 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2472 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2473 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2474 | Block = nullptr; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2475 | CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2476 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2477 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2478 | |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2479 | Block = createBlock(false); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2480 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2481 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2482 | addSuccessor(Block, KnownVal.isFalse() ? nullptr : LHSBlock); |
| 2483 | addSuccessor(Block, KnownVal.isTrue() ? nullptr : RHSBlock); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2484 | Block->setTerminator(C); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2485 | return addStmt(C->getCond()); |
Ted Kremenek | 2182259 | 2009-07-17 18:20:32 +0000 | [diff] [blame] | 2486 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2487 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2488 | CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) { |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2489 | LocalScope::const_iterator scopeBeginPos = ScopePos; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2490 | addLocalScopeForStmt(C); |
| 2491 | |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2492 | if (!C->body_empty() && !isa<ReturnStmt>(*C->body_rbegin())) { |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2493 | // If the body ends with a ReturnStmt, the dtors will be added in |
| 2494 | // VisitReturnStmt. |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2495 | addAutomaticObjHandling(ScopePos, scopeBeginPos, C); |
Matthias Gehre | 09a134e | 2015-11-14 00:36:50 +0000 | [diff] [blame] | 2496 | } |
| 2497 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2498 | CFGBlock *LastBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2499 | |
| 2500 | for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend(); |
| 2501 | I != E; ++I ) { |
Ted Kremenek | 4f2ab5a | 2010-08-17 21:00:06 +0000 | [diff] [blame] | 2502 | // If we hit a segment of code just containing ';' (NullStmts), we can |
| 2503 | // get a null block back. In such cases, just use the LastBlock |
| 2504 | if (CFGBlock *newBlock = addStmt(*I)) |
| 2505 | LastBlock = newBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2506 | |
Ted Kremenek | ce499c2 | 2009-08-27 23:16:26 +0000 | [diff] [blame] | 2507 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2508 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2509 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 2510 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2511 | return LastBlock; |
| 2512 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2513 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2514 | CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C, |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2515 | AddStmtChoice asc) { |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2516 | const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2517 | const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : nullptr); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2518 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2519 | // Create the confluence block that will "merge" the results of the ternary |
| 2520 | // expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2521 | CFGBlock *ConfluenceBlock = Block ? Block : createBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 2522 | appendStmt(ConfluenceBlock, C); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2523 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2524 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2525 | |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 2526 | AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 2527 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2528 | // Create a block for the LHS expression if there is an LHS expression. A |
| 2529 | // GCC extension allows LHS to be NULL, causing the condition to be the |
| 2530 | // value that is returned instead. |
| 2531 | // e.g: x ?: y is shorthand for: x ? x : y; |
| 2532 | Succ = ConfluenceBlock; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2533 | Block = nullptr; |
| 2534 | CFGBlock *LHSBlock = nullptr; |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2535 | const Expr *trueExpr = C->getTrueExpr(); |
| 2536 | if (trueExpr != opaqueValue) { |
| 2537 | LHSBlock = Visit(C->getTrueExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2538 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2539 | return nullptr; |
| 2540 | Block = nullptr; |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2541 | } |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2542 | else |
| 2543 | LHSBlock = ConfluenceBlock; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2544 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2545 | // Create the block for the RHS expression. |
| 2546 | Succ = ConfluenceBlock; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2547 | CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2548 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2549 | return nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2550 | |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 2551 | // If the condition is a logical '&&' or '||', build a more accurate CFG. |
| 2552 | if (BinaryOperator *Cond = |
| 2553 | dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens())) |
| 2554 | if (Cond->isLogicalOp()) |
| 2555 | return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first; |
| 2556 | |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2557 | // Create the block that will contain the condition. |
| 2558 | Block = createBlock(false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2559 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2560 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2561 | const TryResult& KnownVal = tryEvaluateBool(C->getCond()); |
Ted Kremenek | 5a09527 | 2014-03-04 21:53:26 +0000 | [diff] [blame] | 2562 | addSuccessor(Block, LHSBlock, !KnownVal.isFalse()); |
| 2563 | addSuccessor(Block, RHSBlock, !KnownVal.isTrue()); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2564 | Block->setTerminator(C); |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 2565 | Expr *condExpr = C->getCond(); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2566 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2567 | if (opaqueValue) { |
| 2568 | // Run the condition expression if it's not trivially expressed in |
| 2569 | // terms of the opaque value (or if there is no opaque value). |
| 2570 | if (condExpr != opaqueValue) |
| 2571 | addStmt(condExpr); |
John McCall | 68cc335 | 2011-02-19 03:13:26 +0000 | [diff] [blame] | 2572 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2573 | // Before that, run the common subexpression if there was one. |
| 2574 | // At least one of this or the above will be run. |
| 2575 | return addStmt(BCO->getCommon()); |
| 2576 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 2577 | |
Ted Kremenek | d813801 | 2011-02-24 03:09:15 +0000 | [diff] [blame] | 2578 | return addStmt(condExpr); |
Ted Kremenek | 51d40b0 | 2009-07-17 18:15:54 +0000 | [diff] [blame] | 2579 | } |
| 2580 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2581 | CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) { |
Ted Kremenek | 6878c36 | 2011-05-10 18:42:15 +0000 | [diff] [blame] | 2582 | // Check if the Decl is for an __label__. If so, elide it from the |
| 2583 | // CFG entirely. |
| 2584 | if (isa<LabelDecl>(*DS->decl_begin())) |
| 2585 | return Block; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 2586 | |
Ted Kremenek | 3a60114 | 2011-05-24 20:41:31 +0000 | [diff] [blame] | 2587 | // This case also handles static_asserts. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2588 | if (DS->isSingleDecl()) |
| 2589 | return VisitDeclSubExpr(DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2590 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2591 | CFGBlock *B = nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2592 | |
Jordan Rose | 8c6c8a9 | 2012-07-20 18:50:48 +0000 | [diff] [blame] | 2593 | // Build an individual DeclStmt for each decl. |
| 2594 | for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(), |
| 2595 | E = DS->decl_rend(); |
| 2596 | I != E; ++I) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2597 | // Get the alignment of the new DeclStmt, padding out to >=8 bytes. |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 2598 | unsigned A = alignof(DeclStmt) < 8 ? 8 : alignof(DeclStmt); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2599 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2600 | // Allocate the DeclStmt using the BumpPtrAllocator. It will get |
| 2601 | // automatically freed with the CFG. |
| 2602 | DeclGroupRef DG(*I); |
| 2603 | Decl *D = *I; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2604 | void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2605 | DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D)); |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 2606 | cfg->addSyntheticDeclStmt(DSNew, DS); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2607 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2608 | // Append the fake DeclStmt to block. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2609 | B = VisitDeclSubExpr(DSNew); |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2610 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2611 | |
| 2612 | return B; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2613 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2614 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2615 | /// VisitDeclSubExpr - Utility method to add block-level expressions for |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2616 | /// DeclStmts and initializers in them. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2617 | CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2618 | assert(DS->isSingleDecl() && "Can handle single declarations only."); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2619 | VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2620 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2621 | if (!VD) { |
Jordan Rose | 5250b87 | 2013-06-03 22:59:41 +0000 | [diff] [blame] | 2622 | // Of everything that can be declared in a DeclStmt, only VarDecls impact |
| 2623 | // runtime semantics. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2624 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2625 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2626 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2627 | bool HasTemporaries = false; |
| 2628 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2629 | // Guard static initializers under a branch. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2630 | CFGBlock *blockAfterStaticInit = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2631 | |
| 2632 | if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) { |
| 2633 | // For static variables, we need to create a branch to track |
| 2634 | // whether or not they are initialized. |
| 2635 | if (Block) { |
| 2636 | Succ = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2637 | Block = nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2638 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2639 | return nullptr; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2640 | } |
| 2641 | blockAfterStaticInit = Succ; |
| 2642 | } |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2643 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2644 | // Destructors of temporaries in initialization expression should be called |
| 2645 | // after initialization finishes. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2646 | Expr *Init = VD->getInit(); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2647 | if (Init) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 2648 | HasTemporaries = isa<ExprWithCleanups>(Init); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2649 | |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 2650 | if (BuildOpts.AddTemporaryDtors && HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2651 | // Generate destructors for temporaries in initialization expression. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 2652 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 2653 | VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(), |
| 2654 | /*BindToTemporary=*/false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2655 | } |
| 2656 | } |
| 2657 | |
| 2658 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 2659 | appendStmt(Block, DS); |
Artem Dergachev | 5fc1033 | 2018-02-10 01:55:23 +0000 | [diff] [blame] | 2660 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2661 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 2662 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2663 | Init); |
Artem Dergachev | 5fc1033 | 2018-02-10 01:55:23 +0000 | [diff] [blame] | 2664 | |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2665 | // Keep track of the last non-null block, as 'Block' can be nulled out |
| 2666 | // if the initializer expression is something like a 'while' in a |
| 2667 | // statement-expression. |
| 2668 | CFGBlock *LastBlock = Block; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2669 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2670 | if (Init) { |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2671 | if (HasTemporaries) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 2672 | // For expression with temporaries go directly to subexpression to omit |
| 2673 | // generating destructors for the second time. |
Ted Kremenek | 213d053 | 2012-03-22 05:57:43 +0000 | [diff] [blame] | 2674 | ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); |
| 2675 | if (CFGBlock *newBlock = Visit(EC->getSubExpr())) |
| 2676 | LastBlock = newBlock; |
| 2677 | } |
| 2678 | else { |
| 2679 | if (CFGBlock *newBlock = Visit(Init)) |
| 2680 | LastBlock = newBlock; |
| 2681 | } |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2682 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2683 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2684 | // 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] | 2685 | for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2686 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) { |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2687 | if (CFGBlock *newBlock = addStmt(VA->getSizeExpr())) |
| 2688 | LastBlock = newBlock; |
| 2689 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2690 | |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 2691 | maybeAddScopeBeginForVarDecl(Block, VD, DS); |
| 2692 | |
Marcin Swiderski | 667ffec | 2010-10-01 00:23:17 +0000 | [diff] [blame] | 2693 | // Remove variable from local scope. |
| 2694 | if (ScopePos && VD == *ScopePos) |
| 2695 | ++ScopePos; |
| 2696 | |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2697 | CFGBlock *B = LastBlock; |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2698 | if (blockAfterStaticInit) { |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2699 | Succ = B; |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2700 | Block = createBlock(false); |
| 2701 | Block->setTerminator(DS); |
Ted Kremenek | f82d578 | 2013-03-29 00:42:56 +0000 | [diff] [blame] | 2702 | addSuccessor(Block, blockAfterStaticInit); |
Ted Kremenek | 338c3aa | 2013-03-29 00:09:28 +0000 | [diff] [blame] | 2703 | addSuccessor(Block, B); |
| 2704 | B = Block; |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 2705 | } |
| 2706 | |
| 2707 | return B; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2708 | } |
| 2709 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2710 | CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2711 | // We may see an if statement in the middle of a basic block, or it may be the |
| 2712 | // first statement we are processing. In either case, we create a new basic |
| 2713 | // block. First, we create the blocks for the then...else statements, and |
| 2714 | // 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] | 2715 | // middle of a block, we stop processing that block. That block is then the |
| 2716 | // implicit successor for the "then" and "else" clauses. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2717 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2718 | // Save local scope position because in case of condition variable ScopePos |
| 2719 | // won't be restored when traversing AST. |
| 2720 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2721 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2722 | // Create local scope for C++17 if init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2723 | if (Stmt *Init = I->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2724 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2725 | |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2726 | // Create local scope for possible condition variable. |
| 2727 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2728 | if (VarDecl *VD = I->getConditionVariable()) |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2729 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2730 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2731 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), I); |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2732 | |
Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 2733 | // The block we were processing is now finished. Make it the successor |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2734 | // block. |
| 2735 | if (Block) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2736 | Succ = Block; |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2737 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2738 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2739 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2740 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2741 | // Process the false branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2742 | CFGBlock *ElseBlock = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2743 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2744 | if (Stmt *Else = I->getElse()) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2745 | SaveAndRestore<CFGBlock*> sv(Succ); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2746 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2747 | // NULL out Block so that the recursive call to Visit will |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2748 | // create a new basic block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2749 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2750 | |
| 2751 | // If branch is not a compound statement create implicit scope |
| 2752 | // and add destructors. |
| 2753 | if (!isa<CompoundStmt>(Else)) |
| 2754 | addLocalScopeAndDtors(Else); |
| 2755 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2756 | ElseBlock = addStmt(Else); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2757 | |
Ted Kremenek | bbad8ce | 2007-08-30 18:13:31 +0000 | [diff] [blame] | 2758 | if (!ElseBlock) // Can occur when the Else body has all NullStmts. |
| 2759 | ElseBlock = sv.get(); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2760 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2761 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2762 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 2763 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2764 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2765 | |
Ted Kremenek | 0bcdc98 | 2009-07-17 18:04:55 +0000 | [diff] [blame] | 2766 | // Process the true branch. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2767 | CFGBlock *ThenBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2768 | { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2769 | Stmt *Then = I->getThen(); |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 2770 | assert(Then); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2771 | SaveAndRestore<CFGBlock*> sv(Succ); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2772 | Block = nullptr; |
Marcin Swiderski | f883ade | 2010-10-01 00:52:17 +0000 | [diff] [blame] | 2773 | |
| 2774 | // If branch is not a compound statement create implicit scope |
| 2775 | // and add destructors. |
| 2776 | if (!isa<CompoundStmt>(Then)) |
| 2777 | addLocalScopeAndDtors(Then); |
| 2778 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2779 | ThenBlock = addStmt(Then); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2780 | |
Ted Kremenek | 1b37951 | 2009-04-01 03:52:47 +0000 | [diff] [blame] | 2781 | if (!ThenBlock) { |
| 2782 | // We can reach here if the "then" body has all NullStmts. |
| 2783 | // Create an empty block so we can distinguish between true and false |
| 2784 | // branches in path-sensitive analyses. |
| 2785 | ThenBlock = createBlock(false); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 2786 | addSuccessor(ThenBlock, sv.get()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2787 | } else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2788 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 2789 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2790 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2791 | } |
| 2792 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2793 | // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by |
| 2794 | // having these handle the actual control-flow jump. Note that |
| 2795 | // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)" |
| 2796 | // we resort to the old control-flow behavior. This special handling |
| 2797 | // removes infeasible paths from the control-flow graph by having the |
| 2798 | // control-flow transfer of '&&' or '||' go directly into the then/else |
| 2799 | // blocks directly. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2800 | BinaryOperator *Cond = |
| 2801 | I->getConditionVariable() |
| 2802 | ? nullptr |
| 2803 | : dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens()); |
| 2804 | CFGBlock *LastBlock; |
| 2805 | if (Cond && Cond->isLogicalOp()) |
| 2806 | LastBlock = VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first; |
| 2807 | else { |
| 2808 | // Now create a new block containing the if statement. |
| 2809 | Block = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 2810 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2811 | // Set the terminator of the new block to the If statement. |
| 2812 | Block->setTerminator(I); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2813 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2814 | // See if this is a known constant. |
| 2815 | const TryResult &KnownVal = tryEvaluateBool(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2816 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2817 | // Add the successors. If we know that specific branches are |
| 2818 | // unreachable, inform addSuccessor() of that knowledge. |
| 2819 | addSuccessor(Block, ThenBlock, /* isReachable = */ !KnownVal.isFalse()); |
| 2820 | addSuccessor(Block, ElseBlock, /* isReachable = */ !KnownVal.isTrue()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 2821 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2822 | // Add the condition as the last statement in the new block. This may |
| 2823 | // create new blocks as the condition may contain control-flow. Any newly |
| 2824 | // created blocks will be pointed to be "Block". |
| 2825 | LastBlock = addStmt(I->getCond()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2826 | |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 2827 | // If the IfStmt contains a condition variable, add it and its |
| 2828 | // initializer to the CFG. |
| 2829 | if (const DeclStmt* DS = I->getConditionVariableDeclStmt()) { |
| 2830 | autoCreateBlock(); |
| 2831 | LastBlock = addStmt(const_cast<DeclStmt *>(DS)); |
| 2832 | } |
Ted Kremenek | a7bcbde | 2009-12-23 04:49:01 +0000 | [diff] [blame] | 2833 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 2834 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 2835 | // Finally, if the IfStmt contains a C++17 init-stmt, add it to the CFG. |
| 2836 | if (Stmt *Init = I->getInit()) { |
| 2837 | autoCreateBlock(); |
| 2838 | LastBlock = addStmt(Init); |
| 2839 | } |
| 2840 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 2841 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2842 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2843 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2844 | CFGBlock *CFGBuilder::VisitReturnStmt(ReturnStmt *R) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 2845 | // 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] | 2846 | // |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2847 | // NOTE: If a "return" appears in the middle of a block, this means that the |
| 2848 | // code afterwards is DEAD (unreachable). We still keep a basic block |
| 2849 | // for that code; a simple "mark-and-sweep" from the entry block will be |
| 2850 | // able to report such dead blocks. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2851 | |
| 2852 | // Create the new block. |
| 2853 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2854 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 2855 | addAutomaticObjHandling(ScopePos, LocalScope::const_iterator(), R); |
Pavel Labath | 921e765 | 2013-09-06 08:12:48 +0000 | [diff] [blame] | 2856 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2857 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 2858 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), R), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 2859 | R->getRetValue()); |
Artem Dergachev | 9ac2e11 | 2018-02-12 22:36:36 +0000 | [diff] [blame] | 2860 | |
Pavel Labath | 921e765 | 2013-09-06 08:12:48 +0000 | [diff] [blame] | 2861 | // If the one of the destructors does not return, we already have the Exit |
| 2862 | // block as a successor. |
| 2863 | if (!Block->hasNoReturnElement()) |
| 2864 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2865 | |
| 2866 | // Add the return statement to the block. This may create new blocks if R |
| 2867 | // contains control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 2868 | return VisitStmt(R, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2869 | } |
| 2870 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 2871 | CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) { |
| 2872 | // SEHExceptStmt are treated like labels, so they are the first statement in a |
| 2873 | // block. |
| 2874 | |
| 2875 | // Save local scope position because in case of exception variable ScopePos |
| 2876 | // won't be restored when traversing AST. |
| 2877 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 2878 | |
| 2879 | addStmt(ES->getBlock()); |
| 2880 | CFGBlock *SEHExceptBlock = Block; |
| 2881 | if (!SEHExceptBlock) |
| 2882 | SEHExceptBlock = createBlock(); |
| 2883 | |
| 2884 | appendStmt(SEHExceptBlock, ES); |
| 2885 | |
| 2886 | // Also add the SEHExceptBlock as a label, like with regular labels. |
| 2887 | SEHExceptBlock->setLabel(ES); |
| 2888 | |
| 2889 | // Bail out if the CFG is bad. |
| 2890 | if (badCFG) |
| 2891 | return nullptr; |
| 2892 | |
| 2893 | // We set Block to NULL to allow lazy creation of a new block (if necessary). |
| 2894 | Block = nullptr; |
| 2895 | |
| 2896 | return SEHExceptBlock; |
| 2897 | } |
| 2898 | |
| 2899 | CFGBlock *CFGBuilder::VisitSEHFinallyStmt(SEHFinallyStmt *FS) { |
| 2900 | return VisitCompoundStmt(FS->getBlock()); |
| 2901 | } |
| 2902 | |
| 2903 | CFGBlock *CFGBuilder::VisitSEHLeaveStmt(SEHLeaveStmt *LS) { |
| 2904 | // "__leave" is a control-flow statement. Thus we stop processing the current |
| 2905 | // block. |
| 2906 | if (badCFG) |
| 2907 | return nullptr; |
| 2908 | |
| 2909 | // Now create a new block that ends with the __leave statement. |
| 2910 | Block = createBlock(false); |
| 2911 | Block->setTerminator(LS); |
| 2912 | |
| 2913 | // If there is no target for the __leave, then we are looking at an incomplete |
| 2914 | // AST. This means that the CFG cannot be constructed. |
| 2915 | if (SEHLeaveJumpTarget.block) { |
| 2916 | addAutomaticObjHandling(ScopePos, SEHLeaveJumpTarget.scopePosition, LS); |
| 2917 | addSuccessor(Block, SEHLeaveJumpTarget.block); |
| 2918 | } else |
| 2919 | badCFG = true; |
| 2920 | |
| 2921 | return Block; |
| 2922 | } |
| 2923 | |
| 2924 | CFGBlock *CFGBuilder::VisitSEHTryStmt(SEHTryStmt *Terminator) { |
| 2925 | // "__try"/"__except"/"__finally" is a control-flow statement. Thus we stop |
| 2926 | // processing the current block. |
| 2927 | CFGBlock *SEHTrySuccessor = nullptr; |
| 2928 | |
| 2929 | if (Block) { |
| 2930 | if (badCFG) |
| 2931 | return nullptr; |
| 2932 | SEHTrySuccessor = Block; |
| 2933 | } else SEHTrySuccessor = Succ; |
| 2934 | |
| 2935 | // FIXME: Implement __finally support. |
| 2936 | if (Terminator->getFinallyHandler()) |
| 2937 | return NYS(); |
| 2938 | |
| 2939 | CFGBlock *PrevSEHTryTerminatedBlock = TryTerminatedBlock; |
| 2940 | |
| 2941 | // Create a new block that will contain the __try statement. |
| 2942 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
| 2943 | |
| 2944 | // Add the terminator in the __try block. |
| 2945 | NewTryTerminatedBlock->setTerminator(Terminator); |
| 2946 | |
| 2947 | if (SEHExceptStmt *Except = Terminator->getExceptHandler()) { |
| 2948 | // The code after the try is the implicit successor if there's an __except. |
| 2949 | Succ = SEHTrySuccessor; |
| 2950 | Block = nullptr; |
| 2951 | CFGBlock *ExceptBlock = VisitSEHExceptStmt(Except); |
| 2952 | if (!ExceptBlock) |
| 2953 | return nullptr; |
| 2954 | // Add this block to the list of successors for the block with the try |
| 2955 | // statement. |
| 2956 | addSuccessor(NewTryTerminatedBlock, ExceptBlock); |
| 2957 | } |
| 2958 | if (PrevSEHTryTerminatedBlock) |
| 2959 | addSuccessor(NewTryTerminatedBlock, PrevSEHTryTerminatedBlock); |
| 2960 | else |
| 2961 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
| 2962 | |
| 2963 | // The code after the try is the implicit successor. |
| 2964 | Succ = SEHTrySuccessor; |
| 2965 | |
| 2966 | // Save the current "__try" context. |
| 2967 | SaveAndRestore<CFGBlock *> save_try(TryTerminatedBlock, |
| 2968 | NewTryTerminatedBlock); |
| 2969 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
| 2970 | |
| 2971 | // Save the current value for the __leave target. |
| 2972 | // All __leaves should go to the code following the __try |
| 2973 | // (FIXME: or if the __try has a __finally, to the __finally.) |
| 2974 | SaveAndRestore<JumpTarget> save_break(SEHLeaveJumpTarget); |
| 2975 | SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos); |
| 2976 | |
| 2977 | assert(Terminator->getTryBlock() && "__try must contain a non-NULL body"); |
| 2978 | Block = nullptr; |
| 2979 | return addStmt(Terminator->getTryBlock()); |
| 2980 | } |
| 2981 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 2982 | CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 2983 | // Get the block of the labeled statement. Add it to our map. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2984 | addStmt(L->getSubStmt()); |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 2985 | CFGBlock *LabelBlock = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2986 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 2987 | if (!LabelBlock) // This can happen when the body is empty, i.e. |
| 2988 | LabelBlock = createBlock(); // scopes that only contains NullStmts. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2989 | |
Chris Lattner | c8e630e | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 2990 | assert(LabelMap.find(L->getDecl()) == LabelMap.end() && |
| 2991 | "label already in map"); |
| 2992 | LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 2993 | |
| 2994 | // Labels partition blocks, so this is the end of the basic block we were |
| 2995 | // processing (L is the block's label). Because this is label (and we have |
| 2996 | // already processed the substatement) there is no extra control-flow to worry |
| 2997 | // about. |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 2998 | LabelBlock->setLabel(L); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 2999 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3000 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3001 | |
| 3002 | // 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] | 3003 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3004 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3005 | // This block is now the implicit successor of other blocks. |
| 3006 | Succ = LabelBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3007 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3008 | return LabelBlock; |
| 3009 | } |
| 3010 | |
Devin Coughlin | b6029b7 | 2015-11-25 22:35:37 +0000 | [diff] [blame] | 3011 | CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) { |
| 3012 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 3013 | for (const BlockDecl::Capture &CI : E->getBlockDecl()->captures()) { |
| 3014 | if (Expr *CopyExpr = CI.getCopyExpr()) { |
| 3015 | CFGBlock *Tmp = Visit(CopyExpr); |
| 3016 | if (Tmp) |
| 3017 | LastBlock = Tmp; |
| 3018 | } |
| 3019 | } |
| 3020 | return LastBlock; |
| 3021 | } |
| 3022 | |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 3023 | CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) { |
| 3024 | CFGBlock *LastBlock = VisitNoRecurse(E, asc); |
| 3025 | for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(), |
| 3026 | et = E->capture_init_end(); it != et; ++it) { |
| 3027 | if (Expr *Init = *it) { |
| 3028 | CFGBlock *Tmp = Visit(Init); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3029 | if (Tmp) |
Ted Kremenek | da76a94 | 2012-04-12 20:34:52 +0000 | [diff] [blame] | 3030 | LastBlock = Tmp; |
| 3031 | } |
| 3032 | } |
| 3033 | return LastBlock; |
| 3034 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 3035 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3036 | CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3037 | // Goto is a control-flow statement. Thus we stop processing the current |
| 3038 | // block and create a new one. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3039 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3040 | Block = createBlock(false); |
| 3041 | Block->setTerminator(G); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3042 | |
| 3043 | // 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] | 3044 | LabelMapTy::iterator I = LabelMap.find(G->getLabel()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3045 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3046 | if (I == LabelMap.end()) |
| 3047 | // We will need to backpatch this block later. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3048 | BackpatchBlocks.push_back(JumpSource(Block, ScopePos)); |
| 3049 | else { |
| 3050 | JumpTarget JT = I->second; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3051 | addAutomaticObjHandling(ScopePos, JT.scopePosition, G); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3052 | addSuccessor(Block, JT.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3053 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3054 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3055 | return Block; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3056 | } |
| 3057 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3058 | CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3059 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3060 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3061 | // Save local scope position because in case of condition variable ScopePos |
| 3062 | // won't be restored when traversing AST. |
| 3063 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3064 | |
| 3065 | // Create local scope for init statement and possible condition variable. |
| 3066 | // Add destructor for init statement and condition variable. |
| 3067 | // Store scope position for continue statement. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3068 | if (Stmt *Init = F->getInit()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3069 | addLocalScopeForStmt(Init); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3070 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
| 3071 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3072 | if (VarDecl *VD = F->getConditionVariable()) |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3073 | addLocalScopeForVarDecl(VD); |
| 3074 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 3075 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3076 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), F); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3077 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3078 | addLoopExit(F); |
| 3079 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 3080 | // "for" is a control-flow statement. Thus we stop processing the current |
| 3081 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3082 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3083 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3084 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3085 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3086 | } else |
| 3087 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3088 | |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 3089 | // Save the current value for the break targets. |
| 3090 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3091 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3092 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Ted Kremenek | 304a953 | 2010-05-21 20:30:15 +0000 | [diff] [blame] | 3093 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3094 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3095 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3096 | // Now create the loop body. |
| 3097 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3098 | assert(F->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3099 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3100 | // Save the current values for Block, Succ, continue and break targets. |
| 3101 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3102 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3103 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3104 | // Create an empty block to represent the transition block for looping back |
| 3105 | // to the head of the loop. If we have increment code, it will |
| 3106 | // go in this block as well. |
| 3107 | Block = Succ = TransitionBlock = createBlock(false); |
| 3108 | TransitionBlock->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3109 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3110 | if (Stmt *I = F->getInc()) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3111 | // Generate increment code in its own basic block. This is the target of |
| 3112 | // continue statements. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3113 | Succ = addStmt(I); |
Ted Kremenek | b0746ca | 2008-09-04 21:48:47 +0000 | [diff] [blame] | 3114 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3115 | |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3116 | // Finish up the increment (or empty) block if it hasn't been already. |
| 3117 | if (Block) { |
| 3118 | assert(Block == Succ); |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3119 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3120 | return nullptr; |
| 3121 | Block = nullptr; |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3122 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3123 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3124 | // The starting block for the loop increment is the block that should |
| 3125 | // represent the 'loop target' for looping back to the start of the loop. |
| 3126 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 3127 | ContinueJumpTarget.block->setLoopTarget(F); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3128 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3129 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3130 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, F); |
Ted Kremenek | 902393b | 2009-04-28 00:51:56 +0000 | [diff] [blame] | 3131 | |
Marcin Swiderski | 6d5ee0c | 2010-10-01 01:38:14 +0000 | [diff] [blame] | 3132 | // If body is not a compound statement create implicit scope |
| 3133 | // and add destructors. |
| 3134 | if (!isa<CompoundStmt>(F->getBody())) |
| 3135 | addLocalScopeAndDtors(F->getBody()); |
| 3136 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3137 | // Now populate the body block, and in the process create new blocks as we |
| 3138 | // walk the body of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3139 | BodyBlock = addStmt(F->getBody()); |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3140 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3141 | if (!BodyBlock) { |
| 3142 | // In the case of "for (...;...;...);" we can have a null BodyBlock. |
| 3143 | // Use the continue jump target as the proxy for the body. |
| 3144 | BodyBlock = ContinueJumpTarget.block; |
| 3145 | } |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3146 | else if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3147 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3148 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 3149 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3150 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3151 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3152 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3153 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3154 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3155 | do { |
| 3156 | Expr *C = F->getCond(); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3157 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3158 | |
| 3159 | // Specially handle logical operators, which have a slightly |
| 3160 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3161 | if (BinaryOperator *Cond = |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3162 | dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : nullptr)) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3163 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 3164 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3165 | VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor); |
| 3166 | break; |
| 3167 | } |
| 3168 | |
| 3169 | // The default case when not handling logical operators. |
| 3170 | EntryConditionBlock = ExitConditionBlock = createBlock(false); |
| 3171 | ExitConditionBlock->setTerminator(F); |
| 3172 | |
| 3173 | // See if this is a known constant. |
| 3174 | TryResult KnownVal(true); |
| 3175 | |
| 3176 | if (C) { |
| 3177 | // Now add the actual condition to the condition block. |
| 3178 | // Because the condition itself may contain control-flow, new blocks may |
| 3179 | // be created. Thus we update "Succ" after adding the condition. |
| 3180 | Block = ExitConditionBlock; |
| 3181 | EntryConditionBlock = addStmt(C); |
| 3182 | |
| 3183 | // If this block contains a condition variable, add both the condition |
| 3184 | // variable and initializer to the CFG. |
| 3185 | if (VarDecl *VD = F->getConditionVariable()) { |
| 3186 | if (Expr *Init = VD->getInit()) { |
| 3187 | autoCreateBlock(); |
Artem Dergachev | ab9b78b | 2018-04-19 23:30:15 +0000 | [diff] [blame] | 3188 | const DeclStmt *DS = F->getConditionVariableDeclStmt(); |
| 3189 | assert(DS->isSingleDecl()); |
| 3190 | findConstructionContexts( |
| 3191 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), |
| 3192 | const_cast<DeclStmt *>(DS)), |
| 3193 | Init); |
| 3194 | appendStmt(Block, DS); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3195 | EntryConditionBlock = addStmt(Init); |
| 3196 | assert(Block == EntryConditionBlock); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3197 | maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3198 | } |
| 3199 | } |
| 3200 | |
| 3201 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3202 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3203 | |
| 3204 | KnownVal = tryEvaluateBool(C); |
| 3205 | } |
| 3206 | |
| 3207 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3208 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3209 | // Link up the condition block with the code that follows the loop. (the |
| 3210 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3211 | addSuccessor(ExitConditionBlock, |
| 3212 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3213 | } while (false); |
| 3214 | |
| 3215 | // Link up the loop-back block to the entry condition block. |
| 3216 | addSuccessor(TransitionBlock, EntryConditionBlock); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 3217 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3218 | // The condition block is the implicit successor for any code above the loop. |
| 3219 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3220 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3221 | // If the loop contains initialization, create a new block for those |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3222 | // statements. This block can also contain statements that precede the loop. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3223 | if (Stmt *I = F->getInit()) { |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3224 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3225 | ScopePos = LoopBeginScopePos; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3226 | Block = createBlock(); |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3227 | return addStmt(I); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3228 | } |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3229 | |
| 3230 | // There is no loop initialization. We are thus basically a while loop. |
| 3231 | // NULL out Block to force lazy block construction. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3232 | Block = nullptr; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3233 | Succ = EntryConditionBlock; |
| 3234 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3235 | } |
| 3236 | |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 3237 | CFGBlock * |
| 3238 | CFGBuilder::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE, |
| 3239 | AddStmtChoice asc) { |
| 3240 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 3241 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), MTE), |
Artem Dergachev | f43ac4c | 2018-02-24 02:00:30 +0000 | [diff] [blame] | 3242 | MTE->getTemporary()); |
| 3243 | |
| 3244 | return VisitStmt(MTE, asc); |
| 3245 | } |
| 3246 | |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3247 | CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3248 | if (asc.alwaysAdd(*this, M)) { |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3249 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3250 | appendStmt(Block, M); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3251 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3252 | return Visit(M->getBase()); |
Ted Kremenek | 5868ec6 | 2010-04-11 17:02:10 +0000 | [diff] [blame] | 3253 | } |
| 3254 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3255 | CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3256 | // Objective-C fast enumeration 'for' statements: |
| 3257 | // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC |
| 3258 | // |
| 3259 | // for ( Type newVariable in collection_expression ) { statements } |
| 3260 | // |
| 3261 | // becomes: |
| 3262 | // |
| 3263 | // prologue: |
| 3264 | // 1. collection_expression |
| 3265 | // T. jump to loop_entry |
| 3266 | // loop_entry: |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3267 | // 1. side-effects of element expression |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3268 | // 1. ObjCForCollectionStmt [performs binding to newVariable] |
| 3269 | // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil] |
| 3270 | // TB: |
| 3271 | // statements |
| 3272 | // T. jump to loop_entry |
| 3273 | // FB: |
| 3274 | // what comes after |
| 3275 | // |
| 3276 | // and |
| 3277 | // |
| 3278 | // Type existingItem; |
| 3279 | // for ( existingItem in expression ) { statements } |
| 3280 | // |
| 3281 | // becomes: |
| 3282 | // |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3283 | // the same with newVariable replaced with existingItem; the binding works |
| 3284 | // the same except that for one ObjCForCollectionStmt::getElement() returns |
| 3285 | // a DeclStmt and the other returns a DeclRefExpr. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3286 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3287 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3288 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3289 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3290 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3291 | return nullptr; |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3292 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3293 | Block = nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3294 | } else |
| 3295 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3296 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3297 | // Build the condition blocks. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3298 | CFGBlock *ExitConditionBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3299 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3300 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3301 | ExitConditionBlock->setTerminator(S); |
| 3302 | |
| 3303 | // The last statement in the block should be the ObjCForCollectionStmt, which |
| 3304 | // performs the actual binding to 'element' and determines if there are any |
| 3305 | // more items in the collection. |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3306 | appendStmt(ExitConditionBlock, S); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3307 | Block = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3308 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3309 | // 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] | 3310 | // 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] | 3311 | // the CFG unless it contains control-flow. |
Ted Kremenek | c14efa7 | 2011-08-17 21:04:19 +0000 | [diff] [blame] | 3312 | CFGBlock *EntryConditionBlock = Visit(S->getElement(), |
| 3313 | AddStmtChoice::NotAlwaysAdd); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3314 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3315 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3316 | return nullptr; |
| 3317 | Block = nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3318 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3319 | |
| 3320 | // The condition block is the implicit successor for the loop body as well as |
| 3321 | // any code above the loop. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3322 | Succ = EntryConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3323 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3324 | // Now create the true branch. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3325 | { |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3326 | // Save the current values for Succ, continue and break targets. |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3327 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3328 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3329 | save_break(BreakJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3330 | |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3331 | // Add an intermediate block between the BodyBlock and the |
| 3332 | // EntryConditionBlock to represent the "loop back" transition, for looping |
| 3333 | // back to the head of the loop. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3334 | CFGBlock *LoopBackBlock = nullptr; |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3335 | Succ = LoopBackBlock = createBlock(); |
| 3336 | LoopBackBlock->setLoopTarget(S); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 3337 | |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3338 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3339 | ContinueJumpTarget = JumpTarget(Succ, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3340 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3341 | CFGBlock *BodyBlock = addStmt(S->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3342 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3343 | if (!BodyBlock) |
Anna Zaks | 56b4975 | 2013-06-22 00:23:20 +0000 | [diff] [blame] | 3344 | BodyBlock = ContinueJumpTarget.block; // can happen for "for (X in Y) ;" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3345 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3346 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3347 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3348 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3349 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3350 | // This new body block is a successor to our "exit" condition block. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3351 | addSuccessor(ExitConditionBlock, BodyBlock); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3352 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3353 | |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3354 | // Link up the condition block with the code that follows the loop. |
| 3355 | // (the false branch). |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3356 | addSuccessor(ExitConditionBlock, LoopSuccessor); |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3357 | |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3358 | // Now create a prologue block to contain the collection expression. |
Ted Kremenek | 5cf87ff | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 3359 | Block = createBlock(); |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3360 | return addStmt(S->getCollection()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3361 | } |
| 3362 | |
Ted Kremenek | 5022f1d | 2012-03-06 23:40:47 +0000 | [diff] [blame] | 3363 | CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) { |
| 3364 | // Inline the body. |
| 3365 | return addStmt(S->getSubStmt()); |
| 3366 | // TODO: consider adding cleanups for the end of @autoreleasepool scope. |
| 3367 | } |
| 3368 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3369 | CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) { |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3370 | // FIXME: Add locking 'primitives' to CFG for @synchronized. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3371 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3372 | // Inline the body. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3373 | CFGBlock *SyncBlock = addStmt(S->getSynchBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3374 | |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3375 | // The sync body starts its own basic block. This makes it a little easier |
| 3376 | // for diagnostic clients. |
| 3377 | if (SyncBlock) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3378 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3379 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3380 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3381 | Block = nullptr; |
Ted Kremenek | ecc31c9 | 2010-05-13 16:38:08 +0000 | [diff] [blame] | 3382 | Succ = SyncBlock; |
Ted Kremenek | b3c657b | 2009-05-05 23:11:51 +0000 | [diff] [blame] | 3383 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3384 | |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3385 | // Add the @synchronized to the CFG. |
| 3386 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 3387 | appendStmt(Block, S); |
Ted Kremenek | ed12f1b | 2010-09-10 03:05:33 +0000 | [diff] [blame] | 3388 | |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3389 | // Inline the sync expression. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3390 | return addStmt(S->getSynchExpr()); |
Ted Kremenek | 4980545 | 2009-05-02 01:49:13 +0000 | [diff] [blame] | 3391 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3392 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3393 | CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3394 | // FIXME |
Ted Kremenek | 89be652 | 2009-04-07 04:26:02 +0000 | [diff] [blame] | 3395 | return NYS(); |
Ted Kremenek | 89cc8ea | 2009-03-30 22:29:21 +0000 | [diff] [blame] | 3396 | } |
Ted Kremenek | 9d56e64 | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 3397 | |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3398 | CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) { |
| 3399 | autoCreateBlock(); |
| 3400 | |
| 3401 | // Add the PseudoObject as the last thing. |
| 3402 | appendStmt(Block, E); |
| 3403 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 3404 | CFGBlock *lastBlock = Block; |
John McCall | fe96e0b | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3405 | |
| 3406 | // Before that, evaluate all of the semantics in order. In |
| 3407 | // CFG-land, that means appending them in reverse order. |
| 3408 | for (unsigned i = E->getNumSemanticExprs(); i != 0; ) { |
| 3409 | Expr *Semantic = E->getSemanticExpr(--i); |
| 3410 | |
| 3411 | // If the semantic is an opaque value, we're being asked to bind |
| 3412 | // it to its source expression. |
| 3413 | if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic)) |
| 3414 | Semantic = OVE->getSourceExpr(); |
| 3415 | |
| 3416 | if (CFGBlock *B = Visit(Semantic)) |
| 3417 | lastBlock = B; |
| 3418 | } |
| 3419 | |
| 3420 | return lastBlock; |
| 3421 | } |
| 3422 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3423 | CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3424 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3425 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3426 | // Save local scope position because in case of condition variable ScopePos |
| 3427 | // won't be restored when traversing AST. |
| 3428 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3429 | |
| 3430 | // Create local scope for possible condition variable. |
| 3431 | // Store scope position for continue statement. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3432 | LocalScope::const_iterator LoopBeginScopePos = ScopePos; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3433 | if (VarDecl *VD = W->getConditionVariable()) { |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3434 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3435 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3436 | } |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3437 | addLoopExit(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3438 | |
Mike Stump | 014b3ea | 2009-07-21 01:12:51 +0000 | [diff] [blame] | 3439 | // "while" is a control-flow statement. Thus we stop processing the current |
| 3440 | // block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3441 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3442 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3443 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3444 | LoopSuccessor = Block; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3445 | Block = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3446 | } else { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3447 | LoopSuccessor = Succ; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3448 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3449 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3450 | CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr; |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3451 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3452 | // Process the loop body. |
| 3453 | { |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3454 | assert(W->getBody()); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3455 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3456 | // Save the current values for Block, Succ, continue and break targets. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3457 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3458 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3459 | save_break(BreakJumpTarget); |
Ted Kremenek | 49936f7 | 2009-04-28 03:09:44 +0000 | [diff] [blame] | 3460 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3461 | // Create an empty block to represent the transition block for looping back |
| 3462 | // to the head of the loop. |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3463 | Succ = TransitionBlock = createBlock(false); |
| 3464 | TransitionBlock->setLoopTarget(W); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3465 | ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3466 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3467 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3468 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3469 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3470 | // Loop body should end with destructor of Condition variable (if any). |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3471 | addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W); |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3472 | |
| 3473 | // If body is not a compound statement create implicit scope |
| 3474 | // and add destructors. |
| 3475 | if (!isa<CompoundStmt>(W->getBody())) |
| 3476 | addLocalScopeAndDtors(W->getBody()); |
| 3477 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3478 | // 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] | 3479 | BodyBlock = addStmt(W->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3480 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3481 | if (!BodyBlock) |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3482 | BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;" |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3483 | else if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3484 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3485 | } |
| 3486 | |
| 3487 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3488 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3489 | // evaluate the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3490 | CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3491 | |
| 3492 | do { |
| 3493 | Expr *C = W->getCond(); |
| 3494 | |
| 3495 | // Specially handle logical operators, which have a slightly |
| 3496 | // more optimal CFG representation. |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 3497 | if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens())) |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3498 | if (Cond->isLogicalOp()) { |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 3499 | std::tie(EntryConditionBlock, ExitConditionBlock) = |
| 3500 | VisitLogicalOperator(Cond, W, BodyBlock, LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3501 | break; |
| 3502 | } |
| 3503 | |
| 3504 | // The default case when not handling logical operators. |
Ted Kremenek | 451c4d5 | 2012-10-12 22:56:26 +0000 | [diff] [blame] | 3505 | ExitConditionBlock = createBlock(false); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3506 | ExitConditionBlock->setTerminator(W); |
| 3507 | |
| 3508 | // Now add the actual condition to the condition block. |
| 3509 | // Because the condition itself may contain control-flow, new blocks may |
| 3510 | // be created. Thus we update "Succ" after adding the condition. |
| 3511 | Block = ExitConditionBlock; |
| 3512 | Block = EntryConditionBlock = addStmt(C); |
| 3513 | |
| 3514 | // If this block contains a condition variable, add both the condition |
| 3515 | // variable and initializer to the CFG. |
| 3516 | if (VarDecl *VD = W->getConditionVariable()) { |
| 3517 | if (Expr *Init = VD->getInit()) { |
| 3518 | autoCreateBlock(); |
Artem Dergachev | ab9b78b | 2018-04-19 23:30:15 +0000 | [diff] [blame] | 3519 | const DeclStmt *DS = W->getConditionVariableDeclStmt(); |
| 3520 | assert(DS->isSingleDecl()); |
| 3521 | findConstructionContexts( |
| 3522 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), |
| 3523 | const_cast<DeclStmt *>(DS)), |
| 3524 | Init); |
| 3525 | appendStmt(Block, DS); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3526 | EntryConditionBlock = addStmt(Init); |
| 3527 | assert(Block == EntryConditionBlock); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3528 | maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3529 | } |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3530 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3531 | |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3532 | if (Block && badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3533 | return nullptr; |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3534 | |
| 3535 | // See if this is a known constant. |
| 3536 | const TryResult& KnownVal = tryEvaluateBool(C); |
| 3537 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3538 | // Add the loop body entry as a successor to the condition. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3539 | addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3540 | // Link up the condition block with the code that follows the loop. (the |
| 3541 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3542 | addSuccessor(ExitConditionBlock, |
| 3543 | KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Ted Kremenek | b50e716 | 2012-07-14 05:04:10 +0000 | [diff] [blame] | 3544 | } while(false); |
| 3545 | |
| 3546 | // Link up the loop-back block to the entry condition block. |
| 3547 | addSuccessor(TransitionBlock, EntryConditionBlock); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3548 | |
| 3549 | // There can be no more statements in the condition block since we loop back |
| 3550 | // 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] | 3551 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3552 | |
Ted Kremenek | 1ce53c4 | 2009-12-24 01:34:10 +0000 | [diff] [blame] | 3553 | // Return the condition block, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3554 | Succ = EntryConditionBlock; |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3555 | return EntryConditionBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3556 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3557 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3558 | CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3559 | // FIXME: For now we pretend that @catch and the code it contains does not |
| 3560 | // exit. |
| 3561 | return Block; |
| 3562 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3563 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3564 | CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3565 | // FIXME: This isn't complete. We basically treat @throw like a return |
| 3566 | // statement. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3567 | |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3568 | // 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] | 3569 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3570 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3571 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3572 | // Create the new block. |
| 3573 | Block = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3574 | |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3575 | // The Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3576 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3577 | |
| 3578 | // Add the statement to the block. This may create new blocks if S contains |
| 3579 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3580 | return VisitStmt(S, AddStmtChoice::AlwaysAdd); |
Ted Kremenek | 93041ba | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 3581 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3582 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3583 | CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) { |
Ted Kremenek | 0868eea | 2009-09-24 18:45:41 +0000 | [diff] [blame] | 3584 | // 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] | 3585 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3586 | return nullptr; |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3587 | |
| 3588 | // Create the new block. |
| 3589 | Block = createBlock(false); |
| 3590 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3591 | if (TryTerminatedBlock) |
| 3592 | // The current try statement is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3593 | addSuccessor(Block, TryTerminatedBlock); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3594 | else |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3595 | // otherwise the Exit block is the only successor. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3596 | addSuccessor(Block, &cfg->getExit()); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3597 | |
| 3598 | // Add the statement to the block. This may create new blocks if S contains |
| 3599 | // control-flow (short-circuit operations). |
Ted Kremenek | 4cad5fc | 2009-12-16 03:18:58 +0000 | [diff] [blame] | 3600 | return VisitStmt(T, AddStmtChoice::AlwaysAdd); |
Mike Stump | 8dd1b6b | 2009-07-22 22:56:04 +0000 | [diff] [blame] | 3601 | } |
| 3602 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3603 | CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3604 | CFGBlock *LoopSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3605 | |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 3606 | addLoopExit(D); |
| 3607 | |
Mike Stump | 8d50b6a | 2009-07-21 01:27:50 +0000 | [diff] [blame] | 3608 | // "do...while" is a control-flow statement. Thus we stop processing the |
| 3609 | // current block. |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3610 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3611 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3612 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3613 | LoopSuccessor = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3614 | } else |
| 3615 | LoopSuccessor = Succ; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3616 | |
| 3617 | // Because of short-circuit evaluation, the condition of the loop can span |
| 3618 | // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that |
| 3619 | // evaluate the condition. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3620 | CFGBlock *ExitConditionBlock = createBlock(false); |
| 3621 | CFGBlock *EntryConditionBlock = ExitConditionBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3622 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3623 | // Set the terminator for the "exit" condition block. |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3624 | ExitConditionBlock->setTerminator(D); |
| 3625 | |
| 3626 | // Now add the actual condition to the condition block. Because the condition |
| 3627 | // itself may contain control-flow, new blocks may be created. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3628 | if (Stmt *C = D->getCond()) { |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3629 | Block = ExitConditionBlock; |
| 3630 | EntryConditionBlock = addStmt(C); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3631 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3632 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3633 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3634 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3635 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3636 | |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3637 | // The condition block is the implicit successor for the loop body. |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3638 | Succ = EntryConditionBlock; |
| 3639 | |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3640 | // See if this is a known constant. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3641 | const TryResult &KnownVal = tryEvaluateBool(D->getCond()); |
Mike Stump | 773582d | 2009-07-23 23:25:26 +0000 | [diff] [blame] | 3642 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3643 | // Process the loop body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3644 | CFGBlock *BodyBlock = nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3645 | { |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3646 | assert(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3647 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3648 | // Save the current values for Block, Succ, and continue and break targets |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3649 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 3650 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget), |
| 3651 | save_break(BreakJumpTarget); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3652 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3653 | // All continues within this loop should go to the condition block |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3654 | ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3655 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3656 | // All breaks should go to the code following the loop. |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3657 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3658 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3659 | // NULL out Block to force lazy instantiation of blocks for the body. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3660 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3661 | |
Marcin Swiderski | 1f4e15c | 2010-10-01 01:14:17 +0000 | [diff] [blame] | 3662 | // If body is not a compound statement create implicit scope |
| 3663 | // and add destructors. |
| 3664 | if (!isa<CompoundStmt>(D->getBody())) |
| 3665 | addLocalScopeAndDtors(D->getBody()); |
| 3666 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3667 | // 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] | 3668 | BodyBlock = addStmt(D->getBody()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3669 | |
Ted Kremenek | e961050 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 3670 | if (!BodyBlock) |
Ted Kremenek | 39321aa | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 3671 | BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)" |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3672 | else if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3673 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3674 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3675 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3676 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3677 | // Add an intermediate block between the BodyBlock and the |
| 3678 | // ExitConditionBlock to represent the "loop back" transition. Create an |
| 3679 | // empty block to represent the transition block for looping back to the |
| 3680 | // head of the loop. |
| 3681 | // FIXME: Can we do this more efficiently without adding another block? |
| 3682 | Block = nullptr; |
| 3683 | Succ = BodyBlock; |
| 3684 | CFGBlock *LoopBackBlock = createBlock(); |
| 3685 | LoopBackBlock->setLoopTarget(D); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3686 | |
Daniel Marjamaki | 042a3c5 | 2016-10-03 08:28:51 +0000 | [diff] [blame] | 3687 | if (!KnownVal.isFalse()) |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3688 | // Add the loop body entry as a successor to the condition. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3689 | addSuccessor(ExitConditionBlock, LoopBackBlock); |
Ted Kremenek | 110974d | 2010-08-17 20:59:56 +0000 | [diff] [blame] | 3690 | else |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3691 | addSuccessor(ExitConditionBlock, nullptr); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3692 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3693 | |
Ted Kremenek | 3075428 | 2009-07-24 04:47:11 +0000 | [diff] [blame] | 3694 | // Link up the condition block with the code that follows the loop. |
| 3695 | // (the false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3696 | addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3697 | |
| 3698 | // There can be no more statements in the body block(s) since we loop back to |
| 3699 | // the body. NULL out Block to force lazy creation of another block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3700 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3701 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3702 | // Return the loop body, which is the dominating block for the loop. |
Ted Kremenek | a1523a3 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 3703 | Succ = BodyBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3704 | return BodyBlock; |
| 3705 | } |
| 3706 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3707 | CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3708 | // "continue" is a control-flow statement. Thus we stop processing the |
| 3709 | // current block. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3710 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3711 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3712 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3713 | // Now create a new block that ends with the continue statement. |
| 3714 | Block = createBlock(false); |
| 3715 | Block->setTerminator(C); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3716 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3717 | // 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] | 3718 | // incomplete AST. This means the CFG cannot be constructed. |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3719 | if (ContinueJumpTarget.block) { |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3720 | addAutomaticObjHandling(ScopePos, ContinueJumpTarget.scopePosition, C); |
Ted Kremenek | ef81e9e | 2011-01-07 19:37:16 +0000 | [diff] [blame] | 3721 | addSuccessor(Block, ContinueJumpTarget.block); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3722 | } else |
Ted Kremenek | 882cf06 | 2009-04-07 18:53:24 +0000 | [diff] [blame] | 3723 | badCFG = true; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3724 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3725 | return Block; |
| 3726 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3727 | |
Peter Collingbourne | e190dee | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3728 | CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, |
| 3729 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3730 | if (asc.alwaysAdd(*this, E)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3731 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3732 | appendStmt(Block, E); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3733 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3734 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3735 | // VLA types have expressions that must be evaluated. |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3736 | CFGBlock *lastBlock = Block; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 3737 | |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3738 | if (E->isArgumentType()) { |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 3739 | for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr()); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3740 | VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3741 | lastBlock = addStmt(VA->getSizeExpr()); |
Ted Kremenek | 84a1ca5 | 2011-08-06 00:30:00 +0000 | [diff] [blame] | 3742 | } |
Ted Kremenek | 9eb0b7d | 2011-04-14 01:50:50 +0000 | [diff] [blame] | 3743 | return lastBlock; |
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 | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3746 | /// VisitStmtExpr - Utility method to handle (nested) statement |
| 3747 | /// expressions (a GCC extension). |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3748 | CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 3749 | if (asc.alwaysAdd(*this, SE)) { |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3750 | autoCreateBlock(); |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 3751 | appendStmt(Block, SE); |
Ted Kremenek | 0747de6 | 2009-07-18 00:47:21 +0000 | [diff] [blame] | 3752 | } |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3753 | return VisitCompoundStmt(SE->getSubStmt()); |
| 3754 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3755 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3756 | CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3757 | // "switch" is a control-flow statement. Thus we stop processing the current |
| 3758 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3759 | CFGBlock *SwitchSuccessor = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3760 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3761 | // Save local scope position because in case of condition variable ScopePos |
| 3762 | // won't be restored when traversing AST. |
| 3763 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 3764 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3765 | // Create local scope for C++17 switch init-stmt if one exists. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3766 | if (Stmt *Init = Terminator->getInit()) |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3767 | addLocalScopeForStmt(Init); |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3768 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3769 | // Create local scope for possible condition variable. |
| 3770 | // Store scope position. Add implicit destructor. |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3771 | if (VarDecl *VD = Terminator->getConditionVariable()) |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3772 | addLocalScopeForVarDecl(VD); |
Richard Smith | 509bbd1 | 2017-01-13 22:16:41 +0000 | [diff] [blame] | 3773 | |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 3774 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), Terminator); |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3775 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3776 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3777 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3778 | return nullptr; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3779 | SwitchSuccessor = Block; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3780 | } else SwitchSuccessor = Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3781 | |
| 3782 | // Save the current "switch" context. |
| 3783 | SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock), |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3784 | save_default(DefaultCaseBlock); |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3785 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3786 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3787 | // Set the "default" case to be the block after the switch statement. If the |
| 3788 | // switch statement contains a "default:", this value will be overwritten with |
| 3789 | // the block for that code. |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3790 | DefaultCaseBlock = SwitchSuccessor; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3791 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3792 | // Create a new block that will contain the switch statement. |
| 3793 | SwitchTerminatedBlock = createBlock(false); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3794 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3795 | // Now process the switch body. The code after the switch is the implicit |
| 3796 | // successor. |
| 3797 | Succ = SwitchSuccessor; |
Marcin Swiderski | 8b99b8a | 2010-09-25 11:05:21 +0000 | [diff] [blame] | 3798 | BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3799 | |
| 3800 | // When visiting the body, the case statements should automatically get linked |
| 3801 | // up to the switch. We also don't keep a pointer to the body, since all |
| 3802 | // control-flow from the switch goes to case/default statements. |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 3803 | assert(Terminator->getBody() && "switch must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3804 | Block = nullptr; |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3805 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3806 | // For pruning unreachable case statements, save the current state |
| 3807 | // for tracking the condition value. |
| 3808 | SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered, |
| 3809 | false); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3810 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3811 | // Determine if the switch condition can be explicitly evaluated. |
| 3812 | assert(Terminator->getCond() && "switch condition must be non-NULL"); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3813 | Expr::EvalResult result; |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3814 | bool b = tryEvaluate(Terminator->getCond(), result); |
| 3815 | SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond, |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3816 | b ? &result : nullptr); |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3817 | |
Marcin Swiderski | e407a3b | 2010-10-01 01:24:41 +0000 | [diff] [blame] | 3818 | // If body is not a compound statement create implicit scope |
| 3819 | // and add destructors. |
| 3820 | if (!isa<CompoundStmt>(Terminator->getBody())) |
| 3821 | addLocalScopeAndDtors(Terminator->getBody()); |
| 3822 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3823 | addStmt(Terminator->getBody()); |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3824 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3825 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3826 | return nullptr; |
Ted Kremenek | 55957a8 | 2009-05-02 00:13:27 +0000 | [diff] [blame] | 3827 | } |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3828 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3829 | // 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] | 3830 | // following the switch body. Moreover, take into account if all the |
| 3831 | // 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] | 3832 | // |
| 3833 | // Note: We add a successor to a switch that is considered covered yet has no |
| 3834 | // case statements if the enumeration has no enumerators. |
| 3835 | bool SwitchAlwaysHasSuccessor = false; |
| 3836 | SwitchAlwaysHasSuccessor |= switchExclusivelyCovered; |
| 3837 | SwitchAlwaysHasSuccessor |= Terminator->isAllEnumCasesCovered() && |
| 3838 | Terminator->getSwitchCaseList(); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3839 | addSuccessor(SwitchTerminatedBlock, DefaultCaseBlock, |
| 3840 | !SwitchAlwaysHasSuccessor); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3841 | |
Ted Kremenek | 81e1485 | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 3842 | // Add the terminator and condition in the switch block. |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3843 | SwitchTerminatedBlock->setTerminator(Terminator); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3844 | Block = SwitchTerminatedBlock; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3845 | CFGBlock *LastBlock = addStmt(Terminator->getCond()); |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3846 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3847 | // If the SwitchStmt contains a condition variable, add both the |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 3848 | // SwitchStmt and the condition variable initialization to the CFG. |
| 3849 | if (VarDecl *VD = Terminator->getConditionVariable()) { |
| 3850 | if (Expr *Init = VD->getInit()) { |
| 3851 | autoCreateBlock(); |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 3852 | appendStmt(Block, Terminator->getConditionVariableDeclStmt()); |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3853 | LastBlock = addStmt(Init); |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 3854 | maybeAddScopeBeginForVarDecl(LastBlock, VD, Init); |
Ted Kremenek | 8b5dc12 | 2009-12-24 00:39:26 +0000 | [diff] [blame] | 3855 | } |
| 3856 | } |
Ted Kremenek | dc03bd0 | 2010-08-02 23:46:59 +0000 | [diff] [blame] | 3857 | |
Richard Smith | a547eb2 | 2016-07-14 00:11:03 +0000 | [diff] [blame] | 3858 | // Finally, if the SwitchStmt contains a C++17 init-stmt, add it to the CFG. |
| 3859 | if (Stmt *Init = Terminator->getInit()) { |
| 3860 | autoCreateBlock(); |
| 3861 | LastBlock = addStmt(Init); |
| 3862 | } |
| 3863 | |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 3864 | return LastBlock; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3865 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 3866 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3867 | static bool shouldAddCase(bool &switchExclusivelyCovered, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3868 | const Expr::EvalResult *switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3869 | const CaseStmt *CS, |
| 3870 | ASTContext &Ctx) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3871 | if (!switchCond) |
| 3872 | return true; |
| 3873 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3874 | bool addCase = false; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3875 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3876 | if (!switchExclusivelyCovered) { |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3877 | if (switchCond->Val.isInt()) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3878 | // Evaluate the LHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 3879 | const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx); |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3880 | const llvm::APSInt &condInt = switchCond->Val.getInt(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 3881 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3882 | if (condInt == lhsInt) { |
| 3883 | addCase = true; |
| 3884 | switchExclusivelyCovered = true; |
| 3885 | } |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 3886 | else if (condInt > lhsInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3887 | if (const Expr *RHS = CS->getRHS()) { |
| 3888 | // Evaluate the RHS of the case value. |
Richard Smith | faa32a9 | 2011-10-14 20:22:00 +0000 | [diff] [blame] | 3889 | const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx); |
Devin Coughlin | eb538ab | 2015-09-22 20:31:19 +0000 | [diff] [blame] | 3890 | if (V2 >= condInt) { |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3891 | addCase = true; |
| 3892 | switchExclusivelyCovered = true; |
| 3893 | } |
| 3894 | } |
| 3895 | } |
| 3896 | } |
| 3897 | else |
| 3898 | addCase = true; |
| 3899 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 3900 | return addCase; |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3901 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3902 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3903 | CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3904 | // CaseStmts are essentially labels, so they are the first statement in a |
| 3905 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3906 | CFGBlock *TopBlock = nullptr, *LastBlock = nullptr; |
Ted Kremenek | be52871 | 2011-03-04 01:03:41 +0000 | [diff] [blame] | 3907 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3908 | if (Stmt *Sub = CS->getSubStmt()) { |
| 3909 | // For deeply nested chains of CaseStmts, instead of doing a recursion |
| 3910 | // (which can blow out the stack), manually unroll and create blocks |
| 3911 | // along the way. |
| 3912 | while (isa<CaseStmt>(Sub)) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3913 | CFGBlock *currentBlock = createBlock(false); |
| 3914 | currentBlock->setLabel(CS); |
Ted Kremenek | 55e91e8 | 2007-08-30 18:48:11 +0000 | [diff] [blame] | 3915 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3916 | if (TopBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3917 | addSuccessor(LastBlock, currentBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3918 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3919 | TopBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3920 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3921 | addSuccessor(SwitchTerminatedBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3922 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3923 | CS, *Context) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3924 | ? currentBlock : nullptr); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3925 | |
Ted Kremenek | eff9a7f | 2011-03-01 23:12:55 +0000 | [diff] [blame] | 3926 | LastBlock = currentBlock; |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3927 | CS = cast<CaseStmt>(Sub); |
| 3928 | Sub = CS->getSubStmt(); |
| 3929 | } |
| 3930 | |
| 3931 | addStmt(Sub); |
| 3932 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3933 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3934 | CFGBlock *CaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3935 | if (!CaseBlock) |
| 3936 | CaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3937 | |
| 3938 | // Cases statements partition blocks, so this is the top of the basic block we |
| 3939 | // were processing (the "case XXX:" is the label). |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3940 | CaseBlock->setLabel(CS); |
| 3941 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3942 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3943 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3944 | |
| 3945 | // Add this block to the list of successors for the block with the switch |
| 3946 | // statement. |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3947 | assert(SwitchTerminatedBlock); |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3948 | addSuccessor(SwitchTerminatedBlock, CaseBlock, |
Ted Kremenek | 53e6538 | 2011-03-13 03:48:04 +0000 | [diff] [blame] | 3949 | shouldAddCase(switchExclusivelyCovered, switchCond, |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 3950 | CS, *Context)); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3951 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3952 | // 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] | 3953 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3954 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3955 | if (TopBlock) { |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 3956 | addSuccessor(LastBlock, CaseBlock); |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3957 | Succ = TopBlock; |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 3958 | } else { |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3959 | // This block is now the implicit successor of other blocks. |
| 3960 | Succ = CaseBlock; |
| 3961 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3962 | |
Ted Kremenek | 60fa657 | 2010-08-04 23:54:30 +0000 | [diff] [blame] | 3963 | return Succ; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3964 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3965 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 3966 | CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) { |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3967 | if (Terminator->getSubStmt()) |
| 3968 | addStmt(Terminator->getSubStmt()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3969 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3970 | DefaultCaseBlock = Block; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 3971 | |
| 3972 | if (!DefaultCaseBlock) |
| 3973 | DefaultCaseBlock = createBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3974 | |
| 3975 | // Default statements partition blocks, so this is the top of the basic block |
| 3976 | // we were processing (the "default:" is the label). |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 3977 | DefaultCaseBlock->setLabel(Terminator); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3978 | |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 3979 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 3980 | return nullptr; |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3981 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3982 | // Unlike case statements, we don't add the default block to the successors |
| 3983 | // for the switch statement immediately. This is done when we finish |
| 3984 | // processing the switch statement. This allows for the default case |
| 3985 | // (including a fall-through to the code after the switch statement) to always |
| 3986 | // be the last successor of a switch-terminated block. |
| 3987 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3988 | // 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] | 3989 | Block = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3990 | |
Ted Kremenek | 654c78f | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 3991 | // This block is now the implicit successor of other blocks. |
| 3992 | Succ = DefaultCaseBlock; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 3993 | |
| 3994 | return DefaultCaseBlock; |
Ted Kremenek | 9682be1 | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 3995 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 3996 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 3997 | CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) { |
| 3998 | // "try"/"catch" is a control-flow statement. Thus we stop processing the |
| 3999 | // current block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4000 | CFGBlock *TrySuccessor = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4001 | |
| 4002 | if (Block) { |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4003 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4004 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4005 | TrySuccessor = Block; |
| 4006 | } else TrySuccessor = Succ; |
| 4007 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4008 | CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4009 | |
| 4010 | // Create a new block that will contain the try statement. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4011 | CFGBlock *NewTryTerminatedBlock = createBlock(false); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4012 | // Add the terminator in the try block. |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4013 | NewTryTerminatedBlock->setTerminator(Terminator); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4014 | |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4015 | bool HasCatchAll = false; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4016 | for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) { |
| 4017 | // The code after the try is the implicit successor. |
| 4018 | Succ = TrySuccessor; |
| 4019 | CXXCatchStmt *CS = Terminator->getHandler(h); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4020 | if (CS->getExceptionDecl() == nullptr) { |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4021 | HasCatchAll = true; |
| 4022 | } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4023 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4024 | CFGBlock *CatchBlock = VisitCXXCatchStmt(CS); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4025 | if (!CatchBlock) |
| 4026 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4027 | // Add this block to the list of successors for the block with the try |
| 4028 | // statement. |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4029 | addSuccessor(NewTryTerminatedBlock, CatchBlock); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4030 | } |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4031 | if (!HasCatchAll) { |
| 4032 | if (PrevTryTerminatedBlock) |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4033 | addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4034 | else |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4035 | addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 4036 | } |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4037 | |
| 4038 | // The code after the try is the implicit successor. |
| 4039 | Succ = TrySuccessor; |
| 4040 | |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4041 | // Save the current "try" context. |
Ted Kremenek | 6b9964d | 2011-08-23 23:05:07 +0000 | [diff] [blame] | 4042 | SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock); |
| 4043 | cfg->addTryDispatchBlock(TryTerminatedBlock); |
Mike Stump | 845384a | 2010-01-20 01:30:58 +0000 | [diff] [blame] | 4044 | |
Ted Kremenek | 1362b8b | 2010-01-19 20:46:35 +0000 | [diff] [blame] | 4045 | assert(Terminator->getTryBlock() && "try must contain a non-NULL body"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4046 | Block = nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4047 | return addStmt(Terminator->getTryBlock()); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4048 | } |
| 4049 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4050 | CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4051 | // CXXCatchStmt are treated like labels, so they are the first statement in a |
| 4052 | // block. |
| 4053 | |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 4054 | // Save local scope position because in case of exception variable ScopePos |
| 4055 | // won't be restored when traversing AST. |
| 4056 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 4057 | |
| 4058 | // Create local scope for possible exception variable. |
| 4059 | // Store scope position. Add implicit destructor. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4060 | if (VarDecl *VD = CS->getExceptionDecl()) { |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 4061 | LocalScope::const_iterator BeginScopePos = ScopePos; |
| 4062 | addLocalScopeForVarDecl(VD); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4063 | addAutomaticObjHandling(ScopePos, BeginScopePos, CS); |
Marcin Swiderski | 3546b1a | 2010-10-01 01:46:52 +0000 | [diff] [blame] | 4064 | } |
| 4065 | |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4066 | if (CS->getHandlerBlock()) |
| 4067 | addStmt(CS->getHandlerBlock()); |
| 4068 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4069 | CFGBlock *CatchBlock = Block; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4070 | if (!CatchBlock) |
| 4071 | CatchBlock = createBlock(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 4072 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4073 | // CXXCatchStmt is more than just a label. They have semantic meaning |
| 4074 | // as well, as they implicitly "initialize" the catch variable. Add |
| 4075 | // it to the CFG as a CFGElement so that the control-flow of these |
| 4076 | // semantics gets captured. |
| 4077 | appendStmt(CatchBlock, CS); |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4078 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4079 | // Also add the CXXCatchStmt as a label, to mirror handling of regular |
| 4080 | // labels. |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4081 | CatchBlock->setLabel(CS); |
| 4082 | |
Ted Kremenek | 8fdb59f | 2012-03-10 01:34:17 +0000 | [diff] [blame] | 4083 | // Bail out if the CFG is bad. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4084 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4085 | return nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4086 | |
| 4087 | // 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] | 4088 | Block = nullptr; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4089 | |
| 4090 | return CatchBlock; |
| 4091 | } |
| 4092 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4093 | CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) { |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4094 | // C++0x for-range statements are specified as [stmt.ranged]: |
| 4095 | // |
| 4096 | // { |
| 4097 | // auto && __range = range-init; |
| 4098 | // for ( auto __begin = begin-expr, |
| 4099 | // __end = end-expr; |
| 4100 | // __begin != __end; |
| 4101 | // ++__begin ) { |
| 4102 | // for-range-declaration = *__begin; |
| 4103 | // statement |
| 4104 | // } |
| 4105 | // } |
| 4106 | |
| 4107 | // Save local scope position before the addition of the implicit variables. |
| 4108 | SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos); |
| 4109 | |
| 4110 | // Create local scopes and destructors for range, begin and end variables. |
| 4111 | if (Stmt *Range = S->getRangeStmt()) |
| 4112 | addLocalScopeForStmt(Range); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 4113 | if (Stmt *Begin = S->getBeginStmt()) |
| 4114 | addLocalScopeForStmt(Begin); |
| 4115 | if (Stmt *End = S->getEndStmt()) |
| 4116 | addLocalScopeForStmt(End); |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4117 | addAutomaticObjHandling(ScopePos, save_scope_pos.get(), S); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4118 | |
| 4119 | LocalScope::const_iterator ContinueScopePos = ScopePos; |
| 4120 | |
| 4121 | // "for" is a control-flow statement. Thus we stop processing the current |
| 4122 | // block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4123 | CFGBlock *LoopSuccessor = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4124 | if (Block) { |
| 4125 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4126 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4127 | LoopSuccessor = Block; |
| 4128 | } else |
| 4129 | LoopSuccessor = Succ; |
| 4130 | |
| 4131 | // Save the current value for the break targets. |
| 4132 | // All breaks should go to the code following the loop. |
| 4133 | SaveAndRestore<JumpTarget> save_break(BreakJumpTarget); |
| 4134 | BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos); |
| 4135 | |
| 4136 | // The block for the __begin != __end expression. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4137 | CFGBlock *ConditionBlock = createBlock(false); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4138 | ConditionBlock->setTerminator(S); |
| 4139 | |
| 4140 | // Now add the actual condition to the condition block. |
| 4141 | if (Expr *C = S->getCond()) { |
| 4142 | Block = ConditionBlock; |
| 4143 | CFGBlock *BeginConditionBlock = addStmt(C); |
| 4144 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4145 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4146 | assert(BeginConditionBlock == ConditionBlock && |
| 4147 | "condition block in for-range was unexpectedly complex"); |
| 4148 | (void)BeginConditionBlock; |
| 4149 | } |
| 4150 | |
| 4151 | // The condition block is the implicit successor for the loop body as well as |
| 4152 | // any code above the loop. |
| 4153 | Succ = ConditionBlock; |
| 4154 | |
| 4155 | // See if this is a known constant. |
| 4156 | TryResult KnownVal(true); |
| 4157 | |
| 4158 | if (S->getCond()) |
| 4159 | KnownVal = tryEvaluateBool(S->getCond()); |
| 4160 | |
| 4161 | // Now create the loop body. |
| 4162 | { |
| 4163 | assert(S->getBody()); |
| 4164 | |
| 4165 | // Save the current values for Block, Succ, and continue targets. |
| 4166 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ); |
| 4167 | SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget); |
| 4168 | |
| 4169 | // Generate increment code in its own basic block. This is the target of |
| 4170 | // continue statements. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4171 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4172 | Succ = addStmt(S->getInc()); |
Alexander Kornienko | ff2046a | 2016-07-08 10:50:51 +0000 | [diff] [blame] | 4173 | if (badCFG) |
| 4174 | return nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4175 | ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos); |
| 4176 | |
| 4177 | // The starting block for the loop increment is the block that should |
| 4178 | // represent the 'loop target' for looping back to the start of the loop. |
| 4179 | ContinueJumpTarget.block->setLoopTarget(S); |
| 4180 | |
| 4181 | // Finish up the increment block and prepare to start the loop body. |
| 4182 | assert(Block); |
| 4183 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4184 | return nullptr; |
| 4185 | Block = nullptr; |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4186 | |
| 4187 | // Add implicit scope and dtors for loop variable. |
| 4188 | addLocalScopeAndDtors(S->getLoopVarStmt()); |
| 4189 | |
| 4190 | // Populate a new block to contain the loop body and loop variable. |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4191 | addStmt(S->getBody()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4192 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4193 | return nullptr; |
Ted Kremenek | e6ee671 | 2012-11-13 00:12:13 +0000 | [diff] [blame] | 4194 | CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4195 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4196 | return nullptr; |
| 4197 | |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4198 | // This new body block is a successor to our condition block. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4199 | addSuccessor(ConditionBlock, |
| 4200 | KnownVal.isFalse() ? nullptr : LoopVarStmtBlock); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4201 | } |
| 4202 | |
| 4203 | // Link up the condition block with the code that follows the loop (the |
| 4204 | // false branch). |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4205 | addSuccessor(ConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4206 | |
| 4207 | // Add the initialization statements. |
| 4208 | Block = createBlock(); |
Richard Smith | 01694c3 | 2016-03-20 10:33:40 +0000 | [diff] [blame] | 4209 | addStmt(S->getBeginStmt()); |
| 4210 | addStmt(S->getEndStmt()); |
Richard Smith | 0c502d2 | 2011-04-18 15:49:25 +0000 | [diff] [blame] | 4211 | return addStmt(S->getRangeStmt()); |
Richard Smith | 02e85f3 | 2011-04-14 22:09:26 +0000 | [diff] [blame] | 4212 | } |
| 4213 | |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 4214 | CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E, |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4215 | AddStmtChoice asc) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 4216 | if (BuildOpts.AddTemporaryDtors) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4217 | // If adding implicit destructors visit the full expression for adding |
| 4218 | // destructors of temporaries. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4219 | TempDtorContext Context; |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4220 | VisitForTemporaryDtors(E->getSubExpr(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4221 | |
| 4222 | // Full expression has to be added as CFGStmt so it will be sequenced |
| 4223 | // before destructors of it's temporaries. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4224 | asc = asc.withAlwaysAdd(true); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4225 | } |
| 4226 | return Visit(E->getSubExpr(), asc); |
| 4227 | } |
| 4228 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4229 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E, |
| 4230 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4231 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4232 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4233 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4234 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4235 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 4236 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), E), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4237 | E->getSubExpr()); |
Artem Dergachev | 1f68d9d | 2018-02-15 03:13:36 +0000 | [diff] [blame] | 4238 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4239 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4240 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4241 | } |
| 4242 | return Visit(E->getSubExpr(), asc); |
| 4243 | } |
| 4244 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4245 | CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C, |
| 4246 | AddStmtChoice asc) { |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4247 | autoCreateBlock(); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4248 | appendConstructor(Block, C); |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4249 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4250 | return VisitChildren(C); |
| 4251 | } |
| 4252 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4253 | CFGBlock *CFGBuilder::VisitCXXNewExpr(CXXNewExpr *NE, |
| 4254 | AddStmtChoice asc) { |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4255 | autoCreateBlock(); |
| 4256 | appendStmt(Block, NE); |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4257 | |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4258 | findConstructionContexts( |
Artem Dergachev | 4068481 | 2018-02-27 20:03:35 +0000 | [diff] [blame] | 4259 | ConstructionContextLayer::create(cfg->getBumpVectorContext(), NE), |
Artem Dergachev | 783a457 | 2018-02-23 22:20:39 +0000 | [diff] [blame] | 4260 | const_cast<CXXConstructExpr *>(NE->getConstructExpr())); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4261 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4262 | if (NE->getInitializer()) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4263 | Block = Visit(NE->getInitializer()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4264 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4265 | if (BuildOpts.AddCXXNewAllocator) |
| 4266 | appendNewAllocator(Block, NE); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4267 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4268 | if (NE->isArray()) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4269 | Block = Visit(NE->getArraySize()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4270 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4271 | for (CXXNewExpr::arg_iterator I = NE->placement_arg_begin(), |
| 4272 | E = NE->placement_arg_end(); I != E; ++I) |
Jordan Rose | 6f5f719 | 2014-01-14 17:29:12 +0000 | [diff] [blame] | 4273 | Block = Visit(*I); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4274 | |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4275 | return Block; |
| 4276 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4277 | |
| 4278 | CFGBlock *CFGBuilder::VisitCXXDeleteExpr(CXXDeleteExpr *DE, |
| 4279 | AddStmtChoice asc) { |
| 4280 | autoCreateBlock(); |
| 4281 | appendStmt(Block, DE); |
| 4282 | QualType DTy = DE->getDestroyedType(); |
Martin Bohme | f44cde8 | 2016-12-05 11:33:19 +0000 | [diff] [blame] | 4283 | if (!DTy.isNull()) { |
| 4284 | DTy = DTy.getNonReferenceType(); |
| 4285 | CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 4286 | if (RD) { |
| 4287 | if (RD->isCompleteDefinition() && !RD->hasTrivialDestructor()) |
| 4288 | appendDeleteDtor(Block, RD, DE); |
| 4289 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4290 | } |
| 4291 | |
| 4292 | return VisitChildren(DE); |
| 4293 | } |
| 4294 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4295 | CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E, |
| 4296 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4297 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4298 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4299 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4300 | // We do not want to propagate the AlwaysAdd property. |
Zhanyong Wan | b5d11c1 | 2010-11-24 03:28:53 +0000 | [diff] [blame] | 4301 | asc = asc.withAlwaysAdd(false); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4302 | } |
| 4303 | return Visit(E->getSubExpr(), asc); |
| 4304 | } |
| 4305 | |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4306 | CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C, |
| 4307 | AddStmtChoice asc) { |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4308 | autoCreateBlock(); |
Artem Dergachev | 1f68d9d | 2018-02-15 03:13:36 +0000 | [diff] [blame] | 4309 | appendConstructor(Block, C); |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 4310 | return VisitChildren(C); |
| 4311 | } |
| 4312 | |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4313 | CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E, |
| 4314 | AddStmtChoice asc) { |
Ted Kremenek | 7c58d35 | 2011-03-10 01:14:11 +0000 | [diff] [blame] | 4315 | if (asc.alwaysAdd(*this, E)) { |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4316 | autoCreateBlock(); |
Ted Kremenek | 2866bab | 2011-03-10 01:14:08 +0000 | [diff] [blame] | 4317 | appendStmt(Block, E); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4318 | } |
Ted Kremenek | 8219b82 | 2010-12-16 07:46:53 +0000 | [diff] [blame] | 4319 | return Visit(E->getSubExpr(), AddStmtChoice()); |
Zhongxing Xu | e1dbeb2 | 2010-11-01 13:04:58 +0000 | [diff] [blame] | 4320 | } |
| 4321 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4322 | CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4323 | // 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] | 4324 | CFGBlock *IBlock = cfg->getIndirectGotoBlock(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4325 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4326 | if (!IBlock) { |
| 4327 | IBlock = createBlock(false); |
| 4328 | cfg->setIndirectGotoBlock(IBlock); |
| 4329 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4330 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4331 | // IndirectGoto is a control-flow statement. Thus we stop processing the |
| 4332 | // current block and create a new one. |
Zhongxing Xu | 33dfc07 | 2010-09-06 07:32:31 +0000 | [diff] [blame] | 4333 | if (badCFG) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4334 | return nullptr; |
Ted Kremenek | 9366800 | 2009-07-17 22:18:43 +0000 | [diff] [blame] | 4335 | |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4336 | Block = createBlock(false); |
| 4337 | Block->setTerminator(I); |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4338 | addSuccessor(Block, IBlock); |
Ted Kremenek | eda180e2 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 4339 | return addStmt(I->getTarget()); |
| 4340 | } |
| 4341 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4342 | CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary, |
| 4343 | TempDtorContext &Context) { |
Jordan Rose | 6d671cc | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 4344 | assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors); |
| 4345 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4346 | tryAgain: |
| 4347 | if (!E) { |
| 4348 | badCFG = true; |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4349 | return nullptr; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4350 | } |
| 4351 | switch (E->getStmtClass()) { |
| 4352 | default: |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4353 | return VisitChildrenForTemporaryDtors(E, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4354 | |
| 4355 | case Stmt::BinaryOperatorClass: |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4356 | return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E), |
| 4357 | Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4358 | |
| 4359 | case Stmt::CXXBindTemporaryExprClass: |
| 4360 | return VisitCXXBindTemporaryExprForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4361 | cast<CXXBindTemporaryExpr>(E), BindToTemporary, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4362 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4363 | case Stmt::BinaryConditionalOperatorClass: |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4364 | case Stmt::ConditionalOperatorClass: |
| 4365 | return VisitConditionalOperatorForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4366 | cast<AbstractConditionalOperator>(E), BindToTemporary, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4367 | |
| 4368 | case Stmt::ImplicitCastExprClass: |
| 4369 | // For implicit cast we want BindToTemporary to be passed further. |
| 4370 | E = cast<CastExpr>(E)->getSubExpr(); |
| 4371 | goto tryAgain; |
| 4372 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4373 | case Stmt::CXXFunctionalCastExprClass: |
| 4374 | // For functional cast we want BindToTemporary to be passed further. |
| 4375 | E = cast<CXXFunctionalCastExpr>(E)->getSubExpr(); |
| 4376 | goto tryAgain; |
| 4377 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4378 | case Stmt::ParenExprClass: |
| 4379 | E = cast<ParenExpr>(E)->getSubExpr(); |
| 4380 | goto tryAgain; |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4381 | |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4382 | case Stmt::MaterializeTemporaryExprClass: { |
| 4383 | const MaterializeTemporaryExpr* MTE = cast<MaterializeTemporaryExpr>(E); |
| 4384 | BindToTemporary = (MTE->getStorageDuration() != SD_FullExpression); |
| 4385 | SmallVector<const Expr *, 2> CommaLHSs; |
| 4386 | SmallVector<SubobjectAdjustment, 2> Adjustments; |
| 4387 | // Find the expression whose lifetime needs to be extended. |
| 4388 | E = const_cast<Expr *>( |
| 4389 | cast<MaterializeTemporaryExpr>(E) |
| 4390 | ->GetTemporaryExpr() |
| 4391 | ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments)); |
| 4392 | // Visit the skipped comma operator left-hand sides for other temporaries. |
| 4393 | for (const Expr *CommaLHS : CommaLHSs) { |
| 4394 | VisitForTemporaryDtors(const_cast<Expr *>(CommaLHS), |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4395 | /*BindToTemporary=*/false, Context); |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4396 | } |
Douglas Gregor | fe31481 | 2011-06-21 17:03:29 +0000 | [diff] [blame] | 4397 | goto tryAgain; |
Manuel Klimek | b0042c4 | 2014-07-30 08:34:42 +0000 | [diff] [blame] | 4398 | } |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4399 | |
| 4400 | case Stmt::BlockExprClass: |
| 4401 | // Don't recurse into blocks; their subexpressions don't get evaluated |
| 4402 | // here. |
| 4403 | return Block; |
| 4404 | |
| 4405 | case Stmt::LambdaExprClass: { |
| 4406 | // For lambda expressions, only recurse into the capture initializers, |
| 4407 | // and not the body. |
| 4408 | auto *LE = cast<LambdaExpr>(E); |
| 4409 | CFGBlock *B = Block; |
| 4410 | for (Expr *Init : LE->capture_inits()) { |
Richard Smith | 7ed5fb2 | 2018-07-27 17:13:18 +0000 | [diff] [blame] | 4411 | if (Init) { |
| 4412 | if (CFGBlock *R = VisitForTemporaryDtors( |
| 4413 | Init, /*BindToTemporary=*/false, Context)) |
| 4414 | B = R; |
| 4415 | } |
Richard Smith | 4137af2 | 2014-07-27 05:12:49 +0000 | [diff] [blame] | 4416 | } |
| 4417 | return B; |
| 4418 | } |
| 4419 | |
| 4420 | case Stmt::CXXDefaultArgExprClass: |
| 4421 | E = cast<CXXDefaultArgExpr>(E)->getExpr(); |
| 4422 | goto tryAgain; |
| 4423 | |
| 4424 | case Stmt::CXXDefaultInitExprClass: |
| 4425 | E = cast<CXXDefaultInitExpr>(E)->getExpr(); |
| 4426 | goto tryAgain; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4427 | } |
| 4428 | } |
| 4429 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4430 | CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E, |
| 4431 | TempDtorContext &Context) { |
| 4432 | if (isa<LambdaExpr>(E)) { |
| 4433 | // Do not visit the children of lambdas; they have their own CFGs. |
| 4434 | return Block; |
| 4435 | } |
| 4436 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4437 | // When visiting children for destructors we want to visit them in reverse |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4438 | // order that they will appear in the CFG. Because the CFG is built |
| 4439 | // bottom-up, this means we visit them in their natural order, which |
| 4440 | // reverses them in the CFG. |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4441 | CFGBlock *B = Block; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4442 | for (Stmt *Child : E->children()) |
| 4443 | if (Child) |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4444 | if (CFGBlock *R = VisitForTemporaryDtors(Child, false, Context)) |
Ted Kremenek | 8ae6787 | 2013-02-05 22:00:19 +0000 | [diff] [blame] | 4445 | B = R; |
Benjamin Kramer | 642f173 | 2015-07-02 21:03:14 +0000 | [diff] [blame] | 4446 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4447 | return B; |
| 4448 | } |
| 4449 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4450 | CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors( |
| 4451 | BinaryOperator *E, TempDtorContext &Context) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4452 | if (E->isLogicalOp()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4453 | VisitForTemporaryDtors(E->getLHS(), false, Context); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4454 | TryResult RHSExecuted = tryEvaluateBool(E->getLHS()); |
| 4455 | if (RHSExecuted.isKnown() && E->getOpcode() == BO_LOr) |
| 4456 | RHSExecuted.negate(); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4457 | |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4458 | // We do not know at CFG-construction time whether the right-hand-side was |
| 4459 | // executed, thus we add a branch node that depends on the temporary |
| 4460 | // constructor call. |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4461 | TempDtorContext RHSContext( |
| 4462 | bothKnownTrue(Context.KnownExecuted, RHSExecuted)); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4463 | VisitForTemporaryDtors(E->getRHS(), false, RHSContext); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4464 | InsertTempDtorDecisionBlock(RHSContext); |
Manuel Klimek | 7c03013 | 2014-08-07 16:05:51 +0000 | [diff] [blame] | 4465 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4466 | return Block; |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4467 | } |
| 4468 | |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 4469 | if (E->isAssignmentOp()) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4470 | // For assignment operator (=) LHS expression is visited |
| 4471 | // before RHS expression. For destructors visit them in reverse order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4472 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
| 4473 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4474 | return LHSBlock ? LHSBlock : RHSBlock; |
| 4475 | } |
| 4476 | |
| 4477 | // For any other binary operator RHS expression is visited before |
| 4478 | // LHS expression (order of children). For destructors visit them in reverse |
| 4479 | // order. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4480 | CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context); |
| 4481 | CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context); |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4482 | return RHSBlock ? RHSBlock : LHSBlock; |
| 4483 | } |
| 4484 | |
| 4485 | CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4486 | CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4487 | // First add destructors for temporaries in subexpression. |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4488 | CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr(), false, Context); |
Zhongxing Xu | fee455f | 2010-11-14 15:23:50 +0000 | [diff] [blame] | 4489 | if (!BindToTemporary) { |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4490 | // If lifetime of temporary is not prolonged (by assigning to constant |
| 4491 | // reference) add destructor for it. |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4492 | |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4493 | const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4494 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 4495 | if (Dtor->getParent()->isAnyDestructorNoReturn()) { |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4496 | // If the destructor is marked as a no-return destructor, we need to |
| 4497 | // create a new block for the destructor which does not have as a |
| 4498 | // successor anything built thus far. Control won't flow out of this |
| 4499 | // block. |
| 4500 | if (B) Succ = B; |
Chandler Carruth | a70991b | 2011-09-13 09:13:49 +0000 | [diff] [blame] | 4501 | Block = createNoReturnBlock(); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4502 | } else if (Context.needsTempDtorBranch()) { |
| 4503 | // If we need to introduce a branch, we add a new block that we will hook |
| 4504 | // up to a decision block later. |
| 4505 | if (B) Succ = B; |
| 4506 | Block = createBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4507 | } else { |
Chandler Carruth | ad74725 | 2011-09-13 06:09:01 +0000 | [diff] [blame] | 4508 | autoCreateBlock(); |
Ted Kremenek | ff909f9 | 2014-03-08 02:22:25 +0000 | [diff] [blame] | 4509 | } |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4510 | if (Context.needsTempDtorBranch()) { |
| 4511 | Context.setDecisionPoint(Succ, E); |
| 4512 | } |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4513 | appendTemporaryDtor(Block, E); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4514 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4515 | B = Block; |
| 4516 | } |
| 4517 | return B; |
| 4518 | } |
| 4519 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4520 | void CFGBuilder::InsertTempDtorDecisionBlock(const TempDtorContext &Context, |
| 4521 | CFGBlock *FalseSucc) { |
| 4522 | if (!Context.TerminatorExpr) { |
| 4523 | // If no temporary was found, we do not need to insert a decision point. |
| 4524 | return; |
| 4525 | } |
| 4526 | assert(Context.TerminatorExpr); |
| 4527 | CFGBlock *Decision = createBlock(false); |
| 4528 | Decision->setTerminator(CFGTerminator(Context.TerminatorExpr, true)); |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4529 | addSuccessor(Decision, Block, !Context.KnownExecuted.isFalse()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4530 | addSuccessor(Decision, FalseSucc ? FalseSucc : Context.Succ, |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4531 | !Context.KnownExecuted.isTrue()); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4532 | Block = Decision; |
| 4533 | } |
| 4534 | |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4535 | CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors( |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4536 | AbstractConditionalOperator *E, bool BindToTemporary, |
| 4537 | TempDtorContext &Context) { |
| 4538 | VisitForTemporaryDtors(E->getCond(), false, Context); |
| 4539 | CFGBlock *ConditionBlock = Block; |
| 4540 | CFGBlock *ConditionSucc = Succ; |
Manuel Klimek | 0ce9108 | 2014-08-07 14:25:43 +0000 | [diff] [blame] | 4541 | TryResult ConditionVal = tryEvaluateBool(E->getCond()); |
Manuel Klimek | edf925b9 | 2014-08-07 18:44:19 +0000 | [diff] [blame] | 4542 | TryResult NegatedVal = ConditionVal; |
| 4543 | if (NegatedVal.isKnown()) NegatedVal.negate(); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4544 | |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4545 | TempDtorContext TrueContext( |
| 4546 | bothKnownTrue(Context.KnownExecuted, ConditionVal)); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4547 | VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary, TrueContext); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4548 | CFGBlock *TrueBlock = Block; |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4549 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4550 | Block = ConditionBlock; |
| 4551 | Succ = ConditionSucc; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4552 | TempDtorContext FalseContext( |
| 4553 | bothKnownTrue(Context.KnownExecuted, NegatedVal)); |
Manuel Klimek | cadc603 | 2014-08-07 17:02:21 +0000 | [diff] [blame] | 4554 | VisitForTemporaryDtors(E->getFalseExpr(), BindToTemporary, FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4555 | |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4556 | if (TrueContext.TerminatorExpr && FalseContext.TerminatorExpr) { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4557 | InsertTempDtorDecisionBlock(FalseContext, TrueBlock); |
Manuel Klimek | b5616c9 | 2014-08-07 10:42:17 +0000 | [diff] [blame] | 4558 | } else if (TrueContext.TerminatorExpr) { |
| 4559 | Block = TrueBlock; |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4560 | InsertTempDtorDecisionBlock(TrueContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4561 | } else { |
Manuel Klimek | deb0262 | 2014-08-08 07:37:13 +0000 | [diff] [blame] | 4562 | InsertTempDtorDecisionBlock(FalseContext); |
Rui Ueyama | a89f9c8 | 2014-08-06 22:01:54 +0000 | [diff] [blame] | 4563 | } |
Marcin Swiderski | 3ab17ad | 2010-11-03 06:19:35 +0000 | [diff] [blame] | 4564 | return Block; |
| 4565 | } |
| 4566 | |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4567 | /// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has |
| 4568 | /// no successors or predecessors. If this is the first block created in the |
| 4569 | /// 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] | 4570 | CFGBlock *CFG::createBlock() { |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4571 | bool first_block = begin() == end(); |
| 4572 | |
| 4573 | // Create the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4574 | CFGBlock *Mem = getAllocator().Allocate<CFGBlock>(); |
Anna Zaks | 02a1fc1 | 2011-12-05 21:33:11 +0000 | [diff] [blame] | 4575 | new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this); |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4576 | Blocks.push_back(Mem, BlkBVC); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4577 | |
| 4578 | // 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] | 4579 | if (first_block) |
| 4580 | Entry = Exit = &back(); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4581 | |
| 4582 | // Return the block. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4583 | return &back(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 4584 | } |
| 4585 | |
David Blaikie | e90195c | 2014-08-29 18:53:26 +0000 | [diff] [blame] | 4586 | /// buildCFG - Constructs a CFG from an AST. |
| 4587 | std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement, |
| 4588 | ASTContext *C, const BuildOptions &BO) { |
Ted Kremenek | f9d8290 | 2011-03-10 01:14:05 +0000 | [diff] [blame] | 4589 | CFGBuilder Builder(C, BO); |
| 4590 | return Builder.buildCFG(D, Statement); |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 4591 | } |
| 4592 | |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4593 | const CXXDestructorDecl * |
| 4594 | CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4595 | switch (getKind()) { |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4596 | case CFGElement::Initializer: |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 4597 | case CFGElement::NewAllocator: |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 4598 | case CFGElement::LoopExit: |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 4599 | case CFGElement::LifetimeEnds: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4600 | case CFGElement::Statement: |
| 4601 | case CFGElement::Constructor: |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4602 | case CFGElement::CXXRecordTypedCall: |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 4603 | case CFGElement::ScopeBegin: |
| 4604 | case CFGElement::ScopeEnd: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4605 | llvm_unreachable("getDestructorDecl should only be used with " |
| 4606 | "ImplicitDtors"); |
| 4607 | case CFGElement::AutomaticObjectDtor: { |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4608 | const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4609 | QualType ty = var->getType(); |
Devin Coughlin | 6eb1ca7 | 2016-08-02 21:07:23 +0000 | [diff] [blame] | 4610 | |
| 4611 | // FIXME: See CFGBuilder::addLocalScopeForVarDecl. |
| 4612 | // |
| 4613 | // Lifetime-extending constructs are handled here. This works for a single |
| 4614 | // temporary in an initializer expression. |
| 4615 | if (ty->isReferenceType()) { |
| 4616 | if (const Expr *Init = var->getInit()) { |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 4617 | ty = getReferenceInitTemporaryType(Init); |
Devin Coughlin | 6eb1ca7 | 2016-08-02 21:07:23 +0000 | [diff] [blame] | 4618 | } |
| 4619 | } |
| 4620 | |
Ted Kremenek | e7d7888 | 2012-03-19 23:48:41 +0000 | [diff] [blame] | 4621 | while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) { |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4622 | ty = arrayType->getElementType(); |
| 4623 | } |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4624 | const RecordType *recordType = ty->getAs<RecordType>(); |
| 4625 | const CXXRecordDecl *classDecl = |
Ted Kremenek | 1676a04 | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 4626 | cast<CXXRecordDecl>(recordType->getDecl()); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 4627 | return classDecl->getDestructor(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4628 | } |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 4629 | case CFGElement::DeleteDtor: { |
| 4630 | const CXXDeleteExpr *DE = castAs<CFGDeleteDtor>().getDeleteExpr(); |
| 4631 | QualType DTy = DE->getDestroyedType(); |
| 4632 | DTy = DTy.getNonReferenceType(); |
| 4633 | const CXXRecordDecl *classDecl = |
| 4634 | astContext.getBaseElementType(DTy)->getAsCXXRecordDecl(); |
| 4635 | return classDecl->getDestructor(); |
| 4636 | } |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4637 | case CFGElement::TemporaryDtor: { |
| 4638 | const CXXBindTemporaryExpr *bindExpr = |
David Blaikie | 2a01f5d | 2013-02-21 20:58:29 +0000 | [diff] [blame] | 4639 | castAs<CFGTemporaryDtor>().getBindTemporaryExpr(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4640 | const CXXTemporary *temp = bindExpr->getTemporary(); |
| 4641 | return temp->getDestructor(); |
| 4642 | } |
| 4643 | case CFGElement::BaseDtor: |
| 4644 | case CFGElement::MemberDtor: |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4645 | // Not yet supported. |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 4646 | return nullptr; |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4647 | } |
Ted Kremenek | 1676a04 | 2011-03-03 01:01:03 +0000 | [diff] [blame] | 4648 | llvm_unreachable("getKind() returned bogus value"); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4649 | } |
| 4650 | |
Ted Kremenek | 8cfe207 | 2011-03-03 01:21:32 +0000 | [diff] [blame] | 4651 | bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const { |
Richard Smith | 10876ef | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 4652 | if (const CXXDestructorDecl *DD = getDestructorDecl(astContext)) |
| 4653 | return DD->isNoReturn(); |
Ted Kremenek | e06a55c | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 4654 | return false; |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4655 | } |
| 4656 | |
Ted Kremenek | f2d4372b | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 4657 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4658 | // CFGBlock operations. |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4659 | //===----------------------------------------------------------------------===// |
| 4660 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4661 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, bool IsReachable) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4662 | : ReachableBlock(IsReachable ? B : nullptr), |
| 4663 | UnreachableBlock(!IsReachable ? B : nullptr, |
| 4664 | B && IsReachable ? AB_Normal : AB_Unreachable) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4665 | |
| 4666 | CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, CFGBlock *AlternateBlock) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4667 | : ReachableBlock(B), |
| 4668 | UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock, |
| 4669 | B == AlternateBlock ? AB_Alternate : AB_Normal) {} |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4670 | |
| 4671 | void CFGBlock::addSuccessor(AdjacentBlock Succ, |
| 4672 | BumpVectorContext &C) { |
| 4673 | if (CFGBlock *B = Succ.getReachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4674 | B->Preds.push_back(AdjacentBlock(this, Succ.isReachable()), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4675 | |
| 4676 | if (CFGBlock *UnreachableB = Succ.getPossiblyUnreachableBlock()) |
David Blaikie | 9afd5da | 2014-03-04 23:39:18 +0000 | [diff] [blame] | 4677 | UnreachableB->Preds.push_back(AdjacentBlock(this, false), C); |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4678 | |
| 4679 | Succs.push_back(Succ, C); |
| 4680 | } |
| 4681 | |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4682 | bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F, |
Ted Kremenek | f146cd1 | 2010-09-09 02:57:48 +0000 | [diff] [blame] | 4683 | const CFGBlock *From, const CFGBlock *To) { |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 4684 | if (F.IgnoreNullPredecessors && !From) |
| 4685 | return true; |
| 4686 | |
| 4687 | if (To && From && F.IgnoreDefaultsWithCoveredEnums) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4688 | // If the 'To' has no label or is labeled but the label isn't a |
| 4689 | // CaseStmt then filter this edge. |
| 4690 | if (const SwitchStmt *S = |
Ted Kremenek | 8979474 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 4691 | dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) { |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4692 | if (S->isAllEnumCasesCovered()) { |
Ted Kremenek | 8979474 | 2011-03-07 22:04:39 +0000 | [diff] [blame] | 4693 | const Stmt *L = To->getLabel(); |
| 4694 | if (!L || !isa<CaseStmt>(L)) |
| 4695 | return true; |
Ted Kremenek | b037185 | 2010-09-09 00:06:04 +0000 | [diff] [blame] | 4696 | } |
| 4697 | } |
| 4698 | } |
| 4699 | |
| 4700 | return false; |
| 4701 | } |
| 4702 | |
| 4703 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 4704 | // CFG pretty printing |
| 4705 | //===----------------------------------------------------------------------===// |
| 4706 | |
Ted Kremenek | 7e776b1 | 2007-08-22 18:22:34 +0000 | [diff] [blame] | 4707 | namespace { |
| 4708 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 4709 | class StmtPrinterHelper : public PrinterHelper { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4710 | using StmtMapTy = llvm::DenseMap<const Stmt *, std::pair<unsigned, unsigned>>; |
| 4711 | using DeclMapTy = llvm::DenseMap<const Decl *, std::pair<unsigned, unsigned>>; |
| 4712 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4713 | StmtMapTy StmtMap; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4714 | DeclMapTy DeclMap; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4715 | signed currentBlock = 0; |
| 4716 | unsigned currStmt = 0; |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4717 | const LangOptions &LangOpts; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4718 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4719 | public: |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4720 | StmtPrinterHelper(const CFG* cfg, const LangOptions &LO) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4721 | : LangOpts(LO) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4722 | for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) { |
| 4723 | unsigned j = 1; |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 4724 | for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 4725 | BI != BEnd; ++BI, ++j ) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 4726 | if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) { |
| 4727 | const Stmt *stmt= SE->getStmt(); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4728 | std::pair<unsigned, unsigned> P((*I)->getBlockID(), j); |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4729 | StmtMap[stmt] = P; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4730 | |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4731 | switch (stmt->getStmtClass()) { |
| 4732 | case Stmt::DeclStmtClass: |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 4733 | DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P; |
| 4734 | break; |
Ted Kremenek | 96a7a59 | 2011-03-01 03:15:10 +0000 | [diff] [blame] | 4735 | case Stmt::IfStmtClass: { |
| 4736 | const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable(); |
| 4737 | if (var) |
| 4738 | DeclMap[var] = P; |
| 4739 | break; |
| 4740 | } |
| 4741 | case Stmt::ForStmtClass: { |
| 4742 | const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable(); |
| 4743 | if (var) |
| 4744 | DeclMap[var] = P; |
| 4745 | break; |
| 4746 | } |
| 4747 | case Stmt::WhileStmtClass: { |
| 4748 | const VarDecl *var = |
| 4749 | cast<WhileStmt>(stmt)->getConditionVariable(); |
| 4750 | if (var) |
| 4751 | DeclMap[var] = P; |
| 4752 | break; |
| 4753 | } |
| 4754 | case Stmt::SwitchStmtClass: { |
| 4755 | const VarDecl *var = |
| 4756 | cast<SwitchStmt>(stmt)->getConditionVariable(); |
| 4757 | if (var) |
| 4758 | DeclMap[var] = P; |
| 4759 | break; |
| 4760 | } |
| 4761 | case Stmt::CXXCatchStmtClass: { |
| 4762 | const VarDecl *var = |
| 4763 | cast<CXXCatchStmt>(stmt)->getExceptionDecl(); |
| 4764 | if (var) |
| 4765 | DeclMap[var] = P; |
| 4766 | break; |
| 4767 | } |
| 4768 | default: |
| 4769 | break; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4770 | } |
| 4771 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4772 | } |
Zhongxing Xu | 2cd7a78 | 2010-09-16 01:25:47 +0000 | [diff] [blame] | 4773 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4774 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4775 | |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4776 | ~StmtPrinterHelper() override = default; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4777 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4778 | const LangOptions &getLangOpts() const { return LangOpts; } |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4779 | void setBlockID(signed i) { currentBlock = i; } |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4780 | void setStmtID(unsigned i) { currStmt = i; } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4781 | |
Craig Topper | b45acb8 | 2014-03-14 06:02:07 +0000 | [diff] [blame] | 4782 | bool handledStmt(Stmt *S, raw_ostream &OS) override { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4783 | StmtMapTy::iterator I = StmtMap.find(S); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4784 | |
| 4785 | if (I == StmtMap.end()) |
| 4786 | return false; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4787 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4788 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4789 | && I->second.second == currStmt) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4790 | return false; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4791 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4792 | |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4793 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4794 | return true; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4795 | } |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4796 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4797 | bool handleDecl(const Decl *D, raw_ostream &OS) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4798 | DeclMapTy::iterator I = DeclMap.find(D); |
| 4799 | |
| 4800 | if (I == DeclMap.end()) |
| 4801 | return false; |
| 4802 | |
Ted Kremenek | 3a9a2a5 | 2010-12-17 04:44:39 +0000 | [diff] [blame] | 4803 | if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock |
Ted Kremenek | d94854a | 2012-08-22 06:26:15 +0000 | [diff] [blame] | 4804 | && I->second.second == currStmt) { |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 4805 | return false; |
| 4806 | } |
| 4807 | |
| 4808 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
| 4809 | return true; |
| 4810 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4811 | }; |
| 4812 | |
Kovarththanan Rajaratnam | 65c6566 | 2009-11-28 06:07:30 +0000 | [diff] [blame] | 4813 | class CFGBlockTerminatorPrint |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4814 | : public StmtVisitor<CFGBlockTerminatorPrint,void> { |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4815 | raw_ostream &OS; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4816 | StmtPrinterHelper* Helper; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4817 | PrintingPolicy Policy; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4818 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 4819 | public: |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4820 | CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper, |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4821 | const PrintingPolicy &Policy) |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4822 | : OS(os), Helper(helper), Policy(Policy) { |
Ted Kremenek | 5d0fb1e | 2013-12-11 23:44:05 +0000 | [diff] [blame] | 4823 | this->Policy.IncludeNewlines = false; |
| 4824 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4825 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4826 | void VisitIfStmt(IfStmt *I) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4827 | OS << "if "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4828 | if (Stmt *C = I->getCond()) |
| 4829 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4830 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4831 | |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4832 | // Default case. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4833 | void VisitStmt(Stmt *Terminator) { |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4834 | Terminator->printPretty(OS, Helper, Policy); |
| 4835 | } |
| 4836 | |
Ted Kremenek | 0dd8fee | 2013-03-28 18:43:15 +0000 | [diff] [blame] | 4837 | void VisitDeclStmt(DeclStmt *DS) { |
| 4838 | VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); |
| 4839 | OS << "static init " << VD->getName(); |
| 4840 | } |
| 4841 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4842 | void VisitForStmt(ForStmt *F) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4843 | OS << "for (" ; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4844 | if (F->getInit()) |
| 4845 | OS << "..."; |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 4846 | OS << "; "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4847 | if (Stmt *C = F->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4848 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | fc7aafc | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 4849 | OS << "; "; |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4850 | if (F->getInc()) |
| 4851 | OS << "..."; |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4852 | OS << ")"; |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4853 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4854 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4855 | void VisitWhileStmt(WhileStmt *W) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4856 | OS << "while " ; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4857 | if (Stmt *C = W->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4858 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4859 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4860 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4861 | void VisitDoStmt(DoStmt *D) { |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4862 | OS << "do ... while "; |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4863 | if (Stmt *C = D->getCond()) |
Ted Kremenek | 60983dc | 2010-01-19 20:52:05 +0000 | [diff] [blame] | 4864 | C->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4865 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4866 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4867 | void VisitSwitchStmt(SwitchStmt *Terminator) { |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4868 | OS << "switch "; |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4869 | Terminator->getCond()->printPretty(OS, Helper, Policy); |
Ted Kremenek | 9e24887 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 4870 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4871 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4872 | void VisitCXXTryStmt(CXXTryStmt *CS) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 4873 | OS << "try ..."; |
| 4874 | } |
| 4875 | |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 4876 | void VisitSEHTryStmt(SEHTryStmt *CS) { |
| 4877 | OS << "__try ..."; |
| 4878 | } |
| 4879 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 4880 | void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) { |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4881 | if (Stmt *Cond = C->getCond()) |
| 4882 | Cond->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4883 | OS << " ? ... : ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4884 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4885 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4886 | void VisitChooseExpr(ChooseExpr *C) { |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 4887 | OS << "__builtin_choose_expr( "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4888 | if (Stmt *Cond = C->getCond()) |
| 4889 | Cond->printPretty(OS, Helper, Policy); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4890 | OS << " )"; |
Ted Kremenek | 391f94a | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 4891 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4892 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4893 | void VisitIndirectGotoStmt(IndirectGotoStmt *I) { |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4894 | OS << "goto *"; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4895 | if (Stmt *T = I->getTarget()) |
| 4896 | T->printPretty(OS, Helper, Policy); |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 4897 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4898 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4899 | void VisitBinaryOperator(BinaryOperator* B) { |
| 4900 | if (!B->isLogicalOp()) { |
| 4901 | VisitExpr(B); |
| 4902 | return; |
| 4903 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4904 | |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 4905 | if (B->getLHS()) |
| 4906 | B->getLHS()->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4907 | |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4908 | switch (B->getOpcode()) { |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4909 | case BO_LOr: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4910 | OS << " || ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4911 | return; |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4912 | case BO_LAnd: |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 4913 | OS << " && ..."; |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4914 | return; |
| 4915 | default: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4916 | llvm_unreachable("Invalid logical operator."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4917 | } |
Ted Kremenek | 7f7dd76 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 4918 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4919 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 4920 | void VisitExpr(Expr *E) { |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 4921 | E->printPretty(OS, Helper, Policy); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 4922 | } |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 4923 | |
| 4924 | public: |
| 4925 | void print(CFGTerminator T) { |
| 4926 | if (T.isTemporaryDtorsBranch()) |
| 4927 | OS << "(Temp Dtor) "; |
| 4928 | Visit(T.getStmt()); |
| 4929 | } |
Ted Kremenek | 9aae513 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 4930 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 4931 | |
| 4932 | } // namespace |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 4933 | |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 4934 | static void print_initializer(raw_ostream &OS, StmtPrinterHelper &Helper, |
| 4935 | const CXXCtorInitializer *I) { |
| 4936 | if (I->isBaseInitializer()) |
| 4937 | OS << I->getBaseClass()->getAsCXXRecordDecl()->getName(); |
| 4938 | else if (I->isDelegatingInitializer()) |
| 4939 | OS << I->getTypeSourceInfo()->getType()->getAsCXXRecordDecl()->getName(); |
| 4940 | else |
| 4941 | OS << I->getAnyMember()->getName(); |
| 4942 | OS << "("; |
| 4943 | if (Expr *IE = I->getInit()) |
| 4944 | IE->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
| 4945 | OS << ")"; |
| 4946 | |
| 4947 | if (I->isBaseInitializer()) |
| 4948 | OS << " (Base initializer)"; |
| 4949 | else if (I->isDelegatingInitializer()) |
| 4950 | OS << " (Delegating initializer)"; |
| 4951 | else |
| 4952 | OS << " (Member initializer)"; |
| 4953 | } |
| 4954 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4955 | static void print_construction_context(raw_ostream &OS, |
| 4956 | StmtPrinterHelper &Helper, |
| 4957 | const ConstructionContext *CC) { |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 4958 | SmallVector<const Stmt *, 3> Stmts; |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4959 | switch (CC->getKind()) { |
Artem Dergachev | 922455f | 2018-03-22 22:02:38 +0000 | [diff] [blame] | 4960 | case ConstructionContext::SimpleConstructorInitializerKind: { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4961 | OS << ", "; |
Artem Dergachev | 922455f | 2018-03-22 22:02:38 +0000 | [diff] [blame] | 4962 | const auto *SICC = cast<SimpleConstructorInitializerConstructionContext>(CC); |
| 4963 | print_initializer(OS, Helper, SICC->getCXXCtorInitializer()); |
| 4964 | break; |
| 4965 | } |
| 4966 | case ConstructionContext::CXX17ElidedCopyConstructorInitializerKind: { |
| 4967 | OS << ", "; |
| 4968 | const auto *CICC = |
| 4969 | cast<CXX17ElidedCopyConstructorInitializerConstructionContext>(CC); |
| 4970 | print_initializer(OS, Helper, CICC->getCXXCtorInitializer()); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 4971 | Stmts.push_back(CICC->getCXXBindTemporaryExpr()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4972 | break; |
| 4973 | } |
| 4974 | case ConstructionContext::SimpleVariableKind: { |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 4975 | const auto *SDSCC = cast<SimpleVariableConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 4976 | Stmts.push_back(SDSCC->getDeclStmt()); |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 4977 | break; |
| 4978 | } |
| 4979 | case ConstructionContext::CXX17ElidedCopyVariableKind: { |
| 4980 | const auto *CDSCC = cast<CXX17ElidedCopyVariableConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 4981 | Stmts.push_back(CDSCC->getDeclStmt()); |
| 4982 | Stmts.push_back(CDSCC->getCXXBindTemporaryExpr()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4983 | break; |
| 4984 | } |
| 4985 | case ConstructionContext::NewAllocatedObjectKind: { |
| 4986 | const auto *NECC = cast<NewAllocatedObjectConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 4987 | Stmts.push_back(NECC->getCXXNewExpr()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4988 | break; |
| 4989 | } |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 4990 | case ConstructionContext::SimpleReturnedValueKind: { |
| 4991 | const auto *RSCC = cast<SimpleReturnedValueConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 4992 | Stmts.push_back(RSCC->getReturnStmt()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 4993 | break; |
| 4994 | } |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 4995 | case ConstructionContext::CXX17ElidedCopyReturnedValueKind: { |
| 4996 | const auto *RSCC = |
| 4997 | cast<CXX17ElidedCopyReturnedValueConstructionContext>(CC); |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 4998 | Stmts.push_back(RSCC->getReturnStmt()); |
| 4999 | Stmts.push_back(RSCC->getCXXBindTemporaryExpr()); |
Artem Dergachev | 317291e | 2018-03-22 21:37:39 +0000 | [diff] [blame] | 5000 | break; |
| 5001 | } |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5002 | case ConstructionContext::SimpleTemporaryObjectKind: { |
| 5003 | const auto *TOCC = cast<SimpleTemporaryObjectConstructionContext>(CC); |
| 5004 | Stmts.push_back(TOCC->getCXXBindTemporaryExpr()); |
| 5005 | Stmts.push_back(TOCC->getMaterializedTemporaryExpr()); |
| 5006 | break; |
| 5007 | } |
| 5008 | case ConstructionContext::ElidedTemporaryObjectKind: { |
| 5009 | const auto *TOCC = cast<ElidedTemporaryObjectConstructionContext>(CC); |
| 5010 | Stmts.push_back(TOCC->getCXXBindTemporaryExpr()); |
| 5011 | Stmts.push_back(TOCC->getMaterializedTemporaryExpr()); |
| 5012 | Stmts.push_back(TOCC->getConstructorAfterElision()); |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5013 | break; |
| 5014 | } |
| 5015 | } |
Artem Dergachev | ff267df | 2018-06-28 00:04:54 +0000 | [diff] [blame] | 5016 | for (auto I: Stmts) |
| 5017 | if (I) { |
| 5018 | OS << ", "; |
| 5019 | Helper.handledStmt(const_cast<Stmt *>(I), OS); |
| 5020 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5021 | } |
| 5022 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5023 | static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper, |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5024 | const CFGElement &E) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5025 | if (Optional<CFGStmt> CS = E.getAs<CFGStmt>()) { |
| 5026 | const Stmt *S = CS->getStmt(); |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5027 | assert(S != nullptr && "Expecting non-null Stmt"); |
| 5028 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5029 | // special printing for statement-expressions. |
| 5030 | if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) { |
| 5031 | const CompoundStmt *Sub = SE->getSubStmt(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5032 | |
Benjamin Kramer | 5733e35 | 2015-07-18 17:09:36 +0000 | [diff] [blame] | 5033 | auto Children = Sub->children(); |
| 5034 | if (Children.begin() != Children.end()) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5035 | OS << "({ ... ; "; |
| 5036 | Helper.handledStmt(*SE->getSubStmt()->body_rbegin(),OS); |
| 5037 | OS << " })\n"; |
| 5038 | return; |
Ted Kremenek | f8b50e9 | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 5039 | } |
| 5040 | } |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5041 | // special printing for comma expressions. |
| 5042 | if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) { |
| 5043 | if (B->getOpcode() == BO_Comma) { |
| 5044 | OS << "... , "; |
| 5045 | Helper.handledStmt(B->getRHS(),OS); |
| 5046 | OS << '\n'; |
| 5047 | return; |
| 5048 | } |
| 5049 | } |
| 5050 | S->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts())); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5051 | |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5052 | if (auto VTC = E.getAs<CFGCXXRecordTypedCall>()) { |
| 5053 | if (isa<CXXOperatorCallExpr>(S)) |
| 5054 | OS << " (OperatorCall)"; |
| 5055 | OS << " (CXXRecordTypedCall"; |
| 5056 | print_construction_context(OS, Helper, VTC->getConstructionContext()); |
| 5057 | OS << ")"; |
| 5058 | } else if (isa<CXXOperatorCallExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 5059 | OS << " (OperatorCall)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5060 | } else if (isa<CXXBindTemporaryExpr>(S)) { |
Zhanyong Wan | 59f09c7 | 2010-11-22 19:32:14 +0000 | [diff] [blame] | 5061 | OS << " (BindTemporary)"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5062 | } else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5063 | OS << " (CXXConstructExpr"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5064 | if (Optional<CFGConstructor> CE = E.getAs<CFGConstructor>()) { |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5065 | print_construction_context(OS, Helper, CE->getConstructionContext()); |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5066 | } |
Artem Dergachev | 1527dec | 2018-03-12 23:12:40 +0000 | [diff] [blame] | 5067 | OS << ", " << CCE->getType().getAsString() << ")"; |
Artem Dergachev | 41ffb30 | 2018-02-08 22:58:15 +0000 | [diff] [blame] | 5068 | } else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) { |
Ted Kremenek | 0ffba93 | 2011-12-21 19:32:38 +0000 | [diff] [blame] | 5069 | OS << " (" << CE->getStmtClassName() << ", " |
| 5070 | << CE->getCastKindName() |
| 5071 | << ", " << CE->getType().getAsString() |
| 5072 | << ")"; |
| 5073 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5074 | |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5075 | // Expressions need a newline. |
| 5076 | if (isa<Expr>(S)) |
| 5077 | OS << '\n'; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5078 | } else if (Optional<CFGInitializer> IE = E.getAs<CFGInitializer>()) { |
Artem Dergachev | 5a281bb | 2018-02-10 02:18:04 +0000 | [diff] [blame] | 5079 | print_initializer(OS, Helper, IE->getInitializer()); |
| 5080 | OS << '\n'; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5081 | } else if (Optional<CFGAutomaticObjDtor> DE = |
| 5082 | E.getAs<CFGAutomaticObjDtor>()) { |
| 5083 | const VarDecl *VD = DE->getVarDecl(); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5084 | Helper.handleDecl(VD, OS); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5085 | |
Artem Dergachev | a25809f | 2018-06-04 18:56:25 +0000 | [diff] [blame] | 5086 | ASTContext &ACtx = VD->getASTContext(); |
| 5087 | QualType T = VD->getType(); |
| 5088 | if (T->isReferenceType()) |
| 5089 | T = getReferenceInitTemporaryType(VD->getInit(), nullptr); |
| 5090 | if (const ArrayType *AT = ACtx.getAsArrayType(T)) |
| 5091 | T = ACtx.getBaseElementType(AT); |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5092 | |
| 5093 | OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()"; |
| 5094 | OS << " (Implicit destructor)\n"; |
Matthias Gehre | 351c218 | 2017-07-12 07:04:19 +0000 | [diff] [blame] | 5095 | } else if (Optional<CFGLifetimeEnds> DE = E.getAs<CFGLifetimeEnds>()) { |
| 5096 | const VarDecl *VD = DE->getVarDecl(); |
| 5097 | Helper.handleDecl(VD, OS); |
| 5098 | |
| 5099 | OS << " (Lifetime ends)\n"; |
Peter Szecsi | 999a25f | 2017-08-19 11:19:16 +0000 | [diff] [blame] | 5100 | } else if (Optional<CFGLoopExit> LE = E.getAs<CFGLoopExit>()) { |
| 5101 | const Stmt *LoopStmt = LE->getLoopStmt(); |
| 5102 | OS << LoopStmt->getStmtClassName() << " (LoopExit)\n"; |
Maxim Ostapenko | debca45 | 2018-03-12 12:26:15 +0000 | [diff] [blame] | 5103 | } else if (Optional<CFGScopeBegin> SB = E.getAs<CFGScopeBegin>()) { |
| 5104 | OS << "CFGScopeBegin("; |
| 5105 | if (const VarDecl *VD = SB->getVarDecl()) |
| 5106 | OS << VD->getQualifiedNameAsString(); |
| 5107 | OS << ")\n"; |
| 5108 | } else if (Optional<CFGScopeEnd> SE = E.getAs<CFGScopeEnd>()) { |
| 5109 | OS << "CFGScopeEnd("; |
| 5110 | if (const VarDecl *VD = SE->getVarDecl()) |
| 5111 | OS << VD->getQualifiedNameAsString(); |
| 5112 | OS << ")\n"; |
Jordan Rose | c917607 | 2014-01-13 17:59:19 +0000 | [diff] [blame] | 5113 | } else if (Optional<CFGNewAllocator> NE = E.getAs<CFGNewAllocator>()) { |
| 5114 | OS << "CFGNewAllocator("; |
| 5115 | if (const CXXNewExpr *AllocExpr = NE->getAllocatorExpr()) |
| 5116 | AllocExpr->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
| 5117 | OS << ")\n"; |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 5118 | } else if (Optional<CFGDeleteDtor> DE = E.getAs<CFGDeleteDtor>()) { |
| 5119 | const CXXRecordDecl *RD = DE->getCXXRecordDecl(); |
| 5120 | if (!RD) |
| 5121 | return; |
| 5122 | CXXDeleteExpr *DelExpr = |
| 5123 | const_cast<CXXDeleteExpr*>(DE->getDeleteExpr()); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5124 | Helper.handledStmt(cast<Stmt>(DelExpr->getArgument()), OS); |
Jordan Rose | d2f4079 | 2013-09-03 17:00:57 +0000 | [diff] [blame] | 5125 | OS << "->~" << RD->getName().str() << "()"; |
| 5126 | OS << " (Implicit destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5127 | } else if (Optional<CFGBaseDtor> BE = E.getAs<CFGBaseDtor>()) { |
| 5128 | const CXXBaseSpecifier *BS = BE->getBaseSpecifier(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 5129 | OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 5130 | OS << " (Base object destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5131 | } else if (Optional<CFGMemberDtor> ME = E.getAs<CFGMemberDtor>()) { |
| 5132 | const FieldDecl *FD = ME->getFieldDecl(); |
Richard Smith | f676e45 | 2012-07-24 21:02:14 +0000 | [diff] [blame] | 5133 | const Type *T = FD->getType()->getBaseElementTypeUnsafe(); |
Marcin Swiderski | 20b8873 | 2010-10-05 05:37:00 +0000 | [diff] [blame] | 5134 | OS << "this->" << FD->getName(); |
Marcin Swiderski | 0176990 | 2010-10-25 07:05:54 +0000 | [diff] [blame] | 5135 | OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()"; |
Zhongxing Xu | 614e17d | 2010-10-05 08:38:06 +0000 | [diff] [blame] | 5136 | OS << " (Member object destructor)\n"; |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 5137 | } else if (Optional<CFGTemporaryDtor> TE = E.getAs<CFGTemporaryDtor>()) { |
| 5138 | const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr(); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 5139 | OS << "~"; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5140 | BT->getType().print(OS, PrintingPolicy(Helper.getLangOpts())); |
Pavel Labath | d527cf8 | 2013-09-02 09:09:15 +0000 | [diff] [blame] | 5141 | OS << "() (Temporary object destructor)\n"; |
Marcin Swiderski | c0ca731 | 2010-09-21 05:58:15 +0000 | [diff] [blame] | 5142 | } |
Zhongxing Xu | 0b51d4d | 2010-11-01 06:46:05 +0000 | [diff] [blame] | 5143 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5144 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5145 | static void print_block(raw_ostream &OS, const CFG* cfg, |
| 5146 | const CFGBlock &B, |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5147 | StmtPrinterHelper &Helper, bool print_edges, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5148 | bool ShowColors) { |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5149 | Helper.setBlockID(B.getBlockID()); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5150 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5151 | // Print the header. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5152 | if (ShowColors) |
| 5153 | OS.changeColor(raw_ostream::YELLOW, true); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 5154 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5155 | OS << "\n [B" << B.getBlockID(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5156 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5157 | if (&B == &cfg->getEntry()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5158 | OS << " (ENTRY)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5159 | else if (&B == &cfg->getExit()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5160 | OS << " (EXIT)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5161 | else if (&B == cfg->getIndirectGotoBlock()) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5162 | OS << " (INDIRECT GOTO DISPATCH)]\n"; |
Jordan Rose | 398fb00 | 2014-04-01 16:39:33 +0000 | [diff] [blame] | 5163 | else if (B.hasNoReturnElement()) |
| 5164 | OS << " (NORETURN)]\n"; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5165 | else |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5166 | OS << "]\n"; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 5167 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5168 | if (ShowColors) |
| 5169 | OS.resetColor(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5170 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5171 | // Print the label of this block. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5172 | if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5173 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5174 | OS << " "; |
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 | if (LabelStmt *L = dyn_cast<LabelStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5177 | OS << L->getName(); |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5178 | else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5179 | OS << "case "; |
Richard Trieu | ddd01ce | 2014-06-09 22:53:25 +0000 | [diff] [blame] | 5180 | if (C->getLHS()) |
| 5181 | C->getLHS()->printPretty(OS, &Helper, |
| 5182 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5183 | if (C->getRHS()) { |
| 5184 | OS << " ... "; |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5185 | C->getRHS()->printPretty(OS, &Helper, |
| 5186 | PrintingPolicy(Helper.getLangOpts())); |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5187 | } |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5188 | } else if (isa<DefaultStmt>(Label)) |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5189 | OS << "default"; |
Mike Stump | 92244b0 | 2010-01-19 22:00:14 +0000 | [diff] [blame] | 5190 | else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) { |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5191 | OS << "catch ("; |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 5192 | if (CS->getExceptionDecl()) |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5193 | CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()), |
Mike Stump | 0bdba6c | 2010-01-20 01:15:34 +0000 | [diff] [blame] | 5194 | 0); |
| 5195 | else |
| 5196 | OS << "..."; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5197 | OS << ")"; |
Nico Weber | 699670e | 2017-08-23 15:33:16 +0000 | [diff] [blame] | 5198 | } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) { |
| 5199 | OS << "__except ("; |
| 5200 | ES->getFilterExpr()->printPretty(OS, &Helper, |
| 5201 | PrintingPolicy(Helper.getLangOpts()), 0); |
| 5202 | OS << ")"; |
Mike Stump | bbf5ba6 | 2010-01-19 02:20:09 +0000 | [diff] [blame] | 5203 | } else |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 5204 | llvm_unreachable("Invalid label statement in CFGBlock."); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5205 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5206 | OS << ":\n"; |
| 5207 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5208 | |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5209 | // Iterate through the statements in the block and print them. |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5210 | unsigned j = 1; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5211 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5212 | for (CFGBlock::const_iterator I = B.begin(), E = B.end() ; |
| 5213 | I != E ; ++I, ++j ) { |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5214 | // Print the statement # in the basic block and the statement itself. |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5215 | if (print_edges) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5216 | OS << " "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5217 | |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5218 | OS << llvm::format("%3d", j) << ": "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5219 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5220 | Helper.setStmtID(j); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5221 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5222 | print_elem(OS, Helper, *I); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5223 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5224 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5225 | // Print the terminator of this block. |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5226 | if (B.getTerminator()) { |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5227 | if (ShowColors) |
| 5228 | OS.changeColor(raw_ostream::GREEN); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5229 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5230 | OS << " T: "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5231 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5232 | Helper.setBlockID(-1); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5233 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5234 | PrintingPolicy PP(Helper.getLangOpts()); |
| 5235 | CFGBlockTerminatorPrint TPrinter(OS, &Helper, PP); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5236 | TPrinter.print(B.getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5237 | OS << '\n'; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 5238 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5239 | if (ShowColors) |
| 5240 | OS.resetColor(); |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5241 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5242 | |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5243 | if (print_edges) { |
| 5244 | // Print the predecessors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5245 | if (!B.pred_empty()) { |
| 5246 | const raw_ostream::Colors Color = raw_ostream::BLUE; |
| 5247 | if (ShowColors) |
| 5248 | OS.changeColor(Color); |
| 5249 | OS << " Preds " ; |
| 5250 | if (ShowColors) |
| 5251 | OS.resetColor(); |
| 5252 | OS << '(' << B.pred_size() << "):"; |
| 5253 | unsigned i = 0; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5254 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5255 | if (ShowColors) |
| 5256 | OS.changeColor(Color); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 5257 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5258 | for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end(); |
| 5259 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 5260 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5261 | OS << "\n "; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5262 | |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 5263 | CFGBlock *B = *I; |
| 5264 | bool Reachable = true; |
| 5265 | if (!B) { |
| 5266 | Reachable = false; |
| 5267 | B = I->getPossiblyUnreachableBlock(); |
| 5268 | } |
| 5269 | |
| 5270 | OS << " B" << B->getBlockID(); |
| 5271 | if (!Reachable) |
| 5272 | OS << "(Unreachable)"; |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5273 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame^] | 5274 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5275 | if (ShowColors) |
| 5276 | OS.resetColor(); |
| 5277 | |
| 5278 | OS << '\n'; |
Ted Kremenek | 71eca01 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 5279 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5280 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5281 | // Print the successors of this block. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5282 | if (!B.succ_empty()) { |
| 5283 | const raw_ostream::Colors Color = raw_ostream::MAGENTA; |
| 5284 | if (ShowColors) |
| 5285 | OS.changeColor(Color); |
| 5286 | OS << " Succs "; |
| 5287 | if (ShowColors) |
| 5288 | OS.resetColor(); |
| 5289 | OS << '(' << B.succ_size() << "):"; |
| 5290 | unsigned i = 0; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5291 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5292 | if (ShowColors) |
| 5293 | OS.changeColor(Color); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5294 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5295 | for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end(); |
| 5296 | I != E; ++I, ++i) { |
Will Dietz | df9a2bb | 2013-01-07 09:51:17 +0000 | [diff] [blame] | 5297 | if (i % 10 == 8) |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5298 | OS << "\n "; |
| 5299 | |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 5300 | CFGBlock *B = *I; |
| 5301 | |
| 5302 | bool Reachable = true; |
| 5303 | if (!B) { |
| 5304 | Reachable = false; |
| 5305 | B = I->getPossiblyUnreachableBlock(); |
| 5306 | } |
| 5307 | |
| 5308 | if (B) { |
| 5309 | OS << " B" << B->getBlockID(); |
| 5310 | if (!Reachable) |
| 5311 | OS << "(Unreachable)"; |
| 5312 | } |
| 5313 | else { |
| 5314 | OS << " NULL"; |
| 5315 | } |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5316 | } |
Ted Kremenek | 9238c5c | 2014-02-27 21:56:44 +0000 | [diff] [blame] | 5317 | |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5318 | if (ShowColors) |
| 5319 | OS.resetColor(); |
| 5320 | OS << '\n'; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5321 | } |
Ted Kremenek | 4aa1e8b | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 5322 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5323 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5324 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5325 | /// dump - A simple pretty printer of a CFG that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5326 | void CFG::dump(const LangOptions &LO, bool ShowColors) const { |
| 5327 | print(llvm::errs(), LO, ShowColors); |
| 5328 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5329 | |
| 5330 | /// 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] | 5331 | void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5332 | StmtPrinterHelper Helper(this, LO); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5333 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5334 | // Print the entry block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5335 | print_block(OS, this, getEntry(), Helper, true, ShowColors); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5336 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5337 | // Iterate through the CFGBlocks and print them one by one. |
| 5338 | for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) { |
| 5339 | // Skip the entry block, because we already printed it. |
Ted Kremenek | 289ae4f | 2009-10-12 20:55:07 +0000 | [diff] [blame] | 5340 | if (&(**I) == &getEntry() || &(**I) == &getExit()) |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5341 | continue; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5342 | |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5343 | print_block(OS, this, **I, Helper, true, ShowColors); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5344 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5345 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5346 | // Print the exit block. |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5347 | print_block(OS, this, getExit(), Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5348 | OS << '\n'; |
Ted Kremenek | e03879b | 2008-11-24 20:50:24 +0000 | [diff] [blame] | 5349 | OS.flush(); |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5350 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5351 | |
| 5352 | /// dump - A simply pretty printer of a CFGBlock that outputs to stderr. |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5353 | void CFGBlock::dump(const CFG* cfg, const LangOptions &LO, |
| 5354 | bool ShowColors) const { |
| 5355 | print(llvm::errs(), cfg, LO, ShowColors); |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5356 | } |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5357 | |
Yaron Keren | cdae941 | 2016-01-29 19:38:18 +0000 | [diff] [blame] | 5358 | LLVM_DUMP_METHOD void CFGBlock::dump() const { |
Anna Zaks | a6fea13 | 2014-06-13 23:47:38 +0000 | [diff] [blame] | 5359 | dump(getParent(), LangOptions(), false); |
| 5360 | } |
| 5361 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5362 | /// print - A simple pretty printer of a CFGBlock that outputs to an ostream. |
| 5363 | /// Generally this will only be called from CFG::print. |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5364 | void CFGBlock::print(raw_ostream &OS, const CFG* cfg, |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5365 | const LangOptions &LO, bool ShowColors) const { |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5366 | StmtPrinterHelper Helper(cfg, LO); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5367 | print_block(OS, cfg, *this, Helper, true, ShowColors); |
Ted Kremenek | 72be32a | 2011-12-22 23:33:52 +0000 | [diff] [blame] | 5368 | OS << '\n'; |
Ted Kremenek | 889073f | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 5369 | } |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5370 | |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5371 | /// printTerminator - A simple pretty printer of the terminator of a CFGBlock. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5372 | void CFGBlock::printTerminator(raw_ostream &OS, |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5373 | const LangOptions &LO) const { |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5374 | CFGBlockTerminatorPrint TPrinter(OS, nullptr, PrintingPolicy(LO)); |
Ted Kremenek | fcc1417 | 2014-03-08 02:22:29 +0000 | [diff] [blame] | 5375 | TPrinter.print(getTerminator()); |
Ted Kremenek | 1564763 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 5376 | } |
| 5377 | |
Ted Kremenek | ec3bbf4 | 2014-03-29 00:35:20 +0000 | [diff] [blame] | 5378 | Stmt *CFGBlock::getTerminatorCondition(bool StripParens) { |
Marcin Swiderski | a7d84a7 | 2010-10-29 05:21:47 +0000 | [diff] [blame] | 5379 | Stmt *Terminator = this->Terminator; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5380 | if (!Terminator) |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5381 | return nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5382 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5383 | Expr *E = nullptr; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5384 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5385 | switch (Terminator->getStmtClass()) { |
| 5386 | default: |
| 5387 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5388 | |
Jordan Rose | cf10ea8 | 2013-06-06 21:53:45 +0000 | [diff] [blame] | 5389 | case Stmt::CXXForRangeStmtClass: |
| 5390 | E = cast<CXXForRangeStmt>(Terminator)->getCond(); |
| 5391 | break; |
| 5392 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5393 | case Stmt::ForStmtClass: |
| 5394 | E = cast<ForStmt>(Terminator)->getCond(); |
| 5395 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5396 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5397 | case Stmt::WhileStmtClass: |
| 5398 | E = cast<WhileStmt>(Terminator)->getCond(); |
| 5399 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5400 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5401 | case Stmt::DoStmtClass: |
| 5402 | E = cast<DoStmt>(Terminator)->getCond(); |
| 5403 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5404 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5405 | case Stmt::IfStmtClass: |
| 5406 | E = cast<IfStmt>(Terminator)->getCond(); |
| 5407 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5408 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5409 | case Stmt::ChooseExprClass: |
| 5410 | E = cast<ChooseExpr>(Terminator)->getCond(); |
| 5411 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5412 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5413 | case Stmt::IndirectGotoStmtClass: |
| 5414 | E = cast<IndirectGotoStmt>(Terminator)->getTarget(); |
| 5415 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5416 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5417 | case Stmt::SwitchStmtClass: |
| 5418 | E = cast<SwitchStmt>(Terminator)->getCond(); |
| 5419 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5420 | |
John McCall | c07a0c7 | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 5421 | case Stmt::BinaryConditionalOperatorClass: |
| 5422 | E = cast<BinaryConditionalOperator>(Terminator)->getCond(); |
| 5423 | break; |
| 5424 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5425 | case Stmt::ConditionalOperatorClass: |
| 5426 | E = cast<ConditionalOperator>(Terminator)->getCond(); |
| 5427 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5428 | |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5429 | case Stmt::BinaryOperatorClass: // '&&' and '||' |
| 5430 | E = cast<BinaryOperator>(Terminator)->getLHS(); |
Ted Kremenek | 6d8b46e | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 5431 | break; |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5432 | |
Ted Kremenek | 6d8b46e | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 5433 | case Stmt::ObjCForCollectionStmtClass: |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5434 | return Terminator; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5435 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5436 | |
Ted Kremenek | ec3bbf4 | 2014-03-29 00:35:20 +0000 | [diff] [blame] | 5437 | if (!StripParens) |
| 5438 | return E; |
| 5439 | |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5440 | return E ? E->IgnoreParens() : nullptr; |
Ted Kremenek | c1f9a28 | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 5441 | } |
| 5442 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5443 | //===----------------------------------------------------------------------===// |
| 5444 | // CFG Graphviz Visualization |
| 5445 | //===----------------------------------------------------------------------===// |
| 5446 | |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5447 | #ifndef NDEBUG |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5448 | static StmtPrinterHelper* GraphHelper; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5449 | #endif |
| 5450 | |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5451 | void CFG::viewCFG(const LangOptions &LO) const { |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5452 | #ifndef NDEBUG |
Chris Lattner | c61089a | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 5453 | StmtPrinterHelper H(this, LO); |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5454 | GraphHelper = &H; |
| 5455 | llvm::ViewGraph(this,"CFG"); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 5456 | GraphHelper = nullptr; |
Ted Kremenek | 04f3cee | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 5457 | #endif |
| 5458 | } |
| 5459 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5460 | namespace llvm { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5461 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5462 | template<> |
| 5463 | struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits { |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5464 | DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {} |
Tobias Grosser | 9fc223a | 2009-11-30 14:16:05 +0000 | [diff] [blame] | 5465 | |
Ted Kremenek | 5ef32db | 2011-08-12 23:37:29 +0000 | [diff] [blame] | 5466 | static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) { |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5467 | #ifndef NDEBUG |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5468 | std::string OutSStr; |
| 5469 | llvm::raw_string_ostream Out(OutSStr); |
Aaron Ballman | ff924b0 | 2013-11-18 20:11:50 +0000 | [diff] [blame] | 5470 | print_block(Out,Graph, *Node, *GraphHelper, false, false); |
Ted Kremenek | 2d470fc | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 5471 | std::string& OutStr = Out.str(); |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5472 | |
| 5473 | if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); |
| 5474 | |
| 5475 | // Process string output to make it nicer... |
| 5476 | for (unsigned i = 0; i != OutStr.length(); ++i) |
| 5477 | if (OutStr[i] == '\n') { // Left justify |
| 5478 | OutStr[i] = '\\'; |
| 5479 | OutStr.insert(OutStr.begin()+i+1, 'l'); |
| 5480 | } |
Mike Stump | 31feda5 | 2009-07-17 01:31:16 +0000 | [diff] [blame] | 5481 | |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5482 | return OutStr; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5483 | #else |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5484 | return {}; |
Hartmut Kaiser | 04bd2ef | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 5485 | #endif |
Ted Kremenek | 4e5f99d | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 5486 | } |
| 5487 | }; |
Eugene Zelenko | 38c7052 | 2017-12-07 21:55:09 +0000 | [diff] [blame] | 5488 | |
| 5489 | } // namespace llvm |