blob: 77eb1d37a4067253868b9a1085c3d2acc130bed2 [file] [log] [blame]
Eugene Zelenko38c70522017-12-07 21:55:09 +00001//===- CFG.cpp - Classes for representing and building CFGs ---------------===//
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00007//
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 Kremenek6796fbd2009-07-16 18:13:04 +000015#include "clang/Analysis/CFG.h"
Benjamin Kramer1ea8e092012-07-04 17:04:04 +000016#include "clang/AST/ASTContext.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000017#include "clang/AST/Attr.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000018#include "clang/AST/Decl.h"
19#include "clang/AST/DeclBase.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000020#include "clang/AST/DeclCXX.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000021#include "clang/AST/DeclGroup.h"
22#include "clang/AST/Expr.h"
23#include "clang/AST/ExprCXX.h"
24#include "clang/AST/OperationKinds.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000025#include "clang/AST/PrettyPrinter.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000026#include "clang/AST/Stmt.h"
27#include "clang/AST/StmtCXX.h"
28#include "clang/AST/StmtObjC.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000029#include "clang/AST/StmtVisitor.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000030#include "clang/AST/Type.h"
31#include "clang/Analysis/Support/BumpVector.h"
Artem Dergachev40684812018-02-27 20:03:35 +000032#include "clang/Analysis/ConstructionContext.h"
Jordan Rose5374c072013-08-19 16:27:28 +000033#include "clang/Basic/Builtins.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000034#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 Kramerea70eb32012-12-01 15:09:41 +000042#include "llvm/ADT/DenseMap.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000043#include "llvm/ADT/Optional.h"
44#include "llvm/ADT/STLExtras.h"
45#include "llvm/ADT/SetVector.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000046#include "llvm/ADT/SmallPtrSet.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000047#include "llvm/ADT/SmallVector.h"
Benjamin Kramer89b422c2009-08-23 12:08:50 +000048#include "llvm/Support/Allocator.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000049#include "llvm/Support/Casting.h"
50#include "llvm/Support/Compiler.h"
51#include "llvm/Support/DOTGraphTraits.h"
52#include "llvm/Support/ErrorHandling.h"
Benjamin Kramer89b422c2009-08-23 12:08:50 +000053#include "llvm/Support/Format.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000054#include "llvm/Support/GraphWriter.h"
55#include "llvm/Support/SaveAndRestore.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000056#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 Kremeneke5ccf9a2008-01-11 00:40:29 +000063
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000064using namespace clang;
65
Ted Kremenek5ef32db2011-08-12 23:37:29 +000066static SourceLocation GetEndLoc(Decl *D) {
67 if (VarDecl *VD = dyn_cast<VarDecl>(D))
68 if (Expr *Ex = VD->getInit())
Ted Kremenek8889bb32008-08-06 23:20:50 +000069 return Ex->getSourceRange().getEnd();
Mike Stump31feda52009-07-17 01:31:16 +000070 return D->getLocation();
Ted Kremenek8889bb32008-08-06 23:20:50 +000071}
Ted Kremenekdc03bd02010-08-02 23:46:59 +000072
George Burgess IVced56e62015-10-01 18:47:52 +000073/// Helper for tryNormalizeBinaryOperator. Attempts to extract an IntegerLiteral
74/// or EnumConstantDecl from the given Expr. If it fails, returns nullptr.
Eugene Zelenko38c70522017-12-07 21:55:09 +000075static const Expr *tryTransformToIntOrEnumConstant(const Expr *E) {
George Burgess IVced56e62015-10-01 18:47:52 +000076 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.
89static std::tuple<const DeclRefExpr *, BinaryOperatorKind, const Expr *>
90tryNormalizeBinaryOperator(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)
121static 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 Zelenko38c70522017-12-07 21:55:09 +0000145namespace {
146
Ted Kremenek7c58d352011-03-10 01:14:11 +0000147class CFGBuilder;
148
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000149/// 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 Kremenek4cad5fc2009-12-16 03:18:58 +0000161class AddStmtChoice {
162public:
Ted Kremenek8219b822010-12-16 07:46:53 +0000163 enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 };
Ted Kremenek5d2bb1b2010-03-02 21:43:54 +0000164
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000165 AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {}
Ted Kremenek5d2bb1b2010-03-02 21:43:54 +0000166
Ted Kremenek7c58d352011-03-10 01:14:11 +0000167 bool alwaysAdd(CFGBuilder &builder,
168 const Stmt *stmt) const;
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000169
170 /// Return a copy of this object, except with the 'always-add' bit
171 /// set as specified.
172 AddStmtChoice withAlwaysAdd(bool alwaysAdd) const {
Ted Kremenek7c58d352011-03-10 01:14:11 +0000173 return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd);
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000174 }
175
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000176private:
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000177 Kind kind;
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000178};
Mike Stump31feda52009-07-17 01:31:16 +0000179
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000180/// 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 Swiderskie9862ce2010-09-30 22:42:32 +0000190/// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000191/// 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///
201class LocalScope {
202public:
Eugene Zelenko38c70522017-12-07 21:55:09 +0000203 friend class const_iterator;
204
205 using AutomaticVarsTy = BumpVector<VarDecl *>;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000206
207 /// const_iterator - Iterates local scope backwards and jumps to previous
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000208 /// scope on reaching the beginning of currently iterated scope.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000209 class const_iterator {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000210 const LocalScope* Scope = nullptr;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000211
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 Zelenko38c70522017-12-07 21:55:09 +0000214 unsigned VarIter = 0;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000215
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 Zelenko38c70522017-12-07 21:55:09 +0000220 const_iterator() = default;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000221
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 Kremenek5ef32db2011-08-12 23:37:29 +0000232 VarDecl *const* operator->() const {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000233 assert(Scope && "Dereferencing invalid iterator is not allowed");
234 assert(VarIter != 0 && "Iterator has invalid value of VarIter member");
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000235 return &Scope->Vars[VarIter - 1];
236 }
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000237
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 Kremenek5ef32db2011-08-12 23:37:29 +0000244 VarDecl *operator*() const {
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000245 return *this->operator->();
246 }
247
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000248 const_iterator &operator++() {
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000249 if (!Scope)
250 return *this;
251
Eugene Zelenko38c70522017-12-07 21:55:09 +0000252 assert(VarIter != 0 && "Iterator has invalid value of VarIter member");
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000253 --VarIter;
254 if (VarIter == 0)
255 *this = Scope->Prev;
256 return *this;
257 }
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000258 const_iterator operator++(int) {
259 const_iterator P = *this;
260 ++*this;
261 return P;
262 }
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000263
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000264 bool operator==(const const_iterator &rhs) const {
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000265 return Scope == rhs.Scope && VarIter == rhs.VarIter;
266 }
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000267 bool operator!=(const const_iterator &rhs) const {
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000268 return !(*this == rhs);
269 }
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000270
Aaron Ballman67347662015-02-15 22:00:28 +0000271 explicit operator bool() const {
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000272 return *this != const_iterator();
273 }
274
275 int distance(const_iterator L);
Matthias Gehre351c2182017-07-12 07:04:19 +0000276 const_iterator shared_parent(const_iterator L);
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000277 bool pointsToFirstDeclaredVar() { return VarIter == 1; }
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000278 };
279
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000280private:
Ted Kremenekc7bfdcd2011-02-15 02:47:45 +0000281 BumpVectorContext ctx;
282
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000283 /// Automatic variables in order of declaration.
284 AutomaticVarsTy Vars;
Eugene Zelenko38c70522017-12-07 21:55:09 +0000285
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000286 /// Iterator to variable in previous scope that was declared just before
287 /// begin of this scope.
288 const_iterator Prev;
289
290public:
291 /// Constructs empty scope linked to previous scope in specified place.
David Blaikiec1334cc2015-08-13 22:12:21 +0000292 LocalScope(BumpVectorContext ctx, const_iterator P)
293 : ctx(std::move(ctx)), Vars(this->ctx, 4), Prev(P) {}
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000294
295 /// Begin of scope in direction of CFG building (backwards).
296 const_iterator begin() const { return const_iterator(*this, Vars.size()); }
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000297
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000298 void addVar(VarDecl *VD) {
Ted Kremenekc7bfdcd2011-02-15 02:47:45 +0000299 Vars.push_back(VD, ctx);
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000300 }
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000301};
302
Eugene Zelenko38c70522017-12-07 21:55:09 +0000303} // namespace
304
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000305/// 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.
308int LocalScope::const_iterator::distance(LocalScope::const_iterator L) {
309 int D = 0;
310 const_iterator F = *this;
311 while (F.Scope != L.Scope) {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000312 assert(F != const_iterator() &&
313 "L iterator is not reachable from F iterator.");
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000314 D += F.VarIter;
315 F = F.Scope->Prev;
316 }
317 D += F.VarIter - L.VarIter;
318 return D;
319}
320
Matthias Gehre351c2182017-07-12 07:04:19 +0000321/// 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.
325LocalScope::const_iterator
326LocalScope::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 Zelenko38c70522017-12-07 21:55:09 +0000345namespace {
346
Jonathan Roelofs99bdd982015-05-19 18:51:56 +0000347/// 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 Swiderski8b99b8a2010-09-25 11:05:21 +0000350struct BlockScopePosPair {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000351 CFGBlock *block = nullptr;
352 LocalScope::const_iterator scopePosition;
353
354 BlockScopePosPair() = default;
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000355 BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos)
Ted Kremenekef81e9e2011-01-07 19:37:16 +0000356 : block(b), scopePosition(scopePos) {}
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000357};
358
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000359/// 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.
363class TryResult {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000364 int X = -1;
365
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000366public:
Eugene Zelenko38c70522017-12-07 21:55:09 +0000367 TryResult() = default;
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000368 TryResult(bool b) : X(b ? 1 : 0) {}
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000369
370 bool isTrue() const { return X == 1; }
371 bool isFalse() const { return X == 0; }
372 bool isKnown() const { return X >= 0; }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000373
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000374 void negate() {
375 assert(isKnown());
376 X ^= 0x1;
377 }
378};
379
Eugene Zelenko38c70522017-12-07 21:55:09 +0000380} // namespace
381
382static TryResult bothKnownTrue(TryResult R1, TryResult R2) {
Manuel Klimekdeb02622014-08-08 07:37:13 +0000383 if (!R1.isKnown() || !R2.isKnown())
384 return TryResult();
385 return TryResult(R1.isTrue() && R2.isTrue());
386}
387
Eugene Zelenko38c70522017-12-07 21:55:09 +0000388namespace {
389
Ted Kremenek8ae67872013-02-05 22:00:19 +0000390class reverse_children {
391 llvm::SmallVector<Stmt *, 12> childrenBuf;
Eugene Zelenko38c70522017-12-07 21:55:09 +0000392 ArrayRef<Stmt *> children;
393
Ted Kremenek8ae67872013-02-05 22:00:19 +0000394public:
395 reverse_children(Stmt *S);
396
Eugene Zelenko38c70522017-12-07 21:55:09 +0000397 using iterator = ArrayRef<Stmt *>::reverse_iterator;
398
Ted Kremenek8ae67872013-02-05 22:00:19 +0000399 iterator begin() const { return children.rbegin(); }
400 iterator end() const { return children.rend(); }
401};
402
Eugene Zelenko38c70522017-12-07 21:55:09 +0000403} // namespace
Ted Kremenek8ae67872013-02-05 22:00:19 +0000404
405reverse_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 Kremenek7d86b9c2013-02-05 22:03:14 +0000411 // Note: Fill in this switch with more cases we want to optimize.
Ted Kremenek8ae67872013-02-05 22:00:19 +0000412 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 Kramer642f1732015-07-02 21:03:14 +0000423 for (Stmt *SubStmt : S->children())
424 childrenBuf.push_back(SubStmt);
Ted Kremenek8ae67872013-02-05 22:00:19 +0000425
426 // This needs to be done *after* childrenBuf has been populated.
427 children = childrenBuf;
428}
429
Eugene Zelenko38c70522017-12-07 21:55:09 +0000430namespace {
431
Ted Kremenekbe9b33b2008-08-04 22:51:42 +0000432/// CFGBuilder - This class implements CFG construction from an AST.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +0000433/// 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 Roelofsab046c52015-07-27 16:05:36 +0000439/// std::unique_ptr<CFG> cfg = builder.buildCFG(decl, stmt1);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +0000440///
Mike Stump31feda52009-07-17 01:31:16 +0000441/// 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 Rajaratnam65c65662009-11-28 06:07:30 +0000445class CFGBuilder {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000446 using JumpTarget = BlockScopePosPair;
447 using JumpSource = BlockScopePosPair;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000448
Mike Stump0d76d072009-07-20 23:24:15 +0000449 ASTContext *Context;
Ahmed Charlesb8984322014-03-07 20:03:18 +0000450 std::unique_ptr<CFG> cfg;
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000451
Eugene Zelenko38c70522017-12-07 21:55:09 +0000452 // Current block.
453 CFGBlock *Block = nullptr;
454
455 // Block after the current block.
456 CFGBlock *Succ = nullptr;
457
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000458 JumpTarget ContinueJumpTarget;
459 JumpTarget BreakJumpTarget;
Nico Weber699670e2017-08-23 15:33:16 +0000460 JumpTarget SEHLeaveJumpTarget;
Eugene Zelenko38c70522017-12-07 21:55:09 +0000461 CFGBlock *SwitchTerminatedBlock = nullptr;
462 CFGBlock *DefaultCaseBlock = nullptr;
Nico Weber699670e2017-08-23 15:33:16 +0000463
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 Zelenko38c70522017-12-07 21:55:09 +0000466 CFGBlock *TryTerminatedBlock = nullptr;
Manuel Klimekb5616c92014-08-07 10:42:17 +0000467
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000468 // Current position in local scope.
469 LocalScope::const_iterator ScopePos;
470
471 // LabelMap records the mapping from Label expressions to their jump targets.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000472 using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>;
Ted Kremenek8a632182007-08-21 23:26:17 +0000473 LabelMapTy LabelMap;
Mike Stump31feda52009-07-17 01:31:16 +0000474
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 Zelenko38c70522017-12-07 21:55:09 +0000477 using BackpatchBlocksTy = std::vector<JumpSource>;
Ted Kremenek8a632182007-08-21 23:26:17 +0000478 BackpatchBlocksTy BackpatchBlocks;
Mike Stump31feda52009-07-17 01:31:16 +0000479
Ted Kremenekeda180e22007-08-28 19:26:49 +0000480 // A list of labels whose address has been taken (for indirect gotos).
Eugene Zelenko38c70522017-12-07 21:55:09 +0000481 using LabelSetTy = llvm::SmallSetVector<LabelDecl *, 8>;
Ted Kremenekeda180e22007-08-28 19:26:49 +0000482 LabelSetTy AddressTakenLabels;
Mike Stump31feda52009-07-17 01:31:16 +0000483
Artem Dergachev41ffb302018-02-08 22:58:15 +0000484 // Information about the currently visited C++ object construction site.
485 // This is set in the construction trigger and read when the constructor
Artem Dergachev1527dec2018-03-12 23:12:40 +0000486 // or a function that returns an object by value is being visited.
487 llvm::DenseMap<Expr *, const ConstructionContextLayer *>
Artem Dergachev5e2f6ba2018-02-23 22:49:25 +0000488 ConstructionContextMap;
Artem Dergachev41ffb302018-02-08 22:58:15 +0000489
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000490 using DeclsWithEndedScopeSetTy = llvm::SmallSetVector<VarDecl *, 16>;
491 DeclsWithEndedScopeSetTy DeclsWithEndedScope;
492
Eugene Zelenko38c70522017-12-07 21:55:09 +0000493 bool badCFG = false;
Ted Kremenekf9d82902011-03-10 01:14:05 +0000494 const CFG::BuildOptions &BuildOpts;
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000495
496 // State to track for building switch statements.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000497 bool switchExclusivelyCovered = false;
498 Expr::EvalResult *switchCond = nullptr;
Ted Kremeneka099c592011-03-10 03:50:34 +0000499
Eugene Zelenko38c70522017-12-07 21:55:09 +0000500 CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry = nullptr;
501 const Stmt *lastLookup = nullptr;
Zhongxing Xud38fb842010-09-16 03:28:18 +0000502
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +0000503 // Caches boolean evaluations of expressions to avoid multiple re-evaluations
504 // during construction of branches for chained logical operators.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000505 using CachedBoolEvalsTy = llvm::DenseMap<Expr *, TryResult>;
NAKAMURA Takumie9ca55e2012-03-25 06:30:37 +0000506 CachedBoolEvalsTy CachedBoolEvals;
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +0000507
Mike Stump31feda52009-07-17 01:31:16 +0000508public:
Ted Kremenekf9d82902011-03-10 01:14:05 +0000509 explicit CFGBuilder(ASTContext *astContext,
Nico Weber699670e2017-08-23 15:33:16 +0000510 const CFG::BuildOptions &buildOpts)
511 : Context(astContext), cfg(new CFG()), // crew a new CFG
Artem Dergachev5e2f6ba2018-02-23 22:49:25 +0000512 ConstructionContextMap(), BuildOpts(buildOpts) {}
513
Mike Stump31feda52009-07-17 01:31:16 +0000514
Ted Kremenek9aae5132007-08-23 21:42:29 +0000515 // buildCFG - Used by external clients to construct the CFG.
David Blaikiee90195c2014-08-29 18:53:26 +0000516 std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement);
Mike Stump31feda52009-07-17 01:31:16 +0000517
Ted Kremeneka099c592011-03-10 03:50:34 +0000518 bool alwaysAdd(const Stmt *stmt);
519
Ted Kremenek93668002009-07-17 22:18:43 +0000520private:
521 // Visitors to walk an AST and construct the CFG.
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000522 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc);
523 CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000524 CFGBlock *VisitBreakStmt(BreakStmt *B);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000525 CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000526 CFGBlock *VisitCaseStmt(CaseStmt *C);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000527 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
Ted Kremenek21822592009-07-17 18:20:32 +0000528 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
John McCallc07a0c72011-02-17 10:25:35 +0000529 CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C,
530 AddStmtChoice asc);
Ted Kremenek21822592009-07-17 18:20:32 +0000531 CFGBlock *VisitContinueStmt(ContinueStmt *C);
Ted Kremenek6f400242012-07-14 05:04:01 +0000532 CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E,
533 AddStmtChoice asc);
534 CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S);
535 CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc);
Jordan Rosec9176072014-01-13 17:59:19 +0000536 CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc);
Jordan Rosed2f40792013-09-03 17:00:57 +0000537 CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc);
Ted Kremenek6f400242012-07-14 05:04:01 +0000538 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 Kremenek93668002009-07-17 22:18:43 +0000545 CFGBlock *VisitDeclStmt(DeclStmt *DS);
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000546 CFGBlock *VisitDeclSubExpr(DeclStmt *DS);
Ted Kremenek21822592009-07-17 18:20:32 +0000547 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
548 CFGBlock *VisitDoStmt(DoStmt *D);
Ted Kremenek6f400242012-07-14 05:04:01 +0000549 CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc);
Ted Kremenek21822592009-07-17 18:20:32 +0000550 CFGBlock *VisitForStmt(ForStmt *F);
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000551 CFGBlock *VisitGotoStmt(GotoStmt *G);
Ted Kremenek93668002009-07-17 22:18:43 +0000552 CFGBlock *VisitIfStmt(IfStmt *I);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +0000553 CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000554 CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
555 CFGBlock *VisitLabelStmt(LabelStmt *L);
Devin Coughlinb6029b72015-11-25 22:35:37 +0000556 CFGBlock *VisitBlockExpr(BlockExpr *E, AddStmtChoice asc);
Ted Kremenek6f400242012-07-14 05:04:01 +0000557 CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc);
Ted Kremeneka16436f2012-07-14 05:04:06 +0000558 CFGBlock *VisitLogicalOperator(BinaryOperator *B);
Ted Kremenekb50e7162012-07-14 05:04:10 +0000559 std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B,
560 Stmt *Term,
561 CFGBlock *TrueBlock,
562 CFGBlock *FalseBlock);
Artem Dergachevf43ac4c2018-02-24 02:00:30 +0000563 CFGBlock *VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE,
564 AddStmtChoice asc);
Ted Kremenek5868ec62010-04-11 17:02:10 +0000565 CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000566 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
567 CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
568 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
569 CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
Ted Kremenek6f400242012-07-14 05:04:01 +0000570 CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S);
Ted Kremenek93668002009-07-17 22:18:43 +0000571 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
John McCallfe96e0b2011-11-06 09:01:30 +0000572 CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E);
Ted Kremenek6f400242012-07-14 05:04:01 +0000573 CFGBlock *VisitReturnStmt(ReturnStmt *R);
Nico Weber699670e2017-08-23 15:33:16 +0000574 CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S);
575 CFGBlock *VisitSEHFinallyStmt(SEHFinallyStmt *S);
576 CFGBlock *VisitSEHLeaveStmt(SEHLeaveStmt *S);
577 CFGBlock *VisitSEHTryStmt(SEHTryStmt *S);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000578 CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000579 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
Ted Kremenek6f400242012-07-14 05:04:01 +0000580 CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
581 AddStmtChoice asc);
Zhanyong Wan6dace612010-11-22 08:45:56 +0000582 CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000583 CFGBlock *VisitWhileStmt(WhileStmt *W);
Mike Stump48871a22009-07-17 01:04:31 +0000584
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000585 CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd);
586 CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc);
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000587 CFGBlock *VisitChildren(Stmt *S);
Ted Kremeneke2499842012-04-12 20:03:44 +0000588 CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc);
Mike Stump48871a22009-07-17 01:04:31 +0000589
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000590 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 Klimekb5616c92014-08-07 10:42:17 +0000596 /// 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 Zelenko38c70522017-12-07 21:55:09 +0000625 TempDtorContext() = default;
Manuel Klimekdeb02622014-08-08 07:37:13 +0000626 TempDtorContext(TryResult KnownExecuted)
Eugene Zelenko38c70522017-12-07 21:55:09 +0000627 : IsConditional(true), KnownExecuted(KnownExecuted) {}
Manuel Klimekb5616c92014-08-07 10:42:17 +0000628
629 /// Returns whether we need to start a new branch for a temporary destructor
Eric Christopher2c4555a2015-06-19 01:52:53 +0000630 /// call. This is the case when the temporary destructor is
Manuel Klimekb5616c92014-08-07 10:42:17 +0000631 /// 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 Zelenko38c70522017-12-07 21:55:09 +0000646 const bool IsConditional = false;
647 const TryResult KnownExecuted = true;
648 CFGBlock *Succ = nullptr;
649 CXXBindTemporaryExpr *TerminatorExpr = nullptr;
Manuel Klimekb5616c92014-08-07 10:42:17 +0000650 };
651
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +0000652 // Visitors to walk an AST and generate destructors of temporaries in
653 // full expression.
Manuel Klimekb5616c92014-08-07 10:42:17 +0000654 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 Swiderski3ab17ad2010-11-03 06:19:35 +0000666
Ted Kremenek6065ef62008-04-28 18:00:46 +0000667 // NYS == Not Yet Supported
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000668 CFGBlock *NYS() {
Ted Kremenekb64d1832008-03-13 03:04:22 +0000669 badCFG = true;
670 return Block;
671 }
Mike Stump31feda52009-07-17 01:31:16 +0000672
Artem Dergachev40684812018-02-27 20:03:35 +0000673 // 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 Dergachev1527dec2018-03-12 23:12:40 +0000676 Expr *E);
Artem Dergachevc1b07bd2018-02-23 23:38:41 +0000677
Artem Dergachev40684812018-02-27 20:03:35 +0000678 // 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 Dergachev783a4572018-02-23 22:20:39 +0000684 Stmt *Child);
Artem Dergachev40684812018-02-27 20:03:35 +0000685
Artem Dergachev41ffb302018-02-08 22:58:15 +0000686 // Unset the construction context after consuming it. This is done immediately
Artem Dergachev1527dec2018-03-12 23:12:40 +0000687 // 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 Dergachev41ffb302018-02-08 22:58:15 +0000690
Ted Kremenek93668002009-07-17 22:18:43 +0000691 void autoCreateBlock() { if (!Block) Block = createBlock(); }
692 CFGBlock *createBlock(bool add_successor = true);
Chandler Carrutha70991b2011-09-13 09:13:49 +0000693 CFGBlock *createNoReturnBlock();
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000694
Zhongxing Xuea9fcff2010-06-03 06:43:23 +0000695 CFGBlock *addStmt(Stmt *S) {
696 return Visit(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000697 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000698
Alexis Hunt1d792652011-01-08 20:30:50 +0000699 CFGBlock *addInitializer(CXXCtorInitializer *I);
Peter Szecsi999a25f2017-08-19 11:19:16 +0000700 void addLoopExit(const Stmt *LoopStmt);
Zhongxing Xu6d372f72010-10-01 03:22:39 +0000701 void addAutomaticObjDtors(LocalScope::const_iterator B,
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000702 LocalScope::const_iterator E, Stmt *S);
Matthias Gehre351c2182017-07-12 07:04:19 +0000703 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 Swiderski20b88732010-10-05 05:37:00 +0000707 void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD);
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000708 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 Kremenekdc03bd02010-08-02 23:46:59 +0000713
Marcin Swiderski5e415732010-09-30 23:05:00 +0000714 // Local scopes creation.
715 LocalScope* createOrReuseLocalScope(LocalScope* Scope);
716
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000717 void addLocalScopeForStmt(Stmt *S);
Craig Topper25542942014-05-20 04:30:07 +0000718 LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS,
719 LocalScope* Scope = nullptr);
720 LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = nullptr);
Marcin Swiderski5e415732010-09-30 23:05:00 +0000721
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000722 void addLocalScopeAndDtors(Stmt *S);
Marcin Swiderski5e415732010-09-30 23:05:00 +0000723
724 // Interface to CFGBlock - adding CFGElements.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000725
Ted Kremenek37881932011-04-04 23:29:12 +0000726 void appendStmt(CFGBlock *B, const Stmt *S) {
Ted Kremenek8b46c002011-07-19 14:18:43 +0000727 if (alwaysAdd(S) && cachedEntry)
Ted Kremeneka099c592011-03-10 03:50:34 +0000728 cachedEntry->second = B;
Ted Kremeneka099c592011-03-10 03:50:34 +0000729
Jordy Rose17347372011-06-10 08:49:37 +0000730 // All block-level expressions should have already been IgnoreParens()ed.
731 assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S);
Ted Kremenek37881932011-04-04 23:29:12 +0000732 B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext());
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000733 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000734
Artem Dergachev41ffb302018-02-08 22:58:15 +0000735 void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) {
736 if (BuildOpts.AddRichCXXConstructors) {
Artem Dergachev40684812018-02-27 20:03:35 +0000737 if (const ConstructionContextLayer *Layer =
738 ConstructionContextMap.lookup(CE)) {
739 const ConstructionContext *CC =
740 ConstructionContext::createFromLayers(cfg->getBumpVectorContext(),
741 Layer);
Artem Dergachev783a4572018-02-23 22:20:39 +0000742 B->appendConstructor(CE, CC, cfg->getBumpVectorContext());
743 cleanupConstructionContext(CE);
Artem Dergachev41ffb302018-02-08 22:58:15 +0000744 return;
745 }
746 }
747
748 // No valid construction context found. Fall back to statement.
749 B->appendStmt(CE, cfg->getBumpVectorContext());
750 }
751
Artem Dergachev1527dec2018-03-12 23:12:40 +0000752 void appendCall(CFGBlock *B, CallExpr *CE) {
Richard Trieuf4a0e9a2018-03-15 00:09:26 +0000753 if (alwaysAdd(CE) && cachedEntry)
754 cachedEntry->second = B;
755
Artem Dergachev1527dec2018-03-12 23:12:40 +0000756 if (BuildOpts.AddRichCXXConstructors) {
Artem Dergachev54ed6422018-03-12 23:52:36 +0000757 if (CFGCXXRecordTypedCall::isCXXRecordTypedCall(CE, *Context)) {
Artem Dergachev1527dec2018-03-12 23:12:40 +0000758 if (const ConstructionContextLayer *Layer =
759 ConstructionContextMap.lookup(CE)) {
760 const ConstructionContext *CC =
761 ConstructionContext::createFromLayers(cfg->getBumpVectorContext(),
762 Layer);
Artem Dergachev317291e2018-03-22 21:37:39 +0000763 B->appendCXXRecordTypedCall(CE, CC, cfg->getBumpVectorContext());
Artem Dergachev1527dec2018-03-12 23:12:40 +0000764 cleanupConstructionContext(CE);
765 return;
766 }
767 }
768 }
769
770 // No valid construction context found. Fall back to statement.
771 B->appendStmt(CE, cfg->getBumpVectorContext());
772 }
773
Alexis Hunt1d792652011-01-08 20:30:50 +0000774 void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) {
Marcin Swiderski87b1bb62010-10-04 03:38:22 +0000775 B->appendInitializer(I, cfg->getBumpVectorContext());
776 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000777
Jordan Rosec9176072014-01-13 17:59:19 +0000778 void appendNewAllocator(CFGBlock *B, CXXNewExpr *NE) {
779 B->appendNewAllocator(NE, cfg->getBumpVectorContext());
780 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000781
Marcin Swiderski20b88732010-10-05 05:37:00 +0000782 void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) {
783 B->appendBaseDtor(BS, cfg->getBumpVectorContext());
784 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000785
Marcin Swiderski20b88732010-10-05 05:37:00 +0000786 void appendMemberDtor(CFGBlock *B, FieldDecl *FD) {
787 B->appendMemberDtor(FD, cfg->getBumpVectorContext());
788 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000789
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +0000790 void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) {
791 B->appendTemporaryDtor(E, cfg->getBumpVectorContext());
792 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000793
Chandler Carruthad747252011-09-13 06:09:01 +0000794 void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) {
795 B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext());
796 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000797
Matthias Gehre351c2182017-07-12 07:04:19 +0000798 void appendLifetimeEnds(CFGBlock *B, VarDecl *VD, Stmt *S) {
799 B->appendLifetimeEnds(VD, S, cfg->getBumpVectorContext());
800 }
801
Peter Szecsi999a25f2017-08-19 11:19:16 +0000802 void appendLoopExit(CFGBlock *B, const Stmt *LoopStmt) {
803 B->appendLoopExit(LoopStmt, cfg->getBumpVectorContext());
804 }
805
Jordan Rosed2f40792013-09-03 17:00:57 +0000806 void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) {
807 B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext());
808 }
809
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000810 void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
Marcin Swiderski321a7072010-09-30 22:54:37 +0000811 LocalScope::const_iterator B, LocalScope::const_iterator E);
812
Matthias Gehre351c2182017-07-12 07:04:19 +0000813 void prependAutomaticObjLifetimeWithTerminator(CFGBlock *Blk,
814 LocalScope::const_iterator B,
815 LocalScope::const_iterator E);
816
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000817 const VarDecl *
818 prependAutomaticObjScopeEndWithTerminator(CFGBlock *Blk,
819 LocalScope::const_iterator B,
820 LocalScope::const_iterator E);
821
Ted Kremenek4b6fee62014-02-27 00:24:00 +0000822 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 Kremenek289ae4f2009-10-12 20:55:07 +0000832 }
Mike Stump11289f42009-09-09 15:08:12 +0000833
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000834 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
Richard Trieuf935b562014-04-05 05:17:01 +0000854 /// \brief Find a relational comparison with an expression evaluating to a
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 Rose7afd71e2014-05-20 17:31:11 +0000892 /// 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 Trieuf935b562014-04-05 05:17:01 +0000896 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 Rose7afd71e2014-05-20 17:31:11 +0000908 if (!IntLiteral)
Richard Trieuf935b562014-04-05 05:17:01 +0000909 return TryResult();
910
Jordan Rose7afd71e2014-05-20 17:31:11 +0000911 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 Trieuf935b562014-04-05 05:17:01 +0000940 }
941
Jordan Rose7afd71e2014-05-20 17:31:11 +0000942 return TryResult();
Richard Trieuf935b562014-04-05 05:17:01 +0000943 }
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
967 /// \brief Find a pair of comparison expressions with or without parentheses
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 Zelenko38c70522017-12-07 21:55:09 +0000978 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000979
980 if (!LHS->isComparisonOp() || !RHS->isComparisonOp())
Eugene Zelenko38c70522017-12-07 21:55:09 +0000981 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000982
George Burgess IVced56e62015-10-01 18:47:52 +0000983 const DeclRefExpr *Decl1;
984 const Expr *Expr1;
985 BinaryOperatorKind BO1;
986 std::tie(Decl1, BO1, Expr1) = tryNormalizeBinaryOperator(LHS);
Richard Trieuf935b562014-04-05 05:17:01 +0000987
George Burgess IVced56e62015-10-01 18:47:52 +0000988 if (!Decl1 || !Expr1)
Eugene Zelenko38c70522017-12-07 21:55:09 +0000989 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000990
George Burgess IVced56e62015-10-01 18:47:52 +0000991 const DeclRefExpr *Decl2;
992 const Expr *Expr2;
993 BinaryOperatorKind BO2;
994 std::tie(Decl2, BO2, Expr2) = tryNormalizeBinaryOperator(RHS);
Richard Trieuf935b562014-04-05 05:17:01 +0000995
George Burgess IVced56e62015-10-01 18:47:52 +0000996 if (!Decl2 || !Expr2)
Eugene Zelenko38c70522017-12-07 21:55:09 +0000997 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000998
999 // Check that it is the same variable on both sides.
1000 if (Decl1->getDecl() != Decl2->getDecl())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001001 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001002
George Burgess IVced56e62015-10-01 18:47:52 +00001003 // 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 Zelenko38c70522017-12-07 21:55:09 +00001006 return {};
George Burgess IVced56e62015-10-01 18:47:52 +00001007
Richard Trieuf935b562014-04-05 05:17:01 +00001008 llvm::APSInt L1, L2;
1009
George Burgess IVced56e62015-10-01 18:47:52 +00001010 if (!Expr1->EvaluateAsInt(L1, *Context) ||
1011 !Expr2->EvaluateAsInt(L2, *Context))
Eugene Zelenko38c70522017-12-07 21:55:09 +00001012 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001013
1014 // Can't compare signed with unsigned or with different bit width.
1015 if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001016 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001017
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 Kramer2e018ef2016-05-27 13:36:58 +00001041 for (const llvm::APSInt &Value : Values) {
Richard Trieuf935b562014-04-05 05:17:01 +00001042 TryResult Res1, Res2;
1043 Res1 = analyzeLogicOperatorCondition(BO1, Value, L1);
1044 Res2 = analyzeLogicOperatorCondition(BO2, Value, L2);
1045
1046 if (!Res1.isKnown() || !Res2.isKnown())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001047 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001048
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 Zelenko38c70522017-12-07 21:55:09 +00001063 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001064 }
1065
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00001066 /// Try and evaluate an expression to an integer constant.
1067 bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) {
1068 if (!BuildOpts.PruneTriviallyFalseEdges)
1069 return false;
1070 return !S->isTypeDependent() &&
Ted Kremenek352a7082011-04-04 20:30:58 +00001071 !S->isValueDependent() &&
Richard Smith7b553f12011-10-29 00:50:52 +00001072 S->EvaluateAsRValue(outResult, *Context);
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00001073 }
Mike Stump11289f42009-09-09 15:08:12 +00001074
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00001075 /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1
Mike Stump773582d2009-07-23 23:25:26 +00001076 /// if we can evaluate to a known value, otherwise return -1.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00001077 TryResult tryEvaluateBool(Expr *S) {
Richard Smithfaa32a92011-10-14 20:22:00 +00001078 if (!BuildOpts.PruneTriviallyFalseEdges ||
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001079 S->isTypeDependent() || S->isValueDependent())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001080 return {};
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001081
1082 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) {
1083 if (Bop->isLogicalOp()) {
1084 // Check the cache first.
NAKAMURA Takumie9ca55e2012-03-25 06:30:37 +00001085 CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S);
1086 if (I != CachedBoolEvals.end())
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001087 return I->second; // already in map;
NAKAMURA Takumif0434b02012-03-25 06:30:32 +00001088
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 Kyrtzidis5f172a32012-03-23 00:59:17 +00001093 }
Ted Kremenek64fea5f2012-08-24 07:42:09 +00001094 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 Blaikie7a3cbb22015-03-09 02:02:07 +00001105 if (!IntVal.getBoolValue()) {
Ted Kremenek64fea5f2012-08-24 07:42:09 +00001106 return TryResult(false);
1107 }
1108 }
1109 if (Bop->getRHS()->EvaluateAsInt(IntVal, *Context)) {
David Blaikie7a3cbb22015-03-09 02:02:07 +00001110 if (!IntVal.getBoolValue()) {
Ted Kremenek64fea5f2012-08-24 07:42:09 +00001111 return TryResult(false);
1112 }
1113 }
1114 }
1115 break;
1116 }
1117 }
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001118 }
1119
1120 return evaluateAsBooleanConditionNoCache(S);
1121 }
1122
1123 /// \brief Evaluate as boolean \param E without using the cache.
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 Trieuf935b562014-04-05 05:17:01 +00001148 } else {
1149 TryResult BopRes = checkIncorrectLogicOperator(Bop);
1150 if (BopRes.isKnown())
1151 return BopRes.isTrue();
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001152 }
1153 }
1154
Eugene Zelenko38c70522017-12-07 21:55:09 +00001155 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001156 } 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 Kyrtzidis5f172a32012-03-23 00:59:17 +00001164 }
1165 }
1166
1167 bool Result;
1168 if (E->EvaluateAsBooleanCondition(Result, *Context))
1169 return Result;
1170
Eugene Zelenko38c70522017-12-07 21:55:09 +00001171 return {};
Mike Stump773582d2009-07-23 23:25:26 +00001172 }
Matthias Gehre351c2182017-07-12 07:04:19 +00001173
1174 bool hasTrivialDestructor(VarDecl *VD);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001175};
Mike Stump31feda52009-07-17 01:31:16 +00001176
Eugene Zelenko38c70522017-12-07 21:55:09 +00001177} // namespace
1178
Ted Kremeneka099c592011-03-10 03:50:34 +00001179inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder,
1180 const Stmt *stmt) const {
1181 return builder.alwaysAdd(stmt) || kind == AlwaysAdd;
1182}
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001183
Ted Kremeneka099c592011-03-10 03:50:34 +00001184bool CFGBuilder::alwaysAdd(const Stmt *stmt) {
Ted Kremenek8b46c002011-07-19 14:18:43 +00001185 bool shouldAdd = BuildOpts.alwaysAdd(stmt);
1186
Ted Kremeneka099c592011-03-10 03:50:34 +00001187 if (!BuildOpts.forcedBlkExprs)
Ted Kremenek8b46c002011-07-19 14:18:43 +00001188 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001189
1190 if (lastLookup == stmt) {
1191 if (cachedEntry) {
1192 assert(cachedEntry->first == stmt);
1193 return true;
1194 }
Ted Kremenek8b46c002011-07-19 14:18:43 +00001195 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001196 }
Ted Kremeneka099c592011-03-10 03:50:34 +00001197
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001198 lastLookup = stmt;
1199
1200 // Perform the lookup!
Ted Kremeneka099c592011-03-10 03:50:34 +00001201 CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs;
1202
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001203 if (!fb) {
1204 // No need to update 'cachedEntry', since it will always be null.
Craig Topper25542942014-05-20 04:30:07 +00001205 assert(!cachedEntry);
Ted Kremenek8b46c002011-07-19 14:18:43 +00001206 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001207 }
Ted Kremeneka099c592011-03-10 03:50:34 +00001208
1209 CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt);
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001210 if (itr == fb->end()) {
Craig Topper25542942014-05-20 04:30:07 +00001211 cachedEntry = nullptr;
Ted Kremenek8b46c002011-07-19 14:18:43 +00001212 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001213 }
1214
Ted Kremeneka099c592011-03-10 03:50:34 +00001215 cachedEntry = &*itr;
1216 return true;
Ted Kremenek7c58d352011-03-10 01:14:11 +00001217}
1218
Douglas Gregor4619e432008-12-05 23:32:09 +00001219// 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 McCall424cec92011-01-19 06:33:43 +00001221static 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 Kremenekd86d39c2008-09-26 22:58:57 +00001224 if (vat->getSizeExpr())
1225 return vat;
Mike Stump31feda52009-07-17 01:31:16 +00001226
Ted Kremenekd86d39c2008-09-26 22:58:57 +00001227 t = vt->getElementType().getTypePtr();
1228 }
Mike Stump31feda52009-07-17 01:31:16 +00001229
Craig Topper25542942014-05-20 04:30:07 +00001230 return nullptr;
Ted Kremenekd86d39c2008-09-26 22:58:57 +00001231}
Mike Stump31feda52009-07-17 01:31:16 +00001232
Artem Dergachev40684812018-02-27 20:03:35 +00001233void CFGBuilder::consumeConstructionContext(
Artem Dergachev1527dec2018-03-12 23:12:40 +00001234 const ConstructionContextLayer *Layer, Expr *E) {
Artem Dergachev40684812018-02-27 20:03:35 +00001235 if (const ConstructionContextLayer *PreviouslyStoredLayer =
Artem Dergachev1527dec2018-03-12 23:12:40 +00001236 ConstructionContextMap.lookup(E)) {
George Burgess IVa47e1b72018-03-06 07:45:11 +00001237 (void)PreviouslyStoredLayer;
Artem Dergachevc1b07bd2018-02-23 23:38:41 +00001238 // We might have visited this child when we were finding construction
1239 // contexts within its parents.
Artem Dergachev40684812018-02-27 20:03:35 +00001240 assert(PreviouslyStoredLayer->isStrictlyMoreSpecificThan(Layer) &&
Artem Dergachevc1b07bd2018-02-23 23:38:41 +00001241 "Already within a different construction context!");
1242 } else {
Artem Dergachev1527dec2018-03-12 23:12:40 +00001243 ConstructionContextMap[E] = Layer;
Artem Dergachevc1b07bd2018-02-23 23:38:41 +00001244 }
1245}
1246
Artem Dergachev783a4572018-02-23 22:20:39 +00001247void CFGBuilder::findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00001248 const ConstructionContextLayer *Layer, Stmt *Child) {
Artem Dergachev41ffb302018-02-08 22:58:15 +00001249 if (!BuildOpts.AddRichCXXConstructors)
1250 return;
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001251
Artem Dergachev41ffb302018-02-08 22:58:15 +00001252 if (!Child)
1253 return;
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001254
1255 switch(Child->getStmtClass()) {
1256 case Stmt::CXXConstructExprClass:
1257 case Stmt::CXXTemporaryObjectExprClass: {
Artem Dergachev40684812018-02-27 20:03:35 +00001258 consumeConstructionContext(Layer, cast<CXXConstructExpr>(Child));
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001259 break;
1260 }
Artem Dergachev1527dec2018-03-12 23:12:40 +00001261 // FIXME: This, like the main visit, doesn't support CUDAKernelCallExpr.
1262 // FIXME: An isa<> would look much better but this whole switch is a
1263 // workaround for an internal compiler error in MSVC 2015 (see r326021).
1264 case Stmt::CallExprClass:
1265 case Stmt::CXXMemberCallExprClass:
1266 case Stmt::CXXOperatorCallExprClass:
1267 case Stmt::UserDefinedLiteralClass: {
1268 auto *CE = cast<CallExpr>(Child);
Artem Dergachev54ed6422018-03-12 23:52:36 +00001269 if (CFGCXXRecordTypedCall::isCXXRecordTypedCall(CE, *Context))
Artem Dergachev1527dec2018-03-12 23:12:40 +00001270 consumeConstructionContext(Layer, CE);
1271 break;
1272 }
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001273 case Stmt::ExprWithCleanupsClass: {
1274 auto *Cleanups = cast<ExprWithCleanups>(Child);
Artem Dergachev40684812018-02-27 20:03:35 +00001275 findConstructionContexts(Layer, Cleanups->getSubExpr());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001276 break;
1277 }
1278 case Stmt::CXXFunctionalCastExprClass: {
1279 auto *Cast = cast<CXXFunctionalCastExpr>(Child);
Artem Dergachev40684812018-02-27 20:03:35 +00001280 findConstructionContexts(Layer, Cast->getSubExpr());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001281 break;
1282 }
1283 case Stmt::ImplicitCastExprClass: {
1284 auto *Cast = cast<ImplicitCastExpr>(Child);
Artem Dergachev317291e2018-03-22 21:37:39 +00001285 // Should we support other implicit cast kinds?
Artem Dergachev13f96642018-03-09 01:39:59 +00001286 switch (Cast->getCastKind()) {
1287 case CK_NoOp:
1288 case CK_ConstructorConversion:
Artem Dergachev66030522018-03-01 01:09:24 +00001289 findConstructionContexts(Layer, Cast->getSubExpr());
Artem Dergachev13f96642018-03-09 01:39:59 +00001290 default:
1291 break;
1292 }
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001293 break;
1294 }
1295 case Stmt::CXXBindTemporaryExprClass: {
1296 auto *BTE = cast<CXXBindTemporaryExpr>(Child);
Artem Dergachev783a4572018-02-23 22:20:39 +00001297 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00001298 ConstructionContextLayer::create(cfg->getBumpVectorContext(),
1299 BTE, Layer),
Artem Dergachev783a4572018-02-23 22:20:39 +00001300 BTE->getSubExpr());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001301 break;
1302 }
1303 case Stmt::ConditionalOperatorClass: {
1304 auto *CO = cast<ConditionalOperator>(Child);
Artem Dergachev40684812018-02-27 20:03:35 +00001305 findConstructionContexts(Layer, CO->getLHS());
1306 findConstructionContexts(Layer, CO->getRHS());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001307 break;
1308 }
1309 default:
1310 break;
Artem Dergachev41ffb302018-02-08 22:58:15 +00001311 }
1312}
1313
Artem Dergachev1527dec2018-03-12 23:12:40 +00001314void CFGBuilder::cleanupConstructionContext(Expr *E) {
Artem Dergachev783a4572018-02-23 22:20:39 +00001315 assert(BuildOpts.AddRichCXXConstructors &&
1316 "We should not be managing construction contexts!");
Artem Dergachev1527dec2018-03-12 23:12:40 +00001317 assert(ConstructionContextMap.count(E) &&
Artem Dergachev41ffb302018-02-08 22:58:15 +00001318 "Cannot exit construction context without the context!");
Artem Dergachev1527dec2018-03-12 23:12:40 +00001319 ConstructionContextMap.erase(E);
Artem Dergachev41ffb302018-02-08 22:58:15 +00001320}
1321
1322
Mike Stump31feda52009-07-17 01:31:16 +00001323/// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an
1324/// arbitrary statement. Examples include a single expression or a function
1325/// body (compound statement). The ownership of the returned CFG is
1326/// transferred to the caller. If CFG construction fails, this method returns
1327/// NULL.
David Blaikiee90195c2014-08-29 18:53:26 +00001328std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) {
Ted Kremenek8aed4902009-10-20 23:46:25 +00001329 assert(cfg.get());
Ted Kremenek93668002009-07-17 22:18:43 +00001330 if (!Statement)
Craig Topper25542942014-05-20 04:30:07 +00001331 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001332
Mike Stump31feda52009-07-17 01:31:16 +00001333 // Create an empty block that will serve as the exit block for the CFG. Since
1334 // this is the first block added to the CFG, it will be implicitly registered
1335 // as the exit block.
Ted Kremenek81e14852007-08-27 19:46:09 +00001336 Succ = createBlock();
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001337 assert(Succ == &cfg->getExit());
Craig Topper25542942014-05-20 04:30:07 +00001338 Block = nullptr; // the EXIT block is empty. Create all other blocks lazily.
Mike Stump31feda52009-07-17 01:31:16 +00001339
Matthias Gehre351c2182017-07-12 07:04:19 +00001340 assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) &&
1341 "AddImplicitDtors and AddLifetime cannot be used at the same time");
1342
Marcin Swiderski20b88732010-10-05 05:37:00 +00001343 if (BuildOpts.AddImplicitDtors)
1344 if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D))
1345 addImplicitDtorsForDestructor(DD);
1346
Ted Kremenek9aae5132007-08-23 21:42:29 +00001347 // Visit the statements and create the CFG.
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001348 CFGBlock *B = addStmt(Statement);
1349
1350 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00001351 return nullptr;
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001352
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001353 // For C++ constructor add initializers to CFG.
1354 if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) {
Pete Cooper57d3f142015-07-30 17:22:52 +00001355 for (auto *I : llvm::reverse(CD->inits())) {
1356 B = addInitializer(I);
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001357 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00001358 return nullptr;
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001359 }
1360 }
1361
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001362 if (B)
1363 Succ = B;
Mike Stump6bf1c082010-01-21 02:21:40 +00001364
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001365 // Backpatch the gotos whose label -> block mappings we didn't know when we
1366 // encountered them.
1367 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
1368 E = BackpatchBlocks.end(); I != E; ++I ) {
Mike Stump31feda52009-07-17 01:31:16 +00001369
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001370 CFGBlock *B = I->block;
Rafael Espindola210de572013-03-27 15:37:54 +00001371 const GotoStmt *G = cast<GotoStmt>(B->getTerminator());
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001372 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
Mike Stump31feda52009-07-17 01:31:16 +00001373
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001374 // If there is no target for the goto, then we are looking at an
1375 // incomplete AST. Handle this by not registering a successor.
1376 if (LI == LabelMap.end()) continue;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001377
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001378 JumpTarget JT = LI->second;
Matthias Gehre351c2182017-07-12 07:04:19 +00001379 prependAutomaticObjLifetimeWithTerminator(B, I->scopePosition,
1380 JT.scopePosition);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00001381 prependAutomaticObjDtorsWithTerminator(B, I->scopePosition,
1382 JT.scopePosition);
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001383 const VarDecl *VD = prependAutomaticObjScopeEndWithTerminator(
1384 B, I->scopePosition, JT.scopePosition);
1385 appendScopeBegin(JT.block, VD, G);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00001386 addSuccessor(B, JT.block);
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001387 }
1388
1389 // Add successors to the Indirect Goto Dispatch block (if we have one).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001390 if (CFGBlock *B = cfg->getIndirectGotoBlock())
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001391 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
1392 E = AddressTakenLabels.end(); I != E; ++I ) {
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001393 // Lookup the target block.
1394 LabelMapTy::iterator LI = LabelMap.find(*I);
1395
1396 // If there is no target block that contains label, then we are looking
1397 // at an incomplete AST. Handle this by not registering a successor.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001398 if (LI == LabelMap.end()) continue;
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001399
Ted Kremenekef81e9e2011-01-07 19:37:16 +00001400 addSuccessor(B, LI->second.block);
Ted Kremenekeda180e22007-08-28 19:26:49 +00001401 }
Mike Stump31feda52009-07-17 01:31:16 +00001402
Mike Stump31feda52009-07-17 01:31:16 +00001403 // Create an empty entry block that has no predecessors.
Ted Kremenek5c50fd12007-09-26 21:23:31 +00001404 cfg->setEntry(createBlock());
Mike Stump31feda52009-07-17 01:31:16 +00001405
Artem Dergachev783a4572018-02-23 22:20:39 +00001406 if (BuildOpts.AddRichCXXConstructors)
1407 assert(ConstructionContextMap.empty() &&
1408 "Not all construction contexts were cleaned up!");
1409
David Blaikiee90195c2014-08-29 18:53:26 +00001410 return std::move(cfg);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001411}
Mike Stump31feda52009-07-17 01:31:16 +00001412
Ted Kremenek9aae5132007-08-23 21:42:29 +00001413/// createBlock - Used to lazily create blocks that are connected
1414/// to the current (global) succcessor.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001415CFGBlock *CFGBuilder::createBlock(bool add_successor) {
1416 CFGBlock *B = cfg->createBlock();
Ted Kremenek93668002009-07-17 22:18:43 +00001417 if (add_successor && Succ)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00001418 addSuccessor(B, Succ);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001419 return B;
1420}
Mike Stump31feda52009-07-17 01:31:16 +00001421
Chandler Carrutha70991b2011-09-13 09:13:49 +00001422/// createNoReturnBlock - Used to create a block is a 'noreturn' point in the
1423/// CFG. It is *not* connected to the current (global) successor, and instead
1424/// directly tied to the exit block in order to be reachable.
1425CFGBlock *CFGBuilder::createNoReturnBlock() {
1426 CFGBlock *B = createBlock(false);
Chandler Carruth75d78232011-09-13 09:53:55 +00001427 B->setHasNoReturnElement();
Ted Kremenekf3539192014-02-27 00:24:05 +00001428 addSuccessor(B, &cfg->getExit(), Succ);
Chandler Carrutha70991b2011-09-13 09:13:49 +00001429 return B;
1430}
1431
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001432/// addInitializer - Add C++ base or member initializer element to CFG.
Alexis Hunt1d792652011-01-08 20:30:50 +00001433CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) {
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001434 if (!BuildOpts.AddInitializers)
1435 return Block;
1436
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001437 bool HasTemporaries = false;
1438
1439 // Destructors of temporaries in initialization expression should be called
1440 // after initialization finishes.
1441 Expr *Init = I->getInit();
1442 if (Init) {
John McCall5d413782010-12-06 08:20:24 +00001443 HasTemporaries = isa<ExprWithCleanups>(Init);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001444
Jordan Rose6d671cc2012-09-05 22:55:23 +00001445 if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001446 // Generate destructors for temporaries in initialization expression.
Manuel Klimekdeb02622014-08-08 07:37:13 +00001447 TempDtorContext Context;
Manuel Klimekb5616c92014-08-07 10:42:17 +00001448 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
1449 /*BindToTemporary=*/false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001450 }
1451 }
1452
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001453 autoCreateBlock();
1454 appendInitializer(Block, I);
1455
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001456 if (Init) {
Artem Dergachev783a4572018-02-23 22:20:39 +00001457 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00001458 ConstructionContextLayer::create(cfg->getBumpVectorContext(), I),
Artem Dergachev783a4572018-02-23 22:20:39 +00001459 Init);
Artem Dergachev5a281bb2018-02-10 02:18:04 +00001460
Ted Kremenek8219b822010-12-16 07:46:53 +00001461 if (HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001462 // For expression with temporaries go directly to subexpression to omit
1463 // generating destructors for the second time.
Ted Kremenek8219b822010-12-16 07:46:53 +00001464 return Visit(cast<ExprWithCleanups>(Init)->getSubExpr());
1465 }
Enrico Pertosofaed8012015-06-03 10:12:40 +00001466 if (BuildOpts.AddCXXDefaultInitExprInCtors) {
1467 if (CXXDefaultInitExpr *Default = dyn_cast<CXXDefaultInitExpr>(Init)) {
1468 // In general, appending the expression wrapped by a CXXDefaultInitExpr
1469 // may cause the same Expr to appear more than once in the CFG. Doing it
1470 // here is safe because there's only one initializer per field.
1471 autoCreateBlock();
1472 appendStmt(Block, Default);
1473 if (Stmt *Child = Default->getExpr())
1474 if (CFGBlock *R = Visit(Child))
1475 Block = R;
1476 return Block;
1477 }
1478 }
Ted Kremenek8219b822010-12-16 07:46:53 +00001479 return Visit(Init);
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001480 }
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001481
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001482 return Block;
1483}
1484
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001485/// \brief Retrieve the type of the temporary object whose lifetime was
1486/// extended by a local reference with the given initializer.
1487static QualType getReferenceInitTemporaryType(ASTContext &Context,
Richard Smithb8c0f552016-12-09 18:49:13 +00001488 const Expr *Init,
1489 bool *FoundMTE = nullptr) {
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001490 while (true) {
1491 // Skip parentheses.
1492 Init = Init->IgnoreParens();
1493
1494 // Skip through cleanups.
1495 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) {
1496 Init = EWC->getSubExpr();
1497 continue;
1498 }
1499
1500 // Skip through the temporary-materialization expression.
1501 if (const MaterializeTemporaryExpr *MTE
1502 = dyn_cast<MaterializeTemporaryExpr>(Init)) {
1503 Init = MTE->GetTemporaryExpr();
Richard Smithb8c0f552016-12-09 18:49:13 +00001504 if (FoundMTE)
1505 *FoundMTE = true;
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001506 continue;
1507 }
1508
1509 // Skip derived-to-base and no-op casts.
1510 if (const CastExpr *CE = dyn_cast<CastExpr>(Init)) {
1511 if ((CE->getCastKind() == CK_DerivedToBase ||
1512 CE->getCastKind() == CK_UncheckedDerivedToBase ||
1513 CE->getCastKind() == CK_NoOp) &&
1514 Init->getType()->isRecordType()) {
1515 Init = CE->getSubExpr();
1516 continue;
1517 }
1518 }
1519
1520 // Skip member accesses into rvalues.
1521 if (const MemberExpr *ME = dyn_cast<MemberExpr>(Init)) {
1522 if (!ME->isArrow() && ME->getBase()->isRValue()) {
1523 Init = ME->getBase();
1524 continue;
1525 }
1526 }
1527
1528 break;
1529 }
1530
1531 return Init->getType();
1532}
Matthias Gehre351c2182017-07-12 07:04:19 +00001533
Peter Szecsi999a25f2017-08-19 11:19:16 +00001534// TODO: Support adding LoopExit element to the CFG in case where the loop is
1535// ended by ReturnStmt, GotoStmt or ThrowExpr.
1536void CFGBuilder::addLoopExit(const Stmt *LoopStmt){
1537 if(!BuildOpts.AddLoopExit)
1538 return;
1539 autoCreateBlock();
1540 appendLoopExit(Block, LoopStmt);
1541}
1542
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001543void CFGBuilder::getDeclsWithEndedScope(LocalScope::const_iterator B,
1544 LocalScope::const_iterator E, Stmt *S) {
1545 if (!BuildOpts.AddScopes)
1546 return;
1547
1548 if (B == E)
1549 return;
1550
1551 // To go from B to E, one first goes up the scopes from B to P
1552 // then sideways in one scope from P to P' and then down
1553 // the scopes from P' to E.
1554 // The lifetime of all objects between B and P end.
1555 LocalScope::const_iterator P = B.shared_parent(E);
1556 int Dist = B.distance(P);
1557 if (Dist <= 0)
1558 return;
1559
1560 for (LocalScope::const_iterator I = B; I != P; ++I)
1561 if (I.pointsToFirstDeclaredVar())
1562 DeclsWithEndedScope.insert(*I);
1563}
1564
Matthias Gehre351c2182017-07-12 07:04:19 +00001565void CFGBuilder::addAutomaticObjHandling(LocalScope::const_iterator B,
1566 LocalScope::const_iterator E,
1567 Stmt *S) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001568 getDeclsWithEndedScope(B, E, S);
1569 if (BuildOpts.AddScopes)
1570 addScopesEnd(B, E, S);
Matthias Gehre351c2182017-07-12 07:04:19 +00001571 if (BuildOpts.AddImplicitDtors)
1572 addAutomaticObjDtors(B, E, S);
1573 if (BuildOpts.AddLifetime)
1574 addLifetimeEnds(B, E, S);
1575}
1576
1577/// Add to current block automatic objects that leave the scope.
1578void CFGBuilder::addLifetimeEnds(LocalScope::const_iterator B,
1579 LocalScope::const_iterator E, Stmt *S) {
1580 if (!BuildOpts.AddLifetime)
1581 return;
1582
1583 if (B == E)
1584 return;
1585
1586 // To go from B to E, one first goes up the scopes from B to P
1587 // then sideways in one scope from P to P' and then down
1588 // the scopes from P' to E.
1589 // The lifetime of all objects between B and P end.
1590 LocalScope::const_iterator P = B.shared_parent(E);
1591 int dist = B.distance(P);
1592 if (dist <= 0)
1593 return;
1594
1595 // We need to perform the scope leaving in reverse order
1596 SmallVector<VarDecl *, 10> DeclsTrivial;
1597 SmallVector<VarDecl *, 10> DeclsNonTrivial;
1598 DeclsTrivial.reserve(dist);
1599 DeclsNonTrivial.reserve(dist);
1600
1601 for (LocalScope::const_iterator I = B; I != P; ++I)
1602 if (hasTrivialDestructor(*I))
1603 DeclsTrivial.push_back(*I);
1604 else
1605 DeclsNonTrivial.push_back(*I);
1606
1607 autoCreateBlock();
1608 // object with trivial destructor end their lifetime last (when storage
1609 // duration ends)
1610 for (SmallVectorImpl<VarDecl *>::reverse_iterator I = DeclsTrivial.rbegin(),
1611 E = DeclsTrivial.rend();
1612 I != E; ++I)
1613 appendLifetimeEnds(Block, *I, S);
1614
1615 for (SmallVectorImpl<VarDecl *>::reverse_iterator
1616 I = DeclsNonTrivial.rbegin(),
1617 E = DeclsNonTrivial.rend();
1618 I != E; ++I)
1619 appendLifetimeEnds(Block, *I, S);
1620}
1621
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001622/// Add to current block markers for ending scopes.
1623void CFGBuilder::addScopesEnd(LocalScope::const_iterator B,
1624 LocalScope::const_iterator E, Stmt *S) {
1625 // If implicit destructors are enabled, we'll add scope ends in
1626 // addAutomaticObjDtors.
1627 if (BuildOpts.AddImplicitDtors)
1628 return;
1629
1630 autoCreateBlock();
1631
1632 for (auto I = DeclsWithEndedScope.rbegin(), E = DeclsWithEndedScope.rend();
1633 I != E; ++I)
1634 appendScopeEnd(Block, *I, S);
1635
1636 return;
1637}
1638
Marcin Swiderski5e415732010-09-30 23:05:00 +00001639/// addAutomaticObjDtors - Add to current block automatic objects destructors
1640/// for objects in range of local scope positions. Use S as trigger statement
1641/// for destructors.
Zhongxing Xu6d372f72010-10-01 03:22:39 +00001642void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B,
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001643 LocalScope::const_iterator E, Stmt *S) {
Marcin Swiderski5e415732010-09-30 23:05:00 +00001644 if (!BuildOpts.AddImplicitDtors)
Zhongxing Xu6d372f72010-10-01 03:22:39 +00001645 return;
1646
Marcin Swiderski5e415732010-09-30 23:05:00 +00001647 if (B == E)
Zhongxing Xu6d372f72010-10-01 03:22:39 +00001648 return;
Marcin Swiderski5e415732010-09-30 23:05:00 +00001649
Chandler Carruthad747252011-09-13 06:09:01 +00001650 // We need to append the destructors in reverse order, but any one of them
1651 // may be a no-return destructor which changes the CFG. As a result, buffer
1652 // this sequence up and replay them in reverse order when appending onto the
1653 // CFGBlock(s).
1654 SmallVector<VarDecl*, 10> Decls;
1655 Decls.reserve(B.distance(E));
1656 for (LocalScope::const_iterator I = B; I != E; ++I)
1657 Decls.push_back(*I);
1658
1659 for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(),
1660 E = Decls.rend();
1661 I != E; ++I) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001662 if (hasTrivialDestructor(*I)) {
1663 // If AddScopes is enabled and *I is a first variable in a scope, add a
1664 // ScopeEnd marker in a Block.
1665 if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) {
1666 autoCreateBlock();
1667 appendScopeEnd(Block, *I, S);
1668 }
1669 continue;
1670 }
Chandler Carruthad747252011-09-13 06:09:01 +00001671 // If this destructor is marked as a no-return destructor, we need to
1672 // create a new block for the destructor which does not have as a successor
1673 // anything built thus far: control won't flow out of this block.
Ted Kremenek3d617732012-07-18 04:57:57 +00001674 QualType Ty = (*I)->getType();
1675 if (Ty->isReferenceType()) {
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001676 Ty = getReferenceInitTemporaryType(*Context, (*I)->getInit());
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001677 }
Ted Kremenek3d617732012-07-18 04:57:57 +00001678 Ty = Context->getBaseElementType(Ty);
1679
Richard Trieu95a192a2015-05-28 00:14:02 +00001680 if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn())
Chandler Carrutha70991b2011-09-13 09:13:49 +00001681 Block = createNoReturnBlock();
1682 else
Chandler Carruthad747252011-09-13 06:09:01 +00001683 autoCreateBlock();
Chandler Carruthad747252011-09-13 06:09:01 +00001684
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001685 // Add ScopeEnd just after automatic obj destructor.
1686 if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I))
1687 appendScopeEnd(Block, *I, S);
Chandler Carruthad747252011-09-13 06:09:01 +00001688 appendAutomaticObjDtor(Block, *I, S);
1689 }
Marcin Swiderski5e415732010-09-30 23:05:00 +00001690}
1691
Marcin Swiderski20b88732010-10-05 05:37:00 +00001692/// addImplicitDtorsForDestructor - Add implicit destructors generated for
1693/// base and member objects in destructor.
1694void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) {
Eugene Zelenko38c70522017-12-07 21:55:09 +00001695 assert(BuildOpts.AddImplicitDtors &&
1696 "Can be called only when dtors should be added");
Marcin Swiderski20b88732010-10-05 05:37:00 +00001697 const CXXRecordDecl *RD = DD->getParent();
1698
1699 // At the end destroy virtual base objects.
Aaron Ballman445a9392014-03-13 16:15:17 +00001700 for (const auto &VI : RD->vbases()) {
1701 const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl();
Marcin Swiderski20b88732010-10-05 05:37:00 +00001702 if (!CD->hasTrivialDestructor()) {
1703 autoCreateBlock();
Aaron Ballman445a9392014-03-13 16:15:17 +00001704 appendBaseDtor(Block, &VI);
Marcin Swiderski20b88732010-10-05 05:37:00 +00001705 }
1706 }
1707
1708 // Before virtual bases destroy direct base objects.
Aaron Ballman574705e2014-03-13 15:41:46 +00001709 for (const auto &BI : RD->bases()) {
1710 if (!BI.isVirtual()) {
1711 const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl();
David Blaikie0f2ae782012-01-24 04:51:48 +00001712 if (!CD->hasTrivialDestructor()) {
1713 autoCreateBlock();
Aaron Ballman574705e2014-03-13 15:41:46 +00001714 appendBaseDtor(Block, &BI);
David Blaikie0f2ae782012-01-24 04:51:48 +00001715 }
1716 }
Marcin Swiderski20b88732010-10-05 05:37:00 +00001717 }
1718
1719 // First destroy member objects.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001720 for (auto *FI : RD->fields()) {
Marcin Swiderski01769902010-10-25 07:05:54 +00001721 // Check for constant size array. Set type to array element type.
1722 QualType QT = FI->getType();
1723 if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1724 if (AT->getSize() == 0)
1725 continue;
1726 QT = AT->getElementType();
1727 }
1728
1729 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
Marcin Swiderski20b88732010-10-05 05:37:00 +00001730 if (!CD->hasTrivialDestructor()) {
1731 autoCreateBlock();
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001732 appendMemberDtor(Block, FI);
Marcin Swiderski20b88732010-10-05 05:37:00 +00001733 }
1734 }
1735}
1736
Marcin Swiderski5e415732010-09-30 23:05:00 +00001737/// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either
1738/// way return valid LocalScope object.
1739LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) {
David Blaikiec1334cc2015-08-13 22:12:21 +00001740 if (Scope)
1741 return Scope;
1742 llvm::BumpPtrAllocator &alloc = cfg->getAllocator();
1743 return new (alloc.Allocate<LocalScope>())
1744 LocalScope(BumpVectorContext(alloc), ScopePos);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001745}
1746
1747/// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement
Zhongxing Xu81714f22010-10-01 03:00:16 +00001748/// that should create implicit scope (e.g. if/else substatements).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001749void CFGBuilder::addLocalScopeForStmt(Stmt *S) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001750 if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime &&
1751 !BuildOpts.AddScopes)
Zhongxing Xu81714f22010-10-01 03:00:16 +00001752 return;
1753
Craig Topper25542942014-05-20 04:30:07 +00001754 LocalScope *Scope = nullptr;
Marcin Swiderski5e415732010-09-30 23:05:00 +00001755
1756 // For compound statement we will be creating explicit scope.
Chris Lattnerc8e630e2011-02-17 07:39:24 +00001757 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) {
Aaron Ballmanc7e4e212014-03-17 14:19:37 +00001758 for (auto *BI : CS->body()) {
1759 Stmt *SI = BI->stripLabelLikeStatements();
Chris Lattnerc8e630e2011-02-17 07:39:24 +00001760 if (DeclStmt *DS = dyn_cast<DeclStmt>(SI))
Marcin Swiderski5e415732010-09-30 23:05:00 +00001761 Scope = addLocalScopeForDeclStmt(DS, Scope);
1762 }
Zhongxing Xu81714f22010-10-01 03:00:16 +00001763 return;
Marcin Swiderski5e415732010-09-30 23:05:00 +00001764 }
1765
1766 // For any other statement scope will be implicit and as such will be
1767 // interesting only for DeclStmt.
Chandler Carrutha626d642011-09-10 00:02:34 +00001768 if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements()))
Zhongxing Xu307701e2010-10-01 03:09:09 +00001769 addLocalScopeForDeclStmt(DS);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001770}
1771
1772/// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will
1773/// reuse Scope if not NULL.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001774LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS,
Zhongxing Xu307701e2010-10-01 03:09:09 +00001775 LocalScope* Scope) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001776 if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime &&
1777 !BuildOpts.AddScopes)
Marcin Swiderski5e415732010-09-30 23:05:00 +00001778 return Scope;
1779
Aaron Ballman535bbcc2014-03-14 17:01:24 +00001780 for (auto *DI : DS->decls())
1781 if (VarDecl *VD = dyn_cast<VarDecl>(DI))
Marcin Swiderski5e415732010-09-30 23:05:00 +00001782 Scope = addLocalScopeForVarDecl(VD, Scope);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001783 return Scope;
1784}
1785
Matthias Gehre351c2182017-07-12 07:04:19 +00001786bool CFGBuilder::hasTrivialDestructor(VarDecl *VD) {
1787 // Check for const references bound to temporary. Set type to pointee.
1788 QualType QT = VD->getType();
1789 if (QT.getTypePtr()->isReferenceType()) {
1790 // Attempt to determine whether this declaration lifetime-extends a
1791 // temporary.
1792 //
1793 // FIXME: This is incorrect. Non-reference declarations can lifetime-extend
1794 // temporaries, and a single declaration can extend multiple temporaries.
1795 // We should look at the storage duration on each nested
1796 // MaterializeTemporaryExpr instead.
1797
1798 const Expr *Init = VD->getInit();
1799 if (!Init)
1800 return true;
1801
1802 // Lifetime-extending a temporary.
1803 bool FoundMTE = false;
1804 QT = getReferenceInitTemporaryType(*Context, Init, &FoundMTE);
1805 if (!FoundMTE)
1806 return true;
1807 }
1808
1809 // Check for constant size array. Set type to array element type.
1810 while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1811 if (AT->getSize() == 0)
1812 return true;
1813 QT = AT->getElementType();
1814 }
1815
1816 // Check if type is a C++ class with non-trivial destructor.
1817 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
1818 return !CD->hasDefinition() || CD->hasTrivialDestructor();
1819 return true;
1820}
1821
Marcin Swiderski5e415732010-09-30 23:05:00 +00001822/// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will
1823/// create add scope for automatic objects and temporary objects bound to
1824/// const reference. Will reuse Scope if not NULL.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001825LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD,
Zhongxing Xu307701e2010-10-01 03:09:09 +00001826 LocalScope* Scope) {
Matthias Gehre351c2182017-07-12 07:04:19 +00001827 assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) &&
1828 "AddImplicitDtors and AddLifetime cannot be used at the same time");
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001829 if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime &&
1830 !BuildOpts.AddScopes)
Marcin Swiderski5e415732010-09-30 23:05:00 +00001831 return Scope;
1832
1833 // Check if variable is local.
1834 switch (VD->getStorageClass()) {
1835 case SC_None:
1836 case SC_Auto:
1837 case SC_Register:
1838 break;
1839 default: return Scope;
1840 }
1841
Matthias Gehre351c2182017-07-12 07:04:19 +00001842 if (BuildOpts.AddImplicitDtors) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001843 if (!hasTrivialDestructor(VD) || BuildOpts.AddScopes) {
Zhongxing Xu614e17d2010-10-05 08:38:06 +00001844 // Add the variable to scope
1845 Scope = createOrReuseLocalScope(Scope);
1846 Scope->addVar(VD);
1847 ScopePos = Scope->begin();
1848 }
Matthias Gehre351c2182017-07-12 07:04:19 +00001849 return Scope;
1850 }
1851
1852 assert(BuildOpts.AddLifetime);
1853 // Add the variable to scope
1854 Scope = createOrReuseLocalScope(Scope);
1855 Scope->addVar(VD);
1856 ScopePos = Scope->begin();
Marcin Swiderski5e415732010-09-30 23:05:00 +00001857 return Scope;
1858}
1859
1860/// addLocalScopeAndDtors - For given statement add local scope for it and
1861/// add destructors that will cleanup the scope. Will reuse Scope if not NULL.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001862void CFGBuilder::addLocalScopeAndDtors(Stmt *S) {
Marcin Swiderski5e415732010-09-30 23:05:00 +00001863 LocalScope::const_iterator scopeBeginPos = ScopePos;
Zhongxing Xu81714f22010-10-01 03:00:16 +00001864 addLocalScopeForStmt(S);
Matthias Gehre351c2182017-07-12 07:04:19 +00001865 addAutomaticObjHandling(ScopePos, scopeBeginPos, S);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001866}
1867
Marcin Swiderski321a7072010-09-30 22:54:37 +00001868/// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for
1869/// variables with automatic storage duration to CFGBlock's elements vector.
1870/// Elements will be prepended to physical beginning of the vector which
1871/// happens to be logical end. Use blocks terminator as statement that specifies
1872/// destructors call site.
Chandler Carruthad747252011-09-13 06:09:01 +00001873/// FIXME: This mechanism for adding automatic destructors doesn't handle
1874/// no-return destructors properly.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001875void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
Marcin Swiderski321a7072010-09-30 22:54:37 +00001876 LocalScope::const_iterator B, LocalScope::const_iterator E) {
Matthias Gehre351c2182017-07-12 07:04:19 +00001877 if (!BuildOpts.AddImplicitDtors)
1878 return;
Chandler Carruthad747252011-09-13 06:09:01 +00001879 BumpVectorContext &C = cfg->getBumpVectorContext();
1880 CFGBlock::iterator InsertPos
1881 = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C);
1882 for (LocalScope::const_iterator I = B; I != E; ++I)
1883 InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I,
1884 Blk->getTerminator());
Marcin Swiderski321a7072010-09-30 22:54:37 +00001885}
1886
Matthias Gehre351c2182017-07-12 07:04:19 +00001887/// prependAutomaticObjLifetimeWithTerminator - Prepend lifetime CFGElements for
1888/// variables with automatic storage duration to CFGBlock's elements vector.
1889/// Elements will be prepended to physical beginning of the vector which
1890/// happens to be logical end. Use blocks terminator as statement that specifies
1891/// where lifetime ends.
1892void CFGBuilder::prependAutomaticObjLifetimeWithTerminator(
1893 CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) {
1894 if (!BuildOpts.AddLifetime)
1895 return;
1896 BumpVectorContext &C = cfg->getBumpVectorContext();
1897 CFGBlock::iterator InsertPos =
1898 Blk->beginLifetimeEndsInsert(Blk->end(), B.distance(E), C);
1899 for (LocalScope::const_iterator I = B; I != E; ++I)
1900 InsertPos = Blk->insertLifetimeEnds(InsertPos, *I, Blk->getTerminator());
1901}
Eugene Zelenko38c70522017-12-07 21:55:09 +00001902
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001903/// prependAutomaticObjScopeEndWithTerminator - Prepend scope end CFGElements for
1904/// variables with automatic storage duration to CFGBlock's elements vector.
1905/// Elements will be prepended to physical beginning of the vector which
1906/// happens to be logical end. Use blocks terminator as statement that specifies
1907/// where scope ends.
1908const VarDecl *
1909CFGBuilder::prependAutomaticObjScopeEndWithTerminator(
1910 CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) {
1911 if (!BuildOpts.AddScopes)
1912 return nullptr;
1913 BumpVectorContext &C = cfg->getBumpVectorContext();
1914 CFGBlock::iterator InsertPos =
1915 Blk->beginScopeEndInsert(Blk->end(), 1, C);
1916 LocalScope::const_iterator PlaceToInsert = B;
1917 for (LocalScope::const_iterator I = B; I != E; ++I)
1918 PlaceToInsert = I;
1919 Blk->insertScopeEnd(InsertPos, *PlaceToInsert, Blk->getTerminator());
1920 return *PlaceToInsert;
1921}
1922
Ted Kremenek93668002009-07-17 22:18:43 +00001923/// Visit - Walk the subtree of a statement and add extra
Mike Stump31feda52009-07-17 01:31:16 +00001924/// blocks for ternary operators, &&, and ||. We also process "," and
1925/// DeclStmts (which may contain nested control-flow).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001926CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) {
Ted Kremenekbc1416d2010-04-30 22:25:53 +00001927 if (!S) {
1928 badCFG = true;
Craig Topper25542942014-05-20 04:30:07 +00001929 return nullptr;
Ted Kremenekbc1416d2010-04-30 22:25:53 +00001930 }
Jordy Rose17347372011-06-10 08:49:37 +00001931
1932 if (Expr *E = dyn_cast<Expr>(S))
1933 S = E->IgnoreParens();
1934
Ted Kremenek93668002009-07-17 22:18:43 +00001935 switch (S->getStmtClass()) {
1936 default:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001937 return VisitStmt(S, asc);
Ted Kremenek93668002009-07-17 22:18:43 +00001938
1939 case Stmt::AddrLabelExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001940 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001941
John McCallc07a0c72011-02-17 10:25:35 +00001942 case Stmt::BinaryConditionalOperatorClass:
1943 return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc);
1944
Ted Kremenek93668002009-07-17 22:18:43 +00001945 case Stmt::BinaryOperatorClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001946 return VisitBinaryOperator(cast<BinaryOperator>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001947
Ted Kremenek93668002009-07-17 22:18:43 +00001948 case Stmt::BlockExprClass:
Devin Coughlinb6029b72015-11-25 22:35:37 +00001949 return VisitBlockExpr(cast<BlockExpr>(S), asc);
Ted Kremenek93668002009-07-17 22:18:43 +00001950
Ted Kremenek93668002009-07-17 22:18:43 +00001951 case Stmt::BreakStmtClass:
1952 return VisitBreakStmt(cast<BreakStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001953
Ted Kremenek93668002009-07-17 22:18:43 +00001954 case Stmt::CallExprClass:
Ted Kremenek128d04d2010-08-31 18:47:34 +00001955 case Stmt::CXXOperatorCallExprClass:
John McCallc67067f2011-05-11 07:19:11 +00001956 case Stmt::CXXMemberCallExprClass:
Richard Smithc67fdd42012-03-07 08:35:16 +00001957 case Stmt::UserDefinedLiteralClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001958 return VisitCallExpr(cast<CallExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001959
Ted Kremenek93668002009-07-17 22:18:43 +00001960 case Stmt::CaseStmtClass:
1961 return VisitCaseStmt(cast<CaseStmt>(S));
1962
1963 case Stmt::ChooseExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001964 return VisitChooseExpr(cast<ChooseExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001965
Ted Kremenek93668002009-07-17 22:18:43 +00001966 case Stmt::CompoundStmtClass:
1967 return VisitCompoundStmt(cast<CompoundStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001968
Ted Kremenek93668002009-07-17 22:18:43 +00001969 case Stmt::ConditionalOperatorClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001970 return VisitConditionalOperator(cast<ConditionalOperator>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001971
Ted Kremenek93668002009-07-17 22:18:43 +00001972 case Stmt::ContinueStmtClass:
1973 return VisitContinueStmt(cast<ContinueStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001974
Ted Kremenekb27378c2010-01-19 20:40:33 +00001975 case Stmt::CXXCatchStmtClass:
1976 return VisitCXXCatchStmt(cast<CXXCatchStmt>(S));
1977
John McCall5d413782010-12-06 08:20:24 +00001978 case Stmt::ExprWithCleanupsClass:
1979 return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc);
Ted Kremenek82bfc862010-08-28 00:19:02 +00001980
Jordan Rosee5d53932012-08-23 18:10:53 +00001981 case Stmt::CXXDefaultArgExprClass:
Richard Smith852c9db2013-04-20 22:23:05 +00001982 case Stmt::CXXDefaultInitExprClass:
Jordan Rosee5d53932012-08-23 18:10:53 +00001983 // FIXME: The expression inside a CXXDefaultArgExpr is owned by the
1984 // called function's declaration, not by the caller. If we simply add
1985 // this expression to the CFG, we could end up with the same Expr
1986 // appearing multiple times.
1987 // PR13385 / <rdar://problem/12156507>
Richard Smith852c9db2013-04-20 22:23:05 +00001988 //
1989 // It's likewise possible for multiple CXXDefaultInitExprs for the same
1990 // expression to be used in the same function (through aggregate
1991 // initialization).
Jordan Rosee5d53932012-08-23 18:10:53 +00001992 return VisitStmt(S, asc);
1993
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00001994 case Stmt::CXXBindTemporaryExprClass:
1995 return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc);
1996
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00001997 case Stmt::CXXConstructExprClass:
1998 return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc);
1999
Jordan Rosec9176072014-01-13 17:59:19 +00002000 case Stmt::CXXNewExprClass:
2001 return VisitCXXNewExpr(cast<CXXNewExpr>(S), asc);
2002
Jordan Rosed2f40792013-09-03 17:00:57 +00002003 case Stmt::CXXDeleteExprClass:
2004 return VisitCXXDeleteExpr(cast<CXXDeleteExpr>(S), asc);
2005
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00002006 case Stmt::CXXFunctionalCastExprClass:
2007 return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc);
2008
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00002009 case Stmt::CXXTemporaryObjectExprClass:
2010 return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc);
2011
Ted Kremenekb27378c2010-01-19 20:40:33 +00002012 case Stmt::CXXThrowExprClass:
2013 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002014
Ted Kremenekb27378c2010-01-19 20:40:33 +00002015 case Stmt::CXXTryStmtClass:
2016 return VisitCXXTryStmt(cast<CXXTryStmt>(S));
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002017
Richard Smith02e85f32011-04-14 22:09:26 +00002018 case Stmt::CXXForRangeStmtClass:
2019 return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S));
2020
Ted Kremenek93668002009-07-17 22:18:43 +00002021 case Stmt::DeclStmtClass:
2022 return VisitDeclStmt(cast<DeclStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002023
Ted Kremenek93668002009-07-17 22:18:43 +00002024 case Stmt::DefaultStmtClass:
2025 return VisitDefaultStmt(cast<DefaultStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002026
Ted Kremenek93668002009-07-17 22:18:43 +00002027 case Stmt::DoStmtClass:
2028 return VisitDoStmt(cast<DoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002029
Ted Kremenek93668002009-07-17 22:18:43 +00002030 case Stmt::ForStmtClass:
2031 return VisitForStmt(cast<ForStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002032
Ted Kremenek93668002009-07-17 22:18:43 +00002033 case Stmt::GotoStmtClass:
2034 return VisitGotoStmt(cast<GotoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002035
Ted Kremenek93668002009-07-17 22:18:43 +00002036 case Stmt::IfStmtClass:
2037 return VisitIfStmt(cast<IfStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002038
Ted Kremenek8219b822010-12-16 07:46:53 +00002039 case Stmt::ImplicitCastExprClass:
2040 return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00002041
Ted Kremenek93668002009-07-17 22:18:43 +00002042 case Stmt::IndirectGotoStmtClass:
2043 return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002044
Ted Kremenek93668002009-07-17 22:18:43 +00002045 case Stmt::LabelStmtClass:
2046 return VisitLabelStmt(cast<LabelStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002047
Ted Kremenekda76a942012-04-12 20:34:52 +00002048 case Stmt::LambdaExprClass:
2049 return VisitLambdaExpr(cast<LambdaExpr>(S), asc);
2050
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00002051 case Stmt::MaterializeTemporaryExprClass:
2052 return VisitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(S),
2053 asc);
2054
Ted Kremenek5868ec62010-04-11 17:02:10 +00002055 case Stmt::MemberExprClass:
2056 return VisitMemberExpr(cast<MemberExpr>(S), asc);
2057
Ted Kremenek04268232011-11-05 00:10:15 +00002058 case Stmt::NullStmtClass:
2059 return Block;
2060
Ted Kremenek93668002009-07-17 22:18:43 +00002061 case Stmt::ObjCAtCatchStmtClass:
Mike Stump11289f42009-09-09 15:08:12 +00002062 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
2063
Ted Kremenek5022f1d2012-03-06 23:40:47 +00002064 case Stmt::ObjCAutoreleasePoolStmtClass:
2065 return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S));
2066
Ted Kremenek93668002009-07-17 22:18:43 +00002067 case Stmt::ObjCAtSynchronizedStmtClass:
2068 return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002069
Ted Kremenek93668002009-07-17 22:18:43 +00002070 case Stmt::ObjCAtThrowStmtClass:
2071 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002072
Ted Kremenek93668002009-07-17 22:18:43 +00002073 case Stmt::ObjCAtTryStmtClass:
2074 return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002075
Ted Kremenek93668002009-07-17 22:18:43 +00002076 case Stmt::ObjCForCollectionStmtClass:
2077 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002078
Ted Kremenek04268232011-11-05 00:10:15 +00002079 case Stmt::OpaqueValueExprClass:
Ted Kremenek93668002009-07-17 22:18:43 +00002080 return Block;
Mike Stump11289f42009-09-09 15:08:12 +00002081
John McCallfe96e0b2011-11-06 09:01:30 +00002082 case Stmt::PseudoObjectExprClass:
2083 return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S));
2084
Ted Kremenek93668002009-07-17 22:18:43 +00002085 case Stmt::ReturnStmtClass:
2086 return VisitReturnStmt(cast<ReturnStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002087
Nico Weber699670e2017-08-23 15:33:16 +00002088 case Stmt::SEHExceptStmtClass:
2089 return VisitSEHExceptStmt(cast<SEHExceptStmt>(S));
2090
2091 case Stmt::SEHFinallyStmtClass:
2092 return VisitSEHFinallyStmt(cast<SEHFinallyStmt>(S));
2093
2094 case Stmt::SEHLeaveStmtClass:
2095 return VisitSEHLeaveStmt(cast<SEHLeaveStmt>(S));
2096
2097 case Stmt::SEHTryStmtClass:
2098 return VisitSEHTryStmt(cast<SEHTryStmt>(S));
2099
Peter Collingbournee190dee2011-03-11 19:24:49 +00002100 case Stmt::UnaryExprOrTypeTraitExprClass:
2101 return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S),
2102 asc);
Mike Stump11289f42009-09-09 15:08:12 +00002103
Ted Kremenek93668002009-07-17 22:18:43 +00002104 case Stmt::StmtExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002105 return VisitStmtExpr(cast<StmtExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00002106
Ted Kremenek93668002009-07-17 22:18:43 +00002107 case Stmt::SwitchStmtClass:
2108 return VisitSwitchStmt(cast<SwitchStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002109
Zhanyong Wan6dace612010-11-22 08:45:56 +00002110 case Stmt::UnaryOperatorClass:
2111 return VisitUnaryOperator(cast<UnaryOperator>(S), asc);
2112
Ted Kremenek93668002009-07-17 22:18:43 +00002113 case Stmt::WhileStmtClass:
2114 return VisitWhileStmt(cast<WhileStmt>(S));
2115 }
2116}
Mike Stump11289f42009-09-09 15:08:12 +00002117
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002118CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002119 if (asc.alwaysAdd(*this, S)) {
Ted Kremenek93668002009-07-17 22:18:43 +00002120 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002121 appendStmt(Block, S);
Mike Stump31feda52009-07-17 01:31:16 +00002122 }
Mike Stump11289f42009-09-09 15:08:12 +00002123
Ted Kremenek93668002009-07-17 22:18:43 +00002124 return VisitChildren(S);
Ted Kremenek9e248872007-08-27 21:27:44 +00002125}
Mike Stump31feda52009-07-17 01:31:16 +00002126
Ted Kremenek93668002009-07-17 22:18:43 +00002127/// VisitChildren - Visit the children of a Stmt.
Ted Kremenek8ae67872013-02-05 22:00:19 +00002128CFGBlock *CFGBuilder::VisitChildren(Stmt *S) {
2129 CFGBlock *B = Block;
Ted Kremenek828f6312011-02-21 22:11:26 +00002130
Ted Kremenek8ae67872013-02-05 22:00:19 +00002131 // Visit the children in their reverse order so that they appear in
2132 // left-to-right (natural) order in the CFG.
2133 reverse_children RChildren(S);
2134 for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end();
2135 I != E; ++I) {
2136 if (Stmt *Child = *I)
2137 if (CFGBlock *R = Visit(Child))
2138 B = R;
2139 }
2140 return B;
Ted Kremenek9e248872007-08-27 21:27:44 +00002141}
Mike Stump11289f42009-09-09 15:08:12 +00002142
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002143CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A,
2144 AddStmtChoice asc) {
Ted Kremenek93668002009-07-17 22:18:43 +00002145 AddressTakenLabels.insert(A->getLabel());
Ted Kremenek9e248872007-08-27 21:27:44 +00002146
Ted Kremenek7c58d352011-03-10 01:14:11 +00002147 if (asc.alwaysAdd(*this, A)) {
Ted Kremenek93668002009-07-17 22:18:43 +00002148 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002149 appendStmt(Block, A);
Ted Kremenek93668002009-07-17 22:18:43 +00002150 }
Ted Kremenek81e14852007-08-27 19:46:09 +00002151
Ted Kremenek9aae5132007-08-23 21:42:29 +00002152 return Block;
2153}
Mike Stump11289f42009-09-09 15:08:12 +00002154
Zhanyong Wan6dace612010-11-22 08:45:56 +00002155CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U,
Ted Kremenek8219b822010-12-16 07:46:53 +00002156 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002157 if (asc.alwaysAdd(*this, U)) {
Zhanyong Wan6dace612010-11-22 08:45:56 +00002158 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002159 appendStmt(Block, U);
Zhanyong Wan6dace612010-11-22 08:45:56 +00002160 }
2161
Ted Kremenek8219b822010-12-16 07:46:53 +00002162 return Visit(U->getSubExpr(), AddStmtChoice());
Zhanyong Wan6dace612010-11-22 08:45:56 +00002163}
2164
Ted Kremeneka16436f2012-07-14 05:04:06 +00002165CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) {
2166 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
2167 appendStmt(ConfluenceBlock, B);
Mike Stump11289f42009-09-09 15:08:12 +00002168
Ted Kremeneka16436f2012-07-14 05:04:06 +00002169 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002170 return nullptr;
Ted Kremeneka16436f2012-07-14 05:04:06 +00002171
Craig Topper25542942014-05-20 04:30:07 +00002172 return VisitLogicalOperator(B, nullptr, ConfluenceBlock,
2173 ConfluenceBlock).first;
Ted Kremenekb50e7162012-07-14 05:04:10 +00002174}
2175
2176std::pair<CFGBlock*, CFGBlock*>
2177CFGBuilder::VisitLogicalOperator(BinaryOperator *B,
2178 Stmt *Term,
2179 CFGBlock *TrueBlock,
2180 CFGBlock *FalseBlock) {
Ted Kremenekb50e7162012-07-14 05:04:10 +00002181 // Introspect the RHS. If it is a nested logical operation, we recursively
2182 // build the CFG using this function. Otherwise, resort to default
2183 // CFG construction behavior.
2184 Expr *RHS = B->getRHS()->IgnoreParens();
2185 CFGBlock *RHSBlock, *ExitBlock;
2186
2187 do {
2188 if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS))
2189 if (B_RHS->isLogicalOp()) {
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00002190 std::tie(RHSBlock, ExitBlock) =
Ted Kremenekb50e7162012-07-14 05:04:10 +00002191 VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock);
2192 break;
2193 }
2194
2195 // The RHS is not a nested logical operation. Don't push the terminator
2196 // down further, but instead visit RHS and construct the respective
2197 // pieces of the CFG, and link up the RHSBlock with the terminator
2198 // we have been provided.
2199 ExitBlock = RHSBlock = createBlock(false);
2200
Richard Trieu6a6af522017-01-04 00:46:30 +00002201 // Even though KnownVal is only used in the else branch of the next
2202 // conditional, tryEvaluateBool performs additional checking on the
2203 // Expr, so it should be called unconditionally.
2204 TryResult KnownVal = tryEvaluateBool(RHS);
2205 if (!KnownVal.isKnown())
2206 KnownVal = tryEvaluateBool(B);
2207
Ted Kremenekb50e7162012-07-14 05:04:10 +00002208 if (!Term) {
2209 assert(TrueBlock == FalseBlock);
2210 addSuccessor(RHSBlock, TrueBlock);
2211 }
2212 else {
2213 RHSBlock->setTerminator(Term);
Ted Kremenek782f0032014-03-07 02:25:53 +00002214 addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse());
2215 addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue());
Ted Kremenekb50e7162012-07-14 05:04:10 +00002216 }
2217
2218 Block = RHSBlock;
2219 RHSBlock = addStmt(RHS);
2220 }
2221 while (false);
2222
2223 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002224 return std::make_pair(nullptr, nullptr);
Ted Kremenekb50e7162012-07-14 05:04:10 +00002225
2226 // Generate the blocks for evaluating the LHS.
2227 Expr *LHS = B->getLHS()->IgnoreParens();
2228
2229 if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS))
2230 if (B_LHS->isLogicalOp()) {
2231 if (B->getOpcode() == BO_LOr)
2232 FalseBlock = RHSBlock;
2233 else
2234 TrueBlock = RHSBlock;
2235
2236 // For the LHS, treat 'B' as the terminator that we want to sink
2237 // into the nested branch. The RHS always gets the top-most
2238 // terminator.
2239 return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock);
2240 }
2241
2242 // Create the block evaluating the LHS.
2243 // This contains the '&&' or '||' as the terminator.
Ted Kremeneka16436f2012-07-14 05:04:06 +00002244 CFGBlock *LHSBlock = createBlock(false);
2245 LHSBlock->setTerminator(B);
2246
Ted Kremeneka16436f2012-07-14 05:04:06 +00002247 Block = LHSBlock;
Ted Kremenekb50e7162012-07-14 05:04:10 +00002248 CFGBlock *EntryLHSBlock = addStmt(LHS);
2249
2250 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002251 return std::make_pair(nullptr, nullptr);
Ted Kremeneka16436f2012-07-14 05:04:06 +00002252
2253 // See if this is a known constant.
Ted Kremenekb50e7162012-07-14 05:04:10 +00002254 TryResult KnownVal = tryEvaluateBool(LHS);
Ted Kremeneka16436f2012-07-14 05:04:06 +00002255
2256 // Now link the LHSBlock with RHSBlock.
2257 if (B->getOpcode() == BO_LOr) {
Ted Kremenek782f0032014-03-07 02:25:53 +00002258 addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse());
2259 addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue());
Ted Kremeneka16436f2012-07-14 05:04:06 +00002260 } else {
2261 assert(B->getOpcode() == BO_LAnd);
Ted Kremenek782f0032014-03-07 02:25:53 +00002262 addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse());
2263 addSuccessor(LHSBlock, FalseBlock, !KnownVal.isTrue());
Ted Kremeneka16436f2012-07-14 05:04:06 +00002264 }
2265
Ted Kremenekb50e7162012-07-14 05:04:10 +00002266 return std::make_pair(EntryLHSBlock, ExitBlock);
Ted Kremeneka16436f2012-07-14 05:04:06 +00002267}
2268
2269CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B,
2270 AddStmtChoice asc) {
2271 // && or ||
2272 if (B->isLogicalOp())
2273 return VisitLogicalOperator(B);
2274
Zhanyong Wan59f09c72010-11-22 19:32:14 +00002275 if (B->getOpcode() == BO_Comma) { // ,
Ted Kremenekfe9b7682009-07-17 22:57:50 +00002276 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002277 appendStmt(Block, B);
Ted Kremenek93668002009-07-17 22:18:43 +00002278 addStmt(B->getRHS());
2279 return addStmt(B->getLHS());
2280 }
Zhanyong Wan59f09c72010-11-22 19:32:14 +00002281
2282 if (B->isAssignmentOp()) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002283 if (asc.alwaysAdd(*this, B)) {
Zhongxing Xu41cdf582010-06-03 06:23:18 +00002284 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002285 appendStmt(Block, B);
Zhongxing Xu41cdf582010-06-03 06:23:18 +00002286 }
Ted Kremenek8219b822010-12-16 07:46:53 +00002287 Visit(B->getLHS());
Marcin Swiderski77232492010-10-24 08:21:40 +00002288 return Visit(B->getRHS());
Zhongxing Xu41cdf582010-06-03 06:23:18 +00002289 }
Mike Stump11289f42009-09-09 15:08:12 +00002290
Ted Kremenek7c58d352011-03-10 01:14:11 +00002291 if (asc.alwaysAdd(*this, B)) {
Marcin Swiderski77232492010-10-24 08:21:40 +00002292 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002293 appendStmt(Block, B);
Marcin Swiderski77232492010-10-24 08:21:40 +00002294 }
2295
Zhongxing Xud95ccd52010-10-27 03:23:10 +00002296 CFGBlock *RBlock = Visit(B->getRHS());
2297 CFGBlock *LBlock = Visit(B->getLHS());
2298 // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr
2299 // containing a DoStmt, and the LHS doesn't create a new block, then we should
2300 // return RBlock. Otherwise we'll incorrectly return NULL.
2301 return (LBlock ? LBlock : RBlock);
Ted Kremenek93668002009-07-17 22:18:43 +00002302}
2303
Ted Kremeneke2499842012-04-12 20:03:44 +00002304CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002305 if (asc.alwaysAdd(*this, E)) {
Ted Kremenek470bfa42009-11-25 01:34:30 +00002306 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002307 appendStmt(Block, E);
Ted Kremenek470bfa42009-11-25 01:34:30 +00002308 }
2309 return Block;
Ted Kremenek93668002009-07-17 22:18:43 +00002310}
2311
Ted Kremenek93668002009-07-17 22:18:43 +00002312CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
2313 // "break" is a control-flow statement. Thus we stop processing the current
2314 // block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002315 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002316 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002317
Ted Kremenek93668002009-07-17 22:18:43 +00002318 // Now create a new block that ends with the break statement.
2319 Block = createBlock(false);
2320 Block->setTerminator(B);
Mike Stump11289f42009-09-09 15:08:12 +00002321
Ted Kremenek93668002009-07-17 22:18:43 +00002322 // If there is no target for the break, then we are looking at an incomplete
2323 // AST. This means that the CFG cannot be constructed.
Ted Kremenekef81e9e2011-01-07 19:37:16 +00002324 if (BreakJumpTarget.block) {
Matthias Gehre351c2182017-07-12 07:04:19 +00002325 addAutomaticObjHandling(ScopePos, BreakJumpTarget.scopePosition, B);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00002326 addSuccessor(Block, BreakJumpTarget.block);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00002327 } else
Ted Kremenek93668002009-07-17 22:18:43 +00002328 badCFG = true;
Mike Stump11289f42009-09-09 15:08:12 +00002329
Ted Kremenek9aae5132007-08-23 21:42:29 +00002330 return Block;
2331}
Mike Stump11289f42009-09-09 15:08:12 +00002332
Sebastian Redl31ad7542011-03-13 17:09:40 +00002333static bool CanThrow(Expr *E, ASTContext &Ctx) {
Mike Stump04c68512010-01-21 15:20:48 +00002334 QualType Ty = E->getType();
2335 if (Ty->isFunctionPointerType())
2336 Ty = Ty->getAs<PointerType>()->getPointeeType();
2337 else if (Ty->isBlockPointerType())
2338 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002339
Mike Stump04c68512010-01-21 15:20:48 +00002340 const FunctionType *FT = Ty->getAs<FunctionType>();
2341 if (FT) {
2342 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT))
Richard Smithd3b5c9082012-07-27 04:22:15 +00002343 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) &&
Richard Smithf623c962012-04-17 00:58:00 +00002344 Proto->isNothrow(Ctx))
Mike Stump04c68512010-01-21 15:20:48 +00002345 return false;
2346 }
2347 return true;
2348}
2349
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002350CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) {
John McCallc67067f2011-05-11 07:19:11 +00002351 // Compute the callee type.
2352 QualType calleeType = C->getCallee()->getType();
2353 if (calleeType == Context->BoundMemberTy) {
2354 QualType boundType = Expr::findBoundMemberType(C->getCallee());
2355
2356 // We should only get a null bound type if processing a dependent
2357 // CFG. Recover by assuming nothing.
2358 if (!boundType.isNull()) calleeType = boundType;
Ted Kremenek93668002009-07-17 22:18:43 +00002359 }
Mike Stump8c5d7992009-07-25 21:26:53 +00002360
John McCallc67067f2011-05-11 07:19:11 +00002361 // If this is a call to a no-return function, this stops the block here.
2362 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
2363
Mike Stump04c68512010-01-21 15:20:48 +00002364 bool AddEHEdge = false;
Mike Stump92244b02010-01-19 22:00:14 +00002365
2366 // Languages without exceptions are assumed to not throw.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002367 if (Context->getLangOpts().Exceptions) {
Ted Kremeneke97b1eb2010-09-14 23:41:16 +00002368 if (BuildOpts.AddEHEdges)
Mike Stump04c68512010-01-21 15:20:48 +00002369 AddEHEdge = true;
Mike Stump92244b02010-01-19 22:00:14 +00002370 }
2371
Jordan Rose5374c072013-08-19 16:27:28 +00002372 // If this is a call to a builtin function, it might not actually evaluate
2373 // its arguments. Don't add them to the CFG if this is the case.
2374 bool OmitArguments = false;
2375
Mike Stump92244b02010-01-19 22:00:14 +00002376 if (FunctionDecl *FD = C->getDirectCallee()) {
Nico Weber758fbac2018-02-13 21:31:47 +00002377 if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context))
Mike Stump8c5d7992009-07-25 21:26:53 +00002378 NoReturn = true;
Mike Stump92244b02010-01-19 22:00:14 +00002379 if (FD->hasAttr<NoThrowAttr>())
Mike Stump04c68512010-01-21 15:20:48 +00002380 AddEHEdge = false;
Jordan Rose5374c072013-08-19 16:27:28 +00002381 if (FD->getBuiltinID() == Builtin::BI__builtin_object_size)
2382 OmitArguments = true;
Mike Stump92244b02010-01-19 22:00:14 +00002383 }
Mike Stump8c5d7992009-07-25 21:26:53 +00002384
Sebastian Redl31ad7542011-03-13 17:09:40 +00002385 if (!CanThrow(C->getCallee(), *Context))
Mike Stump04c68512010-01-21 15:20:48 +00002386 AddEHEdge = false;
2387
Jordan Rose5374c072013-08-19 16:27:28 +00002388 if (OmitArguments) {
2389 assert(!NoReturn && "noreturn calls with unevaluated args not implemented");
2390 assert(!AddEHEdge && "EH calls with unevaluated args not implemented");
2391 autoCreateBlock();
2392 appendStmt(Block, C);
2393 return Visit(C->getCallee());
2394 }
2395
2396 if (!NoReturn && !AddEHEdge) {
Artem Dergachev1527dec2018-03-12 23:12:40 +00002397 autoCreateBlock();
2398 appendCall(Block, C);
2399
2400 return VisitChildren(C);
Jordan Rose5374c072013-08-19 16:27:28 +00002401 }
Mike Stump11289f42009-09-09 15:08:12 +00002402
Mike Stump92244b02010-01-19 22:00:14 +00002403 if (Block) {
2404 Succ = Block;
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002405 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002406 return nullptr;
Mike Stump92244b02010-01-19 22:00:14 +00002407 }
Mike Stump11289f42009-09-09 15:08:12 +00002408
Chandler Carrutha70991b2011-09-13 09:13:49 +00002409 if (NoReturn)
2410 Block = createNoReturnBlock();
2411 else
2412 Block = createBlock();
2413
Artem Dergachev1527dec2018-03-12 23:12:40 +00002414 appendCall(Block, C);
Mike Stump8c5d7992009-07-25 21:26:53 +00002415
Mike Stump04c68512010-01-21 15:20:48 +00002416 if (AddEHEdge) {
Mike Stump92244b02010-01-19 22:00:14 +00002417 // Add exceptional edges.
2418 if (TryTerminatedBlock)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002419 addSuccessor(Block, TryTerminatedBlock);
Mike Stump92244b02010-01-19 22:00:14 +00002420 else
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002421 addSuccessor(Block, &cfg->getExit());
Mike Stump92244b02010-01-19 22:00:14 +00002422 }
Mike Stump11289f42009-09-09 15:08:12 +00002423
Mike Stump8c5d7992009-07-25 21:26:53 +00002424 return VisitChildren(C);
Ted Kremenek93668002009-07-17 22:18:43 +00002425}
Ted Kremenek9aae5132007-08-23 21:42:29 +00002426
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002427CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C,
2428 AddStmtChoice asc) {
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002429 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002430 appendStmt(ConfluenceBlock, C);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002431 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002432 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002433
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00002434 AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
Ted Kremenek21822592009-07-17 18:20:32 +00002435 Succ = ConfluenceBlock;
Craig Topper25542942014-05-20 04:30:07 +00002436 Block = nullptr;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002437 CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002438 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002439 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002440
Ted Kremenek21822592009-07-17 18:20:32 +00002441 Succ = ConfluenceBlock;
Craig Topper25542942014-05-20 04:30:07 +00002442 Block = nullptr;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002443 CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002444 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002445 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002446
Ted Kremenek21822592009-07-17 18:20:32 +00002447 Block = createBlock(false);
Mike Stump773582d2009-07-23 23:25:26 +00002448 // See if this is a known constant.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002449 const TryResult& KnownVal = tryEvaluateBool(C->getCond());
Craig Topper25542942014-05-20 04:30:07 +00002450 addSuccessor(Block, KnownVal.isFalse() ? nullptr : LHSBlock);
2451 addSuccessor(Block, KnownVal.isTrue() ? nullptr : RHSBlock);
Ted Kremenek21822592009-07-17 18:20:32 +00002452 Block->setTerminator(C);
Mike Stump11289f42009-09-09 15:08:12 +00002453 return addStmt(C->getCond());
Ted Kremenek21822592009-07-17 18:20:32 +00002454}
Mike Stump11289f42009-09-09 15:08:12 +00002455
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002456CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) {
Matthias Gehre09a134e2015-11-14 00:36:50 +00002457 LocalScope::const_iterator scopeBeginPos = ScopePos;
Matthias Gehre351c2182017-07-12 07:04:19 +00002458 addLocalScopeForStmt(C);
2459
Matthias Gehre09a134e2015-11-14 00:36:50 +00002460 if (!C->body_empty() && !isa<ReturnStmt>(*C->body_rbegin())) {
Richard Smitha547eb22016-07-14 00:11:03 +00002461 // If the body ends with a ReturnStmt, the dtors will be added in
2462 // VisitReturnStmt.
Matthias Gehre351c2182017-07-12 07:04:19 +00002463 addAutomaticObjHandling(ScopePos, scopeBeginPos, C);
Matthias Gehre09a134e2015-11-14 00:36:50 +00002464 }
2465
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002466 CFGBlock *LastBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00002467
2468 for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
2469 I != E; ++I ) {
Ted Kremenek4f2ab5a2010-08-17 21:00:06 +00002470 // If we hit a segment of code just containing ';' (NullStmts), we can
2471 // get a null block back. In such cases, just use the LastBlock
2472 if (CFGBlock *newBlock = addStmt(*I))
2473 LastBlock = newBlock;
Mike Stump11289f42009-09-09 15:08:12 +00002474
Ted Kremenekce499c22009-08-27 23:16:26 +00002475 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002476 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002477 }
Mike Stump92244b02010-01-19 22:00:14 +00002478
Ted Kremenek93668002009-07-17 22:18:43 +00002479 return LastBlock;
2480}
Mike Stump11289f42009-09-09 15:08:12 +00002481
John McCallc07a0c72011-02-17 10:25:35 +00002482CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C,
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002483 AddStmtChoice asc) {
John McCallc07a0c72011-02-17 10:25:35 +00002484 const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C);
Craig Topper25542942014-05-20 04:30:07 +00002485 const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : nullptr);
John McCallc07a0c72011-02-17 10:25:35 +00002486
Ted Kremenek51d40b02009-07-17 18:15:54 +00002487 // Create the confluence block that will "merge" the results of the ternary
2488 // expression.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002489 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002490 appendStmt(ConfluenceBlock, C);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002491 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002492 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002493
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00002494 AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
Ted Kremenek5868ec62010-04-11 17:02:10 +00002495
Ted Kremenek51d40b02009-07-17 18:15:54 +00002496 // Create a block for the LHS expression if there is an LHS expression. A
2497 // GCC extension allows LHS to be NULL, causing the condition to be the
2498 // value that is returned instead.
2499 // e.g: x ?: y is shorthand for: x ? x : y;
2500 Succ = ConfluenceBlock;
Craig Topper25542942014-05-20 04:30:07 +00002501 Block = nullptr;
2502 CFGBlock *LHSBlock = nullptr;
John McCallc07a0c72011-02-17 10:25:35 +00002503 const Expr *trueExpr = C->getTrueExpr();
2504 if (trueExpr != opaqueValue) {
2505 LHSBlock = Visit(C->getTrueExpr(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002506 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002507 return nullptr;
2508 Block = nullptr;
Ted Kremenek51d40b02009-07-17 18:15:54 +00002509 }
Ted Kremenekd8138012011-02-24 03:09:15 +00002510 else
2511 LHSBlock = ConfluenceBlock;
Mike Stump11289f42009-09-09 15:08:12 +00002512
Ted Kremenek51d40b02009-07-17 18:15:54 +00002513 // Create the block for the RHS expression.
2514 Succ = ConfluenceBlock;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002515 CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002516 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002517 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002518
Richard Smithf676e452012-07-24 21:02:14 +00002519 // If the condition is a logical '&&' or '||', build a more accurate CFG.
2520 if (BinaryOperator *Cond =
2521 dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens()))
2522 if (Cond->isLogicalOp())
2523 return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first;
2524
Ted Kremenek51d40b02009-07-17 18:15:54 +00002525 // Create the block that will contain the condition.
2526 Block = createBlock(false);
Mike Stump11289f42009-09-09 15:08:12 +00002527
Mike Stump773582d2009-07-23 23:25:26 +00002528 // See if this is a known constant.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002529 const TryResult& KnownVal = tryEvaluateBool(C->getCond());
Ted Kremenek5a095272014-03-04 21:53:26 +00002530 addSuccessor(Block, LHSBlock, !KnownVal.isFalse());
2531 addSuccessor(Block, RHSBlock, !KnownVal.isTrue());
Ted Kremenek51d40b02009-07-17 18:15:54 +00002532 Block->setTerminator(C);
John McCallc07a0c72011-02-17 10:25:35 +00002533 Expr *condExpr = C->getCond();
John McCall68cc3352011-02-19 03:13:26 +00002534
Ted Kremenekd8138012011-02-24 03:09:15 +00002535 if (opaqueValue) {
2536 // Run the condition expression if it's not trivially expressed in
2537 // terms of the opaque value (or if there is no opaque value).
2538 if (condExpr != opaqueValue)
2539 addStmt(condExpr);
John McCall68cc3352011-02-19 03:13:26 +00002540
Ted Kremenekd8138012011-02-24 03:09:15 +00002541 // Before that, run the common subexpression if there was one.
2542 // At least one of this or the above will be run.
2543 return addStmt(BCO->getCommon());
2544 }
2545
2546 return addStmt(condExpr);
Ted Kremenek51d40b02009-07-17 18:15:54 +00002547}
2548
Ted Kremenek93668002009-07-17 22:18:43 +00002549CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
Ted Kremenek6878c362011-05-10 18:42:15 +00002550 // Check if the Decl is for an __label__. If so, elide it from the
2551 // CFG entirely.
2552 if (isa<LabelDecl>(*DS->decl_begin()))
2553 return Block;
2554
Ted Kremenek3a601142011-05-24 20:41:31 +00002555 // This case also handles static_asserts.
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002556 if (DS->isSingleDecl())
2557 return VisitDeclSubExpr(DS);
Mike Stump11289f42009-09-09 15:08:12 +00002558
Craig Topper25542942014-05-20 04:30:07 +00002559 CFGBlock *B = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002560
Jordan Rose8c6c8a92012-07-20 18:50:48 +00002561 // Build an individual DeclStmt for each decl.
2562 for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(),
2563 E = DS->decl_rend();
2564 I != E; ++I) {
Ted Kremenek93668002009-07-17 22:18:43 +00002565 // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
Benjamin Kramerc3f89252016-10-20 14:27:22 +00002566 unsigned A = alignof(DeclStmt) < 8 ? 8 : alignof(DeclStmt);
Mike Stump11289f42009-09-09 15:08:12 +00002567
Ted Kremenek93668002009-07-17 22:18:43 +00002568 // Allocate the DeclStmt using the BumpPtrAllocator. It will get
2569 // automatically freed with the CFG.
2570 DeclGroupRef DG(*I);
2571 Decl *D = *I;
Mike Stump11289f42009-09-09 15:08:12 +00002572 void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
Ted Kremenek93668002009-07-17 22:18:43 +00002573 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
Jordan Rosecf10ea82013-06-06 21:53:45 +00002574 cfg->addSyntheticDeclStmt(DSNew, DS);
Mike Stump11289f42009-09-09 15:08:12 +00002575
Ted Kremenek93668002009-07-17 22:18:43 +00002576 // Append the fake DeclStmt to block.
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002577 B = VisitDeclSubExpr(DSNew);
Ted Kremenek93668002009-07-17 22:18:43 +00002578 }
Mike Stump11289f42009-09-09 15:08:12 +00002579
2580 return B;
Ted Kremenek93668002009-07-17 22:18:43 +00002581}
Mike Stump11289f42009-09-09 15:08:12 +00002582
Ted Kremenek93668002009-07-17 22:18:43 +00002583/// VisitDeclSubExpr - Utility method to add block-level expressions for
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002584/// DeclStmts and initializers in them.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002585CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002586 assert(DS->isSingleDecl() && "Can handle single declarations only.");
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002587 VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002588
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002589 if (!VD) {
Jordan Rose5250b872013-06-03 22:59:41 +00002590 // Of everything that can be declared in a DeclStmt, only VarDecls impact
2591 // runtime semantics.
Ted Kremenek93668002009-07-17 22:18:43 +00002592 return Block;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002593 }
Mike Stump11289f42009-09-09 15:08:12 +00002594
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002595 bool HasTemporaries = false;
2596
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002597 // Guard static initializers under a branch.
Craig Topper25542942014-05-20 04:30:07 +00002598 CFGBlock *blockAfterStaticInit = nullptr;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002599
2600 if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) {
2601 // For static variables, we need to create a branch to track
2602 // whether or not they are initialized.
2603 if (Block) {
2604 Succ = Block;
Craig Topper25542942014-05-20 04:30:07 +00002605 Block = nullptr;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002606 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002607 return nullptr;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002608 }
2609 blockAfterStaticInit = Succ;
2610 }
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002611
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002612 // Destructors of temporaries in initialization expression should be called
2613 // after initialization finishes.
Ted Kremenek93668002009-07-17 22:18:43 +00002614 Expr *Init = VD->getInit();
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002615 if (Init) {
John McCall5d413782010-12-06 08:20:24 +00002616 HasTemporaries = isa<ExprWithCleanups>(Init);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002617
Jordan Rose6d671cc2012-09-05 22:55:23 +00002618 if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002619 // Generate destructors for temporaries in initialization expression.
Manuel Klimekdeb02622014-08-08 07:37:13 +00002620 TempDtorContext Context;
Manuel Klimekb5616c92014-08-07 10:42:17 +00002621 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
2622 /*BindToTemporary=*/false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002623 }
2624 }
2625
2626 autoCreateBlock();
Ted Kremenek8219b822010-12-16 07:46:53 +00002627 appendStmt(Block, DS);
Artem Dergachev5fc10332018-02-10 01:55:23 +00002628
Artem Dergachev783a4572018-02-23 22:20:39 +00002629 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00002630 ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS),
Artem Dergachev783a4572018-02-23 22:20:39 +00002631 Init);
Artem Dergachev5fc10332018-02-10 01:55:23 +00002632
Ted Kremenek213d0532012-03-22 05:57:43 +00002633 // Keep track of the last non-null block, as 'Block' can be nulled out
2634 // if the initializer expression is something like a 'while' in a
2635 // statement-expression.
2636 CFGBlock *LastBlock = Block;
Mike Stump11289f42009-09-09 15:08:12 +00002637
Ted Kremenek93668002009-07-17 22:18:43 +00002638 if (Init) {
Ted Kremenek213d0532012-03-22 05:57:43 +00002639 if (HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002640 // For expression with temporaries go directly to subexpression to omit
2641 // generating destructors for the second time.
Ted Kremenek213d0532012-03-22 05:57:43 +00002642 ExprWithCleanups *EC = cast<ExprWithCleanups>(Init);
2643 if (CFGBlock *newBlock = Visit(EC->getSubExpr()))
2644 LastBlock = newBlock;
2645 }
2646 else {
2647 if (CFGBlock *newBlock = Visit(Init))
2648 LastBlock = newBlock;
2649 }
Ted Kremenek93668002009-07-17 22:18:43 +00002650 }
Mike Stump11289f42009-09-09 15:08:12 +00002651
Ted Kremenek93668002009-07-17 22:18:43 +00002652 // If the type of VD is a VLA, then we must process its size expressions.
John McCall424cec92011-01-19 06:33:43 +00002653 for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr());
Craig Topper25542942014-05-20 04:30:07 +00002654 VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) {
Ted Kremeneke6ee6712012-11-13 00:12:13 +00002655 if (CFGBlock *newBlock = addStmt(VA->getSizeExpr()))
2656 LastBlock = newBlock;
2657 }
Mike Stump11289f42009-09-09 15:08:12 +00002658
Maxim Ostapenkodebca452018-03-12 12:26:15 +00002659 maybeAddScopeBeginForVarDecl(Block, VD, DS);
2660
Marcin Swiderski667ffec2010-10-01 00:23:17 +00002661 // Remove variable from local scope.
2662 if (ScopePos && VD == *ScopePos)
2663 ++ScopePos;
2664
Ted Kremenek338c3aa2013-03-29 00:09:28 +00002665 CFGBlock *B = LastBlock;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002666 if (blockAfterStaticInit) {
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002667 Succ = B;
Ted Kremenek338c3aa2013-03-29 00:09:28 +00002668 Block = createBlock(false);
2669 Block->setTerminator(DS);
Ted Kremenekf82d5782013-03-29 00:42:56 +00002670 addSuccessor(Block, blockAfterStaticInit);
Ted Kremenek338c3aa2013-03-29 00:09:28 +00002671 addSuccessor(Block, B);
2672 B = Block;
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002673 }
2674
2675 return B;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002676}
2677
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002678CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) {
Mike Stump31feda52009-07-17 01:31:16 +00002679 // We may see an if statement in the middle of a basic block, or it may be the
2680 // first statement we are processing. In either case, we create a new basic
2681 // block. First, we create the blocks for the then...else statements, and
2682 // then we create the block containing the if statement. If we were in the
Ted Kremenek0868eea2009-09-24 18:45:41 +00002683 // middle of a block, we stop processing that block. That block is then the
2684 // implicit successor for the "then" and "else" clauses.
Mike Stump31feda52009-07-17 01:31:16 +00002685
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002686 // Save local scope position because in case of condition variable ScopePos
2687 // won't be restored when traversing AST.
2688 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2689
Richard Smitha547eb22016-07-14 00:11:03 +00002690 // Create local scope for C++17 if init-stmt if one exists.
Richard Smith509bbd12017-01-13 22:16:41 +00002691 if (Stmt *Init = I->getInit())
Richard Smitha547eb22016-07-14 00:11:03 +00002692 addLocalScopeForStmt(Init);
Richard Smitha547eb22016-07-14 00:11:03 +00002693
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002694 // Create local scope for possible condition variable.
2695 // Store scope position. Add implicit destructor.
Richard Smith509bbd12017-01-13 22:16:41 +00002696 if (VarDecl *VD = I->getConditionVariable())
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002697 addLocalScopeForVarDecl(VD);
Richard Smith509bbd12017-01-13 22:16:41 +00002698
Matthias Gehre351c2182017-07-12 07:04:19 +00002699 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), I);
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002700
Chris Lattner57540c52011-04-15 05:22:18 +00002701 // The block we were processing is now finished. Make it the successor
Mike Stump31feda52009-07-17 01:31:16 +00002702 // block.
2703 if (Block) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00002704 Succ = Block;
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002705 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002706 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002707 }
Mike Stump31feda52009-07-17 01:31:16 +00002708
Ted Kremenek0bcdc982009-07-17 18:04:55 +00002709 // Process the false branch.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002710 CFGBlock *ElseBlock = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00002711
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002712 if (Stmt *Else = I->getElse()) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00002713 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump31feda52009-07-17 01:31:16 +00002714
Ted Kremenek9aae5132007-08-23 21:42:29 +00002715 // NULL out Block so that the recursive call to Visit will
Mike Stump31feda52009-07-17 01:31:16 +00002716 // create a new basic block.
Craig Topper25542942014-05-20 04:30:07 +00002717 Block = nullptr;
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002718
2719 // If branch is not a compound statement create implicit scope
2720 // and add destructors.
2721 if (!isa<CompoundStmt>(Else))
2722 addLocalScopeAndDtors(Else);
2723
Ted Kremenek93668002009-07-17 22:18:43 +00002724 ElseBlock = addStmt(Else);
Mike Stump31feda52009-07-17 01:31:16 +00002725
Ted Kremenekbbad8ce2007-08-30 18:13:31 +00002726 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
2727 ElseBlock = sv.get();
Ted Kremenek55957a82009-05-02 00:13:27 +00002728 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002729 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002730 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00002731 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00002732 }
Mike Stump31feda52009-07-17 01:31:16 +00002733
Ted Kremenek0bcdc982009-07-17 18:04:55 +00002734 // Process the true branch.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002735 CFGBlock *ThenBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002736 {
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002737 Stmt *Then = I->getThen();
Ted Kremenek1362b8b2010-01-19 20:46:35 +00002738 assert(Then);
Ted Kremenek9aae5132007-08-23 21:42:29 +00002739 SaveAndRestore<CFGBlock*> sv(Succ);
Craig Topper25542942014-05-20 04:30:07 +00002740 Block = nullptr;
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002741
2742 // If branch is not a compound statement create implicit scope
2743 // and add destructors.
2744 if (!isa<CompoundStmt>(Then))
2745 addLocalScopeAndDtors(Then);
2746
Ted Kremenek93668002009-07-17 22:18:43 +00002747 ThenBlock = addStmt(Then);
Mike Stump31feda52009-07-17 01:31:16 +00002748
Ted Kremenek1b379512009-04-01 03:52:47 +00002749 if (!ThenBlock) {
2750 // We can reach here if the "then" body has all NullStmts.
2751 // Create an empty block so we can distinguish between true and false
2752 // branches in path-sensitive analyses.
2753 ThenBlock = createBlock(false);
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002754 addSuccessor(ThenBlock, sv.get());
Mike Stump31feda52009-07-17 01:31:16 +00002755 } else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002756 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002757 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00002758 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00002759 }
2760
Ted Kremenekb50e7162012-07-14 05:04:10 +00002761 // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by
2762 // having these handle the actual control-flow jump. Note that
2763 // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)"
2764 // we resort to the old control-flow behavior. This special handling
2765 // removes infeasible paths from the control-flow graph by having the
2766 // control-flow transfer of '&&' or '||' go directly into the then/else
2767 // blocks directly.
Richard Smith509bbd12017-01-13 22:16:41 +00002768 BinaryOperator *Cond =
2769 I->getConditionVariable()
2770 ? nullptr
2771 : dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens());
2772 CFGBlock *LastBlock;
2773 if (Cond && Cond->isLogicalOp())
2774 LastBlock = VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first;
2775 else {
2776 // Now create a new block containing the if statement.
2777 Block = createBlock(false);
Ted Kremenekb50e7162012-07-14 05:04:10 +00002778
Richard Smith509bbd12017-01-13 22:16:41 +00002779 // Set the terminator of the new block to the If statement.
2780 Block->setTerminator(I);
Mike Stump31feda52009-07-17 01:31:16 +00002781
Richard Smith509bbd12017-01-13 22:16:41 +00002782 // See if this is a known constant.
2783 const TryResult &KnownVal = tryEvaluateBool(I->getCond());
Mike Stump31feda52009-07-17 01:31:16 +00002784
Richard Smith509bbd12017-01-13 22:16:41 +00002785 // Add the successors. If we know that specific branches are
2786 // unreachable, inform addSuccessor() of that knowledge.
2787 addSuccessor(Block, ThenBlock, /* isReachable = */ !KnownVal.isFalse());
2788 addSuccessor(Block, ElseBlock, /* isReachable = */ !KnownVal.isTrue());
Mike Stump773582d2009-07-23 23:25:26 +00002789
Richard Smith509bbd12017-01-13 22:16:41 +00002790 // Add the condition as the last statement in the new block. This may
2791 // create new blocks as the condition may contain control-flow. Any newly
2792 // created blocks will be pointed to be "Block".
2793 LastBlock = addStmt(I->getCond());
Mike Stump31feda52009-07-17 01:31:16 +00002794
Richard Smith509bbd12017-01-13 22:16:41 +00002795 // If the IfStmt contains a condition variable, add it and its
2796 // initializer to the CFG.
2797 if (const DeclStmt* DS = I->getConditionVariableDeclStmt()) {
2798 autoCreateBlock();
2799 LastBlock = addStmt(const_cast<DeclStmt *>(DS));
2800 }
Ted Kremeneka7bcbde2009-12-23 04:49:01 +00002801 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002802
Richard Smitha547eb22016-07-14 00:11:03 +00002803 // Finally, if the IfStmt contains a C++17 init-stmt, add it to the CFG.
2804 if (Stmt *Init = I->getInit()) {
2805 autoCreateBlock();
2806 LastBlock = addStmt(Init);
2807 }
2808
Ted Kremeneke6ee6712012-11-13 00:12:13 +00002809 return LastBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002810}
Mike Stump31feda52009-07-17 01:31:16 +00002811
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002812CFGBlock *CFGBuilder::VisitReturnStmt(ReturnStmt *R) {
Ted Kremenek0868eea2009-09-24 18:45:41 +00002813 // If we were in the middle of a block we stop processing that block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00002814 //
Mike Stump31feda52009-07-17 01:31:16 +00002815 // NOTE: If a "return" appears in the middle of a block, this means that the
2816 // code afterwards is DEAD (unreachable). We still keep a basic block
2817 // for that code; a simple "mark-and-sweep" from the entry block will be
2818 // able to report such dead blocks.
Ted Kremenek9aae5132007-08-23 21:42:29 +00002819
2820 // Create the new block.
2821 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00002822
Matthias Gehre351c2182017-07-12 07:04:19 +00002823 addAutomaticObjHandling(ScopePos, LocalScope::const_iterator(), R);
Pavel Labath921e7652013-09-06 08:12:48 +00002824
Artem Dergachev783a4572018-02-23 22:20:39 +00002825 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00002826 ConstructionContextLayer::create(cfg->getBumpVectorContext(), R),
Artem Dergachev783a4572018-02-23 22:20:39 +00002827 R->getRetValue());
Artem Dergachev9ac2e112018-02-12 22:36:36 +00002828
Pavel Labath921e7652013-09-06 08:12:48 +00002829 // If the one of the destructors does not return, we already have the Exit
2830 // block as a successor.
2831 if (!Block->hasNoReturnElement())
2832 addSuccessor(Block, &cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +00002833
2834 // Add the return statement to the block. This may create new blocks if R
2835 // contains control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002836 return VisitStmt(R, AddStmtChoice::AlwaysAdd);
Ted Kremenek9aae5132007-08-23 21:42:29 +00002837}
2838
Nico Weber699670e2017-08-23 15:33:16 +00002839CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) {
2840 // SEHExceptStmt are treated like labels, so they are the first statement in a
2841 // block.
2842
2843 // Save local scope position because in case of exception variable ScopePos
2844 // won't be restored when traversing AST.
2845 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2846
2847 addStmt(ES->getBlock());
2848 CFGBlock *SEHExceptBlock = Block;
2849 if (!SEHExceptBlock)
2850 SEHExceptBlock = createBlock();
2851
2852 appendStmt(SEHExceptBlock, ES);
2853
2854 // Also add the SEHExceptBlock as a label, like with regular labels.
2855 SEHExceptBlock->setLabel(ES);
2856
2857 // Bail out if the CFG is bad.
2858 if (badCFG)
2859 return nullptr;
2860
2861 // We set Block to NULL to allow lazy creation of a new block (if necessary).
2862 Block = nullptr;
2863
2864 return SEHExceptBlock;
2865}
2866
2867CFGBlock *CFGBuilder::VisitSEHFinallyStmt(SEHFinallyStmt *FS) {
2868 return VisitCompoundStmt(FS->getBlock());
2869}
2870
2871CFGBlock *CFGBuilder::VisitSEHLeaveStmt(SEHLeaveStmt *LS) {
2872 // "__leave" is a control-flow statement. Thus we stop processing the current
2873 // block.
2874 if (badCFG)
2875 return nullptr;
2876
2877 // Now create a new block that ends with the __leave statement.
2878 Block = createBlock(false);
2879 Block->setTerminator(LS);
2880
2881 // If there is no target for the __leave, then we are looking at an incomplete
2882 // AST. This means that the CFG cannot be constructed.
2883 if (SEHLeaveJumpTarget.block) {
2884 addAutomaticObjHandling(ScopePos, SEHLeaveJumpTarget.scopePosition, LS);
2885 addSuccessor(Block, SEHLeaveJumpTarget.block);
2886 } else
2887 badCFG = true;
2888
2889 return Block;
2890}
2891
2892CFGBlock *CFGBuilder::VisitSEHTryStmt(SEHTryStmt *Terminator) {
2893 // "__try"/"__except"/"__finally" is a control-flow statement. Thus we stop
2894 // processing the current block.
2895 CFGBlock *SEHTrySuccessor = nullptr;
2896
2897 if (Block) {
2898 if (badCFG)
2899 return nullptr;
2900 SEHTrySuccessor = Block;
2901 } else SEHTrySuccessor = Succ;
2902
2903 // FIXME: Implement __finally support.
2904 if (Terminator->getFinallyHandler())
2905 return NYS();
2906
2907 CFGBlock *PrevSEHTryTerminatedBlock = TryTerminatedBlock;
2908
2909 // Create a new block that will contain the __try statement.
2910 CFGBlock *NewTryTerminatedBlock = createBlock(false);
2911
2912 // Add the terminator in the __try block.
2913 NewTryTerminatedBlock->setTerminator(Terminator);
2914
2915 if (SEHExceptStmt *Except = Terminator->getExceptHandler()) {
2916 // The code after the try is the implicit successor if there's an __except.
2917 Succ = SEHTrySuccessor;
2918 Block = nullptr;
2919 CFGBlock *ExceptBlock = VisitSEHExceptStmt(Except);
2920 if (!ExceptBlock)
2921 return nullptr;
2922 // Add this block to the list of successors for the block with the try
2923 // statement.
2924 addSuccessor(NewTryTerminatedBlock, ExceptBlock);
2925 }
2926 if (PrevSEHTryTerminatedBlock)
2927 addSuccessor(NewTryTerminatedBlock, PrevSEHTryTerminatedBlock);
2928 else
2929 addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
2930
2931 // The code after the try is the implicit successor.
2932 Succ = SEHTrySuccessor;
2933
2934 // Save the current "__try" context.
2935 SaveAndRestore<CFGBlock *> save_try(TryTerminatedBlock,
2936 NewTryTerminatedBlock);
2937 cfg->addTryDispatchBlock(TryTerminatedBlock);
2938
2939 // Save the current value for the __leave target.
2940 // All __leaves should go to the code following the __try
2941 // (FIXME: or if the __try has a __finally, to the __finally.)
2942 SaveAndRestore<JumpTarget> save_break(SEHLeaveJumpTarget);
2943 SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos);
2944
2945 assert(Terminator->getTryBlock() && "__try must contain a non-NULL body");
2946 Block = nullptr;
2947 return addStmt(Terminator->getTryBlock());
2948}
2949
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002950CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00002951 // Get the block of the labeled statement. Add it to our map.
Ted Kremenek93668002009-07-17 22:18:43 +00002952 addStmt(L->getSubStmt());
Chris Lattnerc8e630e2011-02-17 07:39:24 +00002953 CFGBlock *LabelBlock = Block;
Mike Stump31feda52009-07-17 01:31:16 +00002954
Ted Kremenek93668002009-07-17 22:18:43 +00002955 if (!LabelBlock) // This can happen when the body is empty, i.e.
2956 LabelBlock = createBlock(); // scopes that only contains NullStmts.
Mike Stump31feda52009-07-17 01:31:16 +00002957
Chris Lattnerc8e630e2011-02-17 07:39:24 +00002958 assert(LabelMap.find(L->getDecl()) == LabelMap.end() &&
2959 "label already in map");
2960 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00002961
2962 // Labels partition blocks, so this is the end of the basic block we were
2963 // processing (L is the block's label). Because this is label (and we have
2964 // already processed the substatement) there is no extra control-flow to worry
2965 // about.
Ted Kremenek71eca012007-08-29 23:20:49 +00002966 LabelBlock->setLabel(L);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002967 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002968 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00002969
2970 // We set Block to NULL to allow lazy creation of a new block (if necessary);
Craig Topper25542942014-05-20 04:30:07 +00002971 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00002972
Ted Kremenek9aae5132007-08-23 21:42:29 +00002973 // This block is now the implicit successor of other blocks.
2974 Succ = LabelBlock;
Mike Stump31feda52009-07-17 01:31:16 +00002975
Ted Kremenek9aae5132007-08-23 21:42:29 +00002976 return LabelBlock;
2977}
2978
Devin Coughlinb6029b72015-11-25 22:35:37 +00002979CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) {
2980 CFGBlock *LastBlock = VisitNoRecurse(E, asc);
2981 for (const BlockDecl::Capture &CI : E->getBlockDecl()->captures()) {
2982 if (Expr *CopyExpr = CI.getCopyExpr()) {
2983 CFGBlock *Tmp = Visit(CopyExpr);
2984 if (Tmp)
2985 LastBlock = Tmp;
2986 }
2987 }
2988 return LastBlock;
2989}
2990
Ted Kremenekda76a942012-04-12 20:34:52 +00002991CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) {
2992 CFGBlock *LastBlock = VisitNoRecurse(E, asc);
2993 for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(),
2994 et = E->capture_init_end(); it != et; ++it) {
2995 if (Expr *Init = *it) {
2996 CFGBlock *Tmp = Visit(Init);
Craig Topper25542942014-05-20 04:30:07 +00002997 if (Tmp)
Ted Kremenekda76a942012-04-12 20:34:52 +00002998 LastBlock = Tmp;
2999 }
3000 }
3001 return LastBlock;
3002}
3003
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003004CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) {
Mike Stump31feda52009-07-17 01:31:16 +00003005 // Goto is a control-flow statement. Thus we stop processing the current
3006 // block and create a new one.
Ted Kremenek93668002009-07-17 22:18:43 +00003007
Ted Kremenek9aae5132007-08-23 21:42:29 +00003008 Block = createBlock(false);
3009 Block->setTerminator(G);
Mike Stump31feda52009-07-17 01:31:16 +00003010
3011 // If we already know the mapping to the label block add the successor now.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003012 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
Mike Stump31feda52009-07-17 01:31:16 +00003013
Ted Kremenek9aae5132007-08-23 21:42:29 +00003014 if (I == LabelMap.end())
3015 // We will need to backpatch this block later.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003016 BackpatchBlocks.push_back(JumpSource(Block, ScopePos));
3017 else {
3018 JumpTarget JT = I->second;
Matthias Gehre351c2182017-07-12 07:04:19 +00003019 addAutomaticObjHandling(ScopePos, JT.scopePosition, G);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003020 addSuccessor(Block, JT.block);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003021 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00003022
Mike Stump31feda52009-07-17 01:31:16 +00003023 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003024}
3025
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003026CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) {
Craig Topper25542942014-05-20 04:30:07 +00003027 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003028
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003029 // Save local scope position because in case of condition variable ScopePos
3030 // won't be restored when traversing AST.
3031 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3032
3033 // Create local scope for init statement and possible condition variable.
3034 // Add destructor for init statement and condition variable.
3035 // Store scope position for continue statement.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003036 if (Stmt *Init = F->getInit())
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003037 addLocalScopeForStmt(Init);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003038 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
3039
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003040 if (VarDecl *VD = F->getConditionVariable())
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003041 addLocalScopeForVarDecl(VD);
3042 LocalScope::const_iterator ContinueScopePos = ScopePos;
3043
Matthias Gehre351c2182017-07-12 07:04:19 +00003044 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), F);
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003045
Peter Szecsi999a25f2017-08-19 11:19:16 +00003046 addLoopExit(F);
3047
Mike Stump014b3ea2009-07-21 01:12:51 +00003048 // "for" is a control-flow statement. Thus we stop processing the current
3049 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003050 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003051 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003052 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003053 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003054 } else
3055 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00003056
Ted Kremenek304a9532010-05-21 20:30:15 +00003057 // Save the current value for the break targets.
3058 // All breaks should go to the code following the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003059 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003060 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Ted Kremenek304a9532010-05-21 20:30:15 +00003061
Craig Topper25542942014-05-20 04:30:07 +00003062 CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr;
Mike Stump773582d2009-07-23 23:25:26 +00003063
Ted Kremenek9aae5132007-08-23 21:42:29 +00003064 // Now create the loop body.
3065 {
Ted Kremenek1362b8b2010-01-19 20:46:35 +00003066 assert(F->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003067
Ted Kremenekb50e7162012-07-14 05:04:10 +00003068 // Save the current values for Block, Succ, continue and break targets.
3069 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3070 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00003071
Ted Kremenekb50e7162012-07-14 05:04:10 +00003072 // Create an empty block to represent the transition block for looping back
3073 // to the head of the loop. If we have increment code, it will
3074 // go in this block as well.
3075 Block = Succ = TransitionBlock = createBlock(false);
3076 TransitionBlock->setLoopTarget(F);
Mike Stump31feda52009-07-17 01:31:16 +00003077
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003078 if (Stmt *I = F->getInc()) {
Mike Stump31feda52009-07-17 01:31:16 +00003079 // Generate increment code in its own basic block. This is the target of
3080 // continue statements.
Ted Kremenek93668002009-07-17 22:18:43 +00003081 Succ = addStmt(I);
Ted Kremenekb0746ca2008-09-04 21:48:47 +00003082 }
Mike Stump31feda52009-07-17 01:31:16 +00003083
Ted Kremenek902393b2009-04-28 00:51:56 +00003084 // Finish up the increment (or empty) block if it hasn't been already.
3085 if (Block) {
3086 assert(Block == Succ);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003087 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003088 return nullptr;
3089 Block = nullptr;
Ted Kremenek902393b2009-04-28 00:51:56 +00003090 }
Mike Stump31feda52009-07-17 01:31:16 +00003091
Ted Kremenekb50e7162012-07-14 05:04:10 +00003092 // The starting block for the loop increment is the block that should
3093 // represent the 'loop target' for looping back to the start of the loop.
3094 ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
3095 ContinueJumpTarget.block->setLoopTarget(F);
Mike Stump31feda52009-07-17 01:31:16 +00003096
Ted Kremenekb50e7162012-07-14 05:04:10 +00003097 // Loop body should end with destructor of Condition variable (if any).
Matthias Gehre351c2182017-07-12 07:04:19 +00003098 addAutomaticObjHandling(ScopePos, LoopBeginScopePos, F);
Ted Kremenek902393b2009-04-28 00:51:56 +00003099
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003100 // If body is not a compound statement create implicit scope
3101 // and add destructors.
3102 if (!isa<CompoundStmt>(F->getBody()))
3103 addLocalScopeAndDtors(F->getBody());
3104
Mike Stump31feda52009-07-17 01:31:16 +00003105 // Now populate the body block, and in the process create new blocks as we
3106 // walk the body of the loop.
Ted Kremenekb50e7162012-07-14 05:04:10 +00003107 BodyBlock = addStmt(F->getBody());
Ted Kremeneke9610502007-08-30 18:39:40 +00003108
Ted Kremenekb50e7162012-07-14 05:04:10 +00003109 if (!BodyBlock) {
3110 // In the case of "for (...;...;...);" we can have a null BodyBlock.
3111 // Use the continue jump target as the proxy for the body.
3112 BodyBlock = ContinueJumpTarget.block;
3113 }
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003114 else if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003115 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003116 }
Ted Kremenekb50e7162012-07-14 05:04:10 +00003117
3118 // Because of short-circuit evaluation, the condition of the loop can span
3119 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
3120 // evaluate the condition.
Craig Topper25542942014-05-20 04:30:07 +00003121 CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003122
Ted Kremenekb50e7162012-07-14 05:04:10 +00003123 do {
3124 Expr *C = F->getCond();
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003125 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003126
3127 // Specially handle logical operators, which have a slightly
3128 // more optimal CFG representation.
Richard Smithf676e452012-07-24 21:02:14 +00003129 if (BinaryOperator *Cond =
Craig Topper25542942014-05-20 04:30:07 +00003130 dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : nullptr))
Ted Kremenekb50e7162012-07-14 05:04:10 +00003131 if (Cond->isLogicalOp()) {
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00003132 std::tie(EntryConditionBlock, ExitConditionBlock) =
Ted Kremenekb50e7162012-07-14 05:04:10 +00003133 VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor);
3134 break;
3135 }
3136
3137 // The default case when not handling logical operators.
3138 EntryConditionBlock = ExitConditionBlock = createBlock(false);
3139 ExitConditionBlock->setTerminator(F);
3140
3141 // See if this is a known constant.
3142 TryResult KnownVal(true);
3143
3144 if (C) {
3145 // Now add the actual condition to the condition block.
3146 // Because the condition itself may contain control-flow, new blocks may
3147 // be created. Thus we update "Succ" after adding the condition.
3148 Block = ExitConditionBlock;
3149 EntryConditionBlock = addStmt(C);
3150
3151 // If this block contains a condition variable, add both the condition
3152 // variable and initializer to the CFG.
3153 if (VarDecl *VD = F->getConditionVariable()) {
3154 if (Expr *Init = VD->getInit()) {
3155 autoCreateBlock();
3156 appendStmt(Block, F->getConditionVariableDeclStmt());
3157 EntryConditionBlock = addStmt(Init);
3158 assert(Block == EntryConditionBlock);
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003159 maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003160 }
3161 }
3162
3163 if (Block && badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003164 return nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003165
3166 KnownVal = tryEvaluateBool(C);
3167 }
3168
3169 // Add the loop body entry as a successor to the condition.
Craig Topper25542942014-05-20 04:30:07 +00003170 addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003171 // Link up the condition block with the code that follows the loop. (the
3172 // false branch).
Craig Topper25542942014-05-20 04:30:07 +00003173 addSuccessor(ExitConditionBlock,
3174 KnownVal.isTrue() ? nullptr : LoopSuccessor);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003175 } while (false);
3176
3177 // Link up the loop-back block to the entry condition block.
3178 addSuccessor(TransitionBlock, EntryConditionBlock);
3179
3180 // The condition block is the implicit successor for any code above the loop.
3181 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003182
Ted Kremenek9aae5132007-08-23 21:42:29 +00003183 // If the loop contains initialization, create a new block for those
Mike Stump31feda52009-07-17 01:31:16 +00003184 // statements. This block can also contain statements that precede the loop.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003185 if (Stmt *I = F->getInit()) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003186 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3187 ScopePos = LoopBeginScopePos;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003188 Block = createBlock();
Ted Kremenek81e14852007-08-27 19:46:09 +00003189 return addStmt(I);
Ted Kremenek9aae5132007-08-23 21:42:29 +00003190 }
Zhanyong Wan59f09c72010-11-22 19:32:14 +00003191
3192 // There is no loop initialization. We are thus basically a while loop.
3193 // NULL out Block to force lazy block construction.
Craig Topper25542942014-05-20 04:30:07 +00003194 Block = nullptr;
Zhanyong Wan59f09c72010-11-22 19:32:14 +00003195 Succ = EntryConditionBlock;
3196 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003197}
3198
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00003199CFGBlock *
3200CFGBuilder::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE,
3201 AddStmtChoice asc) {
3202 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00003203 ConstructionContextLayer::create(cfg->getBumpVectorContext(), MTE),
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00003204 MTE->getTemporary());
3205
3206 return VisitStmt(MTE, asc);
3207}
3208
Ted Kremenek5868ec62010-04-11 17:02:10 +00003209CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00003210 if (asc.alwaysAdd(*this, M)) {
Ted Kremenek5868ec62010-04-11 17:02:10 +00003211 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00003212 appendStmt(Block, M);
Ted Kremenek5868ec62010-04-11 17:02:10 +00003213 }
Ted Kremenek8219b822010-12-16 07:46:53 +00003214 return Visit(M->getBase());
Ted Kremenek5868ec62010-04-11 17:02:10 +00003215}
3216
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003217CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
Ted Kremenek9d56e642008-11-11 17:10:00 +00003218 // Objective-C fast enumeration 'for' statements:
3219 // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
3220 //
3221 // for ( Type newVariable in collection_expression ) { statements }
3222 //
3223 // becomes:
3224 //
3225 // prologue:
3226 // 1. collection_expression
3227 // T. jump to loop_entry
3228 // loop_entry:
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003229 // 1. side-effects of element expression
Ted Kremenek9d56e642008-11-11 17:10:00 +00003230 // 1. ObjCForCollectionStmt [performs binding to newVariable]
3231 // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil]
3232 // TB:
3233 // statements
3234 // T. jump to loop_entry
3235 // FB:
3236 // what comes after
3237 //
3238 // and
3239 //
3240 // Type existingItem;
3241 // for ( existingItem in expression ) { statements }
3242 //
3243 // becomes:
3244 //
Mike Stump31feda52009-07-17 01:31:16 +00003245 // the same with newVariable replaced with existingItem; the binding works
3246 // the same except that for one ObjCForCollectionStmt::getElement() returns
3247 // a DeclStmt and the other returns a DeclRefExpr.
Mike Stump31feda52009-07-17 01:31:16 +00003248
Craig Topper25542942014-05-20 04:30:07 +00003249 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003250
Ted Kremenek9d56e642008-11-11 17:10:00 +00003251 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003252 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003253 return nullptr;
Ted Kremenek9d56e642008-11-11 17:10:00 +00003254 LoopSuccessor = Block;
Craig Topper25542942014-05-20 04:30:07 +00003255 Block = nullptr;
Ted Kremenek93668002009-07-17 22:18:43 +00003256 } else
3257 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00003258
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003259 // Build the condition blocks.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003260 CFGBlock *ExitConditionBlock = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00003261
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003262 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00003263 ExitConditionBlock->setTerminator(S);
3264
3265 // The last statement in the block should be the ObjCForCollectionStmt, which
3266 // performs the actual binding to 'element' and determines if there are any
3267 // more items in the collection.
Ted Kremenek8219b822010-12-16 07:46:53 +00003268 appendStmt(ExitConditionBlock, S);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003269 Block = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003270
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003271 // Walk the 'element' expression to see if there are any side-effects. We
Chris Lattner57540c52011-04-15 05:22:18 +00003272 // generate new blocks as necessary. We DON'T add the statement by default to
Mike Stump31feda52009-07-17 01:31:16 +00003273 // the CFG unless it contains control-flow.
Ted Kremenekc14efa72011-08-17 21:04:19 +00003274 CFGBlock *EntryConditionBlock = Visit(S->getElement(),
3275 AddStmtChoice::NotAlwaysAdd);
Mike Stump31feda52009-07-17 01:31:16 +00003276 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003277 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003278 return nullptr;
3279 Block = nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003280 }
Mike Stump31feda52009-07-17 01:31:16 +00003281
3282 // The condition block is the implicit successor for the loop body as well as
3283 // any code above the loop.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003284 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003285
Ted Kremenek9d56e642008-11-11 17:10:00 +00003286 // Now create the true branch.
Mike Stump31feda52009-07-17 01:31:16 +00003287 {
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003288 // Save the current values for Succ, continue and break targets.
Anna Zaks56b49752013-06-22 00:23:20 +00003289 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003290 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
Anna Zaks56b49752013-06-22 00:23:20 +00003291 save_break(BreakJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00003292
Anna Zaks56b49752013-06-22 00:23:20 +00003293 // Add an intermediate block between the BodyBlock and the
3294 // EntryConditionBlock to represent the "loop back" transition, for looping
3295 // back to the head of the loop.
Craig Topper25542942014-05-20 04:30:07 +00003296 CFGBlock *LoopBackBlock = nullptr;
Anna Zaks56b49752013-06-22 00:23:20 +00003297 Succ = LoopBackBlock = createBlock();
3298 LoopBackBlock->setLoopTarget(S);
3299
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003300 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Anna Zaks56b49752013-06-22 00:23:20 +00003301 ContinueJumpTarget = JumpTarget(Succ, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003302
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003303 CFGBlock *BodyBlock = addStmt(S->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003304
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003305 if (!BodyBlock)
Anna Zaks56b49752013-06-22 00:23:20 +00003306 BodyBlock = ContinueJumpTarget.block; // can happen for "for (X in Y) ;"
Ted Kremenek55957a82009-05-02 00:13:27 +00003307 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003308 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003309 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003310 }
Mike Stump31feda52009-07-17 01:31:16 +00003311
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003312 // This new body block is a successor to our "exit" condition block.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003313 addSuccessor(ExitConditionBlock, BodyBlock);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003314 }
Mike Stump31feda52009-07-17 01:31:16 +00003315
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003316 // Link up the condition block with the code that follows the loop.
3317 // (the false branch).
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003318 addSuccessor(ExitConditionBlock, LoopSuccessor);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003319
Ted Kremenek9d56e642008-11-11 17:10:00 +00003320 // Now create a prologue block to contain the collection expression.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003321 Block = createBlock();
Ted Kremenek9d56e642008-11-11 17:10:00 +00003322 return addStmt(S->getCollection());
Mike Stump31feda52009-07-17 01:31:16 +00003323}
3324
Ted Kremenek5022f1d2012-03-06 23:40:47 +00003325CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) {
3326 // Inline the body.
3327 return addStmt(S->getSubStmt());
3328 // TODO: consider adding cleanups for the end of @autoreleasepool scope.
3329}
3330
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003331CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
Ted Kremenek49805452009-05-02 01:49:13 +00003332 // FIXME: Add locking 'primitives' to CFG for @synchronized.
Mike Stump31feda52009-07-17 01:31:16 +00003333
Ted Kremenek49805452009-05-02 01:49:13 +00003334 // Inline the body.
Ted Kremenek93668002009-07-17 22:18:43 +00003335 CFGBlock *SyncBlock = addStmt(S->getSynchBody());
Mike Stump31feda52009-07-17 01:31:16 +00003336
Ted Kremenekb3c657b2009-05-05 23:11:51 +00003337 // The sync body starts its own basic block. This makes it a little easier
3338 // for diagnostic clients.
3339 if (SyncBlock) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003340 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003341 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003342
Craig Topper25542942014-05-20 04:30:07 +00003343 Block = nullptr;
Ted Kremenekecc31c92010-05-13 16:38:08 +00003344 Succ = SyncBlock;
Ted Kremenekb3c657b2009-05-05 23:11:51 +00003345 }
Mike Stump31feda52009-07-17 01:31:16 +00003346
Ted Kremeneked12f1b2010-09-10 03:05:33 +00003347 // Add the @synchronized to the CFG.
3348 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00003349 appendStmt(Block, S);
Ted Kremeneked12f1b2010-09-10 03:05:33 +00003350
Ted Kremenek49805452009-05-02 01:49:13 +00003351 // Inline the sync expression.
Ted Kremenek93668002009-07-17 22:18:43 +00003352 return addStmt(S->getSynchExpr());
Ted Kremenek49805452009-05-02 01:49:13 +00003353}
Mike Stump31feda52009-07-17 01:31:16 +00003354
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003355CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
Ted Kremenek93668002009-07-17 22:18:43 +00003356 // FIXME
Ted Kremenek89be6522009-04-07 04:26:02 +00003357 return NYS();
Ted Kremenek89cc8ea2009-03-30 22:29:21 +00003358}
Ted Kremenek9d56e642008-11-11 17:10:00 +00003359
John McCallfe96e0b2011-11-06 09:01:30 +00003360CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) {
3361 autoCreateBlock();
3362
3363 // Add the PseudoObject as the last thing.
3364 appendStmt(Block, E);
3365
3366 CFGBlock *lastBlock = Block;
3367
3368 // Before that, evaluate all of the semantics in order. In
3369 // CFG-land, that means appending them in reverse order.
3370 for (unsigned i = E->getNumSemanticExprs(); i != 0; ) {
3371 Expr *Semantic = E->getSemanticExpr(--i);
3372
3373 // If the semantic is an opaque value, we're being asked to bind
3374 // it to its source expression.
3375 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic))
3376 Semantic = OVE->getSourceExpr();
3377
3378 if (CFGBlock *B = Visit(Semantic))
3379 lastBlock = B;
3380 }
3381
3382 return lastBlock;
3383}
3384
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003385CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) {
Craig Topper25542942014-05-20 04:30:07 +00003386 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003387
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003388 // Save local scope position because in case of condition variable ScopePos
3389 // won't be restored when traversing AST.
3390 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3391
3392 // Create local scope for possible condition variable.
3393 // Store scope position for continue statement.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003394 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003395 if (VarDecl *VD = W->getConditionVariable()) {
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003396 addLocalScopeForVarDecl(VD);
Matthias Gehre351c2182017-07-12 07:04:19 +00003397 addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W);
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003398 }
Peter Szecsi999a25f2017-08-19 11:19:16 +00003399 addLoopExit(W);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003400
Mike Stump014b3ea2009-07-21 01:12:51 +00003401 // "while" is a control-flow statement. Thus we stop processing the current
3402 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003403 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003404 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003405 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003406 LoopSuccessor = Block;
Craig Topper25542942014-05-20 04:30:07 +00003407 Block = nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003408 } else {
Ted Kremenek93668002009-07-17 22:18:43 +00003409 LoopSuccessor = Succ;
Ted Kremenek81e14852007-08-27 19:46:09 +00003410 }
Mike Stump31feda52009-07-17 01:31:16 +00003411
Craig Topper25542942014-05-20 04:30:07 +00003412 CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr;
Mike Stump773582d2009-07-23 23:25:26 +00003413
Ted Kremenek9aae5132007-08-23 21:42:29 +00003414 // Process the loop body.
3415 {
Ted Kremenek49936f72009-04-28 03:09:44 +00003416 assert(W->getBody());
Ted Kremenek9aae5132007-08-23 21:42:29 +00003417
Ted Kremenekb50e7162012-07-14 05:04:10 +00003418 // Save the current values for Block, Succ, continue and break targets.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003419 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3420 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
Ted Kremenekb50e7162012-07-14 05:04:10 +00003421 save_break(BreakJumpTarget);
Ted Kremenek49936f72009-04-28 03:09:44 +00003422
Mike Stump31feda52009-07-17 01:31:16 +00003423 // Create an empty block to represent the transition block for looping back
3424 // to the head of the loop.
Ted Kremenekb50e7162012-07-14 05:04:10 +00003425 Succ = TransitionBlock = createBlock(false);
3426 TransitionBlock->setLoopTarget(W);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003427 ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003428
Ted Kremenek9aae5132007-08-23 21:42:29 +00003429 // All breaks should go to the code following the loop.
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003430 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003431
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003432 // Loop body should end with destructor of Condition variable (if any).
Matthias Gehre351c2182017-07-12 07:04:19 +00003433 addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W);
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003434
3435 // If body is not a compound statement create implicit scope
3436 // and add destructors.
3437 if (!isa<CompoundStmt>(W->getBody()))
3438 addLocalScopeAndDtors(W->getBody());
3439
Ted Kremenek9aae5132007-08-23 21:42:29 +00003440 // Create the body. The returned block is the entry to the loop body.
Ted Kremenekb50e7162012-07-14 05:04:10 +00003441 BodyBlock = addStmt(W->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003442
Ted Kremeneke9610502007-08-30 18:39:40 +00003443 if (!BodyBlock)
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003444 BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;"
Ted Kremenekb50e7162012-07-14 05:04:10 +00003445 else if (Block && badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003446 return nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003447 }
3448
3449 // Because of short-circuit evaluation, the condition of the loop can span
3450 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
3451 // evaluate the condition.
Craig Topper25542942014-05-20 04:30:07 +00003452 CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003453
3454 do {
3455 Expr *C = W->getCond();
3456
3457 // Specially handle logical operators, which have a slightly
3458 // more optimal CFG representation.
Richard Smithf676e452012-07-24 21:02:14 +00003459 if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens()))
Ted Kremenekb50e7162012-07-14 05:04:10 +00003460 if (Cond->isLogicalOp()) {
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00003461 std::tie(EntryConditionBlock, ExitConditionBlock) =
3462 VisitLogicalOperator(Cond, W, BodyBlock, LoopSuccessor);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003463 break;
3464 }
3465
3466 // The default case when not handling logical operators.
Ted Kremenek451c4d52012-10-12 22:56:26 +00003467 ExitConditionBlock = createBlock(false);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003468 ExitConditionBlock->setTerminator(W);
3469
3470 // Now add the actual condition to the condition block.
3471 // Because the condition itself may contain control-flow, new blocks may
3472 // be created. Thus we update "Succ" after adding the condition.
3473 Block = ExitConditionBlock;
3474 Block = EntryConditionBlock = addStmt(C);
3475
3476 // If this block contains a condition variable, add both the condition
3477 // variable and initializer to the CFG.
3478 if (VarDecl *VD = W->getConditionVariable()) {
3479 if (Expr *Init = VD->getInit()) {
3480 autoCreateBlock();
3481 appendStmt(Block, W->getConditionVariableDeclStmt());
3482 EntryConditionBlock = addStmt(Init);
3483 assert(Block == EntryConditionBlock);
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003484 maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003485 }
Ted Kremenek55957a82009-05-02 00:13:27 +00003486 }
Mike Stump31feda52009-07-17 01:31:16 +00003487
Ted Kremenekb50e7162012-07-14 05:04:10 +00003488 if (Block && badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003489 return nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003490
3491 // See if this is a known constant.
3492 const TryResult& KnownVal = tryEvaluateBool(C);
3493
Ted Kremenek30754282009-07-24 04:47:11 +00003494 // Add the loop body entry as a successor to the condition.
Craig Topper25542942014-05-20 04:30:07 +00003495 addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003496 // Link up the condition block with the code that follows the loop. (the
3497 // false branch).
Craig Topper25542942014-05-20 04:30:07 +00003498 addSuccessor(ExitConditionBlock,
3499 KnownVal.isTrue() ? nullptr : LoopSuccessor);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003500 } while(false);
3501
3502 // Link up the loop-back block to the entry condition block.
3503 addSuccessor(TransitionBlock, EntryConditionBlock);
Mike Stump31feda52009-07-17 01:31:16 +00003504
3505 // There can be no more statements in the condition block since we loop back
3506 // to this block. NULL out Block to force lazy creation of another block.
Craig Topper25542942014-05-20 04:30:07 +00003507 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003508
Ted Kremenek1ce53c42009-12-24 01:34:10 +00003509 // Return the condition block, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00003510 Succ = EntryConditionBlock;
Ted Kremenek81e14852007-08-27 19:46:09 +00003511 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003512}
Mike Stump11289f42009-09-09 15:08:12 +00003513
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003514CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
Ted Kremenek93668002009-07-17 22:18:43 +00003515 // FIXME: For now we pretend that @catch and the code it contains does not
3516 // exit.
3517 return Block;
3518}
Mike Stump31feda52009-07-17 01:31:16 +00003519
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003520CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
Ted Kremenek93041ba2008-12-09 20:20:09 +00003521 // FIXME: This isn't complete. We basically treat @throw like a return
3522 // statement.
Mike Stump31feda52009-07-17 01:31:16 +00003523
Ted Kremenek0868eea2009-09-24 18:45:41 +00003524 // If we were in the middle of a block we stop processing that block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003525 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003526 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003527
Ted Kremenek93041ba2008-12-09 20:20:09 +00003528 // Create the new block.
3529 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00003530
Ted Kremenek93041ba2008-12-09 20:20:09 +00003531 // The Exit block is the only successor.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003532 addSuccessor(Block, &cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +00003533
3534 // Add the statement to the block. This may create new blocks if S contains
3535 // control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00003536 return VisitStmt(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek93041ba2008-12-09 20:20:09 +00003537}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003538
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003539CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) {
Ted Kremenek0868eea2009-09-24 18:45:41 +00003540 // If we were in the middle of a block we stop processing that block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003541 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003542 return nullptr;
Mike Stump8dd1b6b2009-07-22 22:56:04 +00003543
3544 // Create the new block.
3545 Block = createBlock(false);
3546
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003547 if (TryTerminatedBlock)
3548 // The current try statement is the only successor.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003549 addSuccessor(Block, TryTerminatedBlock);
Ted Kremenekdc03bd02010-08-02 23:46:59 +00003550 else
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003551 // otherwise the Exit block is the only successor.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003552 addSuccessor(Block, &cfg->getExit());
Mike Stump8dd1b6b2009-07-22 22:56:04 +00003553
3554 // Add the statement to the block. This may create new blocks if S contains
3555 // control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00003556 return VisitStmt(T, AddStmtChoice::AlwaysAdd);
Mike Stump8dd1b6b2009-07-22 22:56:04 +00003557}
3558
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003559CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) {
Craig Topper25542942014-05-20 04:30:07 +00003560 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003561
Peter Szecsi999a25f2017-08-19 11:19:16 +00003562 addLoopExit(D);
3563
Mike Stump8d50b6a2009-07-21 01:27:50 +00003564 // "do...while" is a control-flow statement. Thus we stop processing the
3565 // current block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003566 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003567 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003568 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003569 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003570 } else
3571 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00003572
3573 // Because of short-circuit evaluation, the condition of the loop can span
3574 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
3575 // evaluate the condition.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003576 CFGBlock *ExitConditionBlock = createBlock(false);
3577 CFGBlock *EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003578
Ted Kremenek81e14852007-08-27 19:46:09 +00003579 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00003580 ExitConditionBlock->setTerminator(D);
3581
3582 // Now add the actual condition to the condition block. Because the condition
3583 // itself may contain control-flow, new blocks may be created.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003584 if (Stmt *C = D->getCond()) {
Ted Kremenek81e14852007-08-27 19:46:09 +00003585 Block = ExitConditionBlock;
3586 EntryConditionBlock = addStmt(C);
Ted Kremenek55957a82009-05-02 00:13:27 +00003587 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003588 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003589 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003590 }
Ted Kremenek81e14852007-08-27 19:46:09 +00003591 }
Mike Stump31feda52009-07-17 01:31:16 +00003592
Ted Kremeneka1523a32008-02-27 07:20:00 +00003593 // The condition block is the implicit successor for the loop body.
Ted Kremenek81e14852007-08-27 19:46:09 +00003594 Succ = EntryConditionBlock;
3595
Mike Stump773582d2009-07-23 23:25:26 +00003596 // See if this is a known constant.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003597 const TryResult &KnownVal = tryEvaluateBool(D->getCond());
Mike Stump773582d2009-07-23 23:25:26 +00003598
Ted Kremenek9aae5132007-08-23 21:42:29 +00003599 // Process the loop body.
Craig Topper25542942014-05-20 04:30:07 +00003600 CFGBlock *BodyBlock = nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003601 {
Ted Kremenek1362b8b2010-01-19 20:46:35 +00003602 assert(D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003603
Ted Kremenek9aae5132007-08-23 21:42:29 +00003604 // Save the current values for Block, Succ, and continue and break targets
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003605 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3606 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
3607 save_break(BreakJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00003608
Ted Kremenek9aae5132007-08-23 21:42:29 +00003609 // All continues within this loop should go to the condition block
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003610 ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003611
Ted Kremenek9aae5132007-08-23 21:42:29 +00003612 // All breaks should go to the code following the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003613 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003614
Ted Kremenek9aae5132007-08-23 21:42:29 +00003615 // NULL out Block to force lazy instantiation of blocks for the body.
Craig Topper25542942014-05-20 04:30:07 +00003616 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003617
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003618 // If body is not a compound statement create implicit scope
3619 // and add destructors.
3620 if (!isa<CompoundStmt>(D->getBody()))
3621 addLocalScopeAndDtors(D->getBody());
3622
Ted Kremenek9aae5132007-08-23 21:42:29 +00003623 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek93668002009-07-17 22:18:43 +00003624 BodyBlock = addStmt(D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003625
Ted Kremeneke9610502007-08-30 18:39:40 +00003626 if (!BodyBlock)
Ted Kremenek39321aa2008-02-27 00:28:17 +00003627 BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
Ted Kremenek55957a82009-05-02 00:13:27 +00003628 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003629 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003630 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003631 }
Mike Stump31feda52009-07-17 01:31:16 +00003632
Daniel Marjamaki042a3c52016-10-03 08:28:51 +00003633 // Add an intermediate block between the BodyBlock and the
3634 // ExitConditionBlock to represent the "loop back" transition. Create an
3635 // empty block to represent the transition block for looping back to the
3636 // head of the loop.
3637 // FIXME: Can we do this more efficiently without adding another block?
3638 Block = nullptr;
3639 Succ = BodyBlock;
3640 CFGBlock *LoopBackBlock = createBlock();
3641 LoopBackBlock->setLoopTarget(D);
Mike Stump31feda52009-07-17 01:31:16 +00003642
Daniel Marjamaki042a3c52016-10-03 08:28:51 +00003643 if (!KnownVal.isFalse())
Ted Kremenek110974d2010-08-17 20:59:56 +00003644 // Add the loop body entry as a successor to the condition.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003645 addSuccessor(ExitConditionBlock, LoopBackBlock);
Ted Kremenek110974d2010-08-17 20:59:56 +00003646 else
Craig Topper25542942014-05-20 04:30:07 +00003647 addSuccessor(ExitConditionBlock, nullptr);
Ted Kremenek9aae5132007-08-23 21:42:29 +00003648 }
Mike Stump31feda52009-07-17 01:31:16 +00003649
Ted Kremenek30754282009-07-24 04:47:11 +00003650 // Link up the condition block with the code that follows the loop.
3651 // (the false branch).
Craig Topper25542942014-05-20 04:30:07 +00003652 addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00003653
3654 // There can be no more statements in the body block(s) since we loop back to
3655 // the body. NULL out Block to force lazy creation of another block.
Craig Topper25542942014-05-20 04:30:07 +00003656 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003657
Ted Kremenek9aae5132007-08-23 21:42:29 +00003658 // Return the loop body, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00003659 Succ = BodyBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003660 return BodyBlock;
3661}
3662
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003663CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00003664 // "continue" is a control-flow statement. Thus we stop processing the
3665 // current block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003666 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003667 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003668
Ted Kremenek9aae5132007-08-23 21:42:29 +00003669 // Now create a new block that ends with the continue statement.
3670 Block = createBlock(false);
3671 Block->setTerminator(C);
Mike Stump31feda52009-07-17 01:31:16 +00003672
Ted Kremenek9aae5132007-08-23 21:42:29 +00003673 // If there is no target for the continue, then we are looking at an
Ted Kremenek882cf062009-04-07 18:53:24 +00003674 // incomplete AST. This means the CFG cannot be constructed.
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003675 if (ContinueJumpTarget.block) {
Matthias Gehre351c2182017-07-12 07:04:19 +00003676 addAutomaticObjHandling(ScopePos, ContinueJumpTarget.scopePosition, C);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003677 addSuccessor(Block, ContinueJumpTarget.block);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003678 } else
Ted Kremenek882cf062009-04-07 18:53:24 +00003679 badCFG = true;
Mike Stump31feda52009-07-17 01:31:16 +00003680
Ted Kremenek9aae5132007-08-23 21:42:29 +00003681 return Block;
3682}
Mike Stump11289f42009-09-09 15:08:12 +00003683
Peter Collingbournee190dee2011-03-11 19:24:49 +00003684CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
3685 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00003686 if (asc.alwaysAdd(*this, E)) {
Ted Kremenek0747de62009-07-18 00:47:21 +00003687 autoCreateBlock();
Ted Kremenek8219b822010-12-16 07:46:53 +00003688 appendStmt(Block, E);
Ted Kremenek0747de62009-07-18 00:47:21 +00003689 }
Mike Stump11289f42009-09-09 15:08:12 +00003690
Ted Kremenek93668002009-07-17 22:18:43 +00003691 // VLA types have expressions that must be evaluated.
Ted Kremenek9eb0b7d2011-04-14 01:50:50 +00003692 CFGBlock *lastBlock = Block;
3693
Ted Kremenek93668002009-07-17 22:18:43 +00003694 if (E->isArgumentType()) {
John McCall424cec92011-01-19 06:33:43 +00003695 for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr());
Craig Topper25542942014-05-20 04:30:07 +00003696 VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr()))
Ted Kremenek9eb0b7d2011-04-14 01:50:50 +00003697 lastBlock = addStmt(VA->getSizeExpr());
Ted Kremenek84a1ca52011-08-06 00:30:00 +00003698 }
Ted Kremenek9eb0b7d2011-04-14 01:50:50 +00003699 return lastBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003700}
Mike Stump11289f42009-09-09 15:08:12 +00003701
Ted Kremenek93668002009-07-17 22:18:43 +00003702/// VisitStmtExpr - Utility method to handle (nested) statement
3703/// expressions (a GCC extension).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003704CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00003705 if (asc.alwaysAdd(*this, SE)) {
Ted Kremenek0747de62009-07-18 00:47:21 +00003706 autoCreateBlock();
Ted Kremenek8219b822010-12-16 07:46:53 +00003707 appendStmt(Block, SE);
Ted Kremenek0747de62009-07-18 00:47:21 +00003708 }
Ted Kremenek93668002009-07-17 22:18:43 +00003709 return VisitCompoundStmt(SE->getSubStmt());
3710}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003711
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003712CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) {
Mike Stump31feda52009-07-17 01:31:16 +00003713 // "switch" is a control-flow statement. Thus we stop processing the current
3714 // block.
Craig Topper25542942014-05-20 04:30:07 +00003715 CFGBlock *SwitchSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003716
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003717 // Save local scope position because in case of condition variable ScopePos
3718 // won't be restored when traversing AST.
3719 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3720
Richard Smitha547eb22016-07-14 00:11:03 +00003721 // Create local scope for C++17 switch init-stmt if one exists.
Richard Smith509bbd12017-01-13 22:16:41 +00003722 if (Stmt *Init = Terminator->getInit())
Richard Smitha547eb22016-07-14 00:11:03 +00003723 addLocalScopeForStmt(Init);
Richard Smitha547eb22016-07-14 00:11:03 +00003724
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003725 // Create local scope for possible condition variable.
3726 // Store scope position. Add implicit destructor.
Richard Smith509bbd12017-01-13 22:16:41 +00003727 if (VarDecl *VD = Terminator->getConditionVariable())
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003728 addLocalScopeForVarDecl(VD);
Richard Smith509bbd12017-01-13 22:16:41 +00003729
Matthias Gehre351c2182017-07-12 07:04:19 +00003730 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), Terminator);
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003731
Ted Kremenek9aae5132007-08-23 21:42:29 +00003732 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003733 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003734 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003735 SwitchSuccessor = Block;
Mike Stump31feda52009-07-17 01:31:16 +00003736 } else SwitchSuccessor = Succ;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003737
3738 // Save the current "switch" context.
3739 SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
Ted Kremenek654c78f2008-02-13 22:05:39 +00003740 save_default(DefaultCaseBlock);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003741 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
Ted Kremenek654c78f2008-02-13 22:05:39 +00003742
Mike Stump31feda52009-07-17 01:31:16 +00003743 // Set the "default" case to be the block after the switch statement. If the
3744 // switch statement contains a "default:", this value will be overwritten with
3745 // the block for that code.
Ted Kremenek654c78f2008-02-13 22:05:39 +00003746 DefaultCaseBlock = SwitchSuccessor;
Mike Stump31feda52009-07-17 01:31:16 +00003747
Ted Kremenek9aae5132007-08-23 21:42:29 +00003748 // Create a new block that will contain the switch statement.
3749 SwitchTerminatedBlock = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00003750
Ted Kremenek9aae5132007-08-23 21:42:29 +00003751 // Now process the switch body. The code after the switch is the implicit
3752 // successor.
3753 Succ = SwitchSuccessor;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003754 BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003755
3756 // When visiting the body, the case statements should automatically get linked
3757 // up to the switch. We also don't keep a pointer to the body, since all
3758 // control-flow from the switch goes to case/default statements.
Ted Kremenek1362b8b2010-01-19 20:46:35 +00003759 assert(Terminator->getBody() && "switch must contain a non-NULL body");
Craig Topper25542942014-05-20 04:30:07 +00003760 Block = nullptr;
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003761
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003762 // For pruning unreachable case statements, save the current state
3763 // for tracking the condition value.
3764 SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered,
3765 false);
Ted Kremenekbe528712011-03-04 01:03:41 +00003766
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003767 // Determine if the switch condition can be explicitly evaluated.
3768 assert(Terminator->getCond() && "switch condition must be non-NULL");
Ted Kremenekbe528712011-03-04 01:03:41 +00003769 Expr::EvalResult result;
Ted Kremenek53e65382011-03-13 03:48:04 +00003770 bool b = tryEvaluate(Terminator->getCond(), result);
3771 SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond,
Craig Topper25542942014-05-20 04:30:07 +00003772 b ? &result : nullptr);
Ted Kremenekbe528712011-03-04 01:03:41 +00003773
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003774 // If body is not a compound statement create implicit scope
3775 // and add destructors.
3776 if (!isa<CompoundStmt>(Terminator->getBody()))
3777 addLocalScopeAndDtors(Terminator->getBody());
3778
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003779 addStmt(Terminator->getBody());
Ted Kremenek55957a82009-05-02 00:13:27 +00003780 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003781 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003782 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003783 }
Ted Kremenek81e14852007-08-27 19:46:09 +00003784
Mike Stump31feda52009-07-17 01:31:16 +00003785 // If we have no "default:" case, the default transition is to the code
Ted Kremenek35c70f62011-03-16 04:32:01 +00003786 // following the switch body. Moreover, take into account if all the
3787 // cases of a switch are covered (e.g., switching on an enum value).
David Majnemerf69ce862013-06-04 17:38:44 +00003788 //
3789 // Note: We add a successor to a switch that is considered covered yet has no
3790 // case statements if the enumeration has no enumerators.
3791 bool SwitchAlwaysHasSuccessor = false;
3792 SwitchAlwaysHasSuccessor |= switchExclusivelyCovered;
3793 SwitchAlwaysHasSuccessor |= Terminator->isAllEnumCasesCovered() &&
3794 Terminator->getSwitchCaseList();
Ted Kremenek9238c5c2014-02-27 21:56:44 +00003795 addSuccessor(SwitchTerminatedBlock, DefaultCaseBlock,
3796 !SwitchAlwaysHasSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00003797
Ted Kremenek81e14852007-08-27 19:46:09 +00003798 // Add the terminator and condition in the switch block.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00003799 SwitchTerminatedBlock->setTerminator(Terminator);
Ted Kremenek9aae5132007-08-23 21:42:29 +00003800 Block = SwitchTerminatedBlock;
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003801 CFGBlock *LastBlock = addStmt(Terminator->getCond());
Ted Kremenekdc03bd02010-08-02 23:46:59 +00003802
Richard Smitha547eb22016-07-14 00:11:03 +00003803 // If the SwitchStmt contains a condition variable, add both the
Ted Kremenek8b5dc122009-12-24 00:39:26 +00003804 // SwitchStmt and the condition variable initialization to the CFG.
3805 if (VarDecl *VD = Terminator->getConditionVariable()) {
3806 if (Expr *Init = VD->getInit()) {
3807 autoCreateBlock();
Ted Kremenek37881932011-04-04 23:29:12 +00003808 appendStmt(Block, Terminator->getConditionVariableDeclStmt());
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003809 LastBlock = addStmt(Init);
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003810 maybeAddScopeBeginForVarDecl(LastBlock, VD, Init);
Ted Kremenek8b5dc122009-12-24 00:39:26 +00003811 }
3812 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +00003813
Richard Smitha547eb22016-07-14 00:11:03 +00003814 // Finally, if the SwitchStmt contains a C++17 init-stmt, add it to the CFG.
3815 if (Stmt *Init = Terminator->getInit()) {
3816 autoCreateBlock();
3817 LastBlock = addStmt(Init);
3818 }
3819
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003820 return LastBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003821}
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003822
3823static bool shouldAddCase(bool &switchExclusivelyCovered,
Ted Kremenek53e65382011-03-13 03:48:04 +00003824 const Expr::EvalResult *switchCond,
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003825 const CaseStmt *CS,
3826 ASTContext &Ctx) {
Ted Kremenek53e65382011-03-13 03:48:04 +00003827 if (!switchCond)
3828 return true;
3829
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003830 bool addCase = false;
Ted Kremenekbe528712011-03-04 01:03:41 +00003831
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003832 if (!switchExclusivelyCovered) {
Ted Kremenek53e65382011-03-13 03:48:04 +00003833 if (switchCond->Val.isInt()) {
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003834 // Evaluate the LHS of the case value.
Richard Smithfaa32a92011-10-14 20:22:00 +00003835 const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx);
Ted Kremenek53e65382011-03-13 03:48:04 +00003836 const llvm::APSInt &condInt = switchCond->Val.getInt();
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003837
3838 if (condInt == lhsInt) {
3839 addCase = true;
3840 switchExclusivelyCovered = true;
3841 }
Devin Coughlineb538ab2015-09-22 20:31:19 +00003842 else if (condInt > lhsInt) {
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003843 if (const Expr *RHS = CS->getRHS()) {
3844 // Evaluate the RHS of the case value.
Richard Smithfaa32a92011-10-14 20:22:00 +00003845 const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx);
Devin Coughlineb538ab2015-09-22 20:31:19 +00003846 if (V2 >= condInt) {
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003847 addCase = true;
3848 switchExclusivelyCovered = true;
3849 }
3850 }
3851 }
3852 }
3853 else
3854 addCase = true;
3855 }
3856 return addCase;
3857}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003858
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003859CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) {
Mike Stump31feda52009-07-17 01:31:16 +00003860 // CaseStmts are essentially labels, so they are the first statement in a
3861 // block.
Craig Topper25542942014-05-20 04:30:07 +00003862 CFGBlock *TopBlock = nullptr, *LastBlock = nullptr;
Ted Kremenekbe528712011-03-04 01:03:41 +00003863
Ted Kremenek60fa6572010-08-04 23:54:30 +00003864 if (Stmt *Sub = CS->getSubStmt()) {
3865 // For deeply nested chains of CaseStmts, instead of doing a recursion
3866 // (which can blow out the stack), manually unroll and create blocks
3867 // along the way.
3868 while (isa<CaseStmt>(Sub)) {
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003869 CFGBlock *currentBlock = createBlock(false);
3870 currentBlock->setLabel(CS);
Ted Kremenek55e91e82007-08-30 18:48:11 +00003871
Ted Kremenek60fa6572010-08-04 23:54:30 +00003872 if (TopBlock)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003873 addSuccessor(LastBlock, currentBlock);
Ted Kremenek60fa6572010-08-04 23:54:30 +00003874 else
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003875 TopBlock = currentBlock;
Ted Kremenek60fa6572010-08-04 23:54:30 +00003876
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003877 addSuccessor(SwitchTerminatedBlock,
Ted Kremenek53e65382011-03-13 03:48:04 +00003878 shouldAddCase(switchExclusivelyCovered, switchCond,
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003879 CS, *Context)
Craig Topper25542942014-05-20 04:30:07 +00003880 ? currentBlock : nullptr);
Ted Kremenek60fa6572010-08-04 23:54:30 +00003881
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003882 LastBlock = currentBlock;
Ted Kremenek60fa6572010-08-04 23:54:30 +00003883 CS = cast<CaseStmt>(Sub);
3884 Sub = CS->getSubStmt();
3885 }
3886
3887 addStmt(Sub);
3888 }
Mike Stump11289f42009-09-09 15:08:12 +00003889
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003890 CFGBlock *CaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003891 if (!CaseBlock)
3892 CaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00003893
3894 // Cases statements partition blocks, so this is the top of the basic block we
3895 // were processing (the "case XXX:" is the label).
Ted Kremenek93668002009-07-17 22:18:43 +00003896 CaseBlock->setLabel(CS);
3897
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003898 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003899 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003900
3901 // Add this block to the list of successors for the block with the switch
3902 // statement.
Ted Kremenek93668002009-07-17 22:18:43 +00003903 assert(SwitchTerminatedBlock);
Ted Kremenek9238c5c2014-02-27 21:56:44 +00003904 addSuccessor(SwitchTerminatedBlock, CaseBlock,
Ted Kremenek53e65382011-03-13 03:48:04 +00003905 shouldAddCase(switchExclusivelyCovered, switchCond,
Ted Kremenek9238c5c2014-02-27 21:56:44 +00003906 CS, *Context));
Mike Stump31feda52009-07-17 01:31:16 +00003907
Ted Kremenek9aae5132007-08-23 21:42:29 +00003908 // We set Block to NULL to allow lazy creation of a new block (if necessary)
Craig Topper25542942014-05-20 04:30:07 +00003909 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003910
Ted Kremenek60fa6572010-08-04 23:54:30 +00003911 if (TopBlock) {
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003912 addSuccessor(LastBlock, CaseBlock);
Ted Kremenek60fa6572010-08-04 23:54:30 +00003913 Succ = TopBlock;
Zhanyong Wan59f09c72010-11-22 19:32:14 +00003914 } else {
Ted Kremenek60fa6572010-08-04 23:54:30 +00003915 // This block is now the implicit successor of other blocks.
3916 Succ = CaseBlock;
3917 }
Mike Stump31feda52009-07-17 01:31:16 +00003918
Ted Kremenek60fa6572010-08-04 23:54:30 +00003919 return Succ;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003920}
Mike Stump31feda52009-07-17 01:31:16 +00003921
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003922CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) {
Ted Kremenek93668002009-07-17 22:18:43 +00003923 if (Terminator->getSubStmt())
3924 addStmt(Terminator->getSubStmt());
Mike Stump11289f42009-09-09 15:08:12 +00003925
Ted Kremenek654c78f2008-02-13 22:05:39 +00003926 DefaultCaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003927
3928 if (!DefaultCaseBlock)
3929 DefaultCaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00003930
3931 // Default statements partition blocks, so this is the top of the basic block
3932 // we were processing (the "default:" is the label).
Ted Kremenekc1f9a282008-04-16 21:10:48 +00003933 DefaultCaseBlock->setLabel(Terminator);
Mike Stump11289f42009-09-09 15:08:12 +00003934
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003935 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003936 return nullptr;
Ted Kremenek654c78f2008-02-13 22:05:39 +00003937
Mike Stump31feda52009-07-17 01:31:16 +00003938 // Unlike case statements, we don't add the default block to the successors
3939 // for the switch statement immediately. This is done when we finish
3940 // processing the switch statement. This allows for the default case
3941 // (including a fall-through to the code after the switch statement) to always
3942 // be the last successor of a switch-terminated block.
3943
Ted Kremenek654c78f2008-02-13 22:05:39 +00003944 // We set Block to NULL to allow lazy creation of a new block (if necessary)
Craig Topper25542942014-05-20 04:30:07 +00003945 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003946
Ted Kremenek654c78f2008-02-13 22:05:39 +00003947 // This block is now the implicit successor of other blocks.
3948 Succ = DefaultCaseBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003949
3950 return DefaultCaseBlock;
Ted Kremenek9682be12008-02-13 21:46:34 +00003951}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003952
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003953CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) {
3954 // "try"/"catch" is a control-flow statement. Thus we stop processing the
3955 // current block.
Craig Topper25542942014-05-20 04:30:07 +00003956 CFGBlock *TrySuccessor = nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003957
3958 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003959 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003960 return nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003961 TrySuccessor = Block;
3962 } else TrySuccessor = Succ;
3963
Mike Stump0bdba6c2010-01-20 01:15:34 +00003964 CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003965
3966 // Create a new block that will contain the try statement.
Mike Stump845384a2010-01-20 01:30:58 +00003967 CFGBlock *NewTryTerminatedBlock = createBlock(false);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003968 // Add the terminator in the try block.
Mike Stump845384a2010-01-20 01:30:58 +00003969 NewTryTerminatedBlock->setTerminator(Terminator);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003970
Mike Stump0bdba6c2010-01-20 01:15:34 +00003971 bool HasCatchAll = false;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003972 for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) {
3973 // The code after the try is the implicit successor.
3974 Succ = TrySuccessor;
3975 CXXCatchStmt *CS = Terminator->getHandler(h);
Craig Topper25542942014-05-20 04:30:07 +00003976 if (CS->getExceptionDecl() == nullptr) {
Mike Stump0bdba6c2010-01-20 01:15:34 +00003977 HasCatchAll = true;
3978 }
Craig Topper25542942014-05-20 04:30:07 +00003979 Block = nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003980 CFGBlock *CatchBlock = VisitCXXCatchStmt(CS);
Craig Topper25542942014-05-20 04:30:07 +00003981 if (!CatchBlock)
3982 return nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003983 // Add this block to the list of successors for the block with the try
3984 // statement.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003985 addSuccessor(NewTryTerminatedBlock, CatchBlock);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003986 }
Mike Stump0bdba6c2010-01-20 01:15:34 +00003987 if (!HasCatchAll) {
3988 if (PrevTryTerminatedBlock)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003989 addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock);
Mike Stump0bdba6c2010-01-20 01:15:34 +00003990 else
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003991 addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
Mike Stump0bdba6c2010-01-20 01:15:34 +00003992 }
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003993
3994 // The code after the try is the implicit successor.
3995 Succ = TrySuccessor;
3996
Mike Stump845384a2010-01-20 01:30:58 +00003997 // Save the current "try" context.
Ted Kremenek6b9964d2011-08-23 23:05:07 +00003998 SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock);
3999 cfg->addTryDispatchBlock(TryTerminatedBlock);
Mike Stump845384a2010-01-20 01:30:58 +00004000
Ted Kremenek1362b8b2010-01-19 20:46:35 +00004001 assert(Terminator->getTryBlock() && "try must contain a non-NULL body");
Craig Topper25542942014-05-20 04:30:07 +00004002 Block = nullptr;
Ted Kremeneke6ee6712012-11-13 00:12:13 +00004003 return addStmt(Terminator->getTryBlock());
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004004}
4005
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004006CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004007 // CXXCatchStmt are treated like labels, so they are the first statement in a
4008 // block.
4009
Marcin Swiderski3546b1a2010-10-01 01:46:52 +00004010 // Save local scope position because in case of exception variable ScopePos
4011 // won't be restored when traversing AST.
4012 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
4013
4014 // Create local scope for possible exception variable.
4015 // Store scope position. Add implicit destructor.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004016 if (VarDecl *VD = CS->getExceptionDecl()) {
Marcin Swiderski3546b1a2010-10-01 01:46:52 +00004017 LocalScope::const_iterator BeginScopePos = ScopePos;
4018 addLocalScopeForVarDecl(VD);
Matthias Gehre351c2182017-07-12 07:04:19 +00004019 addAutomaticObjHandling(ScopePos, BeginScopePos, CS);
Marcin Swiderski3546b1a2010-10-01 01:46:52 +00004020 }
4021
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004022 if (CS->getHandlerBlock())
4023 addStmt(CS->getHandlerBlock());
4024
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004025 CFGBlock *CatchBlock = Block;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004026 if (!CatchBlock)
4027 CatchBlock = createBlock();
Ted Kremenek8fdb59f2012-03-10 01:34:17 +00004028
4029 // CXXCatchStmt is more than just a label. They have semantic meaning
4030 // as well, as they implicitly "initialize" the catch variable. Add
4031 // it to the CFG as a CFGElement so that the control-flow of these
4032 // semantics gets captured.
4033 appendStmt(CatchBlock, CS);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004034
Ted Kremenek8fdb59f2012-03-10 01:34:17 +00004035 // Also add the CXXCatchStmt as a label, to mirror handling of regular
4036 // labels.
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004037 CatchBlock->setLabel(CS);
4038
Ted Kremenek8fdb59f2012-03-10 01:34:17 +00004039 // Bail out if the CFG is bad.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00004040 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004041 return nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004042
4043 // We set Block to NULL to allow lazy creation of a new block (if necessary)
Craig Topper25542942014-05-20 04:30:07 +00004044 Block = nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004045
4046 return CatchBlock;
4047}
4048
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004049CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) {
Richard Smith02e85f32011-04-14 22:09:26 +00004050 // C++0x for-range statements are specified as [stmt.ranged]:
4051 //
4052 // {
4053 // auto && __range = range-init;
4054 // for ( auto __begin = begin-expr,
4055 // __end = end-expr;
4056 // __begin != __end;
4057 // ++__begin ) {
4058 // for-range-declaration = *__begin;
4059 // statement
4060 // }
4061 // }
4062
4063 // Save local scope position before the addition of the implicit variables.
4064 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
4065
4066 // Create local scopes and destructors for range, begin and end variables.
4067 if (Stmt *Range = S->getRangeStmt())
4068 addLocalScopeForStmt(Range);
Richard Smith01694c32016-03-20 10:33:40 +00004069 if (Stmt *Begin = S->getBeginStmt())
4070 addLocalScopeForStmt(Begin);
4071 if (Stmt *End = S->getEndStmt())
4072 addLocalScopeForStmt(End);
Matthias Gehre351c2182017-07-12 07:04:19 +00004073 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), S);
Richard Smith02e85f32011-04-14 22:09:26 +00004074
4075 LocalScope::const_iterator ContinueScopePos = ScopePos;
4076
4077 // "for" is a control-flow statement. Thus we stop processing the current
4078 // block.
Craig Topper25542942014-05-20 04:30:07 +00004079 CFGBlock *LoopSuccessor = nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004080 if (Block) {
4081 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004082 return nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004083 LoopSuccessor = Block;
4084 } else
4085 LoopSuccessor = Succ;
4086
4087 // Save the current value for the break targets.
4088 // All breaks should go to the code following the loop.
4089 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
4090 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
4091
4092 // The block for the __begin != __end expression.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004093 CFGBlock *ConditionBlock = createBlock(false);
Richard Smith02e85f32011-04-14 22:09:26 +00004094 ConditionBlock->setTerminator(S);
4095
4096 // Now add the actual condition to the condition block.
4097 if (Expr *C = S->getCond()) {
4098 Block = ConditionBlock;
4099 CFGBlock *BeginConditionBlock = addStmt(C);
4100 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004101 return nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004102 assert(BeginConditionBlock == ConditionBlock &&
4103 "condition block in for-range was unexpectedly complex");
4104 (void)BeginConditionBlock;
4105 }
4106
4107 // The condition block is the implicit successor for the loop body as well as
4108 // any code above the loop.
4109 Succ = ConditionBlock;
4110
4111 // See if this is a known constant.
4112 TryResult KnownVal(true);
4113
4114 if (S->getCond())
4115 KnownVal = tryEvaluateBool(S->getCond());
4116
4117 // Now create the loop body.
4118 {
4119 assert(S->getBody());
4120
4121 // Save the current values for Block, Succ, and continue targets.
4122 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
4123 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
4124
4125 // Generate increment code in its own basic block. This is the target of
4126 // continue statements.
Craig Topper25542942014-05-20 04:30:07 +00004127 Block = nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004128 Succ = addStmt(S->getInc());
Alexander Kornienkoff2046a2016-07-08 10:50:51 +00004129 if (badCFG)
4130 return nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004131 ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
4132
4133 // The starting block for the loop increment is the block that should
4134 // represent the 'loop target' for looping back to the start of the loop.
4135 ContinueJumpTarget.block->setLoopTarget(S);
4136
4137 // Finish up the increment block and prepare to start the loop body.
4138 assert(Block);
4139 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004140 return nullptr;
4141 Block = nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004142
4143 // Add implicit scope and dtors for loop variable.
4144 addLocalScopeAndDtors(S->getLoopVarStmt());
4145
4146 // Populate a new block to contain the loop body and loop variable.
Ted Kremeneke6ee6712012-11-13 00:12:13 +00004147 addStmt(S->getBody());
Richard Smith02e85f32011-04-14 22:09:26 +00004148 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004149 return nullptr;
Ted Kremeneke6ee6712012-11-13 00:12:13 +00004150 CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt());
Richard Smith02e85f32011-04-14 22:09:26 +00004151 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004152 return nullptr;
4153
Richard Smith02e85f32011-04-14 22:09:26 +00004154 // This new body block is a successor to our condition block.
Craig Topper25542942014-05-20 04:30:07 +00004155 addSuccessor(ConditionBlock,
4156 KnownVal.isFalse() ? nullptr : LoopVarStmtBlock);
Richard Smith02e85f32011-04-14 22:09:26 +00004157 }
4158
4159 // Link up the condition block with the code that follows the loop (the
4160 // false branch).
Craig Topper25542942014-05-20 04:30:07 +00004161 addSuccessor(ConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor);
Richard Smith02e85f32011-04-14 22:09:26 +00004162
4163 // Add the initialization statements.
4164 Block = createBlock();
Richard Smith01694c32016-03-20 10:33:40 +00004165 addStmt(S->getBeginStmt());
4166 addStmt(S->getEndStmt());
Richard Smith0c502d22011-04-18 15:49:25 +00004167 return addStmt(S->getRangeStmt());
Richard Smith02e85f32011-04-14 22:09:26 +00004168}
4169
John McCall5d413782010-12-06 08:20:24 +00004170CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E,
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004171 AddStmtChoice asc) {
Jordan Rose6d671cc2012-09-05 22:55:23 +00004172 if (BuildOpts.AddTemporaryDtors) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004173 // If adding implicit destructors visit the full expression for adding
4174 // destructors of temporaries.
Manuel Klimekdeb02622014-08-08 07:37:13 +00004175 TempDtorContext Context;
Manuel Klimekb5616c92014-08-07 10:42:17 +00004176 VisitForTemporaryDtors(E->getSubExpr(), false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004177
4178 // Full expression has to be added as CFGStmt so it will be sequenced
4179 // before destructors of it's temporaries.
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004180 asc = asc.withAlwaysAdd(true);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004181 }
4182 return Visit(E->getSubExpr(), asc);
4183}
4184
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004185CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E,
4186 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00004187 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004188 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00004189 appendStmt(Block, E);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004190
Artem Dergachev783a4572018-02-23 22:20:39 +00004191 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00004192 ConstructionContextLayer::create(cfg->getBumpVectorContext(), E),
Artem Dergachev783a4572018-02-23 22:20:39 +00004193 E->getSubExpr());
Artem Dergachev1f68d9d2018-02-15 03:13:36 +00004194
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004195 // We do not want to propagate the AlwaysAdd property.
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004196 asc = asc.withAlwaysAdd(false);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004197 }
4198 return Visit(E->getSubExpr(), asc);
4199}
4200
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004201CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C,
4202 AddStmtChoice asc) {
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004203 autoCreateBlock();
Artem Dergachev41ffb302018-02-08 22:58:15 +00004204 appendConstructor(Block, C);
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004205
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004206 return VisitChildren(C);
4207}
4208
Jordan Rosec9176072014-01-13 17:59:19 +00004209CFGBlock *CFGBuilder::VisitCXXNewExpr(CXXNewExpr *NE,
4210 AddStmtChoice asc) {
Jordan Rosec9176072014-01-13 17:59:19 +00004211 autoCreateBlock();
4212 appendStmt(Block, NE);
Jordan Rose6f5f7192014-01-14 17:29:12 +00004213
Artem Dergachev783a4572018-02-23 22:20:39 +00004214 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00004215 ConstructionContextLayer::create(cfg->getBumpVectorContext(), NE),
Artem Dergachev783a4572018-02-23 22:20:39 +00004216 const_cast<CXXConstructExpr *>(NE->getConstructExpr()));
Artem Dergachev41ffb302018-02-08 22:58:15 +00004217
Jordan Rosec9176072014-01-13 17:59:19 +00004218 if (NE->getInitializer())
Jordan Rose6f5f7192014-01-14 17:29:12 +00004219 Block = Visit(NE->getInitializer());
Artem Dergachev41ffb302018-02-08 22:58:15 +00004220
Jordan Rosec9176072014-01-13 17:59:19 +00004221 if (BuildOpts.AddCXXNewAllocator)
4222 appendNewAllocator(Block, NE);
Artem Dergachev41ffb302018-02-08 22:58:15 +00004223
Jordan Rosec9176072014-01-13 17:59:19 +00004224 if (NE->isArray())
Jordan Rose6f5f7192014-01-14 17:29:12 +00004225 Block = Visit(NE->getArraySize());
Artem Dergachev41ffb302018-02-08 22:58:15 +00004226
Jordan Rosec9176072014-01-13 17:59:19 +00004227 for (CXXNewExpr::arg_iterator I = NE->placement_arg_begin(),
4228 E = NE->placement_arg_end(); I != E; ++I)
Jordan Rose6f5f7192014-01-14 17:29:12 +00004229 Block = Visit(*I);
Artem Dergachev41ffb302018-02-08 22:58:15 +00004230
Jordan Rosec9176072014-01-13 17:59:19 +00004231 return Block;
4232}
Jordan Rosed2f40792013-09-03 17:00:57 +00004233
4234CFGBlock *CFGBuilder::VisitCXXDeleteExpr(CXXDeleteExpr *DE,
4235 AddStmtChoice asc) {
4236 autoCreateBlock();
4237 appendStmt(Block, DE);
4238 QualType DTy = DE->getDestroyedType();
Martin Bohmef44cde82016-12-05 11:33:19 +00004239 if (!DTy.isNull()) {
4240 DTy = DTy.getNonReferenceType();
4241 CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl();
4242 if (RD) {
4243 if (RD->isCompleteDefinition() && !RD->hasTrivialDestructor())
4244 appendDeleteDtor(Block, RD, DE);
4245 }
Jordan Rosed2f40792013-09-03 17:00:57 +00004246 }
4247
4248 return VisitChildren(DE);
4249}
4250
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004251CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E,
4252 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00004253 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004254 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00004255 appendStmt(Block, E);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004256 // We do not want to propagate the AlwaysAdd property.
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004257 asc = asc.withAlwaysAdd(false);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004258 }
4259 return Visit(E->getSubExpr(), asc);
4260}
4261
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004262CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C,
4263 AddStmtChoice asc) {
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004264 autoCreateBlock();
Artem Dergachev1f68d9d2018-02-15 03:13:36 +00004265 appendConstructor(Block, C);
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004266 return VisitChildren(C);
4267}
4268
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004269CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E,
4270 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00004271 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004272 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00004273 appendStmt(Block, E);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004274 }
Ted Kremenek8219b822010-12-16 07:46:53 +00004275 return Visit(E->getSubExpr(), AddStmtChoice());
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004276}
4277
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004278CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) {
Mike Stump31feda52009-07-17 01:31:16 +00004279 // Lazily create the indirect-goto dispatch block if there isn't one already.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004280 CFGBlock *IBlock = cfg->getIndirectGotoBlock();
Mike Stump31feda52009-07-17 01:31:16 +00004281
Ted Kremenekeda180e22007-08-28 19:26:49 +00004282 if (!IBlock) {
4283 IBlock = createBlock(false);
4284 cfg->setIndirectGotoBlock(IBlock);
4285 }
Mike Stump31feda52009-07-17 01:31:16 +00004286
Ted Kremenekeda180e22007-08-28 19:26:49 +00004287 // IndirectGoto is a control-flow statement. Thus we stop processing the
4288 // current block and create a new one.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00004289 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004290 return nullptr;
Ted Kremenek93668002009-07-17 22:18:43 +00004291
Ted Kremenekeda180e22007-08-28 19:26:49 +00004292 Block = createBlock(false);
4293 Block->setTerminator(I);
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004294 addSuccessor(Block, IBlock);
Ted Kremenekeda180e22007-08-28 19:26:49 +00004295 return addStmt(I->getTarget());
4296}
4297
Manuel Klimekb5616c92014-08-07 10:42:17 +00004298CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary,
4299 TempDtorContext &Context) {
Jordan Rose6d671cc2012-09-05 22:55:23 +00004300 assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors);
4301
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004302tryAgain:
4303 if (!E) {
4304 badCFG = true;
Craig Topper25542942014-05-20 04:30:07 +00004305 return nullptr;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004306 }
4307 switch (E->getStmtClass()) {
4308 default:
Manuel Klimekb5616c92014-08-07 10:42:17 +00004309 return VisitChildrenForTemporaryDtors(E, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004310
4311 case Stmt::BinaryOperatorClass:
Manuel Klimekb5616c92014-08-07 10:42:17 +00004312 return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E),
4313 Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004314
4315 case Stmt::CXXBindTemporaryExprClass:
4316 return VisitCXXBindTemporaryExprForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004317 cast<CXXBindTemporaryExpr>(E), BindToTemporary, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004318
John McCallc07a0c72011-02-17 10:25:35 +00004319 case Stmt::BinaryConditionalOperatorClass:
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004320 case Stmt::ConditionalOperatorClass:
4321 return VisitConditionalOperatorForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004322 cast<AbstractConditionalOperator>(E), BindToTemporary, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004323
4324 case Stmt::ImplicitCastExprClass:
4325 // For implicit cast we want BindToTemporary to be passed further.
4326 E = cast<CastExpr>(E)->getSubExpr();
4327 goto tryAgain;
4328
Manuel Klimekb0042c42014-07-30 08:34:42 +00004329 case Stmt::CXXFunctionalCastExprClass:
4330 // For functional cast we want BindToTemporary to be passed further.
4331 E = cast<CXXFunctionalCastExpr>(E)->getSubExpr();
4332 goto tryAgain;
4333
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004334 case Stmt::ParenExprClass:
4335 E = cast<ParenExpr>(E)->getSubExpr();
4336 goto tryAgain;
Richard Smith4137af22014-07-27 05:12:49 +00004337
Manuel Klimekb0042c42014-07-30 08:34:42 +00004338 case Stmt::MaterializeTemporaryExprClass: {
4339 const MaterializeTemporaryExpr* MTE = cast<MaterializeTemporaryExpr>(E);
4340 BindToTemporary = (MTE->getStorageDuration() != SD_FullExpression);
4341 SmallVector<const Expr *, 2> CommaLHSs;
4342 SmallVector<SubobjectAdjustment, 2> Adjustments;
4343 // Find the expression whose lifetime needs to be extended.
4344 E = const_cast<Expr *>(
4345 cast<MaterializeTemporaryExpr>(E)
4346 ->GetTemporaryExpr()
4347 ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments));
4348 // Visit the skipped comma operator left-hand sides for other temporaries.
4349 for (const Expr *CommaLHS : CommaLHSs) {
4350 VisitForTemporaryDtors(const_cast<Expr *>(CommaLHS),
Manuel Klimekb5616c92014-08-07 10:42:17 +00004351 /*BindToTemporary=*/false, Context);
Manuel Klimekb0042c42014-07-30 08:34:42 +00004352 }
Douglas Gregorfe314812011-06-21 17:03:29 +00004353 goto tryAgain;
Manuel Klimekb0042c42014-07-30 08:34:42 +00004354 }
Richard Smith4137af22014-07-27 05:12:49 +00004355
4356 case Stmt::BlockExprClass:
4357 // Don't recurse into blocks; their subexpressions don't get evaluated
4358 // here.
4359 return Block;
4360
4361 case Stmt::LambdaExprClass: {
4362 // For lambda expressions, only recurse into the capture initializers,
4363 // and not the body.
4364 auto *LE = cast<LambdaExpr>(E);
4365 CFGBlock *B = Block;
4366 for (Expr *Init : LE->capture_inits()) {
Manuel Klimekb5616c92014-08-07 10:42:17 +00004367 if (CFGBlock *R = VisitForTemporaryDtors(
4368 Init, /*BindToTemporary=*/false, Context))
Richard Smith4137af22014-07-27 05:12:49 +00004369 B = R;
4370 }
4371 return B;
4372 }
4373
4374 case Stmt::CXXDefaultArgExprClass:
4375 E = cast<CXXDefaultArgExpr>(E)->getExpr();
4376 goto tryAgain;
4377
4378 case Stmt::CXXDefaultInitExprClass:
4379 E = cast<CXXDefaultInitExpr>(E)->getExpr();
4380 goto tryAgain;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004381 }
4382}
4383
Manuel Klimekb5616c92014-08-07 10:42:17 +00004384CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E,
4385 TempDtorContext &Context) {
4386 if (isa<LambdaExpr>(E)) {
4387 // Do not visit the children of lambdas; they have their own CFGs.
4388 return Block;
4389 }
4390
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004391 // When visiting children for destructors we want to visit them in reverse
Ted Kremenek8ae67872013-02-05 22:00:19 +00004392 // order that they will appear in the CFG. Because the CFG is built
4393 // bottom-up, this means we visit them in their natural order, which
4394 // reverses them in the CFG.
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004395 CFGBlock *B = Block;
Benjamin Kramer642f1732015-07-02 21:03:14 +00004396 for (Stmt *Child : E->children())
4397 if (Child)
Manuel Klimekb5616c92014-08-07 10:42:17 +00004398 if (CFGBlock *R = VisitForTemporaryDtors(Child, false, Context))
Ted Kremenek8ae67872013-02-05 22:00:19 +00004399 B = R;
Benjamin Kramer642f1732015-07-02 21:03:14 +00004400
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004401 return B;
4402}
4403
Manuel Klimekb5616c92014-08-07 10:42:17 +00004404CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors(
4405 BinaryOperator *E, TempDtorContext &Context) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004406 if (E->isLogicalOp()) {
Manuel Klimekb5616c92014-08-07 10:42:17 +00004407 VisitForTemporaryDtors(E->getLHS(), false, Context);
Manuel Klimekedf925b92014-08-07 18:44:19 +00004408 TryResult RHSExecuted = tryEvaluateBool(E->getLHS());
4409 if (RHSExecuted.isKnown() && E->getOpcode() == BO_LOr)
4410 RHSExecuted.negate();
Manuel Klimek7c030132014-08-07 16:05:51 +00004411
Manuel Klimekedf925b92014-08-07 18:44:19 +00004412 // We do not know at CFG-construction time whether the right-hand-side was
4413 // executed, thus we add a branch node that depends on the temporary
4414 // constructor call.
Manuel Klimekdeb02622014-08-08 07:37:13 +00004415 TempDtorContext RHSContext(
4416 bothKnownTrue(Context.KnownExecuted, RHSExecuted));
Manuel Klimekedf925b92014-08-07 18:44:19 +00004417 VisitForTemporaryDtors(E->getRHS(), false, RHSContext);
Manuel Klimekdeb02622014-08-08 07:37:13 +00004418 InsertTempDtorDecisionBlock(RHSContext);
Manuel Klimek7c030132014-08-07 16:05:51 +00004419
Manuel Klimekb5616c92014-08-07 10:42:17 +00004420 return Block;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004421 }
4422
Zhanyong Wan59f09c72010-11-22 19:32:14 +00004423 if (E->isAssignmentOp()) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004424 // For assignment operator (=) LHS expression is visited
4425 // before RHS expression. For destructors visit them in reverse order.
Manuel Klimekb5616c92014-08-07 10:42:17 +00004426 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context);
4427 CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004428 return LHSBlock ? LHSBlock : RHSBlock;
4429 }
4430
4431 // For any other binary operator RHS expression is visited before
4432 // LHS expression (order of children). For destructors visit them in reverse
4433 // order.
Manuel Klimekb5616c92014-08-07 10:42:17 +00004434 CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context);
4435 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004436 return RHSBlock ? RHSBlock : LHSBlock;
4437}
4438
4439CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004440 CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004441 // First add destructors for temporaries in subexpression.
Manuel Klimekb5616c92014-08-07 10:42:17 +00004442 CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr(), false, Context);
Zhongxing Xufee455f2010-11-14 15:23:50 +00004443 if (!BindToTemporary) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004444 // If lifetime of temporary is not prolonged (by assigning to constant
4445 // reference) add destructor for it.
Chandler Carruthad747252011-09-13 06:09:01 +00004446
Chandler Carruthad747252011-09-13 06:09:01 +00004447 const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor();
Manuel Klimekb5616c92014-08-07 10:42:17 +00004448
Richard Trieu95a192a2015-05-28 00:14:02 +00004449 if (Dtor->getParent()->isAnyDestructorNoReturn()) {
Manuel Klimekb5616c92014-08-07 10:42:17 +00004450 // If the destructor is marked as a no-return destructor, we need to
4451 // create a new block for the destructor which does not have as a
4452 // successor anything built thus far. Control won't flow out of this
4453 // block.
4454 if (B) Succ = B;
Chandler Carrutha70991b2011-09-13 09:13:49 +00004455 Block = createNoReturnBlock();
Manuel Klimekb5616c92014-08-07 10:42:17 +00004456 } else if (Context.needsTempDtorBranch()) {
4457 // If we need to introduce a branch, we add a new block that we will hook
4458 // up to a decision block later.
4459 if (B) Succ = B;
4460 Block = createBlock();
Ted Kremenekff909f92014-03-08 02:22:25 +00004461 } else {
Chandler Carruthad747252011-09-13 06:09:01 +00004462 autoCreateBlock();
Ted Kremenekff909f92014-03-08 02:22:25 +00004463 }
Manuel Klimekb5616c92014-08-07 10:42:17 +00004464 if (Context.needsTempDtorBranch()) {
4465 Context.setDecisionPoint(Succ, E);
4466 }
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004467 appendTemporaryDtor(Block, E);
Manuel Klimekb5616c92014-08-07 10:42:17 +00004468
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004469 B = Block;
4470 }
4471 return B;
4472}
4473
Manuel Klimekb5616c92014-08-07 10:42:17 +00004474void CFGBuilder::InsertTempDtorDecisionBlock(const TempDtorContext &Context,
4475 CFGBlock *FalseSucc) {
4476 if (!Context.TerminatorExpr) {
4477 // If no temporary was found, we do not need to insert a decision point.
4478 return;
4479 }
4480 assert(Context.TerminatorExpr);
4481 CFGBlock *Decision = createBlock(false);
4482 Decision->setTerminator(CFGTerminator(Context.TerminatorExpr, true));
Manuel Klimekdeb02622014-08-08 07:37:13 +00004483 addSuccessor(Decision, Block, !Context.KnownExecuted.isFalse());
Manuel Klimekedf925b92014-08-07 18:44:19 +00004484 addSuccessor(Decision, FalseSucc ? FalseSucc : Context.Succ,
Manuel Klimekdeb02622014-08-08 07:37:13 +00004485 !Context.KnownExecuted.isTrue());
Manuel Klimekb5616c92014-08-07 10:42:17 +00004486 Block = Decision;
4487}
4488
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004489CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004490 AbstractConditionalOperator *E, bool BindToTemporary,
4491 TempDtorContext &Context) {
4492 VisitForTemporaryDtors(E->getCond(), false, Context);
4493 CFGBlock *ConditionBlock = Block;
4494 CFGBlock *ConditionSucc = Succ;
Manuel Klimek0ce91082014-08-07 14:25:43 +00004495 TryResult ConditionVal = tryEvaluateBool(E->getCond());
Manuel Klimekedf925b92014-08-07 18:44:19 +00004496 TryResult NegatedVal = ConditionVal;
4497 if (NegatedVal.isKnown()) NegatedVal.negate();
Manuel Klimekcadc6032014-08-07 17:02:21 +00004498
Manuel Klimekdeb02622014-08-08 07:37:13 +00004499 TempDtorContext TrueContext(
4500 bothKnownTrue(Context.KnownExecuted, ConditionVal));
Manuel Klimekcadc6032014-08-07 17:02:21 +00004501 VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary, TrueContext);
Manuel Klimekb5616c92014-08-07 10:42:17 +00004502 CFGBlock *TrueBlock = Block;
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004503
Manuel Klimekb5616c92014-08-07 10:42:17 +00004504 Block = ConditionBlock;
4505 Succ = ConditionSucc;
Manuel Klimekdeb02622014-08-08 07:37:13 +00004506 TempDtorContext FalseContext(
4507 bothKnownTrue(Context.KnownExecuted, NegatedVal));
Manuel Klimekcadc6032014-08-07 17:02:21 +00004508 VisitForTemporaryDtors(E->getFalseExpr(), BindToTemporary, FalseContext);
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004509
Manuel Klimekb5616c92014-08-07 10:42:17 +00004510 if (TrueContext.TerminatorExpr && FalseContext.TerminatorExpr) {
Manuel Klimekdeb02622014-08-08 07:37:13 +00004511 InsertTempDtorDecisionBlock(FalseContext, TrueBlock);
Manuel Klimekb5616c92014-08-07 10:42:17 +00004512 } else if (TrueContext.TerminatorExpr) {
4513 Block = TrueBlock;
Manuel Klimekdeb02622014-08-08 07:37:13 +00004514 InsertTempDtorDecisionBlock(TrueContext);
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004515 } else {
Manuel Klimekdeb02622014-08-08 07:37:13 +00004516 InsertTempDtorDecisionBlock(FalseContext);
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004517 }
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004518 return Block;
4519}
4520
Mike Stump31feda52009-07-17 01:31:16 +00004521/// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has
4522/// no successors or predecessors. If this is the first block created in the
4523/// CFG, it is automatically set to be the Entry and Exit of the CFG.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004524CFGBlock *CFG::createBlock() {
Ted Kremenek889073f2007-08-23 16:51:22 +00004525 bool first_block = begin() == end();
4526
4527 // Create the block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004528 CFGBlock *Mem = getAllocator().Allocate<CFGBlock>();
Anna Zaks02a1fc12011-12-05 21:33:11 +00004529 new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this);
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004530 Blocks.push_back(Mem, BlkBVC);
Ted Kremenek889073f2007-08-23 16:51:22 +00004531
4532 // If this is the first block, set it as the Entry and Exit.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004533 if (first_block)
4534 Entry = Exit = &back();
Ted Kremenek889073f2007-08-23 16:51:22 +00004535
4536 // Return the block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004537 return &back();
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00004538}
4539
David Blaikiee90195c2014-08-29 18:53:26 +00004540/// buildCFG - Constructs a CFG from an AST.
4541std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement,
4542 ASTContext *C, const BuildOptions &BO) {
Ted Kremenekf9d82902011-03-10 01:14:05 +00004543 CFGBuilder Builder(C, BO);
4544 return Builder.buildCFG(D, Statement);
Ted Kremenek889073f2007-08-23 16:51:22 +00004545}
4546
Ted Kremenek8cfe2072011-03-03 01:21:32 +00004547const CXXDestructorDecl *
4548CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const {
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004549 switch (getKind()) {
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004550 case CFGElement::Initializer:
Jordan Rosec9176072014-01-13 17:59:19 +00004551 case CFGElement::NewAllocator:
Peter Szecsi999a25f2017-08-19 11:19:16 +00004552 case CFGElement::LoopExit:
Matthias Gehre351c2182017-07-12 07:04:19 +00004553 case CFGElement::LifetimeEnds:
Artem Dergachev41ffb302018-02-08 22:58:15 +00004554 case CFGElement::Statement:
4555 case CFGElement::Constructor:
Artem Dergachev1527dec2018-03-12 23:12:40 +00004556 case CFGElement::CXXRecordTypedCall:
Maxim Ostapenkodebca452018-03-12 12:26:15 +00004557 case CFGElement::ScopeBegin:
4558 case CFGElement::ScopeEnd:
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004559 llvm_unreachable("getDestructorDecl should only be used with "
4560 "ImplicitDtors");
4561 case CFGElement::AutomaticObjectDtor: {
David Blaikie2a01f5d2013-02-21 20:58:29 +00004562 const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004563 QualType ty = var->getType();
Devin Coughlin6eb1ca72016-08-02 21:07:23 +00004564
4565 // FIXME: See CFGBuilder::addLocalScopeForVarDecl.
4566 //
4567 // Lifetime-extending constructs are handled here. This works for a single
4568 // temporary in an initializer expression.
4569 if (ty->isReferenceType()) {
4570 if (const Expr *Init = var->getInit()) {
4571 ty = getReferenceInitTemporaryType(astContext, Init);
4572 }
4573 }
4574
Ted Kremeneke7d78882012-03-19 23:48:41 +00004575 while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) {
Ted Kremenek8cfe2072011-03-03 01:21:32 +00004576 ty = arrayType->getElementType();
4577 }
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004578 const RecordType *recordType = ty->getAs<RecordType>();
4579 const CXXRecordDecl *classDecl =
Ted Kremenek1676a042011-03-03 01:01:03 +00004580 cast<CXXRecordDecl>(recordType->getDecl());
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004581 return classDecl->getDestructor();
4582 }
Jordan Rosed2f40792013-09-03 17:00:57 +00004583 case CFGElement::DeleteDtor: {
4584 const CXXDeleteExpr *DE = castAs<CFGDeleteDtor>().getDeleteExpr();
4585 QualType DTy = DE->getDestroyedType();
4586 DTy = DTy.getNonReferenceType();
4587 const CXXRecordDecl *classDecl =
4588 astContext.getBaseElementType(DTy)->getAsCXXRecordDecl();
4589 return classDecl->getDestructor();
4590 }
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004591 case CFGElement::TemporaryDtor: {
4592 const CXXBindTemporaryExpr *bindExpr =
David Blaikie2a01f5d2013-02-21 20:58:29 +00004593 castAs<CFGTemporaryDtor>().getBindTemporaryExpr();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004594 const CXXTemporary *temp = bindExpr->getTemporary();
4595 return temp->getDestructor();
4596 }
4597 case CFGElement::BaseDtor:
4598 case CFGElement::MemberDtor:
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004599 // Not yet supported.
Craig Topper25542942014-05-20 04:30:07 +00004600 return nullptr;
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004601 }
Ted Kremenek1676a042011-03-03 01:01:03 +00004602 llvm_unreachable("getKind() returned bogus value");
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004603}
4604
Ted Kremenek8cfe2072011-03-03 01:21:32 +00004605bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const {
Richard Smith10876ef2013-01-17 01:30:42 +00004606 if (const CXXDestructorDecl *DD = getDestructorDecl(astContext))
4607 return DD->isNoReturn();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004608 return false;
Ted Kremenek96a7a592011-03-01 03:15:10 +00004609}
4610
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00004611//===----------------------------------------------------------------------===//
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004612// CFGBlock operations.
Ted Kremenekb0371852010-09-09 00:06:04 +00004613//===----------------------------------------------------------------------===//
4614
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004615CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, bool IsReachable)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004616 : ReachableBlock(IsReachable ? B : nullptr),
4617 UnreachableBlock(!IsReachable ? B : nullptr,
4618 B && IsReachable ? AB_Normal : AB_Unreachable) {}
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004619
4620CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, CFGBlock *AlternateBlock)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004621 : ReachableBlock(B),
4622 UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock,
4623 B == AlternateBlock ? AB_Alternate : AB_Normal) {}
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004624
4625void CFGBlock::addSuccessor(AdjacentBlock Succ,
4626 BumpVectorContext &C) {
4627 if (CFGBlock *B = Succ.getReachableBlock())
David Blaikie9afd5da2014-03-04 23:39:18 +00004628 B->Preds.push_back(AdjacentBlock(this, Succ.isReachable()), C);
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004629
4630 if (CFGBlock *UnreachableB = Succ.getPossiblyUnreachableBlock())
David Blaikie9afd5da2014-03-04 23:39:18 +00004631 UnreachableB->Preds.push_back(AdjacentBlock(this, false), C);
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004632
4633 Succs.push_back(Succ, C);
4634}
4635
Ted Kremenekb0371852010-09-09 00:06:04 +00004636bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F,
Ted Kremenekf146cd12010-09-09 02:57:48 +00004637 const CFGBlock *From, const CFGBlock *To) {
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004638 if (F.IgnoreNullPredecessors && !From)
4639 return true;
4640
4641 if (To && From && F.IgnoreDefaultsWithCoveredEnums) {
Ted Kremenekb0371852010-09-09 00:06:04 +00004642 // If the 'To' has no label or is labeled but the label isn't a
4643 // CaseStmt then filter this edge.
4644 if (const SwitchStmt *S =
Ted Kremenek89794742011-03-07 22:04:39 +00004645 dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) {
Ted Kremenekb0371852010-09-09 00:06:04 +00004646 if (S->isAllEnumCasesCovered()) {
Ted Kremenek89794742011-03-07 22:04:39 +00004647 const Stmt *L = To->getLabel();
4648 if (!L || !isa<CaseStmt>(L))
4649 return true;
Ted Kremenekb0371852010-09-09 00:06:04 +00004650 }
4651 }
4652 }
4653
4654 return false;
4655}
4656
4657//===----------------------------------------------------------------------===//
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00004658// CFG pretty printing
4659//===----------------------------------------------------------------------===//
4660
Ted Kremenek7e776b12007-08-22 18:22:34 +00004661namespace {
4662
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00004663class StmtPrinterHelper : public PrinterHelper {
Eugene Zelenko38c70522017-12-07 21:55:09 +00004664 using StmtMapTy = llvm::DenseMap<const Stmt *, std::pair<unsigned, unsigned>>;
4665 using DeclMapTy = llvm::DenseMap<const Decl *, std::pair<unsigned, unsigned>>;
4666
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004667 StmtMapTy StmtMap;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004668 DeclMapTy DeclMap;
Eugene Zelenko38c70522017-12-07 21:55:09 +00004669 signed currentBlock = 0;
4670 unsigned currStmt = 0;
Chris Lattnerc61089a2009-06-30 01:26:17 +00004671 const LangOptions &LangOpts;
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004672
Eugene Zelenko38c70522017-12-07 21:55:09 +00004673public:
Chris Lattnerc61089a2009-06-30 01:26:17 +00004674 StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004675 : LangOpts(LO) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004676 for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
4677 unsigned j = 1;
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004678 for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004679 BI != BEnd; ++BI, ++j ) {
David Blaikie00be69a2013-02-23 00:29:34 +00004680 if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) {
4681 const Stmt *stmt= SE->getStmt();
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004682 std::pair<unsigned, unsigned> P((*I)->getBlockID(), j);
Ted Kremenek96a7a592011-03-01 03:15:10 +00004683 StmtMap[stmt] = P;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004684
Ted Kremenek96a7a592011-03-01 03:15:10 +00004685 switch (stmt->getStmtClass()) {
4686 case Stmt::DeclStmtClass:
Artem Dergachev41ffb302018-02-08 22:58:15 +00004687 DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P;
4688 break;
Ted Kremenek96a7a592011-03-01 03:15:10 +00004689 case Stmt::IfStmtClass: {
4690 const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable();
4691 if (var)
4692 DeclMap[var] = P;
4693 break;
4694 }
4695 case Stmt::ForStmtClass: {
4696 const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable();
4697 if (var)
4698 DeclMap[var] = P;
4699 break;
4700 }
4701 case Stmt::WhileStmtClass: {
4702 const VarDecl *var =
4703 cast<WhileStmt>(stmt)->getConditionVariable();
4704 if (var)
4705 DeclMap[var] = P;
4706 break;
4707 }
4708 case Stmt::SwitchStmtClass: {
4709 const VarDecl *var =
4710 cast<SwitchStmt>(stmt)->getConditionVariable();
4711 if (var)
4712 DeclMap[var] = P;
4713 break;
4714 }
4715 case Stmt::CXXCatchStmtClass: {
4716 const VarDecl *var =
4717 cast<CXXCatchStmt>(stmt)->getExceptionDecl();
4718 if (var)
4719 DeclMap[var] = P;
4720 break;
4721 }
4722 default:
4723 break;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004724 }
4725 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004726 }
Zhongxing Xu2cd7a782010-09-16 01:25:47 +00004727 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004728 }
Mike Stump31feda52009-07-17 01:31:16 +00004729
Eugene Zelenko38c70522017-12-07 21:55:09 +00004730 ~StmtPrinterHelper() override = default;
Mike Stump31feda52009-07-17 01:31:16 +00004731
Chris Lattnerc61089a2009-06-30 01:26:17 +00004732 const LangOptions &getLangOpts() const { return LangOpts; }
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004733 void setBlockID(signed i) { currentBlock = i; }
Ted Kremenekd94854a2012-08-22 06:26:15 +00004734 void setStmtID(unsigned i) { currStmt = i; }
Mike Stump31feda52009-07-17 01:31:16 +00004735
Craig Topperb45acb82014-03-14 06:02:07 +00004736 bool handledStmt(Stmt *S, raw_ostream &OS) override {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004737 StmtMapTy::iterator I = StmtMap.find(S);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004738
4739 if (I == StmtMap.end())
4740 return false;
Mike Stump31feda52009-07-17 01:31:16 +00004741
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004742 if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
Ted Kremenekd94854a2012-08-22 06:26:15 +00004743 && I->second.second == currStmt) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004744 return false;
Ted Kremenek60983dc2010-01-19 20:52:05 +00004745 }
Mike Stump31feda52009-07-17 01:31:16 +00004746
Ted Kremenek60983dc2010-01-19 20:52:05 +00004747 OS << "[B" << I->second.first << "." << I->second.second << "]";
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004748 return true;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004749 }
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004750
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004751 bool handleDecl(const Decl *D, raw_ostream &OS) {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004752 DeclMapTy::iterator I = DeclMap.find(D);
4753
4754 if (I == DeclMap.end())
4755 return false;
4756
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004757 if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
Ted Kremenekd94854a2012-08-22 06:26:15 +00004758 && I->second.second == currStmt) {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004759 return false;
4760 }
4761
4762 OS << "[B" << I->second.first << "." << I->second.second << "]";
4763 return true;
4764 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004765};
4766
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00004767class CFGBlockTerminatorPrint
Eugene Zelenko38c70522017-12-07 21:55:09 +00004768 : public StmtVisitor<CFGBlockTerminatorPrint,void> {
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004769 raw_ostream &OS;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004770 StmtPrinterHelper* Helper;
Douglas Gregor7de59662009-05-29 20:38:28 +00004771 PrintingPolicy Policy;
Eugene Zelenko38c70522017-12-07 21:55:09 +00004772
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004773public:
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004774 CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper,
Chris Lattnerc61089a2009-06-30 01:26:17 +00004775 const PrintingPolicy &Policy)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004776 : OS(os), Helper(helper), Policy(Policy) {
Ted Kremenek5d0fb1e2013-12-11 23:44:05 +00004777 this->Policy.IncludeNewlines = false;
4778 }
Mike Stump31feda52009-07-17 01:31:16 +00004779
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004780 void VisitIfStmt(IfStmt *I) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004781 OS << "if ";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004782 if (Stmt *C = I->getCond())
4783 C->printPretty(OS, Helper, Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00004784 }
Mike Stump31feda52009-07-17 01:31:16 +00004785
Ted Kremenek9aae5132007-08-23 21:42:29 +00004786 // Default case.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004787 void VisitStmt(Stmt *Terminator) {
Mike Stump31feda52009-07-17 01:31:16 +00004788 Terminator->printPretty(OS, Helper, Policy);
4789 }
4790
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00004791 void VisitDeclStmt(DeclStmt *DS) {
4792 VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
4793 OS << "static init " << VD->getName();
4794 }
4795
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004796 void VisitForStmt(ForStmt *F) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004797 OS << "for (" ;
Ted Kremenek60983dc2010-01-19 20:52:05 +00004798 if (F->getInit())
4799 OS << "...";
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00004800 OS << "; ";
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004801 if (Stmt *C = F->getCond())
Ted Kremenek60983dc2010-01-19 20:52:05 +00004802 C->printPretty(OS, Helper, Policy);
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00004803 OS << "; ";
Ted Kremenek60983dc2010-01-19 20:52:05 +00004804 if (F->getInc())
4805 OS << "...";
Ted Kremenek15647632008-01-30 23:02:42 +00004806 OS << ")";
Ted Kremenek9aae5132007-08-23 21:42:29 +00004807 }
Mike Stump31feda52009-07-17 01:31:16 +00004808
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004809 void VisitWhileStmt(WhileStmt *W) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004810 OS << "while " ;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004811 if (Stmt *C = W->getCond())
Ted Kremenek60983dc2010-01-19 20:52:05 +00004812 C->printPretty(OS, Helper, Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00004813 }
Mike Stump31feda52009-07-17 01:31:16 +00004814
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004815 void VisitDoStmt(DoStmt *D) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004816 OS << "do ... while ";
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004817 if (Stmt *C = D->getCond())
Ted Kremenek60983dc2010-01-19 20:52:05 +00004818 C->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00004819 }
Mike Stump31feda52009-07-17 01:31:16 +00004820
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004821 void VisitSwitchStmt(SwitchStmt *Terminator) {
Ted Kremenek9e248872007-08-27 21:27:44 +00004822 OS << "switch ";
Douglas Gregor7de59662009-05-29 20:38:28 +00004823 Terminator->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00004824 }
Mike Stump31feda52009-07-17 01:31:16 +00004825
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004826 void VisitCXXTryStmt(CXXTryStmt *CS) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004827 OS << "try ...";
4828 }
4829
Nico Weber699670e2017-08-23 15:33:16 +00004830 void VisitSEHTryStmt(SEHTryStmt *CS) {
4831 OS << "__try ...";
4832 }
4833
John McCallc07a0c72011-02-17 10:25:35 +00004834 void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) {
Richard Trieuddd01ce2014-06-09 22:53:25 +00004835 if (Stmt *Cond = C->getCond())
4836 Cond->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00004837 OS << " ? ... : ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004838 }
Mike Stump31feda52009-07-17 01:31:16 +00004839
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004840 void VisitChooseExpr(ChooseExpr *C) {
Ted Kremenek391f94a2007-08-31 22:29:13 +00004841 OS << "__builtin_choose_expr( ";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004842 if (Stmt *Cond = C->getCond())
4843 Cond->printPretty(OS, Helper, Policy);
Ted Kremenek15647632008-01-30 23:02:42 +00004844 OS << " )";
Ted Kremenek391f94a2007-08-31 22:29:13 +00004845 }
Mike Stump31feda52009-07-17 01:31:16 +00004846
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004847 void VisitIndirectGotoStmt(IndirectGotoStmt *I) {
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004848 OS << "goto *";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004849 if (Stmt *T = I->getTarget())
4850 T->printPretty(OS, Helper, Policy);
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004851 }
Mike Stump31feda52009-07-17 01:31:16 +00004852
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004853 void VisitBinaryOperator(BinaryOperator* B) {
4854 if (!B->isLogicalOp()) {
4855 VisitExpr(B);
4856 return;
4857 }
Mike Stump31feda52009-07-17 01:31:16 +00004858
Richard Trieuddd01ce2014-06-09 22:53:25 +00004859 if (B->getLHS())
4860 B->getLHS()->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00004861
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004862 switch (B->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +00004863 case BO_LOr:
Ted Kremenek15647632008-01-30 23:02:42 +00004864 OS << " || ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004865 return;
John McCalle3027922010-08-25 11:45:40 +00004866 case BO_LAnd:
Ted Kremenek15647632008-01-30 23:02:42 +00004867 OS << " && ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004868 return;
4869 default:
David Blaikie83d382b2011-09-23 05:06:16 +00004870 llvm_unreachable("Invalid logical operator.");
Mike Stump31feda52009-07-17 01:31:16 +00004871 }
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004872 }
Mike Stump31feda52009-07-17 01:31:16 +00004873
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004874 void VisitExpr(Expr *E) {
Douglas Gregor7de59662009-05-29 20:38:28 +00004875 E->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00004876 }
Ted Kremenekfcc14172014-03-08 02:22:29 +00004877
4878public:
4879 void print(CFGTerminator T) {
4880 if (T.isTemporaryDtorsBranch())
4881 OS << "(Temp Dtor) ";
4882 Visit(T.getStmt());
4883 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00004884};
Eugene Zelenko38c70522017-12-07 21:55:09 +00004885
4886} // namespace
Chris Lattnerc61089a2009-06-30 01:26:17 +00004887
Artem Dergachev5a281bb2018-02-10 02:18:04 +00004888static void print_initializer(raw_ostream &OS, StmtPrinterHelper &Helper,
4889 const CXXCtorInitializer *I) {
4890 if (I->isBaseInitializer())
4891 OS << I->getBaseClass()->getAsCXXRecordDecl()->getName();
4892 else if (I->isDelegatingInitializer())
4893 OS << I->getTypeSourceInfo()->getType()->getAsCXXRecordDecl()->getName();
4894 else
4895 OS << I->getAnyMember()->getName();
4896 OS << "(";
4897 if (Expr *IE = I->getInit())
4898 IE->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts()));
4899 OS << ")";
4900
4901 if (I->isBaseInitializer())
4902 OS << " (Base initializer)";
4903 else if (I->isDelegatingInitializer())
4904 OS << " (Delegating initializer)";
4905 else
4906 OS << " (Member initializer)";
4907}
4908
Artem Dergachev1527dec2018-03-12 23:12:40 +00004909static void print_construction_context(raw_ostream &OS,
4910 StmtPrinterHelper &Helper,
4911 const ConstructionContext *CC) {
4912 const Stmt *S1 = nullptr, *S2 = nullptr;
4913 switch (CC->getKind()) {
4914 case ConstructionContext::ConstructorInitializerKind: {
4915 OS << ", ";
4916 const auto *ICC = cast<ConstructorInitializerConstructionContext>(CC);
4917 print_initializer(OS, Helper, ICC->getCXXCtorInitializer());
4918 break;
4919 }
4920 case ConstructionContext::SimpleVariableKind: {
Artem Dergachev317291e2018-03-22 21:37:39 +00004921 const auto *SDSCC = cast<SimpleVariableConstructionContext>(CC);
4922 S1 = SDSCC->getDeclStmt();
4923 break;
4924 }
4925 case ConstructionContext::CXX17ElidedCopyVariableKind: {
4926 const auto *CDSCC = cast<CXX17ElidedCopyVariableConstructionContext>(CC);
4927 S1 = CDSCC->getDeclStmt();
4928 S2 = CDSCC->getCXXBindTemporaryExpr();
Artem Dergachev1527dec2018-03-12 23:12:40 +00004929 break;
4930 }
4931 case ConstructionContext::NewAllocatedObjectKind: {
4932 const auto *NECC = cast<NewAllocatedObjectConstructionContext>(CC);
4933 S1 = NECC->getCXXNewExpr();
4934 break;
4935 }
Artem Dergachev317291e2018-03-22 21:37:39 +00004936 case ConstructionContext::SimpleReturnedValueKind: {
4937 const auto *RSCC = cast<SimpleReturnedValueConstructionContext>(CC);
Artem Dergachev1527dec2018-03-12 23:12:40 +00004938 S1 = RSCC->getReturnStmt();
4939 break;
4940 }
Artem Dergachev317291e2018-03-22 21:37:39 +00004941 case ConstructionContext::CXX17ElidedCopyReturnedValueKind: {
4942 const auto *RSCC =
4943 cast<CXX17ElidedCopyReturnedValueConstructionContext>(CC);
4944 S1 = RSCC->getReturnStmt();
4945 S2 = RSCC->getCXXBindTemporaryExpr();
4946 break;
4947 }
Artem Dergachev1527dec2018-03-12 23:12:40 +00004948 case ConstructionContext::TemporaryObjectKind: {
4949 const auto *TOCC = cast<TemporaryObjectConstructionContext>(CC);
4950 S1 = TOCC->getCXXBindTemporaryExpr();
4951 S2 = TOCC->getMaterializedTemporaryExpr();
4952 break;
4953 }
4954 }
4955 if (S1) {
4956 OS << ", ";
4957 Helper.handledStmt(const_cast<Stmt *>(S1), OS);
4958 }
4959 if (S2) {
4960 OS << ", ";
4961 Helper.handledStmt(const_cast<Stmt *>(S2), OS);
4962 }
4963}
4964
Aaron Ballmanff924b02013-11-18 20:11:50 +00004965static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper,
Mike Stump92244b02010-01-19 22:00:14 +00004966 const CFGElement &E) {
David Blaikie00be69a2013-02-23 00:29:34 +00004967 if (Optional<CFGStmt> CS = E.getAs<CFGStmt>()) {
4968 const Stmt *S = CS->getStmt();
Richard Trieuddd01ce2014-06-09 22:53:25 +00004969 assert(S != nullptr && "Expecting non-null Stmt");
4970
Aaron Ballmanff924b02013-11-18 20:11:50 +00004971 // special printing for statement-expressions.
4972 if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) {
4973 const CompoundStmt *Sub = SE->getSubStmt();
Mike Stump31feda52009-07-17 01:31:16 +00004974
Benjamin Kramer5733e352015-07-18 17:09:36 +00004975 auto Children = Sub->children();
4976 if (Children.begin() != Children.end()) {
Aaron Ballmanff924b02013-11-18 20:11:50 +00004977 OS << "({ ... ; ";
4978 Helper.handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
4979 OS << " })\n";
4980 return;
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004981 }
4982 }
Aaron Ballmanff924b02013-11-18 20:11:50 +00004983 // special printing for comma expressions.
4984 if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
4985 if (B->getOpcode() == BO_Comma) {
4986 OS << "... , ";
4987 Helper.handledStmt(B->getRHS(),OS);
4988 OS << '\n';
4989 return;
4990 }
4991 }
4992 S->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts()));
Mike Stump31feda52009-07-17 01:31:16 +00004993
Artem Dergachev1527dec2018-03-12 23:12:40 +00004994 if (auto VTC = E.getAs<CFGCXXRecordTypedCall>()) {
4995 if (isa<CXXOperatorCallExpr>(S))
4996 OS << " (OperatorCall)";
4997 OS << " (CXXRecordTypedCall";
4998 print_construction_context(OS, Helper, VTC->getConstructionContext());
4999 OS << ")";
5000 } else if (isa<CXXOperatorCallExpr>(S)) {
Zhanyong Wan59f09c72010-11-22 19:32:14 +00005001 OS << " (OperatorCall)";
Artem Dergachev41ffb302018-02-08 22:58:15 +00005002 } else if (isa<CXXBindTemporaryExpr>(S)) {
Zhanyong Wan59f09c72010-11-22 19:32:14 +00005003 OS << " (BindTemporary)";
Artem Dergachev41ffb302018-02-08 22:58:15 +00005004 } else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) {
Artem Dergachev1527dec2018-03-12 23:12:40 +00005005 OS << " (CXXConstructExpr";
Artem Dergachev41ffb302018-02-08 22:58:15 +00005006 if (Optional<CFGConstructor> CE = E.getAs<CFGConstructor>()) {
Artem Dergachev1527dec2018-03-12 23:12:40 +00005007 print_construction_context(OS, Helper, CE->getConstructionContext());
Artem Dergachev41ffb302018-02-08 22:58:15 +00005008 }
Artem Dergachev1527dec2018-03-12 23:12:40 +00005009 OS << ", " << CCE->getType().getAsString() << ")";
Artem Dergachev41ffb302018-02-08 22:58:15 +00005010 } else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) {
Ted Kremenek0ffba932011-12-21 19:32:38 +00005011 OS << " (" << CE->getStmtClassName() << ", "
5012 << CE->getCastKindName()
5013 << ", " << CE->getType().getAsString()
5014 << ")";
5015 }
Mike Stump31feda52009-07-17 01:31:16 +00005016
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00005017 // Expressions need a newline.
5018 if (isa<Expr>(S))
5019 OS << '\n';
David Blaikie00be69a2013-02-23 00:29:34 +00005020 } else if (Optional<CFGInitializer> IE = E.getAs<CFGInitializer>()) {
Artem Dergachev5a281bb2018-02-10 02:18:04 +00005021 print_initializer(OS, Helper, IE->getInitializer());
5022 OS << '\n';
David Blaikie00be69a2013-02-23 00:29:34 +00005023 } else if (Optional<CFGAutomaticObjDtor> DE =
5024 E.getAs<CFGAutomaticObjDtor>()) {
5025 const VarDecl *VD = DE->getVarDecl();
Aaron Ballmanff924b02013-11-18 20:11:50 +00005026 Helper.handleDecl(VD, OS);
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00005027
Marcin Swiderski52e4bc12010-10-25 07:00:40 +00005028 const Type* T = VD->getType().getTypePtr();
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00005029 if (const ReferenceType* RT = T->getAs<ReferenceType>())
5030 T = RT->getPointeeType().getTypePtr();
Richard Smithf676e452012-07-24 21:02:14 +00005031 T = T->getBaseElementTypeUnsafe();
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00005032
5033 OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()";
5034 OS << " (Implicit destructor)\n";
Matthias Gehre351c2182017-07-12 07:04:19 +00005035 } else if (Optional<CFGLifetimeEnds> DE = E.getAs<CFGLifetimeEnds>()) {
5036 const VarDecl *VD = DE->getVarDecl();
5037 Helper.handleDecl(VD, OS);
5038
5039 OS << " (Lifetime ends)\n";
Peter Szecsi999a25f2017-08-19 11:19:16 +00005040 } else if (Optional<CFGLoopExit> LE = E.getAs<CFGLoopExit>()) {
5041 const Stmt *LoopStmt = LE->getLoopStmt();
5042 OS << LoopStmt->getStmtClassName() << " (LoopExit)\n";
Maxim Ostapenkodebca452018-03-12 12:26:15 +00005043 } else if (Optional<CFGScopeBegin> SB = E.getAs<CFGScopeBegin>()) {
5044 OS << "CFGScopeBegin(";
5045 if (const VarDecl *VD = SB->getVarDecl())
5046 OS << VD->getQualifiedNameAsString();
5047 OS << ")\n";
5048 } else if (Optional<CFGScopeEnd> SE = E.getAs<CFGScopeEnd>()) {
5049 OS << "CFGScopeEnd(";
5050 if (const VarDecl *VD = SE->getVarDecl())
5051 OS << VD->getQualifiedNameAsString();
5052 OS << ")\n";
Jordan Rosec9176072014-01-13 17:59:19 +00005053 } else if (Optional<CFGNewAllocator> NE = E.getAs<CFGNewAllocator>()) {
5054 OS << "CFGNewAllocator(";
5055 if (const CXXNewExpr *AllocExpr = NE->getAllocatorExpr())
5056 AllocExpr->getType().print(OS, PrintingPolicy(Helper.getLangOpts()));
5057 OS << ")\n";
Jordan Rosed2f40792013-09-03 17:00:57 +00005058 } else if (Optional<CFGDeleteDtor> DE = E.getAs<CFGDeleteDtor>()) {
5059 const CXXRecordDecl *RD = DE->getCXXRecordDecl();
5060 if (!RD)
5061 return;
5062 CXXDeleteExpr *DelExpr =
5063 const_cast<CXXDeleteExpr*>(DE->getDeleteExpr());
Aaron Ballmanff924b02013-11-18 20:11:50 +00005064 Helper.handledStmt(cast<Stmt>(DelExpr->getArgument()), OS);
Jordan Rosed2f40792013-09-03 17:00:57 +00005065 OS << "->~" << RD->getName().str() << "()";
5066 OS << " (Implicit destructor)\n";
David Blaikie00be69a2013-02-23 00:29:34 +00005067 } else if (Optional<CFGBaseDtor> BE = E.getAs<CFGBaseDtor>()) {
5068 const CXXBaseSpecifier *BS = BE->getBaseSpecifier();
Marcin Swiderski20b88732010-10-05 05:37:00 +00005069 OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()";
Zhongxing Xu614e17d2010-10-05 08:38:06 +00005070 OS << " (Base object destructor)\n";
David Blaikie00be69a2013-02-23 00:29:34 +00005071 } else if (Optional<CFGMemberDtor> ME = E.getAs<CFGMemberDtor>()) {
5072 const FieldDecl *FD = ME->getFieldDecl();
Richard Smithf676e452012-07-24 21:02:14 +00005073 const Type *T = FD->getType()->getBaseElementTypeUnsafe();
Marcin Swiderski20b88732010-10-05 05:37:00 +00005074 OS << "this->" << FD->getName();
Marcin Swiderski01769902010-10-25 07:05:54 +00005075 OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()";
Zhongxing Xu614e17d2010-10-05 08:38:06 +00005076 OS << " (Member object destructor)\n";
David Blaikie00be69a2013-02-23 00:29:34 +00005077 } else if (Optional<CFGTemporaryDtor> TE = E.getAs<CFGTemporaryDtor>()) {
5078 const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr();
Pavel Labathd527cf82013-09-02 09:09:15 +00005079 OS << "~";
Aaron Ballmanff924b02013-11-18 20:11:50 +00005080 BT->getType().print(OS, PrintingPolicy(Helper.getLangOpts()));
Pavel Labathd527cf82013-09-02 09:09:15 +00005081 OS << "() (Temporary object destructor)\n";
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00005082 }
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00005083}
Mike Stump31feda52009-07-17 01:31:16 +00005084
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005085static void print_block(raw_ostream &OS, const CFG* cfg,
5086 const CFGBlock &B,
Aaron Ballmanff924b02013-11-18 20:11:50 +00005087 StmtPrinterHelper &Helper, bool print_edges,
Ted Kremenek72be32a2011-12-22 23:33:52 +00005088 bool ShowColors) {
Aaron Ballmanff924b02013-11-18 20:11:50 +00005089 Helper.setBlockID(B.getBlockID());
Mike Stump31feda52009-07-17 01:31:16 +00005090
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005091 // Print the header.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005092 if (ShowColors)
5093 OS.changeColor(raw_ostream::YELLOW, true);
5094
5095 OS << "\n [B" << B.getBlockID();
Mike Stump31feda52009-07-17 01:31:16 +00005096
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005097 if (&B == &cfg->getEntry())
Ted Kremenek72be32a2011-12-22 23:33:52 +00005098 OS << " (ENTRY)]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005099 else if (&B == &cfg->getExit())
Ted Kremenek72be32a2011-12-22 23:33:52 +00005100 OS << " (EXIT)]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005101 else if (&B == cfg->getIndirectGotoBlock())
Ted Kremenek72be32a2011-12-22 23:33:52 +00005102 OS << " (INDIRECT GOTO DISPATCH)]\n";
Jordan Rose398fb002014-04-01 16:39:33 +00005103 else if (B.hasNoReturnElement())
5104 OS << " (NORETURN)]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005105 else
Ted Kremenek72be32a2011-12-22 23:33:52 +00005106 OS << "]\n";
5107
5108 if (ShowColors)
5109 OS.resetColor();
Mike Stump31feda52009-07-17 01:31:16 +00005110
Ted Kremenek71eca012007-08-29 23:20:49 +00005111 // Print the label of this block.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005112 if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005113 if (print_edges)
Ted Kremenek72be32a2011-12-22 23:33:52 +00005114 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00005115
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005116 if (LabelStmt *L = dyn_cast<LabelStmt>(Label))
Ted Kremenek71eca012007-08-29 23:20:49 +00005117 OS << L->getName();
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005118 else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) {
Ted Kremenek71eca012007-08-29 23:20:49 +00005119 OS << "case ";
Richard Trieuddd01ce2014-06-09 22:53:25 +00005120 if (C->getLHS())
5121 C->getLHS()->printPretty(OS, &Helper,
5122 PrintingPolicy(Helper.getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00005123 if (C->getRHS()) {
5124 OS << " ... ";
Aaron Ballmanff924b02013-11-18 20:11:50 +00005125 C->getRHS()->printPretty(OS, &Helper,
5126 PrintingPolicy(Helper.getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00005127 }
Mike Stump92244b02010-01-19 22:00:14 +00005128 } else if (isa<DefaultStmt>(Label))
Ted Kremenek71eca012007-08-29 23:20:49 +00005129 OS << "default";
Mike Stump92244b02010-01-19 22:00:14 +00005130 else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00005131 OS << "catch (";
Mike Stump0bdba6c2010-01-20 01:15:34 +00005132 if (CS->getExceptionDecl())
Aaron Ballmanff924b02013-11-18 20:11:50 +00005133 CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()),
Mike Stump0bdba6c2010-01-20 01:15:34 +00005134 0);
5135 else
5136 OS << "...";
Mike Stumpbbf5ba62010-01-19 02:20:09 +00005137 OS << ")";
Nico Weber699670e2017-08-23 15:33:16 +00005138 } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) {
5139 OS << "__except (";
5140 ES->getFilterExpr()->printPretty(OS, &Helper,
5141 PrintingPolicy(Helper.getLangOpts()), 0);
5142 OS << ")";
Mike Stumpbbf5ba62010-01-19 02:20:09 +00005143 } else
David Blaikie83d382b2011-09-23 05:06:16 +00005144 llvm_unreachable("Invalid label statement in CFGBlock.");
Mike Stump31feda52009-07-17 01:31:16 +00005145
Ted Kremenek71eca012007-08-29 23:20:49 +00005146 OS << ":\n";
5147 }
Mike Stump31feda52009-07-17 01:31:16 +00005148
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005149 // Iterate through the statements in the block and print them.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005150 unsigned j = 1;
Mike Stump31feda52009-07-17 01:31:16 +00005151
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005152 for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
5153 I != E ; ++I, ++j ) {
Ted Kremenek71eca012007-08-29 23:20:49 +00005154 // Print the statement # in the basic block and the statement itself.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005155 if (print_edges)
Ted Kremenek72be32a2011-12-22 23:33:52 +00005156 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00005157
Ted Kremenek2d470fc2008-09-13 05:16:45 +00005158 OS << llvm::format("%3d", j) << ": ";
Mike Stump31feda52009-07-17 01:31:16 +00005159
Aaron Ballmanff924b02013-11-18 20:11:50 +00005160 Helper.setStmtID(j);
Mike Stump31feda52009-07-17 01:31:16 +00005161
Ted Kremenek72be32a2011-12-22 23:33:52 +00005162 print_elem(OS, Helper, *I);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005163 }
Mike Stump31feda52009-07-17 01:31:16 +00005164
Ted Kremenek71eca012007-08-29 23:20:49 +00005165 // Print the terminator of this block.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005166 if (B.getTerminator()) {
Ted Kremenek72be32a2011-12-22 23:33:52 +00005167 if (ShowColors)
5168 OS.changeColor(raw_ostream::GREEN);
Mike Stump31feda52009-07-17 01:31:16 +00005169
Ted Kremenek72be32a2011-12-22 23:33:52 +00005170 OS << " T: ";
Mike Stump31feda52009-07-17 01:31:16 +00005171
Aaron Ballmanff924b02013-11-18 20:11:50 +00005172 Helper.setBlockID(-1);
Mike Stump31feda52009-07-17 01:31:16 +00005173
Aaron Ballmanff924b02013-11-18 20:11:50 +00005174 PrintingPolicy PP(Helper.getLangOpts());
5175 CFGBlockTerminatorPrint TPrinter(OS, &Helper, PP);
Ted Kremenekfcc14172014-03-08 02:22:29 +00005176 TPrinter.print(B.getTerminator());
Ted Kremenek15647632008-01-30 23:02:42 +00005177 OS << '\n';
Ted Kremenek72be32a2011-12-22 23:33:52 +00005178
5179 if (ShowColors)
5180 OS.resetColor();
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005181 }
Mike Stump31feda52009-07-17 01:31:16 +00005182
Ted Kremenek71eca012007-08-29 23:20:49 +00005183 if (print_edges) {
5184 // Print the predecessors of this block.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005185 if (!B.pred_empty()) {
5186 const raw_ostream::Colors Color = raw_ostream::BLUE;
5187 if (ShowColors)
5188 OS.changeColor(Color);
5189 OS << " Preds " ;
5190 if (ShowColors)
5191 OS.resetColor();
5192 OS << '(' << B.pred_size() << "):";
5193 unsigned i = 0;
Ted Kremenek71eca012007-08-29 23:20:49 +00005194
Ted Kremenek72be32a2011-12-22 23:33:52 +00005195 if (ShowColors)
5196 OS.changeColor(Color);
5197
5198 for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
5199 I != E; ++I, ++i) {
Will Dietzdf9a2bb2013-01-07 09:51:17 +00005200 if (i % 10 == 8)
Ted Kremenek72be32a2011-12-22 23:33:52 +00005201 OS << "\n ";
Mike Stump31feda52009-07-17 01:31:16 +00005202
Ted Kremenek4b6fee62014-02-27 00:24:00 +00005203 CFGBlock *B = *I;
5204 bool Reachable = true;
5205 if (!B) {
5206 Reachable = false;
5207 B = I->getPossiblyUnreachableBlock();
5208 }
5209
5210 OS << " B" << B->getBlockID();
5211 if (!Reachable)
5212 OS << "(Unreachable)";
Ted Kremenek72be32a2011-12-22 23:33:52 +00005213 }
5214
5215 if (ShowColors)
5216 OS.resetColor();
5217
5218 OS << '\n';
Ted Kremenek71eca012007-08-29 23:20:49 +00005219 }
Mike Stump31feda52009-07-17 01:31:16 +00005220
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005221 // Print the successors of this block.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005222 if (!B.succ_empty()) {
5223 const raw_ostream::Colors Color = raw_ostream::MAGENTA;
5224 if (ShowColors)
5225 OS.changeColor(Color);
5226 OS << " Succs ";
5227 if (ShowColors)
5228 OS.resetColor();
5229 OS << '(' << B.succ_size() << "):";
5230 unsigned i = 0;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005231
Ted Kremenek72be32a2011-12-22 23:33:52 +00005232 if (ShowColors)
5233 OS.changeColor(Color);
Mike Stump31feda52009-07-17 01:31:16 +00005234
Ted Kremenek72be32a2011-12-22 23:33:52 +00005235 for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
5236 I != E; ++I, ++i) {
Will Dietzdf9a2bb2013-01-07 09:51:17 +00005237 if (i % 10 == 8)
Ted Kremenek72be32a2011-12-22 23:33:52 +00005238 OS << "\n ";
5239
Ted Kremenek9238c5c2014-02-27 21:56:44 +00005240 CFGBlock *B = *I;
5241
5242 bool Reachable = true;
5243 if (!B) {
5244 Reachable = false;
5245 B = I->getPossiblyUnreachableBlock();
5246 }
5247
5248 if (B) {
5249 OS << " B" << B->getBlockID();
5250 if (!Reachable)
5251 OS << "(Unreachable)";
5252 }
5253 else {
5254 OS << " NULL";
5255 }
Ted Kremenek72be32a2011-12-22 23:33:52 +00005256 }
Ted Kremenek9238c5c2014-02-27 21:56:44 +00005257
Ted Kremenek72be32a2011-12-22 23:33:52 +00005258 if (ShowColors)
5259 OS.resetColor();
5260 OS << '\n';
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005261 }
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005262 }
Mike Stump31feda52009-07-17 01:31:16 +00005263}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005264
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005265/// dump - A simple pretty printer of a CFG that outputs to stderr.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005266void CFG::dump(const LangOptions &LO, bool ShowColors) const {
5267 print(llvm::errs(), LO, ShowColors);
5268}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005269
5270/// print - A simple pretty printer of a CFG that outputs to an ostream.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005271void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const {
Chris Lattnerc61089a2009-06-30 01:26:17 +00005272 StmtPrinterHelper Helper(this, LO);
Mike Stump31feda52009-07-17 01:31:16 +00005273
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005274 // Print the entry block.
Aaron Ballmanff924b02013-11-18 20:11:50 +00005275 print_block(OS, this, getEntry(), Helper, true, ShowColors);
Mike Stump31feda52009-07-17 01:31:16 +00005276
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005277 // Iterate through the CFGBlocks and print them one by one.
5278 for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
5279 // Skip the entry block, because we already printed it.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00005280 if (&(**I) == &getEntry() || &(**I) == &getExit())
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005281 continue;
Mike Stump31feda52009-07-17 01:31:16 +00005282
Aaron Ballmanff924b02013-11-18 20:11:50 +00005283 print_block(OS, this, **I, Helper, true, ShowColors);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005284 }
Mike Stump31feda52009-07-17 01:31:16 +00005285
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005286 // Print the exit block.
Aaron Ballmanff924b02013-11-18 20:11:50 +00005287 print_block(OS, this, getExit(), Helper, true, ShowColors);
Ted Kremenek72be32a2011-12-22 23:33:52 +00005288 OS << '\n';
Ted Kremeneke03879b2008-11-24 20:50:24 +00005289 OS.flush();
Mike Stump31feda52009-07-17 01:31:16 +00005290}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005291
5292/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005293void CFGBlock::dump(const CFG* cfg, const LangOptions &LO,
5294 bool ShowColors) const {
5295 print(llvm::errs(), cfg, LO, ShowColors);
Chris Lattnerc61089a2009-06-30 01:26:17 +00005296}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005297
Yaron Kerencdae9412016-01-29 19:38:18 +00005298LLVM_DUMP_METHOD void CFGBlock::dump() const {
Anna Zaksa6fea132014-06-13 23:47:38 +00005299 dump(getParent(), LangOptions(), false);
5300}
5301
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005302/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
5303/// Generally this will only be called from CFG::print.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005304void CFGBlock::print(raw_ostream &OS, const CFG* cfg,
Ted Kremenek72be32a2011-12-22 23:33:52 +00005305 const LangOptions &LO, bool ShowColors) const {
Chris Lattnerc61089a2009-06-30 01:26:17 +00005306 StmtPrinterHelper Helper(cfg, LO);
Aaron Ballmanff924b02013-11-18 20:11:50 +00005307 print_block(OS, cfg, *this, Helper, true, ShowColors);
Ted Kremenek72be32a2011-12-22 23:33:52 +00005308 OS << '\n';
Ted Kremenek889073f2007-08-23 16:51:22 +00005309}
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005310
Ted Kremenek15647632008-01-30 23:02:42 +00005311/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005312void CFGBlock::printTerminator(raw_ostream &OS,
Mike Stump31feda52009-07-17 01:31:16 +00005313 const LangOptions &LO) const {
Craig Topper25542942014-05-20 04:30:07 +00005314 CFGBlockTerminatorPrint TPrinter(OS, nullptr, PrintingPolicy(LO));
Ted Kremenekfcc14172014-03-08 02:22:29 +00005315 TPrinter.print(getTerminator());
Ted Kremenek15647632008-01-30 23:02:42 +00005316}
5317
Ted Kremenekec3bbf42014-03-29 00:35:20 +00005318Stmt *CFGBlock::getTerminatorCondition(bool StripParens) {
Marcin Swiderskia7d84a72010-10-29 05:21:47 +00005319 Stmt *Terminator = this->Terminator;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005320 if (!Terminator)
Craig Topper25542942014-05-20 04:30:07 +00005321 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00005322
Craig Topper25542942014-05-20 04:30:07 +00005323 Expr *E = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00005324
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005325 switch (Terminator->getStmtClass()) {
5326 default:
5327 break;
Mike Stump31feda52009-07-17 01:31:16 +00005328
Jordan Rosecf10ea82013-06-06 21:53:45 +00005329 case Stmt::CXXForRangeStmtClass:
5330 E = cast<CXXForRangeStmt>(Terminator)->getCond();
5331 break;
5332
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005333 case Stmt::ForStmtClass:
5334 E = cast<ForStmt>(Terminator)->getCond();
5335 break;
Mike Stump31feda52009-07-17 01:31:16 +00005336
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005337 case Stmt::WhileStmtClass:
5338 E = cast<WhileStmt>(Terminator)->getCond();
5339 break;
Mike Stump31feda52009-07-17 01:31:16 +00005340
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005341 case Stmt::DoStmtClass:
5342 E = cast<DoStmt>(Terminator)->getCond();
5343 break;
Mike Stump31feda52009-07-17 01:31:16 +00005344
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005345 case Stmt::IfStmtClass:
5346 E = cast<IfStmt>(Terminator)->getCond();
5347 break;
Mike Stump31feda52009-07-17 01:31:16 +00005348
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005349 case Stmt::ChooseExprClass:
5350 E = cast<ChooseExpr>(Terminator)->getCond();
5351 break;
Mike Stump31feda52009-07-17 01:31:16 +00005352
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005353 case Stmt::IndirectGotoStmtClass:
5354 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
5355 break;
Mike Stump31feda52009-07-17 01:31:16 +00005356
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005357 case Stmt::SwitchStmtClass:
5358 E = cast<SwitchStmt>(Terminator)->getCond();
5359 break;
Mike Stump31feda52009-07-17 01:31:16 +00005360
John McCallc07a0c72011-02-17 10:25:35 +00005361 case Stmt::BinaryConditionalOperatorClass:
5362 E = cast<BinaryConditionalOperator>(Terminator)->getCond();
5363 break;
5364
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005365 case Stmt::ConditionalOperatorClass:
5366 E = cast<ConditionalOperator>(Terminator)->getCond();
5367 break;
Mike Stump31feda52009-07-17 01:31:16 +00005368
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005369 case Stmt::BinaryOperatorClass: // '&&' and '||'
5370 E = cast<BinaryOperator>(Terminator)->getLHS();
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00005371 break;
Mike Stump31feda52009-07-17 01:31:16 +00005372
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00005373 case Stmt::ObjCForCollectionStmtClass:
Mike Stump31feda52009-07-17 01:31:16 +00005374 return Terminator;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005375 }
Mike Stump31feda52009-07-17 01:31:16 +00005376
Ted Kremenekec3bbf42014-03-29 00:35:20 +00005377 if (!StripParens)
5378 return E;
5379
Craig Topper25542942014-05-20 04:30:07 +00005380 return E ? E->IgnoreParens() : nullptr;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005381}
5382
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005383//===----------------------------------------------------------------------===//
5384// CFG Graphviz Visualization
5385//===----------------------------------------------------------------------===//
5386
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005387#ifndef NDEBUG
Mike Stump31feda52009-07-17 01:31:16 +00005388static StmtPrinterHelper* GraphHelper;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005389#endif
5390
Chris Lattnerc61089a2009-06-30 01:26:17 +00005391void CFG::viewCFG(const LangOptions &LO) const {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005392#ifndef NDEBUG
Chris Lattnerc61089a2009-06-30 01:26:17 +00005393 StmtPrinterHelper H(this, LO);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005394 GraphHelper = &H;
5395 llvm::ViewGraph(this,"CFG");
Craig Topper25542942014-05-20 04:30:07 +00005396 GraphHelper = nullptr;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005397#endif
5398}
5399
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005400namespace llvm {
Eugene Zelenko38c70522017-12-07 21:55:09 +00005401
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005402template<>
5403struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
Eugene Zelenko38c70522017-12-07 21:55:09 +00005404 DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {}
Tobias Grosser9fc223a2009-11-30 14:16:05 +00005405
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005406 static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) {
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00005407#ifndef NDEBUG
Ted Kremenek2d470fc2008-09-13 05:16:45 +00005408 std::string OutSStr;
5409 llvm::raw_string_ostream Out(OutSStr);
Aaron Ballmanff924b02013-11-18 20:11:50 +00005410 print_block(Out,Graph, *Node, *GraphHelper, false, false);
Ted Kremenek2d470fc2008-09-13 05:16:45 +00005411 std::string& OutStr = Out.str();
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005412
5413 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
5414
5415 // Process string output to make it nicer...
5416 for (unsigned i = 0; i != OutStr.length(); ++i)
5417 if (OutStr[i] == '\n') { // Left justify
5418 OutStr[i] = '\\';
5419 OutStr.insert(OutStr.begin()+i+1, 'l');
5420 }
Mike Stump31feda52009-07-17 01:31:16 +00005421
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005422 return OutStr;
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00005423#else
Eugene Zelenko38c70522017-12-07 21:55:09 +00005424 return {};
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00005425#endif
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005426 }
5427};
Eugene Zelenko38c70522017-12-07 21:55:09 +00005428
5429} // namespace llvm