blob: 96130c25be8af57c09b7bcfc83c5ab78e3e3f8e5 [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;
Fangrui Song6907ce22018-07-30 19:24:48 +0000148
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;
Fangrui Song6907ce22018-07-30 19:24:48 +0000282
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) {}
Fangrui Song6907ce22018-07-30 19:24:48 +0000369
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000370 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;
Fangrui Song6907ce22018-07-30 19:24:48 +0000495
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000496 // State to track for building switch statements.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000497 bool switchExclusivelyCovered = false;
498 Expr::EvalResult *switchCond = nullptr;
Fangrui Song6907ce22018-07-30 19:24:48 +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);
Fangrui Song6907ce22018-07-30 19:24:48 +0000519
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);
Bill Wendling8003edc2018-11-09 00:41:36 +0000554 CFGBlock *VisitConstantExpr(ConstantExpr *E, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000555 CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
556 CFGBlock *VisitLabelStmt(LabelStmt *L);
Devin Coughlinb6029b72015-11-25 22:35:37 +0000557 CFGBlock *VisitBlockExpr(BlockExpr *E, AddStmtChoice asc);
Ted Kremenek6f400242012-07-14 05:04:01 +0000558 CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc);
Ted Kremeneka16436f2012-07-14 05:04:06 +0000559 CFGBlock *VisitLogicalOperator(BinaryOperator *B);
Ted Kremenekb50e7162012-07-14 05:04:10 +0000560 std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B,
561 Stmt *Term,
562 CFGBlock *TrueBlock,
563 CFGBlock *FalseBlock);
Artem Dergachevf43ac4c2018-02-24 02:00:30 +0000564 CFGBlock *VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE,
565 AddStmtChoice asc);
Ted Kremenek5868ec62010-04-11 17:02:10 +0000566 CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000567 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
568 CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
569 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
570 CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
Ted Kremenek6f400242012-07-14 05:04:01 +0000571 CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S);
Ted Kremenek93668002009-07-17 22:18:43 +0000572 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
Artem Dergachevbd880fe2018-07-31 19:39:37 +0000573 CFGBlock *VisitObjCMessageExpr(ObjCMessageExpr *E, AddStmtChoice asc);
John McCallfe96e0b2011-11-06 09:01:30 +0000574 CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E);
Brian Gesiaka87ecf62018-11-03 22:35:17 +0000575 CFGBlock *VisitReturnStmt(Stmt *S);
Nico Weber699670e2017-08-23 15:33:16 +0000576 CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S);
577 CFGBlock *VisitSEHFinallyStmt(SEHFinallyStmt *S);
578 CFGBlock *VisitSEHLeaveStmt(SEHLeaveStmt *S);
579 CFGBlock *VisitSEHTryStmt(SEHTryStmt *S);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000580 CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000581 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
Ted Kremenek6f400242012-07-14 05:04:01 +0000582 CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
583 AddStmtChoice asc);
Zhanyong Wan6dace612010-11-22 08:45:56 +0000584 CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000585 CFGBlock *VisitWhileStmt(WhileStmt *W);
Mike Stump48871a22009-07-17 01:04:31 +0000586
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000587 CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd);
588 CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc);
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000589 CFGBlock *VisitChildren(Stmt *S);
Ted Kremeneke2499842012-04-12 20:03:44 +0000590 CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc);
Mike Stump48871a22009-07-17 01:04:31 +0000591
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000592 void maybeAddScopeBeginForVarDecl(CFGBlock *B, const VarDecl *VD,
593 const Stmt *S) {
594 if (ScopePos && (VD == ScopePos.getFirstVarInScope()))
595 appendScopeBegin(B, VD, S);
596 }
597
Manuel Klimekb5616c92014-08-07 10:42:17 +0000598 /// When creating the CFG for temporary destructors, we want to mirror the
599 /// branch structure of the corresponding constructor calls.
600 /// Thus, while visiting a statement for temporary destructors, we keep a
601 /// context to keep track of the following information:
602 /// - whether a subexpression is executed unconditionally
603 /// - if a subexpression is executed conditionally, the first
604 /// CXXBindTemporaryExpr we encounter in that subexpression (which
605 /// corresponds to the last temporary destructor we have to call for this
606 /// subexpression) and the CFG block at that point (which will become the
607 /// successor block when inserting the decision point).
608 ///
609 /// That way, we can build the branch structure for temporary destructors as
610 /// follows:
611 /// 1. If a subexpression is executed unconditionally, we add the temporary
612 /// destructor calls to the current block.
613 /// 2. If a subexpression is executed conditionally, when we encounter a
614 /// CXXBindTemporaryExpr:
615 /// a) If it is the first temporary destructor call in the subexpression,
616 /// we remember the CXXBindTemporaryExpr and the current block in the
617 /// TempDtorContext; we start a new block, and insert the temporary
618 /// destructor call.
619 /// b) Otherwise, add the temporary destructor call to the current block.
620 /// 3. When we finished visiting a conditionally executed subexpression,
621 /// and we found at least one temporary constructor during the visitation
622 /// (2.a has executed), we insert a decision block that uses the
623 /// CXXBindTemporaryExpr as terminator, and branches to the current block
624 /// if the CXXBindTemporaryExpr was marked executed, and otherwise
625 /// branches to the stored successor.
626 struct TempDtorContext {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000627 TempDtorContext() = default;
Manuel Klimekdeb02622014-08-08 07:37:13 +0000628 TempDtorContext(TryResult KnownExecuted)
Eugene Zelenko38c70522017-12-07 21:55:09 +0000629 : IsConditional(true), KnownExecuted(KnownExecuted) {}
Manuel Klimekb5616c92014-08-07 10:42:17 +0000630
631 /// Returns whether we need to start a new branch for a temporary destructor
Eric Christopher2c4555a2015-06-19 01:52:53 +0000632 /// call. This is the case when the temporary destructor is
Manuel Klimekb5616c92014-08-07 10:42:17 +0000633 /// conditionally executed, and it is the first one we encounter while
634 /// visiting a subexpression - other temporary destructors at the same level
635 /// will be added to the same block and are executed under the same
636 /// condition.
637 bool needsTempDtorBranch() const {
638 return IsConditional && !TerminatorExpr;
639 }
640
641 /// Remember the successor S of a temporary destructor decision branch for
642 /// the corresponding CXXBindTemporaryExpr E.
643 void setDecisionPoint(CFGBlock *S, CXXBindTemporaryExpr *E) {
644 Succ = S;
645 TerminatorExpr = E;
646 }
647
Eugene Zelenko38c70522017-12-07 21:55:09 +0000648 const bool IsConditional = false;
649 const TryResult KnownExecuted = true;
650 CFGBlock *Succ = nullptr;
651 CXXBindTemporaryExpr *TerminatorExpr = nullptr;
Manuel Klimekb5616c92014-08-07 10:42:17 +0000652 };
653
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +0000654 // Visitors to walk an AST and generate destructors of temporaries in
655 // full expression.
Manuel Klimekb5616c92014-08-07 10:42:17 +0000656 CFGBlock *VisitForTemporaryDtors(Stmt *E, bool BindToTemporary,
657 TempDtorContext &Context);
658 CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E, TempDtorContext &Context);
659 CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E,
660 TempDtorContext &Context);
661 CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors(
662 CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context);
663 CFGBlock *VisitConditionalOperatorForTemporaryDtors(
664 AbstractConditionalOperator *E, bool BindToTemporary,
665 TempDtorContext &Context);
666 void InsertTempDtorDecisionBlock(const TempDtorContext &Context,
667 CFGBlock *FalseSucc = nullptr);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +0000668
Ted Kremenek6065ef62008-04-28 18:00:46 +0000669 // NYS == Not Yet Supported
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000670 CFGBlock *NYS() {
Ted Kremenekb64d1832008-03-13 03:04:22 +0000671 badCFG = true;
672 return Block;
673 }
Mike Stump31feda52009-07-17 01:31:16 +0000674
Artem Dergachev40684812018-02-27 20:03:35 +0000675 // Remember to apply the construction context based on the current \p Layer
676 // when constructing the CFG element for \p CE.
677 void consumeConstructionContext(const ConstructionContextLayer *Layer,
Artem Dergachev1527dec2018-03-12 23:12:40 +0000678 Expr *E);
Artem Dergachevc1b07bd2018-02-23 23:38:41 +0000679
Artem Dergachev40684812018-02-27 20:03:35 +0000680 // Scan \p Child statement to find constructors in it, while keeping in mind
681 // that its parent statement is providing a partial construction context
682 // described by \p Layer. If a constructor is found, it would be assigned
683 // the context based on the layer. If an additional construction context layer
684 // is found, the function recurses into that.
685 void findConstructionContexts(const ConstructionContextLayer *Layer,
Artem Dergachev783a4572018-02-23 22:20:39 +0000686 Stmt *Child);
Artem Dergachev40684812018-02-27 20:03:35 +0000687
Artem Dergachevbd880fe2018-07-31 19:39:37 +0000688 // Scan all arguments of a call expression for a construction context.
689 // These sorts of call expressions don't have a common superclass,
690 // hence strict duck-typing.
691 template <typename CallLikeExpr,
692 typename = typename std::enable_if<
693 std::is_same<CallLikeExpr, CallExpr>::value ||
694 std::is_same<CallLikeExpr, CXXConstructExpr>::value ||
695 std::is_same<CallLikeExpr, ObjCMessageExpr>::value>>
696 void findConstructionContextsForArguments(CallLikeExpr *E) {
Artem Dergacheva657a322018-07-31 20:45:53 +0000697 for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) {
698 Expr *Arg = E->getArg(i);
Artem Dergachevbd880fe2018-07-31 19:39:37 +0000699 if (Arg->getType()->getAsCXXRecordDecl() && !Arg->isGLValue())
700 findConstructionContexts(
Artem Dergachev1f8cb3a2018-07-31 21:12:42 +0000701 ConstructionContextLayer::create(cfg->getBumpVectorContext(),
702 ConstructionContextItem(E, i)),
Artem Dergachevbd880fe2018-07-31 19:39:37 +0000703 Arg);
Artem Dergacheva657a322018-07-31 20:45:53 +0000704 }
Artem Dergachevbd880fe2018-07-31 19:39:37 +0000705 }
706
Artem Dergachev41ffb302018-02-08 22:58:15 +0000707 // Unset the construction context after consuming it. This is done immediately
Artem Dergachev1527dec2018-03-12 23:12:40 +0000708 // after adding the CFGConstructor or CFGCXXRecordTypedCall element, so
709 // there's no need to do this manually in every Visit... function.
710 void cleanupConstructionContext(Expr *E);
Artem Dergachev41ffb302018-02-08 22:58:15 +0000711
Ted Kremenek93668002009-07-17 22:18:43 +0000712 void autoCreateBlock() { if (!Block) Block = createBlock(); }
713 CFGBlock *createBlock(bool add_successor = true);
Chandler Carrutha70991b2011-09-13 09:13:49 +0000714 CFGBlock *createNoReturnBlock();
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000715
Zhongxing Xuea9fcff2010-06-03 06:43:23 +0000716 CFGBlock *addStmt(Stmt *S) {
717 return Visit(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000718 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000719
Alexis Hunt1d792652011-01-08 20:30:50 +0000720 CFGBlock *addInitializer(CXXCtorInitializer *I);
Peter Szecsi999a25f2017-08-19 11:19:16 +0000721 void addLoopExit(const Stmt *LoopStmt);
Zhongxing Xu6d372f72010-10-01 03:22:39 +0000722 void addAutomaticObjDtors(LocalScope::const_iterator B,
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000723 LocalScope::const_iterator E, Stmt *S);
Matthias Gehre351c2182017-07-12 07:04:19 +0000724 void addLifetimeEnds(LocalScope::const_iterator B,
725 LocalScope::const_iterator E, Stmt *S);
726 void addAutomaticObjHandling(LocalScope::const_iterator B,
727 LocalScope::const_iterator E, Stmt *S);
Marcin Swiderski20b88732010-10-05 05:37:00 +0000728 void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD);
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000729 void addScopesEnd(LocalScope::const_iterator B, LocalScope::const_iterator E,
730 Stmt *S);
731
732 void getDeclsWithEndedScope(LocalScope::const_iterator B,
733 LocalScope::const_iterator E, Stmt *S);
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000734
Marcin Swiderski5e415732010-09-30 23:05:00 +0000735 // Local scopes creation.
736 LocalScope* createOrReuseLocalScope(LocalScope* Scope);
737
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000738 void addLocalScopeForStmt(Stmt *S);
Craig Topper25542942014-05-20 04:30:07 +0000739 LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS,
740 LocalScope* Scope = nullptr);
741 LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = nullptr);
Marcin Swiderski5e415732010-09-30 23:05:00 +0000742
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000743 void addLocalScopeAndDtors(Stmt *S);
Marcin Swiderski5e415732010-09-30 23:05:00 +0000744
Artem Dergacheve1f30622018-07-31 19:46:14 +0000745 const ConstructionContext *retrieveAndCleanupConstructionContext(Expr *E) {
746 if (!BuildOpts.AddRichCXXConstructors)
747 return nullptr;
748
749 const ConstructionContextLayer *Layer = ConstructionContextMap.lookup(E);
750 if (!Layer)
751 return nullptr;
752
753 cleanupConstructionContext(E);
754 return ConstructionContext::createFromLayers(cfg->getBumpVectorContext(),
755 Layer);
756 }
757
Marcin Swiderski5e415732010-09-30 23:05:00 +0000758 // Interface to CFGBlock - adding CFGElements.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000759
Ted Kremenek37881932011-04-04 23:29:12 +0000760 void appendStmt(CFGBlock *B, const Stmt *S) {
Ted Kremenek8b46c002011-07-19 14:18:43 +0000761 if (alwaysAdd(S) && cachedEntry)
Ted Kremeneka099c592011-03-10 03:50:34 +0000762 cachedEntry->second = B;
Ted Kremeneka099c592011-03-10 03:50:34 +0000763
Jordy Rose17347372011-06-10 08:49:37 +0000764 // All block-level expressions should have already been IgnoreParens()ed.
765 assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S);
Ted Kremenek37881932011-04-04 23:29:12 +0000766 B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext());
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000767 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000768
Artem Dergachev41ffb302018-02-08 22:58:15 +0000769 void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) {
Artem Dergacheve1f30622018-07-31 19:46:14 +0000770 if (const ConstructionContext *CC =
771 retrieveAndCleanupConstructionContext(CE)) {
772 B->appendConstructor(CE, CC, cfg->getBumpVectorContext());
773 return;
Artem Dergachev41ffb302018-02-08 22:58:15 +0000774 }
775
776 // No valid construction context found. Fall back to statement.
777 B->appendStmt(CE, cfg->getBumpVectorContext());
778 }
779
Artem Dergachev1527dec2018-03-12 23:12:40 +0000780 void appendCall(CFGBlock *B, CallExpr *CE) {
Richard Trieuf4a0e9a2018-03-15 00:09:26 +0000781 if (alwaysAdd(CE) && cachedEntry)
782 cachedEntry->second = B;
783
Artem Dergacheve1f30622018-07-31 19:46:14 +0000784 if (const ConstructionContext *CC =
785 retrieveAndCleanupConstructionContext(CE)) {
786 B->appendCXXRecordTypedCall(CE, CC, cfg->getBumpVectorContext());
787 return;
Artem Dergachev1527dec2018-03-12 23:12:40 +0000788 }
789
790 // No valid construction context found. Fall back to statement.
791 B->appendStmt(CE, cfg->getBumpVectorContext());
792 }
793
Alexis Hunt1d792652011-01-08 20:30:50 +0000794 void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) {
Marcin Swiderski87b1bb62010-10-04 03:38:22 +0000795 B->appendInitializer(I, cfg->getBumpVectorContext());
796 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000797
Jordan Rosec9176072014-01-13 17:59:19 +0000798 void appendNewAllocator(CFGBlock *B, CXXNewExpr *NE) {
799 B->appendNewAllocator(NE, cfg->getBumpVectorContext());
800 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000801
Marcin Swiderski20b88732010-10-05 05:37:00 +0000802 void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) {
803 B->appendBaseDtor(BS, cfg->getBumpVectorContext());
804 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000805
Marcin Swiderski20b88732010-10-05 05:37:00 +0000806 void appendMemberDtor(CFGBlock *B, FieldDecl *FD) {
807 B->appendMemberDtor(FD, cfg->getBumpVectorContext());
808 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000809
Artem Dergacheve1f30622018-07-31 19:46:14 +0000810 void appendObjCMessage(CFGBlock *B, ObjCMessageExpr *ME) {
811 if (alwaysAdd(ME) && cachedEntry)
812 cachedEntry->second = B;
813
814 if (const ConstructionContext *CC =
815 retrieveAndCleanupConstructionContext(ME)) {
816 B->appendCXXRecordTypedCall(ME, CC, cfg->getBumpVectorContext());
817 return;
818 }
819
820 B->appendStmt(const_cast<ObjCMessageExpr *>(ME),
821 cfg->getBumpVectorContext());
822 }
823
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +0000824 void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) {
825 B->appendTemporaryDtor(E, cfg->getBumpVectorContext());
826 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000827
Chandler Carruthad747252011-09-13 06:09:01 +0000828 void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) {
829 B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext());
830 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000831
Matthias Gehre351c2182017-07-12 07:04:19 +0000832 void appendLifetimeEnds(CFGBlock *B, VarDecl *VD, Stmt *S) {
833 B->appendLifetimeEnds(VD, S, cfg->getBumpVectorContext());
834 }
835
Peter Szecsi999a25f2017-08-19 11:19:16 +0000836 void appendLoopExit(CFGBlock *B, const Stmt *LoopStmt) {
837 B->appendLoopExit(LoopStmt, cfg->getBumpVectorContext());
838 }
839
Jordan Rosed2f40792013-09-03 17:00:57 +0000840 void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) {
841 B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext());
842 }
843
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000844 void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
Marcin Swiderski321a7072010-09-30 22:54:37 +0000845 LocalScope::const_iterator B, LocalScope::const_iterator E);
846
Matthias Gehre351c2182017-07-12 07:04:19 +0000847 void prependAutomaticObjLifetimeWithTerminator(CFGBlock *Blk,
848 LocalScope::const_iterator B,
849 LocalScope::const_iterator E);
850
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000851 const VarDecl *
852 prependAutomaticObjScopeEndWithTerminator(CFGBlock *Blk,
853 LocalScope::const_iterator B,
854 LocalScope::const_iterator E);
855
Ted Kremenek4b6fee62014-02-27 00:24:00 +0000856 void addSuccessor(CFGBlock *B, CFGBlock *S, bool IsReachable = true) {
857 B->addSuccessor(CFGBlock::AdjacentBlock(S, IsReachable),
858 cfg->getBumpVectorContext());
859 }
860
861 /// Add a reachable successor to a block, with the alternate variant that is
862 /// unreachable.
863 void addSuccessor(CFGBlock *B, CFGBlock *ReachableBlock, CFGBlock *AltBlock) {
864 B->addSuccessor(CFGBlock::AdjacentBlock(ReachableBlock, AltBlock),
865 cfg->getBumpVectorContext());
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000866 }
Mike Stump11289f42009-09-09 15:08:12 +0000867
Maxim Ostapenkodebca452018-03-12 12:26:15 +0000868 void appendScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) {
869 if (BuildOpts.AddScopes)
870 B->appendScopeBegin(VD, S, cfg->getBumpVectorContext());
871 }
872
873 void prependScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) {
874 if (BuildOpts.AddScopes)
875 B->prependScopeBegin(VD, S, cfg->getBumpVectorContext());
876 }
877
878 void appendScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) {
879 if (BuildOpts.AddScopes)
880 B->appendScopeEnd(VD, S, cfg->getBumpVectorContext());
881 }
882
883 void prependScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) {
884 if (BuildOpts.AddScopes)
885 B->prependScopeEnd(VD, S, cfg->getBumpVectorContext());
886 }
887
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000888 /// Find a relational comparison with an expression evaluating to a
Richard Trieuf935b562014-04-05 05:17:01 +0000889 /// boolean and a constant other than 0 and 1.
890 /// e.g. if ((x < y) == 10)
891 TryResult checkIncorrectRelationalOperator(const BinaryOperator *B) {
892 const Expr *LHSExpr = B->getLHS()->IgnoreParens();
893 const Expr *RHSExpr = B->getRHS()->IgnoreParens();
894
895 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
896 const Expr *BoolExpr = RHSExpr;
897 bool IntFirst = true;
898 if (!IntLiteral) {
899 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
900 BoolExpr = LHSExpr;
901 IntFirst = false;
902 }
903
904 if (!IntLiteral || !BoolExpr->isKnownToHaveBooleanValue())
905 return TryResult();
906
907 llvm::APInt IntValue = IntLiteral->getValue();
908 if ((IntValue == 1) || (IntValue == 0))
909 return TryResult();
910
911 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() ||
912 !IntValue.isNegative();
913
914 BinaryOperatorKind Bok = B->getOpcode();
915 if (Bok == BO_GT || Bok == BO_GE) {
916 // Always true for 10 > bool and bool > -1
917 // Always false for -1 > bool and bool > 10
918 return TryResult(IntFirst == IntLarger);
919 } else {
920 // Always true for -1 < bool and bool < 10
921 // Always false for 10 < bool and bool < -1
922 return TryResult(IntFirst != IntLarger);
923 }
924 }
925
Jordan Rose7afd71e2014-05-20 17:31:11 +0000926 /// Find an incorrect equality comparison. Either with an expression
927 /// evaluating to a boolean and a constant other than 0 and 1.
928 /// e.g. if (!x == 10) or a bitwise and/or operation that always evaluates to
929 /// true/false e.q. (x & 8) == 4.
Richard Trieuf935b562014-04-05 05:17:01 +0000930 TryResult checkIncorrectEqualityOperator(const BinaryOperator *B) {
931 const Expr *LHSExpr = B->getLHS()->IgnoreParens();
932 const Expr *RHSExpr = B->getRHS()->IgnoreParens();
933
934 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
935 const Expr *BoolExpr = RHSExpr;
936
937 if (!IntLiteral) {
938 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
939 BoolExpr = LHSExpr;
940 }
941
Jordan Rose7afd71e2014-05-20 17:31:11 +0000942 if (!IntLiteral)
Richard Trieuf935b562014-04-05 05:17:01 +0000943 return TryResult();
944
Jordan Rose7afd71e2014-05-20 17:31:11 +0000945 const BinaryOperator *BitOp = dyn_cast<BinaryOperator>(BoolExpr);
946 if (BitOp && (BitOp->getOpcode() == BO_And ||
947 BitOp->getOpcode() == BO_Or)) {
948 const Expr *LHSExpr2 = BitOp->getLHS()->IgnoreParens();
949 const Expr *RHSExpr2 = BitOp->getRHS()->IgnoreParens();
950
951 const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2);
952
953 if (!IntLiteral2)
954 IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2);
955
956 if (!IntLiteral2)
957 return TryResult();
958
959 llvm::APInt L1 = IntLiteral->getValue();
960 llvm::APInt L2 = IntLiteral2->getValue();
961 if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) ||
962 (BitOp->getOpcode() == BO_Or && (L2 | L1) != L1)) {
963 if (BuildOpts.Observer)
964 BuildOpts.Observer->compareBitwiseEquality(B,
965 B->getOpcode() != BO_EQ);
966 TryResult(B->getOpcode() != BO_EQ);
967 }
968 } else if (BoolExpr->isKnownToHaveBooleanValue()) {
969 llvm::APInt IntValue = IntLiteral->getValue();
970 if ((IntValue == 1) || (IntValue == 0)) {
971 return TryResult();
972 }
973 return TryResult(B->getOpcode() != BO_EQ);
Richard Trieuf935b562014-04-05 05:17:01 +0000974 }
975
Jordan Rose7afd71e2014-05-20 17:31:11 +0000976 return TryResult();
Richard Trieuf935b562014-04-05 05:17:01 +0000977 }
978
979 TryResult analyzeLogicOperatorCondition(BinaryOperatorKind Relation,
980 const llvm::APSInt &Value1,
981 const llvm::APSInt &Value2) {
982 assert(Value1.isSigned() == Value2.isSigned());
983 switch (Relation) {
984 default:
985 return TryResult();
986 case BO_EQ:
987 return TryResult(Value1 == Value2);
988 case BO_NE:
989 return TryResult(Value1 != Value2);
990 case BO_LT:
991 return TryResult(Value1 < Value2);
992 case BO_LE:
993 return TryResult(Value1 <= Value2);
994 case BO_GT:
995 return TryResult(Value1 > Value2);
996 case BO_GE:
997 return TryResult(Value1 >= Value2);
998 }
999 }
1000
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001001 /// Find a pair of comparison expressions with or without parentheses
Richard Trieuf935b562014-04-05 05:17:01 +00001002 /// with a shared variable and constants and a logical operator between them
1003 /// that always evaluates to either true or false.
1004 /// e.g. if (x != 3 || x != 4)
1005 TryResult checkIncorrectLogicOperator(const BinaryOperator *B) {
1006 assert(B->isLogicalOp());
1007 const BinaryOperator *LHS =
1008 dyn_cast<BinaryOperator>(B->getLHS()->IgnoreParens());
1009 const BinaryOperator *RHS =
1010 dyn_cast<BinaryOperator>(B->getRHS()->IgnoreParens());
1011 if (!LHS || !RHS)
Eugene Zelenko38c70522017-12-07 21:55:09 +00001012 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001013
1014 if (!LHS->isComparisonOp() || !RHS->isComparisonOp())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001015 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001016
George Burgess IVced56e62015-10-01 18:47:52 +00001017 const DeclRefExpr *Decl1;
1018 const Expr *Expr1;
1019 BinaryOperatorKind BO1;
1020 std::tie(Decl1, BO1, Expr1) = tryNormalizeBinaryOperator(LHS);
Richard Trieuf935b562014-04-05 05:17:01 +00001021
George Burgess IVced56e62015-10-01 18:47:52 +00001022 if (!Decl1 || !Expr1)
Eugene Zelenko38c70522017-12-07 21:55:09 +00001023 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001024
George Burgess IVced56e62015-10-01 18:47:52 +00001025 const DeclRefExpr *Decl2;
1026 const Expr *Expr2;
1027 BinaryOperatorKind BO2;
1028 std::tie(Decl2, BO2, Expr2) = tryNormalizeBinaryOperator(RHS);
Richard Trieuf935b562014-04-05 05:17:01 +00001029
George Burgess IVced56e62015-10-01 18:47:52 +00001030 if (!Decl2 || !Expr2)
Eugene Zelenko38c70522017-12-07 21:55:09 +00001031 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001032
1033 // Check that it is the same variable on both sides.
1034 if (Decl1->getDecl() != Decl2->getDecl())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001035 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001036
George Burgess IVced56e62015-10-01 18:47:52 +00001037 // Make sure the user's intent is clear (e.g. they're comparing against two
1038 // int literals, or two things from the same enum)
1039 if (!areExprTypesCompatible(Expr1, Expr2))
Eugene Zelenko38c70522017-12-07 21:55:09 +00001040 return {};
George Burgess IVced56e62015-10-01 18:47:52 +00001041
Fangrui Song407659a2018-11-30 23:41:18 +00001042 Expr::EvalResult L1Result, L2Result;
1043 if (!Expr1->EvaluateAsInt(L1Result, *Context) ||
1044 !Expr2->EvaluateAsInt(L2Result, *Context))
Fangrui Songf5d33352018-11-30 21:26:09 +00001045 return {};
Hans Wennborg48ee4ad2018-11-28 14:04:12 +00001046
Fangrui Song407659a2018-11-30 23:41:18 +00001047 llvm::APSInt L1 = L1Result.Val.getInt();
1048 llvm::APSInt L2 = L2Result.Val.getInt();
1049
Richard Trieuf935b562014-04-05 05:17:01 +00001050 // Can't compare signed with unsigned or with different bit width.
1051 if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001052 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001053
1054 // Values that will be used to determine if result of logical
1055 // operator is always true/false
1056 const llvm::APSInt Values[] = {
1057 // Value less than both Value1 and Value2
1058 llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()),
1059 // L1
1060 L1,
1061 // Value between Value1 and Value2
1062 ((L1 < L2) ? L1 : L2) + llvm::APSInt(llvm::APInt(L1.getBitWidth(), 1),
1063 L1.isUnsigned()),
1064 // L2
1065 L2,
1066 // Value greater than both Value1 and Value2
1067 llvm::APSInt::getMaxValue(L1.getBitWidth(), L1.isUnsigned()),
1068 };
1069
1070 // Check whether expression is always true/false by evaluating the following
1071 // * variable x is less than the smallest literal.
1072 // * variable x is equal to the smallest literal.
1073 // * Variable x is between smallest and largest literal.
1074 // * Variable x is equal to the largest literal.
1075 // * Variable x is greater than largest literal.
1076 bool AlwaysTrue = true, AlwaysFalse = true;
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00001077 for (const llvm::APSInt &Value : Values) {
Richard Trieuf935b562014-04-05 05:17:01 +00001078 TryResult Res1, Res2;
1079 Res1 = analyzeLogicOperatorCondition(BO1, Value, L1);
1080 Res2 = analyzeLogicOperatorCondition(BO2, Value, L2);
1081
1082 if (!Res1.isKnown() || !Res2.isKnown())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001083 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001084
1085 if (B->getOpcode() == BO_LAnd) {
1086 AlwaysTrue &= (Res1.isTrue() && Res2.isTrue());
1087 AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue());
1088 } else {
1089 AlwaysTrue &= (Res1.isTrue() || Res2.isTrue());
1090 AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue());
1091 }
1092 }
1093
1094 if (AlwaysTrue || AlwaysFalse) {
1095 if (BuildOpts.Observer)
1096 BuildOpts.Observer->compareAlwaysTrue(B, AlwaysTrue);
1097 return TryResult(AlwaysTrue);
1098 }
Eugene Zelenko38c70522017-12-07 21:55:09 +00001099 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001100 }
1101
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00001102 /// Try and evaluate an expression to an integer constant.
1103 bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) {
1104 if (!BuildOpts.PruneTriviallyFalseEdges)
1105 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00001106 return !S->isTypeDependent() &&
Ted Kremenek352a7082011-04-04 20:30:58 +00001107 !S->isValueDependent() &&
Richard Smith7b553f12011-10-29 00:50:52 +00001108 S->EvaluateAsRValue(outResult, *Context);
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00001109 }
Mike Stump11289f42009-09-09 15:08:12 +00001110
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00001111 /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1
Mike Stump773582d2009-07-23 23:25:26 +00001112 /// if we can evaluate to a known value, otherwise return -1.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00001113 TryResult tryEvaluateBool(Expr *S) {
Richard Smithfaa32a92011-10-14 20:22:00 +00001114 if (!BuildOpts.PruneTriviallyFalseEdges ||
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001115 S->isTypeDependent() || S->isValueDependent())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001116 return {};
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001117
1118 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) {
1119 if (Bop->isLogicalOp()) {
1120 // Check the cache first.
NAKAMURA Takumie9ca55e2012-03-25 06:30:37 +00001121 CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S);
1122 if (I != CachedBoolEvals.end())
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001123 return I->second; // already in map;
NAKAMURA Takumif0434b02012-03-25 06:30:32 +00001124
1125 // Retrieve result at first, or the map might be updated.
1126 TryResult Result = evaluateAsBooleanConditionNoCache(S);
1127 CachedBoolEvals[S] = Result; // update or insert
1128 return Result;
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001129 }
Ted Kremenek64fea5f2012-08-24 07:42:09 +00001130 else {
1131 switch (Bop->getOpcode()) {
1132 default: break;
1133 // For 'x & 0' and 'x * 0', we can determine that
1134 // the value is always false.
1135 case BO_Mul:
1136 case BO_And: {
1137 // If either operand is zero, we know the value
1138 // must be false.
Fangrui Song407659a2018-11-30 23:41:18 +00001139 Expr::EvalResult LHSResult;
1140 if (Bop->getLHS()->EvaluateAsInt(LHSResult, *Context)) {
1141 llvm::APSInt IntVal = LHSResult.Val.getInt();
David Blaikie7a3cbb22015-03-09 02:02:07 +00001142 if (!IntVal.getBoolValue()) {
Ted Kremenek64fea5f2012-08-24 07:42:09 +00001143 return TryResult(false);
1144 }
1145 }
Fangrui Song407659a2018-11-30 23:41:18 +00001146 Expr::EvalResult RHSResult;
1147 if (Bop->getRHS()->EvaluateAsInt(RHSResult, *Context)) {
1148 llvm::APSInt IntVal = RHSResult.Val.getInt();
David Blaikie7a3cbb22015-03-09 02:02:07 +00001149 if (!IntVal.getBoolValue()) {
Ted Kremenek64fea5f2012-08-24 07:42:09 +00001150 return TryResult(false);
1151 }
1152 }
1153 }
1154 break;
1155 }
1156 }
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001157 }
1158
1159 return evaluateAsBooleanConditionNoCache(S);
1160 }
1161
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001162 /// Evaluate as boolean \param E without using the cache.
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001163 TryResult evaluateAsBooleanConditionNoCache(Expr *E) {
1164 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) {
1165 if (Bop->isLogicalOp()) {
1166 TryResult LHS = tryEvaluateBool(Bop->getLHS());
1167 if (LHS.isKnown()) {
1168 // We were able to evaluate the LHS, see if we can get away with not
1169 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
1170 if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr))
1171 return LHS.isTrue();
1172
1173 TryResult RHS = tryEvaluateBool(Bop->getRHS());
1174 if (RHS.isKnown()) {
1175 if (Bop->getOpcode() == BO_LOr)
1176 return LHS.isTrue() || RHS.isTrue();
1177 else
1178 return LHS.isTrue() && RHS.isTrue();
1179 }
1180 } else {
1181 TryResult RHS = tryEvaluateBool(Bop->getRHS());
1182 if (RHS.isKnown()) {
1183 // We can't evaluate the LHS; however, sometimes the result
1184 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
1185 if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr))
1186 return RHS.isTrue();
Richard Trieuf935b562014-04-05 05:17:01 +00001187 } else {
1188 TryResult BopRes = checkIncorrectLogicOperator(Bop);
1189 if (BopRes.isKnown())
1190 return BopRes.isTrue();
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001191 }
1192 }
1193
Eugene Zelenko38c70522017-12-07 21:55:09 +00001194 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001195 } else if (Bop->isEqualityOp()) {
1196 TryResult BopRes = checkIncorrectEqualityOperator(Bop);
1197 if (BopRes.isKnown())
1198 return BopRes.isTrue();
1199 } else if (Bop->isRelationalOp()) {
1200 TryResult BopRes = checkIncorrectRelationalOperator(Bop);
1201 if (BopRes.isKnown())
1202 return BopRes.isTrue();
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001203 }
1204 }
1205
1206 bool Result;
1207 if (E->EvaluateAsBooleanCondition(Result, *Context))
1208 return Result;
1209
Eugene Zelenko38c70522017-12-07 21:55:09 +00001210 return {};
Mike Stump773582d2009-07-23 23:25:26 +00001211 }
Matthias Gehre351c2182017-07-12 07:04:19 +00001212
1213 bool hasTrivialDestructor(VarDecl *VD);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001214};
Mike Stump31feda52009-07-17 01:31:16 +00001215
Eugene Zelenko38c70522017-12-07 21:55:09 +00001216} // namespace
1217
Ted Kremeneka099c592011-03-10 03:50:34 +00001218inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder,
1219 const Stmt *stmt) const {
1220 return builder.alwaysAdd(stmt) || kind == AlwaysAdd;
1221}
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001222
Ted Kremeneka099c592011-03-10 03:50:34 +00001223bool CFGBuilder::alwaysAdd(const Stmt *stmt) {
Ted Kremenek8b46c002011-07-19 14:18:43 +00001224 bool shouldAdd = BuildOpts.alwaysAdd(stmt);
Fangrui Song6907ce22018-07-30 19:24:48 +00001225
Ted Kremeneka099c592011-03-10 03:50:34 +00001226 if (!BuildOpts.forcedBlkExprs)
Ted Kremenek8b46c002011-07-19 14:18:43 +00001227 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001228
Fangrui Song6907ce22018-07-30 19:24:48 +00001229 if (lastLookup == stmt) {
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001230 if (cachedEntry) {
1231 assert(cachedEntry->first == stmt);
1232 return true;
1233 }
Ted Kremenek8b46c002011-07-19 14:18:43 +00001234 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001235 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001236
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001237 lastLookup = stmt;
1238
1239 // Perform the lookup!
Ted Kremeneka099c592011-03-10 03:50:34 +00001240 CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs;
1241
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001242 if (!fb) {
1243 // No need to update 'cachedEntry', since it will always be null.
Craig Topper25542942014-05-20 04:30:07 +00001244 assert(!cachedEntry);
Ted Kremenek8b46c002011-07-19 14:18:43 +00001245 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001246 }
Ted Kremeneka099c592011-03-10 03:50:34 +00001247
1248 CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt);
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001249 if (itr == fb->end()) {
Craig Topper25542942014-05-20 04:30:07 +00001250 cachedEntry = nullptr;
Ted Kremenek8b46c002011-07-19 14:18:43 +00001251 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001252 }
1253
Ted Kremeneka099c592011-03-10 03:50:34 +00001254 cachedEntry = &*itr;
1255 return true;
Ted Kremenek7c58d352011-03-10 01:14:11 +00001256}
Fangrui Song6907ce22018-07-30 19:24:48 +00001257
Douglas Gregor4619e432008-12-05 23:32:09 +00001258// FIXME: Add support for dependent-sized array types in C++?
1259// Does it even make sense to build a CFG for an uninstantiated template?
John McCall424cec92011-01-19 06:33:43 +00001260static const VariableArrayType *FindVA(const Type *t) {
1261 while (const ArrayType *vt = dyn_cast<ArrayType>(t)) {
1262 if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt))
Ted Kremenekd86d39c2008-09-26 22:58:57 +00001263 if (vat->getSizeExpr())
1264 return vat;
Mike Stump31feda52009-07-17 01:31:16 +00001265
Ted Kremenekd86d39c2008-09-26 22:58:57 +00001266 t = vt->getElementType().getTypePtr();
1267 }
Mike Stump31feda52009-07-17 01:31:16 +00001268
Craig Topper25542942014-05-20 04:30:07 +00001269 return nullptr;
Ted Kremenekd86d39c2008-09-26 22:58:57 +00001270}
Mike Stump31feda52009-07-17 01:31:16 +00001271
Artem Dergachev40684812018-02-27 20:03:35 +00001272void CFGBuilder::consumeConstructionContext(
Artem Dergachev1527dec2018-03-12 23:12:40 +00001273 const ConstructionContextLayer *Layer, Expr *E) {
Artem Dergacheve1f30622018-07-31 19:46:14 +00001274 assert((isa<CXXConstructExpr>(E) || isa<CallExpr>(E) ||
1275 isa<ObjCMessageExpr>(E)) && "Expression cannot construct an object!");
Artem Dergachev40684812018-02-27 20:03:35 +00001276 if (const ConstructionContextLayer *PreviouslyStoredLayer =
Artem Dergachev1527dec2018-03-12 23:12:40 +00001277 ConstructionContextMap.lookup(E)) {
George Burgess IVa47e1b72018-03-06 07:45:11 +00001278 (void)PreviouslyStoredLayer;
Artem Dergachevc1b07bd2018-02-23 23:38:41 +00001279 // We might have visited this child when we were finding construction
1280 // contexts within its parents.
Artem Dergachev40684812018-02-27 20:03:35 +00001281 assert(PreviouslyStoredLayer->isStrictlyMoreSpecificThan(Layer) &&
Artem Dergachevc1b07bd2018-02-23 23:38:41 +00001282 "Already within a different construction context!");
1283 } else {
Artem Dergachev1527dec2018-03-12 23:12:40 +00001284 ConstructionContextMap[E] = Layer;
Artem Dergachevc1b07bd2018-02-23 23:38:41 +00001285 }
1286}
1287
Artem Dergachev783a4572018-02-23 22:20:39 +00001288void CFGBuilder::findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00001289 const ConstructionContextLayer *Layer, Stmt *Child) {
Artem Dergachev41ffb302018-02-08 22:58:15 +00001290 if (!BuildOpts.AddRichCXXConstructors)
1291 return;
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001292
Artem Dergachev41ffb302018-02-08 22:58:15 +00001293 if (!Child)
1294 return;
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001295
Artem Dergachev1f8cb3a2018-07-31 21:12:42 +00001296 auto withExtraLayer = [this, Layer](const ConstructionContextItem &Item) {
1297 return ConstructionContextLayer::create(cfg->getBumpVectorContext(), Item,
1298 Layer);
Artem Dergachevff267df2018-06-28 00:04:54 +00001299 };
1300
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001301 switch(Child->getStmtClass()) {
1302 case Stmt::CXXConstructExprClass:
1303 case Stmt::CXXTemporaryObjectExprClass: {
Artem Dergachevff267df2018-06-28 00:04:54 +00001304 // Support pre-C++17 copy elision AST.
1305 auto *CE = cast<CXXConstructExpr>(Child);
1306 if (BuildOpts.MarkElidedCXXConstructors && CE->isElidable()) {
Artem Dergachevff267df2018-06-28 00:04:54 +00001307 findConstructionContexts(withExtraLayer(CE), CE->getArg(0));
1308 }
1309
1310 consumeConstructionContext(Layer, CE);
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001311 break;
1312 }
Artem Dergachev1527dec2018-03-12 23:12:40 +00001313 // FIXME: This, like the main visit, doesn't support CUDAKernelCallExpr.
1314 // FIXME: An isa<> would look much better but this whole switch is a
1315 // workaround for an internal compiler error in MSVC 2015 (see r326021).
1316 case Stmt::CallExprClass:
1317 case Stmt::CXXMemberCallExprClass:
1318 case Stmt::CXXOperatorCallExprClass:
Artem Dergacheve1f30622018-07-31 19:46:14 +00001319 case Stmt::UserDefinedLiteralClass:
1320 case Stmt::ObjCMessageExprClass: {
1321 auto *E = cast<Expr>(Child);
1322 if (CFGCXXRecordTypedCall::isCXXRecordTypedCall(E))
1323 consumeConstructionContext(Layer, E);
Artem Dergachev1527dec2018-03-12 23:12:40 +00001324 break;
1325 }
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001326 case Stmt::ExprWithCleanupsClass: {
1327 auto *Cleanups = cast<ExprWithCleanups>(Child);
Artem Dergachev40684812018-02-27 20:03:35 +00001328 findConstructionContexts(Layer, Cleanups->getSubExpr());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001329 break;
1330 }
1331 case Stmt::CXXFunctionalCastExprClass: {
1332 auto *Cast = cast<CXXFunctionalCastExpr>(Child);
Artem Dergachev40684812018-02-27 20:03:35 +00001333 findConstructionContexts(Layer, Cast->getSubExpr());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001334 break;
1335 }
1336 case Stmt::ImplicitCastExprClass: {
1337 auto *Cast = cast<ImplicitCastExpr>(Child);
Artem Dergachev317291e2018-03-22 21:37:39 +00001338 // Should we support other implicit cast kinds?
Artem Dergachev13f96642018-03-09 01:39:59 +00001339 switch (Cast->getCastKind()) {
1340 case CK_NoOp:
1341 case CK_ConstructorConversion:
Artem Dergachev66030522018-03-01 01:09:24 +00001342 findConstructionContexts(Layer, Cast->getSubExpr());
Reid Kleckner4dc0b1a2018-11-01 19:54:45 +00001343 break;
Artem Dergachev13f96642018-03-09 01:39:59 +00001344 default:
1345 break;
1346 }
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001347 break;
1348 }
1349 case Stmt::CXXBindTemporaryExprClass: {
1350 auto *BTE = cast<CXXBindTemporaryExpr>(Child);
Artem Dergachevff267df2018-06-28 00:04:54 +00001351 findConstructionContexts(withExtraLayer(BTE), BTE->getSubExpr());
1352 break;
1353 }
1354 case Stmt::MaterializeTemporaryExprClass: {
1355 // Normally we don't want to search in MaterializeTemporaryExpr because
1356 // it indicates the beginning of a temporary object construction context,
1357 // so it shouldn't be found in the middle. However, if it is the beginning
1358 // of an elidable copy or move construction context, we need to include it.
Artem Dergachev1f8cb3a2018-07-31 21:12:42 +00001359 if (Layer->getItem().getKind() ==
1360 ConstructionContextItem::ElidableConstructorKind) {
1361 auto *MTE = cast<MaterializeTemporaryExpr>(Child);
1362 findConstructionContexts(withExtraLayer(MTE), MTE->GetTemporaryExpr());
Artem Dergachevff267df2018-06-28 00:04:54 +00001363 }
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001364 break;
1365 }
1366 case Stmt::ConditionalOperatorClass: {
1367 auto *CO = cast<ConditionalOperator>(Child);
Artem Dergachev1f8cb3a2018-07-31 21:12:42 +00001368 if (Layer->getItem().getKind() !=
1369 ConstructionContextItem::MaterializationKind) {
Artem Dergachev9d3a7d82018-03-30 19:21:18 +00001370 // If the object returned by the conditional operator is not going to be a
1371 // temporary object that needs to be immediately materialized, then
1372 // it must be C++17 with its mandatory copy elision. Do not yet promise
1373 // to support this case.
1374 assert(!CO->getType()->getAsCXXRecordDecl() || CO->isGLValue() ||
1375 Context->getLangOpts().CPlusPlus17);
1376 break;
1377 }
Artem Dergachev40684812018-02-27 20:03:35 +00001378 findConstructionContexts(Layer, CO->getLHS());
1379 findConstructionContexts(Layer, CO->getRHS());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001380 break;
1381 }
1382 default:
1383 break;
Artem Dergachev41ffb302018-02-08 22:58:15 +00001384 }
1385}
1386
Artem Dergachev1527dec2018-03-12 23:12:40 +00001387void CFGBuilder::cleanupConstructionContext(Expr *E) {
Artem Dergachev783a4572018-02-23 22:20:39 +00001388 assert(BuildOpts.AddRichCXXConstructors &&
1389 "We should not be managing construction contexts!");
Artem Dergachev1527dec2018-03-12 23:12:40 +00001390 assert(ConstructionContextMap.count(E) &&
Artem Dergachev41ffb302018-02-08 22:58:15 +00001391 "Cannot exit construction context without the context!");
Artem Dergachev1527dec2018-03-12 23:12:40 +00001392 ConstructionContextMap.erase(E);
Artem Dergachev41ffb302018-02-08 22:58:15 +00001393}
1394
1395
Mike Stump31feda52009-07-17 01:31:16 +00001396/// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an
1397/// arbitrary statement. Examples include a single expression or a function
1398/// body (compound statement). The ownership of the returned CFG is
1399/// transferred to the caller. If CFG construction fails, this method returns
1400/// NULL.
David Blaikiee90195c2014-08-29 18:53:26 +00001401std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) {
Ted Kremenek8aed4902009-10-20 23:46:25 +00001402 assert(cfg.get());
Ted Kremenek93668002009-07-17 22:18:43 +00001403 if (!Statement)
Craig Topper25542942014-05-20 04:30:07 +00001404 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001405
Mike Stump31feda52009-07-17 01:31:16 +00001406 // Create an empty block that will serve as the exit block for the CFG. Since
1407 // this is the first block added to the CFG, it will be implicitly registered
1408 // as the exit block.
Ted Kremenek81e14852007-08-27 19:46:09 +00001409 Succ = createBlock();
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001410 assert(Succ == &cfg->getExit());
Craig Topper25542942014-05-20 04:30:07 +00001411 Block = nullptr; // the EXIT block is empty. Create all other blocks lazily.
Mike Stump31feda52009-07-17 01:31:16 +00001412
Matthias Gehre351c2182017-07-12 07:04:19 +00001413 assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) &&
1414 "AddImplicitDtors and AddLifetime cannot be used at the same time");
1415
Marcin Swiderski20b88732010-10-05 05:37:00 +00001416 if (BuildOpts.AddImplicitDtors)
1417 if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D))
1418 addImplicitDtorsForDestructor(DD);
1419
Ted Kremenek9aae5132007-08-23 21:42:29 +00001420 // Visit the statements and create the CFG.
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001421 CFGBlock *B = addStmt(Statement);
1422
1423 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00001424 return nullptr;
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001425
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001426 // For C++ constructor add initializers to CFG.
1427 if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) {
Pete Cooper57d3f142015-07-30 17:22:52 +00001428 for (auto *I : llvm::reverse(CD->inits())) {
1429 B = addInitializer(I);
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001430 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00001431 return nullptr;
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001432 }
1433 }
1434
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001435 if (B)
1436 Succ = B;
Mike Stump6bf1c082010-01-21 02:21:40 +00001437
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001438 // Backpatch the gotos whose label -> block mappings we didn't know when we
1439 // encountered them.
1440 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
1441 E = BackpatchBlocks.end(); I != E; ++I ) {
Mike Stump31feda52009-07-17 01:31:16 +00001442
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001443 CFGBlock *B = I->block;
Rafael Espindola210de572013-03-27 15:37:54 +00001444 const GotoStmt *G = cast<GotoStmt>(B->getTerminator());
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001445 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
Mike Stump31feda52009-07-17 01:31:16 +00001446
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001447 // If there is no target for the goto, then we are looking at an
1448 // incomplete AST. Handle this by not registering a successor.
1449 if (LI == LabelMap.end()) continue;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001450
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001451 JumpTarget JT = LI->second;
Matthias Gehre351c2182017-07-12 07:04:19 +00001452 prependAutomaticObjLifetimeWithTerminator(B, I->scopePosition,
1453 JT.scopePosition);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00001454 prependAutomaticObjDtorsWithTerminator(B, I->scopePosition,
1455 JT.scopePosition);
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001456 const VarDecl *VD = prependAutomaticObjScopeEndWithTerminator(
1457 B, I->scopePosition, JT.scopePosition);
1458 appendScopeBegin(JT.block, VD, G);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00001459 addSuccessor(B, JT.block);
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001460 }
1461
1462 // Add successors to the Indirect Goto Dispatch block (if we have one).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001463 if (CFGBlock *B = cfg->getIndirectGotoBlock())
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001464 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
1465 E = AddressTakenLabels.end(); I != E; ++I ) {
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001466 // Lookup the target block.
1467 LabelMapTy::iterator LI = LabelMap.find(*I);
1468
1469 // If there is no target block that contains label, then we are looking
1470 // at an incomplete AST. Handle this by not registering a successor.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001471 if (LI == LabelMap.end()) continue;
Fangrui Song6907ce22018-07-30 19:24:48 +00001472
Ted Kremenekef81e9e2011-01-07 19:37:16 +00001473 addSuccessor(B, LI->second.block);
Ted Kremenekeda180e22007-08-28 19:26:49 +00001474 }
Mike Stump31feda52009-07-17 01:31:16 +00001475
Mike Stump31feda52009-07-17 01:31:16 +00001476 // Create an empty entry block that has no predecessors.
Ted Kremenek5c50fd12007-09-26 21:23:31 +00001477 cfg->setEntry(createBlock());
Mike Stump31feda52009-07-17 01:31:16 +00001478
Artem Dergachev783a4572018-02-23 22:20:39 +00001479 if (BuildOpts.AddRichCXXConstructors)
1480 assert(ConstructionContextMap.empty() &&
1481 "Not all construction contexts were cleaned up!");
1482
David Blaikiee90195c2014-08-29 18:53:26 +00001483 return std::move(cfg);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001484}
Mike Stump31feda52009-07-17 01:31:16 +00001485
Ted Kremenek9aae5132007-08-23 21:42:29 +00001486/// createBlock - Used to lazily create blocks that are connected
1487/// to the current (global) succcessor.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001488CFGBlock *CFGBuilder::createBlock(bool add_successor) {
1489 CFGBlock *B = cfg->createBlock();
Ted Kremenek93668002009-07-17 22:18:43 +00001490 if (add_successor && Succ)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00001491 addSuccessor(B, Succ);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001492 return B;
1493}
Mike Stump31feda52009-07-17 01:31:16 +00001494
Chandler Carrutha70991b2011-09-13 09:13:49 +00001495/// createNoReturnBlock - Used to create a block is a 'noreturn' point in the
1496/// CFG. It is *not* connected to the current (global) successor, and instead
1497/// directly tied to the exit block in order to be reachable.
1498CFGBlock *CFGBuilder::createNoReturnBlock() {
1499 CFGBlock *B = createBlock(false);
Chandler Carruth75d78232011-09-13 09:53:55 +00001500 B->setHasNoReturnElement();
Ted Kremenekf3539192014-02-27 00:24:05 +00001501 addSuccessor(B, &cfg->getExit(), Succ);
Chandler Carrutha70991b2011-09-13 09:13:49 +00001502 return B;
1503}
1504
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001505/// addInitializer - Add C++ base or member initializer element to CFG.
Alexis Hunt1d792652011-01-08 20:30:50 +00001506CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) {
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001507 if (!BuildOpts.AddInitializers)
1508 return Block;
1509
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001510 bool HasTemporaries = false;
1511
1512 // Destructors of temporaries in initialization expression should be called
1513 // after initialization finishes.
1514 Expr *Init = I->getInit();
1515 if (Init) {
John McCall5d413782010-12-06 08:20:24 +00001516 HasTemporaries = isa<ExprWithCleanups>(Init);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001517
Jordan Rose6d671cc2012-09-05 22:55:23 +00001518 if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001519 // Generate destructors for temporaries in initialization expression.
Manuel Klimekdeb02622014-08-08 07:37:13 +00001520 TempDtorContext Context;
Manuel Klimekb5616c92014-08-07 10:42:17 +00001521 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
1522 /*BindToTemporary=*/false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001523 }
1524 }
1525
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001526 autoCreateBlock();
1527 appendInitializer(Block, I);
1528
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001529 if (Init) {
Artem Dergachev783a4572018-02-23 22:20:39 +00001530 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00001531 ConstructionContextLayer::create(cfg->getBumpVectorContext(), I),
Artem Dergachev783a4572018-02-23 22:20:39 +00001532 Init);
Artem Dergachev5a281bb2018-02-10 02:18:04 +00001533
Ted Kremenek8219b822010-12-16 07:46:53 +00001534 if (HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001535 // For expression with temporaries go directly to subexpression to omit
1536 // generating destructors for the second time.
Ted Kremenek8219b822010-12-16 07:46:53 +00001537 return Visit(cast<ExprWithCleanups>(Init)->getSubExpr());
1538 }
Enrico Pertosofaed8012015-06-03 10:12:40 +00001539 if (BuildOpts.AddCXXDefaultInitExprInCtors) {
1540 if (CXXDefaultInitExpr *Default = dyn_cast<CXXDefaultInitExpr>(Init)) {
1541 // In general, appending the expression wrapped by a CXXDefaultInitExpr
1542 // may cause the same Expr to appear more than once in the CFG. Doing it
1543 // here is safe because there's only one initializer per field.
1544 autoCreateBlock();
1545 appendStmt(Block, Default);
1546 if (Stmt *Child = Default->getExpr())
1547 if (CFGBlock *R = Visit(Child))
1548 Block = R;
1549 return Block;
1550 }
1551 }
Ted Kremenek8219b822010-12-16 07:46:53 +00001552 return Visit(Init);
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001553 }
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001554
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001555 return Block;
1556}
1557
Fangrui Song6907ce22018-07-30 19:24:48 +00001558/// Retrieve the type of the temporary object whose lifetime was
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001559/// extended by a local reference with the given initializer.
Artem Dergacheva25809f2018-06-04 18:56:25 +00001560static QualType getReferenceInitTemporaryType(const Expr *Init,
Richard Smithb8c0f552016-12-09 18:49:13 +00001561 bool *FoundMTE = nullptr) {
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001562 while (true) {
1563 // Skip parentheses.
1564 Init = Init->IgnoreParens();
Artem Dergacheva25809f2018-06-04 18:56:25 +00001565
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001566 // Skip through cleanups.
1567 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) {
1568 Init = EWC->getSubExpr();
1569 continue;
1570 }
Artem Dergacheva25809f2018-06-04 18:56:25 +00001571
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001572 // Skip through the temporary-materialization expression.
1573 if (const MaterializeTemporaryExpr *MTE
1574 = dyn_cast<MaterializeTemporaryExpr>(Init)) {
1575 Init = MTE->GetTemporaryExpr();
Richard Smithb8c0f552016-12-09 18:49:13 +00001576 if (FoundMTE)
1577 *FoundMTE = true;
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001578 continue;
1579 }
Artem Dergacheva25809f2018-06-04 18:56:25 +00001580
1581 // Skip sub-object accesses into rvalues.
1582 SmallVector<const Expr *, 2> CommaLHSs;
1583 SmallVector<SubobjectAdjustment, 2> Adjustments;
1584 const Expr *SkippedInit =
1585 Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
1586 if (SkippedInit != Init) {
1587 Init = SkippedInit;
1588 continue;
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001589 }
Artem Dergacheva25809f2018-06-04 18:56:25 +00001590
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001591 break;
1592 }
1593
1594 return Init->getType();
1595}
Matthias Gehre351c2182017-07-12 07:04:19 +00001596
Peter Szecsi999a25f2017-08-19 11:19:16 +00001597// TODO: Support adding LoopExit element to the CFG in case where the loop is
1598// ended by ReturnStmt, GotoStmt or ThrowExpr.
1599void CFGBuilder::addLoopExit(const Stmt *LoopStmt){
1600 if(!BuildOpts.AddLoopExit)
1601 return;
1602 autoCreateBlock();
1603 appendLoopExit(Block, LoopStmt);
1604}
1605
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001606void CFGBuilder::getDeclsWithEndedScope(LocalScope::const_iterator B,
1607 LocalScope::const_iterator E, Stmt *S) {
1608 if (!BuildOpts.AddScopes)
1609 return;
1610
1611 if (B == E)
1612 return;
1613
1614 // To go from B to E, one first goes up the scopes from B to P
1615 // then sideways in one scope from P to P' and then down
1616 // the scopes from P' to E.
1617 // The lifetime of all objects between B and P end.
1618 LocalScope::const_iterator P = B.shared_parent(E);
1619 int Dist = B.distance(P);
1620 if (Dist <= 0)
1621 return;
1622
1623 for (LocalScope::const_iterator I = B; I != P; ++I)
1624 if (I.pointsToFirstDeclaredVar())
1625 DeclsWithEndedScope.insert(*I);
1626}
1627
Matthias Gehre351c2182017-07-12 07:04:19 +00001628void CFGBuilder::addAutomaticObjHandling(LocalScope::const_iterator B,
1629 LocalScope::const_iterator E,
1630 Stmt *S) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001631 getDeclsWithEndedScope(B, E, S);
1632 if (BuildOpts.AddScopes)
1633 addScopesEnd(B, E, S);
Matthias Gehre351c2182017-07-12 07:04:19 +00001634 if (BuildOpts.AddImplicitDtors)
1635 addAutomaticObjDtors(B, E, S);
1636 if (BuildOpts.AddLifetime)
1637 addLifetimeEnds(B, E, S);
1638}
1639
1640/// Add to current block automatic objects that leave the scope.
1641void CFGBuilder::addLifetimeEnds(LocalScope::const_iterator B,
1642 LocalScope::const_iterator E, Stmt *S) {
1643 if (!BuildOpts.AddLifetime)
1644 return;
1645
1646 if (B == E)
1647 return;
1648
1649 // To go from B to E, one first goes up the scopes from B to P
1650 // then sideways in one scope from P to P' and then down
1651 // the scopes from P' to E.
1652 // The lifetime of all objects between B and P end.
1653 LocalScope::const_iterator P = B.shared_parent(E);
1654 int dist = B.distance(P);
1655 if (dist <= 0)
1656 return;
1657
1658 // We need to perform the scope leaving in reverse order
1659 SmallVector<VarDecl *, 10> DeclsTrivial;
1660 SmallVector<VarDecl *, 10> DeclsNonTrivial;
1661 DeclsTrivial.reserve(dist);
1662 DeclsNonTrivial.reserve(dist);
1663
1664 for (LocalScope::const_iterator I = B; I != P; ++I)
1665 if (hasTrivialDestructor(*I))
1666 DeclsTrivial.push_back(*I);
1667 else
1668 DeclsNonTrivial.push_back(*I);
1669
1670 autoCreateBlock();
1671 // object with trivial destructor end their lifetime last (when storage
1672 // duration ends)
1673 for (SmallVectorImpl<VarDecl *>::reverse_iterator I = DeclsTrivial.rbegin(),
1674 E = DeclsTrivial.rend();
1675 I != E; ++I)
1676 appendLifetimeEnds(Block, *I, S);
1677
1678 for (SmallVectorImpl<VarDecl *>::reverse_iterator
1679 I = DeclsNonTrivial.rbegin(),
1680 E = DeclsNonTrivial.rend();
1681 I != E; ++I)
1682 appendLifetimeEnds(Block, *I, S);
1683}
1684
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001685/// Add to current block markers for ending scopes.
1686void CFGBuilder::addScopesEnd(LocalScope::const_iterator B,
1687 LocalScope::const_iterator E, Stmt *S) {
1688 // If implicit destructors are enabled, we'll add scope ends in
1689 // addAutomaticObjDtors.
1690 if (BuildOpts.AddImplicitDtors)
1691 return;
1692
1693 autoCreateBlock();
1694
1695 for (auto I = DeclsWithEndedScope.rbegin(), E = DeclsWithEndedScope.rend();
1696 I != E; ++I)
1697 appendScopeEnd(Block, *I, S);
1698
1699 return;
1700}
1701
Marcin Swiderski5e415732010-09-30 23:05:00 +00001702/// addAutomaticObjDtors - Add to current block automatic objects destructors
1703/// for objects in range of local scope positions. Use S as trigger statement
1704/// for destructors.
Zhongxing Xu6d372f72010-10-01 03:22:39 +00001705void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B,
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001706 LocalScope::const_iterator E, Stmt *S) {
Marcin Swiderski5e415732010-09-30 23:05:00 +00001707 if (!BuildOpts.AddImplicitDtors)
Zhongxing Xu6d372f72010-10-01 03:22:39 +00001708 return;
1709
Marcin Swiderski5e415732010-09-30 23:05:00 +00001710 if (B == E)
Zhongxing Xu6d372f72010-10-01 03:22:39 +00001711 return;
Marcin Swiderski5e415732010-09-30 23:05:00 +00001712
Chandler Carruthad747252011-09-13 06:09:01 +00001713 // We need to append the destructors in reverse order, but any one of them
1714 // may be a no-return destructor which changes the CFG. As a result, buffer
1715 // this sequence up and replay them in reverse order when appending onto the
1716 // CFGBlock(s).
1717 SmallVector<VarDecl*, 10> Decls;
1718 Decls.reserve(B.distance(E));
1719 for (LocalScope::const_iterator I = B; I != E; ++I)
1720 Decls.push_back(*I);
1721
1722 for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(),
1723 E = Decls.rend();
1724 I != E; ++I) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001725 if (hasTrivialDestructor(*I)) {
1726 // If AddScopes is enabled and *I is a first variable in a scope, add a
1727 // ScopeEnd marker in a Block.
1728 if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) {
1729 autoCreateBlock();
1730 appendScopeEnd(Block, *I, S);
1731 }
1732 continue;
1733 }
Chandler Carruthad747252011-09-13 06:09:01 +00001734 // If this destructor is marked as a no-return destructor, we need to
1735 // create a new block for the destructor which does not have as a successor
1736 // anything built thus far: control won't flow out of this block.
Ted Kremenek3d617732012-07-18 04:57:57 +00001737 QualType Ty = (*I)->getType();
1738 if (Ty->isReferenceType()) {
Artem Dergacheva25809f2018-06-04 18:56:25 +00001739 Ty = getReferenceInitTemporaryType((*I)->getInit());
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001740 }
Ted Kremenek3d617732012-07-18 04:57:57 +00001741 Ty = Context->getBaseElementType(Ty);
1742
Richard Trieu95a192a2015-05-28 00:14:02 +00001743 if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn())
Chandler Carrutha70991b2011-09-13 09:13:49 +00001744 Block = createNoReturnBlock();
1745 else
Chandler Carruthad747252011-09-13 06:09:01 +00001746 autoCreateBlock();
Chandler Carruthad747252011-09-13 06:09:01 +00001747
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001748 // Add ScopeEnd just after automatic obj destructor.
1749 if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I))
1750 appendScopeEnd(Block, *I, S);
Chandler Carruthad747252011-09-13 06:09:01 +00001751 appendAutomaticObjDtor(Block, *I, S);
1752 }
Marcin Swiderski5e415732010-09-30 23:05:00 +00001753}
1754
Marcin Swiderski20b88732010-10-05 05:37:00 +00001755/// addImplicitDtorsForDestructor - Add implicit destructors generated for
1756/// base and member objects in destructor.
1757void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) {
Eugene Zelenko38c70522017-12-07 21:55:09 +00001758 assert(BuildOpts.AddImplicitDtors &&
1759 "Can be called only when dtors should be added");
Marcin Swiderski20b88732010-10-05 05:37:00 +00001760 const CXXRecordDecl *RD = DD->getParent();
1761
1762 // At the end destroy virtual base objects.
Aaron Ballman445a9392014-03-13 16:15:17 +00001763 for (const auto &VI : RD->vbases()) {
1764 const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl();
Marcin Swiderski20b88732010-10-05 05:37:00 +00001765 if (!CD->hasTrivialDestructor()) {
1766 autoCreateBlock();
Aaron Ballman445a9392014-03-13 16:15:17 +00001767 appendBaseDtor(Block, &VI);
Marcin Swiderski20b88732010-10-05 05:37:00 +00001768 }
1769 }
1770
1771 // Before virtual bases destroy direct base objects.
Aaron Ballman574705e2014-03-13 15:41:46 +00001772 for (const auto &BI : RD->bases()) {
1773 if (!BI.isVirtual()) {
1774 const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl();
David Blaikie0f2ae782012-01-24 04:51:48 +00001775 if (!CD->hasTrivialDestructor()) {
1776 autoCreateBlock();
Aaron Ballman574705e2014-03-13 15:41:46 +00001777 appendBaseDtor(Block, &BI);
David Blaikie0f2ae782012-01-24 04:51:48 +00001778 }
1779 }
Marcin Swiderski20b88732010-10-05 05:37:00 +00001780 }
1781
1782 // First destroy member objects.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001783 for (auto *FI : RD->fields()) {
Marcin Swiderski01769902010-10-25 07:05:54 +00001784 // Check for constant size array. Set type to array element type.
1785 QualType QT = FI->getType();
1786 if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1787 if (AT->getSize() == 0)
1788 continue;
1789 QT = AT->getElementType();
1790 }
1791
1792 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
Marcin Swiderski20b88732010-10-05 05:37:00 +00001793 if (!CD->hasTrivialDestructor()) {
1794 autoCreateBlock();
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001795 appendMemberDtor(Block, FI);
Marcin Swiderski20b88732010-10-05 05:37:00 +00001796 }
1797 }
1798}
1799
Marcin Swiderski5e415732010-09-30 23:05:00 +00001800/// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either
1801/// way return valid LocalScope object.
1802LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) {
David Blaikiec1334cc2015-08-13 22:12:21 +00001803 if (Scope)
1804 return Scope;
1805 llvm::BumpPtrAllocator &alloc = cfg->getAllocator();
1806 return new (alloc.Allocate<LocalScope>())
1807 LocalScope(BumpVectorContext(alloc), ScopePos);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001808}
1809
1810/// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement
Fangrui Song6907ce22018-07-30 19:24:48 +00001811/// that should create implicit scope (e.g. if/else substatements).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001812void CFGBuilder::addLocalScopeForStmt(Stmt *S) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001813 if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime &&
1814 !BuildOpts.AddScopes)
Zhongxing Xu81714f22010-10-01 03:00:16 +00001815 return;
1816
Craig Topper25542942014-05-20 04:30:07 +00001817 LocalScope *Scope = nullptr;
Marcin Swiderski5e415732010-09-30 23:05:00 +00001818
1819 // For compound statement we will be creating explicit scope.
Chris Lattnerc8e630e2011-02-17 07:39:24 +00001820 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) {
Aaron Ballmanc7e4e212014-03-17 14:19:37 +00001821 for (auto *BI : CS->body()) {
1822 Stmt *SI = BI->stripLabelLikeStatements();
Chris Lattnerc8e630e2011-02-17 07:39:24 +00001823 if (DeclStmt *DS = dyn_cast<DeclStmt>(SI))
Marcin Swiderski5e415732010-09-30 23:05:00 +00001824 Scope = addLocalScopeForDeclStmt(DS, Scope);
1825 }
Zhongxing Xu81714f22010-10-01 03:00:16 +00001826 return;
Marcin Swiderski5e415732010-09-30 23:05:00 +00001827 }
1828
1829 // For any other statement scope will be implicit and as such will be
1830 // interesting only for DeclStmt.
Chandler Carrutha626d642011-09-10 00:02:34 +00001831 if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements()))
Zhongxing Xu307701e2010-10-01 03:09:09 +00001832 addLocalScopeForDeclStmt(DS);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001833}
1834
1835/// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will
1836/// reuse Scope if not NULL.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001837LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS,
Zhongxing Xu307701e2010-10-01 03:09:09 +00001838 LocalScope* Scope) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001839 if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime &&
1840 !BuildOpts.AddScopes)
Marcin Swiderski5e415732010-09-30 23:05:00 +00001841 return Scope;
1842
Aaron Ballman535bbcc2014-03-14 17:01:24 +00001843 for (auto *DI : DS->decls())
1844 if (VarDecl *VD = dyn_cast<VarDecl>(DI))
Marcin Swiderski5e415732010-09-30 23:05:00 +00001845 Scope = addLocalScopeForVarDecl(VD, Scope);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001846 return Scope;
1847}
1848
Matthias Gehre351c2182017-07-12 07:04:19 +00001849bool CFGBuilder::hasTrivialDestructor(VarDecl *VD) {
1850 // Check for const references bound to temporary. Set type to pointee.
1851 QualType QT = VD->getType();
Artem Dergacheva25809f2018-06-04 18:56:25 +00001852 if (QT->isReferenceType()) {
Matthias Gehre351c2182017-07-12 07:04:19 +00001853 // Attempt to determine whether this declaration lifetime-extends a
1854 // temporary.
1855 //
1856 // FIXME: This is incorrect. Non-reference declarations can lifetime-extend
1857 // temporaries, and a single declaration can extend multiple temporaries.
1858 // We should look at the storage duration on each nested
1859 // MaterializeTemporaryExpr instead.
1860
1861 const Expr *Init = VD->getInit();
Artem Dergacheva25809f2018-06-04 18:56:25 +00001862 if (!Init) {
1863 // Probably an exception catch-by-reference variable.
1864 // FIXME: It doesn't really mean that the object has a trivial destructor.
1865 // Also are there other cases?
Matthias Gehre351c2182017-07-12 07:04:19 +00001866 return true;
Artem Dergacheva25809f2018-06-04 18:56:25 +00001867 }
Matthias Gehre351c2182017-07-12 07:04:19 +00001868
Artem Dergacheva25809f2018-06-04 18:56:25 +00001869 // Lifetime-extending a temporary?
Matthias Gehre351c2182017-07-12 07:04:19 +00001870 bool FoundMTE = false;
Artem Dergacheva25809f2018-06-04 18:56:25 +00001871 QT = getReferenceInitTemporaryType(Init, &FoundMTE);
Matthias Gehre351c2182017-07-12 07:04:19 +00001872 if (!FoundMTE)
1873 return true;
1874 }
1875
1876 // Check for constant size array. Set type to array element type.
1877 while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1878 if (AT->getSize() == 0)
1879 return true;
1880 QT = AT->getElementType();
1881 }
1882
1883 // Check if type is a C++ class with non-trivial destructor.
1884 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
1885 return !CD->hasDefinition() || CD->hasTrivialDestructor();
1886 return true;
1887}
1888
Marcin Swiderski5e415732010-09-30 23:05:00 +00001889/// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will
1890/// create add scope for automatic objects and temporary objects bound to
1891/// const reference. Will reuse Scope if not NULL.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001892LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD,
Zhongxing Xu307701e2010-10-01 03:09:09 +00001893 LocalScope* Scope) {
Matthias Gehre351c2182017-07-12 07:04:19 +00001894 assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) &&
1895 "AddImplicitDtors and AddLifetime cannot be used at the same time");
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001896 if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime &&
1897 !BuildOpts.AddScopes)
Marcin Swiderski5e415732010-09-30 23:05:00 +00001898 return Scope;
1899
1900 // Check if variable is local.
1901 switch (VD->getStorageClass()) {
1902 case SC_None:
1903 case SC_Auto:
1904 case SC_Register:
1905 break;
1906 default: return Scope;
1907 }
1908
Matthias Gehre351c2182017-07-12 07:04:19 +00001909 if (BuildOpts.AddImplicitDtors) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001910 if (!hasTrivialDestructor(VD) || BuildOpts.AddScopes) {
Zhongxing Xu614e17d2010-10-05 08:38:06 +00001911 // Add the variable to scope
1912 Scope = createOrReuseLocalScope(Scope);
1913 Scope->addVar(VD);
1914 ScopePos = Scope->begin();
1915 }
Matthias Gehre351c2182017-07-12 07:04:19 +00001916 return Scope;
1917 }
1918
1919 assert(BuildOpts.AddLifetime);
1920 // Add the variable to scope
1921 Scope = createOrReuseLocalScope(Scope);
1922 Scope->addVar(VD);
1923 ScopePos = Scope->begin();
Marcin Swiderski5e415732010-09-30 23:05:00 +00001924 return Scope;
1925}
1926
1927/// addLocalScopeAndDtors - For given statement add local scope for it and
1928/// add destructors that will cleanup the scope. Will reuse Scope if not NULL.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001929void CFGBuilder::addLocalScopeAndDtors(Stmt *S) {
Marcin Swiderski5e415732010-09-30 23:05:00 +00001930 LocalScope::const_iterator scopeBeginPos = ScopePos;
Zhongxing Xu81714f22010-10-01 03:00:16 +00001931 addLocalScopeForStmt(S);
Matthias Gehre351c2182017-07-12 07:04:19 +00001932 addAutomaticObjHandling(ScopePos, scopeBeginPos, S);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001933}
1934
Marcin Swiderski321a7072010-09-30 22:54:37 +00001935/// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for
1936/// variables with automatic storage duration to CFGBlock's elements vector.
1937/// Elements will be prepended to physical beginning of the vector which
1938/// happens to be logical end. Use blocks terminator as statement that specifies
1939/// destructors call site.
Chandler Carruthad747252011-09-13 06:09:01 +00001940/// FIXME: This mechanism for adding automatic destructors doesn't handle
1941/// no-return destructors properly.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001942void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
Marcin Swiderski321a7072010-09-30 22:54:37 +00001943 LocalScope::const_iterator B, LocalScope::const_iterator E) {
Matthias Gehre351c2182017-07-12 07:04:19 +00001944 if (!BuildOpts.AddImplicitDtors)
1945 return;
Chandler Carruthad747252011-09-13 06:09:01 +00001946 BumpVectorContext &C = cfg->getBumpVectorContext();
1947 CFGBlock::iterator InsertPos
1948 = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C);
1949 for (LocalScope::const_iterator I = B; I != E; ++I)
1950 InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I,
1951 Blk->getTerminator());
Marcin Swiderski321a7072010-09-30 22:54:37 +00001952}
1953
Matthias Gehre351c2182017-07-12 07:04:19 +00001954/// prependAutomaticObjLifetimeWithTerminator - Prepend lifetime CFGElements for
1955/// variables with automatic storage duration to CFGBlock's elements vector.
1956/// Elements will be prepended to physical beginning of the vector which
1957/// happens to be logical end. Use blocks terminator as statement that specifies
1958/// where lifetime ends.
1959void CFGBuilder::prependAutomaticObjLifetimeWithTerminator(
1960 CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) {
1961 if (!BuildOpts.AddLifetime)
1962 return;
1963 BumpVectorContext &C = cfg->getBumpVectorContext();
1964 CFGBlock::iterator InsertPos =
1965 Blk->beginLifetimeEndsInsert(Blk->end(), B.distance(E), C);
1966 for (LocalScope::const_iterator I = B; I != E; ++I)
1967 InsertPos = Blk->insertLifetimeEnds(InsertPos, *I, Blk->getTerminator());
1968}
Eugene Zelenko38c70522017-12-07 21:55:09 +00001969
Maxim Ostapenkodebca452018-03-12 12:26:15 +00001970/// prependAutomaticObjScopeEndWithTerminator - Prepend scope end CFGElements for
1971/// variables with automatic storage duration to CFGBlock's elements vector.
1972/// Elements will be prepended to physical beginning of the vector which
1973/// happens to be logical end. Use blocks terminator as statement that specifies
1974/// where scope ends.
1975const VarDecl *
1976CFGBuilder::prependAutomaticObjScopeEndWithTerminator(
1977 CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) {
1978 if (!BuildOpts.AddScopes)
1979 return nullptr;
1980 BumpVectorContext &C = cfg->getBumpVectorContext();
1981 CFGBlock::iterator InsertPos =
1982 Blk->beginScopeEndInsert(Blk->end(), 1, C);
1983 LocalScope::const_iterator PlaceToInsert = B;
1984 for (LocalScope::const_iterator I = B; I != E; ++I)
1985 PlaceToInsert = I;
1986 Blk->insertScopeEnd(InsertPos, *PlaceToInsert, Blk->getTerminator());
1987 return *PlaceToInsert;
1988}
1989
Ted Kremenek93668002009-07-17 22:18:43 +00001990/// Visit - Walk the subtree of a statement and add extra
Mike Stump31feda52009-07-17 01:31:16 +00001991/// blocks for ternary operators, &&, and ||. We also process "," and
1992/// DeclStmts (which may contain nested control-flow).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001993CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) {
Ted Kremenekbc1416d2010-04-30 22:25:53 +00001994 if (!S) {
1995 badCFG = true;
Craig Topper25542942014-05-20 04:30:07 +00001996 return nullptr;
Ted Kremenekbc1416d2010-04-30 22:25:53 +00001997 }
Jordy Rose17347372011-06-10 08:49:37 +00001998
1999 if (Expr *E = dyn_cast<Expr>(S))
2000 S = E->IgnoreParens();
2001
Ted Kremenek93668002009-07-17 22:18:43 +00002002 switch (S->getStmtClass()) {
2003 default:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002004 return VisitStmt(S, asc);
Ted Kremenek93668002009-07-17 22:18:43 +00002005
2006 case Stmt::AddrLabelExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002007 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00002008
John McCallc07a0c72011-02-17 10:25:35 +00002009 case Stmt::BinaryConditionalOperatorClass:
2010 return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc);
2011
Ted Kremenek93668002009-07-17 22:18:43 +00002012 case Stmt::BinaryOperatorClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002013 return VisitBinaryOperator(cast<BinaryOperator>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00002014
Ted Kremenek93668002009-07-17 22:18:43 +00002015 case Stmt::BlockExprClass:
Devin Coughlinb6029b72015-11-25 22:35:37 +00002016 return VisitBlockExpr(cast<BlockExpr>(S), asc);
Ted Kremenek93668002009-07-17 22:18:43 +00002017
Ted Kremenek93668002009-07-17 22:18:43 +00002018 case Stmt::BreakStmtClass:
2019 return VisitBreakStmt(cast<BreakStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002020
Ted Kremenek93668002009-07-17 22:18:43 +00002021 case Stmt::CallExprClass:
Ted Kremenek128d04d2010-08-31 18:47:34 +00002022 case Stmt::CXXOperatorCallExprClass:
John McCallc67067f2011-05-11 07:19:11 +00002023 case Stmt::CXXMemberCallExprClass:
Richard Smithc67fdd42012-03-07 08:35:16 +00002024 case Stmt::UserDefinedLiteralClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002025 return VisitCallExpr(cast<CallExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00002026
Ted Kremenek93668002009-07-17 22:18:43 +00002027 case Stmt::CaseStmtClass:
2028 return VisitCaseStmt(cast<CaseStmt>(S));
2029
2030 case Stmt::ChooseExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002031 return VisitChooseExpr(cast<ChooseExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00002032
Ted Kremenek93668002009-07-17 22:18:43 +00002033 case Stmt::CompoundStmtClass:
2034 return VisitCompoundStmt(cast<CompoundStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002035
Ted Kremenek93668002009-07-17 22:18:43 +00002036 case Stmt::ConditionalOperatorClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002037 return VisitConditionalOperator(cast<ConditionalOperator>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00002038
Ted Kremenek93668002009-07-17 22:18:43 +00002039 case Stmt::ContinueStmtClass:
2040 return VisitContinueStmt(cast<ContinueStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002041
Ted Kremenekb27378c2010-01-19 20:40:33 +00002042 case Stmt::CXXCatchStmtClass:
2043 return VisitCXXCatchStmt(cast<CXXCatchStmt>(S));
2044
John McCall5d413782010-12-06 08:20:24 +00002045 case Stmt::ExprWithCleanupsClass:
2046 return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc);
Ted Kremenek82bfc862010-08-28 00:19:02 +00002047
Jordan Rosee5d53932012-08-23 18:10:53 +00002048 case Stmt::CXXDefaultArgExprClass:
Richard Smith852c9db2013-04-20 22:23:05 +00002049 case Stmt::CXXDefaultInitExprClass:
Jordan Rosee5d53932012-08-23 18:10:53 +00002050 // FIXME: The expression inside a CXXDefaultArgExpr is owned by the
2051 // called function's declaration, not by the caller. If we simply add
2052 // this expression to the CFG, we could end up with the same Expr
2053 // appearing multiple times.
2054 // PR13385 / <rdar://problem/12156507>
Richard Smith852c9db2013-04-20 22:23:05 +00002055 //
2056 // It's likewise possible for multiple CXXDefaultInitExprs for the same
2057 // expression to be used in the same function (through aggregate
2058 // initialization).
Jordan Rosee5d53932012-08-23 18:10:53 +00002059 return VisitStmt(S, asc);
2060
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00002061 case Stmt::CXXBindTemporaryExprClass:
2062 return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc);
2063
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00002064 case Stmt::CXXConstructExprClass:
2065 return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc);
2066
Jordan Rosec9176072014-01-13 17:59:19 +00002067 case Stmt::CXXNewExprClass:
2068 return VisitCXXNewExpr(cast<CXXNewExpr>(S), asc);
2069
Jordan Rosed2f40792013-09-03 17:00:57 +00002070 case Stmt::CXXDeleteExprClass:
2071 return VisitCXXDeleteExpr(cast<CXXDeleteExpr>(S), asc);
2072
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00002073 case Stmt::CXXFunctionalCastExprClass:
2074 return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc);
2075
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00002076 case Stmt::CXXTemporaryObjectExprClass:
2077 return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc);
2078
Ted Kremenekb27378c2010-01-19 20:40:33 +00002079 case Stmt::CXXThrowExprClass:
2080 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002081
Ted Kremenekb27378c2010-01-19 20:40:33 +00002082 case Stmt::CXXTryStmtClass:
2083 return VisitCXXTryStmt(cast<CXXTryStmt>(S));
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002084
Richard Smith02e85f32011-04-14 22:09:26 +00002085 case Stmt::CXXForRangeStmtClass:
2086 return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S));
2087
Ted Kremenek93668002009-07-17 22:18:43 +00002088 case Stmt::DeclStmtClass:
2089 return VisitDeclStmt(cast<DeclStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002090
Ted Kremenek93668002009-07-17 22:18:43 +00002091 case Stmt::DefaultStmtClass:
2092 return VisitDefaultStmt(cast<DefaultStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002093
Ted Kremenek93668002009-07-17 22:18:43 +00002094 case Stmt::DoStmtClass:
2095 return VisitDoStmt(cast<DoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002096
Ted Kremenek93668002009-07-17 22:18:43 +00002097 case Stmt::ForStmtClass:
2098 return VisitForStmt(cast<ForStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002099
Ted Kremenek93668002009-07-17 22:18:43 +00002100 case Stmt::GotoStmtClass:
2101 return VisitGotoStmt(cast<GotoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002102
Ted Kremenek93668002009-07-17 22:18:43 +00002103 case Stmt::IfStmtClass:
2104 return VisitIfStmt(cast<IfStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002105
Ted Kremenek8219b822010-12-16 07:46:53 +00002106 case Stmt::ImplicitCastExprClass:
2107 return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00002108
Bill Wendling8003edc2018-11-09 00:41:36 +00002109 case Stmt::ConstantExprClass:
2110 return VisitConstantExpr(cast<ConstantExpr>(S), asc);
2111
Ted Kremenek93668002009-07-17 22:18:43 +00002112 case Stmt::IndirectGotoStmtClass:
2113 return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002114
Ted Kremenek93668002009-07-17 22:18:43 +00002115 case Stmt::LabelStmtClass:
2116 return VisitLabelStmt(cast<LabelStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002117
Ted Kremenekda76a942012-04-12 20:34:52 +00002118 case Stmt::LambdaExprClass:
2119 return VisitLambdaExpr(cast<LambdaExpr>(S), asc);
2120
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00002121 case Stmt::MaterializeTemporaryExprClass:
2122 return VisitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(S),
2123 asc);
2124
Ted Kremenek5868ec62010-04-11 17:02:10 +00002125 case Stmt::MemberExprClass:
2126 return VisitMemberExpr(cast<MemberExpr>(S), asc);
2127
Ted Kremenek04268232011-11-05 00:10:15 +00002128 case Stmt::NullStmtClass:
2129 return Block;
2130
Ted Kremenek93668002009-07-17 22:18:43 +00002131 case Stmt::ObjCAtCatchStmtClass:
Mike Stump11289f42009-09-09 15:08:12 +00002132 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
2133
Ted Kremenek5022f1d2012-03-06 23:40:47 +00002134 case Stmt::ObjCAutoreleasePoolStmtClass:
2135 return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S));
2136
Ted Kremenek93668002009-07-17 22:18:43 +00002137 case Stmt::ObjCAtSynchronizedStmtClass:
2138 return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002139
Ted Kremenek93668002009-07-17 22:18:43 +00002140 case Stmt::ObjCAtThrowStmtClass:
2141 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002142
Ted Kremenek93668002009-07-17 22:18:43 +00002143 case Stmt::ObjCAtTryStmtClass:
2144 return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002145
Ted Kremenek93668002009-07-17 22:18:43 +00002146 case Stmt::ObjCForCollectionStmtClass:
2147 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002148
Artem Dergachevbd880fe2018-07-31 19:39:37 +00002149 case Stmt::ObjCMessageExprClass:
2150 return VisitObjCMessageExpr(cast<ObjCMessageExpr>(S), asc);
2151
Ted Kremenek04268232011-11-05 00:10:15 +00002152 case Stmt::OpaqueValueExprClass:
Ted Kremenek93668002009-07-17 22:18:43 +00002153 return Block;
Mike Stump11289f42009-09-09 15:08:12 +00002154
John McCallfe96e0b2011-11-06 09:01:30 +00002155 case Stmt::PseudoObjectExprClass:
2156 return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S));
2157
Ted Kremenek93668002009-07-17 22:18:43 +00002158 case Stmt::ReturnStmtClass:
Brian Gesiaka87ecf62018-11-03 22:35:17 +00002159 case Stmt::CoreturnStmtClass:
2160 return VisitReturnStmt(S);
Mike Stump11289f42009-09-09 15:08:12 +00002161
Nico Weber699670e2017-08-23 15:33:16 +00002162 case Stmt::SEHExceptStmtClass:
2163 return VisitSEHExceptStmt(cast<SEHExceptStmt>(S));
2164
2165 case Stmt::SEHFinallyStmtClass:
2166 return VisitSEHFinallyStmt(cast<SEHFinallyStmt>(S));
2167
2168 case Stmt::SEHLeaveStmtClass:
2169 return VisitSEHLeaveStmt(cast<SEHLeaveStmt>(S));
2170
2171 case Stmt::SEHTryStmtClass:
2172 return VisitSEHTryStmt(cast<SEHTryStmt>(S));
2173
Peter Collingbournee190dee2011-03-11 19:24:49 +00002174 case Stmt::UnaryExprOrTypeTraitExprClass:
2175 return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S),
2176 asc);
Mike Stump11289f42009-09-09 15:08:12 +00002177
Ted Kremenek93668002009-07-17 22:18:43 +00002178 case Stmt::StmtExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002179 return VisitStmtExpr(cast<StmtExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00002180
Ted Kremenek93668002009-07-17 22:18:43 +00002181 case Stmt::SwitchStmtClass:
2182 return VisitSwitchStmt(cast<SwitchStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00002183
Zhanyong Wan6dace612010-11-22 08:45:56 +00002184 case Stmt::UnaryOperatorClass:
2185 return VisitUnaryOperator(cast<UnaryOperator>(S), asc);
2186
Ted Kremenek93668002009-07-17 22:18:43 +00002187 case Stmt::WhileStmtClass:
2188 return VisitWhileStmt(cast<WhileStmt>(S));
2189 }
2190}
Mike Stump11289f42009-09-09 15:08:12 +00002191
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002192CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002193 if (asc.alwaysAdd(*this, S)) {
Ted Kremenek93668002009-07-17 22:18:43 +00002194 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002195 appendStmt(Block, S);
Mike Stump31feda52009-07-17 01:31:16 +00002196 }
Mike Stump11289f42009-09-09 15:08:12 +00002197
Ted Kremenek93668002009-07-17 22:18:43 +00002198 return VisitChildren(S);
Ted Kremenek9e248872007-08-27 21:27:44 +00002199}
Mike Stump31feda52009-07-17 01:31:16 +00002200
Ted Kremenek93668002009-07-17 22:18:43 +00002201/// VisitChildren - Visit the children of a Stmt.
Ted Kremenek8ae67872013-02-05 22:00:19 +00002202CFGBlock *CFGBuilder::VisitChildren(Stmt *S) {
2203 CFGBlock *B = Block;
Ted Kremenek828f6312011-02-21 22:11:26 +00002204
Ted Kremenek8ae67872013-02-05 22:00:19 +00002205 // Visit the children in their reverse order so that they appear in
2206 // left-to-right (natural) order in the CFG.
2207 reverse_children RChildren(S);
2208 for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end();
2209 I != E; ++I) {
2210 if (Stmt *Child = *I)
2211 if (CFGBlock *R = Visit(Child))
2212 B = R;
2213 }
2214 return B;
Ted Kremenek9e248872007-08-27 21:27:44 +00002215}
Mike Stump11289f42009-09-09 15:08:12 +00002216
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002217CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A,
2218 AddStmtChoice asc) {
Ted Kremenek93668002009-07-17 22:18:43 +00002219 AddressTakenLabels.insert(A->getLabel());
Ted Kremenek9e248872007-08-27 21:27:44 +00002220
Ted Kremenek7c58d352011-03-10 01:14:11 +00002221 if (asc.alwaysAdd(*this, A)) {
Ted Kremenek93668002009-07-17 22:18:43 +00002222 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002223 appendStmt(Block, A);
Ted Kremenek93668002009-07-17 22:18:43 +00002224 }
Ted Kremenek81e14852007-08-27 19:46:09 +00002225
Ted Kremenek9aae5132007-08-23 21:42:29 +00002226 return Block;
2227}
Mike Stump11289f42009-09-09 15:08:12 +00002228
Zhanyong Wan6dace612010-11-22 08:45:56 +00002229CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U,
Ted Kremenek8219b822010-12-16 07:46:53 +00002230 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002231 if (asc.alwaysAdd(*this, U)) {
Zhanyong Wan6dace612010-11-22 08:45:56 +00002232 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002233 appendStmt(Block, U);
Zhanyong Wan6dace612010-11-22 08:45:56 +00002234 }
2235
Ted Kremenek8219b822010-12-16 07:46:53 +00002236 return Visit(U->getSubExpr(), AddStmtChoice());
Zhanyong Wan6dace612010-11-22 08:45:56 +00002237}
2238
Ted Kremeneka16436f2012-07-14 05:04:06 +00002239CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) {
2240 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
2241 appendStmt(ConfluenceBlock, B);
Mike Stump11289f42009-09-09 15:08:12 +00002242
Ted Kremeneka16436f2012-07-14 05:04:06 +00002243 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002244 return nullptr;
Ted Kremeneka16436f2012-07-14 05:04:06 +00002245
Craig Topper25542942014-05-20 04:30:07 +00002246 return VisitLogicalOperator(B, nullptr, ConfluenceBlock,
2247 ConfluenceBlock).first;
Ted Kremenekb50e7162012-07-14 05:04:10 +00002248}
2249
2250std::pair<CFGBlock*, CFGBlock*>
2251CFGBuilder::VisitLogicalOperator(BinaryOperator *B,
2252 Stmt *Term,
2253 CFGBlock *TrueBlock,
2254 CFGBlock *FalseBlock) {
Ted Kremenekb50e7162012-07-14 05:04:10 +00002255 // Introspect the RHS. If it is a nested logical operation, we recursively
2256 // build the CFG using this function. Otherwise, resort to default
2257 // CFG construction behavior.
2258 Expr *RHS = B->getRHS()->IgnoreParens();
2259 CFGBlock *RHSBlock, *ExitBlock;
2260
2261 do {
2262 if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS))
2263 if (B_RHS->isLogicalOp()) {
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00002264 std::tie(RHSBlock, ExitBlock) =
Ted Kremenekb50e7162012-07-14 05:04:10 +00002265 VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock);
2266 break;
2267 }
2268
2269 // The RHS is not a nested logical operation. Don't push the terminator
2270 // down further, but instead visit RHS and construct the respective
2271 // pieces of the CFG, and link up the RHSBlock with the terminator
2272 // we have been provided.
2273 ExitBlock = RHSBlock = createBlock(false);
2274
Richard Trieu6a6af522017-01-04 00:46:30 +00002275 // Even though KnownVal is only used in the else branch of the next
2276 // conditional, tryEvaluateBool performs additional checking on the
2277 // Expr, so it should be called unconditionally.
2278 TryResult KnownVal = tryEvaluateBool(RHS);
2279 if (!KnownVal.isKnown())
2280 KnownVal = tryEvaluateBool(B);
2281
Ted Kremenekb50e7162012-07-14 05:04:10 +00002282 if (!Term) {
2283 assert(TrueBlock == FalseBlock);
2284 addSuccessor(RHSBlock, TrueBlock);
2285 }
2286 else {
2287 RHSBlock->setTerminator(Term);
Ted Kremenek782f0032014-03-07 02:25:53 +00002288 addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse());
2289 addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue());
Ted Kremenekb50e7162012-07-14 05:04:10 +00002290 }
2291
2292 Block = RHSBlock;
2293 RHSBlock = addStmt(RHS);
2294 }
2295 while (false);
2296
2297 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002298 return std::make_pair(nullptr, nullptr);
Ted Kremenekb50e7162012-07-14 05:04:10 +00002299
2300 // Generate the blocks for evaluating the LHS.
2301 Expr *LHS = B->getLHS()->IgnoreParens();
2302
2303 if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS))
2304 if (B_LHS->isLogicalOp()) {
2305 if (B->getOpcode() == BO_LOr)
2306 FalseBlock = RHSBlock;
2307 else
2308 TrueBlock = RHSBlock;
2309
2310 // For the LHS, treat 'B' as the terminator that we want to sink
2311 // into the nested branch. The RHS always gets the top-most
2312 // terminator.
2313 return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock);
2314 }
2315
2316 // Create the block evaluating the LHS.
2317 // This contains the '&&' or '||' as the terminator.
Ted Kremeneka16436f2012-07-14 05:04:06 +00002318 CFGBlock *LHSBlock = createBlock(false);
2319 LHSBlock->setTerminator(B);
2320
Ted Kremeneka16436f2012-07-14 05:04:06 +00002321 Block = LHSBlock;
Ted Kremenekb50e7162012-07-14 05:04:10 +00002322 CFGBlock *EntryLHSBlock = addStmt(LHS);
2323
2324 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002325 return std::make_pair(nullptr, nullptr);
Ted Kremeneka16436f2012-07-14 05:04:06 +00002326
2327 // See if this is a known constant.
Ted Kremenekb50e7162012-07-14 05:04:10 +00002328 TryResult KnownVal = tryEvaluateBool(LHS);
Ted Kremeneka16436f2012-07-14 05:04:06 +00002329
2330 // Now link the LHSBlock with RHSBlock.
2331 if (B->getOpcode() == BO_LOr) {
Ted Kremenek782f0032014-03-07 02:25:53 +00002332 addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse());
2333 addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue());
Ted Kremeneka16436f2012-07-14 05:04:06 +00002334 } else {
2335 assert(B->getOpcode() == BO_LAnd);
Ted Kremenek782f0032014-03-07 02:25:53 +00002336 addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse());
2337 addSuccessor(LHSBlock, FalseBlock, !KnownVal.isTrue());
Ted Kremeneka16436f2012-07-14 05:04:06 +00002338 }
2339
Ted Kremenekb50e7162012-07-14 05:04:10 +00002340 return std::make_pair(EntryLHSBlock, ExitBlock);
Ted Kremeneka16436f2012-07-14 05:04:06 +00002341}
2342
2343CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B,
2344 AddStmtChoice asc) {
2345 // && or ||
2346 if (B->isLogicalOp())
2347 return VisitLogicalOperator(B);
2348
Zhanyong Wan59f09c72010-11-22 19:32:14 +00002349 if (B->getOpcode() == BO_Comma) { // ,
Ted Kremenekfe9b7682009-07-17 22:57:50 +00002350 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002351 appendStmt(Block, B);
Ted Kremenek93668002009-07-17 22:18:43 +00002352 addStmt(B->getRHS());
2353 return addStmt(B->getLHS());
2354 }
Zhanyong Wan59f09c72010-11-22 19:32:14 +00002355
2356 if (B->isAssignmentOp()) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002357 if (asc.alwaysAdd(*this, B)) {
Zhongxing Xu41cdf582010-06-03 06:23:18 +00002358 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002359 appendStmt(Block, B);
Zhongxing Xu41cdf582010-06-03 06:23:18 +00002360 }
Ted Kremenek8219b822010-12-16 07:46:53 +00002361 Visit(B->getLHS());
Marcin Swiderski77232492010-10-24 08:21:40 +00002362 return Visit(B->getRHS());
Zhongxing Xu41cdf582010-06-03 06:23:18 +00002363 }
Mike Stump11289f42009-09-09 15:08:12 +00002364
Ted Kremenek7c58d352011-03-10 01:14:11 +00002365 if (asc.alwaysAdd(*this, B)) {
Marcin Swiderski77232492010-10-24 08:21:40 +00002366 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002367 appendStmt(Block, B);
Marcin Swiderski77232492010-10-24 08:21:40 +00002368 }
2369
Zhongxing Xud95ccd52010-10-27 03:23:10 +00002370 CFGBlock *RBlock = Visit(B->getRHS());
2371 CFGBlock *LBlock = Visit(B->getLHS());
2372 // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr
2373 // containing a DoStmt, and the LHS doesn't create a new block, then we should
2374 // return RBlock. Otherwise we'll incorrectly return NULL.
2375 return (LBlock ? LBlock : RBlock);
Ted Kremenek93668002009-07-17 22:18:43 +00002376}
2377
Ted Kremeneke2499842012-04-12 20:03:44 +00002378CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002379 if (asc.alwaysAdd(*this, E)) {
Ted Kremenek470bfa42009-11-25 01:34:30 +00002380 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002381 appendStmt(Block, E);
Ted Kremenek470bfa42009-11-25 01:34:30 +00002382 }
2383 return Block;
Ted Kremenek93668002009-07-17 22:18:43 +00002384}
2385
Ted Kremenek93668002009-07-17 22:18:43 +00002386CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
2387 // "break" is a control-flow statement. Thus we stop processing the current
2388 // block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002389 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002390 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002391
Ted Kremenek93668002009-07-17 22:18:43 +00002392 // Now create a new block that ends with the break statement.
2393 Block = createBlock(false);
2394 Block->setTerminator(B);
Mike Stump11289f42009-09-09 15:08:12 +00002395
Ted Kremenek93668002009-07-17 22:18:43 +00002396 // If there is no target for the break, then we are looking at an incomplete
2397 // AST. This means that the CFG cannot be constructed.
Ted Kremenekef81e9e2011-01-07 19:37:16 +00002398 if (BreakJumpTarget.block) {
Matthias Gehre351c2182017-07-12 07:04:19 +00002399 addAutomaticObjHandling(ScopePos, BreakJumpTarget.scopePosition, B);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00002400 addSuccessor(Block, BreakJumpTarget.block);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00002401 } else
Ted Kremenek93668002009-07-17 22:18:43 +00002402 badCFG = true;
Mike Stump11289f42009-09-09 15:08:12 +00002403
Ted Kremenek9aae5132007-08-23 21:42:29 +00002404 return Block;
2405}
Mike Stump11289f42009-09-09 15:08:12 +00002406
Sebastian Redl31ad7542011-03-13 17:09:40 +00002407static bool CanThrow(Expr *E, ASTContext &Ctx) {
Mike Stump04c68512010-01-21 15:20:48 +00002408 QualType Ty = E->getType();
2409 if (Ty->isFunctionPointerType())
2410 Ty = Ty->getAs<PointerType>()->getPointeeType();
2411 else if (Ty->isBlockPointerType())
2412 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002413
Mike Stump04c68512010-01-21 15:20:48 +00002414 const FunctionType *FT = Ty->getAs<FunctionType>();
2415 if (FT) {
2416 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT))
Richard Smithd3b5c9082012-07-27 04:22:15 +00002417 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) &&
Richard Smitheaf11ad2018-05-03 03:58:32 +00002418 Proto->isNothrow())
Mike Stump04c68512010-01-21 15:20:48 +00002419 return false;
2420 }
2421 return true;
2422}
2423
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002424CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) {
John McCallc67067f2011-05-11 07:19:11 +00002425 // Compute the callee type.
2426 QualType calleeType = C->getCallee()->getType();
2427 if (calleeType == Context->BoundMemberTy) {
2428 QualType boundType = Expr::findBoundMemberType(C->getCallee());
2429
2430 // We should only get a null bound type if processing a dependent
2431 // CFG. Recover by assuming nothing.
2432 if (!boundType.isNull()) calleeType = boundType;
Ted Kremenek93668002009-07-17 22:18:43 +00002433 }
Mike Stump8c5d7992009-07-25 21:26:53 +00002434
John McCallc67067f2011-05-11 07:19:11 +00002435 // If this is a call to a no-return function, this stops the block here.
2436 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
2437
Mike Stump04c68512010-01-21 15:20:48 +00002438 bool AddEHEdge = false;
Mike Stump92244b02010-01-19 22:00:14 +00002439
2440 // Languages without exceptions are assumed to not throw.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002441 if (Context->getLangOpts().Exceptions) {
Ted Kremeneke97b1eb2010-09-14 23:41:16 +00002442 if (BuildOpts.AddEHEdges)
Mike Stump04c68512010-01-21 15:20:48 +00002443 AddEHEdge = true;
Mike Stump92244b02010-01-19 22:00:14 +00002444 }
2445
Jordan Rose5374c072013-08-19 16:27:28 +00002446 // If this is a call to a builtin function, it might not actually evaluate
2447 // its arguments. Don't add them to the CFG if this is the case.
2448 bool OmitArguments = false;
2449
Mike Stump92244b02010-01-19 22:00:14 +00002450 if (FunctionDecl *FD = C->getDirectCallee()) {
Artem Dergachev594b5412018-08-29 21:50:52 +00002451 // TODO: Support construction contexts for variadic function arguments.
2452 // These are a bit problematic and not very useful because passing
2453 // C++ objects as C-style variadic arguments doesn't work in general
2454 // (see [expr.call]).
2455 if (!FD->isVariadic())
2456 findConstructionContextsForArguments(C);
2457
Nico Weber758fbac2018-02-13 21:31:47 +00002458 if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context))
Mike Stump8c5d7992009-07-25 21:26:53 +00002459 NoReturn = true;
Mike Stump92244b02010-01-19 22:00:14 +00002460 if (FD->hasAttr<NoThrowAttr>())
Mike Stump04c68512010-01-21 15:20:48 +00002461 AddEHEdge = false;
Jordan Rose5374c072013-08-19 16:27:28 +00002462 if (FD->getBuiltinID() == Builtin::BI__builtin_object_size)
2463 OmitArguments = true;
Mike Stump92244b02010-01-19 22:00:14 +00002464 }
Mike Stump8c5d7992009-07-25 21:26:53 +00002465
Sebastian Redl31ad7542011-03-13 17:09:40 +00002466 if (!CanThrow(C->getCallee(), *Context))
Mike Stump04c68512010-01-21 15:20:48 +00002467 AddEHEdge = false;
2468
Jordan Rose5374c072013-08-19 16:27:28 +00002469 if (OmitArguments) {
2470 assert(!NoReturn && "noreturn calls with unevaluated args not implemented");
2471 assert(!AddEHEdge && "EH calls with unevaluated args not implemented");
2472 autoCreateBlock();
2473 appendStmt(Block, C);
2474 return Visit(C->getCallee());
2475 }
2476
2477 if (!NoReturn && !AddEHEdge) {
Artem Dergachev1527dec2018-03-12 23:12:40 +00002478 autoCreateBlock();
2479 appendCall(Block, C);
2480
2481 return VisitChildren(C);
Jordan Rose5374c072013-08-19 16:27:28 +00002482 }
Mike Stump11289f42009-09-09 15:08:12 +00002483
Mike Stump92244b02010-01-19 22:00:14 +00002484 if (Block) {
2485 Succ = Block;
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002486 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002487 return nullptr;
Mike Stump92244b02010-01-19 22:00:14 +00002488 }
Mike Stump11289f42009-09-09 15:08:12 +00002489
Chandler Carrutha70991b2011-09-13 09:13:49 +00002490 if (NoReturn)
2491 Block = createNoReturnBlock();
2492 else
2493 Block = createBlock();
2494
Artem Dergachev1527dec2018-03-12 23:12:40 +00002495 appendCall(Block, C);
Mike Stump8c5d7992009-07-25 21:26:53 +00002496
Mike Stump04c68512010-01-21 15:20:48 +00002497 if (AddEHEdge) {
Mike Stump92244b02010-01-19 22:00:14 +00002498 // Add exceptional edges.
2499 if (TryTerminatedBlock)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002500 addSuccessor(Block, TryTerminatedBlock);
Mike Stump92244b02010-01-19 22:00:14 +00002501 else
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002502 addSuccessor(Block, &cfg->getExit());
Mike Stump92244b02010-01-19 22:00:14 +00002503 }
Mike Stump11289f42009-09-09 15:08:12 +00002504
Mike Stump8c5d7992009-07-25 21:26:53 +00002505 return VisitChildren(C);
Ted Kremenek93668002009-07-17 22:18:43 +00002506}
Ted Kremenek9aae5132007-08-23 21:42:29 +00002507
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002508CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C,
2509 AddStmtChoice asc) {
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002510 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002511 appendStmt(ConfluenceBlock, C);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002512 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002513 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002514
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00002515 AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
Ted Kremenek21822592009-07-17 18:20:32 +00002516 Succ = ConfluenceBlock;
Craig Topper25542942014-05-20 04:30:07 +00002517 Block = nullptr;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002518 CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002519 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002520 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002521
Ted Kremenek21822592009-07-17 18:20:32 +00002522 Succ = ConfluenceBlock;
Craig Topper25542942014-05-20 04:30:07 +00002523 Block = nullptr;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002524 CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002525 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002526 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002527
Ted Kremenek21822592009-07-17 18:20:32 +00002528 Block = createBlock(false);
Mike Stump773582d2009-07-23 23:25:26 +00002529 // See if this is a known constant.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002530 const TryResult& KnownVal = tryEvaluateBool(C->getCond());
Craig Topper25542942014-05-20 04:30:07 +00002531 addSuccessor(Block, KnownVal.isFalse() ? nullptr : LHSBlock);
2532 addSuccessor(Block, KnownVal.isTrue() ? nullptr : RHSBlock);
Ted Kremenek21822592009-07-17 18:20:32 +00002533 Block->setTerminator(C);
Mike Stump11289f42009-09-09 15:08:12 +00002534 return addStmt(C->getCond());
Ted Kremenek21822592009-07-17 18:20:32 +00002535}
Mike Stump11289f42009-09-09 15:08:12 +00002536
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002537CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) {
Matthias Gehre09a134e2015-11-14 00:36:50 +00002538 LocalScope::const_iterator scopeBeginPos = ScopePos;
Matthias Gehre351c2182017-07-12 07:04:19 +00002539 addLocalScopeForStmt(C);
2540
Matthias Gehre09a134e2015-11-14 00:36:50 +00002541 if (!C->body_empty() && !isa<ReturnStmt>(*C->body_rbegin())) {
Richard Smitha547eb22016-07-14 00:11:03 +00002542 // If the body ends with a ReturnStmt, the dtors will be added in
2543 // VisitReturnStmt.
Matthias Gehre351c2182017-07-12 07:04:19 +00002544 addAutomaticObjHandling(ScopePos, scopeBeginPos, C);
Matthias Gehre09a134e2015-11-14 00:36:50 +00002545 }
2546
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002547 CFGBlock *LastBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00002548
2549 for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
2550 I != E; ++I ) {
Ted Kremenek4f2ab5a2010-08-17 21:00:06 +00002551 // If we hit a segment of code just containing ';' (NullStmts), we can
2552 // get a null block back. In such cases, just use the LastBlock
2553 if (CFGBlock *newBlock = addStmt(*I))
2554 LastBlock = newBlock;
Mike Stump11289f42009-09-09 15:08:12 +00002555
Ted Kremenekce499c22009-08-27 23:16:26 +00002556 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002557 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002558 }
Mike Stump92244b02010-01-19 22:00:14 +00002559
Ted Kremenek93668002009-07-17 22:18:43 +00002560 return LastBlock;
2561}
Mike Stump11289f42009-09-09 15:08:12 +00002562
John McCallc07a0c72011-02-17 10:25:35 +00002563CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C,
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002564 AddStmtChoice asc) {
John McCallc07a0c72011-02-17 10:25:35 +00002565 const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C);
Craig Topper25542942014-05-20 04:30:07 +00002566 const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : nullptr);
John McCallc07a0c72011-02-17 10:25:35 +00002567
Ted Kremenek51d40b02009-07-17 18:15:54 +00002568 // Create the confluence block that will "merge" the results of the ternary
2569 // expression.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002570 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002571 appendStmt(ConfluenceBlock, C);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002572 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002573 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002574
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00002575 AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
Ted Kremenek5868ec62010-04-11 17:02:10 +00002576
Ted Kremenek51d40b02009-07-17 18:15:54 +00002577 // Create a block for the LHS expression if there is an LHS expression. A
2578 // GCC extension allows LHS to be NULL, causing the condition to be the
2579 // value that is returned instead.
2580 // e.g: x ?: y is shorthand for: x ? x : y;
2581 Succ = ConfluenceBlock;
Craig Topper25542942014-05-20 04:30:07 +00002582 Block = nullptr;
2583 CFGBlock *LHSBlock = nullptr;
John McCallc07a0c72011-02-17 10:25:35 +00002584 const Expr *trueExpr = C->getTrueExpr();
2585 if (trueExpr != opaqueValue) {
2586 LHSBlock = Visit(C->getTrueExpr(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002587 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002588 return nullptr;
2589 Block = nullptr;
Ted Kremenek51d40b02009-07-17 18:15:54 +00002590 }
Ted Kremenekd8138012011-02-24 03:09:15 +00002591 else
2592 LHSBlock = ConfluenceBlock;
Mike Stump11289f42009-09-09 15:08:12 +00002593
Ted Kremenek51d40b02009-07-17 18:15:54 +00002594 // Create the block for the RHS expression.
2595 Succ = ConfluenceBlock;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002596 CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002597 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002598 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002599
Richard Smithf676e452012-07-24 21:02:14 +00002600 // If the condition is a logical '&&' or '||', build a more accurate CFG.
2601 if (BinaryOperator *Cond =
2602 dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens()))
2603 if (Cond->isLogicalOp())
2604 return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first;
2605
Ted Kremenek51d40b02009-07-17 18:15:54 +00002606 // Create the block that will contain the condition.
2607 Block = createBlock(false);
Mike Stump11289f42009-09-09 15:08:12 +00002608
Mike Stump773582d2009-07-23 23:25:26 +00002609 // See if this is a known constant.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002610 const TryResult& KnownVal = tryEvaluateBool(C->getCond());
Ted Kremenek5a095272014-03-04 21:53:26 +00002611 addSuccessor(Block, LHSBlock, !KnownVal.isFalse());
2612 addSuccessor(Block, RHSBlock, !KnownVal.isTrue());
Ted Kremenek51d40b02009-07-17 18:15:54 +00002613 Block->setTerminator(C);
John McCallc07a0c72011-02-17 10:25:35 +00002614 Expr *condExpr = C->getCond();
John McCall68cc3352011-02-19 03:13:26 +00002615
Ted Kremenekd8138012011-02-24 03:09:15 +00002616 if (opaqueValue) {
2617 // Run the condition expression if it's not trivially expressed in
2618 // terms of the opaque value (or if there is no opaque value).
2619 if (condExpr != opaqueValue)
2620 addStmt(condExpr);
John McCall68cc3352011-02-19 03:13:26 +00002621
Ted Kremenekd8138012011-02-24 03:09:15 +00002622 // Before that, run the common subexpression if there was one.
2623 // At least one of this or the above will be run.
2624 return addStmt(BCO->getCommon());
2625 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002626
Ted Kremenekd8138012011-02-24 03:09:15 +00002627 return addStmt(condExpr);
Ted Kremenek51d40b02009-07-17 18:15:54 +00002628}
2629
Ted Kremenek93668002009-07-17 22:18:43 +00002630CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
Ted Kremenek6878c362011-05-10 18:42:15 +00002631 // Check if the Decl is for an __label__. If so, elide it from the
2632 // CFG entirely.
2633 if (isa<LabelDecl>(*DS->decl_begin()))
2634 return Block;
Fangrui Song6907ce22018-07-30 19:24:48 +00002635
Ted Kremenek3a601142011-05-24 20:41:31 +00002636 // This case also handles static_asserts.
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002637 if (DS->isSingleDecl())
2638 return VisitDeclSubExpr(DS);
Mike Stump11289f42009-09-09 15:08:12 +00002639
Craig Topper25542942014-05-20 04:30:07 +00002640 CFGBlock *B = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002641
Jordan Rose8c6c8a92012-07-20 18:50:48 +00002642 // Build an individual DeclStmt for each decl.
2643 for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(),
2644 E = DS->decl_rend();
2645 I != E; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +00002646
Ted Kremenek93668002009-07-17 22:18:43 +00002647 // Allocate the DeclStmt using the BumpPtrAllocator. It will get
2648 // automatically freed with the CFG.
2649 DeclGroupRef DG(*I);
2650 Decl *D = *I;
George Karpenkovc1ac8082018-10-02 21:19:01 +00002651 DeclStmt *DSNew = new (Context) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
Jordan Rosecf10ea82013-06-06 21:53:45 +00002652 cfg->addSyntheticDeclStmt(DSNew, DS);
Mike Stump11289f42009-09-09 15:08:12 +00002653
Ted Kremenek93668002009-07-17 22:18:43 +00002654 // Append the fake DeclStmt to block.
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002655 B = VisitDeclSubExpr(DSNew);
Ted Kremenek93668002009-07-17 22:18:43 +00002656 }
Mike Stump11289f42009-09-09 15:08:12 +00002657
2658 return B;
Ted Kremenek93668002009-07-17 22:18:43 +00002659}
Mike Stump11289f42009-09-09 15:08:12 +00002660
Ted Kremenek93668002009-07-17 22:18:43 +00002661/// VisitDeclSubExpr - Utility method to add block-level expressions for
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002662/// DeclStmts and initializers in them.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002663CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002664 assert(DS->isSingleDecl() && "Can handle single declarations only.");
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002665 VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002666
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002667 if (!VD) {
Jordan Rose5250b872013-06-03 22:59:41 +00002668 // Of everything that can be declared in a DeclStmt, only VarDecls impact
2669 // runtime semantics.
Ted Kremenek93668002009-07-17 22:18:43 +00002670 return Block;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002671 }
Mike Stump11289f42009-09-09 15:08:12 +00002672
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002673 bool HasTemporaries = false;
2674
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002675 // Guard static initializers under a branch.
Craig Topper25542942014-05-20 04:30:07 +00002676 CFGBlock *blockAfterStaticInit = nullptr;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002677
2678 if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) {
2679 // For static variables, we need to create a branch to track
2680 // whether or not they are initialized.
2681 if (Block) {
2682 Succ = Block;
Craig Topper25542942014-05-20 04:30:07 +00002683 Block = nullptr;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002684 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002685 return nullptr;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002686 }
2687 blockAfterStaticInit = Succ;
2688 }
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002689
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002690 // Destructors of temporaries in initialization expression should be called
2691 // after initialization finishes.
Ted Kremenek93668002009-07-17 22:18:43 +00002692 Expr *Init = VD->getInit();
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002693 if (Init) {
John McCall5d413782010-12-06 08:20:24 +00002694 HasTemporaries = isa<ExprWithCleanups>(Init);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002695
Jordan Rose6d671cc2012-09-05 22:55:23 +00002696 if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002697 // Generate destructors for temporaries in initialization expression.
Manuel Klimekdeb02622014-08-08 07:37:13 +00002698 TempDtorContext Context;
Manuel Klimekb5616c92014-08-07 10:42:17 +00002699 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
2700 /*BindToTemporary=*/false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002701 }
2702 }
2703
2704 autoCreateBlock();
Ted Kremenek8219b822010-12-16 07:46:53 +00002705 appendStmt(Block, DS);
Artem Dergachev5fc10332018-02-10 01:55:23 +00002706
Artem Dergachev783a4572018-02-23 22:20:39 +00002707 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00002708 ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS),
Artem Dergachev783a4572018-02-23 22:20:39 +00002709 Init);
Artem Dergachev5fc10332018-02-10 01:55:23 +00002710
Ted Kremenek213d0532012-03-22 05:57:43 +00002711 // Keep track of the last non-null block, as 'Block' can be nulled out
2712 // if the initializer expression is something like a 'while' in a
2713 // statement-expression.
2714 CFGBlock *LastBlock = Block;
Mike Stump11289f42009-09-09 15:08:12 +00002715
Ted Kremenek93668002009-07-17 22:18:43 +00002716 if (Init) {
Ted Kremenek213d0532012-03-22 05:57:43 +00002717 if (HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002718 // For expression with temporaries go directly to subexpression to omit
2719 // generating destructors for the second time.
Ted Kremenek213d0532012-03-22 05:57:43 +00002720 ExprWithCleanups *EC = cast<ExprWithCleanups>(Init);
2721 if (CFGBlock *newBlock = Visit(EC->getSubExpr()))
2722 LastBlock = newBlock;
2723 }
2724 else {
2725 if (CFGBlock *newBlock = Visit(Init))
2726 LastBlock = newBlock;
2727 }
Ted Kremenek93668002009-07-17 22:18:43 +00002728 }
Mike Stump11289f42009-09-09 15:08:12 +00002729
Ted Kremenek93668002009-07-17 22:18:43 +00002730 // If the type of VD is a VLA, then we must process its size expressions.
John McCall424cec92011-01-19 06:33:43 +00002731 for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr());
Craig Topper25542942014-05-20 04:30:07 +00002732 VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) {
Ted Kremeneke6ee6712012-11-13 00:12:13 +00002733 if (CFGBlock *newBlock = addStmt(VA->getSizeExpr()))
2734 LastBlock = newBlock;
2735 }
Mike Stump11289f42009-09-09 15:08:12 +00002736
Maxim Ostapenkodebca452018-03-12 12:26:15 +00002737 maybeAddScopeBeginForVarDecl(Block, VD, DS);
2738
Marcin Swiderski667ffec2010-10-01 00:23:17 +00002739 // Remove variable from local scope.
2740 if (ScopePos && VD == *ScopePos)
2741 ++ScopePos;
2742
Ted Kremenek338c3aa2013-03-29 00:09:28 +00002743 CFGBlock *B = LastBlock;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002744 if (blockAfterStaticInit) {
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002745 Succ = B;
Ted Kremenek338c3aa2013-03-29 00:09:28 +00002746 Block = createBlock(false);
2747 Block->setTerminator(DS);
Ted Kremenekf82d5782013-03-29 00:42:56 +00002748 addSuccessor(Block, blockAfterStaticInit);
Ted Kremenek338c3aa2013-03-29 00:09:28 +00002749 addSuccessor(Block, B);
2750 B = Block;
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002751 }
2752
2753 return B;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002754}
2755
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002756CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) {
Mike Stump31feda52009-07-17 01:31:16 +00002757 // We may see an if statement in the middle of a basic block, or it may be the
2758 // first statement we are processing. In either case, we create a new basic
2759 // block. First, we create the blocks for the then...else statements, and
2760 // then we create the block containing the if statement. If we were in the
Ted Kremenek0868eea2009-09-24 18:45:41 +00002761 // middle of a block, we stop processing that block. That block is then the
2762 // implicit successor for the "then" and "else" clauses.
Mike Stump31feda52009-07-17 01:31:16 +00002763
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002764 // Save local scope position because in case of condition variable ScopePos
2765 // won't be restored when traversing AST.
2766 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2767
Richard Smitha547eb22016-07-14 00:11:03 +00002768 // Create local scope for C++17 if init-stmt if one exists.
Richard Smith509bbd12017-01-13 22:16:41 +00002769 if (Stmt *Init = I->getInit())
Richard Smitha547eb22016-07-14 00:11:03 +00002770 addLocalScopeForStmt(Init);
Richard Smitha547eb22016-07-14 00:11:03 +00002771
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002772 // Create local scope for possible condition variable.
2773 // Store scope position. Add implicit destructor.
Richard Smith509bbd12017-01-13 22:16:41 +00002774 if (VarDecl *VD = I->getConditionVariable())
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002775 addLocalScopeForVarDecl(VD);
Richard Smith509bbd12017-01-13 22:16:41 +00002776
Matthias Gehre351c2182017-07-12 07:04:19 +00002777 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), I);
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002778
Chris Lattner57540c52011-04-15 05:22:18 +00002779 // The block we were processing is now finished. Make it the successor
Mike Stump31feda52009-07-17 01:31:16 +00002780 // block.
2781 if (Block) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00002782 Succ = Block;
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002783 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002784 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002785 }
Mike Stump31feda52009-07-17 01:31:16 +00002786
Ted Kremenek0bcdc982009-07-17 18:04:55 +00002787 // Process the false branch.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002788 CFGBlock *ElseBlock = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00002789
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002790 if (Stmt *Else = I->getElse()) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00002791 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump31feda52009-07-17 01:31:16 +00002792
Ted Kremenek9aae5132007-08-23 21:42:29 +00002793 // NULL out Block so that the recursive call to Visit will
Mike Stump31feda52009-07-17 01:31:16 +00002794 // create a new basic block.
Craig Topper25542942014-05-20 04:30:07 +00002795 Block = nullptr;
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002796
2797 // If branch is not a compound statement create implicit scope
2798 // and add destructors.
2799 if (!isa<CompoundStmt>(Else))
2800 addLocalScopeAndDtors(Else);
2801
Ted Kremenek93668002009-07-17 22:18:43 +00002802 ElseBlock = addStmt(Else);
Mike Stump31feda52009-07-17 01:31:16 +00002803
Ted Kremenekbbad8ce2007-08-30 18:13:31 +00002804 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
2805 ElseBlock = sv.get();
Ted Kremenek55957a82009-05-02 00:13:27 +00002806 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002807 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002808 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00002809 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00002810 }
Mike Stump31feda52009-07-17 01:31:16 +00002811
Ted Kremenek0bcdc982009-07-17 18:04:55 +00002812 // Process the true branch.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002813 CFGBlock *ThenBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002814 {
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002815 Stmt *Then = I->getThen();
Ted Kremenek1362b8b2010-01-19 20:46:35 +00002816 assert(Then);
Ted Kremenek9aae5132007-08-23 21:42:29 +00002817 SaveAndRestore<CFGBlock*> sv(Succ);
Craig Topper25542942014-05-20 04:30:07 +00002818 Block = nullptr;
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002819
2820 // If branch is not a compound statement create implicit scope
2821 // and add destructors.
2822 if (!isa<CompoundStmt>(Then))
2823 addLocalScopeAndDtors(Then);
2824
Ted Kremenek93668002009-07-17 22:18:43 +00002825 ThenBlock = addStmt(Then);
Mike Stump31feda52009-07-17 01:31:16 +00002826
Ted Kremenek1b379512009-04-01 03:52:47 +00002827 if (!ThenBlock) {
2828 // We can reach here if the "then" body has all NullStmts.
2829 // Create an empty block so we can distinguish between true and false
2830 // branches in path-sensitive analyses.
2831 ThenBlock = createBlock(false);
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002832 addSuccessor(ThenBlock, sv.get());
Mike Stump31feda52009-07-17 01:31:16 +00002833 } else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002834 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002835 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00002836 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00002837 }
2838
Ted Kremenekb50e7162012-07-14 05:04:10 +00002839 // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by
2840 // having these handle the actual control-flow jump. Note that
2841 // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)"
2842 // we resort to the old control-flow behavior. This special handling
2843 // removes infeasible paths from the control-flow graph by having the
2844 // control-flow transfer of '&&' or '||' go directly into the then/else
2845 // blocks directly.
Richard Smith509bbd12017-01-13 22:16:41 +00002846 BinaryOperator *Cond =
2847 I->getConditionVariable()
2848 ? nullptr
2849 : dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens());
2850 CFGBlock *LastBlock;
2851 if (Cond && Cond->isLogicalOp())
2852 LastBlock = VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first;
2853 else {
2854 // Now create a new block containing the if statement.
2855 Block = createBlock(false);
Ted Kremenekb50e7162012-07-14 05:04:10 +00002856
Richard Smith509bbd12017-01-13 22:16:41 +00002857 // Set the terminator of the new block to the If statement.
2858 Block->setTerminator(I);
Mike Stump31feda52009-07-17 01:31:16 +00002859
Richard Smith509bbd12017-01-13 22:16:41 +00002860 // See if this is a known constant.
2861 const TryResult &KnownVal = tryEvaluateBool(I->getCond());
Mike Stump31feda52009-07-17 01:31:16 +00002862
Richard Smith509bbd12017-01-13 22:16:41 +00002863 // Add the successors. If we know that specific branches are
2864 // unreachable, inform addSuccessor() of that knowledge.
2865 addSuccessor(Block, ThenBlock, /* isReachable = */ !KnownVal.isFalse());
2866 addSuccessor(Block, ElseBlock, /* isReachable = */ !KnownVal.isTrue());
Mike Stump773582d2009-07-23 23:25:26 +00002867
Richard Smith509bbd12017-01-13 22:16:41 +00002868 // Add the condition as the last statement in the new block. This may
2869 // create new blocks as the condition may contain control-flow. Any newly
2870 // created blocks will be pointed to be "Block".
2871 LastBlock = addStmt(I->getCond());
Mike Stump31feda52009-07-17 01:31:16 +00002872
Richard Smith509bbd12017-01-13 22:16:41 +00002873 // If the IfStmt contains a condition variable, add it and its
2874 // initializer to the CFG.
2875 if (const DeclStmt* DS = I->getConditionVariableDeclStmt()) {
2876 autoCreateBlock();
2877 LastBlock = addStmt(const_cast<DeclStmt *>(DS));
2878 }
Ted Kremeneka7bcbde2009-12-23 04:49:01 +00002879 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002880
Richard Smitha547eb22016-07-14 00:11:03 +00002881 // Finally, if the IfStmt contains a C++17 init-stmt, add it to the CFG.
2882 if (Stmt *Init = I->getInit()) {
2883 autoCreateBlock();
2884 LastBlock = addStmt(Init);
2885 }
2886
Ted Kremeneke6ee6712012-11-13 00:12:13 +00002887 return LastBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002888}
Mike Stump31feda52009-07-17 01:31:16 +00002889
Brian Gesiaka87ecf62018-11-03 22:35:17 +00002890CFGBlock *CFGBuilder::VisitReturnStmt(Stmt *S) {
Ted Kremenek0868eea2009-09-24 18:45:41 +00002891 // If we were in the middle of a block we stop processing that block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00002892 //
Brian Gesiaka87ecf62018-11-03 22:35:17 +00002893 // NOTE: If a "return" or "co_return" appears in the middle of a block, this
2894 // means that the code afterwards is DEAD (unreachable). We still keep
2895 // a basic block for that code; a simple "mark-and-sweep" from the entry
2896 // block will be able to report such dead blocks.
2897 assert(isa<ReturnStmt>(S) || isa<CoreturnStmt>(S));
Ted Kremenek9aae5132007-08-23 21:42:29 +00002898
2899 // Create the new block.
2900 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00002901
Brian Gesiaka87ecf62018-11-03 22:35:17 +00002902 addAutomaticObjHandling(ScopePos, LocalScope::const_iterator(), S);
Pavel Labath921e7652013-09-06 08:12:48 +00002903
Brian Gesiaka87ecf62018-11-03 22:35:17 +00002904 if (auto *R = dyn_cast<ReturnStmt>(S))
2905 findConstructionContexts(
2906 ConstructionContextLayer::create(cfg->getBumpVectorContext(), R),
2907 R->getRetValue());
Artem Dergachev9ac2e112018-02-12 22:36:36 +00002908
Pavel Labath921e7652013-09-06 08:12:48 +00002909 // If the one of the destructors does not return, we already have the Exit
2910 // block as a successor.
2911 if (!Block->hasNoReturnElement())
2912 addSuccessor(Block, &cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +00002913
2914 // Add the return statement to the block. This may create new blocks if R
2915 // contains control-flow (short-circuit operations).
Brian Gesiaka87ecf62018-11-03 22:35:17 +00002916 return VisitStmt(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek9aae5132007-08-23 21:42:29 +00002917}
2918
Nico Weber699670e2017-08-23 15:33:16 +00002919CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) {
2920 // SEHExceptStmt are treated like labels, so they are the first statement in a
2921 // block.
2922
2923 // Save local scope position because in case of exception variable ScopePos
2924 // won't be restored when traversing AST.
2925 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2926
2927 addStmt(ES->getBlock());
2928 CFGBlock *SEHExceptBlock = Block;
2929 if (!SEHExceptBlock)
2930 SEHExceptBlock = createBlock();
2931
2932 appendStmt(SEHExceptBlock, ES);
2933
2934 // Also add the SEHExceptBlock as a label, like with regular labels.
2935 SEHExceptBlock->setLabel(ES);
2936
2937 // Bail out if the CFG is bad.
2938 if (badCFG)
2939 return nullptr;
2940
2941 // We set Block to NULL to allow lazy creation of a new block (if necessary).
2942 Block = nullptr;
2943
2944 return SEHExceptBlock;
2945}
2946
2947CFGBlock *CFGBuilder::VisitSEHFinallyStmt(SEHFinallyStmt *FS) {
2948 return VisitCompoundStmt(FS->getBlock());
2949}
2950
2951CFGBlock *CFGBuilder::VisitSEHLeaveStmt(SEHLeaveStmt *LS) {
2952 // "__leave" is a control-flow statement. Thus we stop processing the current
2953 // block.
2954 if (badCFG)
2955 return nullptr;
2956
2957 // Now create a new block that ends with the __leave statement.
2958 Block = createBlock(false);
2959 Block->setTerminator(LS);
2960
2961 // If there is no target for the __leave, then we are looking at an incomplete
2962 // AST. This means that the CFG cannot be constructed.
2963 if (SEHLeaveJumpTarget.block) {
2964 addAutomaticObjHandling(ScopePos, SEHLeaveJumpTarget.scopePosition, LS);
2965 addSuccessor(Block, SEHLeaveJumpTarget.block);
2966 } else
2967 badCFG = true;
2968
2969 return Block;
2970}
2971
2972CFGBlock *CFGBuilder::VisitSEHTryStmt(SEHTryStmt *Terminator) {
2973 // "__try"/"__except"/"__finally" is a control-flow statement. Thus we stop
2974 // processing the current block.
2975 CFGBlock *SEHTrySuccessor = nullptr;
2976
2977 if (Block) {
2978 if (badCFG)
2979 return nullptr;
2980 SEHTrySuccessor = Block;
2981 } else SEHTrySuccessor = Succ;
2982
2983 // FIXME: Implement __finally support.
2984 if (Terminator->getFinallyHandler())
2985 return NYS();
2986
2987 CFGBlock *PrevSEHTryTerminatedBlock = TryTerminatedBlock;
2988
2989 // Create a new block that will contain the __try statement.
2990 CFGBlock *NewTryTerminatedBlock = createBlock(false);
2991
2992 // Add the terminator in the __try block.
2993 NewTryTerminatedBlock->setTerminator(Terminator);
2994
2995 if (SEHExceptStmt *Except = Terminator->getExceptHandler()) {
2996 // The code after the try is the implicit successor if there's an __except.
2997 Succ = SEHTrySuccessor;
2998 Block = nullptr;
2999 CFGBlock *ExceptBlock = VisitSEHExceptStmt(Except);
3000 if (!ExceptBlock)
3001 return nullptr;
3002 // Add this block to the list of successors for the block with the try
3003 // statement.
3004 addSuccessor(NewTryTerminatedBlock, ExceptBlock);
3005 }
3006 if (PrevSEHTryTerminatedBlock)
3007 addSuccessor(NewTryTerminatedBlock, PrevSEHTryTerminatedBlock);
3008 else
3009 addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
3010
3011 // The code after the try is the implicit successor.
3012 Succ = SEHTrySuccessor;
3013
3014 // Save the current "__try" context.
3015 SaveAndRestore<CFGBlock *> save_try(TryTerminatedBlock,
3016 NewTryTerminatedBlock);
3017 cfg->addTryDispatchBlock(TryTerminatedBlock);
3018
3019 // Save the current value for the __leave target.
3020 // All __leaves should go to the code following the __try
3021 // (FIXME: or if the __try has a __finally, to the __finally.)
3022 SaveAndRestore<JumpTarget> save_break(SEHLeaveJumpTarget);
3023 SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos);
3024
3025 assert(Terminator->getTryBlock() && "__try must contain a non-NULL body");
3026 Block = nullptr;
3027 return addStmt(Terminator->getTryBlock());
3028}
3029
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003030CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00003031 // Get the block of the labeled statement. Add it to our map.
Ted Kremenek93668002009-07-17 22:18:43 +00003032 addStmt(L->getSubStmt());
Chris Lattnerc8e630e2011-02-17 07:39:24 +00003033 CFGBlock *LabelBlock = Block;
Mike Stump31feda52009-07-17 01:31:16 +00003034
Ted Kremenek93668002009-07-17 22:18:43 +00003035 if (!LabelBlock) // This can happen when the body is empty, i.e.
3036 LabelBlock = createBlock(); // scopes that only contains NullStmts.
Mike Stump31feda52009-07-17 01:31:16 +00003037
Chris Lattnerc8e630e2011-02-17 07:39:24 +00003038 assert(LabelMap.find(L->getDecl()) == LabelMap.end() &&
3039 "label already in map");
3040 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003041
3042 // Labels partition blocks, so this is the end of the basic block we were
3043 // processing (L is the block's label). Because this is label (and we have
3044 // already processed the substatement) there is no extra control-flow to worry
3045 // about.
Ted Kremenek71eca012007-08-29 23:20:49 +00003046 LabelBlock->setLabel(L);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003047 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003048 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003049
3050 // We set Block to NULL to allow lazy creation of a new block (if necessary);
Craig Topper25542942014-05-20 04:30:07 +00003051 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003052
Ted Kremenek9aae5132007-08-23 21:42:29 +00003053 // This block is now the implicit successor of other blocks.
3054 Succ = LabelBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003055
Ted Kremenek9aae5132007-08-23 21:42:29 +00003056 return LabelBlock;
3057}
3058
Devin Coughlinb6029b72015-11-25 22:35:37 +00003059CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) {
3060 CFGBlock *LastBlock = VisitNoRecurse(E, asc);
3061 for (const BlockDecl::Capture &CI : E->getBlockDecl()->captures()) {
3062 if (Expr *CopyExpr = CI.getCopyExpr()) {
3063 CFGBlock *Tmp = Visit(CopyExpr);
3064 if (Tmp)
3065 LastBlock = Tmp;
3066 }
3067 }
3068 return LastBlock;
3069}
3070
Ted Kremenekda76a942012-04-12 20:34:52 +00003071CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) {
3072 CFGBlock *LastBlock = VisitNoRecurse(E, asc);
3073 for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(),
3074 et = E->capture_init_end(); it != et; ++it) {
3075 if (Expr *Init = *it) {
3076 CFGBlock *Tmp = Visit(Init);
Craig Topper25542942014-05-20 04:30:07 +00003077 if (Tmp)
Ted Kremenekda76a942012-04-12 20:34:52 +00003078 LastBlock = Tmp;
3079 }
3080 }
3081 return LastBlock;
3082}
Fangrui Song6907ce22018-07-30 19:24:48 +00003083
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003084CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) {
Mike Stump31feda52009-07-17 01:31:16 +00003085 // Goto is a control-flow statement. Thus we stop processing the current
3086 // block and create a new one.
Ted Kremenek93668002009-07-17 22:18:43 +00003087
Ted Kremenek9aae5132007-08-23 21:42:29 +00003088 Block = createBlock(false);
3089 Block->setTerminator(G);
Mike Stump31feda52009-07-17 01:31:16 +00003090
3091 // If we already know the mapping to the label block add the successor now.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003092 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
Mike Stump31feda52009-07-17 01:31:16 +00003093
Ted Kremenek9aae5132007-08-23 21:42:29 +00003094 if (I == LabelMap.end())
3095 // We will need to backpatch this block later.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003096 BackpatchBlocks.push_back(JumpSource(Block, ScopePos));
3097 else {
3098 JumpTarget JT = I->second;
Matthias Gehre351c2182017-07-12 07:04:19 +00003099 addAutomaticObjHandling(ScopePos, JT.scopePosition, G);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003100 addSuccessor(Block, JT.block);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003101 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00003102
Mike Stump31feda52009-07-17 01:31:16 +00003103 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003104}
3105
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003106CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) {
Craig Topper25542942014-05-20 04:30:07 +00003107 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003108
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003109 // Save local scope position because in case of condition variable ScopePos
3110 // won't be restored when traversing AST.
3111 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3112
3113 // Create local scope for init statement and possible condition variable.
3114 // Add destructor for init statement and condition variable.
3115 // Store scope position for continue statement.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003116 if (Stmt *Init = F->getInit())
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003117 addLocalScopeForStmt(Init);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003118 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
3119
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003120 if (VarDecl *VD = F->getConditionVariable())
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003121 addLocalScopeForVarDecl(VD);
3122 LocalScope::const_iterator ContinueScopePos = ScopePos;
3123
Matthias Gehre351c2182017-07-12 07:04:19 +00003124 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), F);
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003125
Peter Szecsi999a25f2017-08-19 11:19:16 +00003126 addLoopExit(F);
3127
Mike Stump014b3ea2009-07-21 01:12:51 +00003128 // "for" is a control-flow statement. Thus we stop processing the current
3129 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003130 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003131 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003132 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003133 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003134 } else
3135 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00003136
Ted Kremenek304a9532010-05-21 20:30:15 +00003137 // Save the current value for the break targets.
3138 // All breaks should go to the code following the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003139 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003140 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Ted Kremenek304a9532010-05-21 20:30:15 +00003141
Craig Topper25542942014-05-20 04:30:07 +00003142 CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr;
Mike Stump773582d2009-07-23 23:25:26 +00003143
Ted Kremenek9aae5132007-08-23 21:42:29 +00003144 // Now create the loop body.
3145 {
Ted Kremenek1362b8b2010-01-19 20:46:35 +00003146 assert(F->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003147
Ted Kremenekb50e7162012-07-14 05:04:10 +00003148 // Save the current values for Block, Succ, continue and break targets.
3149 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3150 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00003151
Ted Kremenekb50e7162012-07-14 05:04:10 +00003152 // Create an empty block to represent the transition block for looping back
3153 // to the head of the loop. If we have increment code, it will
3154 // go in this block as well.
3155 Block = Succ = TransitionBlock = createBlock(false);
3156 TransitionBlock->setLoopTarget(F);
Mike Stump31feda52009-07-17 01:31:16 +00003157
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003158 if (Stmt *I = F->getInc()) {
Mike Stump31feda52009-07-17 01:31:16 +00003159 // Generate increment code in its own basic block. This is the target of
3160 // continue statements.
Ted Kremenek93668002009-07-17 22:18:43 +00003161 Succ = addStmt(I);
Ted Kremenekb0746ca2008-09-04 21:48:47 +00003162 }
Mike Stump31feda52009-07-17 01:31:16 +00003163
Ted Kremenek902393b2009-04-28 00:51:56 +00003164 // Finish up the increment (or empty) block if it hasn't been already.
3165 if (Block) {
3166 assert(Block == Succ);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003167 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003168 return nullptr;
3169 Block = nullptr;
Ted Kremenek902393b2009-04-28 00:51:56 +00003170 }
Mike Stump31feda52009-07-17 01:31:16 +00003171
Ted Kremenekb50e7162012-07-14 05:04:10 +00003172 // The starting block for the loop increment is the block that should
3173 // represent the 'loop target' for looping back to the start of the loop.
3174 ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
3175 ContinueJumpTarget.block->setLoopTarget(F);
Mike Stump31feda52009-07-17 01:31:16 +00003176
Ted Kremenekb50e7162012-07-14 05:04:10 +00003177 // Loop body should end with destructor of Condition variable (if any).
Matthias Gehre351c2182017-07-12 07:04:19 +00003178 addAutomaticObjHandling(ScopePos, LoopBeginScopePos, F);
Ted Kremenek902393b2009-04-28 00:51:56 +00003179
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00003180 // If body is not a compound statement create implicit scope
3181 // and add destructors.
3182 if (!isa<CompoundStmt>(F->getBody()))
3183 addLocalScopeAndDtors(F->getBody());
3184
Mike Stump31feda52009-07-17 01:31:16 +00003185 // Now populate the body block, and in the process create new blocks as we
3186 // walk the body of the loop.
Ted Kremenekb50e7162012-07-14 05:04:10 +00003187 BodyBlock = addStmt(F->getBody());
Ted Kremeneke9610502007-08-30 18:39:40 +00003188
Ted Kremenekb50e7162012-07-14 05:04:10 +00003189 if (!BodyBlock) {
3190 // In the case of "for (...;...;...);" we can have a null BodyBlock.
3191 // Use the continue jump target as the proxy for the body.
3192 BodyBlock = ContinueJumpTarget.block;
3193 }
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003194 else if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003195 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003196 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003197
Ted Kremenekb50e7162012-07-14 05:04:10 +00003198 // Because of short-circuit evaluation, the condition of the loop can span
3199 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
3200 // evaluate the condition.
Craig Topper25542942014-05-20 04:30:07 +00003201 CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003202
Ted Kremenekb50e7162012-07-14 05:04:10 +00003203 do {
3204 Expr *C = F->getCond();
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003205 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003206
3207 // Specially handle logical operators, which have a slightly
3208 // more optimal CFG representation.
Richard Smithf676e452012-07-24 21:02:14 +00003209 if (BinaryOperator *Cond =
Craig Topper25542942014-05-20 04:30:07 +00003210 dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : nullptr))
Ted Kremenekb50e7162012-07-14 05:04:10 +00003211 if (Cond->isLogicalOp()) {
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00003212 std::tie(EntryConditionBlock, ExitConditionBlock) =
Ted Kremenekb50e7162012-07-14 05:04:10 +00003213 VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor);
3214 break;
3215 }
3216
3217 // The default case when not handling logical operators.
3218 EntryConditionBlock = ExitConditionBlock = createBlock(false);
3219 ExitConditionBlock->setTerminator(F);
3220
3221 // See if this is a known constant.
3222 TryResult KnownVal(true);
3223
3224 if (C) {
3225 // Now add the actual condition to the condition block.
3226 // Because the condition itself may contain control-flow, new blocks may
3227 // be created. Thus we update "Succ" after adding the condition.
3228 Block = ExitConditionBlock;
3229 EntryConditionBlock = addStmt(C);
3230
3231 // If this block contains a condition variable, add both the condition
3232 // variable and initializer to the CFG.
3233 if (VarDecl *VD = F->getConditionVariable()) {
3234 if (Expr *Init = VD->getInit()) {
3235 autoCreateBlock();
Artem Dergachevab9b78b2018-04-19 23:30:15 +00003236 const DeclStmt *DS = F->getConditionVariableDeclStmt();
3237 assert(DS->isSingleDecl());
3238 findConstructionContexts(
Artem Dergachev1f8cb3a2018-07-31 21:12:42 +00003239 ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS),
Artem Dergachevab9b78b2018-04-19 23:30:15 +00003240 Init);
3241 appendStmt(Block, DS);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003242 EntryConditionBlock = addStmt(Init);
3243 assert(Block == EntryConditionBlock);
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003244 maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003245 }
3246 }
3247
3248 if (Block && badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003249 return nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003250
3251 KnownVal = tryEvaluateBool(C);
3252 }
3253
3254 // Add the loop body entry as a successor to the condition.
Craig Topper25542942014-05-20 04:30:07 +00003255 addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003256 // Link up the condition block with the code that follows the loop. (the
3257 // false branch).
Craig Topper25542942014-05-20 04:30:07 +00003258 addSuccessor(ExitConditionBlock,
3259 KnownVal.isTrue() ? nullptr : LoopSuccessor);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003260 } while (false);
3261
3262 // Link up the loop-back block to the entry condition block.
3263 addSuccessor(TransitionBlock, EntryConditionBlock);
Fangrui Song6907ce22018-07-30 19:24:48 +00003264
Ted Kremenekb50e7162012-07-14 05:04:10 +00003265 // The condition block is the implicit successor for any code above the loop.
3266 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003267
Ted Kremenek9aae5132007-08-23 21:42:29 +00003268 // If the loop contains initialization, create a new block for those
Mike Stump31feda52009-07-17 01:31:16 +00003269 // statements. This block can also contain statements that precede the loop.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003270 if (Stmt *I = F->getInit()) {
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003271 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3272 ScopePos = LoopBeginScopePos;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003273 Block = createBlock();
Ted Kremenek81e14852007-08-27 19:46:09 +00003274 return addStmt(I);
Ted Kremenek9aae5132007-08-23 21:42:29 +00003275 }
Zhanyong Wan59f09c72010-11-22 19:32:14 +00003276
3277 // There is no loop initialization. We are thus basically a while loop.
3278 // NULL out Block to force lazy block construction.
Craig Topper25542942014-05-20 04:30:07 +00003279 Block = nullptr;
Zhanyong Wan59f09c72010-11-22 19:32:14 +00003280 Succ = EntryConditionBlock;
3281 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003282}
3283
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00003284CFGBlock *
3285CFGBuilder::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE,
3286 AddStmtChoice asc) {
3287 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00003288 ConstructionContextLayer::create(cfg->getBumpVectorContext(), MTE),
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00003289 MTE->getTemporary());
3290
3291 return VisitStmt(MTE, asc);
3292}
3293
Ted Kremenek5868ec62010-04-11 17:02:10 +00003294CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00003295 if (asc.alwaysAdd(*this, M)) {
Ted Kremenek5868ec62010-04-11 17:02:10 +00003296 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00003297 appendStmt(Block, M);
Ted Kremenek5868ec62010-04-11 17:02:10 +00003298 }
Ted Kremenek8219b822010-12-16 07:46:53 +00003299 return Visit(M->getBase());
Ted Kremenek5868ec62010-04-11 17:02:10 +00003300}
3301
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003302CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
Ted Kremenek9d56e642008-11-11 17:10:00 +00003303 // Objective-C fast enumeration 'for' statements:
3304 // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
3305 //
3306 // for ( Type newVariable in collection_expression ) { statements }
3307 //
3308 // becomes:
3309 //
3310 // prologue:
3311 // 1. collection_expression
3312 // T. jump to loop_entry
3313 // loop_entry:
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003314 // 1. side-effects of element expression
Ted Kremenek9d56e642008-11-11 17:10:00 +00003315 // 1. ObjCForCollectionStmt [performs binding to newVariable]
3316 // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil]
3317 // TB:
3318 // statements
3319 // T. jump to loop_entry
3320 // FB:
3321 // what comes after
3322 //
3323 // and
3324 //
3325 // Type existingItem;
3326 // for ( existingItem in expression ) { statements }
3327 //
3328 // becomes:
3329 //
Mike Stump31feda52009-07-17 01:31:16 +00003330 // the same with newVariable replaced with existingItem; the binding works
3331 // the same except that for one ObjCForCollectionStmt::getElement() returns
3332 // a DeclStmt and the other returns a DeclRefExpr.
Mike Stump31feda52009-07-17 01:31:16 +00003333
Craig Topper25542942014-05-20 04:30:07 +00003334 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003335
Ted Kremenek9d56e642008-11-11 17:10:00 +00003336 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003337 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003338 return nullptr;
Ted Kremenek9d56e642008-11-11 17:10:00 +00003339 LoopSuccessor = Block;
Craig Topper25542942014-05-20 04:30:07 +00003340 Block = nullptr;
Ted Kremenek93668002009-07-17 22:18:43 +00003341 } else
3342 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00003343
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003344 // Build the condition blocks.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003345 CFGBlock *ExitConditionBlock = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00003346
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003347 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00003348 ExitConditionBlock->setTerminator(S);
3349
3350 // The last statement in the block should be the ObjCForCollectionStmt, which
3351 // performs the actual binding to 'element' and determines if there are any
3352 // more items in the collection.
Ted Kremenek8219b822010-12-16 07:46:53 +00003353 appendStmt(ExitConditionBlock, S);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003354 Block = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003355
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003356 // Walk the 'element' expression to see if there are any side-effects. We
Chris Lattner57540c52011-04-15 05:22:18 +00003357 // generate new blocks as necessary. We DON'T add the statement by default to
Mike Stump31feda52009-07-17 01:31:16 +00003358 // the CFG unless it contains control-flow.
Ted Kremenekc14efa72011-08-17 21:04:19 +00003359 CFGBlock *EntryConditionBlock = Visit(S->getElement(),
3360 AddStmtChoice::NotAlwaysAdd);
Mike Stump31feda52009-07-17 01:31:16 +00003361 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003362 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003363 return nullptr;
3364 Block = nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003365 }
Mike Stump31feda52009-07-17 01:31:16 +00003366
3367 // The condition block is the implicit successor for the loop body as well as
3368 // any code above the loop.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003369 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003370
Ted Kremenek9d56e642008-11-11 17:10:00 +00003371 // Now create the true branch.
Mike Stump31feda52009-07-17 01:31:16 +00003372 {
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003373 // Save the current values for Succ, continue and break targets.
Anna Zaks56b49752013-06-22 00:23:20 +00003374 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003375 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
Anna Zaks56b49752013-06-22 00:23:20 +00003376 save_break(BreakJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00003377
Anna Zaks56b49752013-06-22 00:23:20 +00003378 // Add an intermediate block between the BodyBlock and the
3379 // EntryConditionBlock to represent the "loop back" transition, for looping
3380 // back to the head of the loop.
Craig Topper25542942014-05-20 04:30:07 +00003381 CFGBlock *LoopBackBlock = nullptr;
Anna Zaks56b49752013-06-22 00:23:20 +00003382 Succ = LoopBackBlock = createBlock();
3383 LoopBackBlock->setLoopTarget(S);
Fangrui Song6907ce22018-07-30 19:24:48 +00003384
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003385 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Anna Zaks56b49752013-06-22 00:23:20 +00003386 ContinueJumpTarget = JumpTarget(Succ, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003387
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003388 CFGBlock *BodyBlock = addStmt(S->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003389
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003390 if (!BodyBlock)
Anna Zaks56b49752013-06-22 00:23:20 +00003391 BodyBlock = ContinueJumpTarget.block; // can happen for "for (X in Y) ;"
Ted Kremenek55957a82009-05-02 00:13:27 +00003392 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003393 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003394 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003395 }
Mike Stump31feda52009-07-17 01:31:16 +00003396
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003397 // This new body block is a successor to our "exit" condition block.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003398 addSuccessor(ExitConditionBlock, BodyBlock);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003399 }
Mike Stump31feda52009-07-17 01:31:16 +00003400
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003401 // Link up the condition block with the code that follows the loop.
3402 // (the false branch).
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003403 addSuccessor(ExitConditionBlock, LoopSuccessor);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003404
Ted Kremenek9d56e642008-11-11 17:10:00 +00003405 // Now create a prologue block to contain the collection expression.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003406 Block = createBlock();
Ted Kremenek9d56e642008-11-11 17:10:00 +00003407 return addStmt(S->getCollection());
Mike Stump31feda52009-07-17 01:31:16 +00003408}
3409
Ted Kremenek5022f1d2012-03-06 23:40:47 +00003410CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) {
3411 // Inline the body.
3412 return addStmt(S->getSubStmt());
3413 // TODO: consider adding cleanups for the end of @autoreleasepool scope.
3414}
3415
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003416CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
Ted Kremenek49805452009-05-02 01:49:13 +00003417 // FIXME: Add locking 'primitives' to CFG for @synchronized.
Mike Stump31feda52009-07-17 01:31:16 +00003418
Ted Kremenek49805452009-05-02 01:49:13 +00003419 // Inline the body.
Ted Kremenek93668002009-07-17 22:18:43 +00003420 CFGBlock *SyncBlock = addStmt(S->getSynchBody());
Mike Stump31feda52009-07-17 01:31:16 +00003421
Ted Kremenekb3c657b2009-05-05 23:11:51 +00003422 // The sync body starts its own basic block. This makes it a little easier
3423 // for diagnostic clients.
3424 if (SyncBlock) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003425 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003426 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003427
Craig Topper25542942014-05-20 04:30:07 +00003428 Block = nullptr;
Ted Kremenekecc31c92010-05-13 16:38:08 +00003429 Succ = SyncBlock;
Ted Kremenekb3c657b2009-05-05 23:11:51 +00003430 }
Mike Stump31feda52009-07-17 01:31:16 +00003431
Ted Kremeneked12f1b2010-09-10 03:05:33 +00003432 // Add the @synchronized to the CFG.
3433 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00003434 appendStmt(Block, S);
Ted Kremeneked12f1b2010-09-10 03:05:33 +00003435
Ted Kremenek49805452009-05-02 01:49:13 +00003436 // Inline the sync expression.
Ted Kremenek93668002009-07-17 22:18:43 +00003437 return addStmt(S->getSynchExpr());
Ted Kremenek49805452009-05-02 01:49:13 +00003438}
Mike Stump31feda52009-07-17 01:31:16 +00003439
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003440CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
Ted Kremenek93668002009-07-17 22:18:43 +00003441 // FIXME
Ted Kremenek89be6522009-04-07 04:26:02 +00003442 return NYS();
Ted Kremenek89cc8ea2009-03-30 22:29:21 +00003443}
Ted Kremenek9d56e642008-11-11 17:10:00 +00003444
John McCallfe96e0b2011-11-06 09:01:30 +00003445CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) {
3446 autoCreateBlock();
3447
3448 // Add the PseudoObject as the last thing.
3449 appendStmt(Block, E);
3450
Fangrui Song6907ce22018-07-30 19:24:48 +00003451 CFGBlock *lastBlock = Block;
John McCallfe96e0b2011-11-06 09:01:30 +00003452
3453 // Before that, evaluate all of the semantics in order. In
3454 // CFG-land, that means appending them in reverse order.
3455 for (unsigned i = E->getNumSemanticExprs(); i != 0; ) {
3456 Expr *Semantic = E->getSemanticExpr(--i);
3457
3458 // If the semantic is an opaque value, we're being asked to bind
3459 // it to its source expression.
3460 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic))
3461 Semantic = OVE->getSourceExpr();
3462
3463 if (CFGBlock *B = Visit(Semantic))
3464 lastBlock = B;
3465 }
3466
3467 return lastBlock;
3468}
3469
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003470CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) {
Craig Topper25542942014-05-20 04:30:07 +00003471 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003472
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003473 // Save local scope position because in case of condition variable ScopePos
3474 // won't be restored when traversing AST.
3475 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3476
3477 // Create local scope for possible condition variable.
3478 // Store scope position for continue statement.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003479 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003480 if (VarDecl *VD = W->getConditionVariable()) {
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003481 addLocalScopeForVarDecl(VD);
Matthias Gehre351c2182017-07-12 07:04:19 +00003482 addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W);
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003483 }
Peter Szecsi999a25f2017-08-19 11:19:16 +00003484 addLoopExit(W);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003485
Mike Stump014b3ea2009-07-21 01:12:51 +00003486 // "while" is a control-flow statement. Thus we stop processing the current
3487 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003488 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003489 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003490 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003491 LoopSuccessor = Block;
Craig Topper25542942014-05-20 04:30:07 +00003492 Block = nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003493 } else {
Ted Kremenek93668002009-07-17 22:18:43 +00003494 LoopSuccessor = Succ;
Ted Kremenek81e14852007-08-27 19:46:09 +00003495 }
Mike Stump31feda52009-07-17 01:31:16 +00003496
Craig Topper25542942014-05-20 04:30:07 +00003497 CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr;
Mike Stump773582d2009-07-23 23:25:26 +00003498
Ted Kremenek9aae5132007-08-23 21:42:29 +00003499 // Process the loop body.
3500 {
Ted Kremenek49936f72009-04-28 03:09:44 +00003501 assert(W->getBody());
Ted Kremenek9aae5132007-08-23 21:42:29 +00003502
Ted Kremenekb50e7162012-07-14 05:04:10 +00003503 // Save the current values for Block, Succ, continue and break targets.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003504 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3505 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
Ted Kremenekb50e7162012-07-14 05:04:10 +00003506 save_break(BreakJumpTarget);
Ted Kremenek49936f72009-04-28 03:09:44 +00003507
Mike Stump31feda52009-07-17 01:31:16 +00003508 // Create an empty block to represent the transition block for looping back
3509 // to the head of the loop.
Ted Kremenekb50e7162012-07-14 05:04:10 +00003510 Succ = TransitionBlock = createBlock(false);
3511 TransitionBlock->setLoopTarget(W);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003512 ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003513
Ted Kremenek9aae5132007-08-23 21:42:29 +00003514 // All breaks should go to the code following the loop.
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003515 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003516
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003517 // Loop body should end with destructor of Condition variable (if any).
Matthias Gehre351c2182017-07-12 07:04:19 +00003518 addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W);
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003519
3520 // If body is not a compound statement create implicit scope
3521 // and add destructors.
3522 if (!isa<CompoundStmt>(W->getBody()))
3523 addLocalScopeAndDtors(W->getBody());
3524
Ted Kremenek9aae5132007-08-23 21:42:29 +00003525 // Create the body. The returned block is the entry to the loop body.
Ted Kremenekb50e7162012-07-14 05:04:10 +00003526 BodyBlock = addStmt(W->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003527
Ted Kremeneke9610502007-08-30 18:39:40 +00003528 if (!BodyBlock)
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003529 BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;"
Ted Kremenekb50e7162012-07-14 05:04:10 +00003530 else if (Block && badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003531 return nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003532 }
3533
3534 // Because of short-circuit evaluation, the condition of the loop can span
3535 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
3536 // evaluate the condition.
Craig Topper25542942014-05-20 04:30:07 +00003537 CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003538
3539 do {
3540 Expr *C = W->getCond();
3541
3542 // Specially handle logical operators, which have a slightly
3543 // more optimal CFG representation.
Richard Smithf676e452012-07-24 21:02:14 +00003544 if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens()))
Ted Kremenekb50e7162012-07-14 05:04:10 +00003545 if (Cond->isLogicalOp()) {
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00003546 std::tie(EntryConditionBlock, ExitConditionBlock) =
3547 VisitLogicalOperator(Cond, W, BodyBlock, LoopSuccessor);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003548 break;
3549 }
3550
3551 // The default case when not handling logical operators.
Ted Kremenek451c4d52012-10-12 22:56:26 +00003552 ExitConditionBlock = createBlock(false);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003553 ExitConditionBlock->setTerminator(W);
3554
3555 // Now add the actual condition to the condition block.
3556 // Because the condition itself may contain control-flow, new blocks may
3557 // be created. Thus we update "Succ" after adding the condition.
3558 Block = ExitConditionBlock;
3559 Block = EntryConditionBlock = addStmt(C);
3560
3561 // If this block contains a condition variable, add both the condition
3562 // variable and initializer to the CFG.
3563 if (VarDecl *VD = W->getConditionVariable()) {
3564 if (Expr *Init = VD->getInit()) {
3565 autoCreateBlock();
Artem Dergachevab9b78b2018-04-19 23:30:15 +00003566 const DeclStmt *DS = W->getConditionVariableDeclStmt();
3567 assert(DS->isSingleDecl());
3568 findConstructionContexts(
3569 ConstructionContextLayer::create(cfg->getBumpVectorContext(),
3570 const_cast<DeclStmt *>(DS)),
3571 Init);
3572 appendStmt(Block, DS);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003573 EntryConditionBlock = addStmt(Init);
3574 assert(Block == EntryConditionBlock);
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003575 maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003576 }
Ted Kremenek55957a82009-05-02 00:13:27 +00003577 }
Mike Stump31feda52009-07-17 01:31:16 +00003578
Ted Kremenekb50e7162012-07-14 05:04:10 +00003579 if (Block && badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003580 return nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003581
3582 // See if this is a known constant.
3583 const TryResult& KnownVal = tryEvaluateBool(C);
3584
Ted Kremenek30754282009-07-24 04:47:11 +00003585 // Add the loop body entry as a successor to the condition.
Craig Topper25542942014-05-20 04:30:07 +00003586 addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003587 // Link up the condition block with the code that follows the loop. (the
3588 // false branch).
Craig Topper25542942014-05-20 04:30:07 +00003589 addSuccessor(ExitConditionBlock,
3590 KnownVal.isTrue() ? nullptr : LoopSuccessor);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003591 } while(false);
3592
3593 // Link up the loop-back block to the entry condition block.
3594 addSuccessor(TransitionBlock, EntryConditionBlock);
Mike Stump31feda52009-07-17 01:31:16 +00003595
3596 // There can be no more statements in the condition block since we loop back
3597 // to this block. NULL out Block to force lazy creation of another block.
Craig Topper25542942014-05-20 04:30:07 +00003598 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003599
Ted Kremenek1ce53c42009-12-24 01:34:10 +00003600 // Return the condition block, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00003601 Succ = EntryConditionBlock;
Ted Kremenek81e14852007-08-27 19:46:09 +00003602 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003603}
Mike Stump11289f42009-09-09 15:08:12 +00003604
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003605CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
Ted Kremenek93668002009-07-17 22:18:43 +00003606 // FIXME: For now we pretend that @catch and the code it contains does not
3607 // exit.
3608 return Block;
3609}
Mike Stump31feda52009-07-17 01:31:16 +00003610
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003611CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
Ted Kremenek93041ba2008-12-09 20:20:09 +00003612 // FIXME: This isn't complete. We basically treat @throw like a return
3613 // statement.
Mike Stump31feda52009-07-17 01:31:16 +00003614
Ted Kremenek0868eea2009-09-24 18:45:41 +00003615 // If we were in the middle of a block we stop processing that block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003616 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003617 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003618
Ted Kremenek93041ba2008-12-09 20:20:09 +00003619 // Create the new block.
3620 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00003621
Ted Kremenek93041ba2008-12-09 20:20:09 +00003622 // The Exit block is the only successor.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003623 addSuccessor(Block, &cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +00003624
3625 // Add the statement to the block. This may create new blocks if S contains
3626 // control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00003627 return VisitStmt(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek93041ba2008-12-09 20:20:09 +00003628}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003629
Artem Dergachevbd880fe2018-07-31 19:39:37 +00003630CFGBlock *CFGBuilder::VisitObjCMessageExpr(ObjCMessageExpr *ME,
3631 AddStmtChoice asc) {
3632 findConstructionContextsForArguments(ME);
3633
3634 autoCreateBlock();
Artem Dergacheve1f30622018-07-31 19:46:14 +00003635 appendObjCMessage(Block, ME);
Artem Dergachevbd880fe2018-07-31 19:39:37 +00003636
3637 return VisitChildren(ME);
3638}
3639
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003640CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) {
Ted Kremenek0868eea2009-09-24 18:45:41 +00003641 // If we were in the middle of a block we stop processing that block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003642 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003643 return nullptr;
Mike Stump8dd1b6b2009-07-22 22:56:04 +00003644
3645 // Create the new block.
3646 Block = createBlock(false);
3647
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003648 if (TryTerminatedBlock)
3649 // The current try statement is the only successor.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003650 addSuccessor(Block, TryTerminatedBlock);
Ted Kremenekdc03bd02010-08-02 23:46:59 +00003651 else
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003652 // otherwise the Exit block is the only successor.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003653 addSuccessor(Block, &cfg->getExit());
Mike Stump8dd1b6b2009-07-22 22:56:04 +00003654
3655 // Add the statement to the block. This may create new blocks if S contains
3656 // control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00003657 return VisitStmt(T, AddStmtChoice::AlwaysAdd);
Mike Stump8dd1b6b2009-07-22 22:56:04 +00003658}
3659
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003660CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) {
Craig Topper25542942014-05-20 04:30:07 +00003661 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003662
Peter Szecsi999a25f2017-08-19 11:19:16 +00003663 addLoopExit(D);
3664
Mike Stump8d50b6a2009-07-21 01:27:50 +00003665 // "do...while" is a control-flow statement. Thus we stop processing the
3666 // current block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003667 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003668 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003669 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003670 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003671 } else
3672 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00003673
3674 // Because of short-circuit evaluation, the condition of the loop can span
3675 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
3676 // evaluate the condition.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003677 CFGBlock *ExitConditionBlock = createBlock(false);
3678 CFGBlock *EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003679
Ted Kremenek81e14852007-08-27 19:46:09 +00003680 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00003681 ExitConditionBlock->setTerminator(D);
3682
3683 // Now add the actual condition to the condition block. Because the condition
3684 // itself may contain control-flow, new blocks may be created.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003685 if (Stmt *C = D->getCond()) {
Ted Kremenek81e14852007-08-27 19:46:09 +00003686 Block = ExitConditionBlock;
3687 EntryConditionBlock = addStmt(C);
Ted Kremenek55957a82009-05-02 00:13:27 +00003688 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003689 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003690 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003691 }
Ted Kremenek81e14852007-08-27 19:46:09 +00003692 }
Mike Stump31feda52009-07-17 01:31:16 +00003693
Ted Kremeneka1523a32008-02-27 07:20:00 +00003694 // The condition block is the implicit successor for the loop body.
Ted Kremenek81e14852007-08-27 19:46:09 +00003695 Succ = EntryConditionBlock;
3696
Mike Stump773582d2009-07-23 23:25:26 +00003697 // See if this is a known constant.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003698 const TryResult &KnownVal = tryEvaluateBool(D->getCond());
Mike Stump773582d2009-07-23 23:25:26 +00003699
Ted Kremenek9aae5132007-08-23 21:42:29 +00003700 // Process the loop body.
Craig Topper25542942014-05-20 04:30:07 +00003701 CFGBlock *BodyBlock = nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003702 {
Ted Kremenek1362b8b2010-01-19 20:46:35 +00003703 assert(D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003704
Ted Kremenek9aae5132007-08-23 21:42:29 +00003705 // Save the current values for Block, Succ, and continue and break targets
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003706 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3707 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
3708 save_break(BreakJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00003709
Ted Kremenek9aae5132007-08-23 21:42:29 +00003710 // All continues within this loop should go to the condition block
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003711 ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003712
Ted Kremenek9aae5132007-08-23 21:42:29 +00003713 // All breaks should go to the code following the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003714 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003715
Ted Kremenek9aae5132007-08-23 21:42:29 +00003716 // NULL out Block to force lazy instantiation of blocks for the body.
Craig Topper25542942014-05-20 04:30:07 +00003717 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003718
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003719 // If body is not a compound statement create implicit scope
3720 // and add destructors.
3721 if (!isa<CompoundStmt>(D->getBody()))
3722 addLocalScopeAndDtors(D->getBody());
3723
Ted Kremenek9aae5132007-08-23 21:42:29 +00003724 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek93668002009-07-17 22:18:43 +00003725 BodyBlock = addStmt(D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003726
Ted Kremeneke9610502007-08-30 18:39:40 +00003727 if (!BodyBlock)
Ted Kremenek39321aa2008-02-27 00:28:17 +00003728 BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
Ted Kremenek55957a82009-05-02 00:13:27 +00003729 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003730 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003731 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003732 }
Mike Stump31feda52009-07-17 01:31:16 +00003733
Daniel Marjamaki042a3c52016-10-03 08:28:51 +00003734 // Add an intermediate block between the BodyBlock and the
3735 // ExitConditionBlock to represent the "loop back" transition. Create an
3736 // empty block to represent the transition block for looping back to the
3737 // head of the loop.
3738 // FIXME: Can we do this more efficiently without adding another block?
3739 Block = nullptr;
3740 Succ = BodyBlock;
3741 CFGBlock *LoopBackBlock = createBlock();
3742 LoopBackBlock->setLoopTarget(D);
Mike Stump31feda52009-07-17 01:31:16 +00003743
Daniel Marjamaki042a3c52016-10-03 08:28:51 +00003744 if (!KnownVal.isFalse())
Ted Kremenek110974d2010-08-17 20:59:56 +00003745 // Add the loop body entry as a successor to the condition.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003746 addSuccessor(ExitConditionBlock, LoopBackBlock);
Ted Kremenek110974d2010-08-17 20:59:56 +00003747 else
Craig Topper25542942014-05-20 04:30:07 +00003748 addSuccessor(ExitConditionBlock, nullptr);
Ted Kremenek9aae5132007-08-23 21:42:29 +00003749 }
Mike Stump31feda52009-07-17 01:31:16 +00003750
Ted Kremenek30754282009-07-24 04:47:11 +00003751 // Link up the condition block with the code that follows the loop.
3752 // (the false branch).
Craig Topper25542942014-05-20 04:30:07 +00003753 addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00003754
3755 // There can be no more statements in the body block(s) since we loop back to
3756 // the body. NULL out Block to force lazy creation of another block.
Craig Topper25542942014-05-20 04:30:07 +00003757 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003758
Ted Kremenek9aae5132007-08-23 21:42:29 +00003759 // Return the loop body, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00003760 Succ = BodyBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003761 return BodyBlock;
3762}
3763
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003764CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00003765 // "continue" is a control-flow statement. Thus we stop processing the
3766 // current block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003767 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003768 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003769
Ted Kremenek9aae5132007-08-23 21:42:29 +00003770 // Now create a new block that ends with the continue statement.
3771 Block = createBlock(false);
3772 Block->setTerminator(C);
Mike Stump31feda52009-07-17 01:31:16 +00003773
Ted Kremenek9aae5132007-08-23 21:42:29 +00003774 // If there is no target for the continue, then we are looking at an
Ted Kremenek882cf062009-04-07 18:53:24 +00003775 // incomplete AST. This means the CFG cannot be constructed.
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003776 if (ContinueJumpTarget.block) {
Matthias Gehre351c2182017-07-12 07:04:19 +00003777 addAutomaticObjHandling(ScopePos, ContinueJumpTarget.scopePosition, C);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003778 addSuccessor(Block, ContinueJumpTarget.block);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003779 } else
Ted Kremenek882cf062009-04-07 18:53:24 +00003780 badCFG = true;
Mike Stump31feda52009-07-17 01:31:16 +00003781
Ted Kremenek9aae5132007-08-23 21:42:29 +00003782 return Block;
3783}
Mike Stump11289f42009-09-09 15:08:12 +00003784
Peter Collingbournee190dee2011-03-11 19:24:49 +00003785CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
3786 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00003787 if (asc.alwaysAdd(*this, E)) {
Ted Kremenek0747de62009-07-18 00:47:21 +00003788 autoCreateBlock();
Ted Kremenek8219b822010-12-16 07:46:53 +00003789 appendStmt(Block, E);
Ted Kremenek0747de62009-07-18 00:47:21 +00003790 }
Mike Stump11289f42009-09-09 15:08:12 +00003791
Ted Kremenek93668002009-07-17 22:18:43 +00003792 // VLA types have expressions that must be evaluated.
Ted Kremenek9eb0b7d2011-04-14 01:50:50 +00003793 CFGBlock *lastBlock = Block;
Fangrui Song6907ce22018-07-30 19:24:48 +00003794
Ted Kremenek93668002009-07-17 22:18:43 +00003795 if (E->isArgumentType()) {
John McCall424cec92011-01-19 06:33:43 +00003796 for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr());
Craig Topper25542942014-05-20 04:30:07 +00003797 VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr()))
Ted Kremenek9eb0b7d2011-04-14 01:50:50 +00003798 lastBlock = addStmt(VA->getSizeExpr());
Ted Kremenek84a1ca52011-08-06 00:30:00 +00003799 }
Ted Kremenek9eb0b7d2011-04-14 01:50:50 +00003800 return lastBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003801}
Mike Stump11289f42009-09-09 15:08:12 +00003802
Ted Kremenek93668002009-07-17 22:18:43 +00003803/// VisitStmtExpr - Utility method to handle (nested) statement
3804/// expressions (a GCC extension).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003805CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00003806 if (asc.alwaysAdd(*this, SE)) {
Ted Kremenek0747de62009-07-18 00:47:21 +00003807 autoCreateBlock();
Ted Kremenek8219b822010-12-16 07:46:53 +00003808 appendStmt(Block, SE);
Ted Kremenek0747de62009-07-18 00:47:21 +00003809 }
Ted Kremenek93668002009-07-17 22:18:43 +00003810 return VisitCompoundStmt(SE->getSubStmt());
3811}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003812
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003813CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) {
Mike Stump31feda52009-07-17 01:31:16 +00003814 // "switch" is a control-flow statement. Thus we stop processing the current
3815 // block.
Craig Topper25542942014-05-20 04:30:07 +00003816 CFGBlock *SwitchSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003817
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003818 // Save local scope position because in case of condition variable ScopePos
3819 // won't be restored when traversing AST.
3820 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3821
Richard Smitha547eb22016-07-14 00:11:03 +00003822 // Create local scope for C++17 switch init-stmt if one exists.
Richard Smith509bbd12017-01-13 22:16:41 +00003823 if (Stmt *Init = Terminator->getInit())
Richard Smitha547eb22016-07-14 00:11:03 +00003824 addLocalScopeForStmt(Init);
Richard Smitha547eb22016-07-14 00:11:03 +00003825
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003826 // Create local scope for possible condition variable.
3827 // Store scope position. Add implicit destructor.
Richard Smith509bbd12017-01-13 22:16:41 +00003828 if (VarDecl *VD = Terminator->getConditionVariable())
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003829 addLocalScopeForVarDecl(VD);
Richard Smith509bbd12017-01-13 22:16:41 +00003830
Matthias Gehre351c2182017-07-12 07:04:19 +00003831 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), Terminator);
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003832
Ted Kremenek9aae5132007-08-23 21:42:29 +00003833 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003834 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003835 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003836 SwitchSuccessor = Block;
Mike Stump31feda52009-07-17 01:31:16 +00003837 } else SwitchSuccessor = Succ;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003838
3839 // Save the current "switch" context.
3840 SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
Ted Kremenek654c78f2008-02-13 22:05:39 +00003841 save_default(DefaultCaseBlock);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003842 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
Ted Kremenek654c78f2008-02-13 22:05:39 +00003843
Mike Stump31feda52009-07-17 01:31:16 +00003844 // Set the "default" case to be the block after the switch statement. If the
3845 // switch statement contains a "default:", this value will be overwritten with
3846 // the block for that code.
Ted Kremenek654c78f2008-02-13 22:05:39 +00003847 DefaultCaseBlock = SwitchSuccessor;
Mike Stump31feda52009-07-17 01:31:16 +00003848
Ted Kremenek9aae5132007-08-23 21:42:29 +00003849 // Create a new block that will contain the switch statement.
3850 SwitchTerminatedBlock = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00003851
Ted Kremenek9aae5132007-08-23 21:42:29 +00003852 // Now process the switch body. The code after the switch is the implicit
3853 // successor.
3854 Succ = SwitchSuccessor;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003855 BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003856
3857 // When visiting the body, the case statements should automatically get linked
3858 // up to the switch. We also don't keep a pointer to the body, since all
3859 // control-flow from the switch goes to case/default statements.
Ted Kremenek1362b8b2010-01-19 20:46:35 +00003860 assert(Terminator->getBody() && "switch must contain a non-NULL body");
Craig Topper25542942014-05-20 04:30:07 +00003861 Block = nullptr;
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003862
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003863 // For pruning unreachable case statements, save the current state
3864 // for tracking the condition value.
3865 SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered,
3866 false);
Ted Kremenekbe528712011-03-04 01:03:41 +00003867
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003868 // Determine if the switch condition can be explicitly evaluated.
3869 assert(Terminator->getCond() && "switch condition must be non-NULL");
Ted Kremenekbe528712011-03-04 01:03:41 +00003870 Expr::EvalResult result;
Ted Kremenek53e65382011-03-13 03:48:04 +00003871 bool b = tryEvaluate(Terminator->getCond(), result);
3872 SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond,
Craig Topper25542942014-05-20 04:30:07 +00003873 b ? &result : nullptr);
Ted Kremenekbe528712011-03-04 01:03:41 +00003874
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003875 // If body is not a compound statement create implicit scope
3876 // and add destructors.
3877 if (!isa<CompoundStmt>(Terminator->getBody()))
3878 addLocalScopeAndDtors(Terminator->getBody());
3879
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003880 addStmt(Terminator->getBody());
Ted Kremenek55957a82009-05-02 00:13:27 +00003881 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003882 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003883 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003884 }
Ted Kremenek81e14852007-08-27 19:46:09 +00003885
Mike Stump31feda52009-07-17 01:31:16 +00003886 // If we have no "default:" case, the default transition is to the code
Ted Kremenek35c70f62011-03-16 04:32:01 +00003887 // following the switch body. Moreover, take into account if all the
3888 // cases of a switch are covered (e.g., switching on an enum value).
David Majnemerf69ce862013-06-04 17:38:44 +00003889 //
3890 // Note: We add a successor to a switch that is considered covered yet has no
3891 // case statements if the enumeration has no enumerators.
3892 bool SwitchAlwaysHasSuccessor = false;
3893 SwitchAlwaysHasSuccessor |= switchExclusivelyCovered;
3894 SwitchAlwaysHasSuccessor |= Terminator->isAllEnumCasesCovered() &&
3895 Terminator->getSwitchCaseList();
Ted Kremenek9238c5c2014-02-27 21:56:44 +00003896 addSuccessor(SwitchTerminatedBlock, DefaultCaseBlock,
3897 !SwitchAlwaysHasSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00003898
Ted Kremenek81e14852007-08-27 19:46:09 +00003899 // Add the terminator and condition in the switch block.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00003900 SwitchTerminatedBlock->setTerminator(Terminator);
Ted Kremenek9aae5132007-08-23 21:42:29 +00003901 Block = SwitchTerminatedBlock;
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003902 CFGBlock *LastBlock = addStmt(Terminator->getCond());
Ted Kremenekdc03bd02010-08-02 23:46:59 +00003903
Richard Smitha547eb22016-07-14 00:11:03 +00003904 // If the SwitchStmt contains a condition variable, add both the
Ted Kremenek8b5dc122009-12-24 00:39:26 +00003905 // SwitchStmt and the condition variable initialization to the CFG.
3906 if (VarDecl *VD = Terminator->getConditionVariable()) {
3907 if (Expr *Init = VD->getInit()) {
3908 autoCreateBlock();
Ted Kremenek37881932011-04-04 23:29:12 +00003909 appendStmt(Block, Terminator->getConditionVariableDeclStmt());
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003910 LastBlock = addStmt(Init);
Maxim Ostapenkodebca452018-03-12 12:26:15 +00003911 maybeAddScopeBeginForVarDecl(LastBlock, VD, Init);
Ted Kremenek8b5dc122009-12-24 00:39:26 +00003912 }
3913 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +00003914
Richard Smitha547eb22016-07-14 00:11:03 +00003915 // Finally, if the SwitchStmt contains a C++17 init-stmt, add it to the CFG.
3916 if (Stmt *Init = Terminator->getInit()) {
3917 autoCreateBlock();
3918 LastBlock = addStmt(Init);
3919 }
3920
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003921 return LastBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003922}
Fangrui Song6907ce22018-07-30 19:24:48 +00003923
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003924static bool shouldAddCase(bool &switchExclusivelyCovered,
Ted Kremenek53e65382011-03-13 03:48:04 +00003925 const Expr::EvalResult *switchCond,
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003926 const CaseStmt *CS,
3927 ASTContext &Ctx) {
Ted Kremenek53e65382011-03-13 03:48:04 +00003928 if (!switchCond)
3929 return true;
3930
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003931 bool addCase = false;
Ted Kremenekbe528712011-03-04 01:03:41 +00003932
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003933 if (!switchExclusivelyCovered) {
Ted Kremenek53e65382011-03-13 03:48:04 +00003934 if (switchCond->Val.isInt()) {
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003935 // Evaluate the LHS of the case value.
Richard Smithfaa32a92011-10-14 20:22:00 +00003936 const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx);
Ted Kremenek53e65382011-03-13 03:48:04 +00003937 const llvm::APSInt &condInt = switchCond->Val.getInt();
Fangrui Song6907ce22018-07-30 19:24:48 +00003938
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003939 if (condInt == lhsInt) {
3940 addCase = true;
3941 switchExclusivelyCovered = true;
3942 }
Devin Coughlineb538ab2015-09-22 20:31:19 +00003943 else if (condInt > lhsInt) {
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003944 if (const Expr *RHS = CS->getRHS()) {
3945 // Evaluate the RHS of the case value.
Richard Smithfaa32a92011-10-14 20:22:00 +00003946 const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx);
Devin Coughlineb538ab2015-09-22 20:31:19 +00003947 if (V2 >= condInt) {
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003948 addCase = true;
3949 switchExclusivelyCovered = true;
3950 }
3951 }
3952 }
3953 }
3954 else
3955 addCase = true;
3956 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003957 return addCase;
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003958}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003959
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003960CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) {
Mike Stump31feda52009-07-17 01:31:16 +00003961 // CaseStmts are essentially labels, so they are the first statement in a
3962 // block.
Craig Topper25542942014-05-20 04:30:07 +00003963 CFGBlock *TopBlock = nullptr, *LastBlock = nullptr;
Ted Kremenekbe528712011-03-04 01:03:41 +00003964
Ted Kremenek60fa6572010-08-04 23:54:30 +00003965 if (Stmt *Sub = CS->getSubStmt()) {
3966 // For deeply nested chains of CaseStmts, instead of doing a recursion
3967 // (which can blow out the stack), manually unroll and create blocks
3968 // along the way.
3969 while (isa<CaseStmt>(Sub)) {
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003970 CFGBlock *currentBlock = createBlock(false);
3971 currentBlock->setLabel(CS);
Ted Kremenek55e91e82007-08-30 18:48:11 +00003972
Ted Kremenek60fa6572010-08-04 23:54:30 +00003973 if (TopBlock)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003974 addSuccessor(LastBlock, currentBlock);
Ted Kremenek60fa6572010-08-04 23:54:30 +00003975 else
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003976 TopBlock = currentBlock;
Ted Kremenek60fa6572010-08-04 23:54:30 +00003977
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003978 addSuccessor(SwitchTerminatedBlock,
Ted Kremenek53e65382011-03-13 03:48:04 +00003979 shouldAddCase(switchExclusivelyCovered, switchCond,
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003980 CS, *Context)
Craig Topper25542942014-05-20 04:30:07 +00003981 ? currentBlock : nullptr);
Ted Kremenek60fa6572010-08-04 23:54:30 +00003982
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003983 LastBlock = currentBlock;
Ted Kremenek60fa6572010-08-04 23:54:30 +00003984 CS = cast<CaseStmt>(Sub);
3985 Sub = CS->getSubStmt();
3986 }
3987
3988 addStmt(Sub);
3989 }
Mike Stump11289f42009-09-09 15:08:12 +00003990
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003991 CFGBlock *CaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003992 if (!CaseBlock)
3993 CaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00003994
3995 // Cases statements partition blocks, so this is the top of the basic block we
3996 // were processing (the "case XXX:" is the label).
Ted Kremenek93668002009-07-17 22:18:43 +00003997 CaseBlock->setLabel(CS);
3998
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003999 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004000 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00004001
4002 // Add this block to the list of successors for the block with the switch
4003 // statement.
Ted Kremenek93668002009-07-17 22:18:43 +00004004 assert(SwitchTerminatedBlock);
Ted Kremenek9238c5c2014-02-27 21:56:44 +00004005 addSuccessor(SwitchTerminatedBlock, CaseBlock,
Ted Kremenek53e65382011-03-13 03:48:04 +00004006 shouldAddCase(switchExclusivelyCovered, switchCond,
Ted Kremenek9238c5c2014-02-27 21:56:44 +00004007 CS, *Context));
Mike Stump31feda52009-07-17 01:31:16 +00004008
Ted Kremenek9aae5132007-08-23 21:42:29 +00004009 // We set Block to NULL to allow lazy creation of a new block (if necessary)
Craig Topper25542942014-05-20 04:30:07 +00004010 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00004011
Ted Kremenek60fa6572010-08-04 23:54:30 +00004012 if (TopBlock) {
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004013 addSuccessor(LastBlock, CaseBlock);
Ted Kremenek60fa6572010-08-04 23:54:30 +00004014 Succ = TopBlock;
Zhanyong Wan59f09c72010-11-22 19:32:14 +00004015 } else {
Ted Kremenek60fa6572010-08-04 23:54:30 +00004016 // This block is now the implicit successor of other blocks.
4017 Succ = CaseBlock;
4018 }
Mike Stump31feda52009-07-17 01:31:16 +00004019
Ted Kremenek60fa6572010-08-04 23:54:30 +00004020 return Succ;
Ted Kremenek9aae5132007-08-23 21:42:29 +00004021}
Mike Stump31feda52009-07-17 01:31:16 +00004022
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004023CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) {
Ted Kremenek93668002009-07-17 22:18:43 +00004024 if (Terminator->getSubStmt())
4025 addStmt(Terminator->getSubStmt());
Mike Stump11289f42009-09-09 15:08:12 +00004026
Ted Kremenek654c78f2008-02-13 22:05:39 +00004027 DefaultCaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00004028
4029 if (!DefaultCaseBlock)
4030 DefaultCaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00004031
4032 // Default statements partition blocks, so this is the top of the basic block
4033 // we were processing (the "default:" is the label).
Ted Kremenekc1f9a282008-04-16 21:10:48 +00004034 DefaultCaseBlock->setLabel(Terminator);
Mike Stump11289f42009-09-09 15:08:12 +00004035
Zhongxing Xu33dfc072010-09-06 07:32:31 +00004036 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004037 return nullptr;
Ted Kremenek654c78f2008-02-13 22:05:39 +00004038
Mike Stump31feda52009-07-17 01:31:16 +00004039 // Unlike case statements, we don't add the default block to the successors
4040 // for the switch statement immediately. This is done when we finish
4041 // processing the switch statement. This allows for the default case
4042 // (including a fall-through to the code after the switch statement) to always
4043 // be the last successor of a switch-terminated block.
4044
Ted Kremenek654c78f2008-02-13 22:05:39 +00004045 // We set Block to NULL to allow lazy creation of a new block (if necessary)
Craig Topper25542942014-05-20 04:30:07 +00004046 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00004047
Ted Kremenek654c78f2008-02-13 22:05:39 +00004048 // This block is now the implicit successor of other blocks.
4049 Succ = DefaultCaseBlock;
Mike Stump31feda52009-07-17 01:31:16 +00004050
4051 return DefaultCaseBlock;
Ted Kremenek9682be12008-02-13 21:46:34 +00004052}
Ted Kremenek9aae5132007-08-23 21:42:29 +00004053
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004054CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) {
4055 // "try"/"catch" is a control-flow statement. Thus we stop processing the
4056 // current block.
Craig Topper25542942014-05-20 04:30:07 +00004057 CFGBlock *TrySuccessor = nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004058
4059 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00004060 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004061 return nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004062 TrySuccessor = Block;
4063 } else TrySuccessor = Succ;
4064
Mike Stump0bdba6c2010-01-20 01:15:34 +00004065 CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004066
4067 // Create a new block that will contain the try statement.
Mike Stump845384a2010-01-20 01:30:58 +00004068 CFGBlock *NewTryTerminatedBlock = createBlock(false);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004069 // Add the terminator in the try block.
Mike Stump845384a2010-01-20 01:30:58 +00004070 NewTryTerminatedBlock->setTerminator(Terminator);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004071
Mike Stump0bdba6c2010-01-20 01:15:34 +00004072 bool HasCatchAll = false;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004073 for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) {
4074 // The code after the try is the implicit successor.
4075 Succ = TrySuccessor;
4076 CXXCatchStmt *CS = Terminator->getHandler(h);
Craig Topper25542942014-05-20 04:30:07 +00004077 if (CS->getExceptionDecl() == nullptr) {
Mike Stump0bdba6c2010-01-20 01:15:34 +00004078 HasCatchAll = true;
4079 }
Craig Topper25542942014-05-20 04:30:07 +00004080 Block = nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004081 CFGBlock *CatchBlock = VisitCXXCatchStmt(CS);
Craig Topper25542942014-05-20 04:30:07 +00004082 if (!CatchBlock)
4083 return nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004084 // Add this block to the list of successors for the block with the try
4085 // statement.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004086 addSuccessor(NewTryTerminatedBlock, CatchBlock);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004087 }
Mike Stump0bdba6c2010-01-20 01:15:34 +00004088 if (!HasCatchAll) {
4089 if (PrevTryTerminatedBlock)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004090 addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock);
Mike Stump0bdba6c2010-01-20 01:15:34 +00004091 else
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004092 addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
Mike Stump0bdba6c2010-01-20 01:15:34 +00004093 }
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004094
4095 // The code after the try is the implicit successor.
4096 Succ = TrySuccessor;
4097
Mike Stump845384a2010-01-20 01:30:58 +00004098 // Save the current "try" context.
Ted Kremenek6b9964d2011-08-23 23:05:07 +00004099 SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock);
4100 cfg->addTryDispatchBlock(TryTerminatedBlock);
Mike Stump845384a2010-01-20 01:30:58 +00004101
Ted Kremenek1362b8b2010-01-19 20:46:35 +00004102 assert(Terminator->getTryBlock() && "try must contain a non-NULL body");
Craig Topper25542942014-05-20 04:30:07 +00004103 Block = nullptr;
Ted Kremeneke6ee6712012-11-13 00:12:13 +00004104 return addStmt(Terminator->getTryBlock());
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004105}
4106
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004107CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004108 // CXXCatchStmt are treated like labels, so they are the first statement in a
4109 // block.
4110
Marcin Swiderski3546b1a2010-10-01 01:46:52 +00004111 // Save local scope position because in case of exception variable ScopePos
4112 // won't be restored when traversing AST.
4113 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
4114
4115 // Create local scope for possible exception variable.
4116 // Store scope position. Add implicit destructor.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004117 if (VarDecl *VD = CS->getExceptionDecl()) {
Marcin Swiderski3546b1a2010-10-01 01:46:52 +00004118 LocalScope::const_iterator BeginScopePos = ScopePos;
4119 addLocalScopeForVarDecl(VD);
Matthias Gehre351c2182017-07-12 07:04:19 +00004120 addAutomaticObjHandling(ScopePos, BeginScopePos, CS);
Marcin Swiderski3546b1a2010-10-01 01:46:52 +00004121 }
4122
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004123 if (CS->getHandlerBlock())
4124 addStmt(CS->getHandlerBlock());
4125
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004126 CFGBlock *CatchBlock = Block;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004127 if (!CatchBlock)
4128 CatchBlock = createBlock();
Fangrui Song6907ce22018-07-30 19:24:48 +00004129
Ted Kremenek8fdb59f2012-03-10 01:34:17 +00004130 // CXXCatchStmt is more than just a label. They have semantic meaning
4131 // as well, as they implicitly "initialize" the catch variable. Add
4132 // it to the CFG as a CFGElement so that the control-flow of these
4133 // semantics gets captured.
4134 appendStmt(CatchBlock, CS);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004135
Ted Kremenek8fdb59f2012-03-10 01:34:17 +00004136 // Also add the CXXCatchStmt as a label, to mirror handling of regular
4137 // labels.
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004138 CatchBlock->setLabel(CS);
4139
Ted Kremenek8fdb59f2012-03-10 01:34:17 +00004140 // Bail out if the CFG is bad.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00004141 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004142 return nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004143
4144 // We set Block to NULL to allow lazy creation of a new block (if necessary)
Craig Topper25542942014-05-20 04:30:07 +00004145 Block = nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004146
4147 return CatchBlock;
4148}
4149
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004150CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) {
Richard Smith02e85f32011-04-14 22:09:26 +00004151 // C++0x for-range statements are specified as [stmt.ranged]:
4152 //
4153 // {
4154 // auto && __range = range-init;
4155 // for ( auto __begin = begin-expr,
4156 // __end = end-expr;
4157 // __begin != __end;
4158 // ++__begin ) {
4159 // for-range-declaration = *__begin;
4160 // statement
4161 // }
4162 // }
4163
4164 // Save local scope position before the addition of the implicit variables.
4165 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
4166
4167 // Create local scopes and destructors for range, begin and end variables.
4168 if (Stmt *Range = S->getRangeStmt())
4169 addLocalScopeForStmt(Range);
Richard Smith01694c32016-03-20 10:33:40 +00004170 if (Stmt *Begin = S->getBeginStmt())
4171 addLocalScopeForStmt(Begin);
4172 if (Stmt *End = S->getEndStmt())
4173 addLocalScopeForStmt(End);
Matthias Gehre351c2182017-07-12 07:04:19 +00004174 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), S);
Richard Smith02e85f32011-04-14 22:09:26 +00004175
4176 LocalScope::const_iterator ContinueScopePos = ScopePos;
4177
4178 // "for" is a control-flow statement. Thus we stop processing the current
4179 // block.
Craig Topper25542942014-05-20 04:30:07 +00004180 CFGBlock *LoopSuccessor = nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004181 if (Block) {
4182 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004183 return nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004184 LoopSuccessor = Block;
4185 } else
4186 LoopSuccessor = Succ;
4187
4188 // Save the current value for the break targets.
4189 // All breaks should go to the code following the loop.
4190 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
4191 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
4192
4193 // The block for the __begin != __end expression.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004194 CFGBlock *ConditionBlock = createBlock(false);
Richard Smith02e85f32011-04-14 22:09:26 +00004195 ConditionBlock->setTerminator(S);
4196
4197 // Now add the actual condition to the condition block.
4198 if (Expr *C = S->getCond()) {
4199 Block = ConditionBlock;
4200 CFGBlock *BeginConditionBlock = addStmt(C);
4201 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004202 return nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004203 assert(BeginConditionBlock == ConditionBlock &&
4204 "condition block in for-range was unexpectedly complex");
4205 (void)BeginConditionBlock;
4206 }
4207
4208 // The condition block is the implicit successor for the loop body as well as
4209 // any code above the loop.
4210 Succ = ConditionBlock;
4211
4212 // See if this is a known constant.
4213 TryResult KnownVal(true);
4214
4215 if (S->getCond())
4216 KnownVal = tryEvaluateBool(S->getCond());
4217
4218 // Now create the loop body.
4219 {
4220 assert(S->getBody());
4221
4222 // Save the current values for Block, Succ, and continue targets.
4223 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
4224 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
4225
4226 // Generate increment code in its own basic block. This is the target of
4227 // continue statements.
Craig Topper25542942014-05-20 04:30:07 +00004228 Block = nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004229 Succ = addStmt(S->getInc());
Alexander Kornienkoff2046a2016-07-08 10:50:51 +00004230 if (badCFG)
4231 return nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004232 ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
4233
4234 // The starting block for the loop increment is the block that should
4235 // represent the 'loop target' for looping back to the start of the loop.
4236 ContinueJumpTarget.block->setLoopTarget(S);
4237
4238 // Finish up the increment block and prepare to start the loop body.
4239 assert(Block);
4240 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004241 return nullptr;
4242 Block = nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00004243
4244 // Add implicit scope and dtors for loop variable.
4245 addLocalScopeAndDtors(S->getLoopVarStmt());
4246
4247 // Populate a new block to contain the loop body and loop variable.
Ted Kremeneke6ee6712012-11-13 00:12:13 +00004248 addStmt(S->getBody());
Richard Smith02e85f32011-04-14 22:09:26 +00004249 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004250 return nullptr;
Ted Kremeneke6ee6712012-11-13 00:12:13 +00004251 CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt());
Richard Smith02e85f32011-04-14 22:09:26 +00004252 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004253 return nullptr;
4254
Richard Smith02e85f32011-04-14 22:09:26 +00004255 // This new body block is a successor to our condition block.
Craig Topper25542942014-05-20 04:30:07 +00004256 addSuccessor(ConditionBlock,
4257 KnownVal.isFalse() ? nullptr : LoopVarStmtBlock);
Richard Smith02e85f32011-04-14 22:09:26 +00004258 }
4259
4260 // Link up the condition block with the code that follows the loop (the
4261 // false branch).
Craig Topper25542942014-05-20 04:30:07 +00004262 addSuccessor(ConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor);
Richard Smith02e85f32011-04-14 22:09:26 +00004263
4264 // Add the initialization statements.
4265 Block = createBlock();
Richard Smith01694c32016-03-20 10:33:40 +00004266 addStmt(S->getBeginStmt());
4267 addStmt(S->getEndStmt());
Richard Smith8baa5002018-09-28 18:44:09 +00004268 CFGBlock *Head = addStmt(S->getRangeStmt());
4269 if (S->getInit())
4270 Head = addStmt(S->getInit());
4271 return Head;
Richard Smith02e85f32011-04-14 22:09:26 +00004272}
4273
John McCall5d413782010-12-06 08:20:24 +00004274CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E,
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004275 AddStmtChoice asc) {
Jordan Rose6d671cc2012-09-05 22:55:23 +00004276 if (BuildOpts.AddTemporaryDtors) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004277 // If adding implicit destructors visit the full expression for adding
4278 // destructors of temporaries.
Manuel Klimekdeb02622014-08-08 07:37:13 +00004279 TempDtorContext Context;
Manuel Klimekb5616c92014-08-07 10:42:17 +00004280 VisitForTemporaryDtors(E->getSubExpr(), false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004281
4282 // Full expression has to be added as CFGStmt so it will be sequenced
4283 // before destructors of it's temporaries.
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004284 asc = asc.withAlwaysAdd(true);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004285 }
4286 return Visit(E->getSubExpr(), asc);
4287}
4288
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004289CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E,
4290 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00004291 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004292 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00004293 appendStmt(Block, E);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004294
Artem Dergachev783a4572018-02-23 22:20:39 +00004295 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00004296 ConstructionContextLayer::create(cfg->getBumpVectorContext(), E),
Artem Dergachev783a4572018-02-23 22:20:39 +00004297 E->getSubExpr());
Artem Dergachev1f68d9d2018-02-15 03:13:36 +00004298
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004299 // We do not want to propagate the AlwaysAdd property.
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004300 asc = asc.withAlwaysAdd(false);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004301 }
4302 return Visit(E->getSubExpr(), asc);
4303}
4304
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004305CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C,
4306 AddStmtChoice asc) {
Artem Dergachevbd880fe2018-07-31 19:39:37 +00004307 // If the constructor takes objects as arguments by value, we need to properly
4308 // construct these objects. Construction contexts we find here aren't for the
4309 // constructor C, they're for its arguments only.
4310 findConstructionContextsForArguments(C);
4311
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004312 autoCreateBlock();
Artem Dergachev41ffb302018-02-08 22:58:15 +00004313 appendConstructor(Block, C);
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004314
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004315 return VisitChildren(C);
4316}
4317
Jordan Rosec9176072014-01-13 17:59:19 +00004318CFGBlock *CFGBuilder::VisitCXXNewExpr(CXXNewExpr *NE,
4319 AddStmtChoice asc) {
Jordan Rosec9176072014-01-13 17:59:19 +00004320 autoCreateBlock();
4321 appendStmt(Block, NE);
Jordan Rose6f5f7192014-01-14 17:29:12 +00004322
Artem Dergachev783a4572018-02-23 22:20:39 +00004323 findConstructionContexts(
Artem Dergachev40684812018-02-27 20:03:35 +00004324 ConstructionContextLayer::create(cfg->getBumpVectorContext(), NE),
Artem Dergachev783a4572018-02-23 22:20:39 +00004325 const_cast<CXXConstructExpr *>(NE->getConstructExpr()));
Artem Dergachev41ffb302018-02-08 22:58:15 +00004326
Jordan Rosec9176072014-01-13 17:59:19 +00004327 if (NE->getInitializer())
Jordan Rose6f5f7192014-01-14 17:29:12 +00004328 Block = Visit(NE->getInitializer());
Artem Dergachev41ffb302018-02-08 22:58:15 +00004329
Jordan Rosec9176072014-01-13 17:59:19 +00004330 if (BuildOpts.AddCXXNewAllocator)
4331 appendNewAllocator(Block, NE);
Artem Dergachev41ffb302018-02-08 22:58:15 +00004332
Jordan Rosec9176072014-01-13 17:59:19 +00004333 if (NE->isArray())
Jordan Rose6f5f7192014-01-14 17:29:12 +00004334 Block = Visit(NE->getArraySize());
Artem Dergachev41ffb302018-02-08 22:58:15 +00004335
Jordan Rosec9176072014-01-13 17:59:19 +00004336 for (CXXNewExpr::arg_iterator I = NE->placement_arg_begin(),
4337 E = NE->placement_arg_end(); I != E; ++I)
Jordan Rose6f5f7192014-01-14 17:29:12 +00004338 Block = Visit(*I);
Artem Dergachev41ffb302018-02-08 22:58:15 +00004339
Jordan Rosec9176072014-01-13 17:59:19 +00004340 return Block;
4341}
Jordan Rosed2f40792013-09-03 17:00:57 +00004342
4343CFGBlock *CFGBuilder::VisitCXXDeleteExpr(CXXDeleteExpr *DE,
4344 AddStmtChoice asc) {
4345 autoCreateBlock();
4346 appendStmt(Block, DE);
4347 QualType DTy = DE->getDestroyedType();
Martin Bohmef44cde82016-12-05 11:33:19 +00004348 if (!DTy.isNull()) {
4349 DTy = DTy.getNonReferenceType();
4350 CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl();
4351 if (RD) {
4352 if (RD->isCompleteDefinition() && !RD->hasTrivialDestructor())
4353 appendDeleteDtor(Block, RD, DE);
4354 }
Jordan Rosed2f40792013-09-03 17:00:57 +00004355 }
4356
4357 return VisitChildren(DE);
4358}
4359
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004360CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E,
4361 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00004362 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004363 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00004364 appendStmt(Block, E);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004365 // We do not want to propagate the AlwaysAdd property.
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004366 asc = asc.withAlwaysAdd(false);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004367 }
4368 return Visit(E->getSubExpr(), asc);
4369}
4370
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004371CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C,
4372 AddStmtChoice asc) {
Artem Dergachevc531d542018-08-14 21:10:46 +00004373 // If the constructor takes objects as arguments by value, we need to properly
4374 // construct these objects. Construction contexts we find here aren't for the
4375 // constructor C, they're for its arguments only.
4376 findConstructionContextsForArguments(C);
4377
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004378 autoCreateBlock();
Artem Dergachev1f68d9d2018-02-15 03:13:36 +00004379 appendConstructor(Block, C);
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004380 return VisitChildren(C);
4381}
4382
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004383CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E,
4384 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00004385 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004386 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00004387 appendStmt(Block, E);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004388 }
Ted Kremenek8219b822010-12-16 07:46:53 +00004389 return Visit(E->getSubExpr(), AddStmtChoice());
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004390}
4391
Bill Wendling8003edc2018-11-09 00:41:36 +00004392CFGBlock *CFGBuilder::VisitConstantExpr(ConstantExpr *E, AddStmtChoice asc) {
4393 return Visit(E->getSubExpr(), AddStmtChoice());
4394}
4395
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004396CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) {
Mike Stump31feda52009-07-17 01:31:16 +00004397 // Lazily create the indirect-goto dispatch block if there isn't one already.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004398 CFGBlock *IBlock = cfg->getIndirectGotoBlock();
Mike Stump31feda52009-07-17 01:31:16 +00004399
Ted Kremenekeda180e22007-08-28 19:26:49 +00004400 if (!IBlock) {
4401 IBlock = createBlock(false);
4402 cfg->setIndirectGotoBlock(IBlock);
4403 }
Mike Stump31feda52009-07-17 01:31:16 +00004404
Ted Kremenekeda180e22007-08-28 19:26:49 +00004405 // IndirectGoto is a control-flow statement. Thus we stop processing the
4406 // current block and create a new one.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00004407 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004408 return nullptr;
Ted Kremenek93668002009-07-17 22:18:43 +00004409
Ted Kremenekeda180e22007-08-28 19:26:49 +00004410 Block = createBlock(false);
4411 Block->setTerminator(I);
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004412 addSuccessor(Block, IBlock);
Ted Kremenekeda180e22007-08-28 19:26:49 +00004413 return addStmt(I->getTarget());
4414}
4415
Manuel Klimekb5616c92014-08-07 10:42:17 +00004416CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary,
4417 TempDtorContext &Context) {
Jordan Rose6d671cc2012-09-05 22:55:23 +00004418 assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors);
4419
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004420tryAgain:
4421 if (!E) {
4422 badCFG = true;
Craig Topper25542942014-05-20 04:30:07 +00004423 return nullptr;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004424 }
4425 switch (E->getStmtClass()) {
4426 default:
Manuel Klimekb5616c92014-08-07 10:42:17 +00004427 return VisitChildrenForTemporaryDtors(E, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004428
4429 case Stmt::BinaryOperatorClass:
Manuel Klimekb5616c92014-08-07 10:42:17 +00004430 return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E),
4431 Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004432
4433 case Stmt::CXXBindTemporaryExprClass:
4434 return VisitCXXBindTemporaryExprForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004435 cast<CXXBindTemporaryExpr>(E), BindToTemporary, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004436
John McCallc07a0c72011-02-17 10:25:35 +00004437 case Stmt::BinaryConditionalOperatorClass:
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004438 case Stmt::ConditionalOperatorClass:
4439 return VisitConditionalOperatorForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004440 cast<AbstractConditionalOperator>(E), BindToTemporary, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004441
4442 case Stmt::ImplicitCastExprClass:
4443 // For implicit cast we want BindToTemporary to be passed further.
4444 E = cast<CastExpr>(E)->getSubExpr();
4445 goto tryAgain;
4446
Manuel Klimekb0042c42014-07-30 08:34:42 +00004447 case Stmt::CXXFunctionalCastExprClass:
4448 // For functional cast we want BindToTemporary to be passed further.
4449 E = cast<CXXFunctionalCastExpr>(E)->getSubExpr();
4450 goto tryAgain;
4451
Bill Wendling8003edc2018-11-09 00:41:36 +00004452 case Stmt::ConstantExprClass:
4453 E = cast<ConstantExpr>(E)->getSubExpr();
4454 goto tryAgain;
4455
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004456 case Stmt::ParenExprClass:
4457 E = cast<ParenExpr>(E)->getSubExpr();
4458 goto tryAgain;
Richard Smith4137af22014-07-27 05:12:49 +00004459
Manuel Klimekb0042c42014-07-30 08:34:42 +00004460 case Stmt::MaterializeTemporaryExprClass: {
4461 const MaterializeTemporaryExpr* MTE = cast<MaterializeTemporaryExpr>(E);
4462 BindToTemporary = (MTE->getStorageDuration() != SD_FullExpression);
4463 SmallVector<const Expr *, 2> CommaLHSs;
4464 SmallVector<SubobjectAdjustment, 2> Adjustments;
4465 // Find the expression whose lifetime needs to be extended.
4466 E = const_cast<Expr *>(
4467 cast<MaterializeTemporaryExpr>(E)
4468 ->GetTemporaryExpr()
4469 ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments));
4470 // Visit the skipped comma operator left-hand sides for other temporaries.
4471 for (const Expr *CommaLHS : CommaLHSs) {
4472 VisitForTemporaryDtors(const_cast<Expr *>(CommaLHS),
Manuel Klimekb5616c92014-08-07 10:42:17 +00004473 /*BindToTemporary=*/false, Context);
Manuel Klimekb0042c42014-07-30 08:34:42 +00004474 }
Douglas Gregorfe314812011-06-21 17:03:29 +00004475 goto tryAgain;
Manuel Klimekb0042c42014-07-30 08:34:42 +00004476 }
Richard Smith4137af22014-07-27 05:12:49 +00004477
4478 case Stmt::BlockExprClass:
4479 // Don't recurse into blocks; their subexpressions don't get evaluated
4480 // here.
4481 return Block;
4482
4483 case Stmt::LambdaExprClass: {
4484 // For lambda expressions, only recurse into the capture initializers,
4485 // and not the body.
4486 auto *LE = cast<LambdaExpr>(E);
4487 CFGBlock *B = Block;
4488 for (Expr *Init : LE->capture_inits()) {
Richard Smith7ed5fb22018-07-27 17:13:18 +00004489 if (Init) {
4490 if (CFGBlock *R = VisitForTemporaryDtors(
4491 Init, /*BindToTemporary=*/false, Context))
4492 B = R;
4493 }
Richard Smith4137af22014-07-27 05:12:49 +00004494 }
4495 return B;
4496 }
4497
4498 case Stmt::CXXDefaultArgExprClass:
4499 E = cast<CXXDefaultArgExpr>(E)->getExpr();
4500 goto tryAgain;
4501
4502 case Stmt::CXXDefaultInitExprClass:
4503 E = cast<CXXDefaultInitExpr>(E)->getExpr();
4504 goto tryAgain;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004505 }
4506}
4507
Manuel Klimekb5616c92014-08-07 10:42:17 +00004508CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E,
4509 TempDtorContext &Context) {
4510 if (isa<LambdaExpr>(E)) {
4511 // Do not visit the children of lambdas; they have their own CFGs.
4512 return Block;
4513 }
4514
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004515 // When visiting children for destructors we want to visit them in reverse
Ted Kremenek8ae67872013-02-05 22:00:19 +00004516 // order that they will appear in the CFG. Because the CFG is built
4517 // bottom-up, this means we visit them in their natural order, which
4518 // reverses them in the CFG.
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004519 CFGBlock *B = Block;
Benjamin Kramer642f1732015-07-02 21:03:14 +00004520 for (Stmt *Child : E->children())
4521 if (Child)
Manuel Klimekb5616c92014-08-07 10:42:17 +00004522 if (CFGBlock *R = VisitForTemporaryDtors(Child, false, Context))
Ted Kremenek8ae67872013-02-05 22:00:19 +00004523 B = R;
Benjamin Kramer642f1732015-07-02 21:03:14 +00004524
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004525 return B;
4526}
4527
Manuel Klimekb5616c92014-08-07 10:42:17 +00004528CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors(
4529 BinaryOperator *E, TempDtorContext &Context) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004530 if (E->isLogicalOp()) {
Manuel Klimekb5616c92014-08-07 10:42:17 +00004531 VisitForTemporaryDtors(E->getLHS(), false, Context);
Manuel Klimekedf925b92014-08-07 18:44:19 +00004532 TryResult RHSExecuted = tryEvaluateBool(E->getLHS());
4533 if (RHSExecuted.isKnown() && E->getOpcode() == BO_LOr)
4534 RHSExecuted.negate();
Manuel Klimek7c030132014-08-07 16:05:51 +00004535
Manuel Klimekedf925b92014-08-07 18:44:19 +00004536 // We do not know at CFG-construction time whether the right-hand-side was
4537 // executed, thus we add a branch node that depends on the temporary
4538 // constructor call.
Manuel Klimekdeb02622014-08-08 07:37:13 +00004539 TempDtorContext RHSContext(
4540 bothKnownTrue(Context.KnownExecuted, RHSExecuted));
Manuel Klimekedf925b92014-08-07 18:44:19 +00004541 VisitForTemporaryDtors(E->getRHS(), false, RHSContext);
Manuel Klimekdeb02622014-08-08 07:37:13 +00004542 InsertTempDtorDecisionBlock(RHSContext);
Manuel Klimek7c030132014-08-07 16:05:51 +00004543
Manuel Klimekb5616c92014-08-07 10:42:17 +00004544 return Block;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004545 }
4546
Zhanyong Wan59f09c72010-11-22 19:32:14 +00004547 if (E->isAssignmentOp()) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004548 // For assignment operator (=) LHS expression is visited
4549 // before RHS expression. For destructors visit them in reverse order.
Manuel Klimekb5616c92014-08-07 10:42:17 +00004550 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context);
4551 CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004552 return LHSBlock ? LHSBlock : RHSBlock;
4553 }
4554
4555 // For any other binary operator RHS expression is visited before
4556 // LHS expression (order of children). For destructors visit them in reverse
4557 // order.
Manuel Klimekb5616c92014-08-07 10:42:17 +00004558 CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context);
4559 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004560 return RHSBlock ? RHSBlock : LHSBlock;
4561}
4562
4563CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004564 CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004565 // First add destructors for temporaries in subexpression.
Manuel Klimekb5616c92014-08-07 10:42:17 +00004566 CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr(), false, Context);
Zhongxing Xufee455f2010-11-14 15:23:50 +00004567 if (!BindToTemporary) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004568 // If lifetime of temporary is not prolonged (by assigning to constant
4569 // reference) add destructor for it.
Chandler Carruthad747252011-09-13 06:09:01 +00004570
Chandler Carruthad747252011-09-13 06:09:01 +00004571 const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor();
Manuel Klimekb5616c92014-08-07 10:42:17 +00004572
Richard Trieu95a192a2015-05-28 00:14:02 +00004573 if (Dtor->getParent()->isAnyDestructorNoReturn()) {
Manuel Klimekb5616c92014-08-07 10:42:17 +00004574 // If the destructor is marked as a no-return destructor, we need to
4575 // create a new block for the destructor which does not have as a
4576 // successor anything built thus far. Control won't flow out of this
4577 // block.
4578 if (B) Succ = B;
Chandler Carrutha70991b2011-09-13 09:13:49 +00004579 Block = createNoReturnBlock();
Manuel Klimekb5616c92014-08-07 10:42:17 +00004580 } else if (Context.needsTempDtorBranch()) {
4581 // If we need to introduce a branch, we add a new block that we will hook
4582 // up to a decision block later.
4583 if (B) Succ = B;
4584 Block = createBlock();
Ted Kremenekff909f92014-03-08 02:22:25 +00004585 } else {
Chandler Carruthad747252011-09-13 06:09:01 +00004586 autoCreateBlock();
Ted Kremenekff909f92014-03-08 02:22:25 +00004587 }
Manuel Klimekb5616c92014-08-07 10:42:17 +00004588 if (Context.needsTempDtorBranch()) {
4589 Context.setDecisionPoint(Succ, E);
4590 }
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004591 appendTemporaryDtor(Block, E);
Manuel Klimekb5616c92014-08-07 10:42:17 +00004592
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004593 B = Block;
4594 }
4595 return B;
4596}
4597
Manuel Klimekb5616c92014-08-07 10:42:17 +00004598void CFGBuilder::InsertTempDtorDecisionBlock(const TempDtorContext &Context,
4599 CFGBlock *FalseSucc) {
4600 if (!Context.TerminatorExpr) {
4601 // If no temporary was found, we do not need to insert a decision point.
4602 return;
4603 }
4604 assert(Context.TerminatorExpr);
4605 CFGBlock *Decision = createBlock(false);
4606 Decision->setTerminator(CFGTerminator(Context.TerminatorExpr, true));
Manuel Klimekdeb02622014-08-08 07:37:13 +00004607 addSuccessor(Decision, Block, !Context.KnownExecuted.isFalse());
Manuel Klimekedf925b92014-08-07 18:44:19 +00004608 addSuccessor(Decision, FalseSucc ? FalseSucc : Context.Succ,
Manuel Klimekdeb02622014-08-08 07:37:13 +00004609 !Context.KnownExecuted.isTrue());
Manuel Klimekb5616c92014-08-07 10:42:17 +00004610 Block = Decision;
4611}
4612
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004613CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004614 AbstractConditionalOperator *E, bool BindToTemporary,
4615 TempDtorContext &Context) {
4616 VisitForTemporaryDtors(E->getCond(), false, Context);
4617 CFGBlock *ConditionBlock = Block;
4618 CFGBlock *ConditionSucc = Succ;
Manuel Klimek0ce91082014-08-07 14:25:43 +00004619 TryResult ConditionVal = tryEvaluateBool(E->getCond());
Manuel Klimekedf925b92014-08-07 18:44:19 +00004620 TryResult NegatedVal = ConditionVal;
4621 if (NegatedVal.isKnown()) NegatedVal.negate();
Manuel Klimekcadc6032014-08-07 17:02:21 +00004622
Manuel Klimekdeb02622014-08-08 07:37:13 +00004623 TempDtorContext TrueContext(
4624 bothKnownTrue(Context.KnownExecuted, ConditionVal));
Manuel Klimekcadc6032014-08-07 17:02:21 +00004625 VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary, TrueContext);
Manuel Klimekb5616c92014-08-07 10:42:17 +00004626 CFGBlock *TrueBlock = Block;
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004627
Manuel Klimekb5616c92014-08-07 10:42:17 +00004628 Block = ConditionBlock;
4629 Succ = ConditionSucc;
Manuel Klimekdeb02622014-08-08 07:37:13 +00004630 TempDtorContext FalseContext(
4631 bothKnownTrue(Context.KnownExecuted, NegatedVal));
Manuel Klimekcadc6032014-08-07 17:02:21 +00004632 VisitForTemporaryDtors(E->getFalseExpr(), BindToTemporary, FalseContext);
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004633
Manuel Klimekb5616c92014-08-07 10:42:17 +00004634 if (TrueContext.TerminatorExpr && FalseContext.TerminatorExpr) {
Manuel Klimekdeb02622014-08-08 07:37:13 +00004635 InsertTempDtorDecisionBlock(FalseContext, TrueBlock);
Manuel Klimekb5616c92014-08-07 10:42:17 +00004636 } else if (TrueContext.TerminatorExpr) {
4637 Block = TrueBlock;
Manuel Klimekdeb02622014-08-08 07:37:13 +00004638 InsertTempDtorDecisionBlock(TrueContext);
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004639 } else {
Manuel Klimekdeb02622014-08-08 07:37:13 +00004640 InsertTempDtorDecisionBlock(FalseContext);
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004641 }
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004642 return Block;
4643}
4644
Mike Stump31feda52009-07-17 01:31:16 +00004645/// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has
4646/// no successors or predecessors. If this is the first block created in the
4647/// CFG, it is automatically set to be the Entry and Exit of the CFG.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004648CFGBlock *CFG::createBlock() {
Ted Kremenek889073f2007-08-23 16:51:22 +00004649 bool first_block = begin() == end();
4650
4651 // Create the block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004652 CFGBlock *Mem = getAllocator().Allocate<CFGBlock>();
Anna Zaks02a1fc12011-12-05 21:33:11 +00004653 new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this);
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004654 Blocks.push_back(Mem, BlkBVC);
Ted Kremenek889073f2007-08-23 16:51:22 +00004655
4656 // If this is the first block, set it as the Entry and Exit.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004657 if (first_block)
4658 Entry = Exit = &back();
Ted Kremenek889073f2007-08-23 16:51:22 +00004659
4660 // Return the block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004661 return &back();
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00004662}
4663
David Blaikiee90195c2014-08-29 18:53:26 +00004664/// buildCFG - Constructs a CFG from an AST.
4665std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement,
4666 ASTContext *C, const BuildOptions &BO) {
Ted Kremenekf9d82902011-03-10 01:14:05 +00004667 CFGBuilder Builder(C, BO);
4668 return Builder.buildCFG(D, Statement);
Ted Kremenek889073f2007-08-23 16:51:22 +00004669}
4670
Ted Kremenek8cfe2072011-03-03 01:21:32 +00004671const CXXDestructorDecl *
4672CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const {
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004673 switch (getKind()) {
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004674 case CFGElement::Initializer:
Jordan Rosec9176072014-01-13 17:59:19 +00004675 case CFGElement::NewAllocator:
Peter Szecsi999a25f2017-08-19 11:19:16 +00004676 case CFGElement::LoopExit:
Matthias Gehre351c2182017-07-12 07:04:19 +00004677 case CFGElement::LifetimeEnds:
Artem Dergachev41ffb302018-02-08 22:58:15 +00004678 case CFGElement::Statement:
4679 case CFGElement::Constructor:
Artem Dergachev1527dec2018-03-12 23:12:40 +00004680 case CFGElement::CXXRecordTypedCall:
Maxim Ostapenkodebca452018-03-12 12:26:15 +00004681 case CFGElement::ScopeBegin:
4682 case CFGElement::ScopeEnd:
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004683 llvm_unreachable("getDestructorDecl should only be used with "
4684 "ImplicitDtors");
4685 case CFGElement::AutomaticObjectDtor: {
David Blaikie2a01f5d2013-02-21 20:58:29 +00004686 const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004687 QualType ty = var->getType();
Devin Coughlin6eb1ca72016-08-02 21:07:23 +00004688
4689 // FIXME: See CFGBuilder::addLocalScopeForVarDecl.
4690 //
4691 // Lifetime-extending constructs are handled here. This works for a single
4692 // temporary in an initializer expression.
4693 if (ty->isReferenceType()) {
4694 if (const Expr *Init = var->getInit()) {
Artem Dergacheva25809f2018-06-04 18:56:25 +00004695 ty = getReferenceInitTemporaryType(Init);
Devin Coughlin6eb1ca72016-08-02 21:07:23 +00004696 }
4697 }
4698
Ted Kremeneke7d78882012-03-19 23:48:41 +00004699 while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) {
Ted Kremenek8cfe2072011-03-03 01:21:32 +00004700 ty = arrayType->getElementType();
4701 }
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004702 const RecordType *recordType = ty->getAs<RecordType>();
4703 const CXXRecordDecl *classDecl =
Ted Kremenek1676a042011-03-03 01:01:03 +00004704 cast<CXXRecordDecl>(recordType->getDecl());
Fangrui Song6907ce22018-07-30 19:24:48 +00004705 return classDecl->getDestructor();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004706 }
Jordan Rosed2f40792013-09-03 17:00:57 +00004707 case CFGElement::DeleteDtor: {
4708 const CXXDeleteExpr *DE = castAs<CFGDeleteDtor>().getDeleteExpr();
4709 QualType DTy = DE->getDestroyedType();
4710 DTy = DTy.getNonReferenceType();
4711 const CXXRecordDecl *classDecl =
4712 astContext.getBaseElementType(DTy)->getAsCXXRecordDecl();
4713 return classDecl->getDestructor();
4714 }
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004715 case CFGElement::TemporaryDtor: {
4716 const CXXBindTemporaryExpr *bindExpr =
David Blaikie2a01f5d2013-02-21 20:58:29 +00004717 castAs<CFGTemporaryDtor>().getBindTemporaryExpr();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004718 const CXXTemporary *temp = bindExpr->getTemporary();
4719 return temp->getDestructor();
4720 }
4721 case CFGElement::BaseDtor:
4722 case CFGElement::MemberDtor:
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004723 // Not yet supported.
Craig Topper25542942014-05-20 04:30:07 +00004724 return nullptr;
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004725 }
Ted Kremenek1676a042011-03-03 01:01:03 +00004726 llvm_unreachable("getKind() returned bogus value");
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004727}
4728
Ted Kremenek8cfe2072011-03-03 01:21:32 +00004729bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const {
Richard Smith10876ef2013-01-17 01:30:42 +00004730 if (const CXXDestructorDecl *DD = getDestructorDecl(astContext))
4731 return DD->isNoReturn();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004732 return false;
Ted Kremenek96a7a592011-03-01 03:15:10 +00004733}
4734
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00004735//===----------------------------------------------------------------------===//
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004736// CFGBlock operations.
Ted Kremenekb0371852010-09-09 00:06:04 +00004737//===----------------------------------------------------------------------===//
4738
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004739CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, bool IsReachable)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004740 : ReachableBlock(IsReachable ? B : nullptr),
4741 UnreachableBlock(!IsReachable ? B : nullptr,
4742 B && IsReachable ? AB_Normal : AB_Unreachable) {}
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004743
4744CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, CFGBlock *AlternateBlock)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004745 : ReachableBlock(B),
4746 UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock,
4747 B == AlternateBlock ? AB_Alternate : AB_Normal) {}
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004748
4749void CFGBlock::addSuccessor(AdjacentBlock Succ,
4750 BumpVectorContext &C) {
4751 if (CFGBlock *B = Succ.getReachableBlock())
David Blaikie9afd5da2014-03-04 23:39:18 +00004752 B->Preds.push_back(AdjacentBlock(this, Succ.isReachable()), C);
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004753
4754 if (CFGBlock *UnreachableB = Succ.getPossiblyUnreachableBlock())
David Blaikie9afd5da2014-03-04 23:39:18 +00004755 UnreachableB->Preds.push_back(AdjacentBlock(this, false), C);
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004756
4757 Succs.push_back(Succ, C);
4758}
4759
Ted Kremenekb0371852010-09-09 00:06:04 +00004760bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F,
Ted Kremenekf146cd12010-09-09 02:57:48 +00004761 const CFGBlock *From, const CFGBlock *To) {
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004762 if (F.IgnoreNullPredecessors && !From)
4763 return true;
4764
4765 if (To && From && F.IgnoreDefaultsWithCoveredEnums) {
Ted Kremenekb0371852010-09-09 00:06:04 +00004766 // If the 'To' has no label or is labeled but the label isn't a
4767 // CaseStmt then filter this edge.
4768 if (const SwitchStmt *S =
Ted Kremenek89794742011-03-07 22:04:39 +00004769 dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) {
Ted Kremenekb0371852010-09-09 00:06:04 +00004770 if (S->isAllEnumCasesCovered()) {
Ted Kremenek89794742011-03-07 22:04:39 +00004771 const Stmt *L = To->getLabel();
4772 if (!L || !isa<CaseStmt>(L))
4773 return true;
Ted Kremenekb0371852010-09-09 00:06:04 +00004774 }
4775 }
4776 }
4777
4778 return false;
4779}
4780
4781//===----------------------------------------------------------------------===//
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00004782// CFG pretty printing
4783//===----------------------------------------------------------------------===//
4784
Ted Kremenek7e776b12007-08-22 18:22:34 +00004785namespace {
4786
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00004787class StmtPrinterHelper : public PrinterHelper {
Eugene Zelenko38c70522017-12-07 21:55:09 +00004788 using StmtMapTy = llvm::DenseMap<const Stmt *, std::pair<unsigned, unsigned>>;
4789 using DeclMapTy = llvm::DenseMap<const Decl *, std::pair<unsigned, unsigned>>;
4790
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004791 StmtMapTy StmtMap;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004792 DeclMapTy DeclMap;
Eugene Zelenko38c70522017-12-07 21:55:09 +00004793 signed currentBlock = 0;
4794 unsigned currStmt = 0;
Chris Lattnerc61089a2009-06-30 01:26:17 +00004795 const LangOptions &LangOpts;
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004796
Eugene Zelenko38c70522017-12-07 21:55:09 +00004797public:
Chris Lattnerc61089a2009-06-30 01:26:17 +00004798 StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004799 : LangOpts(LO) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004800 for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
4801 unsigned j = 1;
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004802 for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ;
Fangrui Song6907ce22018-07-30 19:24:48 +00004803 BI != BEnd; ++BI, ++j ) {
David Blaikie00be69a2013-02-23 00:29:34 +00004804 if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) {
4805 const Stmt *stmt= SE->getStmt();
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004806 std::pair<unsigned, unsigned> P((*I)->getBlockID(), j);
Ted Kremenek96a7a592011-03-01 03:15:10 +00004807 StmtMap[stmt] = P;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004808
Ted Kremenek96a7a592011-03-01 03:15:10 +00004809 switch (stmt->getStmtClass()) {
4810 case Stmt::DeclStmtClass:
Artem Dergachev41ffb302018-02-08 22:58:15 +00004811 DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P;
4812 break;
Ted Kremenek96a7a592011-03-01 03:15:10 +00004813 case Stmt::IfStmtClass: {
4814 const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable();
4815 if (var)
4816 DeclMap[var] = P;
4817 break;
4818 }
4819 case Stmt::ForStmtClass: {
4820 const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable();
4821 if (var)
4822 DeclMap[var] = P;
4823 break;
4824 }
4825 case Stmt::WhileStmtClass: {
4826 const VarDecl *var =
4827 cast<WhileStmt>(stmt)->getConditionVariable();
4828 if (var)
4829 DeclMap[var] = P;
4830 break;
4831 }
4832 case Stmt::SwitchStmtClass: {
4833 const VarDecl *var =
4834 cast<SwitchStmt>(stmt)->getConditionVariable();
4835 if (var)
4836 DeclMap[var] = P;
4837 break;
4838 }
4839 case Stmt::CXXCatchStmtClass: {
4840 const VarDecl *var =
4841 cast<CXXCatchStmt>(stmt)->getExceptionDecl();
4842 if (var)
4843 DeclMap[var] = P;
4844 break;
4845 }
4846 default:
4847 break;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004848 }
4849 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004850 }
Zhongxing Xu2cd7a782010-09-16 01:25:47 +00004851 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004852 }
Mike Stump31feda52009-07-17 01:31:16 +00004853
Eugene Zelenko38c70522017-12-07 21:55:09 +00004854 ~StmtPrinterHelper() override = default;
Mike Stump31feda52009-07-17 01:31:16 +00004855
Chris Lattnerc61089a2009-06-30 01:26:17 +00004856 const LangOptions &getLangOpts() const { return LangOpts; }
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004857 void setBlockID(signed i) { currentBlock = i; }
Ted Kremenekd94854a2012-08-22 06:26:15 +00004858 void setStmtID(unsigned i) { currStmt = i; }
Mike Stump31feda52009-07-17 01:31:16 +00004859
Craig Topperb45acb82014-03-14 06:02:07 +00004860 bool handledStmt(Stmt *S, raw_ostream &OS) override {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004861 StmtMapTy::iterator I = StmtMap.find(S);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004862
4863 if (I == StmtMap.end())
4864 return false;
Mike Stump31feda52009-07-17 01:31:16 +00004865
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004866 if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
Ted Kremenekd94854a2012-08-22 06:26:15 +00004867 && I->second.second == currStmt) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004868 return false;
Ted Kremenek60983dc2010-01-19 20:52:05 +00004869 }
Mike Stump31feda52009-07-17 01:31:16 +00004870
Ted Kremenek60983dc2010-01-19 20:52:05 +00004871 OS << "[B" << I->second.first << "." << I->second.second << "]";
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004872 return true;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004873 }
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004874
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004875 bool handleDecl(const Decl *D, raw_ostream &OS) {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004876 DeclMapTy::iterator I = DeclMap.find(D);
4877
4878 if (I == DeclMap.end())
4879 return false;
4880
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004881 if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
Ted Kremenekd94854a2012-08-22 06:26:15 +00004882 && I->second.second == currStmt) {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004883 return false;
4884 }
4885
4886 OS << "[B" << I->second.first << "." << I->second.second << "]";
4887 return true;
4888 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004889};
4890
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00004891class CFGBlockTerminatorPrint
Eugene Zelenko38c70522017-12-07 21:55:09 +00004892 : public StmtVisitor<CFGBlockTerminatorPrint,void> {
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004893 raw_ostream &OS;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004894 StmtPrinterHelper* Helper;
Douglas Gregor7de59662009-05-29 20:38:28 +00004895 PrintingPolicy Policy;
Eugene Zelenko38c70522017-12-07 21:55:09 +00004896
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004897public:
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004898 CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper,
Chris Lattnerc61089a2009-06-30 01:26:17 +00004899 const PrintingPolicy &Policy)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004900 : OS(os), Helper(helper), Policy(Policy) {
Ted Kremenek5d0fb1e2013-12-11 23:44:05 +00004901 this->Policy.IncludeNewlines = false;
4902 }
Mike Stump31feda52009-07-17 01:31:16 +00004903
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004904 void VisitIfStmt(IfStmt *I) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004905 OS << "if ";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004906 if (Stmt *C = I->getCond())
4907 C->printPretty(OS, Helper, Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00004908 }
Mike Stump31feda52009-07-17 01:31:16 +00004909
Ted Kremenek9aae5132007-08-23 21:42:29 +00004910 // Default case.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004911 void VisitStmt(Stmt *Terminator) {
Mike Stump31feda52009-07-17 01:31:16 +00004912 Terminator->printPretty(OS, Helper, Policy);
4913 }
4914
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00004915 void VisitDeclStmt(DeclStmt *DS) {
4916 VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
4917 OS << "static init " << VD->getName();
4918 }
4919
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004920 void VisitForStmt(ForStmt *F) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004921 OS << "for (" ;
Ted Kremenek60983dc2010-01-19 20:52:05 +00004922 if (F->getInit())
4923 OS << "...";
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00004924 OS << "; ";
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004925 if (Stmt *C = F->getCond())
Ted Kremenek60983dc2010-01-19 20:52:05 +00004926 C->printPretty(OS, Helper, Policy);
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00004927 OS << "; ";
Ted Kremenek60983dc2010-01-19 20:52:05 +00004928 if (F->getInc())
4929 OS << "...";
Ted Kremenek15647632008-01-30 23:02:42 +00004930 OS << ")";
Ted Kremenek9aae5132007-08-23 21:42:29 +00004931 }
Mike Stump31feda52009-07-17 01:31:16 +00004932
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004933 void VisitWhileStmt(WhileStmt *W) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004934 OS << "while " ;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004935 if (Stmt *C = W->getCond())
Ted Kremenek60983dc2010-01-19 20:52:05 +00004936 C->printPretty(OS, Helper, Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00004937 }
Mike Stump31feda52009-07-17 01:31:16 +00004938
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004939 void VisitDoStmt(DoStmt *D) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004940 OS << "do ... while ";
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004941 if (Stmt *C = D->getCond())
Ted Kremenek60983dc2010-01-19 20:52:05 +00004942 C->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00004943 }
Mike Stump31feda52009-07-17 01:31:16 +00004944
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004945 void VisitSwitchStmt(SwitchStmt *Terminator) {
Ted Kremenek9e248872007-08-27 21:27:44 +00004946 OS << "switch ";
Douglas Gregor7de59662009-05-29 20:38:28 +00004947 Terminator->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00004948 }
Mike Stump31feda52009-07-17 01:31:16 +00004949
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004950 void VisitCXXTryStmt(CXXTryStmt *CS) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004951 OS << "try ...";
4952 }
4953
Nico Weber699670e2017-08-23 15:33:16 +00004954 void VisitSEHTryStmt(SEHTryStmt *CS) {
4955 OS << "__try ...";
4956 }
4957
John McCallc07a0c72011-02-17 10:25:35 +00004958 void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) {
Richard Trieuddd01ce2014-06-09 22:53:25 +00004959 if (Stmt *Cond = C->getCond())
4960 Cond->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00004961 OS << " ? ... : ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004962 }
Mike Stump31feda52009-07-17 01:31:16 +00004963
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004964 void VisitChooseExpr(ChooseExpr *C) {
Ted Kremenek391f94a2007-08-31 22:29:13 +00004965 OS << "__builtin_choose_expr( ";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004966 if (Stmt *Cond = C->getCond())
4967 Cond->printPretty(OS, Helper, Policy);
Ted Kremenek15647632008-01-30 23:02:42 +00004968 OS << " )";
Ted Kremenek391f94a2007-08-31 22:29:13 +00004969 }
Mike Stump31feda52009-07-17 01:31:16 +00004970
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004971 void VisitIndirectGotoStmt(IndirectGotoStmt *I) {
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004972 OS << "goto *";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004973 if (Stmt *T = I->getTarget())
4974 T->printPretty(OS, Helper, Policy);
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004975 }
Mike Stump31feda52009-07-17 01:31:16 +00004976
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004977 void VisitBinaryOperator(BinaryOperator* B) {
4978 if (!B->isLogicalOp()) {
4979 VisitExpr(B);
4980 return;
4981 }
Mike Stump31feda52009-07-17 01:31:16 +00004982
Richard Trieuddd01ce2014-06-09 22:53:25 +00004983 if (B->getLHS())
4984 B->getLHS()->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00004985
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004986 switch (B->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +00004987 case BO_LOr:
Ted Kremenek15647632008-01-30 23:02:42 +00004988 OS << " || ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004989 return;
John McCalle3027922010-08-25 11:45:40 +00004990 case BO_LAnd:
Ted Kremenek15647632008-01-30 23:02:42 +00004991 OS << " && ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004992 return;
4993 default:
David Blaikie83d382b2011-09-23 05:06:16 +00004994 llvm_unreachable("Invalid logical operator.");
Mike Stump31feda52009-07-17 01:31:16 +00004995 }
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004996 }
Mike Stump31feda52009-07-17 01:31:16 +00004997
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004998 void VisitExpr(Expr *E) {
Douglas Gregor7de59662009-05-29 20:38:28 +00004999 E->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00005000 }
Ted Kremenekfcc14172014-03-08 02:22:29 +00005001
5002public:
5003 void print(CFGTerminator T) {
5004 if (T.isTemporaryDtorsBranch())
5005 OS << "(Temp Dtor) ";
5006 Visit(T.getStmt());
5007 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00005008};
Eugene Zelenko38c70522017-12-07 21:55:09 +00005009
5010} // namespace
Chris Lattnerc61089a2009-06-30 01:26:17 +00005011
Artem Dergachev5a281bb2018-02-10 02:18:04 +00005012static void print_initializer(raw_ostream &OS, StmtPrinterHelper &Helper,
5013 const CXXCtorInitializer *I) {
5014 if (I->isBaseInitializer())
5015 OS << I->getBaseClass()->getAsCXXRecordDecl()->getName();
5016 else if (I->isDelegatingInitializer())
5017 OS << I->getTypeSourceInfo()->getType()->getAsCXXRecordDecl()->getName();
5018 else
5019 OS << I->getAnyMember()->getName();
5020 OS << "(";
5021 if (Expr *IE = I->getInit())
5022 IE->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts()));
5023 OS << ")";
5024
5025 if (I->isBaseInitializer())
5026 OS << " (Base initializer)";
5027 else if (I->isDelegatingInitializer())
5028 OS << " (Delegating initializer)";
5029 else
5030 OS << " (Member initializer)";
5031}
5032
Artem Dergachev1527dec2018-03-12 23:12:40 +00005033static void print_construction_context(raw_ostream &OS,
5034 StmtPrinterHelper &Helper,
5035 const ConstructionContext *CC) {
Artem Dergachevff267df2018-06-28 00:04:54 +00005036 SmallVector<const Stmt *, 3> Stmts;
Artem Dergachev1527dec2018-03-12 23:12:40 +00005037 switch (CC->getKind()) {
Artem Dergachev922455f2018-03-22 22:02:38 +00005038 case ConstructionContext::SimpleConstructorInitializerKind: {
Artem Dergachev1527dec2018-03-12 23:12:40 +00005039 OS << ", ";
Artem Dergachev922455f2018-03-22 22:02:38 +00005040 const auto *SICC = cast<SimpleConstructorInitializerConstructionContext>(CC);
5041 print_initializer(OS, Helper, SICC->getCXXCtorInitializer());
Artem Dergacheva657a322018-07-31 20:45:53 +00005042 return;
Artem Dergachev922455f2018-03-22 22:02:38 +00005043 }
5044 case ConstructionContext::CXX17ElidedCopyConstructorInitializerKind: {
5045 OS << ", ";
5046 const auto *CICC =
5047 cast<CXX17ElidedCopyConstructorInitializerConstructionContext>(CC);
5048 print_initializer(OS, Helper, CICC->getCXXCtorInitializer());
Artem Dergachevff267df2018-06-28 00:04:54 +00005049 Stmts.push_back(CICC->getCXXBindTemporaryExpr());
Artem Dergachev1527dec2018-03-12 23:12:40 +00005050 break;
5051 }
5052 case ConstructionContext::SimpleVariableKind: {
Artem Dergachev317291e2018-03-22 21:37:39 +00005053 const auto *SDSCC = cast<SimpleVariableConstructionContext>(CC);
Artem Dergachevff267df2018-06-28 00:04:54 +00005054 Stmts.push_back(SDSCC->getDeclStmt());
Artem Dergachev317291e2018-03-22 21:37:39 +00005055 break;
5056 }
5057 case ConstructionContext::CXX17ElidedCopyVariableKind: {
5058 const auto *CDSCC = cast<CXX17ElidedCopyVariableConstructionContext>(CC);
Artem Dergachevff267df2018-06-28 00:04:54 +00005059 Stmts.push_back(CDSCC->getDeclStmt());
5060 Stmts.push_back(CDSCC->getCXXBindTemporaryExpr());
Artem Dergachev1527dec2018-03-12 23:12:40 +00005061 break;
5062 }
5063 case ConstructionContext::NewAllocatedObjectKind: {
5064 const auto *NECC = cast<NewAllocatedObjectConstructionContext>(CC);
Artem Dergachevff267df2018-06-28 00:04:54 +00005065 Stmts.push_back(NECC->getCXXNewExpr());
Artem Dergachev1527dec2018-03-12 23:12:40 +00005066 break;
5067 }
Artem Dergachev317291e2018-03-22 21:37:39 +00005068 case ConstructionContext::SimpleReturnedValueKind: {
5069 const auto *RSCC = cast<SimpleReturnedValueConstructionContext>(CC);
Artem Dergachevff267df2018-06-28 00:04:54 +00005070 Stmts.push_back(RSCC->getReturnStmt());
Artem Dergachev1527dec2018-03-12 23:12:40 +00005071 break;
5072 }
Artem Dergachev317291e2018-03-22 21:37:39 +00005073 case ConstructionContext::CXX17ElidedCopyReturnedValueKind: {
5074 const auto *RSCC =
5075 cast<CXX17ElidedCopyReturnedValueConstructionContext>(CC);
Artem Dergachevff267df2018-06-28 00:04:54 +00005076 Stmts.push_back(RSCC->getReturnStmt());
5077 Stmts.push_back(RSCC->getCXXBindTemporaryExpr());
Artem Dergachev317291e2018-03-22 21:37:39 +00005078 break;
5079 }
Artem Dergachevff267df2018-06-28 00:04:54 +00005080 case ConstructionContext::SimpleTemporaryObjectKind: {
5081 const auto *TOCC = cast<SimpleTemporaryObjectConstructionContext>(CC);
5082 Stmts.push_back(TOCC->getCXXBindTemporaryExpr());
5083 Stmts.push_back(TOCC->getMaterializedTemporaryExpr());
5084 break;
5085 }
5086 case ConstructionContext::ElidedTemporaryObjectKind: {
5087 const auto *TOCC = cast<ElidedTemporaryObjectConstructionContext>(CC);
5088 Stmts.push_back(TOCC->getCXXBindTemporaryExpr());
5089 Stmts.push_back(TOCC->getMaterializedTemporaryExpr());
5090 Stmts.push_back(TOCC->getConstructorAfterElision());
Artem Dergachev1527dec2018-03-12 23:12:40 +00005091 break;
5092 }
Artem Dergacheva657a322018-07-31 20:45:53 +00005093 case ConstructionContext::ArgumentKind: {
5094 const auto *ACC = cast<ArgumentConstructionContext>(CC);
5095 if (const Stmt *BTE = ACC->getCXXBindTemporaryExpr()) {
5096 OS << ", ";
5097 Helper.handledStmt(const_cast<Stmt *>(BTE), OS);
5098 }
5099 OS << ", ";
5100 Helper.handledStmt(const_cast<Expr *>(ACC->getCallLikeExpr()), OS);
5101 OS << "+" << ACC->getIndex();
5102 return;
5103 }
Artem Dergachev1527dec2018-03-12 23:12:40 +00005104 }
Artem Dergachevff267df2018-06-28 00:04:54 +00005105 for (auto I: Stmts)
5106 if (I) {
5107 OS << ", ";
5108 Helper.handledStmt(const_cast<Stmt *>(I), OS);
5109 }
Artem Dergachev1527dec2018-03-12 23:12:40 +00005110}
5111
Aaron Ballmanff924b02013-11-18 20:11:50 +00005112static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper,
Mike Stump92244b02010-01-19 22:00:14 +00005113 const CFGElement &E) {
David Blaikie00be69a2013-02-23 00:29:34 +00005114 if (Optional<CFGStmt> CS = E.getAs<CFGStmt>()) {
5115 const Stmt *S = CS->getStmt();
Richard Trieuddd01ce2014-06-09 22:53:25 +00005116 assert(S != nullptr && "Expecting non-null Stmt");
5117
Aaron Ballmanff924b02013-11-18 20:11:50 +00005118 // special printing for statement-expressions.
5119 if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) {
5120 const CompoundStmt *Sub = SE->getSubStmt();
Mike Stump31feda52009-07-17 01:31:16 +00005121
Benjamin Kramer5733e352015-07-18 17:09:36 +00005122 auto Children = Sub->children();
5123 if (Children.begin() != Children.end()) {
Aaron Ballmanff924b02013-11-18 20:11:50 +00005124 OS << "({ ... ; ";
5125 Helper.handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
5126 OS << " })\n";
5127 return;
Ted Kremenekf8b50e92007-08-31 22:26:13 +00005128 }
5129 }
Aaron Ballmanff924b02013-11-18 20:11:50 +00005130 // special printing for comma expressions.
5131 if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
5132 if (B->getOpcode() == BO_Comma) {
5133 OS << "... , ";
5134 Helper.handledStmt(B->getRHS(),OS);
5135 OS << '\n';
5136 return;
5137 }
5138 }
5139 S->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts()));
Mike Stump31feda52009-07-17 01:31:16 +00005140
Artem Dergachev1527dec2018-03-12 23:12:40 +00005141 if (auto VTC = E.getAs<CFGCXXRecordTypedCall>()) {
5142 if (isa<CXXOperatorCallExpr>(S))
5143 OS << " (OperatorCall)";
5144 OS << " (CXXRecordTypedCall";
5145 print_construction_context(OS, Helper, VTC->getConstructionContext());
5146 OS << ")";
5147 } else if (isa<CXXOperatorCallExpr>(S)) {
Zhanyong Wan59f09c72010-11-22 19:32:14 +00005148 OS << " (OperatorCall)";
Artem Dergachev41ffb302018-02-08 22:58:15 +00005149 } else if (isa<CXXBindTemporaryExpr>(S)) {
Zhanyong Wan59f09c72010-11-22 19:32:14 +00005150 OS << " (BindTemporary)";
Artem Dergachev41ffb302018-02-08 22:58:15 +00005151 } else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) {
Artem Dergachev1527dec2018-03-12 23:12:40 +00005152 OS << " (CXXConstructExpr";
Artem Dergachev41ffb302018-02-08 22:58:15 +00005153 if (Optional<CFGConstructor> CE = E.getAs<CFGConstructor>()) {
Artem Dergachev1527dec2018-03-12 23:12:40 +00005154 print_construction_context(OS, Helper, CE->getConstructionContext());
Artem Dergachev41ffb302018-02-08 22:58:15 +00005155 }
Artem Dergachev1527dec2018-03-12 23:12:40 +00005156 OS << ", " << CCE->getType().getAsString() << ")";
Artem Dergachev41ffb302018-02-08 22:58:15 +00005157 } else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) {
Ted Kremenek0ffba932011-12-21 19:32:38 +00005158 OS << " (" << CE->getStmtClassName() << ", "
5159 << CE->getCastKindName()
5160 << ", " << CE->getType().getAsString()
5161 << ")";
5162 }
Mike Stump31feda52009-07-17 01:31:16 +00005163
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00005164 // Expressions need a newline.
5165 if (isa<Expr>(S))
5166 OS << '\n';
David Blaikie00be69a2013-02-23 00:29:34 +00005167 } else if (Optional<CFGInitializer> IE = E.getAs<CFGInitializer>()) {
Artem Dergachev5a281bb2018-02-10 02:18:04 +00005168 print_initializer(OS, Helper, IE->getInitializer());
5169 OS << '\n';
David Blaikie00be69a2013-02-23 00:29:34 +00005170 } else if (Optional<CFGAutomaticObjDtor> DE =
5171 E.getAs<CFGAutomaticObjDtor>()) {
5172 const VarDecl *VD = DE->getVarDecl();
Aaron Ballmanff924b02013-11-18 20:11:50 +00005173 Helper.handleDecl(VD, OS);
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00005174
Artem Dergacheva25809f2018-06-04 18:56:25 +00005175 ASTContext &ACtx = VD->getASTContext();
5176 QualType T = VD->getType();
5177 if (T->isReferenceType())
5178 T = getReferenceInitTemporaryType(VD->getInit(), nullptr);
5179 if (const ArrayType *AT = ACtx.getAsArrayType(T))
5180 T = ACtx.getBaseElementType(AT);
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00005181
5182 OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()";
5183 OS << " (Implicit destructor)\n";
Matthias Gehre351c2182017-07-12 07:04:19 +00005184 } else if (Optional<CFGLifetimeEnds> DE = E.getAs<CFGLifetimeEnds>()) {
5185 const VarDecl *VD = DE->getVarDecl();
5186 Helper.handleDecl(VD, OS);
5187
5188 OS << " (Lifetime ends)\n";
Peter Szecsi999a25f2017-08-19 11:19:16 +00005189 } else if (Optional<CFGLoopExit> LE = E.getAs<CFGLoopExit>()) {
5190 const Stmt *LoopStmt = LE->getLoopStmt();
5191 OS << LoopStmt->getStmtClassName() << " (LoopExit)\n";
Maxim Ostapenkodebca452018-03-12 12:26:15 +00005192 } else if (Optional<CFGScopeBegin> SB = E.getAs<CFGScopeBegin>()) {
5193 OS << "CFGScopeBegin(";
5194 if (const VarDecl *VD = SB->getVarDecl())
5195 OS << VD->getQualifiedNameAsString();
5196 OS << ")\n";
5197 } else if (Optional<CFGScopeEnd> SE = E.getAs<CFGScopeEnd>()) {
5198 OS << "CFGScopeEnd(";
5199 if (const VarDecl *VD = SE->getVarDecl())
5200 OS << VD->getQualifiedNameAsString();
5201 OS << ")\n";
Jordan Rosec9176072014-01-13 17:59:19 +00005202 } else if (Optional<CFGNewAllocator> NE = E.getAs<CFGNewAllocator>()) {
5203 OS << "CFGNewAllocator(";
5204 if (const CXXNewExpr *AllocExpr = NE->getAllocatorExpr())
5205 AllocExpr->getType().print(OS, PrintingPolicy(Helper.getLangOpts()));
5206 OS << ")\n";
Jordan Rosed2f40792013-09-03 17:00:57 +00005207 } else if (Optional<CFGDeleteDtor> DE = E.getAs<CFGDeleteDtor>()) {
5208 const CXXRecordDecl *RD = DE->getCXXRecordDecl();
5209 if (!RD)
5210 return;
5211 CXXDeleteExpr *DelExpr =
5212 const_cast<CXXDeleteExpr*>(DE->getDeleteExpr());
Aaron Ballmanff924b02013-11-18 20:11:50 +00005213 Helper.handledStmt(cast<Stmt>(DelExpr->getArgument()), OS);
Jordan Rosed2f40792013-09-03 17:00:57 +00005214 OS << "->~" << RD->getName().str() << "()";
5215 OS << " (Implicit destructor)\n";
David Blaikie00be69a2013-02-23 00:29:34 +00005216 } else if (Optional<CFGBaseDtor> BE = E.getAs<CFGBaseDtor>()) {
5217 const CXXBaseSpecifier *BS = BE->getBaseSpecifier();
Marcin Swiderski20b88732010-10-05 05:37:00 +00005218 OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()";
Zhongxing Xu614e17d2010-10-05 08:38:06 +00005219 OS << " (Base object destructor)\n";
David Blaikie00be69a2013-02-23 00:29:34 +00005220 } else if (Optional<CFGMemberDtor> ME = E.getAs<CFGMemberDtor>()) {
5221 const FieldDecl *FD = ME->getFieldDecl();
Richard Smithf676e452012-07-24 21:02:14 +00005222 const Type *T = FD->getType()->getBaseElementTypeUnsafe();
Marcin Swiderski20b88732010-10-05 05:37:00 +00005223 OS << "this->" << FD->getName();
Marcin Swiderski01769902010-10-25 07:05:54 +00005224 OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()";
Zhongxing Xu614e17d2010-10-05 08:38:06 +00005225 OS << " (Member object destructor)\n";
David Blaikie00be69a2013-02-23 00:29:34 +00005226 } else if (Optional<CFGTemporaryDtor> TE = E.getAs<CFGTemporaryDtor>()) {
5227 const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr();
Pavel Labathd527cf82013-09-02 09:09:15 +00005228 OS << "~";
Aaron Ballmanff924b02013-11-18 20:11:50 +00005229 BT->getType().print(OS, PrintingPolicy(Helper.getLangOpts()));
Pavel Labathd527cf82013-09-02 09:09:15 +00005230 OS << "() (Temporary object destructor)\n";
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00005231 }
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00005232}
Mike Stump31feda52009-07-17 01:31:16 +00005233
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005234static void print_block(raw_ostream &OS, const CFG* cfg,
5235 const CFGBlock &B,
Aaron Ballmanff924b02013-11-18 20:11:50 +00005236 StmtPrinterHelper &Helper, bool print_edges,
Ted Kremenek72be32a2011-12-22 23:33:52 +00005237 bool ShowColors) {
Aaron Ballmanff924b02013-11-18 20:11:50 +00005238 Helper.setBlockID(B.getBlockID());
Mike Stump31feda52009-07-17 01:31:16 +00005239
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005240 // Print the header.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005241 if (ShowColors)
5242 OS.changeColor(raw_ostream::YELLOW, true);
Fangrui Song6907ce22018-07-30 19:24:48 +00005243
Ted Kremenek72be32a2011-12-22 23:33:52 +00005244 OS << "\n [B" << B.getBlockID();
Mike Stump31feda52009-07-17 01:31:16 +00005245
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005246 if (&B == &cfg->getEntry())
Ted Kremenek72be32a2011-12-22 23:33:52 +00005247 OS << " (ENTRY)]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005248 else if (&B == &cfg->getExit())
Ted Kremenek72be32a2011-12-22 23:33:52 +00005249 OS << " (EXIT)]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005250 else if (&B == cfg->getIndirectGotoBlock())
Ted Kremenek72be32a2011-12-22 23:33:52 +00005251 OS << " (INDIRECT GOTO DISPATCH)]\n";
Jordan Rose398fb002014-04-01 16:39:33 +00005252 else if (B.hasNoReturnElement())
5253 OS << " (NORETURN)]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005254 else
Ted Kremenek72be32a2011-12-22 23:33:52 +00005255 OS << "]\n";
Fangrui Song6907ce22018-07-30 19:24:48 +00005256
Ted Kremenek72be32a2011-12-22 23:33:52 +00005257 if (ShowColors)
5258 OS.resetColor();
Mike Stump31feda52009-07-17 01:31:16 +00005259
Ted Kremenek71eca012007-08-29 23:20:49 +00005260 // Print the label of this block.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005261 if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005262 if (print_edges)
Ted Kremenek72be32a2011-12-22 23:33:52 +00005263 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00005264
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005265 if (LabelStmt *L = dyn_cast<LabelStmt>(Label))
Ted Kremenek71eca012007-08-29 23:20:49 +00005266 OS << L->getName();
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005267 else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) {
Ted Kremenek71eca012007-08-29 23:20:49 +00005268 OS << "case ";
Richard Trieuddd01ce2014-06-09 22:53:25 +00005269 if (C->getLHS())
5270 C->getLHS()->printPretty(OS, &Helper,
5271 PrintingPolicy(Helper.getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00005272 if (C->getRHS()) {
5273 OS << " ... ";
Aaron Ballmanff924b02013-11-18 20:11:50 +00005274 C->getRHS()->printPretty(OS, &Helper,
5275 PrintingPolicy(Helper.getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00005276 }
Mike Stump92244b02010-01-19 22:00:14 +00005277 } else if (isa<DefaultStmt>(Label))
Ted Kremenek71eca012007-08-29 23:20:49 +00005278 OS << "default";
Mike Stump92244b02010-01-19 22:00:14 +00005279 else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00005280 OS << "catch (";
Mike Stump0bdba6c2010-01-20 01:15:34 +00005281 if (CS->getExceptionDecl())
Aaron Ballmanff924b02013-11-18 20:11:50 +00005282 CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()),
Mike Stump0bdba6c2010-01-20 01:15:34 +00005283 0);
5284 else
5285 OS << "...";
Mike Stumpbbf5ba62010-01-19 02:20:09 +00005286 OS << ")";
Nico Weber699670e2017-08-23 15:33:16 +00005287 } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) {
5288 OS << "__except (";
5289 ES->getFilterExpr()->printPretty(OS, &Helper,
5290 PrintingPolicy(Helper.getLangOpts()), 0);
5291 OS << ")";
Mike Stumpbbf5ba62010-01-19 02:20:09 +00005292 } else
David Blaikie83d382b2011-09-23 05:06:16 +00005293 llvm_unreachable("Invalid label statement in CFGBlock.");
Mike Stump31feda52009-07-17 01:31:16 +00005294
Ted Kremenek71eca012007-08-29 23:20:49 +00005295 OS << ":\n";
5296 }
Mike Stump31feda52009-07-17 01:31:16 +00005297
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005298 // Iterate through the statements in the block and print them.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005299 unsigned j = 1;
Mike Stump31feda52009-07-17 01:31:16 +00005300
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005301 for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
5302 I != E ; ++I, ++j ) {
Ted Kremenek71eca012007-08-29 23:20:49 +00005303 // Print the statement # in the basic block and the statement itself.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005304 if (print_edges)
Ted Kremenek72be32a2011-12-22 23:33:52 +00005305 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00005306
Ted Kremenek2d470fc2008-09-13 05:16:45 +00005307 OS << llvm::format("%3d", j) << ": ";
Mike Stump31feda52009-07-17 01:31:16 +00005308
Aaron Ballmanff924b02013-11-18 20:11:50 +00005309 Helper.setStmtID(j);
Mike Stump31feda52009-07-17 01:31:16 +00005310
Ted Kremenek72be32a2011-12-22 23:33:52 +00005311 print_elem(OS, Helper, *I);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005312 }
Mike Stump31feda52009-07-17 01:31:16 +00005313
Ted Kremenek71eca012007-08-29 23:20:49 +00005314 // Print the terminator of this block.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005315 if (B.getTerminator()) {
Ted Kremenek72be32a2011-12-22 23:33:52 +00005316 if (ShowColors)
5317 OS.changeColor(raw_ostream::GREEN);
Mike Stump31feda52009-07-17 01:31:16 +00005318
Ted Kremenek72be32a2011-12-22 23:33:52 +00005319 OS << " T: ";
Mike Stump31feda52009-07-17 01:31:16 +00005320
Aaron Ballmanff924b02013-11-18 20:11:50 +00005321 Helper.setBlockID(-1);
Mike Stump31feda52009-07-17 01:31:16 +00005322
Aaron Ballmanff924b02013-11-18 20:11:50 +00005323 PrintingPolicy PP(Helper.getLangOpts());
5324 CFGBlockTerminatorPrint TPrinter(OS, &Helper, PP);
Ted Kremenekfcc14172014-03-08 02:22:29 +00005325 TPrinter.print(B.getTerminator());
Ted Kremenek15647632008-01-30 23:02:42 +00005326 OS << '\n';
Fangrui Song6907ce22018-07-30 19:24:48 +00005327
Ted Kremenek72be32a2011-12-22 23:33:52 +00005328 if (ShowColors)
5329 OS.resetColor();
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005330 }
Mike Stump31feda52009-07-17 01:31:16 +00005331
Ted Kremenek71eca012007-08-29 23:20:49 +00005332 if (print_edges) {
5333 // Print the predecessors of this block.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005334 if (!B.pred_empty()) {
5335 const raw_ostream::Colors Color = raw_ostream::BLUE;
5336 if (ShowColors)
5337 OS.changeColor(Color);
5338 OS << " Preds " ;
5339 if (ShowColors)
5340 OS.resetColor();
5341 OS << '(' << B.pred_size() << "):";
5342 unsigned i = 0;
Ted Kremenek71eca012007-08-29 23:20:49 +00005343
Ted Kremenek72be32a2011-12-22 23:33:52 +00005344 if (ShowColors)
5345 OS.changeColor(Color);
Fangrui Song6907ce22018-07-30 19:24:48 +00005346
Ted Kremenek72be32a2011-12-22 23:33:52 +00005347 for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
5348 I != E; ++I, ++i) {
Will Dietzdf9a2bb2013-01-07 09:51:17 +00005349 if (i % 10 == 8)
Ted Kremenek72be32a2011-12-22 23:33:52 +00005350 OS << "\n ";
Mike Stump31feda52009-07-17 01:31:16 +00005351
Ted Kremenek4b6fee62014-02-27 00:24:00 +00005352 CFGBlock *B = *I;
5353 bool Reachable = true;
5354 if (!B) {
5355 Reachable = false;
5356 B = I->getPossiblyUnreachableBlock();
5357 }
5358
5359 OS << " B" << B->getBlockID();
5360 if (!Reachable)
5361 OS << "(Unreachable)";
Ted Kremenek72be32a2011-12-22 23:33:52 +00005362 }
Fangrui Song6907ce22018-07-30 19:24:48 +00005363
Ted Kremenek72be32a2011-12-22 23:33:52 +00005364 if (ShowColors)
5365 OS.resetColor();
5366
5367 OS << '\n';
Ted Kremenek71eca012007-08-29 23:20:49 +00005368 }
Mike Stump31feda52009-07-17 01:31:16 +00005369
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005370 // Print the successors of this block.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005371 if (!B.succ_empty()) {
5372 const raw_ostream::Colors Color = raw_ostream::MAGENTA;
5373 if (ShowColors)
5374 OS.changeColor(Color);
5375 OS << " Succs ";
5376 if (ShowColors)
5377 OS.resetColor();
5378 OS << '(' << B.succ_size() << "):";
5379 unsigned i = 0;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005380
Ted Kremenek72be32a2011-12-22 23:33:52 +00005381 if (ShowColors)
5382 OS.changeColor(Color);
Mike Stump31feda52009-07-17 01:31:16 +00005383
Ted Kremenek72be32a2011-12-22 23:33:52 +00005384 for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
5385 I != E; ++I, ++i) {
Will Dietzdf9a2bb2013-01-07 09:51:17 +00005386 if (i % 10 == 8)
Ted Kremenek72be32a2011-12-22 23:33:52 +00005387 OS << "\n ";
5388
Ted Kremenek9238c5c2014-02-27 21:56:44 +00005389 CFGBlock *B = *I;
5390
5391 bool Reachable = true;
5392 if (!B) {
5393 Reachable = false;
5394 B = I->getPossiblyUnreachableBlock();
5395 }
5396
5397 if (B) {
5398 OS << " B" << B->getBlockID();
5399 if (!Reachable)
5400 OS << "(Unreachable)";
5401 }
5402 else {
5403 OS << " NULL";
5404 }
Ted Kremenek72be32a2011-12-22 23:33:52 +00005405 }
Ted Kremenek9238c5c2014-02-27 21:56:44 +00005406
Ted Kremenek72be32a2011-12-22 23:33:52 +00005407 if (ShowColors)
5408 OS.resetColor();
5409 OS << '\n';
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005410 }
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005411 }
Mike Stump31feda52009-07-17 01:31:16 +00005412}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005413
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005414/// dump - A simple pretty printer of a CFG that outputs to stderr.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005415void CFG::dump(const LangOptions &LO, bool ShowColors) const {
5416 print(llvm::errs(), LO, ShowColors);
5417}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005418
5419/// print - A simple pretty printer of a CFG that outputs to an ostream.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005420void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const {
Chris Lattnerc61089a2009-06-30 01:26:17 +00005421 StmtPrinterHelper Helper(this, LO);
Mike Stump31feda52009-07-17 01:31:16 +00005422
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005423 // Print the entry block.
Aaron Ballmanff924b02013-11-18 20:11:50 +00005424 print_block(OS, this, getEntry(), Helper, true, ShowColors);
Mike Stump31feda52009-07-17 01:31:16 +00005425
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005426 // Iterate through the CFGBlocks and print them one by one.
5427 for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
5428 // Skip the entry block, because we already printed it.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00005429 if (&(**I) == &getEntry() || &(**I) == &getExit())
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005430 continue;
Mike Stump31feda52009-07-17 01:31:16 +00005431
Aaron Ballmanff924b02013-11-18 20:11:50 +00005432 print_block(OS, this, **I, Helper, true, ShowColors);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005433 }
Mike Stump31feda52009-07-17 01:31:16 +00005434
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005435 // Print the exit block.
Aaron Ballmanff924b02013-11-18 20:11:50 +00005436 print_block(OS, this, getExit(), Helper, true, ShowColors);
Ted Kremenek72be32a2011-12-22 23:33:52 +00005437 OS << '\n';
Ted Kremeneke03879b2008-11-24 20:50:24 +00005438 OS.flush();
Mike Stump31feda52009-07-17 01:31:16 +00005439}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005440
5441/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005442void CFGBlock::dump(const CFG* cfg, const LangOptions &LO,
5443 bool ShowColors) const {
5444 print(llvm::errs(), cfg, LO, ShowColors);
Chris Lattnerc61089a2009-06-30 01:26:17 +00005445}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005446
Yaron Kerencdae9412016-01-29 19:38:18 +00005447LLVM_DUMP_METHOD void CFGBlock::dump() const {
Anna Zaksa6fea132014-06-13 23:47:38 +00005448 dump(getParent(), LangOptions(), false);
5449}
5450
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005451/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
5452/// Generally this will only be called from CFG::print.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005453void CFGBlock::print(raw_ostream &OS, const CFG* cfg,
Ted Kremenek72be32a2011-12-22 23:33:52 +00005454 const LangOptions &LO, bool ShowColors) const {
Chris Lattnerc61089a2009-06-30 01:26:17 +00005455 StmtPrinterHelper Helper(cfg, LO);
Aaron Ballmanff924b02013-11-18 20:11:50 +00005456 print_block(OS, cfg, *this, Helper, true, ShowColors);
Ted Kremenek72be32a2011-12-22 23:33:52 +00005457 OS << '\n';
Ted Kremenek889073f2007-08-23 16:51:22 +00005458}
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005459
Ted Kremenek15647632008-01-30 23:02:42 +00005460/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005461void CFGBlock::printTerminator(raw_ostream &OS,
Mike Stump31feda52009-07-17 01:31:16 +00005462 const LangOptions &LO) const {
Craig Topper25542942014-05-20 04:30:07 +00005463 CFGBlockTerminatorPrint TPrinter(OS, nullptr, PrintingPolicy(LO));
Ted Kremenekfcc14172014-03-08 02:22:29 +00005464 TPrinter.print(getTerminator());
Ted Kremenek15647632008-01-30 23:02:42 +00005465}
5466
Ted Kremenekec3bbf42014-03-29 00:35:20 +00005467Stmt *CFGBlock::getTerminatorCondition(bool StripParens) {
Marcin Swiderskia7d84a72010-10-29 05:21:47 +00005468 Stmt *Terminator = this->Terminator;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005469 if (!Terminator)
Craig Topper25542942014-05-20 04:30:07 +00005470 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00005471
Craig Topper25542942014-05-20 04:30:07 +00005472 Expr *E = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00005473
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005474 switch (Terminator->getStmtClass()) {
5475 default:
5476 break;
Mike Stump31feda52009-07-17 01:31:16 +00005477
Jordan Rosecf10ea82013-06-06 21:53:45 +00005478 case Stmt::CXXForRangeStmtClass:
5479 E = cast<CXXForRangeStmt>(Terminator)->getCond();
5480 break;
5481
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005482 case Stmt::ForStmtClass:
5483 E = cast<ForStmt>(Terminator)->getCond();
5484 break;
Mike Stump31feda52009-07-17 01:31:16 +00005485
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005486 case Stmt::WhileStmtClass:
5487 E = cast<WhileStmt>(Terminator)->getCond();
5488 break;
Mike Stump31feda52009-07-17 01:31:16 +00005489
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005490 case Stmt::DoStmtClass:
5491 E = cast<DoStmt>(Terminator)->getCond();
5492 break;
Mike Stump31feda52009-07-17 01:31:16 +00005493
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005494 case Stmt::IfStmtClass:
5495 E = cast<IfStmt>(Terminator)->getCond();
5496 break;
Mike Stump31feda52009-07-17 01:31:16 +00005497
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005498 case Stmt::ChooseExprClass:
5499 E = cast<ChooseExpr>(Terminator)->getCond();
5500 break;
Mike Stump31feda52009-07-17 01:31:16 +00005501
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005502 case Stmt::IndirectGotoStmtClass:
5503 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
5504 break;
Mike Stump31feda52009-07-17 01:31:16 +00005505
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005506 case Stmt::SwitchStmtClass:
5507 E = cast<SwitchStmt>(Terminator)->getCond();
5508 break;
Mike Stump31feda52009-07-17 01:31:16 +00005509
John McCallc07a0c72011-02-17 10:25:35 +00005510 case Stmt::BinaryConditionalOperatorClass:
5511 E = cast<BinaryConditionalOperator>(Terminator)->getCond();
5512 break;
5513
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005514 case Stmt::ConditionalOperatorClass:
5515 E = cast<ConditionalOperator>(Terminator)->getCond();
5516 break;
Mike Stump31feda52009-07-17 01:31:16 +00005517
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005518 case Stmt::BinaryOperatorClass: // '&&' and '||'
5519 E = cast<BinaryOperator>(Terminator)->getLHS();
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00005520 break;
Mike Stump31feda52009-07-17 01:31:16 +00005521
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00005522 case Stmt::ObjCForCollectionStmtClass:
Mike Stump31feda52009-07-17 01:31:16 +00005523 return Terminator;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005524 }
Mike Stump31feda52009-07-17 01:31:16 +00005525
Ted Kremenekec3bbf42014-03-29 00:35:20 +00005526 if (!StripParens)
5527 return E;
5528
Craig Topper25542942014-05-20 04:30:07 +00005529 return E ? E->IgnoreParens() : nullptr;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005530}
5531
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005532//===----------------------------------------------------------------------===//
5533// CFG Graphviz Visualization
5534//===----------------------------------------------------------------------===//
5535
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005536#ifndef NDEBUG
Mike Stump31feda52009-07-17 01:31:16 +00005537static StmtPrinterHelper* GraphHelper;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005538#endif
5539
Chris Lattnerc61089a2009-06-30 01:26:17 +00005540void CFG::viewCFG(const LangOptions &LO) const {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005541#ifndef NDEBUG
Chris Lattnerc61089a2009-06-30 01:26:17 +00005542 StmtPrinterHelper H(this, LO);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005543 GraphHelper = &H;
5544 llvm::ViewGraph(this,"CFG");
Craig Topper25542942014-05-20 04:30:07 +00005545 GraphHelper = nullptr;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005546#endif
5547}
5548
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005549namespace llvm {
Eugene Zelenko38c70522017-12-07 21:55:09 +00005550
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005551template<>
5552struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
Eugene Zelenko38c70522017-12-07 21:55:09 +00005553 DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {}
Tobias Grosser9fc223a2009-11-30 14:16:05 +00005554
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005555 static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) {
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00005556#ifndef NDEBUG
Ted Kremenek2d470fc2008-09-13 05:16:45 +00005557 std::string OutSStr;
5558 llvm::raw_string_ostream Out(OutSStr);
Aaron Ballmanff924b02013-11-18 20:11:50 +00005559 print_block(Out,Graph, *Node, *GraphHelper, false, false);
Ted Kremenek2d470fc2008-09-13 05:16:45 +00005560 std::string& OutStr = Out.str();
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005561
5562 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
5563
5564 // Process string output to make it nicer...
5565 for (unsigned i = 0; i != OutStr.length(); ++i)
5566 if (OutStr[i] == '\n') { // Left justify
5567 OutStr[i] = '\\';
5568 OutStr.insert(OutStr.begin()+i+1, 'l');
5569 }
Mike Stump31feda52009-07-17 01:31:16 +00005570
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005571 return OutStr;
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00005572#else
Eugene Zelenko38c70522017-12-07 21:55:09 +00005573 return {};
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00005574#endif
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005575 }
5576};
Eugene Zelenko38c70522017-12-07 21:55:09 +00005577
5578} // namespace llvm