blob: 1cf7063117285865da3d38fae88fab30df316389 [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"
Jordan Rose5374c072013-08-19 16:27:28 +000032#include "clang/Basic/Builtins.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000033#include "clang/Basic/ExceptionSpecificationType.h"
34#include "clang/Basic/LLVM.h"
35#include "clang/Basic/LangOptions.h"
36#include "clang/Basic/SourceLocation.h"
37#include "clang/Basic/Specifiers.h"
38#include "llvm/ADT/APInt.h"
39#include "llvm/ADT/APSInt.h"
40#include "llvm/ADT/ArrayRef.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000041#include "llvm/ADT/DenseMap.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000042#include "llvm/ADT/Optional.h"
43#include "llvm/ADT/STLExtras.h"
44#include "llvm/ADT/SetVector.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000045#include "llvm/ADT/SmallPtrSet.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000046#include "llvm/ADT/SmallVector.h"
Benjamin Kramer89b422c2009-08-23 12:08:50 +000047#include "llvm/Support/Allocator.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000048#include "llvm/Support/Casting.h"
49#include "llvm/Support/Compiler.h"
50#include "llvm/Support/DOTGraphTraits.h"
51#include "llvm/Support/ErrorHandling.h"
Benjamin Kramer89b422c2009-08-23 12:08:50 +000052#include "llvm/Support/Format.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000053#include "llvm/Support/GraphWriter.h"
54#include "llvm/Support/SaveAndRestore.h"
Eugene Zelenko38c70522017-12-07 21:55:09 +000055#include "llvm/Support/raw_ostream.h"
56#include <cassert>
57#include <memory>
58#include <string>
59#include <tuple>
60#include <utility>
61#include <vector>
Ted Kremeneke5ccf9a2008-01-11 00:40:29 +000062
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000063using namespace clang;
64
Ted Kremenek5ef32db2011-08-12 23:37:29 +000065static SourceLocation GetEndLoc(Decl *D) {
66 if (VarDecl *VD = dyn_cast<VarDecl>(D))
67 if (Expr *Ex = VD->getInit())
Ted Kremenek8889bb32008-08-06 23:20:50 +000068 return Ex->getSourceRange().getEnd();
Mike Stump31feda52009-07-17 01:31:16 +000069 return D->getLocation();
Ted Kremenek8889bb32008-08-06 23:20:50 +000070}
Ted Kremenekdc03bd02010-08-02 23:46:59 +000071
George Burgess IVced56e62015-10-01 18:47:52 +000072/// Helper for tryNormalizeBinaryOperator. Attempts to extract an IntegerLiteral
73/// or EnumConstantDecl from the given Expr. If it fails, returns nullptr.
Eugene Zelenko38c70522017-12-07 21:55:09 +000074static const Expr *tryTransformToIntOrEnumConstant(const Expr *E) {
George Burgess IVced56e62015-10-01 18:47:52 +000075 E = E->IgnoreParens();
76 if (isa<IntegerLiteral>(E))
77 return E;
78 if (auto *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
79 return isa<EnumConstantDecl>(DR->getDecl()) ? DR : nullptr;
80 return nullptr;
81}
82
83/// Tries to interpret a binary operator into `Decl Op Expr` form, if Expr is
84/// an integer literal or an enum constant.
85///
86/// If this fails, at least one of the returned DeclRefExpr or Expr will be
87/// null.
88static std::tuple<const DeclRefExpr *, BinaryOperatorKind, const Expr *>
89tryNormalizeBinaryOperator(const BinaryOperator *B) {
90 BinaryOperatorKind Op = B->getOpcode();
91
92 const Expr *MaybeDecl = B->getLHS();
93 const Expr *Constant = tryTransformToIntOrEnumConstant(B->getRHS());
94 // Expr looked like `0 == Foo` instead of `Foo == 0`
95 if (Constant == nullptr) {
96 // Flip the operator
97 if (Op == BO_GT)
98 Op = BO_LT;
99 else if (Op == BO_GE)
100 Op = BO_LE;
101 else if (Op == BO_LT)
102 Op = BO_GT;
103 else if (Op == BO_LE)
104 Op = BO_GE;
105
106 MaybeDecl = B->getRHS();
107 Constant = tryTransformToIntOrEnumConstant(B->getLHS());
108 }
109
110 auto *D = dyn_cast<DeclRefExpr>(MaybeDecl->IgnoreParenImpCasts());
111 return std::make_tuple(D, Op, Constant);
112}
113
114/// For an expression `x == Foo && x == Bar`, this determines whether the
115/// `Foo` and `Bar` are either of the same enumeration type, or both integer
116/// literals.
117///
118/// It's an error to pass this arguments that are not either IntegerLiterals
119/// or DeclRefExprs (that have decls of type EnumConstantDecl)
120static bool areExprTypesCompatible(const Expr *E1, const Expr *E2) {
121 // User intent isn't clear if they're mixing int literals with enum
122 // constants.
123 if (isa<IntegerLiteral>(E1) != isa<IntegerLiteral>(E2))
124 return false;
125
126 // Integer literal comparisons, regardless of literal type, are acceptable.
127 if (isa<IntegerLiteral>(E1))
128 return true;
129
130 // IntegerLiterals are handled above and only EnumConstantDecls are expected
131 // beyond this point
132 assert(isa<DeclRefExpr>(E1) && isa<DeclRefExpr>(E2));
133 auto *Decl1 = cast<DeclRefExpr>(E1)->getDecl();
134 auto *Decl2 = cast<DeclRefExpr>(E2)->getDecl();
135
136 assert(isa<EnumConstantDecl>(Decl1) && isa<EnumConstantDecl>(Decl2));
137 const DeclContext *DC1 = Decl1->getDeclContext();
138 const DeclContext *DC2 = Decl2->getDeclContext();
139
140 assert(isa<EnumDecl>(DC1) && isa<EnumDecl>(DC2));
141 return DC1 == DC2;
142}
143
Eugene Zelenko38c70522017-12-07 21:55:09 +0000144namespace {
145
Ted Kremenek7c58d352011-03-10 01:14:11 +0000146class CFGBuilder;
147
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000148/// The CFG builder uses a recursive algorithm to build the CFG. When
149/// we process an expression, sometimes we know that we must add the
150/// subexpressions as block-level expressions. For example:
151///
152/// exp1 || exp2
153///
154/// When processing the '||' expression, we know that exp1 and exp2
155/// need to be added as block-level expressions, even though they
156/// might not normally need to be. AddStmtChoice records this
157/// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then
158/// the builder has an option not to add a subexpression as a
159/// block-level expression.
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000160class AddStmtChoice {
161public:
Ted Kremenek8219b822010-12-16 07:46:53 +0000162 enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 };
Ted Kremenek5d2bb1b2010-03-02 21:43:54 +0000163
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000164 AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {}
Ted Kremenek5d2bb1b2010-03-02 21:43:54 +0000165
Ted Kremenek7c58d352011-03-10 01:14:11 +0000166 bool alwaysAdd(CFGBuilder &builder,
167 const Stmt *stmt) const;
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000168
169 /// Return a copy of this object, except with the 'always-add' bit
170 /// set as specified.
171 AddStmtChoice withAlwaysAdd(bool alwaysAdd) const {
Ted Kremenek7c58d352011-03-10 01:14:11 +0000172 return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd);
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000173 }
174
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000175private:
Zhanyong Wanb5d11c12010-11-24 03:28:53 +0000176 Kind kind;
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000177};
Mike Stump31feda52009-07-17 01:31:16 +0000178
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000179/// LocalScope - Node in tree of local scopes created for C++ implicit
180/// destructor calls generation. It contains list of automatic variables
181/// declared in the scope and link to position in previous scope this scope
182/// began in.
183///
184/// The process of creating local scopes is as follows:
185/// - Init CFGBuilder::ScopePos with invalid position (equivalent for null),
186/// - Before processing statements in scope (e.g. CompoundStmt) create
187/// LocalScope object using CFGBuilder::ScopePos as link to previous scope
188/// and set CFGBuilder::ScopePos to the end of new scope,
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000189/// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000190/// at this VarDecl,
191/// - For every normal (without jump) end of scope add to CFGBlock destructors
192/// for objects in the current scope,
193/// - For every jump add to CFGBlock destructors for objects
194/// between CFGBuilder::ScopePos and local scope position saved for jump
195/// target. Thanks to C++ restrictions on goto jumps we can be sure that
196/// jump target position will be on the path to root from CFGBuilder::ScopePos
197/// (adding any variable that doesn't need constructor to be called to
198/// LocalScope can break this assumption),
199///
200class LocalScope {
201public:
Eugene Zelenko38c70522017-12-07 21:55:09 +0000202 friend class const_iterator;
203
204 using AutomaticVarsTy = BumpVector<VarDecl *>;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000205
206 /// const_iterator - Iterates local scope backwards and jumps to previous
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000207 /// scope on reaching the beginning of currently iterated scope.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000208 class const_iterator {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000209 const LocalScope* Scope = nullptr;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000210
211 /// VarIter is guaranteed to be greater then 0 for every valid iterator.
212 /// Invalid iterator (with null Scope) has VarIter equal to 0.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000213 unsigned VarIter = 0;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000214
215 public:
216 /// Create invalid iterator. Dereferencing invalid iterator is not allowed.
217 /// Incrementing invalid iterator is allowed and will result in invalid
218 /// iterator.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000219 const_iterator() = default;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000220
221 /// Create valid iterator. In case when S.Prev is an invalid iterator and
222 /// I is equal to 0, this will create invalid iterator.
223 const_iterator(const LocalScope& S, unsigned I)
224 : Scope(&S), VarIter(I) {
225 // Iterator to "end" of scope is not allowed. Handle it by going up
226 // in scopes tree possibly up to invalid iterator in the root.
227 if (VarIter == 0 && Scope)
228 *this = Scope->Prev;
229 }
230
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000231 VarDecl *const* operator->() const {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000232 assert(Scope && "Dereferencing invalid iterator is not allowed");
233 assert(VarIter != 0 && "Iterator has invalid value of VarIter member");
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000234 return &Scope->Vars[VarIter - 1];
235 }
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000236 VarDecl *operator*() const {
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000237 return *this->operator->();
238 }
239
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000240 const_iterator &operator++() {
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000241 if (!Scope)
242 return *this;
243
Eugene Zelenko38c70522017-12-07 21:55:09 +0000244 assert(VarIter != 0 && "Iterator has invalid value of VarIter member");
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000245 --VarIter;
246 if (VarIter == 0)
247 *this = Scope->Prev;
248 return *this;
249 }
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000250 const_iterator operator++(int) {
251 const_iterator P = *this;
252 ++*this;
253 return P;
254 }
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000255
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000256 bool operator==(const const_iterator &rhs) const {
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000257 return Scope == rhs.Scope && VarIter == rhs.VarIter;
258 }
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000259 bool operator!=(const const_iterator &rhs) const {
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000260 return !(*this == rhs);
261 }
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000262
Aaron Ballman67347662015-02-15 22:00:28 +0000263 explicit operator bool() const {
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000264 return *this != const_iterator();
265 }
266
267 int distance(const_iterator L);
Matthias Gehre351c2182017-07-12 07:04:19 +0000268 const_iterator shared_parent(const_iterator L);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000269 };
270
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000271private:
Ted Kremenekc7bfdcd2011-02-15 02:47:45 +0000272 BumpVectorContext ctx;
273
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000274 /// Automatic variables in order of declaration.
275 AutomaticVarsTy Vars;
Eugene Zelenko38c70522017-12-07 21:55:09 +0000276
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000277 /// Iterator to variable in previous scope that was declared just before
278 /// begin of this scope.
279 const_iterator Prev;
280
281public:
282 /// Constructs empty scope linked to previous scope in specified place.
David Blaikiec1334cc2015-08-13 22:12:21 +0000283 LocalScope(BumpVectorContext ctx, const_iterator P)
284 : ctx(std::move(ctx)), Vars(this->ctx, 4), Prev(P) {}
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000285
286 /// Begin of scope in direction of CFG building (backwards).
287 const_iterator begin() const { return const_iterator(*this, Vars.size()); }
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000288
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000289 void addVar(VarDecl *VD) {
Ted Kremenekc7bfdcd2011-02-15 02:47:45 +0000290 Vars.push_back(VD, ctx);
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000291 }
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000292};
293
Eugene Zelenko38c70522017-12-07 21:55:09 +0000294} // namespace
295
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000296/// distance - Calculates distance from this to L. L must be reachable from this
297/// (with use of ++ operator). Cost of calculating the distance is linear w.r.t.
298/// number of scopes between this and L.
299int LocalScope::const_iterator::distance(LocalScope::const_iterator L) {
300 int D = 0;
301 const_iterator F = *this;
302 while (F.Scope != L.Scope) {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000303 assert(F != const_iterator() &&
304 "L iterator is not reachable from F iterator.");
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000305 D += F.VarIter;
306 F = F.Scope->Prev;
307 }
308 D += F.VarIter - L.VarIter;
309 return D;
310}
311
Matthias Gehre351c2182017-07-12 07:04:19 +0000312/// Calculates the closest parent of this iterator
313/// that is in a scope reachable through the parents of L.
314/// I.e. when using 'goto' from this to L, the lifetime of all variables
315/// between this and shared_parent(L) end.
316LocalScope::const_iterator
317LocalScope::const_iterator::shared_parent(LocalScope::const_iterator L) {
318 llvm::SmallPtrSet<const LocalScope *, 4> ScopesOfL;
319 while (true) {
320 ScopesOfL.insert(L.Scope);
321 if (L == const_iterator())
322 break;
323 L = L.Scope->Prev;
324 }
325
326 const_iterator F = *this;
327 while (true) {
328 if (ScopesOfL.count(F.Scope))
329 return F;
330 assert(F != const_iterator() &&
331 "L iterator is not reachable from F iterator.");
332 F = F.Scope->Prev;
333 }
334}
335
Eugene Zelenko38c70522017-12-07 21:55:09 +0000336namespace {
337
Jonathan Roelofs99bdd982015-05-19 18:51:56 +0000338/// Structure for specifying position in CFG during its build process. It
339/// consists of CFGBlock that specifies position in CFG and
340/// LocalScope::const_iterator that specifies position in LocalScope graph.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000341struct BlockScopePosPair {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000342 CFGBlock *block = nullptr;
343 LocalScope::const_iterator scopePosition;
344
345 BlockScopePosPair() = default;
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000346 BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos)
Ted Kremenekef81e9e2011-01-07 19:37:16 +0000347 : block(b), scopePosition(scopePos) {}
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000348};
349
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000350/// TryResult - a class representing a variant over the values
351/// 'true', 'false', or 'unknown'. This is returned by tryEvaluateBool,
352/// and is used by the CFGBuilder to decide if a branch condition
353/// can be decided up front during CFG construction.
354class TryResult {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000355 int X = -1;
356
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000357public:
Eugene Zelenko38c70522017-12-07 21:55:09 +0000358 TryResult() = default;
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000359 TryResult(bool b) : X(b ? 1 : 0) {}
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000360
361 bool isTrue() const { return X == 1; }
362 bool isFalse() const { return X == 0; }
363 bool isKnown() const { return X >= 0; }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000364
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000365 void negate() {
366 assert(isKnown());
367 X ^= 0x1;
368 }
369};
370
Eugene Zelenko38c70522017-12-07 21:55:09 +0000371} // namespace
372
373static TryResult bothKnownTrue(TryResult R1, TryResult R2) {
Manuel Klimekdeb02622014-08-08 07:37:13 +0000374 if (!R1.isKnown() || !R2.isKnown())
375 return TryResult();
376 return TryResult(R1.isTrue() && R2.isTrue());
377}
378
Eugene Zelenko38c70522017-12-07 21:55:09 +0000379namespace {
380
Ted Kremenek8ae67872013-02-05 22:00:19 +0000381class reverse_children {
382 llvm::SmallVector<Stmt *, 12> childrenBuf;
Eugene Zelenko38c70522017-12-07 21:55:09 +0000383 ArrayRef<Stmt *> children;
384
Ted Kremenek8ae67872013-02-05 22:00:19 +0000385public:
386 reverse_children(Stmt *S);
387
Eugene Zelenko38c70522017-12-07 21:55:09 +0000388 using iterator = ArrayRef<Stmt *>::reverse_iterator;
389
Ted Kremenek8ae67872013-02-05 22:00:19 +0000390 iterator begin() const { return children.rbegin(); }
391 iterator end() const { return children.rend(); }
392};
393
Eugene Zelenko38c70522017-12-07 21:55:09 +0000394} // namespace
Ted Kremenek8ae67872013-02-05 22:00:19 +0000395
396reverse_children::reverse_children(Stmt *S) {
397 if (CallExpr *CE = dyn_cast<CallExpr>(S)) {
398 children = CE->getRawSubExprs();
399 return;
400 }
401 switch (S->getStmtClass()) {
Ted Kremenek7d86b9c2013-02-05 22:03:14 +0000402 // Note: Fill in this switch with more cases we want to optimize.
Ted Kremenek8ae67872013-02-05 22:00:19 +0000403 case Stmt::InitListExprClass: {
404 InitListExpr *IE = cast<InitListExpr>(S);
405 children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()),
406 IE->getNumInits());
407 return;
408 }
409 default:
410 break;
411 }
412
413 // Default case for all other statements.
Benjamin Kramer642f1732015-07-02 21:03:14 +0000414 for (Stmt *SubStmt : S->children())
415 childrenBuf.push_back(SubStmt);
Ted Kremenek8ae67872013-02-05 22:00:19 +0000416
417 // This needs to be done *after* childrenBuf has been populated.
418 children = childrenBuf;
419}
420
Eugene Zelenko38c70522017-12-07 21:55:09 +0000421namespace {
422
Ted Kremenekbe9b33b2008-08-04 22:51:42 +0000423/// CFGBuilder - This class implements CFG construction from an AST.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +0000424/// The builder is stateful: an instance of the builder should be used to only
425/// construct a single CFG.
426///
427/// Example usage:
428///
429/// CFGBuilder builder;
Jonathan Roelofsab046c52015-07-27 16:05:36 +0000430/// std::unique_ptr<CFG> cfg = builder.buildCFG(decl, stmt1);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +0000431///
Mike Stump31feda52009-07-17 01:31:16 +0000432/// CFG construction is done via a recursive walk of an AST. We actually parse
433/// the AST in reverse order so that the successor of a basic block is
434/// constructed prior to its predecessor. This allows us to nicely capture
435/// implicit fall-throughs without extra basic blocks.
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +0000436class CFGBuilder {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000437 using JumpTarget = BlockScopePosPair;
438 using JumpSource = BlockScopePosPair;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000439
Mike Stump0d76d072009-07-20 23:24:15 +0000440 ASTContext *Context;
Ahmed Charlesb8984322014-03-07 20:03:18 +0000441 std::unique_ptr<CFG> cfg;
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000442
Eugene Zelenko38c70522017-12-07 21:55:09 +0000443 // Current block.
444 CFGBlock *Block = nullptr;
445
446 // Block after the current block.
447 CFGBlock *Succ = nullptr;
448
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000449 JumpTarget ContinueJumpTarget;
450 JumpTarget BreakJumpTarget;
Nico Weber699670e2017-08-23 15:33:16 +0000451 JumpTarget SEHLeaveJumpTarget;
Eugene Zelenko38c70522017-12-07 21:55:09 +0000452 CFGBlock *SwitchTerminatedBlock = nullptr;
453 CFGBlock *DefaultCaseBlock = nullptr;
Nico Weber699670e2017-08-23 15:33:16 +0000454
455 // This can point either to a try or a __try block. The frontend forbids
456 // mixing both kinds in one function, so having one for both is enough.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000457 CFGBlock *TryTerminatedBlock = nullptr;
Manuel Klimekb5616c92014-08-07 10:42:17 +0000458
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000459 // Current position in local scope.
460 LocalScope::const_iterator ScopePos;
461
462 // LabelMap records the mapping from Label expressions to their jump targets.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000463 using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>;
Ted Kremenek8a632182007-08-21 23:26:17 +0000464 LabelMapTy LabelMap;
Mike Stump31feda52009-07-17 01:31:16 +0000465
466 // A list of blocks that end with a "goto" that must be backpatched to their
467 // resolved targets upon completion of CFG construction.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000468 using BackpatchBlocksTy = std::vector<JumpSource>;
Ted Kremenek8a632182007-08-21 23:26:17 +0000469 BackpatchBlocksTy BackpatchBlocks;
Mike Stump31feda52009-07-17 01:31:16 +0000470
Ted Kremenekeda180e22007-08-28 19:26:49 +0000471 // A list of labels whose address has been taken (for indirect gotos).
Eugene Zelenko38c70522017-12-07 21:55:09 +0000472 using LabelSetTy = llvm::SmallSetVector<LabelDecl *, 8>;
Ted Kremenekeda180e22007-08-28 19:26:49 +0000473 LabelSetTy AddressTakenLabels;
Mike Stump31feda52009-07-17 01:31:16 +0000474
Artem Dergachev41ffb302018-02-08 22:58:15 +0000475 // Information about the currently visited C++ object construction site.
476 // This is set in the construction trigger and read when the constructor
477 // itself is being visited.
Artem Dergachev783a4572018-02-23 22:20:39 +0000478 llvm::DenseMap<CXXConstructExpr *, const ConstructionContext *>
Artem Dergachev5e2f6ba2018-02-23 22:49:25 +0000479 ConstructionContextMap;
Artem Dergachev41ffb302018-02-08 22:58:15 +0000480
Eugene Zelenko38c70522017-12-07 21:55:09 +0000481 bool badCFG = false;
Ted Kremenekf9d82902011-03-10 01:14:05 +0000482 const CFG::BuildOptions &BuildOpts;
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000483
484 // State to track for building switch statements.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000485 bool switchExclusivelyCovered = false;
486 Expr::EvalResult *switchCond = nullptr;
Ted Kremeneka099c592011-03-10 03:50:34 +0000487
Eugene Zelenko38c70522017-12-07 21:55:09 +0000488 CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry = nullptr;
489 const Stmt *lastLookup = nullptr;
Zhongxing Xud38fb842010-09-16 03:28:18 +0000490
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +0000491 // Caches boolean evaluations of expressions to avoid multiple re-evaluations
492 // during construction of branches for chained logical operators.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000493 using CachedBoolEvalsTy = llvm::DenseMap<Expr *, TryResult>;
NAKAMURA Takumie9ca55e2012-03-25 06:30:37 +0000494 CachedBoolEvalsTy CachedBoolEvals;
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +0000495
Mike Stump31feda52009-07-17 01:31:16 +0000496public:
Ted Kremenekf9d82902011-03-10 01:14:05 +0000497 explicit CFGBuilder(ASTContext *astContext,
Nico Weber699670e2017-08-23 15:33:16 +0000498 const CFG::BuildOptions &buildOpts)
499 : Context(astContext), cfg(new CFG()), // crew a new CFG
Artem Dergachev5e2f6ba2018-02-23 22:49:25 +0000500 ConstructionContextMap(), BuildOpts(buildOpts) {}
501
Mike Stump31feda52009-07-17 01:31:16 +0000502
Ted Kremenek9aae5132007-08-23 21:42:29 +0000503 // buildCFG - Used by external clients to construct the CFG.
David Blaikiee90195c2014-08-29 18:53:26 +0000504 std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement);
Mike Stump31feda52009-07-17 01:31:16 +0000505
Ted Kremeneka099c592011-03-10 03:50:34 +0000506 bool alwaysAdd(const Stmt *stmt);
507
Ted Kremenek93668002009-07-17 22:18:43 +0000508private:
509 // Visitors to walk an AST and construct the CFG.
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000510 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc);
511 CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000512 CFGBlock *VisitBreakStmt(BreakStmt *B);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000513 CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000514 CFGBlock *VisitCaseStmt(CaseStmt *C);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000515 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
Ted Kremenek21822592009-07-17 18:20:32 +0000516 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
John McCallc07a0c72011-02-17 10:25:35 +0000517 CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C,
518 AddStmtChoice asc);
Ted Kremenek21822592009-07-17 18:20:32 +0000519 CFGBlock *VisitContinueStmt(ContinueStmt *C);
Ted Kremenek6f400242012-07-14 05:04:01 +0000520 CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E,
521 AddStmtChoice asc);
522 CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S);
523 CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc);
Jordan Rosec9176072014-01-13 17:59:19 +0000524 CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc);
Jordan Rosed2f40792013-09-03 17:00:57 +0000525 CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc);
Ted Kremenek6f400242012-07-14 05:04:01 +0000526 CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S);
527 CFGBlock *VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E,
528 AddStmtChoice asc);
529 CFGBlock *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C,
530 AddStmtChoice asc);
531 CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T);
532 CFGBlock *VisitCXXTryStmt(CXXTryStmt *S);
Ted Kremenek93668002009-07-17 22:18:43 +0000533 CFGBlock *VisitDeclStmt(DeclStmt *DS);
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000534 CFGBlock *VisitDeclSubExpr(DeclStmt *DS);
Ted Kremenek21822592009-07-17 18:20:32 +0000535 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
536 CFGBlock *VisitDoStmt(DoStmt *D);
Ted Kremenek6f400242012-07-14 05:04:01 +0000537 CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc);
Ted Kremenek21822592009-07-17 18:20:32 +0000538 CFGBlock *VisitForStmt(ForStmt *F);
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000539 CFGBlock *VisitGotoStmt(GotoStmt *G);
Ted Kremenek93668002009-07-17 22:18:43 +0000540 CFGBlock *VisitIfStmt(IfStmt *I);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +0000541 CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000542 CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
543 CFGBlock *VisitLabelStmt(LabelStmt *L);
Devin Coughlinb6029b72015-11-25 22:35:37 +0000544 CFGBlock *VisitBlockExpr(BlockExpr *E, AddStmtChoice asc);
Ted Kremenek6f400242012-07-14 05:04:01 +0000545 CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc);
Ted Kremeneka16436f2012-07-14 05:04:06 +0000546 CFGBlock *VisitLogicalOperator(BinaryOperator *B);
Ted Kremenekb50e7162012-07-14 05:04:10 +0000547 std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B,
548 Stmt *Term,
549 CFGBlock *TrueBlock,
550 CFGBlock *FalseBlock);
Artem Dergachevf43ac4c2018-02-24 02:00:30 +0000551 CFGBlock *VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE,
552 AddStmtChoice asc);
Ted Kremenek5868ec62010-04-11 17:02:10 +0000553 CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000554 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
555 CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
556 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
557 CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
Ted Kremenek6f400242012-07-14 05:04:01 +0000558 CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S);
Ted Kremenek93668002009-07-17 22:18:43 +0000559 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
John McCallfe96e0b2011-11-06 09:01:30 +0000560 CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E);
Ted Kremenek6f400242012-07-14 05:04:01 +0000561 CFGBlock *VisitReturnStmt(ReturnStmt *R);
Nico Weber699670e2017-08-23 15:33:16 +0000562 CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S);
563 CFGBlock *VisitSEHFinallyStmt(SEHFinallyStmt *S);
564 CFGBlock *VisitSEHLeaveStmt(SEHLeaveStmt *S);
565 CFGBlock *VisitSEHTryStmt(SEHTryStmt *S);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000566 CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000567 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
Ted Kremenek6f400242012-07-14 05:04:01 +0000568 CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
569 AddStmtChoice asc);
Zhanyong Wan6dace612010-11-22 08:45:56 +0000570 CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000571 CFGBlock *VisitWhileStmt(WhileStmt *W);
Mike Stump48871a22009-07-17 01:04:31 +0000572
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000573 CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd);
574 CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc);
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000575 CFGBlock *VisitChildren(Stmt *S);
Ted Kremeneke2499842012-04-12 20:03:44 +0000576 CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc);
Mike Stump48871a22009-07-17 01:04:31 +0000577
Manuel Klimekb5616c92014-08-07 10:42:17 +0000578 /// When creating the CFG for temporary destructors, we want to mirror the
579 /// branch structure of the corresponding constructor calls.
580 /// Thus, while visiting a statement for temporary destructors, we keep a
581 /// context to keep track of the following information:
582 /// - whether a subexpression is executed unconditionally
583 /// - if a subexpression is executed conditionally, the first
584 /// CXXBindTemporaryExpr we encounter in that subexpression (which
585 /// corresponds to the last temporary destructor we have to call for this
586 /// subexpression) and the CFG block at that point (which will become the
587 /// successor block when inserting the decision point).
588 ///
589 /// That way, we can build the branch structure for temporary destructors as
590 /// follows:
591 /// 1. If a subexpression is executed unconditionally, we add the temporary
592 /// destructor calls to the current block.
593 /// 2. If a subexpression is executed conditionally, when we encounter a
594 /// CXXBindTemporaryExpr:
595 /// a) If it is the first temporary destructor call in the subexpression,
596 /// we remember the CXXBindTemporaryExpr and the current block in the
597 /// TempDtorContext; we start a new block, and insert the temporary
598 /// destructor call.
599 /// b) Otherwise, add the temporary destructor call to the current block.
600 /// 3. When we finished visiting a conditionally executed subexpression,
601 /// and we found at least one temporary constructor during the visitation
602 /// (2.a has executed), we insert a decision block that uses the
603 /// CXXBindTemporaryExpr as terminator, and branches to the current block
604 /// if the CXXBindTemporaryExpr was marked executed, and otherwise
605 /// branches to the stored successor.
606 struct TempDtorContext {
Eugene Zelenko38c70522017-12-07 21:55:09 +0000607 TempDtorContext() = default;
Manuel Klimekdeb02622014-08-08 07:37:13 +0000608 TempDtorContext(TryResult KnownExecuted)
Eugene Zelenko38c70522017-12-07 21:55:09 +0000609 : IsConditional(true), KnownExecuted(KnownExecuted) {}
Manuel Klimekb5616c92014-08-07 10:42:17 +0000610
611 /// Returns whether we need to start a new branch for a temporary destructor
Eric Christopher2c4555a2015-06-19 01:52:53 +0000612 /// call. This is the case when the temporary destructor is
Manuel Klimekb5616c92014-08-07 10:42:17 +0000613 /// conditionally executed, and it is the first one we encounter while
614 /// visiting a subexpression - other temporary destructors at the same level
615 /// will be added to the same block and are executed under the same
616 /// condition.
617 bool needsTempDtorBranch() const {
618 return IsConditional && !TerminatorExpr;
619 }
620
621 /// Remember the successor S of a temporary destructor decision branch for
622 /// the corresponding CXXBindTemporaryExpr E.
623 void setDecisionPoint(CFGBlock *S, CXXBindTemporaryExpr *E) {
624 Succ = S;
625 TerminatorExpr = E;
626 }
627
Eugene Zelenko38c70522017-12-07 21:55:09 +0000628 const bool IsConditional = false;
629 const TryResult KnownExecuted = true;
630 CFGBlock *Succ = nullptr;
631 CXXBindTemporaryExpr *TerminatorExpr = nullptr;
Manuel Klimekb5616c92014-08-07 10:42:17 +0000632 };
633
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +0000634 // Visitors to walk an AST and generate destructors of temporaries in
635 // full expression.
Manuel Klimekb5616c92014-08-07 10:42:17 +0000636 CFGBlock *VisitForTemporaryDtors(Stmt *E, bool BindToTemporary,
637 TempDtorContext &Context);
638 CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E, TempDtorContext &Context);
639 CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E,
640 TempDtorContext &Context);
641 CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors(
642 CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context);
643 CFGBlock *VisitConditionalOperatorForTemporaryDtors(
644 AbstractConditionalOperator *E, bool BindToTemporary,
645 TempDtorContext &Context);
646 void InsertTempDtorDecisionBlock(const TempDtorContext &Context,
647 CFGBlock *FalseSucc = nullptr);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +0000648
Ted Kremenek6065ef62008-04-28 18:00:46 +0000649 // NYS == Not Yet Supported
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000650 CFGBlock *NYS() {
Ted Kremenekb64d1832008-03-13 03:04:22 +0000651 badCFG = true;
652 return Block;
653 }
Mike Stump31feda52009-07-17 01:31:16 +0000654
Artem Dergachevc1b07bd2018-02-23 23:38:41 +0000655 // Remember to apply \p CC when constructing the CFG element for \p CE.
656 void consumeConstructionContext(const ConstructionContext *CC,
657 CXXConstructExpr *CE);
658
Artem Dergachev41ffb302018-02-08 22:58:15 +0000659 // Scan the child statement \p Child to find the constructor that might
660 // have been directly triggered by the current node, \p Trigger. If such
661 // constructor has been found, set current construction context to point
662 // to the trigger statement. The construction context will be unset once
663 // it is consumed when the CFG building procedure processes the
664 // construct-expression and adds the respective CFGConstructor element.
Artem Dergachev783a4572018-02-23 22:20:39 +0000665 void findConstructionContexts(const ConstructionContext *ContextSoFar,
666 Stmt *Child);
Artem Dergachev41ffb302018-02-08 22:58:15 +0000667 // Unset the construction context after consuming it. This is done immediately
668 // after adding the CFGConstructor element, so there's no need to
669 // do this manually in every Visit... function.
Artem Dergachev783a4572018-02-23 22:20:39 +0000670 void cleanupConstructionContext(CXXConstructExpr *CE);
Artem Dergachev41ffb302018-02-08 22:58:15 +0000671
Ted Kremenek93668002009-07-17 22:18:43 +0000672 void autoCreateBlock() { if (!Block) Block = createBlock(); }
673 CFGBlock *createBlock(bool add_successor = true);
Chandler Carrutha70991b2011-09-13 09:13:49 +0000674 CFGBlock *createNoReturnBlock();
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000675
Zhongxing Xuea9fcff2010-06-03 06:43:23 +0000676 CFGBlock *addStmt(Stmt *S) {
677 return Visit(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000678 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000679
Alexis Hunt1d792652011-01-08 20:30:50 +0000680 CFGBlock *addInitializer(CXXCtorInitializer *I);
Peter Szecsi999a25f2017-08-19 11:19:16 +0000681 void addLoopExit(const Stmt *LoopStmt);
Zhongxing Xu6d372f72010-10-01 03:22:39 +0000682 void addAutomaticObjDtors(LocalScope::const_iterator B,
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000683 LocalScope::const_iterator E, Stmt *S);
Matthias Gehre351c2182017-07-12 07:04:19 +0000684 void addLifetimeEnds(LocalScope::const_iterator B,
685 LocalScope::const_iterator E, Stmt *S);
686 void addAutomaticObjHandling(LocalScope::const_iterator B,
687 LocalScope::const_iterator E, Stmt *S);
Marcin Swiderski20b88732010-10-05 05:37:00 +0000688 void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD);
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000689
Marcin Swiderski5e415732010-09-30 23:05:00 +0000690 // Local scopes creation.
691 LocalScope* createOrReuseLocalScope(LocalScope* Scope);
692
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000693 void addLocalScopeForStmt(Stmt *S);
Craig Topper25542942014-05-20 04:30:07 +0000694 LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS,
695 LocalScope* Scope = nullptr);
696 LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = nullptr);
Marcin Swiderski5e415732010-09-30 23:05:00 +0000697
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000698 void addLocalScopeAndDtors(Stmt *S);
Marcin Swiderski5e415732010-09-30 23:05:00 +0000699
700 // Interface to CFGBlock - adding CFGElements.
Eugene Zelenko38c70522017-12-07 21:55:09 +0000701
Ted Kremenek37881932011-04-04 23:29:12 +0000702 void appendStmt(CFGBlock *B, const Stmt *S) {
Ted Kremenek8b46c002011-07-19 14:18:43 +0000703 if (alwaysAdd(S) && cachedEntry)
Ted Kremeneka099c592011-03-10 03:50:34 +0000704 cachedEntry->second = B;
Ted Kremeneka099c592011-03-10 03:50:34 +0000705
Jordy Rose17347372011-06-10 08:49:37 +0000706 // All block-level expressions should have already been IgnoreParens()ed.
707 assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S);
Ted Kremenek37881932011-04-04 23:29:12 +0000708 B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext());
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000709 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000710
Artem Dergachev41ffb302018-02-08 22:58:15 +0000711 void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) {
712 if (BuildOpts.AddRichCXXConstructors) {
Artem Dergachev783a4572018-02-23 22:20:39 +0000713 if (const ConstructionContext *CC = ConstructionContextMap.lookup(CE)) {
714 B->appendConstructor(CE, CC, cfg->getBumpVectorContext());
715 cleanupConstructionContext(CE);
Artem Dergachev41ffb302018-02-08 22:58:15 +0000716 return;
717 }
718 }
719
720 // No valid construction context found. Fall back to statement.
721 B->appendStmt(CE, cfg->getBumpVectorContext());
722 }
723
Alexis Hunt1d792652011-01-08 20:30:50 +0000724 void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) {
Marcin Swiderski87b1bb62010-10-04 03:38:22 +0000725 B->appendInitializer(I, cfg->getBumpVectorContext());
726 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000727
Jordan Rosec9176072014-01-13 17:59:19 +0000728 void appendNewAllocator(CFGBlock *B, CXXNewExpr *NE) {
729 B->appendNewAllocator(NE, cfg->getBumpVectorContext());
730 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000731
Marcin Swiderski20b88732010-10-05 05:37:00 +0000732 void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) {
733 B->appendBaseDtor(BS, cfg->getBumpVectorContext());
734 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000735
Marcin Swiderski20b88732010-10-05 05:37:00 +0000736 void appendMemberDtor(CFGBlock *B, FieldDecl *FD) {
737 B->appendMemberDtor(FD, cfg->getBumpVectorContext());
738 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000739
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +0000740 void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) {
741 B->appendTemporaryDtor(E, cfg->getBumpVectorContext());
742 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000743
Chandler Carruthad747252011-09-13 06:09:01 +0000744 void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) {
745 B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext());
746 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000747
Matthias Gehre351c2182017-07-12 07:04:19 +0000748 void appendLifetimeEnds(CFGBlock *B, VarDecl *VD, Stmt *S) {
749 B->appendLifetimeEnds(VD, S, cfg->getBumpVectorContext());
750 }
751
Peter Szecsi999a25f2017-08-19 11:19:16 +0000752 void appendLoopExit(CFGBlock *B, const Stmt *LoopStmt) {
753 B->appendLoopExit(LoopStmt, cfg->getBumpVectorContext());
754 }
755
Jordan Rosed2f40792013-09-03 17:00:57 +0000756 void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) {
757 B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext());
758 }
759
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000760 void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
Marcin Swiderski321a7072010-09-30 22:54:37 +0000761 LocalScope::const_iterator B, LocalScope::const_iterator E);
762
Matthias Gehre351c2182017-07-12 07:04:19 +0000763 void prependAutomaticObjLifetimeWithTerminator(CFGBlock *Blk,
764 LocalScope::const_iterator B,
765 LocalScope::const_iterator E);
766
Ted Kremenek4b6fee62014-02-27 00:24:00 +0000767 void addSuccessor(CFGBlock *B, CFGBlock *S, bool IsReachable = true) {
768 B->addSuccessor(CFGBlock::AdjacentBlock(S, IsReachable),
769 cfg->getBumpVectorContext());
770 }
771
772 /// Add a reachable successor to a block, with the alternate variant that is
773 /// unreachable.
774 void addSuccessor(CFGBlock *B, CFGBlock *ReachableBlock, CFGBlock *AltBlock) {
775 B->addSuccessor(CFGBlock::AdjacentBlock(ReachableBlock, AltBlock),
776 cfg->getBumpVectorContext());
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000777 }
Mike Stump11289f42009-09-09 15:08:12 +0000778
Richard Trieuf935b562014-04-05 05:17:01 +0000779 /// \brief Find a relational comparison with an expression evaluating to a
780 /// boolean and a constant other than 0 and 1.
781 /// e.g. if ((x < y) == 10)
782 TryResult checkIncorrectRelationalOperator(const BinaryOperator *B) {
783 const Expr *LHSExpr = B->getLHS()->IgnoreParens();
784 const Expr *RHSExpr = B->getRHS()->IgnoreParens();
785
786 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
787 const Expr *BoolExpr = RHSExpr;
788 bool IntFirst = true;
789 if (!IntLiteral) {
790 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
791 BoolExpr = LHSExpr;
792 IntFirst = false;
793 }
794
795 if (!IntLiteral || !BoolExpr->isKnownToHaveBooleanValue())
796 return TryResult();
797
798 llvm::APInt IntValue = IntLiteral->getValue();
799 if ((IntValue == 1) || (IntValue == 0))
800 return TryResult();
801
802 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() ||
803 !IntValue.isNegative();
804
805 BinaryOperatorKind Bok = B->getOpcode();
806 if (Bok == BO_GT || Bok == BO_GE) {
807 // Always true for 10 > bool and bool > -1
808 // Always false for -1 > bool and bool > 10
809 return TryResult(IntFirst == IntLarger);
810 } else {
811 // Always true for -1 < bool and bool < 10
812 // Always false for 10 < bool and bool < -1
813 return TryResult(IntFirst != IntLarger);
814 }
815 }
816
Jordan Rose7afd71e2014-05-20 17:31:11 +0000817 /// Find an incorrect equality comparison. Either with an expression
818 /// evaluating to a boolean and a constant other than 0 and 1.
819 /// e.g. if (!x == 10) or a bitwise and/or operation that always evaluates to
820 /// true/false e.q. (x & 8) == 4.
Richard Trieuf935b562014-04-05 05:17:01 +0000821 TryResult checkIncorrectEqualityOperator(const BinaryOperator *B) {
822 const Expr *LHSExpr = B->getLHS()->IgnoreParens();
823 const Expr *RHSExpr = B->getRHS()->IgnoreParens();
824
825 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
826 const Expr *BoolExpr = RHSExpr;
827
828 if (!IntLiteral) {
829 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
830 BoolExpr = LHSExpr;
831 }
832
Jordan Rose7afd71e2014-05-20 17:31:11 +0000833 if (!IntLiteral)
Richard Trieuf935b562014-04-05 05:17:01 +0000834 return TryResult();
835
Jordan Rose7afd71e2014-05-20 17:31:11 +0000836 const BinaryOperator *BitOp = dyn_cast<BinaryOperator>(BoolExpr);
837 if (BitOp && (BitOp->getOpcode() == BO_And ||
838 BitOp->getOpcode() == BO_Or)) {
839 const Expr *LHSExpr2 = BitOp->getLHS()->IgnoreParens();
840 const Expr *RHSExpr2 = BitOp->getRHS()->IgnoreParens();
841
842 const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2);
843
844 if (!IntLiteral2)
845 IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2);
846
847 if (!IntLiteral2)
848 return TryResult();
849
850 llvm::APInt L1 = IntLiteral->getValue();
851 llvm::APInt L2 = IntLiteral2->getValue();
852 if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) ||
853 (BitOp->getOpcode() == BO_Or && (L2 | L1) != L1)) {
854 if (BuildOpts.Observer)
855 BuildOpts.Observer->compareBitwiseEquality(B,
856 B->getOpcode() != BO_EQ);
857 TryResult(B->getOpcode() != BO_EQ);
858 }
859 } else if (BoolExpr->isKnownToHaveBooleanValue()) {
860 llvm::APInt IntValue = IntLiteral->getValue();
861 if ((IntValue == 1) || (IntValue == 0)) {
862 return TryResult();
863 }
864 return TryResult(B->getOpcode() != BO_EQ);
Richard Trieuf935b562014-04-05 05:17:01 +0000865 }
866
Jordan Rose7afd71e2014-05-20 17:31:11 +0000867 return TryResult();
Richard Trieuf935b562014-04-05 05:17:01 +0000868 }
869
870 TryResult analyzeLogicOperatorCondition(BinaryOperatorKind Relation,
871 const llvm::APSInt &Value1,
872 const llvm::APSInt &Value2) {
873 assert(Value1.isSigned() == Value2.isSigned());
874 switch (Relation) {
875 default:
876 return TryResult();
877 case BO_EQ:
878 return TryResult(Value1 == Value2);
879 case BO_NE:
880 return TryResult(Value1 != Value2);
881 case BO_LT:
882 return TryResult(Value1 < Value2);
883 case BO_LE:
884 return TryResult(Value1 <= Value2);
885 case BO_GT:
886 return TryResult(Value1 > Value2);
887 case BO_GE:
888 return TryResult(Value1 >= Value2);
889 }
890 }
891
892 /// \brief Find a pair of comparison expressions with or without parentheses
893 /// with a shared variable and constants and a logical operator between them
894 /// that always evaluates to either true or false.
895 /// e.g. if (x != 3 || x != 4)
896 TryResult checkIncorrectLogicOperator(const BinaryOperator *B) {
897 assert(B->isLogicalOp());
898 const BinaryOperator *LHS =
899 dyn_cast<BinaryOperator>(B->getLHS()->IgnoreParens());
900 const BinaryOperator *RHS =
901 dyn_cast<BinaryOperator>(B->getRHS()->IgnoreParens());
902 if (!LHS || !RHS)
Eugene Zelenko38c70522017-12-07 21:55:09 +0000903 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000904
905 if (!LHS->isComparisonOp() || !RHS->isComparisonOp())
Eugene Zelenko38c70522017-12-07 21:55:09 +0000906 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000907
George Burgess IVced56e62015-10-01 18:47:52 +0000908 const DeclRefExpr *Decl1;
909 const Expr *Expr1;
910 BinaryOperatorKind BO1;
911 std::tie(Decl1, BO1, Expr1) = tryNormalizeBinaryOperator(LHS);
Richard Trieuf935b562014-04-05 05:17:01 +0000912
George Burgess IVced56e62015-10-01 18:47:52 +0000913 if (!Decl1 || !Expr1)
Eugene Zelenko38c70522017-12-07 21:55:09 +0000914 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000915
George Burgess IVced56e62015-10-01 18:47:52 +0000916 const DeclRefExpr *Decl2;
917 const Expr *Expr2;
918 BinaryOperatorKind BO2;
919 std::tie(Decl2, BO2, Expr2) = tryNormalizeBinaryOperator(RHS);
Richard Trieuf935b562014-04-05 05:17:01 +0000920
George Burgess IVced56e62015-10-01 18:47:52 +0000921 if (!Decl2 || !Expr2)
Eugene Zelenko38c70522017-12-07 21:55:09 +0000922 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000923
924 // Check that it is the same variable on both sides.
925 if (Decl1->getDecl() != Decl2->getDecl())
Eugene Zelenko38c70522017-12-07 21:55:09 +0000926 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000927
George Burgess IVced56e62015-10-01 18:47:52 +0000928 // Make sure the user's intent is clear (e.g. they're comparing against two
929 // int literals, or two things from the same enum)
930 if (!areExprTypesCompatible(Expr1, Expr2))
Eugene Zelenko38c70522017-12-07 21:55:09 +0000931 return {};
George Burgess IVced56e62015-10-01 18:47:52 +0000932
Richard Trieuf935b562014-04-05 05:17:01 +0000933 llvm::APSInt L1, L2;
934
George Burgess IVced56e62015-10-01 18:47:52 +0000935 if (!Expr1->EvaluateAsInt(L1, *Context) ||
936 !Expr2->EvaluateAsInt(L2, *Context))
Eugene Zelenko38c70522017-12-07 21:55:09 +0000937 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000938
939 // Can't compare signed with unsigned or with different bit width.
940 if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth())
Eugene Zelenko38c70522017-12-07 21:55:09 +0000941 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000942
943 // Values that will be used to determine if result of logical
944 // operator is always true/false
945 const llvm::APSInt Values[] = {
946 // Value less than both Value1 and Value2
947 llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()),
948 // L1
949 L1,
950 // Value between Value1 and Value2
951 ((L1 < L2) ? L1 : L2) + llvm::APSInt(llvm::APInt(L1.getBitWidth(), 1),
952 L1.isUnsigned()),
953 // L2
954 L2,
955 // Value greater than both Value1 and Value2
956 llvm::APSInt::getMaxValue(L1.getBitWidth(), L1.isUnsigned()),
957 };
958
959 // Check whether expression is always true/false by evaluating the following
960 // * variable x is less than the smallest literal.
961 // * variable x is equal to the smallest literal.
962 // * Variable x is between smallest and largest literal.
963 // * Variable x is equal to the largest literal.
964 // * Variable x is greater than largest literal.
965 bool AlwaysTrue = true, AlwaysFalse = true;
Benjamin Kramer2e018ef2016-05-27 13:36:58 +0000966 for (const llvm::APSInt &Value : Values) {
Richard Trieuf935b562014-04-05 05:17:01 +0000967 TryResult Res1, Res2;
968 Res1 = analyzeLogicOperatorCondition(BO1, Value, L1);
969 Res2 = analyzeLogicOperatorCondition(BO2, Value, L2);
970
971 if (!Res1.isKnown() || !Res2.isKnown())
Eugene Zelenko38c70522017-12-07 21:55:09 +0000972 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000973
974 if (B->getOpcode() == BO_LAnd) {
975 AlwaysTrue &= (Res1.isTrue() && Res2.isTrue());
976 AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue());
977 } else {
978 AlwaysTrue &= (Res1.isTrue() || Res2.isTrue());
979 AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue());
980 }
981 }
982
983 if (AlwaysTrue || AlwaysFalse) {
984 if (BuildOpts.Observer)
985 BuildOpts.Observer->compareAlwaysTrue(B, AlwaysTrue);
986 return TryResult(AlwaysTrue);
987 }
Eugene Zelenko38c70522017-12-07 21:55:09 +0000988 return {};
Richard Trieuf935b562014-04-05 05:17:01 +0000989 }
990
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000991 /// Try and evaluate an expression to an integer constant.
992 bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) {
993 if (!BuildOpts.PruneTriviallyFalseEdges)
994 return false;
995 return !S->isTypeDependent() &&
Ted Kremenek352a7082011-04-04 20:30:58 +0000996 !S->isValueDependent() &&
Richard Smith7b553f12011-10-29 00:50:52 +0000997 S->EvaluateAsRValue(outResult, *Context);
Ted Kremenekeff9a7f2011-03-01 23:12:55 +0000998 }
Mike Stump11289f42009-09-09 15:08:12 +0000999
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00001000 /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1
Mike Stump773582d2009-07-23 23:25:26 +00001001 /// if we can evaluate to a known value, otherwise return -1.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00001002 TryResult tryEvaluateBool(Expr *S) {
Richard Smithfaa32a92011-10-14 20:22:00 +00001003 if (!BuildOpts.PruneTriviallyFalseEdges ||
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001004 S->isTypeDependent() || S->isValueDependent())
Eugene Zelenko38c70522017-12-07 21:55:09 +00001005 return {};
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001006
1007 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) {
1008 if (Bop->isLogicalOp()) {
1009 // Check the cache first.
NAKAMURA Takumie9ca55e2012-03-25 06:30:37 +00001010 CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S);
1011 if (I != CachedBoolEvals.end())
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001012 return I->second; // already in map;
NAKAMURA Takumif0434b02012-03-25 06:30:32 +00001013
1014 // Retrieve result at first, or the map might be updated.
1015 TryResult Result = evaluateAsBooleanConditionNoCache(S);
1016 CachedBoolEvals[S] = Result; // update or insert
1017 return Result;
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001018 }
Ted Kremenek64fea5f2012-08-24 07:42:09 +00001019 else {
1020 switch (Bop->getOpcode()) {
1021 default: break;
1022 // For 'x & 0' and 'x * 0', we can determine that
1023 // the value is always false.
1024 case BO_Mul:
1025 case BO_And: {
1026 // If either operand is zero, we know the value
1027 // must be false.
1028 llvm::APSInt IntVal;
1029 if (Bop->getLHS()->EvaluateAsInt(IntVal, *Context)) {
David Blaikie7a3cbb22015-03-09 02:02:07 +00001030 if (!IntVal.getBoolValue()) {
Ted Kremenek64fea5f2012-08-24 07:42:09 +00001031 return TryResult(false);
1032 }
1033 }
1034 if (Bop->getRHS()->EvaluateAsInt(IntVal, *Context)) {
David Blaikie7a3cbb22015-03-09 02:02:07 +00001035 if (!IntVal.getBoolValue()) {
Ted Kremenek64fea5f2012-08-24 07:42:09 +00001036 return TryResult(false);
1037 }
1038 }
1039 }
1040 break;
1041 }
1042 }
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001043 }
1044
1045 return evaluateAsBooleanConditionNoCache(S);
1046 }
1047
1048 /// \brief Evaluate as boolean \param E without using the cache.
1049 TryResult evaluateAsBooleanConditionNoCache(Expr *E) {
1050 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) {
1051 if (Bop->isLogicalOp()) {
1052 TryResult LHS = tryEvaluateBool(Bop->getLHS());
1053 if (LHS.isKnown()) {
1054 // We were able to evaluate the LHS, see if we can get away with not
1055 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
1056 if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr))
1057 return LHS.isTrue();
1058
1059 TryResult RHS = tryEvaluateBool(Bop->getRHS());
1060 if (RHS.isKnown()) {
1061 if (Bop->getOpcode() == BO_LOr)
1062 return LHS.isTrue() || RHS.isTrue();
1063 else
1064 return LHS.isTrue() && RHS.isTrue();
1065 }
1066 } else {
1067 TryResult RHS = tryEvaluateBool(Bop->getRHS());
1068 if (RHS.isKnown()) {
1069 // We can't evaluate the LHS; however, sometimes the result
1070 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
1071 if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr))
1072 return RHS.isTrue();
Richard Trieuf935b562014-04-05 05:17:01 +00001073 } else {
1074 TryResult BopRes = checkIncorrectLogicOperator(Bop);
1075 if (BopRes.isKnown())
1076 return BopRes.isTrue();
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001077 }
1078 }
1079
Eugene Zelenko38c70522017-12-07 21:55:09 +00001080 return {};
Richard Trieuf935b562014-04-05 05:17:01 +00001081 } else if (Bop->isEqualityOp()) {
1082 TryResult BopRes = checkIncorrectEqualityOperator(Bop);
1083 if (BopRes.isKnown())
1084 return BopRes.isTrue();
1085 } else if (Bop->isRelationalOp()) {
1086 TryResult BopRes = checkIncorrectRelationalOperator(Bop);
1087 if (BopRes.isKnown())
1088 return BopRes.isTrue();
Argyrios Kyrtzidis5f172a32012-03-23 00:59:17 +00001089 }
1090 }
1091
1092 bool Result;
1093 if (E->EvaluateAsBooleanCondition(Result, *Context))
1094 return Result;
1095
Eugene Zelenko38c70522017-12-07 21:55:09 +00001096 return {};
Mike Stump773582d2009-07-23 23:25:26 +00001097 }
Matthias Gehre351c2182017-07-12 07:04:19 +00001098
1099 bool hasTrivialDestructor(VarDecl *VD);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001100};
Mike Stump31feda52009-07-17 01:31:16 +00001101
Eugene Zelenko38c70522017-12-07 21:55:09 +00001102} // namespace
1103
Ted Kremeneka099c592011-03-10 03:50:34 +00001104inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder,
1105 const Stmt *stmt) const {
1106 return builder.alwaysAdd(stmt) || kind == AlwaysAdd;
1107}
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001108
Ted Kremeneka099c592011-03-10 03:50:34 +00001109bool CFGBuilder::alwaysAdd(const Stmt *stmt) {
Ted Kremenek8b46c002011-07-19 14:18:43 +00001110 bool shouldAdd = BuildOpts.alwaysAdd(stmt);
1111
Ted Kremeneka099c592011-03-10 03:50:34 +00001112 if (!BuildOpts.forcedBlkExprs)
Ted Kremenek8b46c002011-07-19 14:18:43 +00001113 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001114
1115 if (lastLookup == stmt) {
1116 if (cachedEntry) {
1117 assert(cachedEntry->first == stmt);
1118 return true;
1119 }
Ted Kremenek8b46c002011-07-19 14:18:43 +00001120 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001121 }
Ted Kremeneka099c592011-03-10 03:50:34 +00001122
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001123 lastLookup = stmt;
1124
1125 // Perform the lookup!
Ted Kremeneka099c592011-03-10 03:50:34 +00001126 CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs;
1127
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001128 if (!fb) {
1129 // No need to update 'cachedEntry', since it will always be null.
Craig Topper25542942014-05-20 04:30:07 +00001130 assert(!cachedEntry);
Ted Kremenek8b46c002011-07-19 14:18:43 +00001131 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001132 }
Ted Kremeneka099c592011-03-10 03:50:34 +00001133
1134 CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt);
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001135 if (itr == fb->end()) {
Craig Topper25542942014-05-20 04:30:07 +00001136 cachedEntry = nullptr;
Ted Kremenek8b46c002011-07-19 14:18:43 +00001137 return shouldAdd;
Ted Kremenekdcc4c382011-03-23 21:33:21 +00001138 }
1139
Ted Kremeneka099c592011-03-10 03:50:34 +00001140 cachedEntry = &*itr;
1141 return true;
Ted Kremenek7c58d352011-03-10 01:14:11 +00001142}
1143
Douglas Gregor4619e432008-12-05 23:32:09 +00001144// FIXME: Add support for dependent-sized array types in C++?
1145// Does it even make sense to build a CFG for an uninstantiated template?
John McCall424cec92011-01-19 06:33:43 +00001146static const VariableArrayType *FindVA(const Type *t) {
1147 while (const ArrayType *vt = dyn_cast<ArrayType>(t)) {
1148 if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt))
Ted Kremenekd86d39c2008-09-26 22:58:57 +00001149 if (vat->getSizeExpr())
1150 return vat;
Mike Stump31feda52009-07-17 01:31:16 +00001151
Ted Kremenekd86d39c2008-09-26 22:58:57 +00001152 t = vt->getElementType().getTypePtr();
1153 }
Mike Stump31feda52009-07-17 01:31:16 +00001154
Craig Topper25542942014-05-20 04:30:07 +00001155 return nullptr;
Ted Kremenekd86d39c2008-09-26 22:58:57 +00001156}
Mike Stump31feda52009-07-17 01:31:16 +00001157
Artem Dergachevc1b07bd2018-02-23 23:38:41 +00001158void CFGBuilder::consumeConstructionContext(const ConstructionContext *CC, CXXConstructExpr *CE) {
1159 if (const ConstructionContext *PreviousContext =
1160 ConstructionContextMap.lookup(CE)) {
1161 // We might have visited this child when we were finding construction
1162 // contexts within its parents.
1163 assert(PreviousContext->isStrictlyMoreSpecificThan(CC) &&
1164 "Already within a different construction context!");
1165 } else {
1166 ConstructionContextMap[CE] = CC;
1167 }
1168}
1169
Artem Dergachev783a4572018-02-23 22:20:39 +00001170void CFGBuilder::findConstructionContexts(
1171 const ConstructionContext *ContextSoFar, Stmt *Child) {
Artem Dergachev41ffb302018-02-08 22:58:15 +00001172 if (!BuildOpts.AddRichCXXConstructors)
1173 return;
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001174
Artem Dergachev41ffb302018-02-08 22:58:15 +00001175 if (!Child)
1176 return;
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001177
1178 switch(Child->getStmtClass()) {
1179 case Stmt::CXXConstructExprClass:
1180 case Stmt::CXXTemporaryObjectExprClass: {
1181 consumeConstructionContext(ContextSoFar, cast<CXXConstructExpr>(Child));
1182 break;
1183 }
1184 case Stmt::ExprWithCleanupsClass: {
1185 auto *Cleanups = cast<ExprWithCleanups>(Child);
Artem Dergachev783a4572018-02-23 22:20:39 +00001186 findConstructionContexts(ContextSoFar, Cleanups->getSubExpr());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001187 break;
1188 }
1189 case Stmt::CXXFunctionalCastExprClass: {
1190 auto *Cast = cast<CXXFunctionalCastExpr>(Child);
Artem Dergachevceb7d912018-02-24 02:05:11 +00001191 findConstructionContexts(ContextSoFar, Cast->getSubExpr());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001192 break;
1193 }
1194 case Stmt::ImplicitCastExprClass: {
1195 auto *Cast = cast<ImplicitCastExpr>(Child);
1196 findConstructionContexts(ContextSoFar, Cast->getSubExpr());
1197 break;
1198 }
1199 case Stmt::CXXBindTemporaryExprClass: {
1200 auto *BTE = cast<CXXBindTemporaryExpr>(Child);
Artem Dergachev783a4572018-02-23 22:20:39 +00001201 findConstructionContexts(
1202 ConstructionContext::create(cfg->getBumpVectorContext(), BTE,
1203 ContextSoFar),
1204 BTE->getSubExpr());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001205 break;
1206 }
1207 case Stmt::ConditionalOperatorClass: {
1208 auto *CO = cast<ConditionalOperator>(Child);
Artem Dergacheva6d91d52018-02-24 03:10:15 +00001209 findConstructionContexts(ContextSoFar, CO->getLHS());
1210 findConstructionContexts(ContextSoFar, CO->getRHS());
Artem Dergachev1c6ed3a2018-02-24 03:54:22 +00001211 break;
1212 }
1213 default:
1214 break;
Artem Dergachev41ffb302018-02-08 22:58:15 +00001215 }
1216}
1217
Artem Dergachev783a4572018-02-23 22:20:39 +00001218void CFGBuilder::cleanupConstructionContext(CXXConstructExpr *CE) {
1219 assert(BuildOpts.AddRichCXXConstructors &&
1220 "We should not be managing construction contexts!");
1221 assert(ConstructionContextMap.count(CE) &&
Artem Dergachev41ffb302018-02-08 22:58:15 +00001222 "Cannot exit construction context without the context!");
Artem Dergachev783a4572018-02-23 22:20:39 +00001223 ConstructionContextMap.erase(CE);
Artem Dergachev41ffb302018-02-08 22:58:15 +00001224}
1225
1226
Mike Stump31feda52009-07-17 01:31:16 +00001227/// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an
1228/// arbitrary statement. Examples include a single expression or a function
1229/// body (compound statement). The ownership of the returned CFG is
1230/// transferred to the caller. If CFG construction fails, this method returns
1231/// NULL.
David Blaikiee90195c2014-08-29 18:53:26 +00001232std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) {
Ted Kremenek8aed4902009-10-20 23:46:25 +00001233 assert(cfg.get());
Ted Kremenek93668002009-07-17 22:18:43 +00001234 if (!Statement)
Craig Topper25542942014-05-20 04:30:07 +00001235 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001236
Mike Stump31feda52009-07-17 01:31:16 +00001237 // Create an empty block that will serve as the exit block for the CFG. Since
1238 // this is the first block added to the CFG, it will be implicitly registered
1239 // as the exit block.
Ted Kremenek81e14852007-08-27 19:46:09 +00001240 Succ = createBlock();
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001241 assert(Succ == &cfg->getExit());
Craig Topper25542942014-05-20 04:30:07 +00001242 Block = nullptr; // the EXIT block is empty. Create all other blocks lazily.
Mike Stump31feda52009-07-17 01:31:16 +00001243
Matthias Gehre351c2182017-07-12 07:04:19 +00001244 assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) &&
1245 "AddImplicitDtors and AddLifetime cannot be used at the same time");
1246
Marcin Swiderski20b88732010-10-05 05:37:00 +00001247 if (BuildOpts.AddImplicitDtors)
1248 if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D))
1249 addImplicitDtorsForDestructor(DD);
1250
Ted Kremenek9aae5132007-08-23 21:42:29 +00001251 // Visit the statements and create the CFG.
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001252 CFGBlock *B = addStmt(Statement);
1253
1254 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00001255 return nullptr;
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001256
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001257 // For C++ constructor add initializers to CFG.
1258 if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) {
Pete Cooper57d3f142015-07-30 17:22:52 +00001259 for (auto *I : llvm::reverse(CD->inits())) {
1260 B = addInitializer(I);
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001261 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00001262 return nullptr;
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001263 }
1264 }
1265
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001266 if (B)
1267 Succ = B;
Mike Stump6bf1c082010-01-21 02:21:40 +00001268
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001269 // Backpatch the gotos whose label -> block mappings we didn't know when we
1270 // encountered them.
1271 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
1272 E = BackpatchBlocks.end(); I != E; ++I ) {
Mike Stump31feda52009-07-17 01:31:16 +00001273
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001274 CFGBlock *B = I->block;
Rafael Espindola210de572013-03-27 15:37:54 +00001275 const GotoStmt *G = cast<GotoStmt>(B->getTerminator());
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001276 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
Mike Stump31feda52009-07-17 01:31:16 +00001277
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001278 // If there is no target for the goto, then we are looking at an
1279 // incomplete AST. Handle this by not registering a successor.
1280 if (LI == LabelMap.end()) continue;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001281
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001282 JumpTarget JT = LI->second;
Matthias Gehre351c2182017-07-12 07:04:19 +00001283 prependAutomaticObjLifetimeWithTerminator(B, I->scopePosition,
1284 JT.scopePosition);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00001285 prependAutomaticObjDtorsWithTerminator(B, I->scopePosition,
1286 JT.scopePosition);
1287 addSuccessor(B, JT.block);
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001288 }
1289
1290 // Add successors to the Indirect Goto Dispatch block (if we have one).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001291 if (CFGBlock *B = cfg->getIndirectGotoBlock())
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001292 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
1293 E = AddressTakenLabels.end(); I != E; ++I ) {
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001294 // Lookup the target block.
1295 LabelMapTy::iterator LI = LabelMap.find(*I);
1296
1297 // If there is no target block that contains label, then we are looking
1298 // at an incomplete AST. Handle this by not registering a successor.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001299 if (LI == LabelMap.end()) continue;
Zhongxing Xub1e10aa2010-09-06 07:04:06 +00001300
Ted Kremenekef81e9e2011-01-07 19:37:16 +00001301 addSuccessor(B, LI->second.block);
Ted Kremenekeda180e22007-08-28 19:26:49 +00001302 }
Mike Stump31feda52009-07-17 01:31:16 +00001303
Mike Stump31feda52009-07-17 01:31:16 +00001304 // Create an empty entry block that has no predecessors.
Ted Kremenek5c50fd12007-09-26 21:23:31 +00001305 cfg->setEntry(createBlock());
Mike Stump31feda52009-07-17 01:31:16 +00001306
Artem Dergachev783a4572018-02-23 22:20:39 +00001307 if (BuildOpts.AddRichCXXConstructors)
1308 assert(ConstructionContextMap.empty() &&
1309 "Not all construction contexts were cleaned up!");
1310
David Blaikiee90195c2014-08-29 18:53:26 +00001311 return std::move(cfg);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001312}
Mike Stump31feda52009-07-17 01:31:16 +00001313
Ted Kremenek9aae5132007-08-23 21:42:29 +00001314/// createBlock - Used to lazily create blocks that are connected
1315/// to the current (global) succcessor.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001316CFGBlock *CFGBuilder::createBlock(bool add_successor) {
1317 CFGBlock *B = cfg->createBlock();
Ted Kremenek93668002009-07-17 22:18:43 +00001318 if (add_successor && Succ)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00001319 addSuccessor(B, Succ);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001320 return B;
1321}
Mike Stump31feda52009-07-17 01:31:16 +00001322
Chandler Carrutha70991b2011-09-13 09:13:49 +00001323/// createNoReturnBlock - Used to create a block is a 'noreturn' point in the
1324/// CFG. It is *not* connected to the current (global) successor, and instead
1325/// directly tied to the exit block in order to be reachable.
1326CFGBlock *CFGBuilder::createNoReturnBlock() {
1327 CFGBlock *B = createBlock(false);
Chandler Carruth75d78232011-09-13 09:53:55 +00001328 B->setHasNoReturnElement();
Ted Kremenekf3539192014-02-27 00:24:05 +00001329 addSuccessor(B, &cfg->getExit(), Succ);
Chandler Carrutha70991b2011-09-13 09:13:49 +00001330 return B;
1331}
1332
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001333/// addInitializer - Add C++ base or member initializer element to CFG.
Alexis Hunt1d792652011-01-08 20:30:50 +00001334CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) {
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001335 if (!BuildOpts.AddInitializers)
1336 return Block;
1337
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001338 bool HasTemporaries = false;
1339
1340 // Destructors of temporaries in initialization expression should be called
1341 // after initialization finishes.
1342 Expr *Init = I->getInit();
1343 if (Init) {
John McCall5d413782010-12-06 08:20:24 +00001344 HasTemporaries = isa<ExprWithCleanups>(Init);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001345
Jordan Rose6d671cc2012-09-05 22:55:23 +00001346 if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001347 // Generate destructors for temporaries in initialization expression.
Manuel Klimekdeb02622014-08-08 07:37:13 +00001348 TempDtorContext Context;
Manuel Klimekb5616c92014-08-07 10:42:17 +00001349 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
1350 /*BindToTemporary=*/false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001351 }
1352 }
1353
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001354 autoCreateBlock();
1355 appendInitializer(Block, I);
1356
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001357 if (Init) {
Artem Dergachev783a4572018-02-23 22:20:39 +00001358 findConstructionContexts(
1359 ConstructionContext::create(cfg->getBumpVectorContext(), I),
1360 Init);
Artem Dergachev5a281bb2018-02-10 02:18:04 +00001361
Ted Kremenek8219b822010-12-16 07:46:53 +00001362 if (HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001363 // For expression with temporaries go directly to subexpression to omit
1364 // generating destructors for the second time.
Ted Kremenek8219b822010-12-16 07:46:53 +00001365 return Visit(cast<ExprWithCleanups>(Init)->getSubExpr());
1366 }
Enrico Pertosofaed8012015-06-03 10:12:40 +00001367 if (BuildOpts.AddCXXDefaultInitExprInCtors) {
1368 if (CXXDefaultInitExpr *Default = dyn_cast<CXXDefaultInitExpr>(Init)) {
1369 // In general, appending the expression wrapped by a CXXDefaultInitExpr
1370 // may cause the same Expr to appear more than once in the CFG. Doing it
1371 // here is safe because there's only one initializer per field.
1372 autoCreateBlock();
1373 appendStmt(Block, Default);
1374 if (Stmt *Child = Default->getExpr())
1375 if (CFGBlock *R = Visit(Child))
1376 Block = R;
1377 return Block;
1378 }
1379 }
Ted Kremenek8219b822010-12-16 07:46:53 +00001380 return Visit(Init);
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001381 }
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00001382
Marcin Swiderski87b1bb62010-10-04 03:38:22 +00001383 return Block;
1384}
1385
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001386/// \brief Retrieve the type of the temporary object whose lifetime was
1387/// extended by a local reference with the given initializer.
1388static QualType getReferenceInitTemporaryType(ASTContext &Context,
Richard Smithb8c0f552016-12-09 18:49:13 +00001389 const Expr *Init,
1390 bool *FoundMTE = nullptr) {
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001391 while (true) {
1392 // Skip parentheses.
1393 Init = Init->IgnoreParens();
1394
1395 // Skip through cleanups.
1396 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) {
1397 Init = EWC->getSubExpr();
1398 continue;
1399 }
1400
1401 // Skip through the temporary-materialization expression.
1402 if (const MaterializeTemporaryExpr *MTE
1403 = dyn_cast<MaterializeTemporaryExpr>(Init)) {
1404 Init = MTE->GetTemporaryExpr();
Richard Smithb8c0f552016-12-09 18:49:13 +00001405 if (FoundMTE)
1406 *FoundMTE = true;
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001407 continue;
1408 }
1409
1410 // Skip derived-to-base and no-op casts.
1411 if (const CastExpr *CE = dyn_cast<CastExpr>(Init)) {
1412 if ((CE->getCastKind() == CK_DerivedToBase ||
1413 CE->getCastKind() == CK_UncheckedDerivedToBase ||
1414 CE->getCastKind() == CK_NoOp) &&
1415 Init->getType()->isRecordType()) {
1416 Init = CE->getSubExpr();
1417 continue;
1418 }
1419 }
1420
1421 // Skip member accesses into rvalues.
1422 if (const MemberExpr *ME = dyn_cast<MemberExpr>(Init)) {
1423 if (!ME->isArrow() && ME->getBase()->isRValue()) {
1424 Init = ME->getBase();
1425 continue;
1426 }
1427 }
1428
1429 break;
1430 }
1431
1432 return Init->getType();
1433}
Matthias Gehre351c2182017-07-12 07:04:19 +00001434
Peter Szecsi999a25f2017-08-19 11:19:16 +00001435// TODO: Support adding LoopExit element to the CFG in case where the loop is
1436// ended by ReturnStmt, GotoStmt or ThrowExpr.
1437void CFGBuilder::addLoopExit(const Stmt *LoopStmt){
1438 if(!BuildOpts.AddLoopExit)
1439 return;
1440 autoCreateBlock();
1441 appendLoopExit(Block, LoopStmt);
1442}
1443
Matthias Gehre351c2182017-07-12 07:04:19 +00001444void CFGBuilder::addAutomaticObjHandling(LocalScope::const_iterator B,
1445 LocalScope::const_iterator E,
1446 Stmt *S) {
1447 if (BuildOpts.AddImplicitDtors)
1448 addAutomaticObjDtors(B, E, S);
1449 if (BuildOpts.AddLifetime)
1450 addLifetimeEnds(B, E, S);
1451}
1452
1453/// Add to current block automatic objects that leave the scope.
1454void CFGBuilder::addLifetimeEnds(LocalScope::const_iterator B,
1455 LocalScope::const_iterator E, Stmt *S) {
1456 if (!BuildOpts.AddLifetime)
1457 return;
1458
1459 if (B == E)
1460 return;
1461
1462 // To go from B to E, one first goes up the scopes from B to P
1463 // then sideways in one scope from P to P' and then down
1464 // the scopes from P' to E.
1465 // The lifetime of all objects between B and P end.
1466 LocalScope::const_iterator P = B.shared_parent(E);
1467 int dist = B.distance(P);
1468 if (dist <= 0)
1469 return;
1470
1471 // We need to perform the scope leaving in reverse order
1472 SmallVector<VarDecl *, 10> DeclsTrivial;
1473 SmallVector<VarDecl *, 10> DeclsNonTrivial;
1474 DeclsTrivial.reserve(dist);
1475 DeclsNonTrivial.reserve(dist);
1476
1477 for (LocalScope::const_iterator I = B; I != P; ++I)
1478 if (hasTrivialDestructor(*I))
1479 DeclsTrivial.push_back(*I);
1480 else
1481 DeclsNonTrivial.push_back(*I);
1482
1483 autoCreateBlock();
1484 // object with trivial destructor end their lifetime last (when storage
1485 // duration ends)
1486 for (SmallVectorImpl<VarDecl *>::reverse_iterator I = DeclsTrivial.rbegin(),
1487 E = DeclsTrivial.rend();
1488 I != E; ++I)
1489 appendLifetimeEnds(Block, *I, S);
1490
1491 for (SmallVectorImpl<VarDecl *>::reverse_iterator
1492 I = DeclsNonTrivial.rbegin(),
1493 E = DeclsNonTrivial.rend();
1494 I != E; ++I)
1495 appendLifetimeEnds(Block, *I, S);
1496}
1497
Marcin Swiderski5e415732010-09-30 23:05:00 +00001498/// addAutomaticObjDtors - Add to current block automatic objects destructors
1499/// for objects in range of local scope positions. Use S as trigger statement
1500/// for destructors.
Zhongxing Xu6d372f72010-10-01 03:22:39 +00001501void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B,
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001502 LocalScope::const_iterator E, Stmt *S) {
Marcin Swiderski5e415732010-09-30 23:05:00 +00001503 if (!BuildOpts.AddImplicitDtors)
Zhongxing Xu6d372f72010-10-01 03:22:39 +00001504 return;
1505
Marcin Swiderski5e415732010-09-30 23:05:00 +00001506 if (B == E)
Zhongxing Xu6d372f72010-10-01 03:22:39 +00001507 return;
Marcin Swiderski5e415732010-09-30 23:05:00 +00001508
Chandler Carruthad747252011-09-13 06:09:01 +00001509 // We need to append the destructors in reverse order, but any one of them
1510 // may be a no-return destructor which changes the CFG. As a result, buffer
1511 // this sequence up and replay them in reverse order when appending onto the
1512 // CFGBlock(s).
1513 SmallVector<VarDecl*, 10> Decls;
1514 Decls.reserve(B.distance(E));
1515 for (LocalScope::const_iterator I = B; I != E; ++I)
1516 Decls.push_back(*I);
1517
1518 for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(),
1519 E = Decls.rend();
1520 I != E; ++I) {
1521 // If this destructor is marked as a no-return destructor, we need to
1522 // create a new block for the destructor which does not have as a successor
1523 // anything built thus far: control won't flow out of this block.
Ted Kremenek3d617732012-07-18 04:57:57 +00001524 QualType Ty = (*I)->getType();
1525 if (Ty->isReferenceType()) {
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001526 Ty = getReferenceInitTemporaryType(*Context, (*I)->getInit());
Douglas Gregor6c8f07f2011-11-15 15:29:30 +00001527 }
Ted Kremenek3d617732012-07-18 04:57:57 +00001528 Ty = Context->getBaseElementType(Ty);
1529
Richard Trieu95a192a2015-05-28 00:14:02 +00001530 if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn())
Chandler Carrutha70991b2011-09-13 09:13:49 +00001531 Block = createNoReturnBlock();
1532 else
Chandler Carruthad747252011-09-13 06:09:01 +00001533 autoCreateBlock();
Chandler Carruthad747252011-09-13 06:09:01 +00001534
1535 appendAutomaticObjDtor(Block, *I, S);
1536 }
Marcin Swiderski5e415732010-09-30 23:05:00 +00001537}
1538
Marcin Swiderski20b88732010-10-05 05:37:00 +00001539/// addImplicitDtorsForDestructor - Add implicit destructors generated for
1540/// base and member objects in destructor.
1541void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) {
Eugene Zelenko38c70522017-12-07 21:55:09 +00001542 assert(BuildOpts.AddImplicitDtors &&
1543 "Can be called only when dtors should be added");
Marcin Swiderski20b88732010-10-05 05:37:00 +00001544 const CXXRecordDecl *RD = DD->getParent();
1545
1546 // At the end destroy virtual base objects.
Aaron Ballman445a9392014-03-13 16:15:17 +00001547 for (const auto &VI : RD->vbases()) {
1548 const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl();
Marcin Swiderski20b88732010-10-05 05:37:00 +00001549 if (!CD->hasTrivialDestructor()) {
1550 autoCreateBlock();
Aaron Ballman445a9392014-03-13 16:15:17 +00001551 appendBaseDtor(Block, &VI);
Marcin Swiderski20b88732010-10-05 05:37:00 +00001552 }
1553 }
1554
1555 // Before virtual bases destroy direct base objects.
Aaron Ballman574705e2014-03-13 15:41:46 +00001556 for (const auto &BI : RD->bases()) {
1557 if (!BI.isVirtual()) {
1558 const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl();
David Blaikie0f2ae782012-01-24 04:51:48 +00001559 if (!CD->hasTrivialDestructor()) {
1560 autoCreateBlock();
Aaron Ballman574705e2014-03-13 15:41:46 +00001561 appendBaseDtor(Block, &BI);
David Blaikie0f2ae782012-01-24 04:51:48 +00001562 }
1563 }
Marcin Swiderski20b88732010-10-05 05:37:00 +00001564 }
1565
1566 // First destroy member objects.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001567 for (auto *FI : RD->fields()) {
Marcin Swiderski01769902010-10-25 07:05:54 +00001568 // Check for constant size array. Set type to array element type.
1569 QualType QT = FI->getType();
1570 if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1571 if (AT->getSize() == 0)
1572 continue;
1573 QT = AT->getElementType();
1574 }
1575
1576 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
Marcin Swiderski20b88732010-10-05 05:37:00 +00001577 if (!CD->hasTrivialDestructor()) {
1578 autoCreateBlock();
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001579 appendMemberDtor(Block, FI);
Marcin Swiderski20b88732010-10-05 05:37:00 +00001580 }
1581 }
1582}
1583
Marcin Swiderski5e415732010-09-30 23:05:00 +00001584/// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either
1585/// way return valid LocalScope object.
1586LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) {
David Blaikiec1334cc2015-08-13 22:12:21 +00001587 if (Scope)
1588 return Scope;
1589 llvm::BumpPtrAllocator &alloc = cfg->getAllocator();
1590 return new (alloc.Allocate<LocalScope>())
1591 LocalScope(BumpVectorContext(alloc), ScopePos);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001592}
1593
1594/// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement
Zhongxing Xu81714f22010-10-01 03:00:16 +00001595/// that should create implicit scope (e.g. if/else substatements).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001596void CFGBuilder::addLocalScopeForStmt(Stmt *S) {
Matthias Gehre351c2182017-07-12 07:04:19 +00001597 if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime)
Zhongxing Xu81714f22010-10-01 03:00:16 +00001598 return;
1599
Craig Topper25542942014-05-20 04:30:07 +00001600 LocalScope *Scope = nullptr;
Marcin Swiderski5e415732010-09-30 23:05:00 +00001601
1602 // For compound statement we will be creating explicit scope.
Chris Lattnerc8e630e2011-02-17 07:39:24 +00001603 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) {
Aaron Ballmanc7e4e212014-03-17 14:19:37 +00001604 for (auto *BI : CS->body()) {
1605 Stmt *SI = BI->stripLabelLikeStatements();
Chris Lattnerc8e630e2011-02-17 07:39:24 +00001606 if (DeclStmt *DS = dyn_cast<DeclStmt>(SI))
Marcin Swiderski5e415732010-09-30 23:05:00 +00001607 Scope = addLocalScopeForDeclStmt(DS, Scope);
1608 }
Zhongxing Xu81714f22010-10-01 03:00:16 +00001609 return;
Marcin Swiderski5e415732010-09-30 23:05:00 +00001610 }
1611
1612 // For any other statement scope will be implicit and as such will be
1613 // interesting only for DeclStmt.
Chandler Carrutha626d642011-09-10 00:02:34 +00001614 if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements()))
Zhongxing Xu307701e2010-10-01 03:09:09 +00001615 addLocalScopeForDeclStmt(DS);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001616}
1617
1618/// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will
1619/// reuse Scope if not NULL.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001620LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS,
Zhongxing Xu307701e2010-10-01 03:09:09 +00001621 LocalScope* Scope) {
Matthias Gehre351c2182017-07-12 07:04:19 +00001622 if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime)
Marcin Swiderski5e415732010-09-30 23:05:00 +00001623 return Scope;
1624
Aaron Ballman535bbcc2014-03-14 17:01:24 +00001625 for (auto *DI : DS->decls())
1626 if (VarDecl *VD = dyn_cast<VarDecl>(DI))
Marcin Swiderski5e415732010-09-30 23:05:00 +00001627 Scope = addLocalScopeForVarDecl(VD, Scope);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001628 return Scope;
1629}
1630
Matthias Gehre351c2182017-07-12 07:04:19 +00001631bool CFGBuilder::hasTrivialDestructor(VarDecl *VD) {
1632 // Check for const references bound to temporary. Set type to pointee.
1633 QualType QT = VD->getType();
1634 if (QT.getTypePtr()->isReferenceType()) {
1635 // Attempt to determine whether this declaration lifetime-extends a
1636 // temporary.
1637 //
1638 // FIXME: This is incorrect. Non-reference declarations can lifetime-extend
1639 // temporaries, and a single declaration can extend multiple temporaries.
1640 // We should look at the storage duration on each nested
1641 // MaterializeTemporaryExpr instead.
1642
1643 const Expr *Init = VD->getInit();
1644 if (!Init)
1645 return true;
1646
1647 // Lifetime-extending a temporary.
1648 bool FoundMTE = false;
1649 QT = getReferenceInitTemporaryType(*Context, Init, &FoundMTE);
1650 if (!FoundMTE)
1651 return true;
1652 }
1653
1654 // Check for constant size array. Set type to array element type.
1655 while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1656 if (AT->getSize() == 0)
1657 return true;
1658 QT = AT->getElementType();
1659 }
1660
1661 // Check if type is a C++ class with non-trivial destructor.
1662 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
1663 return !CD->hasDefinition() || CD->hasTrivialDestructor();
1664 return true;
1665}
1666
Marcin Swiderski5e415732010-09-30 23:05:00 +00001667/// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will
1668/// create add scope for automatic objects and temporary objects bound to
1669/// const reference. Will reuse Scope if not NULL.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001670LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD,
Zhongxing Xu307701e2010-10-01 03:09:09 +00001671 LocalScope* Scope) {
Matthias Gehre351c2182017-07-12 07:04:19 +00001672 assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) &&
1673 "AddImplicitDtors and AddLifetime cannot be used at the same time");
1674 if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime)
Marcin Swiderski5e415732010-09-30 23:05:00 +00001675 return Scope;
1676
1677 // Check if variable is local.
1678 switch (VD->getStorageClass()) {
1679 case SC_None:
1680 case SC_Auto:
1681 case SC_Register:
1682 break;
1683 default: return Scope;
1684 }
1685
Matthias Gehre351c2182017-07-12 07:04:19 +00001686 if (BuildOpts.AddImplicitDtors) {
1687 if (!hasTrivialDestructor(VD)) {
Zhongxing Xu614e17d2010-10-05 08:38:06 +00001688 // Add the variable to scope
1689 Scope = createOrReuseLocalScope(Scope);
1690 Scope->addVar(VD);
1691 ScopePos = Scope->begin();
1692 }
Matthias Gehre351c2182017-07-12 07:04:19 +00001693 return Scope;
1694 }
1695
1696 assert(BuildOpts.AddLifetime);
1697 // Add the variable to scope
1698 Scope = createOrReuseLocalScope(Scope);
1699 Scope->addVar(VD);
1700 ScopePos = Scope->begin();
Marcin Swiderski5e415732010-09-30 23:05:00 +00001701 return Scope;
1702}
1703
1704/// addLocalScopeAndDtors - For given statement add local scope for it and
1705/// add destructors that will cleanup the scope. Will reuse Scope if not NULL.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001706void CFGBuilder::addLocalScopeAndDtors(Stmt *S) {
Marcin Swiderski5e415732010-09-30 23:05:00 +00001707 LocalScope::const_iterator scopeBeginPos = ScopePos;
Zhongxing Xu81714f22010-10-01 03:00:16 +00001708 addLocalScopeForStmt(S);
Matthias Gehre351c2182017-07-12 07:04:19 +00001709 addAutomaticObjHandling(ScopePos, scopeBeginPos, S);
Marcin Swiderski5e415732010-09-30 23:05:00 +00001710}
1711
Marcin Swiderski321a7072010-09-30 22:54:37 +00001712/// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for
1713/// variables with automatic storage duration to CFGBlock's elements vector.
1714/// Elements will be prepended to physical beginning of the vector which
1715/// happens to be logical end. Use blocks terminator as statement that specifies
1716/// destructors call site.
Chandler Carruthad747252011-09-13 06:09:01 +00001717/// FIXME: This mechanism for adding automatic destructors doesn't handle
1718/// no-return destructors properly.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001719void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
Marcin Swiderski321a7072010-09-30 22:54:37 +00001720 LocalScope::const_iterator B, LocalScope::const_iterator E) {
Matthias Gehre351c2182017-07-12 07:04:19 +00001721 if (!BuildOpts.AddImplicitDtors)
1722 return;
Chandler Carruthad747252011-09-13 06:09:01 +00001723 BumpVectorContext &C = cfg->getBumpVectorContext();
1724 CFGBlock::iterator InsertPos
1725 = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C);
1726 for (LocalScope::const_iterator I = B; I != E; ++I)
1727 InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I,
1728 Blk->getTerminator());
Marcin Swiderski321a7072010-09-30 22:54:37 +00001729}
1730
Matthias Gehre351c2182017-07-12 07:04:19 +00001731/// prependAutomaticObjLifetimeWithTerminator - Prepend lifetime CFGElements for
1732/// variables with automatic storage duration to CFGBlock's elements vector.
1733/// Elements will be prepended to physical beginning of the vector which
1734/// happens to be logical end. Use blocks terminator as statement that specifies
1735/// where lifetime ends.
1736void CFGBuilder::prependAutomaticObjLifetimeWithTerminator(
1737 CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) {
1738 if (!BuildOpts.AddLifetime)
1739 return;
1740 BumpVectorContext &C = cfg->getBumpVectorContext();
1741 CFGBlock::iterator InsertPos =
1742 Blk->beginLifetimeEndsInsert(Blk->end(), B.distance(E), C);
1743 for (LocalScope::const_iterator I = B; I != E; ++I)
1744 InsertPos = Blk->insertLifetimeEnds(InsertPos, *I, Blk->getTerminator());
1745}
Eugene Zelenko38c70522017-12-07 21:55:09 +00001746
Ted Kremenek93668002009-07-17 22:18:43 +00001747/// Visit - Walk the subtree of a statement and add extra
Mike Stump31feda52009-07-17 01:31:16 +00001748/// blocks for ternary operators, &&, and ||. We also process "," and
1749/// DeclStmts (which may contain nested control-flow).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001750CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) {
Ted Kremenekbc1416d2010-04-30 22:25:53 +00001751 if (!S) {
1752 badCFG = true;
Craig Topper25542942014-05-20 04:30:07 +00001753 return nullptr;
Ted Kremenekbc1416d2010-04-30 22:25:53 +00001754 }
Jordy Rose17347372011-06-10 08:49:37 +00001755
1756 if (Expr *E = dyn_cast<Expr>(S))
1757 S = E->IgnoreParens();
1758
Ted Kremenek93668002009-07-17 22:18:43 +00001759 switch (S->getStmtClass()) {
1760 default:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001761 return VisitStmt(S, asc);
Ted Kremenek93668002009-07-17 22:18:43 +00001762
1763 case Stmt::AddrLabelExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001764 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001765
John McCallc07a0c72011-02-17 10:25:35 +00001766 case Stmt::BinaryConditionalOperatorClass:
1767 return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc);
1768
Ted Kremenek93668002009-07-17 22:18:43 +00001769 case Stmt::BinaryOperatorClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001770 return VisitBinaryOperator(cast<BinaryOperator>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001771
Ted Kremenek93668002009-07-17 22:18:43 +00001772 case Stmt::BlockExprClass:
Devin Coughlinb6029b72015-11-25 22:35:37 +00001773 return VisitBlockExpr(cast<BlockExpr>(S), asc);
Ted Kremenek93668002009-07-17 22:18:43 +00001774
Ted Kremenek93668002009-07-17 22:18:43 +00001775 case Stmt::BreakStmtClass:
1776 return VisitBreakStmt(cast<BreakStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001777
Ted Kremenek93668002009-07-17 22:18:43 +00001778 case Stmt::CallExprClass:
Ted Kremenek128d04d2010-08-31 18:47:34 +00001779 case Stmt::CXXOperatorCallExprClass:
John McCallc67067f2011-05-11 07:19:11 +00001780 case Stmt::CXXMemberCallExprClass:
Richard Smithc67fdd42012-03-07 08:35:16 +00001781 case Stmt::UserDefinedLiteralClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001782 return VisitCallExpr(cast<CallExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001783
Ted Kremenek93668002009-07-17 22:18:43 +00001784 case Stmt::CaseStmtClass:
1785 return VisitCaseStmt(cast<CaseStmt>(S));
1786
1787 case Stmt::ChooseExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001788 return VisitChooseExpr(cast<ChooseExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001789
Ted Kremenek93668002009-07-17 22:18:43 +00001790 case Stmt::CompoundStmtClass:
1791 return VisitCompoundStmt(cast<CompoundStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001792
Ted Kremenek93668002009-07-17 22:18:43 +00001793 case Stmt::ConditionalOperatorClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001794 return VisitConditionalOperator(cast<ConditionalOperator>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001795
Ted Kremenek93668002009-07-17 22:18:43 +00001796 case Stmt::ContinueStmtClass:
1797 return VisitContinueStmt(cast<ContinueStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001798
Ted Kremenekb27378c2010-01-19 20:40:33 +00001799 case Stmt::CXXCatchStmtClass:
1800 return VisitCXXCatchStmt(cast<CXXCatchStmt>(S));
1801
John McCall5d413782010-12-06 08:20:24 +00001802 case Stmt::ExprWithCleanupsClass:
1803 return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc);
Ted Kremenek82bfc862010-08-28 00:19:02 +00001804
Jordan Rosee5d53932012-08-23 18:10:53 +00001805 case Stmt::CXXDefaultArgExprClass:
Richard Smith852c9db2013-04-20 22:23:05 +00001806 case Stmt::CXXDefaultInitExprClass:
Jordan Rosee5d53932012-08-23 18:10:53 +00001807 // FIXME: The expression inside a CXXDefaultArgExpr is owned by the
1808 // called function's declaration, not by the caller. If we simply add
1809 // this expression to the CFG, we could end up with the same Expr
1810 // appearing multiple times.
1811 // PR13385 / <rdar://problem/12156507>
Richard Smith852c9db2013-04-20 22:23:05 +00001812 //
1813 // It's likewise possible for multiple CXXDefaultInitExprs for the same
1814 // expression to be used in the same function (through aggregate
1815 // initialization).
Jordan Rosee5d53932012-08-23 18:10:53 +00001816 return VisitStmt(S, asc);
1817
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00001818 case Stmt::CXXBindTemporaryExprClass:
1819 return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc);
1820
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00001821 case Stmt::CXXConstructExprClass:
1822 return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc);
1823
Jordan Rosec9176072014-01-13 17:59:19 +00001824 case Stmt::CXXNewExprClass:
1825 return VisitCXXNewExpr(cast<CXXNewExpr>(S), asc);
1826
Jordan Rosed2f40792013-09-03 17:00:57 +00001827 case Stmt::CXXDeleteExprClass:
1828 return VisitCXXDeleteExpr(cast<CXXDeleteExpr>(S), asc);
1829
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00001830 case Stmt::CXXFunctionalCastExprClass:
1831 return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc);
1832
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00001833 case Stmt::CXXTemporaryObjectExprClass:
1834 return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc);
1835
Ted Kremenekb27378c2010-01-19 20:40:33 +00001836 case Stmt::CXXThrowExprClass:
1837 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
Ted Kremenekdc03bd02010-08-02 23:46:59 +00001838
Ted Kremenekb27378c2010-01-19 20:40:33 +00001839 case Stmt::CXXTryStmtClass:
1840 return VisitCXXTryStmt(cast<CXXTryStmt>(S));
Ted Kremenekdc03bd02010-08-02 23:46:59 +00001841
Richard Smith02e85f32011-04-14 22:09:26 +00001842 case Stmt::CXXForRangeStmtClass:
1843 return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S));
1844
Ted Kremenek93668002009-07-17 22:18:43 +00001845 case Stmt::DeclStmtClass:
1846 return VisitDeclStmt(cast<DeclStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001847
Ted Kremenek93668002009-07-17 22:18:43 +00001848 case Stmt::DefaultStmtClass:
1849 return VisitDefaultStmt(cast<DefaultStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001850
Ted Kremenek93668002009-07-17 22:18:43 +00001851 case Stmt::DoStmtClass:
1852 return VisitDoStmt(cast<DoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001853
Ted Kremenek93668002009-07-17 22:18:43 +00001854 case Stmt::ForStmtClass:
1855 return VisitForStmt(cast<ForStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001856
Ted Kremenek93668002009-07-17 22:18:43 +00001857 case Stmt::GotoStmtClass:
1858 return VisitGotoStmt(cast<GotoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001859
Ted Kremenek93668002009-07-17 22:18:43 +00001860 case Stmt::IfStmtClass:
1861 return VisitIfStmt(cast<IfStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001862
Ted Kremenek8219b822010-12-16 07:46:53 +00001863 case Stmt::ImplicitCastExprClass:
1864 return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00001865
Ted Kremenek93668002009-07-17 22:18:43 +00001866 case Stmt::IndirectGotoStmtClass:
1867 return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001868
Ted Kremenek93668002009-07-17 22:18:43 +00001869 case Stmt::LabelStmtClass:
1870 return VisitLabelStmt(cast<LabelStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001871
Ted Kremenekda76a942012-04-12 20:34:52 +00001872 case Stmt::LambdaExprClass:
1873 return VisitLambdaExpr(cast<LambdaExpr>(S), asc);
1874
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00001875 case Stmt::MaterializeTemporaryExprClass:
1876 return VisitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(S),
1877 asc);
1878
Ted Kremenek5868ec62010-04-11 17:02:10 +00001879 case Stmt::MemberExprClass:
1880 return VisitMemberExpr(cast<MemberExpr>(S), asc);
1881
Ted Kremenek04268232011-11-05 00:10:15 +00001882 case Stmt::NullStmtClass:
1883 return Block;
1884
Ted Kremenek93668002009-07-17 22:18:43 +00001885 case Stmt::ObjCAtCatchStmtClass:
Mike Stump11289f42009-09-09 15:08:12 +00001886 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
1887
Ted Kremenek5022f1d2012-03-06 23:40:47 +00001888 case Stmt::ObjCAutoreleasePoolStmtClass:
1889 return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S));
1890
Ted Kremenek93668002009-07-17 22:18:43 +00001891 case Stmt::ObjCAtSynchronizedStmtClass:
1892 return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001893
Ted Kremenek93668002009-07-17 22:18:43 +00001894 case Stmt::ObjCAtThrowStmtClass:
1895 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001896
Ted Kremenek93668002009-07-17 22:18:43 +00001897 case Stmt::ObjCAtTryStmtClass:
1898 return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001899
Ted Kremenek93668002009-07-17 22:18:43 +00001900 case Stmt::ObjCForCollectionStmtClass:
1901 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001902
Ted Kremenek04268232011-11-05 00:10:15 +00001903 case Stmt::OpaqueValueExprClass:
Ted Kremenek93668002009-07-17 22:18:43 +00001904 return Block;
Mike Stump11289f42009-09-09 15:08:12 +00001905
John McCallfe96e0b2011-11-06 09:01:30 +00001906 case Stmt::PseudoObjectExprClass:
1907 return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S));
1908
Ted Kremenek93668002009-07-17 22:18:43 +00001909 case Stmt::ReturnStmtClass:
1910 return VisitReturnStmt(cast<ReturnStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001911
Nico Weber699670e2017-08-23 15:33:16 +00001912 case Stmt::SEHExceptStmtClass:
1913 return VisitSEHExceptStmt(cast<SEHExceptStmt>(S));
1914
1915 case Stmt::SEHFinallyStmtClass:
1916 return VisitSEHFinallyStmt(cast<SEHFinallyStmt>(S));
1917
1918 case Stmt::SEHLeaveStmtClass:
1919 return VisitSEHLeaveStmt(cast<SEHLeaveStmt>(S));
1920
1921 case Stmt::SEHTryStmtClass:
1922 return VisitSEHTryStmt(cast<SEHTryStmt>(S));
1923
Peter Collingbournee190dee2011-03-11 19:24:49 +00001924 case Stmt::UnaryExprOrTypeTraitExprClass:
1925 return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S),
1926 asc);
Mike Stump11289f42009-09-09 15:08:12 +00001927
Ted Kremenek93668002009-07-17 22:18:43 +00001928 case Stmt::StmtExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001929 return VisitStmtExpr(cast<StmtExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +00001930
Ted Kremenek93668002009-07-17 22:18:43 +00001931 case Stmt::SwitchStmtClass:
1932 return VisitSwitchStmt(cast<SwitchStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +00001933
Zhanyong Wan6dace612010-11-22 08:45:56 +00001934 case Stmt::UnaryOperatorClass:
1935 return VisitUnaryOperator(cast<UnaryOperator>(S), asc);
1936
Ted Kremenek93668002009-07-17 22:18:43 +00001937 case Stmt::WhileStmtClass:
1938 return VisitWhileStmt(cast<WhileStmt>(S));
1939 }
1940}
Mike Stump11289f42009-09-09 15:08:12 +00001941
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001942CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00001943 if (asc.alwaysAdd(*this, S)) {
Ted Kremenek93668002009-07-17 22:18:43 +00001944 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00001945 appendStmt(Block, S);
Mike Stump31feda52009-07-17 01:31:16 +00001946 }
Mike Stump11289f42009-09-09 15:08:12 +00001947
Ted Kremenek93668002009-07-17 22:18:43 +00001948 return VisitChildren(S);
Ted Kremenek9e248872007-08-27 21:27:44 +00001949}
Mike Stump31feda52009-07-17 01:31:16 +00001950
Ted Kremenek93668002009-07-17 22:18:43 +00001951/// VisitChildren - Visit the children of a Stmt.
Ted Kremenek8ae67872013-02-05 22:00:19 +00001952CFGBlock *CFGBuilder::VisitChildren(Stmt *S) {
1953 CFGBlock *B = Block;
Ted Kremenek828f6312011-02-21 22:11:26 +00001954
Ted Kremenek8ae67872013-02-05 22:00:19 +00001955 // Visit the children in their reverse order so that they appear in
1956 // left-to-right (natural) order in the CFG.
1957 reverse_children RChildren(S);
1958 for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end();
1959 I != E; ++I) {
1960 if (Stmt *Child = *I)
1961 if (CFGBlock *R = Visit(Child))
1962 B = R;
1963 }
1964 return B;
Ted Kremenek9e248872007-08-27 21:27:44 +00001965}
Mike Stump11289f42009-09-09 15:08:12 +00001966
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001967CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A,
1968 AddStmtChoice asc) {
Ted Kremenek93668002009-07-17 22:18:43 +00001969 AddressTakenLabels.insert(A->getLabel());
Ted Kremenek9e248872007-08-27 21:27:44 +00001970
Ted Kremenek7c58d352011-03-10 01:14:11 +00001971 if (asc.alwaysAdd(*this, A)) {
Ted Kremenek93668002009-07-17 22:18:43 +00001972 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00001973 appendStmt(Block, A);
Ted Kremenek93668002009-07-17 22:18:43 +00001974 }
Ted Kremenek81e14852007-08-27 19:46:09 +00001975
Ted Kremenek9aae5132007-08-23 21:42:29 +00001976 return Block;
1977}
Mike Stump11289f42009-09-09 15:08:12 +00001978
Zhanyong Wan6dace612010-11-22 08:45:56 +00001979CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U,
Ted Kremenek8219b822010-12-16 07:46:53 +00001980 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00001981 if (asc.alwaysAdd(*this, U)) {
Zhanyong Wan6dace612010-11-22 08:45:56 +00001982 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00001983 appendStmt(Block, U);
Zhanyong Wan6dace612010-11-22 08:45:56 +00001984 }
1985
Ted Kremenek8219b822010-12-16 07:46:53 +00001986 return Visit(U->getSubExpr(), AddStmtChoice());
Zhanyong Wan6dace612010-11-22 08:45:56 +00001987}
1988
Ted Kremeneka16436f2012-07-14 05:04:06 +00001989CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) {
1990 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
1991 appendStmt(ConfluenceBlock, B);
Mike Stump11289f42009-09-09 15:08:12 +00001992
Ted Kremeneka16436f2012-07-14 05:04:06 +00001993 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00001994 return nullptr;
Ted Kremeneka16436f2012-07-14 05:04:06 +00001995
Craig Topper25542942014-05-20 04:30:07 +00001996 return VisitLogicalOperator(B, nullptr, ConfluenceBlock,
1997 ConfluenceBlock).first;
Ted Kremenekb50e7162012-07-14 05:04:10 +00001998}
1999
2000std::pair<CFGBlock*, CFGBlock*>
2001CFGBuilder::VisitLogicalOperator(BinaryOperator *B,
2002 Stmt *Term,
2003 CFGBlock *TrueBlock,
2004 CFGBlock *FalseBlock) {
Ted Kremenekb50e7162012-07-14 05:04:10 +00002005 // Introspect the RHS. If it is a nested logical operation, we recursively
2006 // build the CFG using this function. Otherwise, resort to default
2007 // CFG construction behavior.
2008 Expr *RHS = B->getRHS()->IgnoreParens();
2009 CFGBlock *RHSBlock, *ExitBlock;
2010
2011 do {
2012 if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS))
2013 if (B_RHS->isLogicalOp()) {
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00002014 std::tie(RHSBlock, ExitBlock) =
Ted Kremenekb50e7162012-07-14 05:04:10 +00002015 VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock);
2016 break;
2017 }
2018
2019 // The RHS is not a nested logical operation. Don't push the terminator
2020 // down further, but instead visit RHS and construct the respective
2021 // pieces of the CFG, and link up the RHSBlock with the terminator
2022 // we have been provided.
2023 ExitBlock = RHSBlock = createBlock(false);
2024
Richard Trieu6a6af522017-01-04 00:46:30 +00002025 // Even though KnownVal is only used in the else branch of the next
2026 // conditional, tryEvaluateBool performs additional checking on the
2027 // Expr, so it should be called unconditionally.
2028 TryResult KnownVal = tryEvaluateBool(RHS);
2029 if (!KnownVal.isKnown())
2030 KnownVal = tryEvaluateBool(B);
2031
Ted Kremenekb50e7162012-07-14 05:04:10 +00002032 if (!Term) {
2033 assert(TrueBlock == FalseBlock);
2034 addSuccessor(RHSBlock, TrueBlock);
2035 }
2036 else {
2037 RHSBlock->setTerminator(Term);
Ted Kremenek782f0032014-03-07 02:25:53 +00002038 addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse());
2039 addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue());
Ted Kremenekb50e7162012-07-14 05:04:10 +00002040 }
2041
2042 Block = RHSBlock;
2043 RHSBlock = addStmt(RHS);
2044 }
2045 while (false);
2046
2047 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002048 return std::make_pair(nullptr, nullptr);
Ted Kremenekb50e7162012-07-14 05:04:10 +00002049
2050 // Generate the blocks for evaluating the LHS.
2051 Expr *LHS = B->getLHS()->IgnoreParens();
2052
2053 if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS))
2054 if (B_LHS->isLogicalOp()) {
2055 if (B->getOpcode() == BO_LOr)
2056 FalseBlock = RHSBlock;
2057 else
2058 TrueBlock = RHSBlock;
2059
2060 // For the LHS, treat 'B' as the terminator that we want to sink
2061 // into the nested branch. The RHS always gets the top-most
2062 // terminator.
2063 return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock);
2064 }
2065
2066 // Create the block evaluating the LHS.
2067 // This contains the '&&' or '||' as the terminator.
Ted Kremeneka16436f2012-07-14 05:04:06 +00002068 CFGBlock *LHSBlock = createBlock(false);
2069 LHSBlock->setTerminator(B);
2070
Ted Kremeneka16436f2012-07-14 05:04:06 +00002071 Block = LHSBlock;
Ted Kremenekb50e7162012-07-14 05:04:10 +00002072 CFGBlock *EntryLHSBlock = addStmt(LHS);
2073
2074 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002075 return std::make_pair(nullptr, nullptr);
Ted Kremeneka16436f2012-07-14 05:04:06 +00002076
2077 // See if this is a known constant.
Ted Kremenekb50e7162012-07-14 05:04:10 +00002078 TryResult KnownVal = tryEvaluateBool(LHS);
Ted Kremeneka16436f2012-07-14 05:04:06 +00002079
2080 // Now link the LHSBlock with RHSBlock.
2081 if (B->getOpcode() == BO_LOr) {
Ted Kremenek782f0032014-03-07 02:25:53 +00002082 addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse());
2083 addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue());
Ted Kremeneka16436f2012-07-14 05:04:06 +00002084 } else {
2085 assert(B->getOpcode() == BO_LAnd);
Ted Kremenek782f0032014-03-07 02:25:53 +00002086 addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse());
2087 addSuccessor(LHSBlock, FalseBlock, !KnownVal.isTrue());
Ted Kremeneka16436f2012-07-14 05:04:06 +00002088 }
2089
Ted Kremenekb50e7162012-07-14 05:04:10 +00002090 return std::make_pair(EntryLHSBlock, ExitBlock);
Ted Kremeneka16436f2012-07-14 05:04:06 +00002091}
2092
2093CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B,
2094 AddStmtChoice asc) {
2095 // && or ||
2096 if (B->isLogicalOp())
2097 return VisitLogicalOperator(B);
2098
Zhanyong Wan59f09c72010-11-22 19:32:14 +00002099 if (B->getOpcode() == BO_Comma) { // ,
Ted Kremenekfe9b7682009-07-17 22:57:50 +00002100 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002101 appendStmt(Block, B);
Ted Kremenek93668002009-07-17 22:18:43 +00002102 addStmt(B->getRHS());
2103 return addStmt(B->getLHS());
2104 }
Zhanyong Wan59f09c72010-11-22 19:32:14 +00002105
2106 if (B->isAssignmentOp()) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002107 if (asc.alwaysAdd(*this, B)) {
Zhongxing Xu41cdf582010-06-03 06:23:18 +00002108 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002109 appendStmt(Block, B);
Zhongxing Xu41cdf582010-06-03 06:23:18 +00002110 }
Ted Kremenek8219b822010-12-16 07:46:53 +00002111 Visit(B->getLHS());
Marcin Swiderski77232492010-10-24 08:21:40 +00002112 return Visit(B->getRHS());
Zhongxing Xu41cdf582010-06-03 06:23:18 +00002113 }
Mike Stump11289f42009-09-09 15:08:12 +00002114
Ted Kremenek7c58d352011-03-10 01:14:11 +00002115 if (asc.alwaysAdd(*this, B)) {
Marcin Swiderski77232492010-10-24 08:21:40 +00002116 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002117 appendStmt(Block, B);
Marcin Swiderski77232492010-10-24 08:21:40 +00002118 }
2119
Zhongxing Xud95ccd52010-10-27 03:23:10 +00002120 CFGBlock *RBlock = Visit(B->getRHS());
2121 CFGBlock *LBlock = Visit(B->getLHS());
2122 // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr
2123 // containing a DoStmt, and the LHS doesn't create a new block, then we should
2124 // return RBlock. Otherwise we'll incorrectly return NULL.
2125 return (LBlock ? LBlock : RBlock);
Ted Kremenek93668002009-07-17 22:18:43 +00002126}
2127
Ted Kremeneke2499842012-04-12 20:03:44 +00002128CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00002129 if (asc.alwaysAdd(*this, E)) {
Ted Kremenek470bfa42009-11-25 01:34:30 +00002130 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002131 appendStmt(Block, E);
Ted Kremenek470bfa42009-11-25 01:34:30 +00002132 }
2133 return Block;
Ted Kremenek93668002009-07-17 22:18:43 +00002134}
2135
Ted Kremenek93668002009-07-17 22:18:43 +00002136CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
2137 // "break" is a control-flow statement. Thus we stop processing the current
2138 // block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002139 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002140 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002141
Ted Kremenek93668002009-07-17 22:18:43 +00002142 // Now create a new block that ends with the break statement.
2143 Block = createBlock(false);
2144 Block->setTerminator(B);
Mike Stump11289f42009-09-09 15:08:12 +00002145
Ted Kremenek93668002009-07-17 22:18:43 +00002146 // If there is no target for the break, then we are looking at an incomplete
2147 // AST. This means that the CFG cannot be constructed.
Ted Kremenekef81e9e2011-01-07 19:37:16 +00002148 if (BreakJumpTarget.block) {
Matthias Gehre351c2182017-07-12 07:04:19 +00002149 addAutomaticObjHandling(ScopePos, BreakJumpTarget.scopePosition, B);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00002150 addSuccessor(Block, BreakJumpTarget.block);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00002151 } else
Ted Kremenek93668002009-07-17 22:18:43 +00002152 badCFG = true;
Mike Stump11289f42009-09-09 15:08:12 +00002153
Ted Kremenek9aae5132007-08-23 21:42:29 +00002154 return Block;
2155}
Mike Stump11289f42009-09-09 15:08:12 +00002156
Sebastian Redl31ad7542011-03-13 17:09:40 +00002157static bool CanThrow(Expr *E, ASTContext &Ctx) {
Mike Stump04c68512010-01-21 15:20:48 +00002158 QualType Ty = E->getType();
2159 if (Ty->isFunctionPointerType())
2160 Ty = Ty->getAs<PointerType>()->getPointeeType();
2161 else if (Ty->isBlockPointerType())
2162 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002163
Mike Stump04c68512010-01-21 15:20:48 +00002164 const FunctionType *FT = Ty->getAs<FunctionType>();
2165 if (FT) {
2166 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT))
Richard Smithd3b5c9082012-07-27 04:22:15 +00002167 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) &&
Richard Smithf623c962012-04-17 00:58:00 +00002168 Proto->isNothrow(Ctx))
Mike Stump04c68512010-01-21 15:20:48 +00002169 return false;
2170 }
2171 return true;
2172}
2173
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002174CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) {
John McCallc67067f2011-05-11 07:19:11 +00002175 // Compute the callee type.
2176 QualType calleeType = C->getCallee()->getType();
2177 if (calleeType == Context->BoundMemberTy) {
2178 QualType boundType = Expr::findBoundMemberType(C->getCallee());
2179
2180 // We should only get a null bound type if processing a dependent
2181 // CFG. Recover by assuming nothing.
2182 if (!boundType.isNull()) calleeType = boundType;
Ted Kremenek93668002009-07-17 22:18:43 +00002183 }
Mike Stump8c5d7992009-07-25 21:26:53 +00002184
John McCallc67067f2011-05-11 07:19:11 +00002185 // If this is a call to a no-return function, this stops the block here.
2186 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
2187
Mike Stump04c68512010-01-21 15:20:48 +00002188 bool AddEHEdge = false;
Mike Stump92244b02010-01-19 22:00:14 +00002189
2190 // Languages without exceptions are assumed to not throw.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002191 if (Context->getLangOpts().Exceptions) {
Ted Kremeneke97b1eb2010-09-14 23:41:16 +00002192 if (BuildOpts.AddEHEdges)
Mike Stump04c68512010-01-21 15:20:48 +00002193 AddEHEdge = true;
Mike Stump92244b02010-01-19 22:00:14 +00002194 }
2195
Jordan Rose5374c072013-08-19 16:27:28 +00002196 // If this is a call to a builtin function, it might not actually evaluate
2197 // its arguments. Don't add them to the CFG if this is the case.
2198 bool OmitArguments = false;
2199
Mike Stump92244b02010-01-19 22:00:14 +00002200 if (FunctionDecl *FD = C->getDirectCallee()) {
Nico Weber758fbac2018-02-13 21:31:47 +00002201 if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context))
Mike Stump8c5d7992009-07-25 21:26:53 +00002202 NoReturn = true;
Mike Stump92244b02010-01-19 22:00:14 +00002203 if (FD->hasAttr<NoThrowAttr>())
Mike Stump04c68512010-01-21 15:20:48 +00002204 AddEHEdge = false;
Jordan Rose5374c072013-08-19 16:27:28 +00002205 if (FD->getBuiltinID() == Builtin::BI__builtin_object_size)
2206 OmitArguments = true;
Mike Stump92244b02010-01-19 22:00:14 +00002207 }
Mike Stump8c5d7992009-07-25 21:26:53 +00002208
Sebastian Redl31ad7542011-03-13 17:09:40 +00002209 if (!CanThrow(C->getCallee(), *Context))
Mike Stump04c68512010-01-21 15:20:48 +00002210 AddEHEdge = false;
2211
Jordan Rose5374c072013-08-19 16:27:28 +00002212 if (OmitArguments) {
2213 assert(!NoReturn && "noreturn calls with unevaluated args not implemented");
2214 assert(!AddEHEdge && "EH calls with unevaluated args not implemented");
2215 autoCreateBlock();
2216 appendStmt(Block, C);
2217 return Visit(C->getCallee());
2218 }
2219
2220 if (!NoReturn && !AddEHEdge) {
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00002221 return VisitStmt(C, asc.withAlwaysAdd(true));
Jordan Rose5374c072013-08-19 16:27:28 +00002222 }
Mike Stump11289f42009-09-09 15:08:12 +00002223
Mike Stump92244b02010-01-19 22:00:14 +00002224 if (Block) {
2225 Succ = Block;
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002226 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002227 return nullptr;
Mike Stump92244b02010-01-19 22:00:14 +00002228 }
Mike Stump11289f42009-09-09 15:08:12 +00002229
Chandler Carrutha70991b2011-09-13 09:13:49 +00002230 if (NoReturn)
2231 Block = createNoReturnBlock();
2232 else
2233 Block = createBlock();
2234
Ted Kremenek2866bab2011-03-10 01:14:08 +00002235 appendStmt(Block, C);
Mike Stump8c5d7992009-07-25 21:26:53 +00002236
Mike Stump04c68512010-01-21 15:20:48 +00002237 if (AddEHEdge) {
Mike Stump92244b02010-01-19 22:00:14 +00002238 // Add exceptional edges.
2239 if (TryTerminatedBlock)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002240 addSuccessor(Block, TryTerminatedBlock);
Mike Stump92244b02010-01-19 22:00:14 +00002241 else
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002242 addSuccessor(Block, &cfg->getExit());
Mike Stump92244b02010-01-19 22:00:14 +00002243 }
Mike Stump11289f42009-09-09 15:08:12 +00002244
Mike Stump8c5d7992009-07-25 21:26:53 +00002245 return VisitChildren(C);
Ted Kremenek93668002009-07-17 22:18:43 +00002246}
Ted Kremenek9aae5132007-08-23 21:42:29 +00002247
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002248CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C,
2249 AddStmtChoice asc) {
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002250 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002251 appendStmt(ConfluenceBlock, C);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002252 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002253 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002254
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00002255 AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
Ted Kremenek21822592009-07-17 18:20:32 +00002256 Succ = ConfluenceBlock;
Craig Topper25542942014-05-20 04:30:07 +00002257 Block = nullptr;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002258 CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002259 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002260 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002261
Ted Kremenek21822592009-07-17 18:20:32 +00002262 Succ = ConfluenceBlock;
Craig Topper25542942014-05-20 04:30:07 +00002263 Block = nullptr;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002264 CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002265 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002266 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002267
Ted Kremenek21822592009-07-17 18:20:32 +00002268 Block = createBlock(false);
Mike Stump773582d2009-07-23 23:25:26 +00002269 // See if this is a known constant.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002270 const TryResult& KnownVal = tryEvaluateBool(C->getCond());
Craig Topper25542942014-05-20 04:30:07 +00002271 addSuccessor(Block, KnownVal.isFalse() ? nullptr : LHSBlock);
2272 addSuccessor(Block, KnownVal.isTrue() ? nullptr : RHSBlock);
Ted Kremenek21822592009-07-17 18:20:32 +00002273 Block->setTerminator(C);
Mike Stump11289f42009-09-09 15:08:12 +00002274 return addStmt(C->getCond());
Ted Kremenek21822592009-07-17 18:20:32 +00002275}
Mike Stump11289f42009-09-09 15:08:12 +00002276
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002277CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) {
Matthias Gehre09a134e2015-11-14 00:36:50 +00002278 LocalScope::const_iterator scopeBeginPos = ScopePos;
Matthias Gehre351c2182017-07-12 07:04:19 +00002279 addLocalScopeForStmt(C);
2280
Matthias Gehre09a134e2015-11-14 00:36:50 +00002281 if (!C->body_empty() && !isa<ReturnStmt>(*C->body_rbegin())) {
Richard Smitha547eb22016-07-14 00:11:03 +00002282 // If the body ends with a ReturnStmt, the dtors will be added in
2283 // VisitReturnStmt.
Matthias Gehre351c2182017-07-12 07:04:19 +00002284 addAutomaticObjHandling(ScopePos, scopeBeginPos, C);
Matthias Gehre09a134e2015-11-14 00:36:50 +00002285 }
2286
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002287 CFGBlock *LastBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00002288
2289 for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
2290 I != E; ++I ) {
Ted Kremenek4f2ab5a2010-08-17 21:00:06 +00002291 // If we hit a segment of code just containing ';' (NullStmts), we can
2292 // get a null block back. In such cases, just use the LastBlock
2293 if (CFGBlock *newBlock = addStmt(*I))
2294 LastBlock = newBlock;
Mike Stump11289f42009-09-09 15:08:12 +00002295
Ted Kremenekce499c22009-08-27 23:16:26 +00002296 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002297 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002298 }
Mike Stump92244b02010-01-19 22:00:14 +00002299
Ted Kremenek93668002009-07-17 22:18:43 +00002300 return LastBlock;
2301}
Mike Stump11289f42009-09-09 15:08:12 +00002302
John McCallc07a0c72011-02-17 10:25:35 +00002303CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C,
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002304 AddStmtChoice asc) {
John McCallc07a0c72011-02-17 10:25:35 +00002305 const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C);
Craig Topper25542942014-05-20 04:30:07 +00002306 const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : nullptr);
John McCallc07a0c72011-02-17 10:25:35 +00002307
Ted Kremenek51d40b02009-07-17 18:15:54 +00002308 // Create the confluence block that will "merge" the results of the ternary
2309 // expression.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002310 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00002311 appendStmt(ConfluenceBlock, C);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002312 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002313 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002314
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00002315 AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
Ted Kremenek5868ec62010-04-11 17:02:10 +00002316
Ted Kremenek51d40b02009-07-17 18:15:54 +00002317 // Create a block for the LHS expression if there is an LHS expression. A
2318 // GCC extension allows LHS to be NULL, causing the condition to be the
2319 // value that is returned instead.
2320 // e.g: x ?: y is shorthand for: x ? x : y;
2321 Succ = ConfluenceBlock;
Craig Topper25542942014-05-20 04:30:07 +00002322 Block = nullptr;
2323 CFGBlock *LHSBlock = nullptr;
John McCallc07a0c72011-02-17 10:25:35 +00002324 const Expr *trueExpr = C->getTrueExpr();
2325 if (trueExpr != opaqueValue) {
2326 LHSBlock = Visit(C->getTrueExpr(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002327 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002328 return nullptr;
2329 Block = nullptr;
Ted Kremenek51d40b02009-07-17 18:15:54 +00002330 }
Ted Kremenekd8138012011-02-24 03:09:15 +00002331 else
2332 LHSBlock = ConfluenceBlock;
Mike Stump11289f42009-09-09 15:08:12 +00002333
Ted Kremenek51d40b02009-07-17 18:15:54 +00002334 // Create the block for the RHS expression.
2335 Succ = ConfluenceBlock;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002336 CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002337 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002338 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002339
Richard Smithf676e452012-07-24 21:02:14 +00002340 // If the condition is a logical '&&' or '||', build a more accurate CFG.
2341 if (BinaryOperator *Cond =
2342 dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens()))
2343 if (Cond->isLogicalOp())
2344 return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first;
2345
Ted Kremenek51d40b02009-07-17 18:15:54 +00002346 // Create the block that will contain the condition.
2347 Block = createBlock(false);
Mike Stump11289f42009-09-09 15:08:12 +00002348
Mike Stump773582d2009-07-23 23:25:26 +00002349 // See if this is a known constant.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002350 const TryResult& KnownVal = tryEvaluateBool(C->getCond());
Ted Kremenek5a095272014-03-04 21:53:26 +00002351 addSuccessor(Block, LHSBlock, !KnownVal.isFalse());
2352 addSuccessor(Block, RHSBlock, !KnownVal.isTrue());
Ted Kremenek51d40b02009-07-17 18:15:54 +00002353 Block->setTerminator(C);
John McCallc07a0c72011-02-17 10:25:35 +00002354 Expr *condExpr = C->getCond();
John McCall68cc3352011-02-19 03:13:26 +00002355
Ted Kremenekd8138012011-02-24 03:09:15 +00002356 if (opaqueValue) {
2357 // Run the condition expression if it's not trivially expressed in
2358 // terms of the opaque value (or if there is no opaque value).
2359 if (condExpr != opaqueValue)
2360 addStmt(condExpr);
John McCall68cc3352011-02-19 03:13:26 +00002361
Ted Kremenekd8138012011-02-24 03:09:15 +00002362 // Before that, run the common subexpression if there was one.
2363 // At least one of this or the above will be run.
2364 return addStmt(BCO->getCommon());
2365 }
2366
2367 return addStmt(condExpr);
Ted Kremenek51d40b02009-07-17 18:15:54 +00002368}
2369
Ted Kremenek93668002009-07-17 22:18:43 +00002370CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
Ted Kremenek6878c362011-05-10 18:42:15 +00002371 // Check if the Decl is for an __label__. If so, elide it from the
2372 // CFG entirely.
2373 if (isa<LabelDecl>(*DS->decl_begin()))
2374 return Block;
2375
Ted Kremenek3a601142011-05-24 20:41:31 +00002376 // This case also handles static_asserts.
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002377 if (DS->isSingleDecl())
2378 return VisitDeclSubExpr(DS);
Mike Stump11289f42009-09-09 15:08:12 +00002379
Craig Topper25542942014-05-20 04:30:07 +00002380 CFGBlock *B = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002381
Jordan Rose8c6c8a92012-07-20 18:50:48 +00002382 // Build an individual DeclStmt for each decl.
2383 for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(),
2384 E = DS->decl_rend();
2385 I != E; ++I) {
Ted Kremenek93668002009-07-17 22:18:43 +00002386 // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
Benjamin Kramerc3f89252016-10-20 14:27:22 +00002387 unsigned A = alignof(DeclStmt) < 8 ? 8 : alignof(DeclStmt);
Mike Stump11289f42009-09-09 15:08:12 +00002388
Ted Kremenek93668002009-07-17 22:18:43 +00002389 // Allocate the DeclStmt using the BumpPtrAllocator. It will get
2390 // automatically freed with the CFG.
2391 DeclGroupRef DG(*I);
2392 Decl *D = *I;
Mike Stump11289f42009-09-09 15:08:12 +00002393 void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
Ted Kremenek93668002009-07-17 22:18:43 +00002394 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
Jordan Rosecf10ea82013-06-06 21:53:45 +00002395 cfg->addSyntheticDeclStmt(DSNew, DS);
Mike Stump11289f42009-09-09 15:08:12 +00002396
Ted Kremenek93668002009-07-17 22:18:43 +00002397 // Append the fake DeclStmt to block.
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002398 B = VisitDeclSubExpr(DSNew);
Ted Kremenek93668002009-07-17 22:18:43 +00002399 }
Mike Stump11289f42009-09-09 15:08:12 +00002400
2401 return B;
Ted Kremenek93668002009-07-17 22:18:43 +00002402}
Mike Stump11289f42009-09-09 15:08:12 +00002403
Ted Kremenek93668002009-07-17 22:18:43 +00002404/// VisitDeclSubExpr - Utility method to add block-level expressions for
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002405/// DeclStmts and initializers in them.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002406CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002407 assert(DS->isSingleDecl() && "Can handle single declarations only.");
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002408 VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002409
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002410 if (!VD) {
Jordan Rose5250b872013-06-03 22:59:41 +00002411 // Of everything that can be declared in a DeclStmt, only VarDecls impact
2412 // runtime semantics.
Ted Kremenek93668002009-07-17 22:18:43 +00002413 return Block;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002414 }
Mike Stump11289f42009-09-09 15:08:12 +00002415
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002416 bool HasTemporaries = false;
2417
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002418 // Guard static initializers under a branch.
Craig Topper25542942014-05-20 04:30:07 +00002419 CFGBlock *blockAfterStaticInit = nullptr;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002420
2421 if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) {
2422 // For static variables, we need to create a branch to track
2423 // whether or not they are initialized.
2424 if (Block) {
2425 Succ = Block;
Craig Topper25542942014-05-20 04:30:07 +00002426 Block = nullptr;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002427 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002428 return nullptr;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002429 }
2430 blockAfterStaticInit = Succ;
2431 }
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002432
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002433 // Destructors of temporaries in initialization expression should be called
2434 // after initialization finishes.
Ted Kremenek93668002009-07-17 22:18:43 +00002435 Expr *Init = VD->getInit();
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002436 if (Init) {
John McCall5d413782010-12-06 08:20:24 +00002437 HasTemporaries = isa<ExprWithCleanups>(Init);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002438
Jordan Rose6d671cc2012-09-05 22:55:23 +00002439 if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002440 // Generate destructors for temporaries in initialization expression.
Manuel Klimekdeb02622014-08-08 07:37:13 +00002441 TempDtorContext Context;
Manuel Klimekb5616c92014-08-07 10:42:17 +00002442 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
2443 /*BindToTemporary=*/false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002444 }
2445 }
2446
2447 autoCreateBlock();
Ted Kremenek8219b822010-12-16 07:46:53 +00002448 appendStmt(Block, DS);
Artem Dergachev5fc10332018-02-10 01:55:23 +00002449
Artem Dergachev783a4572018-02-23 22:20:39 +00002450 findConstructionContexts(
2451 ConstructionContext::create(cfg->getBumpVectorContext(), DS),
2452 Init);
Artem Dergachev5fc10332018-02-10 01:55:23 +00002453
Ted Kremenek213d0532012-03-22 05:57:43 +00002454 // Keep track of the last non-null block, as 'Block' can be nulled out
2455 // if the initializer expression is something like a 'while' in a
2456 // statement-expression.
2457 CFGBlock *LastBlock = Block;
Mike Stump11289f42009-09-09 15:08:12 +00002458
Ted Kremenek93668002009-07-17 22:18:43 +00002459 if (Init) {
Ted Kremenek213d0532012-03-22 05:57:43 +00002460 if (HasTemporaries) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00002461 // For expression with temporaries go directly to subexpression to omit
2462 // generating destructors for the second time.
Ted Kremenek213d0532012-03-22 05:57:43 +00002463 ExprWithCleanups *EC = cast<ExprWithCleanups>(Init);
2464 if (CFGBlock *newBlock = Visit(EC->getSubExpr()))
2465 LastBlock = newBlock;
2466 }
2467 else {
2468 if (CFGBlock *newBlock = Visit(Init))
2469 LastBlock = newBlock;
2470 }
Ted Kremenek93668002009-07-17 22:18:43 +00002471 }
Mike Stump11289f42009-09-09 15:08:12 +00002472
Ted Kremenek93668002009-07-17 22:18:43 +00002473 // If the type of VD is a VLA, then we must process its size expressions.
John McCall424cec92011-01-19 06:33:43 +00002474 for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr());
Craig Topper25542942014-05-20 04:30:07 +00002475 VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) {
Ted Kremeneke6ee6712012-11-13 00:12:13 +00002476 if (CFGBlock *newBlock = addStmt(VA->getSizeExpr()))
2477 LastBlock = newBlock;
2478 }
Mike Stump11289f42009-09-09 15:08:12 +00002479
Marcin Swiderski667ffec2010-10-01 00:23:17 +00002480 // Remove variable from local scope.
2481 if (ScopePos && VD == *ScopePos)
2482 ++ScopePos;
2483
Ted Kremenek338c3aa2013-03-29 00:09:28 +00002484 CFGBlock *B = LastBlock;
Ted Kremenekf82d5782013-03-29 00:42:56 +00002485 if (blockAfterStaticInit) {
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002486 Succ = B;
Ted Kremenek338c3aa2013-03-29 00:09:28 +00002487 Block = createBlock(false);
2488 Block->setTerminator(DS);
Ted Kremenekf82d5782013-03-29 00:42:56 +00002489 addSuccessor(Block, blockAfterStaticInit);
Ted Kremenek338c3aa2013-03-29 00:09:28 +00002490 addSuccessor(Block, B);
2491 B = Block;
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00002492 }
2493
2494 return B;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002495}
2496
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002497CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) {
Mike Stump31feda52009-07-17 01:31:16 +00002498 // We may see an if statement in the middle of a basic block, or it may be the
2499 // first statement we are processing. In either case, we create a new basic
2500 // block. First, we create the blocks for the then...else statements, and
2501 // then we create the block containing the if statement. If we were in the
Ted Kremenek0868eea2009-09-24 18:45:41 +00002502 // middle of a block, we stop processing that block. That block is then the
2503 // implicit successor for the "then" and "else" clauses.
Mike Stump31feda52009-07-17 01:31:16 +00002504
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002505 // Save local scope position because in case of condition variable ScopePos
2506 // won't be restored when traversing AST.
2507 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2508
Richard Smitha547eb22016-07-14 00:11:03 +00002509 // Create local scope for C++17 if init-stmt if one exists.
Richard Smith509bbd12017-01-13 22:16:41 +00002510 if (Stmt *Init = I->getInit())
Richard Smitha547eb22016-07-14 00:11:03 +00002511 addLocalScopeForStmt(Init);
Richard Smitha547eb22016-07-14 00:11:03 +00002512
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002513 // Create local scope for possible condition variable.
2514 // Store scope position. Add implicit destructor.
Richard Smith509bbd12017-01-13 22:16:41 +00002515 if (VarDecl *VD = I->getConditionVariable())
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002516 addLocalScopeForVarDecl(VD);
Richard Smith509bbd12017-01-13 22:16:41 +00002517
Matthias Gehre351c2182017-07-12 07:04:19 +00002518 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), I);
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002519
Chris Lattner57540c52011-04-15 05:22:18 +00002520 // The block we were processing is now finished. Make it the successor
Mike Stump31feda52009-07-17 01:31:16 +00002521 // block.
2522 if (Block) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00002523 Succ = Block;
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002524 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002525 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002526 }
Mike Stump31feda52009-07-17 01:31:16 +00002527
Ted Kremenek0bcdc982009-07-17 18:04:55 +00002528 // Process the false branch.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002529 CFGBlock *ElseBlock = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00002530
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002531 if (Stmt *Else = I->getElse()) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00002532 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump31feda52009-07-17 01:31:16 +00002533
Ted Kremenek9aae5132007-08-23 21:42:29 +00002534 // NULL out Block so that the recursive call to Visit will
Mike Stump31feda52009-07-17 01:31:16 +00002535 // create a new basic block.
Craig Topper25542942014-05-20 04:30:07 +00002536 Block = nullptr;
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002537
2538 // If branch is not a compound statement create implicit scope
2539 // and add destructors.
2540 if (!isa<CompoundStmt>(Else))
2541 addLocalScopeAndDtors(Else);
2542
Ted Kremenek93668002009-07-17 22:18:43 +00002543 ElseBlock = addStmt(Else);
Mike Stump31feda52009-07-17 01:31:16 +00002544
Ted Kremenekbbad8ce2007-08-30 18:13:31 +00002545 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
2546 ElseBlock = sv.get();
Ted Kremenek55957a82009-05-02 00:13:27 +00002547 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002548 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002549 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00002550 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00002551 }
Mike Stump31feda52009-07-17 01:31:16 +00002552
Ted Kremenek0bcdc982009-07-17 18:04:55 +00002553 // Process the true branch.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002554 CFGBlock *ThenBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002555 {
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002556 Stmt *Then = I->getThen();
Ted Kremenek1362b8b2010-01-19 20:46:35 +00002557 assert(Then);
Ted Kremenek9aae5132007-08-23 21:42:29 +00002558 SaveAndRestore<CFGBlock*> sv(Succ);
Craig Topper25542942014-05-20 04:30:07 +00002559 Block = nullptr;
Marcin Swiderskif883ade2010-10-01 00:52:17 +00002560
2561 // If branch is not a compound statement create implicit scope
2562 // and add destructors.
2563 if (!isa<CompoundStmt>(Then))
2564 addLocalScopeAndDtors(Then);
2565
Ted Kremenek93668002009-07-17 22:18:43 +00002566 ThenBlock = addStmt(Then);
Mike Stump31feda52009-07-17 01:31:16 +00002567
Ted Kremenek1b379512009-04-01 03:52:47 +00002568 if (!ThenBlock) {
2569 // We can reach here if the "then" body has all NullStmts.
2570 // Create an empty block so we can distinguish between true and false
2571 // branches in path-sensitive analyses.
2572 ThenBlock = createBlock(false);
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00002573 addSuccessor(ThenBlock, sv.get());
Mike Stump31feda52009-07-17 01:31:16 +00002574 } else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002575 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002576 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00002577 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00002578 }
2579
Ted Kremenekb50e7162012-07-14 05:04:10 +00002580 // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by
2581 // having these handle the actual control-flow jump. Note that
2582 // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)"
2583 // we resort to the old control-flow behavior. This special handling
2584 // removes infeasible paths from the control-flow graph by having the
2585 // control-flow transfer of '&&' or '||' go directly into the then/else
2586 // blocks directly.
Richard Smith509bbd12017-01-13 22:16:41 +00002587 BinaryOperator *Cond =
2588 I->getConditionVariable()
2589 ? nullptr
2590 : dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens());
2591 CFGBlock *LastBlock;
2592 if (Cond && Cond->isLogicalOp())
2593 LastBlock = VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first;
2594 else {
2595 // Now create a new block containing the if statement.
2596 Block = createBlock(false);
Ted Kremenekb50e7162012-07-14 05:04:10 +00002597
Richard Smith509bbd12017-01-13 22:16:41 +00002598 // Set the terminator of the new block to the If statement.
2599 Block->setTerminator(I);
Mike Stump31feda52009-07-17 01:31:16 +00002600
Richard Smith509bbd12017-01-13 22:16:41 +00002601 // See if this is a known constant.
2602 const TryResult &KnownVal = tryEvaluateBool(I->getCond());
Mike Stump31feda52009-07-17 01:31:16 +00002603
Richard Smith509bbd12017-01-13 22:16:41 +00002604 // Add the successors. If we know that specific branches are
2605 // unreachable, inform addSuccessor() of that knowledge.
2606 addSuccessor(Block, ThenBlock, /* isReachable = */ !KnownVal.isFalse());
2607 addSuccessor(Block, ElseBlock, /* isReachable = */ !KnownVal.isTrue());
Mike Stump773582d2009-07-23 23:25:26 +00002608
Richard Smith509bbd12017-01-13 22:16:41 +00002609 // Add the condition as the last statement in the new block. This may
2610 // create new blocks as the condition may contain control-flow. Any newly
2611 // created blocks will be pointed to be "Block".
2612 LastBlock = addStmt(I->getCond());
Mike Stump31feda52009-07-17 01:31:16 +00002613
Richard Smith509bbd12017-01-13 22:16:41 +00002614 // If the IfStmt contains a condition variable, add it and its
2615 // initializer to the CFG.
2616 if (const DeclStmt* DS = I->getConditionVariableDeclStmt()) {
2617 autoCreateBlock();
2618 LastBlock = addStmt(const_cast<DeclStmt *>(DS));
2619 }
Ted Kremeneka7bcbde2009-12-23 04:49:01 +00002620 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002621
Richard Smitha547eb22016-07-14 00:11:03 +00002622 // Finally, if the IfStmt contains a C++17 init-stmt, add it to the CFG.
2623 if (Stmt *Init = I->getInit()) {
2624 autoCreateBlock();
2625 LastBlock = addStmt(Init);
2626 }
2627
Ted Kremeneke6ee6712012-11-13 00:12:13 +00002628 return LastBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002629}
Mike Stump31feda52009-07-17 01:31:16 +00002630
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002631CFGBlock *CFGBuilder::VisitReturnStmt(ReturnStmt *R) {
Ted Kremenek0868eea2009-09-24 18:45:41 +00002632 // If we were in the middle of a block we stop processing that block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00002633 //
Mike Stump31feda52009-07-17 01:31:16 +00002634 // NOTE: If a "return" appears in the middle of a block, this means that the
2635 // code afterwards is DEAD (unreachable). We still keep a basic block
2636 // for that code; a simple "mark-and-sweep" from the entry block will be
2637 // able to report such dead blocks.
Ted Kremenek9aae5132007-08-23 21:42:29 +00002638
2639 // Create the new block.
2640 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00002641
Matthias Gehre351c2182017-07-12 07:04:19 +00002642 addAutomaticObjHandling(ScopePos, LocalScope::const_iterator(), R);
Pavel Labath921e7652013-09-06 08:12:48 +00002643
Artem Dergachev783a4572018-02-23 22:20:39 +00002644 findConstructionContexts(
2645 ConstructionContext::create(cfg->getBumpVectorContext(), R),
2646 R->getRetValue());
Artem Dergachev9ac2e112018-02-12 22:36:36 +00002647
Pavel Labath921e7652013-09-06 08:12:48 +00002648 // If the one of the destructors does not return, we already have the Exit
2649 // block as a successor.
2650 if (!Block->hasNoReturnElement())
2651 addSuccessor(Block, &cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +00002652
2653 // Add the return statement to the block. This may create new blocks if R
2654 // contains control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00002655 return VisitStmt(R, AddStmtChoice::AlwaysAdd);
Ted Kremenek9aae5132007-08-23 21:42:29 +00002656}
2657
Nico Weber699670e2017-08-23 15:33:16 +00002658CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) {
2659 // SEHExceptStmt are treated like labels, so they are the first statement in a
2660 // block.
2661
2662 // Save local scope position because in case of exception variable ScopePos
2663 // won't be restored when traversing AST.
2664 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2665
2666 addStmt(ES->getBlock());
2667 CFGBlock *SEHExceptBlock = Block;
2668 if (!SEHExceptBlock)
2669 SEHExceptBlock = createBlock();
2670
2671 appendStmt(SEHExceptBlock, ES);
2672
2673 // Also add the SEHExceptBlock as a label, like with regular labels.
2674 SEHExceptBlock->setLabel(ES);
2675
2676 // Bail out if the CFG is bad.
2677 if (badCFG)
2678 return nullptr;
2679
2680 // We set Block to NULL to allow lazy creation of a new block (if necessary).
2681 Block = nullptr;
2682
2683 return SEHExceptBlock;
2684}
2685
2686CFGBlock *CFGBuilder::VisitSEHFinallyStmt(SEHFinallyStmt *FS) {
2687 return VisitCompoundStmt(FS->getBlock());
2688}
2689
2690CFGBlock *CFGBuilder::VisitSEHLeaveStmt(SEHLeaveStmt *LS) {
2691 // "__leave" is a control-flow statement. Thus we stop processing the current
2692 // block.
2693 if (badCFG)
2694 return nullptr;
2695
2696 // Now create a new block that ends with the __leave statement.
2697 Block = createBlock(false);
2698 Block->setTerminator(LS);
2699
2700 // If there is no target for the __leave, then we are looking at an incomplete
2701 // AST. This means that the CFG cannot be constructed.
2702 if (SEHLeaveJumpTarget.block) {
2703 addAutomaticObjHandling(ScopePos, SEHLeaveJumpTarget.scopePosition, LS);
2704 addSuccessor(Block, SEHLeaveJumpTarget.block);
2705 } else
2706 badCFG = true;
2707
2708 return Block;
2709}
2710
2711CFGBlock *CFGBuilder::VisitSEHTryStmt(SEHTryStmt *Terminator) {
2712 // "__try"/"__except"/"__finally" is a control-flow statement. Thus we stop
2713 // processing the current block.
2714 CFGBlock *SEHTrySuccessor = nullptr;
2715
2716 if (Block) {
2717 if (badCFG)
2718 return nullptr;
2719 SEHTrySuccessor = Block;
2720 } else SEHTrySuccessor = Succ;
2721
2722 // FIXME: Implement __finally support.
2723 if (Terminator->getFinallyHandler())
2724 return NYS();
2725
2726 CFGBlock *PrevSEHTryTerminatedBlock = TryTerminatedBlock;
2727
2728 // Create a new block that will contain the __try statement.
2729 CFGBlock *NewTryTerminatedBlock = createBlock(false);
2730
2731 // Add the terminator in the __try block.
2732 NewTryTerminatedBlock->setTerminator(Terminator);
2733
2734 if (SEHExceptStmt *Except = Terminator->getExceptHandler()) {
2735 // The code after the try is the implicit successor if there's an __except.
2736 Succ = SEHTrySuccessor;
2737 Block = nullptr;
2738 CFGBlock *ExceptBlock = VisitSEHExceptStmt(Except);
2739 if (!ExceptBlock)
2740 return nullptr;
2741 // Add this block to the list of successors for the block with the try
2742 // statement.
2743 addSuccessor(NewTryTerminatedBlock, ExceptBlock);
2744 }
2745 if (PrevSEHTryTerminatedBlock)
2746 addSuccessor(NewTryTerminatedBlock, PrevSEHTryTerminatedBlock);
2747 else
2748 addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
2749
2750 // The code after the try is the implicit successor.
2751 Succ = SEHTrySuccessor;
2752
2753 // Save the current "__try" context.
2754 SaveAndRestore<CFGBlock *> save_try(TryTerminatedBlock,
2755 NewTryTerminatedBlock);
2756 cfg->addTryDispatchBlock(TryTerminatedBlock);
2757
2758 // Save the current value for the __leave target.
2759 // All __leaves should go to the code following the __try
2760 // (FIXME: or if the __try has a __finally, to the __finally.)
2761 SaveAndRestore<JumpTarget> save_break(SEHLeaveJumpTarget);
2762 SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos);
2763
2764 assert(Terminator->getTryBlock() && "__try must contain a non-NULL body");
2765 Block = nullptr;
2766 return addStmt(Terminator->getTryBlock());
2767}
2768
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002769CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00002770 // Get the block of the labeled statement. Add it to our map.
Ted Kremenek93668002009-07-17 22:18:43 +00002771 addStmt(L->getSubStmt());
Chris Lattnerc8e630e2011-02-17 07:39:24 +00002772 CFGBlock *LabelBlock = Block;
Mike Stump31feda52009-07-17 01:31:16 +00002773
Ted Kremenek93668002009-07-17 22:18:43 +00002774 if (!LabelBlock) // This can happen when the body is empty, i.e.
2775 LabelBlock = createBlock(); // scopes that only contains NullStmts.
Mike Stump31feda52009-07-17 01:31:16 +00002776
Chris Lattnerc8e630e2011-02-17 07:39:24 +00002777 assert(LabelMap.find(L->getDecl()) == LabelMap.end() &&
2778 "label already in map");
2779 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00002780
2781 // Labels partition blocks, so this is the end of the basic block we were
2782 // processing (L is the block's label). Because this is label (and we have
2783 // already processed the substatement) there is no extra control-flow to worry
2784 // about.
Ted Kremenek71eca012007-08-29 23:20:49 +00002785 LabelBlock->setLabel(L);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002786 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002787 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00002788
2789 // We set Block to NULL to allow lazy creation of a new block (if necessary);
Craig Topper25542942014-05-20 04:30:07 +00002790 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00002791
Ted Kremenek9aae5132007-08-23 21:42:29 +00002792 // This block is now the implicit successor of other blocks.
2793 Succ = LabelBlock;
Mike Stump31feda52009-07-17 01:31:16 +00002794
Ted Kremenek9aae5132007-08-23 21:42:29 +00002795 return LabelBlock;
2796}
2797
Devin Coughlinb6029b72015-11-25 22:35:37 +00002798CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) {
2799 CFGBlock *LastBlock = VisitNoRecurse(E, asc);
2800 for (const BlockDecl::Capture &CI : E->getBlockDecl()->captures()) {
2801 if (Expr *CopyExpr = CI.getCopyExpr()) {
2802 CFGBlock *Tmp = Visit(CopyExpr);
2803 if (Tmp)
2804 LastBlock = Tmp;
2805 }
2806 }
2807 return LastBlock;
2808}
2809
Ted Kremenekda76a942012-04-12 20:34:52 +00002810CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) {
2811 CFGBlock *LastBlock = VisitNoRecurse(E, asc);
2812 for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(),
2813 et = E->capture_init_end(); it != et; ++it) {
2814 if (Expr *Init = *it) {
2815 CFGBlock *Tmp = Visit(Init);
Craig Topper25542942014-05-20 04:30:07 +00002816 if (Tmp)
Ted Kremenekda76a942012-04-12 20:34:52 +00002817 LastBlock = Tmp;
2818 }
2819 }
2820 return LastBlock;
2821}
2822
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002823CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) {
Mike Stump31feda52009-07-17 01:31:16 +00002824 // Goto is a control-flow statement. Thus we stop processing the current
2825 // block and create a new one.
Ted Kremenek93668002009-07-17 22:18:43 +00002826
Ted Kremenek9aae5132007-08-23 21:42:29 +00002827 Block = createBlock(false);
2828 Block->setTerminator(G);
Mike Stump31feda52009-07-17 01:31:16 +00002829
2830 // If we already know the mapping to the label block add the successor now.
Ted Kremenek9aae5132007-08-23 21:42:29 +00002831 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
Mike Stump31feda52009-07-17 01:31:16 +00002832
Ted Kremenek9aae5132007-08-23 21:42:29 +00002833 if (I == LabelMap.end())
2834 // We will need to backpatch this block later.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00002835 BackpatchBlocks.push_back(JumpSource(Block, ScopePos));
2836 else {
2837 JumpTarget JT = I->second;
Matthias Gehre351c2182017-07-12 07:04:19 +00002838 addAutomaticObjHandling(ScopePos, JT.scopePosition, G);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00002839 addSuccessor(Block, JT.block);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00002840 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00002841
Mike Stump31feda52009-07-17 01:31:16 +00002842 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002843}
2844
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002845CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) {
Craig Topper25542942014-05-20 04:30:07 +00002846 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00002847
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00002848 // Save local scope position because in case of condition variable ScopePos
2849 // won't be restored when traversing AST.
2850 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2851
2852 // Create local scope for init statement and possible condition variable.
2853 // Add destructor for init statement and condition variable.
2854 // Store scope position for continue statement.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002855 if (Stmt *Init = F->getInit())
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00002856 addLocalScopeForStmt(Init);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00002857 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
2858
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002859 if (VarDecl *VD = F->getConditionVariable())
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00002860 addLocalScopeForVarDecl(VD);
2861 LocalScope::const_iterator ContinueScopePos = ScopePos;
2862
Matthias Gehre351c2182017-07-12 07:04:19 +00002863 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), F);
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00002864
Peter Szecsi999a25f2017-08-19 11:19:16 +00002865 addLoopExit(F);
2866
Mike Stump014b3ea2009-07-21 01:12:51 +00002867 // "for" is a control-flow statement. Thus we stop processing the current
2868 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00002869 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002870 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002871 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002872 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00002873 } else
2874 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00002875
Ted Kremenek304a9532010-05-21 20:30:15 +00002876 // Save the current value for the break targets.
2877 // All breaks should go to the code following the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00002878 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00002879 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Ted Kremenek304a9532010-05-21 20:30:15 +00002880
Craig Topper25542942014-05-20 04:30:07 +00002881 CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr;
Mike Stump773582d2009-07-23 23:25:26 +00002882
Ted Kremenek9aae5132007-08-23 21:42:29 +00002883 // Now create the loop body.
2884 {
Ted Kremenek1362b8b2010-01-19 20:46:35 +00002885 assert(F->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00002886
Ted Kremenekb50e7162012-07-14 05:04:10 +00002887 // Save the current values for Block, Succ, continue and break targets.
2888 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
2889 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00002890
Ted Kremenekb50e7162012-07-14 05:04:10 +00002891 // Create an empty block to represent the transition block for looping back
2892 // to the head of the loop. If we have increment code, it will
2893 // go in this block as well.
2894 Block = Succ = TransitionBlock = createBlock(false);
2895 TransitionBlock->setLoopTarget(F);
Mike Stump31feda52009-07-17 01:31:16 +00002896
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002897 if (Stmt *I = F->getInc()) {
Mike Stump31feda52009-07-17 01:31:16 +00002898 // Generate increment code in its own basic block. This is the target of
2899 // continue statements.
Ted Kremenek93668002009-07-17 22:18:43 +00002900 Succ = addStmt(I);
Ted Kremenekb0746ca2008-09-04 21:48:47 +00002901 }
Mike Stump31feda52009-07-17 01:31:16 +00002902
Ted Kremenek902393b2009-04-28 00:51:56 +00002903 // Finish up the increment (or empty) block if it hasn't been already.
2904 if (Block) {
2905 assert(Block == Succ);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002906 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002907 return nullptr;
2908 Block = nullptr;
Ted Kremenek902393b2009-04-28 00:51:56 +00002909 }
Mike Stump31feda52009-07-17 01:31:16 +00002910
Ted Kremenekb50e7162012-07-14 05:04:10 +00002911 // The starting block for the loop increment is the block that should
2912 // represent the 'loop target' for looping back to the start of the loop.
2913 ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
2914 ContinueJumpTarget.block->setLoopTarget(F);
Mike Stump31feda52009-07-17 01:31:16 +00002915
Ted Kremenekb50e7162012-07-14 05:04:10 +00002916 // Loop body should end with destructor of Condition variable (if any).
Matthias Gehre351c2182017-07-12 07:04:19 +00002917 addAutomaticObjHandling(ScopePos, LoopBeginScopePos, F);
Ted Kremenek902393b2009-04-28 00:51:56 +00002918
Marcin Swiderski6d5ee0c2010-10-01 01:38:14 +00002919 // If body is not a compound statement create implicit scope
2920 // and add destructors.
2921 if (!isa<CompoundStmt>(F->getBody()))
2922 addLocalScopeAndDtors(F->getBody());
2923
Mike Stump31feda52009-07-17 01:31:16 +00002924 // Now populate the body block, and in the process create new blocks as we
2925 // walk the body of the loop.
Ted Kremenekb50e7162012-07-14 05:04:10 +00002926 BodyBlock = addStmt(F->getBody());
Ted Kremeneke9610502007-08-30 18:39:40 +00002927
Ted Kremenekb50e7162012-07-14 05:04:10 +00002928 if (!BodyBlock) {
2929 // In the case of "for (...;...;...);" we can have a null BodyBlock.
2930 // Use the continue jump target as the proxy for the body.
2931 BodyBlock = ContinueJumpTarget.block;
2932 }
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002933 else if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002934 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002935 }
Ted Kremenekb50e7162012-07-14 05:04:10 +00002936
2937 // Because of short-circuit evaluation, the condition of the loop can span
2938 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
2939 // evaluate the condition.
Craig Topper25542942014-05-20 04:30:07 +00002940 CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00002941
Ted Kremenekb50e7162012-07-14 05:04:10 +00002942 do {
2943 Expr *C = F->getCond();
2944
2945 // Specially handle logical operators, which have a slightly
2946 // more optimal CFG representation.
Richard Smithf676e452012-07-24 21:02:14 +00002947 if (BinaryOperator *Cond =
Craig Topper25542942014-05-20 04:30:07 +00002948 dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : nullptr))
Ted Kremenekb50e7162012-07-14 05:04:10 +00002949 if (Cond->isLogicalOp()) {
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00002950 std::tie(EntryConditionBlock, ExitConditionBlock) =
Ted Kremenekb50e7162012-07-14 05:04:10 +00002951 VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor);
2952 break;
2953 }
2954
2955 // The default case when not handling logical operators.
2956 EntryConditionBlock = ExitConditionBlock = createBlock(false);
2957 ExitConditionBlock->setTerminator(F);
2958
2959 // See if this is a known constant.
2960 TryResult KnownVal(true);
2961
2962 if (C) {
2963 // Now add the actual condition to the condition block.
2964 // Because the condition itself may contain control-flow, new blocks may
2965 // be created. Thus we update "Succ" after adding the condition.
2966 Block = ExitConditionBlock;
2967 EntryConditionBlock = addStmt(C);
2968
2969 // If this block contains a condition variable, add both the condition
2970 // variable and initializer to the CFG.
2971 if (VarDecl *VD = F->getConditionVariable()) {
2972 if (Expr *Init = VD->getInit()) {
2973 autoCreateBlock();
2974 appendStmt(Block, F->getConditionVariableDeclStmt());
2975 EntryConditionBlock = addStmt(Init);
2976 assert(Block == EntryConditionBlock);
2977 }
2978 }
2979
2980 if (Block && badCFG)
Craig Topper25542942014-05-20 04:30:07 +00002981 return nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00002982
2983 KnownVal = tryEvaluateBool(C);
2984 }
2985
2986 // Add the loop body entry as a successor to the condition.
Craig Topper25542942014-05-20 04:30:07 +00002987 addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock);
Ted Kremenekb50e7162012-07-14 05:04:10 +00002988 // Link up the condition block with the code that follows the loop. (the
2989 // false branch).
Craig Topper25542942014-05-20 04:30:07 +00002990 addSuccessor(ExitConditionBlock,
2991 KnownVal.isTrue() ? nullptr : LoopSuccessor);
Ted Kremenekb50e7162012-07-14 05:04:10 +00002992 } while (false);
2993
2994 // Link up the loop-back block to the entry condition block.
2995 addSuccessor(TransitionBlock, EntryConditionBlock);
2996
2997 // The condition block is the implicit successor for any code above the loop.
2998 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00002999
Ted Kremenek9aae5132007-08-23 21:42:29 +00003000 // If the loop contains initialization, create a new block for those
Mike Stump31feda52009-07-17 01:31:16 +00003001 // statements. This block can also contain statements that precede the loop.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003002 if (Stmt *I = F->getInit()) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00003003 Block = createBlock();
Ted Kremenek81e14852007-08-27 19:46:09 +00003004 return addStmt(I);
Ted Kremenek9aae5132007-08-23 21:42:29 +00003005 }
Zhanyong Wan59f09c72010-11-22 19:32:14 +00003006
3007 // There is no loop initialization. We are thus basically a while loop.
3008 // NULL out Block to force lazy block construction.
Craig Topper25542942014-05-20 04:30:07 +00003009 Block = nullptr;
Zhanyong Wan59f09c72010-11-22 19:32:14 +00003010 Succ = EntryConditionBlock;
3011 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003012}
3013
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00003014CFGBlock *
3015CFGBuilder::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE,
3016 AddStmtChoice asc) {
3017 findConstructionContexts(
3018 ConstructionContext::create(cfg->getBumpVectorContext(), MTE),
3019 MTE->getTemporary());
3020
3021 return VisitStmt(MTE, asc);
3022}
3023
Ted Kremenek5868ec62010-04-11 17:02:10 +00003024CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00003025 if (asc.alwaysAdd(*this, M)) {
Ted Kremenek5868ec62010-04-11 17:02:10 +00003026 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00003027 appendStmt(Block, M);
Ted Kremenek5868ec62010-04-11 17:02:10 +00003028 }
Ted Kremenek8219b822010-12-16 07:46:53 +00003029 return Visit(M->getBase());
Ted Kremenek5868ec62010-04-11 17:02:10 +00003030}
3031
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003032CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
Ted Kremenek9d56e642008-11-11 17:10:00 +00003033 // Objective-C fast enumeration 'for' statements:
3034 // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
3035 //
3036 // for ( Type newVariable in collection_expression ) { statements }
3037 //
3038 // becomes:
3039 //
3040 // prologue:
3041 // 1. collection_expression
3042 // T. jump to loop_entry
3043 // loop_entry:
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003044 // 1. side-effects of element expression
Ted Kremenek9d56e642008-11-11 17:10:00 +00003045 // 1. ObjCForCollectionStmt [performs binding to newVariable]
3046 // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil]
3047 // TB:
3048 // statements
3049 // T. jump to loop_entry
3050 // FB:
3051 // what comes after
3052 //
3053 // and
3054 //
3055 // Type existingItem;
3056 // for ( existingItem in expression ) { statements }
3057 //
3058 // becomes:
3059 //
Mike Stump31feda52009-07-17 01:31:16 +00003060 // the same with newVariable replaced with existingItem; the binding works
3061 // the same except that for one ObjCForCollectionStmt::getElement() returns
3062 // a DeclStmt and the other returns a DeclRefExpr.
Mike Stump31feda52009-07-17 01:31:16 +00003063
Craig Topper25542942014-05-20 04:30:07 +00003064 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003065
Ted Kremenek9d56e642008-11-11 17:10:00 +00003066 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003067 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003068 return nullptr;
Ted Kremenek9d56e642008-11-11 17:10:00 +00003069 LoopSuccessor = Block;
Craig Topper25542942014-05-20 04:30:07 +00003070 Block = nullptr;
Ted Kremenek93668002009-07-17 22:18:43 +00003071 } else
3072 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00003073
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003074 // Build the condition blocks.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003075 CFGBlock *ExitConditionBlock = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00003076
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003077 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00003078 ExitConditionBlock->setTerminator(S);
3079
3080 // The last statement in the block should be the ObjCForCollectionStmt, which
3081 // performs the actual binding to 'element' and determines if there are any
3082 // more items in the collection.
Ted Kremenek8219b822010-12-16 07:46:53 +00003083 appendStmt(ExitConditionBlock, S);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003084 Block = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003085
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003086 // Walk the 'element' expression to see if there are any side-effects. We
Chris Lattner57540c52011-04-15 05:22:18 +00003087 // generate new blocks as necessary. We DON'T add the statement by default to
Mike Stump31feda52009-07-17 01:31:16 +00003088 // the CFG unless it contains control-flow.
Ted Kremenekc14efa72011-08-17 21:04:19 +00003089 CFGBlock *EntryConditionBlock = Visit(S->getElement(),
3090 AddStmtChoice::NotAlwaysAdd);
Mike Stump31feda52009-07-17 01:31:16 +00003091 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003092 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003093 return nullptr;
3094 Block = nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003095 }
Mike Stump31feda52009-07-17 01:31:16 +00003096
3097 // The condition block is the implicit successor for the loop body as well as
3098 // any code above the loop.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003099 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003100
Ted Kremenek9d56e642008-11-11 17:10:00 +00003101 // Now create the true branch.
Mike Stump31feda52009-07-17 01:31:16 +00003102 {
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003103 // Save the current values for Succ, continue and break targets.
Anna Zaks56b49752013-06-22 00:23:20 +00003104 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003105 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
Anna Zaks56b49752013-06-22 00:23:20 +00003106 save_break(BreakJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00003107
Anna Zaks56b49752013-06-22 00:23:20 +00003108 // Add an intermediate block between the BodyBlock and the
3109 // EntryConditionBlock to represent the "loop back" transition, for looping
3110 // back to the head of the loop.
Craig Topper25542942014-05-20 04:30:07 +00003111 CFGBlock *LoopBackBlock = nullptr;
Anna Zaks56b49752013-06-22 00:23:20 +00003112 Succ = LoopBackBlock = createBlock();
3113 LoopBackBlock->setLoopTarget(S);
3114
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003115 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Anna Zaks56b49752013-06-22 00:23:20 +00003116 ContinueJumpTarget = JumpTarget(Succ, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003117
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003118 CFGBlock *BodyBlock = addStmt(S->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003119
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003120 if (!BodyBlock)
Anna Zaks56b49752013-06-22 00:23:20 +00003121 BodyBlock = ContinueJumpTarget.block; // can happen for "for (X in Y) ;"
Ted Kremenek55957a82009-05-02 00:13:27 +00003122 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003123 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003124 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003125 }
Mike Stump31feda52009-07-17 01:31:16 +00003126
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003127 // This new body block is a successor to our "exit" condition block.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003128 addSuccessor(ExitConditionBlock, BodyBlock);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003129 }
Mike Stump31feda52009-07-17 01:31:16 +00003130
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003131 // Link up the condition block with the code that follows the loop.
3132 // (the false branch).
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003133 addSuccessor(ExitConditionBlock, LoopSuccessor);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003134
Ted Kremenek9d56e642008-11-11 17:10:00 +00003135 // Now create a prologue block to contain the collection expression.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00003136 Block = createBlock();
Ted Kremenek9d56e642008-11-11 17:10:00 +00003137 return addStmt(S->getCollection());
Mike Stump31feda52009-07-17 01:31:16 +00003138}
3139
Ted Kremenek5022f1d2012-03-06 23:40:47 +00003140CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) {
3141 // Inline the body.
3142 return addStmt(S->getSubStmt());
3143 // TODO: consider adding cleanups for the end of @autoreleasepool scope.
3144}
3145
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003146CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
Ted Kremenek49805452009-05-02 01:49:13 +00003147 // FIXME: Add locking 'primitives' to CFG for @synchronized.
Mike Stump31feda52009-07-17 01:31:16 +00003148
Ted Kremenek49805452009-05-02 01:49:13 +00003149 // Inline the body.
Ted Kremenek93668002009-07-17 22:18:43 +00003150 CFGBlock *SyncBlock = addStmt(S->getSynchBody());
Mike Stump31feda52009-07-17 01:31:16 +00003151
Ted Kremenekb3c657b2009-05-05 23:11:51 +00003152 // The sync body starts its own basic block. This makes it a little easier
3153 // for diagnostic clients.
3154 if (SyncBlock) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003155 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003156 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003157
Craig Topper25542942014-05-20 04:30:07 +00003158 Block = nullptr;
Ted Kremenekecc31c92010-05-13 16:38:08 +00003159 Succ = SyncBlock;
Ted Kremenekb3c657b2009-05-05 23:11:51 +00003160 }
Mike Stump31feda52009-07-17 01:31:16 +00003161
Ted Kremeneked12f1b2010-09-10 03:05:33 +00003162 // Add the @synchronized to the CFG.
3163 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00003164 appendStmt(Block, S);
Ted Kremeneked12f1b2010-09-10 03:05:33 +00003165
Ted Kremenek49805452009-05-02 01:49:13 +00003166 // Inline the sync expression.
Ted Kremenek93668002009-07-17 22:18:43 +00003167 return addStmt(S->getSynchExpr());
Ted Kremenek49805452009-05-02 01:49:13 +00003168}
Mike Stump31feda52009-07-17 01:31:16 +00003169
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003170CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
Ted Kremenek93668002009-07-17 22:18:43 +00003171 // FIXME
Ted Kremenek89be6522009-04-07 04:26:02 +00003172 return NYS();
Ted Kremenek89cc8ea2009-03-30 22:29:21 +00003173}
Ted Kremenek9d56e642008-11-11 17:10:00 +00003174
John McCallfe96e0b2011-11-06 09:01:30 +00003175CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) {
3176 autoCreateBlock();
3177
3178 // Add the PseudoObject as the last thing.
3179 appendStmt(Block, E);
3180
3181 CFGBlock *lastBlock = Block;
3182
3183 // Before that, evaluate all of the semantics in order. In
3184 // CFG-land, that means appending them in reverse order.
3185 for (unsigned i = E->getNumSemanticExprs(); i != 0; ) {
3186 Expr *Semantic = E->getSemanticExpr(--i);
3187
3188 // If the semantic is an opaque value, we're being asked to bind
3189 // it to its source expression.
3190 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic))
3191 Semantic = OVE->getSourceExpr();
3192
3193 if (CFGBlock *B = Visit(Semantic))
3194 lastBlock = B;
3195 }
3196
3197 return lastBlock;
3198}
3199
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003200CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) {
Craig Topper25542942014-05-20 04:30:07 +00003201 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003202
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003203 // Save local scope position because in case of condition variable ScopePos
3204 // won't be restored when traversing AST.
3205 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3206
3207 // Create local scope for possible condition variable.
3208 // Store scope position for continue statement.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003209 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003210 if (VarDecl *VD = W->getConditionVariable()) {
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003211 addLocalScopeForVarDecl(VD);
Matthias Gehre351c2182017-07-12 07:04:19 +00003212 addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W);
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003213 }
Peter Szecsi999a25f2017-08-19 11:19:16 +00003214 addLoopExit(W);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003215
Mike Stump014b3ea2009-07-21 01:12:51 +00003216 // "while" is a control-flow statement. Thus we stop processing the current
3217 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003218 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003219 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003220 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003221 LoopSuccessor = Block;
Craig Topper25542942014-05-20 04:30:07 +00003222 Block = nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003223 } else {
Ted Kremenek93668002009-07-17 22:18:43 +00003224 LoopSuccessor = Succ;
Ted Kremenek81e14852007-08-27 19:46:09 +00003225 }
Mike Stump31feda52009-07-17 01:31:16 +00003226
Craig Topper25542942014-05-20 04:30:07 +00003227 CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr;
Mike Stump773582d2009-07-23 23:25:26 +00003228
Ted Kremenek9aae5132007-08-23 21:42:29 +00003229 // Process the loop body.
3230 {
Ted Kremenek49936f72009-04-28 03:09:44 +00003231 assert(W->getBody());
Ted Kremenek9aae5132007-08-23 21:42:29 +00003232
Ted Kremenekb50e7162012-07-14 05:04:10 +00003233 // Save the current values for Block, Succ, continue and break targets.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003234 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3235 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
Ted Kremenekb50e7162012-07-14 05:04:10 +00003236 save_break(BreakJumpTarget);
Ted Kremenek49936f72009-04-28 03:09:44 +00003237
Mike Stump31feda52009-07-17 01:31:16 +00003238 // Create an empty block to represent the transition block for looping back
3239 // to the head of the loop.
Ted Kremenekb50e7162012-07-14 05:04:10 +00003240 Succ = TransitionBlock = createBlock(false);
3241 TransitionBlock->setLoopTarget(W);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003242 ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003243
Ted Kremenek9aae5132007-08-23 21:42:29 +00003244 // All breaks should go to the code following the loop.
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003245 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003246
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003247 // Loop body should end with destructor of Condition variable (if any).
Matthias Gehre351c2182017-07-12 07:04:19 +00003248 addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W);
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003249
3250 // If body is not a compound statement create implicit scope
3251 // and add destructors.
3252 if (!isa<CompoundStmt>(W->getBody()))
3253 addLocalScopeAndDtors(W->getBody());
3254
Ted Kremenek9aae5132007-08-23 21:42:29 +00003255 // Create the body. The returned block is the entry to the loop body.
Ted Kremenekb50e7162012-07-14 05:04:10 +00003256 BodyBlock = addStmt(W->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003257
Ted Kremeneke9610502007-08-30 18:39:40 +00003258 if (!BodyBlock)
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003259 BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;"
Ted Kremenekb50e7162012-07-14 05:04:10 +00003260 else if (Block && badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003261 return nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003262 }
3263
3264 // Because of short-circuit evaluation, the condition of the loop can span
3265 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
3266 // evaluate the condition.
Craig Topper25542942014-05-20 04:30:07 +00003267 CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003268
3269 do {
3270 Expr *C = W->getCond();
3271
3272 // Specially handle logical operators, which have a slightly
3273 // more optimal CFG representation.
Richard Smithf676e452012-07-24 21:02:14 +00003274 if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens()))
Ted Kremenekb50e7162012-07-14 05:04:10 +00003275 if (Cond->isLogicalOp()) {
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00003276 std::tie(EntryConditionBlock, ExitConditionBlock) =
3277 VisitLogicalOperator(Cond, W, BodyBlock, LoopSuccessor);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003278 break;
3279 }
3280
3281 // The default case when not handling logical operators.
Ted Kremenek451c4d52012-10-12 22:56:26 +00003282 ExitConditionBlock = createBlock(false);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003283 ExitConditionBlock->setTerminator(W);
3284
3285 // Now add the actual condition to the condition block.
3286 // Because the condition itself may contain control-flow, new blocks may
3287 // be created. Thus we update "Succ" after adding the condition.
3288 Block = ExitConditionBlock;
3289 Block = EntryConditionBlock = addStmt(C);
3290
3291 // If this block contains a condition variable, add both the condition
3292 // variable and initializer to the CFG.
3293 if (VarDecl *VD = W->getConditionVariable()) {
3294 if (Expr *Init = VD->getInit()) {
3295 autoCreateBlock();
3296 appendStmt(Block, W->getConditionVariableDeclStmt());
3297 EntryConditionBlock = addStmt(Init);
3298 assert(Block == EntryConditionBlock);
3299 }
Ted Kremenek55957a82009-05-02 00:13:27 +00003300 }
Mike Stump31feda52009-07-17 01:31:16 +00003301
Ted Kremenekb50e7162012-07-14 05:04:10 +00003302 if (Block && badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003303 return nullptr;
Ted Kremenekb50e7162012-07-14 05:04:10 +00003304
3305 // See if this is a known constant.
3306 const TryResult& KnownVal = tryEvaluateBool(C);
3307
Ted Kremenek30754282009-07-24 04:47:11 +00003308 // Add the loop body entry as a successor to the condition.
Craig Topper25542942014-05-20 04:30:07 +00003309 addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003310 // Link up the condition block with the code that follows the loop. (the
3311 // false branch).
Craig Topper25542942014-05-20 04:30:07 +00003312 addSuccessor(ExitConditionBlock,
3313 KnownVal.isTrue() ? nullptr : LoopSuccessor);
Ted Kremenekb50e7162012-07-14 05:04:10 +00003314 } while(false);
3315
3316 // Link up the loop-back block to the entry condition block.
3317 addSuccessor(TransitionBlock, EntryConditionBlock);
Mike Stump31feda52009-07-17 01:31:16 +00003318
3319 // There can be no more statements in the condition block since we loop back
3320 // to this block. NULL out Block to force lazy creation of another block.
Craig Topper25542942014-05-20 04:30:07 +00003321 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003322
Ted Kremenek1ce53c42009-12-24 01:34:10 +00003323 // Return the condition block, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00003324 Succ = EntryConditionBlock;
Ted Kremenek81e14852007-08-27 19:46:09 +00003325 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003326}
Mike Stump11289f42009-09-09 15:08:12 +00003327
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003328CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
Ted Kremenek93668002009-07-17 22:18:43 +00003329 // FIXME: For now we pretend that @catch and the code it contains does not
3330 // exit.
3331 return Block;
3332}
Mike Stump31feda52009-07-17 01:31:16 +00003333
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003334CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
Ted Kremenek93041ba2008-12-09 20:20:09 +00003335 // FIXME: This isn't complete. We basically treat @throw like a return
3336 // statement.
Mike Stump31feda52009-07-17 01:31:16 +00003337
Ted Kremenek0868eea2009-09-24 18:45:41 +00003338 // If we were in the middle of a block we stop processing that block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003339 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003340 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003341
Ted Kremenek93041ba2008-12-09 20:20:09 +00003342 // Create the new block.
3343 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00003344
Ted Kremenek93041ba2008-12-09 20:20:09 +00003345 // The Exit block is the only successor.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003346 addSuccessor(Block, &cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +00003347
3348 // Add the statement to the block. This may create new blocks if S contains
3349 // control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00003350 return VisitStmt(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek93041ba2008-12-09 20:20:09 +00003351}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003352
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003353CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) {
Ted Kremenek0868eea2009-09-24 18:45:41 +00003354 // If we were in the middle of a block we stop processing that block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003355 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003356 return nullptr;
Mike Stump8dd1b6b2009-07-22 22:56:04 +00003357
3358 // Create the new block.
3359 Block = createBlock(false);
3360
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003361 if (TryTerminatedBlock)
3362 // The current try statement is the only successor.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003363 addSuccessor(Block, TryTerminatedBlock);
Ted Kremenekdc03bd02010-08-02 23:46:59 +00003364 else
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003365 // otherwise the Exit block is the only successor.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003366 addSuccessor(Block, &cfg->getExit());
Mike Stump8dd1b6b2009-07-22 22:56:04 +00003367
3368 // Add the statement to the block. This may create new blocks if S contains
3369 // control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00003370 return VisitStmt(T, AddStmtChoice::AlwaysAdd);
Mike Stump8dd1b6b2009-07-22 22:56:04 +00003371}
3372
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003373CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) {
Craig Topper25542942014-05-20 04:30:07 +00003374 CFGBlock *LoopSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003375
Peter Szecsi999a25f2017-08-19 11:19:16 +00003376 addLoopExit(D);
3377
Mike Stump8d50b6a2009-07-21 01:27:50 +00003378 // "do...while" is a control-flow statement. Thus we stop processing the
3379 // current block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00003380 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003381 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003382 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003383 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003384 } else
3385 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00003386
3387 // Because of short-circuit evaluation, the condition of the loop can span
3388 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
3389 // evaluate the condition.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003390 CFGBlock *ExitConditionBlock = createBlock(false);
3391 CFGBlock *EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003392
Ted Kremenek81e14852007-08-27 19:46:09 +00003393 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00003394 ExitConditionBlock->setTerminator(D);
3395
3396 // Now add the actual condition to the condition block. Because the condition
3397 // itself may contain control-flow, new blocks may be created.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003398 if (Stmt *C = D->getCond()) {
Ted Kremenek81e14852007-08-27 19:46:09 +00003399 Block = ExitConditionBlock;
3400 EntryConditionBlock = addStmt(C);
Ted Kremenek55957a82009-05-02 00:13:27 +00003401 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003402 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003403 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003404 }
Ted Kremenek81e14852007-08-27 19:46:09 +00003405 }
Mike Stump31feda52009-07-17 01:31:16 +00003406
Ted Kremeneka1523a32008-02-27 07:20:00 +00003407 // The condition block is the implicit successor for the loop body.
Ted Kremenek81e14852007-08-27 19:46:09 +00003408 Succ = EntryConditionBlock;
3409
Mike Stump773582d2009-07-23 23:25:26 +00003410 // See if this is a known constant.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003411 const TryResult &KnownVal = tryEvaluateBool(D->getCond());
Mike Stump773582d2009-07-23 23:25:26 +00003412
Ted Kremenek9aae5132007-08-23 21:42:29 +00003413 // Process the loop body.
Craig Topper25542942014-05-20 04:30:07 +00003414 CFGBlock *BodyBlock = nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003415 {
Ted Kremenek1362b8b2010-01-19 20:46:35 +00003416 assert(D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003417
Ted Kremenek9aae5132007-08-23 21:42:29 +00003418 // Save the current values for Block, Succ, and continue and break targets
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003419 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3420 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
3421 save_break(BreakJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00003422
Ted Kremenek9aae5132007-08-23 21:42:29 +00003423 // All continues within this loop should go to the condition block
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003424 ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003425
Ted Kremenek9aae5132007-08-23 21:42:29 +00003426 // All breaks should go to the code following the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003427 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003428
Ted Kremenek9aae5132007-08-23 21:42:29 +00003429 // NULL out Block to force lazy instantiation of blocks for the body.
Craig Topper25542942014-05-20 04:30:07 +00003430 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003431
Marcin Swiderski1f4e15c2010-10-01 01:14:17 +00003432 // If body is not a compound statement create implicit scope
3433 // and add destructors.
3434 if (!isa<CompoundStmt>(D->getBody()))
3435 addLocalScopeAndDtors(D->getBody());
3436
Ted Kremenek9aae5132007-08-23 21:42:29 +00003437 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek93668002009-07-17 22:18:43 +00003438 BodyBlock = addStmt(D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00003439
Ted Kremeneke9610502007-08-30 18:39:40 +00003440 if (!BodyBlock)
Ted Kremenek39321aa2008-02-27 00:28:17 +00003441 BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
Ted Kremenek55957a82009-05-02 00:13:27 +00003442 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003443 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003444 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003445 }
Mike Stump31feda52009-07-17 01:31:16 +00003446
Daniel Marjamaki042a3c52016-10-03 08:28:51 +00003447 // Add an intermediate block between the BodyBlock and the
3448 // ExitConditionBlock to represent the "loop back" transition. Create an
3449 // empty block to represent the transition block for looping back to the
3450 // head of the loop.
3451 // FIXME: Can we do this more efficiently without adding another block?
3452 Block = nullptr;
3453 Succ = BodyBlock;
3454 CFGBlock *LoopBackBlock = createBlock();
3455 LoopBackBlock->setLoopTarget(D);
Mike Stump31feda52009-07-17 01:31:16 +00003456
Daniel Marjamaki042a3c52016-10-03 08:28:51 +00003457 if (!KnownVal.isFalse())
Ted Kremenek110974d2010-08-17 20:59:56 +00003458 // Add the loop body entry as a successor to the condition.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003459 addSuccessor(ExitConditionBlock, LoopBackBlock);
Ted Kremenek110974d2010-08-17 20:59:56 +00003460 else
Craig Topper25542942014-05-20 04:30:07 +00003461 addSuccessor(ExitConditionBlock, nullptr);
Ted Kremenek9aae5132007-08-23 21:42:29 +00003462 }
Mike Stump31feda52009-07-17 01:31:16 +00003463
Ted Kremenek30754282009-07-24 04:47:11 +00003464 // Link up the condition block with the code that follows the loop.
3465 // (the false branch).
Craig Topper25542942014-05-20 04:30:07 +00003466 addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00003467
3468 // There can be no more statements in the body block(s) since we loop back to
3469 // the body. NULL out Block to force lazy creation of another block.
Craig Topper25542942014-05-20 04:30:07 +00003470 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003471
Ted Kremenek9aae5132007-08-23 21:42:29 +00003472 // Return the loop body, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00003473 Succ = BodyBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003474 return BodyBlock;
3475}
3476
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003477CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00003478 // "continue" is a control-flow statement. Thus we stop processing the
3479 // current block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003480 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003481 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003482
Ted Kremenek9aae5132007-08-23 21:42:29 +00003483 // Now create a new block that ends with the continue statement.
3484 Block = createBlock(false);
3485 Block->setTerminator(C);
Mike Stump31feda52009-07-17 01:31:16 +00003486
Ted Kremenek9aae5132007-08-23 21:42:29 +00003487 // If there is no target for the continue, then we are looking at an
Ted Kremenek882cf062009-04-07 18:53:24 +00003488 // incomplete AST. This means the CFG cannot be constructed.
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003489 if (ContinueJumpTarget.block) {
Matthias Gehre351c2182017-07-12 07:04:19 +00003490 addAutomaticObjHandling(ScopePos, ContinueJumpTarget.scopePosition, C);
Ted Kremenekef81e9e2011-01-07 19:37:16 +00003491 addSuccessor(Block, ContinueJumpTarget.block);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003492 } else
Ted Kremenek882cf062009-04-07 18:53:24 +00003493 badCFG = true;
Mike Stump31feda52009-07-17 01:31:16 +00003494
Ted Kremenek9aae5132007-08-23 21:42:29 +00003495 return Block;
3496}
Mike Stump11289f42009-09-09 15:08:12 +00003497
Peter Collingbournee190dee2011-03-11 19:24:49 +00003498CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
3499 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00003500 if (asc.alwaysAdd(*this, E)) {
Ted Kremenek0747de62009-07-18 00:47:21 +00003501 autoCreateBlock();
Ted Kremenek8219b822010-12-16 07:46:53 +00003502 appendStmt(Block, E);
Ted Kremenek0747de62009-07-18 00:47:21 +00003503 }
Mike Stump11289f42009-09-09 15:08:12 +00003504
Ted Kremenek93668002009-07-17 22:18:43 +00003505 // VLA types have expressions that must be evaluated.
Ted Kremenek9eb0b7d2011-04-14 01:50:50 +00003506 CFGBlock *lastBlock = Block;
3507
Ted Kremenek93668002009-07-17 22:18:43 +00003508 if (E->isArgumentType()) {
John McCall424cec92011-01-19 06:33:43 +00003509 for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr());
Craig Topper25542942014-05-20 04:30:07 +00003510 VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr()))
Ted Kremenek9eb0b7d2011-04-14 01:50:50 +00003511 lastBlock = addStmt(VA->getSizeExpr());
Ted Kremenek84a1ca52011-08-06 00:30:00 +00003512 }
Ted Kremenek9eb0b7d2011-04-14 01:50:50 +00003513 return lastBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003514}
Mike Stump11289f42009-09-09 15:08:12 +00003515
Ted Kremenek93668002009-07-17 22:18:43 +00003516/// VisitStmtExpr - Utility method to handle (nested) statement
3517/// expressions (a GCC extension).
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003518CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00003519 if (asc.alwaysAdd(*this, SE)) {
Ted Kremenek0747de62009-07-18 00:47:21 +00003520 autoCreateBlock();
Ted Kremenek8219b822010-12-16 07:46:53 +00003521 appendStmt(Block, SE);
Ted Kremenek0747de62009-07-18 00:47:21 +00003522 }
Ted Kremenek93668002009-07-17 22:18:43 +00003523 return VisitCompoundStmt(SE->getSubStmt());
3524}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003525
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003526CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) {
Mike Stump31feda52009-07-17 01:31:16 +00003527 // "switch" is a control-flow statement. Thus we stop processing the current
3528 // block.
Craig Topper25542942014-05-20 04:30:07 +00003529 CFGBlock *SwitchSuccessor = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003530
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003531 // Save local scope position because in case of condition variable ScopePos
3532 // won't be restored when traversing AST.
3533 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3534
Richard Smitha547eb22016-07-14 00:11:03 +00003535 // Create local scope for C++17 switch init-stmt if one exists.
Richard Smith509bbd12017-01-13 22:16:41 +00003536 if (Stmt *Init = Terminator->getInit())
Richard Smitha547eb22016-07-14 00:11:03 +00003537 addLocalScopeForStmt(Init);
Richard Smitha547eb22016-07-14 00:11:03 +00003538
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003539 // Create local scope for possible condition variable.
3540 // Store scope position. Add implicit destructor.
Richard Smith509bbd12017-01-13 22:16:41 +00003541 if (VarDecl *VD = Terminator->getConditionVariable())
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003542 addLocalScopeForVarDecl(VD);
Richard Smith509bbd12017-01-13 22:16:41 +00003543
Matthias Gehre351c2182017-07-12 07:04:19 +00003544 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), Terminator);
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003545
Ted Kremenek9aae5132007-08-23 21:42:29 +00003546 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003547 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003548 return nullptr;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003549 SwitchSuccessor = Block;
Mike Stump31feda52009-07-17 01:31:16 +00003550 } else SwitchSuccessor = Succ;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003551
3552 // Save the current "switch" context.
3553 SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
Ted Kremenek654c78f2008-02-13 22:05:39 +00003554 save_default(DefaultCaseBlock);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003555 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
Ted Kremenek654c78f2008-02-13 22:05:39 +00003556
Mike Stump31feda52009-07-17 01:31:16 +00003557 // Set the "default" case to be the block after the switch statement. If the
3558 // switch statement contains a "default:", this value will be overwritten with
3559 // the block for that code.
Ted Kremenek654c78f2008-02-13 22:05:39 +00003560 DefaultCaseBlock = SwitchSuccessor;
Mike Stump31feda52009-07-17 01:31:16 +00003561
Ted Kremenek9aae5132007-08-23 21:42:29 +00003562 // Create a new block that will contain the switch statement.
3563 SwitchTerminatedBlock = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00003564
Ted Kremenek9aae5132007-08-23 21:42:29 +00003565 // Now process the switch body. The code after the switch is the implicit
3566 // successor.
3567 Succ = SwitchSuccessor;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00003568 BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00003569
3570 // When visiting the body, the case statements should automatically get linked
3571 // up to the switch. We also don't keep a pointer to the body, since all
3572 // control-flow from the switch goes to case/default statements.
Ted Kremenek1362b8b2010-01-19 20:46:35 +00003573 assert(Terminator->getBody() && "switch must contain a non-NULL body");
Craig Topper25542942014-05-20 04:30:07 +00003574 Block = nullptr;
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003575
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003576 // For pruning unreachable case statements, save the current state
3577 // for tracking the condition value.
3578 SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered,
3579 false);
Ted Kremenekbe528712011-03-04 01:03:41 +00003580
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003581 // Determine if the switch condition can be explicitly evaluated.
3582 assert(Terminator->getCond() && "switch condition must be non-NULL");
Ted Kremenekbe528712011-03-04 01:03:41 +00003583 Expr::EvalResult result;
Ted Kremenek53e65382011-03-13 03:48:04 +00003584 bool b = tryEvaluate(Terminator->getCond(), result);
3585 SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond,
Craig Topper25542942014-05-20 04:30:07 +00003586 b ? &result : nullptr);
Ted Kremenekbe528712011-03-04 01:03:41 +00003587
Marcin Swiderskie407a3b2010-10-01 01:24:41 +00003588 // If body is not a compound statement create implicit scope
3589 // and add destructors.
3590 if (!isa<CompoundStmt>(Terminator->getBody()))
3591 addLocalScopeAndDtors(Terminator->getBody());
3592
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003593 addStmt(Terminator->getBody());
Ted Kremenek55957a82009-05-02 00:13:27 +00003594 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003595 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003596 return nullptr;
Ted Kremenek55957a82009-05-02 00:13:27 +00003597 }
Ted Kremenek81e14852007-08-27 19:46:09 +00003598
Mike Stump31feda52009-07-17 01:31:16 +00003599 // If we have no "default:" case, the default transition is to the code
Ted Kremenek35c70f62011-03-16 04:32:01 +00003600 // following the switch body. Moreover, take into account if all the
3601 // cases of a switch are covered (e.g., switching on an enum value).
David Majnemerf69ce862013-06-04 17:38:44 +00003602 //
3603 // Note: We add a successor to a switch that is considered covered yet has no
3604 // case statements if the enumeration has no enumerators.
3605 bool SwitchAlwaysHasSuccessor = false;
3606 SwitchAlwaysHasSuccessor |= switchExclusivelyCovered;
3607 SwitchAlwaysHasSuccessor |= Terminator->isAllEnumCasesCovered() &&
3608 Terminator->getSwitchCaseList();
Ted Kremenek9238c5c2014-02-27 21:56:44 +00003609 addSuccessor(SwitchTerminatedBlock, DefaultCaseBlock,
3610 !SwitchAlwaysHasSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00003611
Ted Kremenek81e14852007-08-27 19:46:09 +00003612 // Add the terminator and condition in the switch block.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00003613 SwitchTerminatedBlock->setTerminator(Terminator);
Ted Kremenek9aae5132007-08-23 21:42:29 +00003614 Block = SwitchTerminatedBlock;
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003615 CFGBlock *LastBlock = addStmt(Terminator->getCond());
Ted Kremenekdc03bd02010-08-02 23:46:59 +00003616
Richard Smitha547eb22016-07-14 00:11:03 +00003617 // If the SwitchStmt contains a condition variable, add both the
Ted Kremenek8b5dc122009-12-24 00:39:26 +00003618 // SwitchStmt and the condition variable initialization to the CFG.
3619 if (VarDecl *VD = Terminator->getConditionVariable()) {
3620 if (Expr *Init = VD->getInit()) {
3621 autoCreateBlock();
Ted Kremenek37881932011-04-04 23:29:12 +00003622 appendStmt(Block, Terminator->getConditionVariableDeclStmt());
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003623 LastBlock = addStmt(Init);
Ted Kremenek8b5dc122009-12-24 00:39:26 +00003624 }
3625 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +00003626
Richard Smitha547eb22016-07-14 00:11:03 +00003627 // Finally, if the SwitchStmt contains a C++17 init-stmt, add it to the CFG.
3628 if (Stmt *Init = Terminator->getInit()) {
3629 autoCreateBlock();
3630 LastBlock = addStmt(Init);
3631 }
3632
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003633 return LastBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003634}
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003635
3636static bool shouldAddCase(bool &switchExclusivelyCovered,
Ted Kremenek53e65382011-03-13 03:48:04 +00003637 const Expr::EvalResult *switchCond,
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003638 const CaseStmt *CS,
3639 ASTContext &Ctx) {
Ted Kremenek53e65382011-03-13 03:48:04 +00003640 if (!switchCond)
3641 return true;
3642
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003643 bool addCase = false;
Ted Kremenekbe528712011-03-04 01:03:41 +00003644
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003645 if (!switchExclusivelyCovered) {
Ted Kremenek53e65382011-03-13 03:48:04 +00003646 if (switchCond->Val.isInt()) {
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003647 // Evaluate the LHS of the case value.
Richard Smithfaa32a92011-10-14 20:22:00 +00003648 const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx);
Ted Kremenek53e65382011-03-13 03:48:04 +00003649 const llvm::APSInt &condInt = switchCond->Val.getInt();
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003650
3651 if (condInt == lhsInt) {
3652 addCase = true;
3653 switchExclusivelyCovered = true;
3654 }
Devin Coughlineb538ab2015-09-22 20:31:19 +00003655 else if (condInt > lhsInt) {
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003656 if (const Expr *RHS = CS->getRHS()) {
3657 // Evaluate the RHS of the case value.
Richard Smithfaa32a92011-10-14 20:22:00 +00003658 const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx);
Devin Coughlineb538ab2015-09-22 20:31:19 +00003659 if (V2 >= condInt) {
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003660 addCase = true;
3661 switchExclusivelyCovered = true;
3662 }
3663 }
3664 }
3665 }
3666 else
3667 addCase = true;
3668 }
3669 return addCase;
3670}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003671
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003672CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) {
Mike Stump31feda52009-07-17 01:31:16 +00003673 // CaseStmts are essentially labels, so they are the first statement in a
3674 // block.
Craig Topper25542942014-05-20 04:30:07 +00003675 CFGBlock *TopBlock = nullptr, *LastBlock = nullptr;
Ted Kremenekbe528712011-03-04 01:03:41 +00003676
Ted Kremenek60fa6572010-08-04 23:54:30 +00003677 if (Stmt *Sub = CS->getSubStmt()) {
3678 // For deeply nested chains of CaseStmts, instead of doing a recursion
3679 // (which can blow out the stack), manually unroll and create blocks
3680 // along the way.
3681 while (isa<CaseStmt>(Sub)) {
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003682 CFGBlock *currentBlock = createBlock(false);
3683 currentBlock->setLabel(CS);
Ted Kremenek55e91e82007-08-30 18:48:11 +00003684
Ted Kremenek60fa6572010-08-04 23:54:30 +00003685 if (TopBlock)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003686 addSuccessor(LastBlock, currentBlock);
Ted Kremenek60fa6572010-08-04 23:54:30 +00003687 else
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003688 TopBlock = currentBlock;
Ted Kremenek60fa6572010-08-04 23:54:30 +00003689
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003690 addSuccessor(SwitchTerminatedBlock,
Ted Kremenek53e65382011-03-13 03:48:04 +00003691 shouldAddCase(switchExclusivelyCovered, switchCond,
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003692 CS, *Context)
Craig Topper25542942014-05-20 04:30:07 +00003693 ? currentBlock : nullptr);
Ted Kremenek60fa6572010-08-04 23:54:30 +00003694
Ted Kremenekeff9a7f2011-03-01 23:12:55 +00003695 LastBlock = currentBlock;
Ted Kremenek60fa6572010-08-04 23:54:30 +00003696 CS = cast<CaseStmt>(Sub);
3697 Sub = CS->getSubStmt();
3698 }
3699
3700 addStmt(Sub);
3701 }
Mike Stump11289f42009-09-09 15:08:12 +00003702
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003703 CFGBlock *CaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003704 if (!CaseBlock)
3705 CaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00003706
3707 // Cases statements partition blocks, so this is the top of the basic block we
3708 // were processing (the "case XXX:" is the label).
Ted Kremenek93668002009-07-17 22:18:43 +00003709 CaseBlock->setLabel(CS);
3710
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003711 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003712 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003713
3714 // Add this block to the list of successors for the block with the switch
3715 // statement.
Ted Kremenek93668002009-07-17 22:18:43 +00003716 assert(SwitchTerminatedBlock);
Ted Kremenek9238c5c2014-02-27 21:56:44 +00003717 addSuccessor(SwitchTerminatedBlock, CaseBlock,
Ted Kremenek53e65382011-03-13 03:48:04 +00003718 shouldAddCase(switchExclusivelyCovered, switchCond,
Ted Kremenek9238c5c2014-02-27 21:56:44 +00003719 CS, *Context));
Mike Stump31feda52009-07-17 01:31:16 +00003720
Ted Kremenek9aae5132007-08-23 21:42:29 +00003721 // We set Block to NULL to allow lazy creation of a new block (if necessary)
Craig Topper25542942014-05-20 04:30:07 +00003722 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003723
Ted Kremenek60fa6572010-08-04 23:54:30 +00003724 if (TopBlock) {
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003725 addSuccessor(LastBlock, CaseBlock);
Ted Kremenek60fa6572010-08-04 23:54:30 +00003726 Succ = TopBlock;
Zhanyong Wan59f09c72010-11-22 19:32:14 +00003727 } else {
Ted Kremenek60fa6572010-08-04 23:54:30 +00003728 // This block is now the implicit successor of other blocks.
3729 Succ = CaseBlock;
3730 }
Mike Stump31feda52009-07-17 01:31:16 +00003731
Ted Kremenek60fa6572010-08-04 23:54:30 +00003732 return Succ;
Ted Kremenek9aae5132007-08-23 21:42:29 +00003733}
Mike Stump31feda52009-07-17 01:31:16 +00003734
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003735CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) {
Ted Kremenek93668002009-07-17 22:18:43 +00003736 if (Terminator->getSubStmt())
3737 addStmt(Terminator->getSubStmt());
Mike Stump11289f42009-09-09 15:08:12 +00003738
Ted Kremenek654c78f2008-02-13 22:05:39 +00003739 DefaultCaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00003740
3741 if (!DefaultCaseBlock)
3742 DefaultCaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00003743
3744 // Default statements partition blocks, so this is the top of the basic block
3745 // we were processing (the "default:" is the label).
Ted Kremenekc1f9a282008-04-16 21:10:48 +00003746 DefaultCaseBlock->setLabel(Terminator);
Mike Stump11289f42009-09-09 15:08:12 +00003747
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003748 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003749 return nullptr;
Ted Kremenek654c78f2008-02-13 22:05:39 +00003750
Mike Stump31feda52009-07-17 01:31:16 +00003751 // Unlike case statements, we don't add the default block to the successors
3752 // for the switch statement immediately. This is done when we finish
3753 // processing the switch statement. This allows for the default case
3754 // (including a fall-through to the code after the switch statement) to always
3755 // be the last successor of a switch-terminated block.
3756
Ted Kremenek654c78f2008-02-13 22:05:39 +00003757 // We set Block to NULL to allow lazy creation of a new block (if necessary)
Craig Topper25542942014-05-20 04:30:07 +00003758 Block = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00003759
Ted Kremenek654c78f2008-02-13 22:05:39 +00003760 // This block is now the implicit successor of other blocks.
3761 Succ = DefaultCaseBlock;
Mike Stump31feda52009-07-17 01:31:16 +00003762
3763 return DefaultCaseBlock;
Ted Kremenek9682be12008-02-13 21:46:34 +00003764}
Ted Kremenek9aae5132007-08-23 21:42:29 +00003765
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003766CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) {
3767 // "try"/"catch" is a control-flow statement. Thus we stop processing the
3768 // current block.
Craig Topper25542942014-05-20 04:30:07 +00003769 CFGBlock *TrySuccessor = nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003770
3771 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003772 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003773 return nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003774 TrySuccessor = Block;
3775 } else TrySuccessor = Succ;
3776
Mike Stump0bdba6c2010-01-20 01:15:34 +00003777 CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003778
3779 // Create a new block that will contain the try statement.
Mike Stump845384a2010-01-20 01:30:58 +00003780 CFGBlock *NewTryTerminatedBlock = createBlock(false);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003781 // Add the terminator in the try block.
Mike Stump845384a2010-01-20 01:30:58 +00003782 NewTryTerminatedBlock->setTerminator(Terminator);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003783
Mike Stump0bdba6c2010-01-20 01:15:34 +00003784 bool HasCatchAll = false;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003785 for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) {
3786 // The code after the try is the implicit successor.
3787 Succ = TrySuccessor;
3788 CXXCatchStmt *CS = Terminator->getHandler(h);
Craig Topper25542942014-05-20 04:30:07 +00003789 if (CS->getExceptionDecl() == nullptr) {
Mike Stump0bdba6c2010-01-20 01:15:34 +00003790 HasCatchAll = true;
3791 }
Craig Topper25542942014-05-20 04:30:07 +00003792 Block = nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003793 CFGBlock *CatchBlock = VisitCXXCatchStmt(CS);
Craig Topper25542942014-05-20 04:30:07 +00003794 if (!CatchBlock)
3795 return nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003796 // Add this block to the list of successors for the block with the try
3797 // statement.
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003798 addSuccessor(NewTryTerminatedBlock, CatchBlock);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003799 }
Mike Stump0bdba6c2010-01-20 01:15:34 +00003800 if (!HasCatchAll) {
3801 if (PrevTryTerminatedBlock)
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003802 addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock);
Mike Stump0bdba6c2010-01-20 01:15:34 +00003803 else
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00003804 addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
Mike Stump0bdba6c2010-01-20 01:15:34 +00003805 }
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003806
3807 // The code after the try is the implicit successor.
3808 Succ = TrySuccessor;
3809
Mike Stump845384a2010-01-20 01:30:58 +00003810 // Save the current "try" context.
Ted Kremenek6b9964d2011-08-23 23:05:07 +00003811 SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock);
3812 cfg->addTryDispatchBlock(TryTerminatedBlock);
Mike Stump845384a2010-01-20 01:30:58 +00003813
Ted Kremenek1362b8b2010-01-19 20:46:35 +00003814 assert(Terminator->getTryBlock() && "try must contain a non-NULL body");
Craig Topper25542942014-05-20 04:30:07 +00003815 Block = nullptr;
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003816 return addStmt(Terminator->getTryBlock());
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003817}
3818
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003819CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003820 // CXXCatchStmt are treated like labels, so they are the first statement in a
3821 // block.
3822
Marcin Swiderski3546b1a2010-10-01 01:46:52 +00003823 // Save local scope position because in case of exception variable ScopePos
3824 // won't be restored when traversing AST.
3825 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3826
3827 // Create local scope for possible exception variable.
3828 // Store scope position. Add implicit destructor.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003829 if (VarDecl *VD = CS->getExceptionDecl()) {
Marcin Swiderski3546b1a2010-10-01 01:46:52 +00003830 LocalScope::const_iterator BeginScopePos = ScopePos;
3831 addLocalScopeForVarDecl(VD);
Matthias Gehre351c2182017-07-12 07:04:19 +00003832 addAutomaticObjHandling(ScopePos, BeginScopePos, CS);
Marcin Swiderski3546b1a2010-10-01 01:46:52 +00003833 }
3834
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003835 if (CS->getHandlerBlock())
3836 addStmt(CS->getHandlerBlock());
3837
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003838 CFGBlock *CatchBlock = Block;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003839 if (!CatchBlock)
3840 CatchBlock = createBlock();
Ted Kremenek8fdb59f2012-03-10 01:34:17 +00003841
3842 // CXXCatchStmt is more than just a label. They have semantic meaning
3843 // as well, as they implicitly "initialize" the catch variable. Add
3844 // it to the CFG as a CFGElement so that the control-flow of these
3845 // semantics gets captured.
3846 appendStmt(CatchBlock, CS);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003847
Ted Kremenek8fdb59f2012-03-10 01:34:17 +00003848 // Also add the CXXCatchStmt as a label, to mirror handling of regular
3849 // labels.
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003850 CatchBlock->setLabel(CS);
3851
Ted Kremenek8fdb59f2012-03-10 01:34:17 +00003852 // Bail out if the CFG is bad.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00003853 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003854 return nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003855
3856 // We set Block to NULL to allow lazy creation of a new block (if necessary)
Craig Topper25542942014-05-20 04:30:07 +00003857 Block = nullptr;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00003858
3859 return CatchBlock;
3860}
3861
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003862CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) {
Richard Smith02e85f32011-04-14 22:09:26 +00003863 // C++0x for-range statements are specified as [stmt.ranged]:
3864 //
3865 // {
3866 // auto && __range = range-init;
3867 // for ( auto __begin = begin-expr,
3868 // __end = end-expr;
3869 // __begin != __end;
3870 // ++__begin ) {
3871 // for-range-declaration = *__begin;
3872 // statement
3873 // }
3874 // }
3875
3876 // Save local scope position before the addition of the implicit variables.
3877 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3878
3879 // Create local scopes and destructors for range, begin and end variables.
3880 if (Stmt *Range = S->getRangeStmt())
3881 addLocalScopeForStmt(Range);
Richard Smith01694c32016-03-20 10:33:40 +00003882 if (Stmt *Begin = S->getBeginStmt())
3883 addLocalScopeForStmt(Begin);
3884 if (Stmt *End = S->getEndStmt())
3885 addLocalScopeForStmt(End);
Matthias Gehre351c2182017-07-12 07:04:19 +00003886 addAutomaticObjHandling(ScopePos, save_scope_pos.get(), S);
Richard Smith02e85f32011-04-14 22:09:26 +00003887
3888 LocalScope::const_iterator ContinueScopePos = ScopePos;
3889
3890 // "for" is a control-flow statement. Thus we stop processing the current
3891 // block.
Craig Topper25542942014-05-20 04:30:07 +00003892 CFGBlock *LoopSuccessor = nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00003893 if (Block) {
3894 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003895 return nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00003896 LoopSuccessor = Block;
3897 } else
3898 LoopSuccessor = Succ;
3899
3900 // Save the current value for the break targets.
3901 // All breaks should go to the code following the loop.
3902 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
3903 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
3904
3905 // The block for the __begin != __end expression.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00003906 CFGBlock *ConditionBlock = createBlock(false);
Richard Smith02e85f32011-04-14 22:09:26 +00003907 ConditionBlock->setTerminator(S);
3908
3909 // Now add the actual condition to the condition block.
3910 if (Expr *C = S->getCond()) {
3911 Block = ConditionBlock;
3912 CFGBlock *BeginConditionBlock = addStmt(C);
3913 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003914 return nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00003915 assert(BeginConditionBlock == ConditionBlock &&
3916 "condition block in for-range was unexpectedly complex");
3917 (void)BeginConditionBlock;
3918 }
3919
3920 // The condition block is the implicit successor for the loop body as well as
3921 // any code above the loop.
3922 Succ = ConditionBlock;
3923
3924 // See if this is a known constant.
3925 TryResult KnownVal(true);
3926
3927 if (S->getCond())
3928 KnownVal = tryEvaluateBool(S->getCond());
3929
3930 // Now create the loop body.
3931 {
3932 assert(S->getBody());
3933
3934 // Save the current values for Block, Succ, and continue targets.
3935 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3936 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
3937
3938 // Generate increment code in its own basic block. This is the target of
3939 // continue statements.
Craig Topper25542942014-05-20 04:30:07 +00003940 Block = nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00003941 Succ = addStmt(S->getInc());
Alexander Kornienkoff2046a2016-07-08 10:50:51 +00003942 if (badCFG)
3943 return nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00003944 ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
3945
3946 // The starting block for the loop increment is the block that should
3947 // represent the 'loop target' for looping back to the start of the loop.
3948 ContinueJumpTarget.block->setLoopTarget(S);
3949
3950 // Finish up the increment block and prepare to start the loop body.
3951 assert(Block);
3952 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003953 return nullptr;
3954 Block = nullptr;
Richard Smith02e85f32011-04-14 22:09:26 +00003955
3956 // Add implicit scope and dtors for loop variable.
3957 addLocalScopeAndDtors(S->getLoopVarStmt());
3958
3959 // Populate a new block to contain the loop body and loop variable.
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003960 addStmt(S->getBody());
Richard Smith02e85f32011-04-14 22:09:26 +00003961 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003962 return nullptr;
Ted Kremeneke6ee6712012-11-13 00:12:13 +00003963 CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt());
Richard Smith02e85f32011-04-14 22:09:26 +00003964 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00003965 return nullptr;
3966
Richard Smith02e85f32011-04-14 22:09:26 +00003967 // This new body block is a successor to our condition block.
Craig Topper25542942014-05-20 04:30:07 +00003968 addSuccessor(ConditionBlock,
3969 KnownVal.isFalse() ? nullptr : LoopVarStmtBlock);
Richard Smith02e85f32011-04-14 22:09:26 +00003970 }
3971
3972 // Link up the condition block with the code that follows the loop (the
3973 // false branch).
Craig Topper25542942014-05-20 04:30:07 +00003974 addSuccessor(ConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor);
Richard Smith02e85f32011-04-14 22:09:26 +00003975
3976 // Add the initialization statements.
3977 Block = createBlock();
Richard Smith01694c32016-03-20 10:33:40 +00003978 addStmt(S->getBeginStmt());
3979 addStmt(S->getEndStmt());
Richard Smith0c502d22011-04-18 15:49:25 +00003980 return addStmt(S->getRangeStmt());
Richard Smith02e85f32011-04-14 22:09:26 +00003981}
3982
John McCall5d413782010-12-06 08:20:24 +00003983CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E,
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00003984 AddStmtChoice asc) {
Jordan Rose6d671cc2012-09-05 22:55:23 +00003985 if (BuildOpts.AddTemporaryDtors) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00003986 // If adding implicit destructors visit the full expression for adding
3987 // destructors of temporaries.
Manuel Klimekdeb02622014-08-08 07:37:13 +00003988 TempDtorContext Context;
Manuel Klimekb5616c92014-08-07 10:42:17 +00003989 VisitForTemporaryDtors(E->getSubExpr(), false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00003990
3991 // Full expression has to be added as CFGStmt so it will be sequenced
3992 // before destructors of it's temporaries.
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00003993 asc = asc.withAlwaysAdd(true);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00003994 }
3995 return Visit(E->getSubExpr(), asc);
3996}
3997
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00003998CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E,
3999 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00004000 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004001 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00004002 appendStmt(Block, E);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004003
Artem Dergachev783a4572018-02-23 22:20:39 +00004004 findConstructionContexts(
4005 ConstructionContext::create(cfg->getBumpVectorContext(), E),
4006 E->getSubExpr());
Artem Dergachev1f68d9d2018-02-15 03:13:36 +00004007
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004008 // We do not want to propagate the AlwaysAdd property.
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004009 asc = asc.withAlwaysAdd(false);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004010 }
4011 return Visit(E->getSubExpr(), asc);
4012}
4013
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004014CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C,
4015 AddStmtChoice asc) {
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004016 autoCreateBlock();
Artem Dergachev41ffb302018-02-08 22:58:15 +00004017 appendConstructor(Block, C);
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004018
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004019 return VisitChildren(C);
4020}
4021
Jordan Rosec9176072014-01-13 17:59:19 +00004022CFGBlock *CFGBuilder::VisitCXXNewExpr(CXXNewExpr *NE,
4023 AddStmtChoice asc) {
Jordan Rosec9176072014-01-13 17:59:19 +00004024 autoCreateBlock();
4025 appendStmt(Block, NE);
Jordan Rose6f5f7192014-01-14 17:29:12 +00004026
Artem Dergachev783a4572018-02-23 22:20:39 +00004027 findConstructionContexts(
4028 ConstructionContext::create(cfg->getBumpVectorContext(), NE),
4029 const_cast<CXXConstructExpr *>(NE->getConstructExpr()));
Artem Dergachev41ffb302018-02-08 22:58:15 +00004030
Jordan Rosec9176072014-01-13 17:59:19 +00004031 if (NE->getInitializer())
Jordan Rose6f5f7192014-01-14 17:29:12 +00004032 Block = Visit(NE->getInitializer());
Artem Dergachev41ffb302018-02-08 22:58:15 +00004033
Jordan Rosec9176072014-01-13 17:59:19 +00004034 if (BuildOpts.AddCXXNewAllocator)
4035 appendNewAllocator(Block, NE);
Artem Dergachev41ffb302018-02-08 22:58:15 +00004036
Jordan Rosec9176072014-01-13 17:59:19 +00004037 if (NE->isArray())
Jordan Rose6f5f7192014-01-14 17:29:12 +00004038 Block = Visit(NE->getArraySize());
Artem Dergachev41ffb302018-02-08 22:58:15 +00004039
Jordan Rosec9176072014-01-13 17:59:19 +00004040 for (CXXNewExpr::arg_iterator I = NE->placement_arg_begin(),
4041 E = NE->placement_arg_end(); I != E; ++I)
Jordan Rose6f5f7192014-01-14 17:29:12 +00004042 Block = Visit(*I);
Artem Dergachev41ffb302018-02-08 22:58:15 +00004043
Jordan Rosec9176072014-01-13 17:59:19 +00004044 return Block;
4045}
Jordan Rosed2f40792013-09-03 17:00:57 +00004046
4047CFGBlock *CFGBuilder::VisitCXXDeleteExpr(CXXDeleteExpr *DE,
4048 AddStmtChoice asc) {
4049 autoCreateBlock();
4050 appendStmt(Block, DE);
4051 QualType DTy = DE->getDestroyedType();
Martin Bohmef44cde82016-12-05 11:33:19 +00004052 if (!DTy.isNull()) {
4053 DTy = DTy.getNonReferenceType();
4054 CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl();
4055 if (RD) {
4056 if (RD->isCompleteDefinition() && !RD->hasTrivialDestructor())
4057 appendDeleteDtor(Block, RD, DE);
4058 }
Jordan Rosed2f40792013-09-03 17:00:57 +00004059 }
4060
4061 return VisitChildren(DE);
4062}
4063
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004064CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E,
4065 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00004066 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004067 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00004068 appendStmt(Block, E);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004069 // We do not want to propagate the AlwaysAdd property.
Zhanyong Wanb5d11c12010-11-24 03:28:53 +00004070 asc = asc.withAlwaysAdd(false);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004071 }
4072 return Visit(E->getSubExpr(), asc);
4073}
4074
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004075CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C,
4076 AddStmtChoice asc) {
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004077 autoCreateBlock();
Artem Dergachev1f68d9d2018-02-15 03:13:36 +00004078 appendConstructor(Block, C);
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004079 return VisitChildren(C);
4080}
4081
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004082CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E,
4083 AddStmtChoice asc) {
Ted Kremenek7c58d352011-03-10 01:14:11 +00004084 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004085 autoCreateBlock();
Ted Kremenek2866bab2011-03-10 01:14:08 +00004086 appendStmt(Block, E);
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004087 }
Ted Kremenek8219b822010-12-16 07:46:53 +00004088 return Visit(E->getSubExpr(), AddStmtChoice());
Zhongxing Xue1dbeb22010-11-01 13:04:58 +00004089}
4090
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004091CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) {
Mike Stump31feda52009-07-17 01:31:16 +00004092 // Lazily create the indirect-goto dispatch block if there isn't one already.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004093 CFGBlock *IBlock = cfg->getIndirectGotoBlock();
Mike Stump31feda52009-07-17 01:31:16 +00004094
Ted Kremenekeda180e22007-08-28 19:26:49 +00004095 if (!IBlock) {
4096 IBlock = createBlock(false);
4097 cfg->setIndirectGotoBlock(IBlock);
4098 }
Mike Stump31feda52009-07-17 01:31:16 +00004099
Ted Kremenekeda180e22007-08-28 19:26:49 +00004100 // IndirectGoto is a control-flow statement. Thus we stop processing the
4101 // current block and create a new one.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00004102 if (badCFG)
Craig Topper25542942014-05-20 04:30:07 +00004103 return nullptr;
Ted Kremenek93668002009-07-17 22:18:43 +00004104
Ted Kremenekeda180e22007-08-28 19:26:49 +00004105 Block = createBlock(false);
4106 Block->setTerminator(I);
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004107 addSuccessor(Block, IBlock);
Ted Kremenekeda180e22007-08-28 19:26:49 +00004108 return addStmt(I->getTarget());
4109}
4110
Manuel Klimekb5616c92014-08-07 10:42:17 +00004111CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary,
4112 TempDtorContext &Context) {
Jordan Rose6d671cc2012-09-05 22:55:23 +00004113 assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors);
4114
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004115tryAgain:
4116 if (!E) {
4117 badCFG = true;
Craig Topper25542942014-05-20 04:30:07 +00004118 return nullptr;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004119 }
4120 switch (E->getStmtClass()) {
4121 default:
Manuel Klimekb5616c92014-08-07 10:42:17 +00004122 return VisitChildrenForTemporaryDtors(E, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004123
4124 case Stmt::BinaryOperatorClass:
Manuel Klimekb5616c92014-08-07 10:42:17 +00004125 return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E),
4126 Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004127
4128 case Stmt::CXXBindTemporaryExprClass:
4129 return VisitCXXBindTemporaryExprForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004130 cast<CXXBindTemporaryExpr>(E), BindToTemporary, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004131
John McCallc07a0c72011-02-17 10:25:35 +00004132 case Stmt::BinaryConditionalOperatorClass:
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004133 case Stmt::ConditionalOperatorClass:
4134 return VisitConditionalOperatorForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004135 cast<AbstractConditionalOperator>(E), BindToTemporary, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004136
4137 case Stmt::ImplicitCastExprClass:
4138 // For implicit cast we want BindToTemporary to be passed further.
4139 E = cast<CastExpr>(E)->getSubExpr();
4140 goto tryAgain;
4141
Manuel Klimekb0042c42014-07-30 08:34:42 +00004142 case Stmt::CXXFunctionalCastExprClass:
4143 // For functional cast we want BindToTemporary to be passed further.
4144 E = cast<CXXFunctionalCastExpr>(E)->getSubExpr();
4145 goto tryAgain;
4146
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004147 case Stmt::ParenExprClass:
4148 E = cast<ParenExpr>(E)->getSubExpr();
4149 goto tryAgain;
Richard Smith4137af22014-07-27 05:12:49 +00004150
Manuel Klimekb0042c42014-07-30 08:34:42 +00004151 case Stmt::MaterializeTemporaryExprClass: {
4152 const MaterializeTemporaryExpr* MTE = cast<MaterializeTemporaryExpr>(E);
4153 BindToTemporary = (MTE->getStorageDuration() != SD_FullExpression);
4154 SmallVector<const Expr *, 2> CommaLHSs;
4155 SmallVector<SubobjectAdjustment, 2> Adjustments;
4156 // Find the expression whose lifetime needs to be extended.
4157 E = const_cast<Expr *>(
4158 cast<MaterializeTemporaryExpr>(E)
4159 ->GetTemporaryExpr()
4160 ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments));
4161 // Visit the skipped comma operator left-hand sides for other temporaries.
4162 for (const Expr *CommaLHS : CommaLHSs) {
4163 VisitForTemporaryDtors(const_cast<Expr *>(CommaLHS),
Manuel Klimekb5616c92014-08-07 10:42:17 +00004164 /*BindToTemporary=*/false, Context);
Manuel Klimekb0042c42014-07-30 08:34:42 +00004165 }
Douglas Gregorfe314812011-06-21 17:03:29 +00004166 goto tryAgain;
Manuel Klimekb0042c42014-07-30 08:34:42 +00004167 }
Richard Smith4137af22014-07-27 05:12:49 +00004168
4169 case Stmt::BlockExprClass:
4170 // Don't recurse into blocks; their subexpressions don't get evaluated
4171 // here.
4172 return Block;
4173
4174 case Stmt::LambdaExprClass: {
4175 // For lambda expressions, only recurse into the capture initializers,
4176 // and not the body.
4177 auto *LE = cast<LambdaExpr>(E);
4178 CFGBlock *B = Block;
4179 for (Expr *Init : LE->capture_inits()) {
Manuel Klimekb5616c92014-08-07 10:42:17 +00004180 if (CFGBlock *R = VisitForTemporaryDtors(
4181 Init, /*BindToTemporary=*/false, Context))
Richard Smith4137af22014-07-27 05:12:49 +00004182 B = R;
4183 }
4184 return B;
4185 }
4186
4187 case Stmt::CXXDefaultArgExprClass:
4188 E = cast<CXXDefaultArgExpr>(E)->getExpr();
4189 goto tryAgain;
4190
4191 case Stmt::CXXDefaultInitExprClass:
4192 E = cast<CXXDefaultInitExpr>(E)->getExpr();
4193 goto tryAgain;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004194 }
4195}
4196
Manuel Klimekb5616c92014-08-07 10:42:17 +00004197CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E,
4198 TempDtorContext &Context) {
4199 if (isa<LambdaExpr>(E)) {
4200 // Do not visit the children of lambdas; they have their own CFGs.
4201 return Block;
4202 }
4203
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004204 // When visiting children for destructors we want to visit them in reverse
Ted Kremenek8ae67872013-02-05 22:00:19 +00004205 // order that they will appear in the CFG. Because the CFG is built
4206 // bottom-up, this means we visit them in their natural order, which
4207 // reverses them in the CFG.
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004208 CFGBlock *B = Block;
Benjamin Kramer642f1732015-07-02 21:03:14 +00004209 for (Stmt *Child : E->children())
4210 if (Child)
Manuel Klimekb5616c92014-08-07 10:42:17 +00004211 if (CFGBlock *R = VisitForTemporaryDtors(Child, false, Context))
Ted Kremenek8ae67872013-02-05 22:00:19 +00004212 B = R;
Benjamin Kramer642f1732015-07-02 21:03:14 +00004213
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004214 return B;
4215}
4216
Manuel Klimekb5616c92014-08-07 10:42:17 +00004217CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors(
4218 BinaryOperator *E, TempDtorContext &Context) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004219 if (E->isLogicalOp()) {
Manuel Klimekb5616c92014-08-07 10:42:17 +00004220 VisitForTemporaryDtors(E->getLHS(), false, Context);
Manuel Klimekedf925b92014-08-07 18:44:19 +00004221 TryResult RHSExecuted = tryEvaluateBool(E->getLHS());
4222 if (RHSExecuted.isKnown() && E->getOpcode() == BO_LOr)
4223 RHSExecuted.negate();
Manuel Klimek7c030132014-08-07 16:05:51 +00004224
Manuel Klimekedf925b92014-08-07 18:44:19 +00004225 // We do not know at CFG-construction time whether the right-hand-side was
4226 // executed, thus we add a branch node that depends on the temporary
4227 // constructor call.
Manuel Klimekdeb02622014-08-08 07:37:13 +00004228 TempDtorContext RHSContext(
4229 bothKnownTrue(Context.KnownExecuted, RHSExecuted));
Manuel Klimekedf925b92014-08-07 18:44:19 +00004230 VisitForTemporaryDtors(E->getRHS(), false, RHSContext);
Manuel Klimekdeb02622014-08-08 07:37:13 +00004231 InsertTempDtorDecisionBlock(RHSContext);
Manuel Klimek7c030132014-08-07 16:05:51 +00004232
Manuel Klimekb5616c92014-08-07 10:42:17 +00004233 return Block;
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004234 }
4235
Zhanyong Wan59f09c72010-11-22 19:32:14 +00004236 if (E->isAssignmentOp()) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004237 // For assignment operator (=) LHS expression is visited
4238 // before RHS expression. For destructors visit them in reverse order.
Manuel Klimekb5616c92014-08-07 10:42:17 +00004239 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context);
4240 CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004241 return LHSBlock ? LHSBlock : RHSBlock;
4242 }
4243
4244 // For any other binary operator RHS expression is visited before
4245 // LHS expression (order of children). For destructors visit them in reverse
4246 // order.
Manuel Klimekb5616c92014-08-07 10:42:17 +00004247 CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context);
4248 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context);
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004249 return RHSBlock ? RHSBlock : LHSBlock;
4250}
4251
4252CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004253 CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004254 // First add destructors for temporaries in subexpression.
Manuel Klimekb5616c92014-08-07 10:42:17 +00004255 CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr(), false, Context);
Zhongxing Xufee455f2010-11-14 15:23:50 +00004256 if (!BindToTemporary) {
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004257 // If lifetime of temporary is not prolonged (by assigning to constant
4258 // reference) add destructor for it.
Chandler Carruthad747252011-09-13 06:09:01 +00004259
Chandler Carruthad747252011-09-13 06:09:01 +00004260 const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor();
Manuel Klimekb5616c92014-08-07 10:42:17 +00004261
Richard Trieu95a192a2015-05-28 00:14:02 +00004262 if (Dtor->getParent()->isAnyDestructorNoReturn()) {
Manuel Klimekb5616c92014-08-07 10:42:17 +00004263 // If the destructor is marked as a no-return destructor, we need to
4264 // create a new block for the destructor which does not have as a
4265 // successor anything built thus far. Control won't flow out of this
4266 // block.
4267 if (B) Succ = B;
Chandler Carrutha70991b2011-09-13 09:13:49 +00004268 Block = createNoReturnBlock();
Manuel Klimekb5616c92014-08-07 10:42:17 +00004269 } else if (Context.needsTempDtorBranch()) {
4270 // If we need to introduce a branch, we add a new block that we will hook
4271 // up to a decision block later.
4272 if (B) Succ = B;
4273 Block = createBlock();
Ted Kremenekff909f92014-03-08 02:22:25 +00004274 } else {
Chandler Carruthad747252011-09-13 06:09:01 +00004275 autoCreateBlock();
Ted Kremenekff909f92014-03-08 02:22:25 +00004276 }
Manuel Klimekb5616c92014-08-07 10:42:17 +00004277 if (Context.needsTempDtorBranch()) {
4278 Context.setDecisionPoint(Succ, E);
4279 }
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004280 appendTemporaryDtor(Block, E);
Manuel Klimekb5616c92014-08-07 10:42:17 +00004281
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004282 B = Block;
4283 }
4284 return B;
4285}
4286
Manuel Klimekb5616c92014-08-07 10:42:17 +00004287void CFGBuilder::InsertTempDtorDecisionBlock(const TempDtorContext &Context,
4288 CFGBlock *FalseSucc) {
4289 if (!Context.TerminatorExpr) {
4290 // If no temporary was found, we do not need to insert a decision point.
4291 return;
4292 }
4293 assert(Context.TerminatorExpr);
4294 CFGBlock *Decision = createBlock(false);
4295 Decision->setTerminator(CFGTerminator(Context.TerminatorExpr, true));
Manuel Klimekdeb02622014-08-08 07:37:13 +00004296 addSuccessor(Decision, Block, !Context.KnownExecuted.isFalse());
Manuel Klimekedf925b92014-08-07 18:44:19 +00004297 addSuccessor(Decision, FalseSucc ? FalseSucc : Context.Succ,
Manuel Klimekdeb02622014-08-08 07:37:13 +00004298 !Context.KnownExecuted.isTrue());
Manuel Klimekb5616c92014-08-07 10:42:17 +00004299 Block = Decision;
4300}
4301
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004302CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors(
Manuel Klimekb5616c92014-08-07 10:42:17 +00004303 AbstractConditionalOperator *E, bool BindToTemporary,
4304 TempDtorContext &Context) {
4305 VisitForTemporaryDtors(E->getCond(), false, Context);
4306 CFGBlock *ConditionBlock = Block;
4307 CFGBlock *ConditionSucc = Succ;
Manuel Klimek0ce91082014-08-07 14:25:43 +00004308 TryResult ConditionVal = tryEvaluateBool(E->getCond());
Manuel Klimekedf925b92014-08-07 18:44:19 +00004309 TryResult NegatedVal = ConditionVal;
4310 if (NegatedVal.isKnown()) NegatedVal.negate();
Manuel Klimekcadc6032014-08-07 17:02:21 +00004311
Manuel Klimekdeb02622014-08-08 07:37:13 +00004312 TempDtorContext TrueContext(
4313 bothKnownTrue(Context.KnownExecuted, ConditionVal));
Manuel Klimekcadc6032014-08-07 17:02:21 +00004314 VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary, TrueContext);
Manuel Klimekb5616c92014-08-07 10:42:17 +00004315 CFGBlock *TrueBlock = Block;
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004316
Manuel Klimekb5616c92014-08-07 10:42:17 +00004317 Block = ConditionBlock;
4318 Succ = ConditionSucc;
Manuel Klimekdeb02622014-08-08 07:37:13 +00004319 TempDtorContext FalseContext(
4320 bothKnownTrue(Context.KnownExecuted, NegatedVal));
Manuel Klimekcadc6032014-08-07 17:02:21 +00004321 VisitForTemporaryDtors(E->getFalseExpr(), BindToTemporary, FalseContext);
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004322
Manuel Klimekb5616c92014-08-07 10:42:17 +00004323 if (TrueContext.TerminatorExpr && FalseContext.TerminatorExpr) {
Manuel Klimekdeb02622014-08-08 07:37:13 +00004324 InsertTempDtorDecisionBlock(FalseContext, TrueBlock);
Manuel Klimekb5616c92014-08-07 10:42:17 +00004325 } else if (TrueContext.TerminatorExpr) {
4326 Block = TrueBlock;
Manuel Klimekdeb02622014-08-08 07:37:13 +00004327 InsertTempDtorDecisionBlock(TrueContext);
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004328 } else {
Manuel Klimekdeb02622014-08-08 07:37:13 +00004329 InsertTempDtorDecisionBlock(FalseContext);
Rui Ueyamaa89f9c82014-08-06 22:01:54 +00004330 }
Marcin Swiderski3ab17ad2010-11-03 06:19:35 +00004331 return Block;
4332}
4333
Mike Stump31feda52009-07-17 01:31:16 +00004334/// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has
4335/// no successors or predecessors. If this is the first block created in the
4336/// CFG, it is automatically set to be the Entry and Exit of the CFG.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004337CFGBlock *CFG::createBlock() {
Ted Kremenek889073f2007-08-23 16:51:22 +00004338 bool first_block = begin() == end();
4339
4340 // Create the block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004341 CFGBlock *Mem = getAllocator().Allocate<CFGBlock>();
Anna Zaks02a1fc12011-12-05 21:33:11 +00004342 new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this);
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004343 Blocks.push_back(Mem, BlkBVC);
Ted Kremenek889073f2007-08-23 16:51:22 +00004344
4345 // If this is the first block, set it as the Entry and Exit.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004346 if (first_block)
4347 Entry = Exit = &back();
Ted Kremenek889073f2007-08-23 16:51:22 +00004348
4349 // Return the block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004350 return &back();
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00004351}
4352
David Blaikiee90195c2014-08-29 18:53:26 +00004353/// buildCFG - Constructs a CFG from an AST.
4354std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement,
4355 ASTContext *C, const BuildOptions &BO) {
Ted Kremenekf9d82902011-03-10 01:14:05 +00004356 CFGBuilder Builder(C, BO);
4357 return Builder.buildCFG(D, Statement);
Ted Kremenek889073f2007-08-23 16:51:22 +00004358}
4359
Ted Kremenek8cfe2072011-03-03 01:21:32 +00004360const CXXDestructorDecl *
4361CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const {
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004362 switch (getKind()) {
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004363 case CFGElement::Initializer:
Jordan Rosec9176072014-01-13 17:59:19 +00004364 case CFGElement::NewAllocator:
Peter Szecsi999a25f2017-08-19 11:19:16 +00004365 case CFGElement::LoopExit:
Matthias Gehre351c2182017-07-12 07:04:19 +00004366 case CFGElement::LifetimeEnds:
Artem Dergachev41ffb302018-02-08 22:58:15 +00004367 case CFGElement::Statement:
4368 case CFGElement::Constructor:
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004369 llvm_unreachable("getDestructorDecl should only be used with "
4370 "ImplicitDtors");
4371 case CFGElement::AutomaticObjectDtor: {
David Blaikie2a01f5d2013-02-21 20:58:29 +00004372 const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004373 QualType ty = var->getType();
Devin Coughlin6eb1ca72016-08-02 21:07:23 +00004374
4375 // FIXME: See CFGBuilder::addLocalScopeForVarDecl.
4376 //
4377 // Lifetime-extending constructs are handled here. This works for a single
4378 // temporary in an initializer expression.
4379 if (ty->isReferenceType()) {
4380 if (const Expr *Init = var->getInit()) {
4381 ty = getReferenceInitTemporaryType(astContext, Init);
4382 }
4383 }
4384
Ted Kremeneke7d78882012-03-19 23:48:41 +00004385 while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) {
Ted Kremenek8cfe2072011-03-03 01:21:32 +00004386 ty = arrayType->getElementType();
4387 }
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004388 const RecordType *recordType = ty->getAs<RecordType>();
4389 const CXXRecordDecl *classDecl =
Ted Kremenek1676a042011-03-03 01:01:03 +00004390 cast<CXXRecordDecl>(recordType->getDecl());
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004391 return classDecl->getDestructor();
4392 }
Jordan Rosed2f40792013-09-03 17:00:57 +00004393 case CFGElement::DeleteDtor: {
4394 const CXXDeleteExpr *DE = castAs<CFGDeleteDtor>().getDeleteExpr();
4395 QualType DTy = DE->getDestroyedType();
4396 DTy = DTy.getNonReferenceType();
4397 const CXXRecordDecl *classDecl =
4398 astContext.getBaseElementType(DTy)->getAsCXXRecordDecl();
4399 return classDecl->getDestructor();
4400 }
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004401 case CFGElement::TemporaryDtor: {
4402 const CXXBindTemporaryExpr *bindExpr =
David Blaikie2a01f5d2013-02-21 20:58:29 +00004403 castAs<CFGTemporaryDtor>().getBindTemporaryExpr();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004404 const CXXTemporary *temp = bindExpr->getTemporary();
4405 return temp->getDestructor();
4406 }
4407 case CFGElement::BaseDtor:
4408 case CFGElement::MemberDtor:
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004409 // Not yet supported.
Craig Topper25542942014-05-20 04:30:07 +00004410 return nullptr;
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004411 }
Ted Kremenek1676a042011-03-03 01:01:03 +00004412 llvm_unreachable("getKind() returned bogus value");
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004413}
4414
Ted Kremenek8cfe2072011-03-03 01:21:32 +00004415bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const {
Richard Smith10876ef2013-01-17 01:30:42 +00004416 if (const CXXDestructorDecl *DD = getDestructorDecl(astContext))
4417 return DD->isNoReturn();
Ted Kremeneke06a55c2011-03-02 20:32:29 +00004418 return false;
Ted Kremenek96a7a592011-03-01 03:15:10 +00004419}
4420
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00004421//===----------------------------------------------------------------------===//
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004422// CFGBlock operations.
Ted Kremenekb0371852010-09-09 00:06:04 +00004423//===----------------------------------------------------------------------===//
4424
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004425CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, bool IsReachable)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004426 : ReachableBlock(IsReachable ? B : nullptr),
4427 UnreachableBlock(!IsReachable ? B : nullptr,
4428 B && IsReachable ? AB_Normal : AB_Unreachable) {}
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004429
4430CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, CFGBlock *AlternateBlock)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004431 : ReachableBlock(B),
4432 UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock,
4433 B == AlternateBlock ? AB_Alternate : AB_Normal) {}
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004434
4435void CFGBlock::addSuccessor(AdjacentBlock Succ,
4436 BumpVectorContext &C) {
4437 if (CFGBlock *B = Succ.getReachableBlock())
David Blaikie9afd5da2014-03-04 23:39:18 +00004438 B->Preds.push_back(AdjacentBlock(this, Succ.isReachable()), C);
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004439
4440 if (CFGBlock *UnreachableB = Succ.getPossiblyUnreachableBlock())
David Blaikie9afd5da2014-03-04 23:39:18 +00004441 UnreachableB->Preds.push_back(AdjacentBlock(this, false), C);
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004442
4443 Succs.push_back(Succ, C);
4444}
4445
Ted Kremenekb0371852010-09-09 00:06:04 +00004446bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F,
Ted Kremenekf146cd12010-09-09 02:57:48 +00004447 const CFGBlock *From, const CFGBlock *To) {
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004448 if (F.IgnoreNullPredecessors && !From)
4449 return true;
4450
4451 if (To && From && F.IgnoreDefaultsWithCoveredEnums) {
Ted Kremenekb0371852010-09-09 00:06:04 +00004452 // If the 'To' has no label or is labeled but the label isn't a
4453 // CaseStmt then filter this edge.
4454 if (const SwitchStmt *S =
Ted Kremenek89794742011-03-07 22:04:39 +00004455 dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) {
Ted Kremenekb0371852010-09-09 00:06:04 +00004456 if (S->isAllEnumCasesCovered()) {
Ted Kremenek89794742011-03-07 22:04:39 +00004457 const Stmt *L = To->getLabel();
4458 if (!L || !isa<CaseStmt>(L))
4459 return true;
Ted Kremenekb0371852010-09-09 00:06:04 +00004460 }
4461 }
4462 }
4463
4464 return false;
4465}
4466
4467//===----------------------------------------------------------------------===//
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00004468// CFG pretty printing
4469//===----------------------------------------------------------------------===//
4470
Ted Kremenek7e776b12007-08-22 18:22:34 +00004471namespace {
4472
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00004473class StmtPrinterHelper : public PrinterHelper {
Eugene Zelenko38c70522017-12-07 21:55:09 +00004474 using StmtMapTy = llvm::DenseMap<const Stmt *, std::pair<unsigned, unsigned>>;
4475 using DeclMapTy = llvm::DenseMap<const Decl *, std::pair<unsigned, unsigned>>;
4476
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004477 StmtMapTy StmtMap;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004478 DeclMapTy DeclMap;
Eugene Zelenko38c70522017-12-07 21:55:09 +00004479 signed currentBlock = 0;
4480 unsigned currStmt = 0;
Chris Lattnerc61089a2009-06-30 01:26:17 +00004481 const LangOptions &LangOpts;
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004482
Eugene Zelenko38c70522017-12-07 21:55:09 +00004483public:
Chris Lattnerc61089a2009-06-30 01:26:17 +00004484 StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004485 : LangOpts(LO) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004486 for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
4487 unsigned j = 1;
Ted Kremenek289ae4f2009-10-12 20:55:07 +00004488 for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004489 BI != BEnd; ++BI, ++j ) {
David Blaikie00be69a2013-02-23 00:29:34 +00004490 if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) {
4491 const Stmt *stmt= SE->getStmt();
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004492 std::pair<unsigned, unsigned> P((*I)->getBlockID(), j);
Ted Kremenek96a7a592011-03-01 03:15:10 +00004493 StmtMap[stmt] = P;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004494
Ted Kremenek96a7a592011-03-01 03:15:10 +00004495 switch (stmt->getStmtClass()) {
4496 case Stmt::DeclStmtClass:
Artem Dergachev41ffb302018-02-08 22:58:15 +00004497 DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P;
4498 break;
Ted Kremenek96a7a592011-03-01 03:15:10 +00004499 case Stmt::IfStmtClass: {
4500 const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable();
4501 if (var)
4502 DeclMap[var] = P;
4503 break;
4504 }
4505 case Stmt::ForStmtClass: {
4506 const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable();
4507 if (var)
4508 DeclMap[var] = P;
4509 break;
4510 }
4511 case Stmt::WhileStmtClass: {
4512 const VarDecl *var =
4513 cast<WhileStmt>(stmt)->getConditionVariable();
4514 if (var)
4515 DeclMap[var] = P;
4516 break;
4517 }
4518 case Stmt::SwitchStmtClass: {
4519 const VarDecl *var =
4520 cast<SwitchStmt>(stmt)->getConditionVariable();
4521 if (var)
4522 DeclMap[var] = P;
4523 break;
4524 }
4525 case Stmt::CXXCatchStmtClass: {
4526 const VarDecl *var =
4527 cast<CXXCatchStmt>(stmt)->getExceptionDecl();
4528 if (var)
4529 DeclMap[var] = P;
4530 break;
4531 }
4532 default:
4533 break;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004534 }
4535 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004536 }
Zhongxing Xu2cd7a782010-09-16 01:25:47 +00004537 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004538 }
Mike Stump31feda52009-07-17 01:31:16 +00004539
Eugene Zelenko38c70522017-12-07 21:55:09 +00004540 ~StmtPrinterHelper() override = default;
Mike Stump31feda52009-07-17 01:31:16 +00004541
Chris Lattnerc61089a2009-06-30 01:26:17 +00004542 const LangOptions &getLangOpts() const { return LangOpts; }
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004543 void setBlockID(signed i) { currentBlock = i; }
Ted Kremenekd94854a2012-08-22 06:26:15 +00004544 void setStmtID(unsigned i) { currStmt = i; }
Mike Stump31feda52009-07-17 01:31:16 +00004545
Craig Topperb45acb82014-03-14 06:02:07 +00004546 bool handledStmt(Stmt *S, raw_ostream &OS) override {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004547 StmtMapTy::iterator I = StmtMap.find(S);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004548
4549 if (I == StmtMap.end())
4550 return false;
Mike Stump31feda52009-07-17 01:31:16 +00004551
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004552 if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
Ted Kremenekd94854a2012-08-22 06:26:15 +00004553 && I->second.second == currStmt) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004554 return false;
Ted Kremenek60983dc2010-01-19 20:52:05 +00004555 }
Mike Stump31feda52009-07-17 01:31:16 +00004556
Ted Kremenek60983dc2010-01-19 20:52:05 +00004557 OS << "[B" << I->second.first << "." << I->second.second << "]";
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004558 return true;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004559 }
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004560
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004561 bool handleDecl(const Decl *D, raw_ostream &OS) {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004562 DeclMapTy::iterator I = DeclMap.find(D);
4563
4564 if (I == DeclMap.end())
4565 return false;
4566
Ted Kremenek3a9a2a52010-12-17 04:44:39 +00004567 if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
Ted Kremenekd94854a2012-08-22 06:26:15 +00004568 && I->second.second == currStmt) {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004569 return false;
4570 }
4571
4572 OS << "[B" << I->second.first << "." << I->second.second << "]";
4573 return true;
4574 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004575};
4576
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00004577class CFGBlockTerminatorPrint
Eugene Zelenko38c70522017-12-07 21:55:09 +00004578 : public StmtVisitor<CFGBlockTerminatorPrint,void> {
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004579 raw_ostream &OS;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004580 StmtPrinterHelper* Helper;
Douglas Gregor7de59662009-05-29 20:38:28 +00004581 PrintingPolicy Policy;
Eugene Zelenko38c70522017-12-07 21:55:09 +00004582
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004583public:
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004584 CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper,
Chris Lattnerc61089a2009-06-30 01:26:17 +00004585 const PrintingPolicy &Policy)
Eugene Zelenko38c70522017-12-07 21:55:09 +00004586 : OS(os), Helper(helper), Policy(Policy) {
Ted Kremenek5d0fb1e2013-12-11 23:44:05 +00004587 this->Policy.IncludeNewlines = false;
4588 }
Mike Stump31feda52009-07-17 01:31:16 +00004589
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004590 void VisitIfStmt(IfStmt *I) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004591 OS << "if ";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004592 if (Stmt *C = I->getCond())
4593 C->printPretty(OS, Helper, Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00004594 }
Mike Stump31feda52009-07-17 01:31:16 +00004595
Ted Kremenek9aae5132007-08-23 21:42:29 +00004596 // Default case.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004597 void VisitStmt(Stmt *Terminator) {
Mike Stump31feda52009-07-17 01:31:16 +00004598 Terminator->printPretty(OS, Helper, Policy);
4599 }
4600
Ted Kremenek0dd8fee2013-03-28 18:43:15 +00004601 void VisitDeclStmt(DeclStmt *DS) {
4602 VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
4603 OS << "static init " << VD->getName();
4604 }
4605
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004606 void VisitForStmt(ForStmt *F) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004607 OS << "for (" ;
Ted Kremenek60983dc2010-01-19 20:52:05 +00004608 if (F->getInit())
4609 OS << "...";
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00004610 OS << "; ";
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004611 if (Stmt *C = F->getCond())
Ted Kremenek60983dc2010-01-19 20:52:05 +00004612 C->printPretty(OS, Helper, Policy);
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00004613 OS << "; ";
Ted Kremenek60983dc2010-01-19 20:52:05 +00004614 if (F->getInc())
4615 OS << "...";
Ted Kremenek15647632008-01-30 23:02:42 +00004616 OS << ")";
Ted Kremenek9aae5132007-08-23 21:42:29 +00004617 }
Mike Stump31feda52009-07-17 01:31:16 +00004618
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004619 void VisitWhileStmt(WhileStmt *W) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004620 OS << "while " ;
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004621 if (Stmt *C = W->getCond())
Ted Kremenek60983dc2010-01-19 20:52:05 +00004622 C->printPretty(OS, Helper, Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00004623 }
Mike Stump31feda52009-07-17 01:31:16 +00004624
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004625 void VisitDoStmt(DoStmt *D) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00004626 OS << "do ... while ";
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004627 if (Stmt *C = D->getCond())
Ted Kremenek60983dc2010-01-19 20:52:05 +00004628 C->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00004629 }
Mike Stump31feda52009-07-17 01:31:16 +00004630
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004631 void VisitSwitchStmt(SwitchStmt *Terminator) {
Ted Kremenek9e248872007-08-27 21:27:44 +00004632 OS << "switch ";
Douglas Gregor7de59662009-05-29 20:38:28 +00004633 Terminator->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00004634 }
Mike Stump31feda52009-07-17 01:31:16 +00004635
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004636 void VisitCXXTryStmt(CXXTryStmt *CS) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004637 OS << "try ...";
4638 }
4639
Nico Weber699670e2017-08-23 15:33:16 +00004640 void VisitSEHTryStmt(SEHTryStmt *CS) {
4641 OS << "__try ...";
4642 }
4643
John McCallc07a0c72011-02-17 10:25:35 +00004644 void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) {
Richard Trieuddd01ce2014-06-09 22:53:25 +00004645 if (Stmt *Cond = C->getCond())
4646 Cond->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00004647 OS << " ? ... : ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004648 }
Mike Stump31feda52009-07-17 01:31:16 +00004649
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004650 void VisitChooseExpr(ChooseExpr *C) {
Ted Kremenek391f94a2007-08-31 22:29:13 +00004651 OS << "__builtin_choose_expr( ";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004652 if (Stmt *Cond = C->getCond())
4653 Cond->printPretty(OS, Helper, Policy);
Ted Kremenek15647632008-01-30 23:02:42 +00004654 OS << " )";
Ted Kremenek391f94a2007-08-31 22:29:13 +00004655 }
Mike Stump31feda52009-07-17 01:31:16 +00004656
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004657 void VisitIndirectGotoStmt(IndirectGotoStmt *I) {
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004658 OS << "goto *";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004659 if (Stmt *T = I->getTarget())
4660 T->printPretty(OS, Helper, Policy);
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004661 }
Mike Stump31feda52009-07-17 01:31:16 +00004662
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004663 void VisitBinaryOperator(BinaryOperator* B) {
4664 if (!B->isLogicalOp()) {
4665 VisitExpr(B);
4666 return;
4667 }
Mike Stump31feda52009-07-17 01:31:16 +00004668
Richard Trieuddd01ce2014-06-09 22:53:25 +00004669 if (B->getLHS())
4670 B->getLHS()->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00004671
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004672 switch (B->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +00004673 case BO_LOr:
Ted Kremenek15647632008-01-30 23:02:42 +00004674 OS << " || ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004675 return;
John McCalle3027922010-08-25 11:45:40 +00004676 case BO_LAnd:
Ted Kremenek15647632008-01-30 23:02:42 +00004677 OS << " && ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004678 return;
4679 default:
David Blaikie83d382b2011-09-23 05:06:16 +00004680 llvm_unreachable("Invalid logical operator.");
Mike Stump31feda52009-07-17 01:31:16 +00004681 }
Ted Kremenek7f7dd762007-08-31 21:49:40 +00004682 }
Mike Stump31feda52009-07-17 01:31:16 +00004683
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004684 void VisitExpr(Expr *E) {
Douglas Gregor7de59662009-05-29 20:38:28 +00004685 E->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00004686 }
Ted Kremenekfcc14172014-03-08 02:22:29 +00004687
4688public:
4689 void print(CFGTerminator T) {
4690 if (T.isTemporaryDtorsBranch())
4691 OS << "(Temp Dtor) ";
4692 Visit(T.getStmt());
4693 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00004694};
Eugene Zelenko38c70522017-12-07 21:55:09 +00004695
4696} // namespace
Chris Lattnerc61089a2009-06-30 01:26:17 +00004697
Artem Dergachev5a281bb2018-02-10 02:18:04 +00004698static void print_initializer(raw_ostream &OS, StmtPrinterHelper &Helper,
4699 const CXXCtorInitializer *I) {
4700 if (I->isBaseInitializer())
4701 OS << I->getBaseClass()->getAsCXXRecordDecl()->getName();
4702 else if (I->isDelegatingInitializer())
4703 OS << I->getTypeSourceInfo()->getType()->getAsCXXRecordDecl()->getName();
4704 else
4705 OS << I->getAnyMember()->getName();
4706 OS << "(";
4707 if (Expr *IE = I->getInit())
4708 IE->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts()));
4709 OS << ")";
4710
4711 if (I->isBaseInitializer())
4712 OS << " (Base initializer)";
4713 else if (I->isDelegatingInitializer())
4714 OS << " (Delegating initializer)";
4715 else
4716 OS << " (Member initializer)";
4717}
4718
Aaron Ballmanff924b02013-11-18 20:11:50 +00004719static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper,
Mike Stump92244b02010-01-19 22:00:14 +00004720 const CFGElement &E) {
David Blaikie00be69a2013-02-23 00:29:34 +00004721 if (Optional<CFGStmt> CS = E.getAs<CFGStmt>()) {
4722 const Stmt *S = CS->getStmt();
Richard Trieuddd01ce2014-06-09 22:53:25 +00004723 assert(S != nullptr && "Expecting non-null Stmt");
4724
Aaron Ballmanff924b02013-11-18 20:11:50 +00004725 // special printing for statement-expressions.
4726 if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) {
4727 const CompoundStmt *Sub = SE->getSubStmt();
Mike Stump31feda52009-07-17 01:31:16 +00004728
Benjamin Kramer5733e352015-07-18 17:09:36 +00004729 auto Children = Sub->children();
4730 if (Children.begin() != Children.end()) {
Aaron Ballmanff924b02013-11-18 20:11:50 +00004731 OS << "({ ... ; ";
4732 Helper.handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
4733 OS << " })\n";
4734 return;
Ted Kremenekf8b50e92007-08-31 22:26:13 +00004735 }
4736 }
Aaron Ballmanff924b02013-11-18 20:11:50 +00004737 // special printing for comma expressions.
4738 if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
4739 if (B->getOpcode() == BO_Comma) {
4740 OS << "... , ";
4741 Helper.handledStmt(B->getRHS(),OS);
4742 OS << '\n';
4743 return;
4744 }
4745 }
4746 S->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts()));
Mike Stump31feda52009-07-17 01:31:16 +00004747
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004748 if (isa<CXXOperatorCallExpr>(S)) {
Zhanyong Wan59f09c72010-11-22 19:32:14 +00004749 OS << " (OperatorCall)";
Artem Dergachev41ffb302018-02-08 22:58:15 +00004750 } else if (isa<CXXBindTemporaryExpr>(S)) {
Zhanyong Wan59f09c72010-11-22 19:32:14 +00004751 OS << " (BindTemporary)";
Artem Dergachev41ffb302018-02-08 22:58:15 +00004752 } else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) {
4753 OS << " (CXXConstructExpr, ";
4754 if (Optional<CFGConstructor> CE = E.getAs<CFGConstructor>()) {
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00004755 // TODO: Refactor into ConstructionContext::print().
Artem Dergachev41ffb302018-02-08 22:58:15 +00004756 if (const Stmt *S = CE->getTriggerStmt())
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00004757 Helper.handledStmt(const_cast<Stmt *>(S), OS);
Artem Dergachev5a281bb2018-02-10 02:18:04 +00004758 else if (const CXXCtorInitializer *I = CE->getTriggerInit())
4759 print_initializer(OS, Helper, I);
Artem Dergachev41ffb302018-02-08 22:58:15 +00004760 else
4761 llvm_unreachable("Unexpected trigger kind!");
4762 OS << ", ";
Artem Dergachevf43ac4c2018-02-24 02:00:30 +00004763 if (const Stmt *S = CE->getMaterializedTemporary()) {
4764 if (S != CE->getTriggerStmt()) {
4765 Helper.handledStmt(const_cast<Stmt *>(S), OS);
4766 OS << ", ";
4767 }
4768 }
Artem Dergachev41ffb302018-02-08 22:58:15 +00004769 }
4770 OS << CCE->getType().getAsString() << ")";
4771 } else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) {
Ted Kremenek0ffba932011-12-21 19:32:38 +00004772 OS << " (" << CE->getStmtClassName() << ", "
4773 << CE->getCastKindName()
4774 << ", " << CE->getType().getAsString()
4775 << ")";
4776 }
Mike Stump31feda52009-07-17 01:31:16 +00004777
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004778 // Expressions need a newline.
4779 if (isa<Expr>(S))
4780 OS << '\n';
David Blaikie00be69a2013-02-23 00:29:34 +00004781 } else if (Optional<CFGInitializer> IE = E.getAs<CFGInitializer>()) {
Artem Dergachev5a281bb2018-02-10 02:18:04 +00004782 print_initializer(OS, Helper, IE->getInitializer());
4783 OS << '\n';
David Blaikie00be69a2013-02-23 00:29:34 +00004784 } else if (Optional<CFGAutomaticObjDtor> DE =
4785 E.getAs<CFGAutomaticObjDtor>()) {
4786 const VarDecl *VD = DE->getVarDecl();
Aaron Ballmanff924b02013-11-18 20:11:50 +00004787 Helper.handleDecl(VD, OS);
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004788
Marcin Swiderski52e4bc12010-10-25 07:00:40 +00004789 const Type* T = VD->getType().getTypePtr();
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004790 if (const ReferenceType* RT = T->getAs<ReferenceType>())
4791 T = RT->getPointeeType().getTypePtr();
Richard Smithf676e452012-07-24 21:02:14 +00004792 T = T->getBaseElementTypeUnsafe();
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004793
4794 OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()";
4795 OS << " (Implicit destructor)\n";
Matthias Gehre351c2182017-07-12 07:04:19 +00004796 } else if (Optional<CFGLifetimeEnds> DE = E.getAs<CFGLifetimeEnds>()) {
4797 const VarDecl *VD = DE->getVarDecl();
4798 Helper.handleDecl(VD, OS);
4799
4800 OS << " (Lifetime ends)\n";
Peter Szecsi999a25f2017-08-19 11:19:16 +00004801 } else if (Optional<CFGLoopExit> LE = E.getAs<CFGLoopExit>()) {
4802 const Stmt *LoopStmt = LE->getLoopStmt();
4803 OS << LoopStmt->getStmtClassName() << " (LoopExit)\n";
Jordan Rosec9176072014-01-13 17:59:19 +00004804 } else if (Optional<CFGNewAllocator> NE = E.getAs<CFGNewAllocator>()) {
4805 OS << "CFGNewAllocator(";
4806 if (const CXXNewExpr *AllocExpr = NE->getAllocatorExpr())
4807 AllocExpr->getType().print(OS, PrintingPolicy(Helper.getLangOpts()));
4808 OS << ")\n";
Jordan Rosed2f40792013-09-03 17:00:57 +00004809 } else if (Optional<CFGDeleteDtor> DE = E.getAs<CFGDeleteDtor>()) {
4810 const CXXRecordDecl *RD = DE->getCXXRecordDecl();
4811 if (!RD)
4812 return;
4813 CXXDeleteExpr *DelExpr =
4814 const_cast<CXXDeleteExpr*>(DE->getDeleteExpr());
Aaron Ballmanff924b02013-11-18 20:11:50 +00004815 Helper.handledStmt(cast<Stmt>(DelExpr->getArgument()), OS);
Jordan Rosed2f40792013-09-03 17:00:57 +00004816 OS << "->~" << RD->getName().str() << "()";
4817 OS << " (Implicit destructor)\n";
David Blaikie00be69a2013-02-23 00:29:34 +00004818 } else if (Optional<CFGBaseDtor> BE = E.getAs<CFGBaseDtor>()) {
4819 const CXXBaseSpecifier *BS = BE->getBaseSpecifier();
Marcin Swiderski20b88732010-10-05 05:37:00 +00004820 OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()";
Zhongxing Xu614e17d2010-10-05 08:38:06 +00004821 OS << " (Base object destructor)\n";
David Blaikie00be69a2013-02-23 00:29:34 +00004822 } else if (Optional<CFGMemberDtor> ME = E.getAs<CFGMemberDtor>()) {
4823 const FieldDecl *FD = ME->getFieldDecl();
Richard Smithf676e452012-07-24 21:02:14 +00004824 const Type *T = FD->getType()->getBaseElementTypeUnsafe();
Marcin Swiderski20b88732010-10-05 05:37:00 +00004825 OS << "this->" << FD->getName();
Marcin Swiderski01769902010-10-25 07:05:54 +00004826 OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()";
Zhongxing Xu614e17d2010-10-05 08:38:06 +00004827 OS << " (Member object destructor)\n";
David Blaikie00be69a2013-02-23 00:29:34 +00004828 } else if (Optional<CFGTemporaryDtor> TE = E.getAs<CFGTemporaryDtor>()) {
4829 const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr();
Pavel Labathd527cf82013-09-02 09:09:15 +00004830 OS << "~";
Aaron Ballmanff924b02013-11-18 20:11:50 +00004831 BT->getType().print(OS, PrintingPolicy(Helper.getLangOpts()));
Pavel Labathd527cf82013-09-02 09:09:15 +00004832 OS << "() (Temporary object destructor)\n";
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00004833 }
Zhongxing Xu0b51d4d2010-11-01 06:46:05 +00004834}
Mike Stump31feda52009-07-17 01:31:16 +00004835
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004836static void print_block(raw_ostream &OS, const CFG* cfg,
4837 const CFGBlock &B,
Aaron Ballmanff924b02013-11-18 20:11:50 +00004838 StmtPrinterHelper &Helper, bool print_edges,
Ted Kremenek72be32a2011-12-22 23:33:52 +00004839 bool ShowColors) {
Aaron Ballmanff924b02013-11-18 20:11:50 +00004840 Helper.setBlockID(B.getBlockID());
Mike Stump31feda52009-07-17 01:31:16 +00004841
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00004842 // Print the header.
Ted Kremenek72be32a2011-12-22 23:33:52 +00004843 if (ShowColors)
4844 OS.changeColor(raw_ostream::YELLOW, true);
4845
4846 OS << "\n [B" << B.getBlockID();
Mike Stump31feda52009-07-17 01:31:16 +00004847
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004848 if (&B == &cfg->getEntry())
Ted Kremenek72be32a2011-12-22 23:33:52 +00004849 OS << " (ENTRY)]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004850 else if (&B == &cfg->getExit())
Ted Kremenek72be32a2011-12-22 23:33:52 +00004851 OS << " (EXIT)]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004852 else if (&B == cfg->getIndirectGotoBlock())
Ted Kremenek72be32a2011-12-22 23:33:52 +00004853 OS << " (INDIRECT GOTO DISPATCH)]\n";
Jordan Rose398fb002014-04-01 16:39:33 +00004854 else if (B.hasNoReturnElement())
4855 OS << " (NORETURN)]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004856 else
Ted Kremenek72be32a2011-12-22 23:33:52 +00004857 OS << "]\n";
4858
4859 if (ShowColors)
4860 OS.resetColor();
Mike Stump31feda52009-07-17 01:31:16 +00004861
Ted Kremenek71eca012007-08-29 23:20:49 +00004862 // Print the label of this block.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004863 if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004864 if (print_edges)
Ted Kremenek72be32a2011-12-22 23:33:52 +00004865 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00004866
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004867 if (LabelStmt *L = dyn_cast<LabelStmt>(Label))
Ted Kremenek71eca012007-08-29 23:20:49 +00004868 OS << L->getName();
Ted Kremenek5ef32db2011-08-12 23:37:29 +00004869 else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) {
Ted Kremenek71eca012007-08-29 23:20:49 +00004870 OS << "case ";
Richard Trieuddd01ce2014-06-09 22:53:25 +00004871 if (C->getLHS())
4872 C->getLHS()->printPretty(OS, &Helper,
4873 PrintingPolicy(Helper.getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00004874 if (C->getRHS()) {
4875 OS << " ... ";
Aaron Ballmanff924b02013-11-18 20:11:50 +00004876 C->getRHS()->printPretty(OS, &Helper,
4877 PrintingPolicy(Helper.getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00004878 }
Mike Stump92244b02010-01-19 22:00:14 +00004879 } else if (isa<DefaultStmt>(Label))
Ted Kremenek71eca012007-08-29 23:20:49 +00004880 OS << "default";
Mike Stump92244b02010-01-19 22:00:14 +00004881 else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004882 OS << "catch (";
Mike Stump0bdba6c2010-01-20 01:15:34 +00004883 if (CS->getExceptionDecl())
Aaron Ballmanff924b02013-11-18 20:11:50 +00004884 CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()),
Mike Stump0bdba6c2010-01-20 01:15:34 +00004885 0);
4886 else
4887 OS << "...";
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004888 OS << ")";
Nico Weber699670e2017-08-23 15:33:16 +00004889 } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) {
4890 OS << "__except (";
4891 ES->getFilterExpr()->printPretty(OS, &Helper,
4892 PrintingPolicy(Helper.getLangOpts()), 0);
4893 OS << ")";
Mike Stumpbbf5ba62010-01-19 02:20:09 +00004894 } else
David Blaikie83d382b2011-09-23 05:06:16 +00004895 llvm_unreachable("Invalid label statement in CFGBlock.");
Mike Stump31feda52009-07-17 01:31:16 +00004896
Ted Kremenek71eca012007-08-29 23:20:49 +00004897 OS << ":\n";
4898 }
Mike Stump31feda52009-07-17 01:31:16 +00004899
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00004900 // Iterate through the statements in the block and print them.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00004901 unsigned j = 1;
Mike Stump31feda52009-07-17 01:31:16 +00004902
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004903 for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
4904 I != E ; ++I, ++j ) {
Ted Kremenek71eca012007-08-29 23:20:49 +00004905 // Print the statement # in the basic block and the statement itself.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004906 if (print_edges)
Ted Kremenek72be32a2011-12-22 23:33:52 +00004907 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00004908
Ted Kremenek2d470fc2008-09-13 05:16:45 +00004909 OS << llvm::format("%3d", j) << ": ";
Mike Stump31feda52009-07-17 01:31:16 +00004910
Aaron Ballmanff924b02013-11-18 20:11:50 +00004911 Helper.setStmtID(j);
Mike Stump31feda52009-07-17 01:31:16 +00004912
Ted Kremenek72be32a2011-12-22 23:33:52 +00004913 print_elem(OS, Helper, *I);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00004914 }
Mike Stump31feda52009-07-17 01:31:16 +00004915
Ted Kremenek71eca012007-08-29 23:20:49 +00004916 // Print the terminator of this block.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004917 if (B.getTerminator()) {
Ted Kremenek72be32a2011-12-22 23:33:52 +00004918 if (ShowColors)
4919 OS.changeColor(raw_ostream::GREEN);
Mike Stump31feda52009-07-17 01:31:16 +00004920
Ted Kremenek72be32a2011-12-22 23:33:52 +00004921 OS << " T: ";
Mike Stump31feda52009-07-17 01:31:16 +00004922
Aaron Ballmanff924b02013-11-18 20:11:50 +00004923 Helper.setBlockID(-1);
Mike Stump31feda52009-07-17 01:31:16 +00004924
Aaron Ballmanff924b02013-11-18 20:11:50 +00004925 PrintingPolicy PP(Helper.getLangOpts());
4926 CFGBlockTerminatorPrint TPrinter(OS, &Helper, PP);
Ted Kremenekfcc14172014-03-08 02:22:29 +00004927 TPrinter.print(B.getTerminator());
Ted Kremenek15647632008-01-30 23:02:42 +00004928 OS << '\n';
Ted Kremenek72be32a2011-12-22 23:33:52 +00004929
4930 if (ShowColors)
4931 OS.resetColor();
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00004932 }
Mike Stump31feda52009-07-17 01:31:16 +00004933
Ted Kremenek71eca012007-08-29 23:20:49 +00004934 if (print_edges) {
4935 // Print the predecessors of this block.
Ted Kremenek72be32a2011-12-22 23:33:52 +00004936 if (!B.pred_empty()) {
4937 const raw_ostream::Colors Color = raw_ostream::BLUE;
4938 if (ShowColors)
4939 OS.changeColor(Color);
4940 OS << " Preds " ;
4941 if (ShowColors)
4942 OS.resetColor();
4943 OS << '(' << B.pred_size() << "):";
4944 unsigned i = 0;
Ted Kremenek71eca012007-08-29 23:20:49 +00004945
Ted Kremenek72be32a2011-12-22 23:33:52 +00004946 if (ShowColors)
4947 OS.changeColor(Color);
4948
4949 for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
4950 I != E; ++I, ++i) {
Will Dietzdf9a2bb2013-01-07 09:51:17 +00004951 if (i % 10 == 8)
Ted Kremenek72be32a2011-12-22 23:33:52 +00004952 OS << "\n ";
Mike Stump31feda52009-07-17 01:31:16 +00004953
Ted Kremenek4b6fee62014-02-27 00:24:00 +00004954 CFGBlock *B = *I;
4955 bool Reachable = true;
4956 if (!B) {
4957 Reachable = false;
4958 B = I->getPossiblyUnreachableBlock();
4959 }
4960
4961 OS << " B" << B->getBlockID();
4962 if (!Reachable)
4963 OS << "(Unreachable)";
Ted Kremenek72be32a2011-12-22 23:33:52 +00004964 }
4965
4966 if (ShowColors)
4967 OS.resetColor();
4968
4969 OS << '\n';
Ted Kremenek71eca012007-08-29 23:20:49 +00004970 }
Mike Stump31feda52009-07-17 01:31:16 +00004971
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004972 // Print the successors of this block.
Ted Kremenek72be32a2011-12-22 23:33:52 +00004973 if (!B.succ_empty()) {
4974 const raw_ostream::Colors Color = raw_ostream::MAGENTA;
4975 if (ShowColors)
4976 OS.changeColor(Color);
4977 OS << " Succs ";
4978 if (ShowColors)
4979 OS.resetColor();
4980 OS << '(' << B.succ_size() << "):";
4981 unsigned i = 0;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00004982
Ted Kremenek72be32a2011-12-22 23:33:52 +00004983 if (ShowColors)
4984 OS.changeColor(Color);
Mike Stump31feda52009-07-17 01:31:16 +00004985
Ted Kremenek72be32a2011-12-22 23:33:52 +00004986 for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
4987 I != E; ++I, ++i) {
Will Dietzdf9a2bb2013-01-07 09:51:17 +00004988 if (i % 10 == 8)
Ted Kremenek72be32a2011-12-22 23:33:52 +00004989 OS << "\n ";
4990
Ted Kremenek9238c5c2014-02-27 21:56:44 +00004991 CFGBlock *B = *I;
4992
4993 bool Reachable = true;
4994 if (!B) {
4995 Reachable = false;
4996 B = I->getPossiblyUnreachableBlock();
4997 }
4998
4999 if (B) {
5000 OS << " B" << B->getBlockID();
5001 if (!Reachable)
5002 OS << "(Unreachable)";
5003 }
5004 else {
5005 OS << " NULL";
5006 }
Ted Kremenek72be32a2011-12-22 23:33:52 +00005007 }
Ted Kremenek9238c5c2014-02-27 21:56:44 +00005008
Ted Kremenek72be32a2011-12-22 23:33:52 +00005009 if (ShowColors)
5010 OS.resetColor();
5011 OS << '\n';
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005012 }
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00005013 }
Mike Stump31feda52009-07-17 01:31:16 +00005014}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005015
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005016/// dump - A simple pretty printer of a CFG that outputs to stderr.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005017void CFG::dump(const LangOptions &LO, bool ShowColors) const {
5018 print(llvm::errs(), LO, ShowColors);
5019}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005020
5021/// print - A simple pretty printer of a CFG that outputs to an ostream.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005022void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const {
Chris Lattnerc61089a2009-06-30 01:26:17 +00005023 StmtPrinterHelper Helper(this, LO);
Mike Stump31feda52009-07-17 01:31:16 +00005024
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005025 // Print the entry block.
Aaron Ballmanff924b02013-11-18 20:11:50 +00005026 print_block(OS, this, getEntry(), Helper, true, ShowColors);
Mike Stump31feda52009-07-17 01:31:16 +00005027
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005028 // Iterate through the CFGBlocks and print them one by one.
5029 for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
5030 // Skip the entry block, because we already printed it.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00005031 if (&(**I) == &getEntry() || &(**I) == &getExit())
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005032 continue;
Mike Stump31feda52009-07-17 01:31:16 +00005033
Aaron Ballmanff924b02013-11-18 20:11:50 +00005034 print_block(OS, this, **I, Helper, true, ShowColors);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005035 }
Mike Stump31feda52009-07-17 01:31:16 +00005036
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005037 // Print the exit block.
Aaron Ballmanff924b02013-11-18 20:11:50 +00005038 print_block(OS, this, getExit(), Helper, true, ShowColors);
Ted Kremenek72be32a2011-12-22 23:33:52 +00005039 OS << '\n';
Ted Kremeneke03879b2008-11-24 20:50:24 +00005040 OS.flush();
Mike Stump31feda52009-07-17 01:31:16 +00005041}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005042
5043/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
Ted Kremenek72be32a2011-12-22 23:33:52 +00005044void CFGBlock::dump(const CFG* cfg, const LangOptions &LO,
5045 bool ShowColors) const {
5046 print(llvm::errs(), cfg, LO, ShowColors);
Chris Lattnerc61089a2009-06-30 01:26:17 +00005047}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005048
Yaron Kerencdae9412016-01-29 19:38:18 +00005049LLVM_DUMP_METHOD void CFGBlock::dump() const {
Anna Zaksa6fea132014-06-13 23:47:38 +00005050 dump(getParent(), LangOptions(), false);
5051}
5052
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005053/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
5054/// Generally this will only be called from CFG::print.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005055void CFGBlock::print(raw_ostream &OS, const CFG* cfg,
Ted Kremenek72be32a2011-12-22 23:33:52 +00005056 const LangOptions &LO, bool ShowColors) const {
Chris Lattnerc61089a2009-06-30 01:26:17 +00005057 StmtPrinterHelper Helper(cfg, LO);
Aaron Ballmanff924b02013-11-18 20:11:50 +00005058 print_block(OS, cfg, *this, Helper, true, ShowColors);
Ted Kremenek72be32a2011-12-22 23:33:52 +00005059 OS << '\n';
Ted Kremenek889073f2007-08-23 16:51:22 +00005060}
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005061
Ted Kremenek15647632008-01-30 23:02:42 +00005062/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005063void CFGBlock::printTerminator(raw_ostream &OS,
Mike Stump31feda52009-07-17 01:31:16 +00005064 const LangOptions &LO) const {
Craig Topper25542942014-05-20 04:30:07 +00005065 CFGBlockTerminatorPrint TPrinter(OS, nullptr, PrintingPolicy(LO));
Ted Kremenekfcc14172014-03-08 02:22:29 +00005066 TPrinter.print(getTerminator());
Ted Kremenek15647632008-01-30 23:02:42 +00005067}
5068
Ted Kremenekec3bbf42014-03-29 00:35:20 +00005069Stmt *CFGBlock::getTerminatorCondition(bool StripParens) {
Marcin Swiderskia7d84a72010-10-29 05:21:47 +00005070 Stmt *Terminator = this->Terminator;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005071 if (!Terminator)
Craig Topper25542942014-05-20 04:30:07 +00005072 return nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00005073
Craig Topper25542942014-05-20 04:30:07 +00005074 Expr *E = nullptr;
Mike Stump31feda52009-07-17 01:31:16 +00005075
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005076 switch (Terminator->getStmtClass()) {
5077 default:
5078 break;
Mike Stump31feda52009-07-17 01:31:16 +00005079
Jordan Rosecf10ea82013-06-06 21:53:45 +00005080 case Stmt::CXXForRangeStmtClass:
5081 E = cast<CXXForRangeStmt>(Terminator)->getCond();
5082 break;
5083
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005084 case Stmt::ForStmtClass:
5085 E = cast<ForStmt>(Terminator)->getCond();
5086 break;
Mike Stump31feda52009-07-17 01:31:16 +00005087
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005088 case Stmt::WhileStmtClass:
5089 E = cast<WhileStmt>(Terminator)->getCond();
5090 break;
Mike Stump31feda52009-07-17 01:31:16 +00005091
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005092 case Stmt::DoStmtClass:
5093 E = cast<DoStmt>(Terminator)->getCond();
5094 break;
Mike Stump31feda52009-07-17 01:31:16 +00005095
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005096 case Stmt::IfStmtClass:
5097 E = cast<IfStmt>(Terminator)->getCond();
5098 break;
Mike Stump31feda52009-07-17 01:31:16 +00005099
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005100 case Stmt::ChooseExprClass:
5101 E = cast<ChooseExpr>(Terminator)->getCond();
5102 break;
Mike Stump31feda52009-07-17 01:31:16 +00005103
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005104 case Stmt::IndirectGotoStmtClass:
5105 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
5106 break;
Mike Stump31feda52009-07-17 01:31:16 +00005107
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005108 case Stmt::SwitchStmtClass:
5109 E = cast<SwitchStmt>(Terminator)->getCond();
5110 break;
Mike Stump31feda52009-07-17 01:31:16 +00005111
John McCallc07a0c72011-02-17 10:25:35 +00005112 case Stmt::BinaryConditionalOperatorClass:
5113 E = cast<BinaryConditionalOperator>(Terminator)->getCond();
5114 break;
5115
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005116 case Stmt::ConditionalOperatorClass:
5117 E = cast<ConditionalOperator>(Terminator)->getCond();
5118 break;
Mike Stump31feda52009-07-17 01:31:16 +00005119
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005120 case Stmt::BinaryOperatorClass: // '&&' and '||'
5121 E = cast<BinaryOperator>(Terminator)->getLHS();
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00005122 break;
Mike Stump31feda52009-07-17 01:31:16 +00005123
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00005124 case Stmt::ObjCForCollectionStmtClass:
Mike Stump31feda52009-07-17 01:31:16 +00005125 return Terminator;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005126 }
Mike Stump31feda52009-07-17 01:31:16 +00005127
Ted Kremenekec3bbf42014-03-29 00:35:20 +00005128 if (!StripParens)
5129 return E;
5130
Craig Topper25542942014-05-20 04:30:07 +00005131 return E ? E->IgnoreParens() : nullptr;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00005132}
5133
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005134//===----------------------------------------------------------------------===//
5135// CFG Graphviz Visualization
5136//===----------------------------------------------------------------------===//
5137
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005138#ifndef NDEBUG
Mike Stump31feda52009-07-17 01:31:16 +00005139static StmtPrinterHelper* GraphHelper;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005140#endif
5141
Chris Lattnerc61089a2009-06-30 01:26:17 +00005142void CFG::viewCFG(const LangOptions &LO) const {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005143#ifndef NDEBUG
Chris Lattnerc61089a2009-06-30 01:26:17 +00005144 StmtPrinterHelper H(this, LO);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005145 GraphHelper = &H;
5146 llvm::ViewGraph(this,"CFG");
Craig Topper25542942014-05-20 04:30:07 +00005147 GraphHelper = nullptr;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00005148#endif
5149}
5150
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005151namespace llvm {
Eugene Zelenko38c70522017-12-07 21:55:09 +00005152
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005153template<>
5154struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
Eugene Zelenko38c70522017-12-07 21:55:09 +00005155 DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {}
Tobias Grosser9fc223a2009-11-30 14:16:05 +00005156
Ted Kremenek5ef32db2011-08-12 23:37:29 +00005157 static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) {
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00005158#ifndef NDEBUG
Ted Kremenek2d470fc2008-09-13 05:16:45 +00005159 std::string OutSStr;
5160 llvm::raw_string_ostream Out(OutSStr);
Aaron Ballmanff924b02013-11-18 20:11:50 +00005161 print_block(Out,Graph, *Node, *GraphHelper, false, false);
Ted Kremenek2d470fc2008-09-13 05:16:45 +00005162 std::string& OutStr = Out.str();
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005163
5164 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
5165
5166 // Process string output to make it nicer...
5167 for (unsigned i = 0; i != OutStr.length(); ++i)
5168 if (OutStr[i] == '\n') { // Left justify
5169 OutStr[i] = '\\';
5170 OutStr.insert(OutStr.begin()+i+1, 'l');
5171 }
Mike Stump31feda52009-07-17 01:31:16 +00005172
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005173 return OutStr;
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00005174#else
Eugene Zelenko38c70522017-12-07 21:55:09 +00005175 return {};
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00005176#endif
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00005177 }
5178};
Eugene Zelenko38c70522017-12-07 21:55:09 +00005179
5180} // namespace llvm