blob: 1cbaaee4a1c7420b12a40c1937b21b59035b25c8 [file] [log] [blame]
Ted Kremenek6960ee62012-07-14 05:04:01 +00001 //===--- CFG.cpp - Classes for representing and building CFGs----*- C++ -*-===//
Ted Kremenekfddd5182007-08-21 21:42:03 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-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 Kremenekfddd5182007-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 Kremeneke41611a2009-07-16 18:13:04 +000015#include "clang/Analysis/CFG.h"
Benjamin Kramer478851c2012-07-04 17:04:04 +000016#include "clang/AST/ASTContext.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000017#include "clang/AST/Attr.h"
Ted Kremenekc56c0042011-02-23 05:11:46 +000018#include "clang/AST/CharUnits.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000019#include "clang/AST/DeclCXX.h"
20#include "clang/AST/PrettyPrinter.h"
21#include "clang/AST/StmtVisitor.h"
22#include "llvm/ADT/DenseMap.h"
23#include "llvm/ADT/OwningPtr.h"
24#include "llvm/ADT/SmallPtrSet.h"
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +000025#include "llvm/Support/Allocator.h"
26#include "llvm/Support/Format.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000027#include "llvm/Support/GraphWriter.h"
28#include "llvm/Support/SaveAndRestore.h"
Ted Kremenek83c01da2008-01-11 00:40:29 +000029
Ted Kremenekfddd5182007-08-21 21:42:03 +000030using namespace clang;
31
32namespace {
33
Ted Kremenek9c378f72011-08-12 23:37:29 +000034static SourceLocation GetEndLoc(Decl *D) {
35 if (VarDecl *VD = dyn_cast<VarDecl>(D))
36 if (Expr *Ex = VD->getInit())
Ted Kremenekc7eb9032008-08-06 23:20:50 +000037 return Ex->getSourceRange().getEnd();
Mike Stump6d9828c2009-07-17 01:31:16 +000038 return D->getLocation();
Ted Kremenekc7eb9032008-08-06 23:20:50 +000039}
Ted Kremenekad5a8942010-08-02 23:46:59 +000040
Ted Kremenek3179a452011-03-10 01:14:11 +000041class CFGBuilder;
42
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +000043/// The CFG builder uses a recursive algorithm to build the CFG. When
44/// we process an expression, sometimes we know that we must add the
45/// subexpressions as block-level expressions. For example:
46///
47/// exp1 || exp2
48///
49/// When processing the '||' expression, we know that exp1 and exp2
50/// need to be added as block-level expressions, even though they
51/// might not normally need to be. AddStmtChoice records this
52/// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then
53/// the builder has an option not to add a subexpression as a
54/// block-level expression.
55///
Ted Kremenek852274d2009-12-16 03:18:58 +000056class AddStmtChoice {
57public:
Ted Kremenek892697d2010-12-16 07:46:53 +000058 enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 };
Ted Kremenek5ba290a2010-03-02 21:43:54 +000059
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +000060 AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {}
Ted Kremenek5ba290a2010-03-02 21:43:54 +000061
Ted Kremenek3179a452011-03-10 01:14:11 +000062 bool alwaysAdd(CFGBuilder &builder,
63 const Stmt *stmt) const;
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +000064
65 /// Return a copy of this object, except with the 'always-add' bit
66 /// set as specified.
67 AddStmtChoice withAlwaysAdd(bool alwaysAdd) const {
Ted Kremenek3179a452011-03-10 01:14:11 +000068 return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd);
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +000069 }
70
Ted Kremenek852274d2009-12-16 03:18:58 +000071private:
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +000072 Kind kind;
Ted Kremenek852274d2009-12-16 03:18:58 +000073};
Mike Stump6d9828c2009-07-17 01:31:16 +000074
Marcin Swiderskif1308c72010-09-25 11:05:21 +000075/// LocalScope - Node in tree of local scopes created for C++ implicit
76/// destructor calls generation. It contains list of automatic variables
77/// declared in the scope and link to position in previous scope this scope
78/// began in.
79///
80/// The process of creating local scopes is as follows:
81/// - Init CFGBuilder::ScopePos with invalid position (equivalent for null),
82/// - Before processing statements in scope (e.g. CompoundStmt) create
83/// LocalScope object using CFGBuilder::ScopePos as link to previous scope
84/// and set CFGBuilder::ScopePos to the end of new scope,
Marcin Swiderski35387a02010-09-30 22:42:32 +000085/// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points
Marcin Swiderskif1308c72010-09-25 11:05:21 +000086/// at this VarDecl,
87/// - For every normal (without jump) end of scope add to CFGBlock destructors
88/// for objects in the current scope,
89/// - For every jump add to CFGBlock destructors for objects
90/// between CFGBuilder::ScopePos and local scope position saved for jump
91/// target. Thanks to C++ restrictions on goto jumps we can be sure that
92/// jump target position will be on the path to root from CFGBuilder::ScopePos
93/// (adding any variable that doesn't need constructor to be called to
94/// LocalScope can break this assumption),
95///
96class LocalScope {
97public:
Ted Kremenekfe59b742011-02-15 02:47:45 +000098 typedef BumpVector<VarDecl*> AutomaticVarsTy;
Marcin Swiderskif1308c72010-09-25 11:05:21 +000099
100 /// const_iterator - Iterates local scope backwards and jumps to previous
Marcin Swiderski35387a02010-09-30 22:42:32 +0000101 /// scope on reaching the beginning of currently iterated scope.
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000102 class const_iterator {
103 const LocalScope* Scope;
104
105 /// VarIter is guaranteed to be greater then 0 for every valid iterator.
106 /// Invalid iterator (with null Scope) has VarIter equal to 0.
107 unsigned VarIter;
108
109 public:
110 /// Create invalid iterator. Dereferencing invalid iterator is not allowed.
111 /// Incrementing invalid iterator is allowed and will result in invalid
112 /// iterator.
113 const_iterator()
114 : Scope(NULL), VarIter(0) {}
115
116 /// Create valid iterator. In case when S.Prev is an invalid iterator and
117 /// I is equal to 0, this will create invalid iterator.
118 const_iterator(const LocalScope& S, unsigned I)
119 : Scope(&S), VarIter(I) {
120 // Iterator to "end" of scope is not allowed. Handle it by going up
121 // in scopes tree possibly up to invalid iterator in the root.
122 if (VarIter == 0 && Scope)
123 *this = Scope->Prev;
124 }
125
Ted Kremenek9c378f72011-08-12 23:37:29 +0000126 VarDecl *const* operator->() const {
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000127 assert (Scope && "Dereferencing invalid iterator is not allowed");
128 assert (VarIter != 0 && "Iterator has invalid value of VarIter member");
129 return &Scope->Vars[VarIter - 1];
130 }
Ted Kremenek9c378f72011-08-12 23:37:29 +0000131 VarDecl *operator*() const {
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000132 return *this->operator->();
133 }
134
Ted Kremenek9c378f72011-08-12 23:37:29 +0000135 const_iterator &operator++() {
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000136 if (!Scope)
137 return *this;
138
139 assert (VarIter != 0 && "Iterator has invalid value of VarIter member");
140 --VarIter;
141 if (VarIter == 0)
142 *this = Scope->Prev;
143 return *this;
144 }
Marcin Swiderski35387a02010-09-30 22:42:32 +0000145 const_iterator operator++(int) {
146 const_iterator P = *this;
147 ++*this;
148 return P;
149 }
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000150
Ted Kremenek9c378f72011-08-12 23:37:29 +0000151 bool operator==(const const_iterator &rhs) const {
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000152 return Scope == rhs.Scope && VarIter == rhs.VarIter;
153 }
Ted Kremenek9c378f72011-08-12 23:37:29 +0000154 bool operator!=(const const_iterator &rhs) const {
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000155 return !(*this == rhs);
156 }
Marcin Swiderski35387a02010-09-30 22:42:32 +0000157
158 operator bool() const {
159 return *this != const_iterator();
160 }
161
162 int distance(const_iterator L);
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000163 };
164
165 friend class const_iterator;
166
167private:
Ted Kremenekfe59b742011-02-15 02:47:45 +0000168 BumpVectorContext ctx;
169
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000170 /// Automatic variables in order of declaration.
171 AutomaticVarsTy Vars;
172 /// Iterator to variable in previous scope that was declared just before
173 /// begin of this scope.
174 const_iterator Prev;
175
176public:
177 /// Constructs empty scope linked to previous scope in specified place.
Ted Kremenekfe59b742011-02-15 02:47:45 +0000178 LocalScope(BumpVectorContext &ctx, const_iterator P)
179 : ctx(ctx), Vars(ctx, 4), Prev(P) {}
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000180
181 /// Begin of scope in direction of CFG building (backwards).
182 const_iterator begin() const { return const_iterator(*this, Vars.size()); }
Marcin Swiderski35387a02010-09-30 22:42:32 +0000183
Ted Kremenek9c378f72011-08-12 23:37:29 +0000184 void addVar(VarDecl *VD) {
Ted Kremenekfe59b742011-02-15 02:47:45 +0000185 Vars.push_back(VD, ctx);
Marcin Swiderski35387a02010-09-30 22:42:32 +0000186 }
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000187};
188
Marcin Swiderski35387a02010-09-30 22:42:32 +0000189/// distance - Calculates distance from this to L. L must be reachable from this
190/// (with use of ++ operator). Cost of calculating the distance is linear w.r.t.
191/// number of scopes between this and L.
192int LocalScope::const_iterator::distance(LocalScope::const_iterator L) {
193 int D = 0;
194 const_iterator F = *this;
195 while (F.Scope != L.Scope) {
Ted Kremenek5290c802011-08-12 14:41:23 +0000196 assert (F != const_iterator()
197 && "L iterator is not reachable from F iterator.");
Marcin Swiderski35387a02010-09-30 22:42:32 +0000198 D += F.VarIter;
199 F = F.Scope->Prev;
200 }
201 D += F.VarIter - L.VarIter;
202 return D;
203}
204
205/// BlockScopePosPair - Structure for specifying position in CFG during its
206/// build process. It consists of CFGBlock that specifies position in CFG graph
207/// and LocalScope::const_iterator that specifies position in LocalScope graph.
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000208struct BlockScopePosPair {
Ted Kremenek9ce52702011-01-07 19:37:16 +0000209 BlockScopePosPair() : block(0) {}
Ted Kremenek9c378f72011-08-12 23:37:29 +0000210 BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos)
Ted Kremenek9ce52702011-01-07 19:37:16 +0000211 : block(b), scopePosition(scopePos) {}
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000212
Ted Kremenek9ce52702011-01-07 19:37:16 +0000213 CFGBlock *block;
214 LocalScope::const_iterator scopePosition;
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000215};
216
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000217/// TryResult - a class representing a variant over the values
218/// 'true', 'false', or 'unknown'. This is returned by tryEvaluateBool,
219/// and is used by the CFGBuilder to decide if a branch condition
220/// can be decided up front during CFG construction.
221class TryResult {
222 int X;
223public:
224 TryResult(bool b) : X(b ? 1 : 0) {}
225 TryResult() : X(-1) {}
226
227 bool isTrue() const { return X == 1; }
228 bool isFalse() const { return X == 0; }
229 bool isKnown() const { return X >= 0; }
230 void negate() {
231 assert(isKnown());
232 X ^= 0x1;
233 }
234};
235
Ted Kremenek58467202013-02-05 22:00:19 +0000236class reverse_children {
237 llvm::SmallVector<Stmt *, 12> childrenBuf;
238 ArrayRef<Stmt*> children;
239public:
240 reverse_children(Stmt *S);
241
242 typedef ArrayRef<Stmt*>::reverse_iterator iterator;
243 iterator begin() const { return children.rbegin(); }
244 iterator end() const { return children.rend(); }
245};
246
247
248reverse_children::reverse_children(Stmt *S) {
249 if (CallExpr *CE = dyn_cast<CallExpr>(S)) {
250 children = CE->getRawSubExprs();
251 return;
252 }
253 switch (S->getStmtClass()) {
254 case Stmt::InitListExprClass: {
255 InitListExpr *IE = cast<InitListExpr>(S);
256 children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()),
257 IE->getNumInits());
258 return;
259 }
260 default:
261 break;
262 }
263
264 // Default case for all other statements.
265 for (Stmt::child_range I = S->children(); I; ++I) {
266 childrenBuf.push_back(*I);
267 }
268
269 // This needs to be done *after* childrenBuf has been populated.
270 children = childrenBuf;
271}
272
Ted Kremeneka34ea072008-08-04 22:51:42 +0000273/// CFGBuilder - This class implements CFG construction from an AST.
Ted Kremenekfddd5182007-08-21 21:42:03 +0000274/// The builder is stateful: an instance of the builder should be used to only
275/// construct a single CFG.
276///
277/// Example usage:
278///
279/// CFGBuilder builder;
280/// CFG* cfg = builder.BuildAST(stmt1);
281///
Mike Stump6d9828c2009-07-17 01:31:16 +0000282/// CFG construction is done via a recursive walk of an AST. We actually parse
283/// the AST in reverse order so that the successor of a basic block is
284/// constructed prior to its predecessor. This allows us to nicely capture
285/// implicit fall-throughs without extra basic blocks.
Ted Kremenekc310e932007-08-21 22:06:14 +0000286///
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000287class CFGBuilder {
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000288 typedef BlockScopePosPair JumpTarget;
289 typedef BlockScopePosPair JumpSource;
290
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000291 ASTContext *Context;
Dylan Noblesmith6f42b622012-02-05 02:12:40 +0000292 OwningPtr<CFG> cfg;
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000293
Ted Kremenek9c378f72011-08-12 23:37:29 +0000294 CFGBlock *Block;
295 CFGBlock *Succ;
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000296 JumpTarget ContinueJumpTarget;
297 JumpTarget BreakJumpTarget;
Ted Kremenek9c378f72011-08-12 23:37:29 +0000298 CFGBlock *SwitchTerminatedBlock;
299 CFGBlock *DefaultCaseBlock;
300 CFGBlock *TryTerminatedBlock;
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000301
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000302 // Current position in local scope.
303 LocalScope::const_iterator ScopePos;
304
305 // LabelMap records the mapping from Label expressions to their jump targets.
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000306 typedef llvm::DenseMap<LabelDecl*, JumpTarget> LabelMapTy;
Ted Kremenek0cebe3e2007-08-21 23:26:17 +0000307 LabelMapTy LabelMap;
Mike Stump6d9828c2009-07-17 01:31:16 +0000308
309 // A list of blocks that end with a "goto" that must be backpatched to their
310 // resolved targets upon completion of CFG construction.
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000311 typedef std::vector<JumpSource> BackpatchBlocksTy;
Ted Kremenek0cebe3e2007-08-21 23:26:17 +0000312 BackpatchBlocksTy BackpatchBlocks;
Mike Stump6d9828c2009-07-17 01:31:16 +0000313
Ted Kremenek19bb3562007-08-28 19:26:49 +0000314 // A list of labels whose address has been taken (for indirect gotos).
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000315 typedef llvm::SmallPtrSet<LabelDecl*, 5> LabelSetTy;
Ted Kremenek19bb3562007-08-28 19:26:49 +0000316 LabelSetTy AddressTakenLabels;
Mike Stump6d9828c2009-07-17 01:31:16 +0000317
Zhongxing Xu49b4ef32010-09-16 03:28:18 +0000318 bool badCFG;
Ted Kremenekb8ad5ee2011-03-10 01:14:05 +0000319 const CFG::BuildOptions &BuildOpts;
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000320
321 // State to track for building switch statements.
322 bool switchExclusivelyCovered;
Ted Kremenek04982472011-03-04 01:03:41 +0000323 Expr::EvalResult *switchCond;
Ted Kremenek0d28d362011-03-10 03:50:34 +0000324
325 CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry;
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000326 const Stmt *lastLookup;
Zhongxing Xu49b4ef32010-09-16 03:28:18 +0000327
Argyrios Kyrtzidis8c6d3602012-03-23 00:59:17 +0000328 // Caches boolean evaluations of expressions to avoid multiple re-evaluations
329 // during construction of branches for chained logical operators.
NAKAMURA Takumi6955da22012-03-25 06:30:37 +0000330 typedef llvm::DenseMap<Expr *, TryResult> CachedBoolEvalsTy;
331 CachedBoolEvalsTy CachedBoolEvals;
Argyrios Kyrtzidis8c6d3602012-03-23 00:59:17 +0000332
Mike Stump6d9828c2009-07-17 01:31:16 +0000333public:
Ted Kremenekb8ad5ee2011-03-10 01:14:05 +0000334 explicit CFGBuilder(ASTContext *astContext,
335 const CFG::BuildOptions &buildOpts)
336 : Context(astContext), cfg(new CFG()), // crew a new CFG
337 Block(NULL), Succ(NULL),
338 SwitchTerminatedBlock(NULL), DefaultCaseBlock(NULL),
339 TryTerminatedBlock(NULL), badCFG(false), BuildOpts(buildOpts),
Ted Kremenek0d28d362011-03-10 03:50:34 +0000340 switchExclusivelyCovered(false), switchCond(0),
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000341 cachedEntry(0), lastLookup(0) {}
Mike Stump6d9828c2009-07-17 01:31:16 +0000342
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000343 // buildCFG - Used by external clients to construct the CFG.
Ted Kremenekb8ad5ee2011-03-10 01:14:05 +0000344 CFG* buildCFG(const Decl *D, Stmt *Statement);
Mike Stump6d9828c2009-07-17 01:31:16 +0000345
Ted Kremenek0d28d362011-03-10 03:50:34 +0000346 bool alwaysAdd(const Stmt *stmt);
347
Ted Kremenek4f880632009-07-17 22:18:43 +0000348private:
349 // Visitors to walk an AST and construct the CFG.
Ted Kremenek852274d2009-12-16 03:18:58 +0000350 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc);
351 CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc);
Ted Kremenek4f880632009-07-17 22:18:43 +0000352 CFGBlock *VisitBreakStmt(BreakStmt *B);
Ted Kremenek852274d2009-12-16 03:18:58 +0000353 CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc);
Ted Kremenek4f880632009-07-17 22:18:43 +0000354 CFGBlock *VisitCaseStmt(CaseStmt *C);
Ted Kremenek852274d2009-12-16 03:18:58 +0000355 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000356 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
John McCall56ca35d2011-02-17 10:25:35 +0000357 CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C,
358 AddStmtChoice asc);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000359 CFGBlock *VisitContinueStmt(ContinueStmt *C);
Ted Kremenek6960ee62012-07-14 05:04:01 +0000360 CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E,
361 AddStmtChoice asc);
362 CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S);
363 CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc);
364 CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S);
365 CFGBlock *VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E,
366 AddStmtChoice asc);
367 CFGBlock *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C,
368 AddStmtChoice asc);
369 CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T);
370 CFGBlock *VisitCXXTryStmt(CXXTryStmt *S);
Ted Kremenek4f880632009-07-17 22:18:43 +0000371 CFGBlock *VisitDeclStmt(DeclStmt *DS);
Ted Kremenek9c378f72011-08-12 23:37:29 +0000372 CFGBlock *VisitDeclSubExpr(DeclStmt *DS);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000373 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
374 CFGBlock *VisitDoStmt(DoStmt *D);
Ted Kremenek6960ee62012-07-14 05:04:01 +0000375 CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000376 CFGBlock *VisitForStmt(ForStmt *F);
Ted Kremenek9c378f72011-08-12 23:37:29 +0000377 CFGBlock *VisitGotoStmt(GotoStmt *G);
Ted Kremenek4f880632009-07-17 22:18:43 +0000378 CFGBlock *VisitIfStmt(IfStmt *I);
Zhongxing Xua725ed42010-11-01 13:04:58 +0000379 CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc);
Ted Kremenek4f880632009-07-17 22:18:43 +0000380 CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
381 CFGBlock *VisitLabelStmt(LabelStmt *L);
Ted Kremenek6960ee62012-07-14 05:04:01 +0000382 CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc);
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +0000383 CFGBlock *VisitLogicalOperator(BinaryOperator *B);
Ted Kremenek3f635c02012-07-14 05:04:10 +0000384 std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B,
385 Stmt *Term,
386 CFGBlock *TrueBlock,
387 CFGBlock *FalseBlock);
Ted Kremenek115c1b92010-04-11 17:02:10 +0000388 CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc);
Ted Kremenek4f880632009-07-17 22:18:43 +0000389 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
390 CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
391 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
392 CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
Ted Kremenek6960ee62012-07-14 05:04:01 +0000393 CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S);
Ted Kremenek4f880632009-07-17 22:18:43 +0000394 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
John McCall4b9c2d22011-11-06 09:01:30 +0000395 CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E);
Ted Kremenek6960ee62012-07-14 05:04:01 +0000396 CFGBlock *VisitReturnStmt(ReturnStmt *R);
Ted Kremenek852274d2009-12-16 03:18:58 +0000397 CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc);
Ted Kremenek4f880632009-07-17 22:18:43 +0000398 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
Ted Kremenek6960ee62012-07-14 05:04:01 +0000399 CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
400 AddStmtChoice asc);
Zhanyong Wan99cae5b2010-11-22 08:45:56 +0000401 CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc);
Ted Kremenek4f880632009-07-17 22:18:43 +0000402 CFGBlock *VisitWhileStmt(WhileStmt *W);
Mike Stumpcd7bf232009-07-17 01:04:31 +0000403
Ted Kremenek852274d2009-12-16 03:18:58 +0000404 CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd);
405 CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc);
Ted Kremenek9c378f72011-08-12 23:37:29 +0000406 CFGBlock *VisitChildren(Stmt *S);
Ted Kremenek55331da2012-04-12 20:03:44 +0000407 CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc);
Mike Stumpcd7bf232009-07-17 01:04:31 +0000408
Marcin Swiderski8599e762010-11-03 06:19:35 +0000409 // Visitors to walk an AST and generate destructors of temporaries in
410 // full expression.
411 CFGBlock *VisitForTemporaryDtors(Stmt *E, bool BindToTemporary = false);
412 CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E);
413 CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E);
414 CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors(CXXBindTemporaryExpr *E,
415 bool BindToTemporary);
John McCall56ca35d2011-02-17 10:25:35 +0000416 CFGBlock *
417 VisitConditionalOperatorForTemporaryDtors(AbstractConditionalOperator *E,
418 bool BindToTemporary);
Marcin Swiderski8599e762010-11-03 06:19:35 +0000419
Ted Kremenek274f4332008-04-28 18:00:46 +0000420 // NYS == Not Yet Supported
Ted Kremenek9c378f72011-08-12 23:37:29 +0000421 CFGBlock *NYS() {
Ted Kremenek4102af92008-03-13 03:04:22 +0000422 badCFG = true;
423 return Block;
424 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000425
Ted Kremenek4f880632009-07-17 22:18:43 +0000426 void autoCreateBlock() { if (!Block) Block = createBlock(); }
427 CFGBlock *createBlock(bool add_successor = true);
Chandler Carruthdba3fb52011-09-13 09:13:49 +0000428 CFGBlock *createNoReturnBlock();
Zhongxing Xud438b3d2010-09-06 07:32:31 +0000429
Zhongxing Xudf119892010-06-03 06:43:23 +0000430 CFGBlock *addStmt(Stmt *S) {
431 return Visit(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek852274d2009-12-16 03:18:58 +0000432 }
Sean Huntcbb67482011-01-08 20:30:50 +0000433 CFGBlock *addInitializer(CXXCtorInitializer *I);
Zhongxing Xu6a16a302010-10-01 03:22:39 +0000434 void addAutomaticObjDtors(LocalScope::const_iterator B,
Ted Kremenek9c378f72011-08-12 23:37:29 +0000435 LocalScope::const_iterator E, Stmt *S);
Marcin Swiderski7c625d82010-10-05 05:37:00 +0000436 void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD);
Ted Kremenekad5a8942010-08-02 23:46:59 +0000437
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000438 // Local scopes creation.
439 LocalScope* createOrReuseLocalScope(LocalScope* Scope);
440
Ted Kremenek9c378f72011-08-12 23:37:29 +0000441 void addLocalScopeForStmt(Stmt *S);
442 LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS, LocalScope* Scope = NULL);
443 LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = NULL);
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000444
Ted Kremenek9c378f72011-08-12 23:37:29 +0000445 void addLocalScopeAndDtors(Stmt *S);
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000446
447 // Interface to CFGBlock - adding CFGElements.
Ted Kremenekd40066b2011-04-04 23:29:12 +0000448 void appendStmt(CFGBlock *B, const Stmt *S) {
Ted Kremenek74fb1a42011-07-19 14:18:43 +0000449 if (alwaysAdd(S) && cachedEntry)
Ted Kremenek0d28d362011-03-10 03:50:34 +0000450 cachedEntry->second = B;
Ted Kremenek0d28d362011-03-10 03:50:34 +0000451
Jordy Roseac73ea82011-06-10 08:49:37 +0000452 // All block-level expressions should have already been IgnoreParens()ed.
453 assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S);
Ted Kremenekd40066b2011-04-04 23:29:12 +0000454 B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext());
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000455 }
Sean Huntcbb67482011-01-08 20:30:50 +0000456 void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) {
Marcin Swiderski82bc3fd2010-10-04 03:38:22 +0000457 B->appendInitializer(I, cfg->getBumpVectorContext());
458 }
Marcin Swiderski7c625d82010-10-05 05:37:00 +0000459 void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) {
460 B->appendBaseDtor(BS, cfg->getBumpVectorContext());
461 }
462 void appendMemberDtor(CFGBlock *B, FieldDecl *FD) {
463 B->appendMemberDtor(FD, cfg->getBumpVectorContext());
464 }
Marcin Swiderski8599e762010-11-03 06:19:35 +0000465 void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) {
466 B->appendTemporaryDtor(E, cfg->getBumpVectorContext());
467 }
Chandler Carruthc8cfc742011-09-13 06:09:01 +0000468 void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) {
469 B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext());
470 }
Ted Kremenekad5a8942010-08-02 23:46:59 +0000471
Ted Kremenek9c378f72011-08-12 23:37:29 +0000472 void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
Marcin Swiderski53de1342010-09-30 22:54:37 +0000473 LocalScope::const_iterator B, LocalScope::const_iterator E);
474
Ted Kremenek0a3ed312010-12-17 04:44:39 +0000475 void addSuccessor(CFGBlock *B, CFGBlock *S) {
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000476 B->addSuccessor(S, cfg->getBumpVectorContext());
477 }
Mike Stump1eb44332009-09-09 15:08:12 +0000478
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000479 /// Try and evaluate an expression to an integer constant.
480 bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) {
481 if (!BuildOpts.PruneTriviallyFalseEdges)
482 return false;
483 return !S->isTypeDependent() &&
Ted Kremenekf8adeef2011-04-04 20:30:58 +0000484 !S->isValueDependent() &&
Richard Smith51f47082011-10-29 00:50:52 +0000485 S->EvaluateAsRValue(outResult, *Context);
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000486 }
Mike Stump1eb44332009-09-09 15:08:12 +0000487
Ted Kremenek0a3ed312010-12-17 04:44:39 +0000488 /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1
Mike Stump00998a02009-07-23 23:25:26 +0000489 /// if we can evaluate to a known value, otherwise return -1.
Ted Kremenek0a3ed312010-12-17 04:44:39 +0000490 TryResult tryEvaluateBool(Expr *S) {
Richard Smith85df96c2011-10-14 20:22:00 +0000491 if (!BuildOpts.PruneTriviallyFalseEdges ||
Argyrios Kyrtzidis8c6d3602012-03-23 00:59:17 +0000492 S->isTypeDependent() || S->isValueDependent())
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000493 return TryResult();
Argyrios Kyrtzidis8c6d3602012-03-23 00:59:17 +0000494
495 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) {
496 if (Bop->isLogicalOp()) {
497 // Check the cache first.
NAKAMURA Takumi6955da22012-03-25 06:30:37 +0000498 CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S);
499 if (I != CachedBoolEvals.end())
Argyrios Kyrtzidis8c6d3602012-03-23 00:59:17 +0000500 return I->second; // already in map;
NAKAMURA Takumi9260f612012-03-25 06:30:32 +0000501
502 // Retrieve result at first, or the map might be updated.
503 TryResult Result = evaluateAsBooleanConditionNoCache(S);
504 CachedBoolEvals[S] = Result; // update or insert
505 return Result;
Argyrios Kyrtzidis8c6d3602012-03-23 00:59:17 +0000506 }
Ted Kremenek3d1125b2012-08-24 07:42:09 +0000507 else {
508 switch (Bop->getOpcode()) {
509 default: break;
510 // For 'x & 0' and 'x * 0', we can determine that
511 // the value is always false.
512 case BO_Mul:
513 case BO_And: {
514 // If either operand is zero, we know the value
515 // must be false.
516 llvm::APSInt IntVal;
517 if (Bop->getLHS()->EvaluateAsInt(IntVal, *Context)) {
518 if (IntVal.getBoolValue() == false) {
519 return TryResult(false);
520 }
521 }
522 if (Bop->getRHS()->EvaluateAsInt(IntVal, *Context)) {
523 if (IntVal.getBoolValue() == false) {
524 return TryResult(false);
525 }
526 }
527 }
528 break;
529 }
530 }
Argyrios Kyrtzidis8c6d3602012-03-23 00:59:17 +0000531 }
532
533 return evaluateAsBooleanConditionNoCache(S);
534 }
535
536 /// \brief Evaluate as boolean \param E without using the cache.
537 TryResult evaluateAsBooleanConditionNoCache(Expr *E) {
538 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) {
539 if (Bop->isLogicalOp()) {
540 TryResult LHS = tryEvaluateBool(Bop->getLHS());
541 if (LHS.isKnown()) {
542 // We were able to evaluate the LHS, see if we can get away with not
543 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
544 if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr))
545 return LHS.isTrue();
546
547 TryResult RHS = tryEvaluateBool(Bop->getRHS());
548 if (RHS.isKnown()) {
549 if (Bop->getOpcode() == BO_LOr)
550 return LHS.isTrue() || RHS.isTrue();
551 else
552 return LHS.isTrue() && RHS.isTrue();
553 }
554 } else {
555 TryResult RHS = tryEvaluateBool(Bop->getRHS());
556 if (RHS.isKnown()) {
557 // We can't evaluate the LHS; however, sometimes the result
558 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
559 if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr))
560 return RHS.isTrue();
561 }
562 }
563
564 return TryResult();
565 }
566 }
567
568 bool Result;
569 if (E->EvaluateAsBooleanCondition(Result, *Context))
570 return Result;
571
572 return TryResult();
Mike Stump00998a02009-07-23 23:25:26 +0000573 }
Ted Kremeneke71f3d52011-03-01 23:12:55 +0000574
Ted Kremenekfddd5182007-08-21 21:42:03 +0000575};
Mike Stump6d9828c2009-07-17 01:31:16 +0000576
Ted Kremenek0d28d362011-03-10 03:50:34 +0000577inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder,
578 const Stmt *stmt) const {
579 return builder.alwaysAdd(stmt) || kind == AlwaysAdd;
580}
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000581
Ted Kremenek0d28d362011-03-10 03:50:34 +0000582bool CFGBuilder::alwaysAdd(const Stmt *stmt) {
Ted Kremenek74fb1a42011-07-19 14:18:43 +0000583 bool shouldAdd = BuildOpts.alwaysAdd(stmt);
584
Ted Kremenek0d28d362011-03-10 03:50:34 +0000585 if (!BuildOpts.forcedBlkExprs)
Ted Kremenek74fb1a42011-07-19 14:18:43 +0000586 return shouldAdd;
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000587
588 if (lastLookup == stmt) {
589 if (cachedEntry) {
590 assert(cachedEntry->first == stmt);
591 return true;
592 }
Ted Kremenek74fb1a42011-07-19 14:18:43 +0000593 return shouldAdd;
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000594 }
Ted Kremenek0d28d362011-03-10 03:50:34 +0000595
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000596 lastLookup = stmt;
597
598 // Perform the lookup!
Ted Kremenek0d28d362011-03-10 03:50:34 +0000599 CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs;
600
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000601 if (!fb) {
602 // No need to update 'cachedEntry', since it will always be null.
603 assert(cachedEntry == 0);
Ted Kremenek74fb1a42011-07-19 14:18:43 +0000604 return shouldAdd;
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000605 }
Ted Kremenek0d28d362011-03-10 03:50:34 +0000606
607 CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt);
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000608 if (itr == fb->end()) {
609 cachedEntry = 0;
Ted Kremenek74fb1a42011-07-19 14:18:43 +0000610 return shouldAdd;
Ted Kremeneka8d459e2011-03-23 21:33:21 +0000611 }
612
Ted Kremenek0d28d362011-03-10 03:50:34 +0000613 cachedEntry = &*itr;
614 return true;
Ted Kremenek3179a452011-03-10 01:14:11 +0000615}
616
Douglas Gregor898574e2008-12-05 23:32:09 +0000617// FIXME: Add support for dependent-sized array types in C++?
618// Does it even make sense to build a CFG for an uninstantiated template?
John McCallf4c73712011-01-19 06:33:43 +0000619static const VariableArrayType *FindVA(const Type *t) {
620 while (const ArrayType *vt = dyn_cast<ArrayType>(t)) {
621 if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt))
Ted Kremenek610a09e2008-09-26 22:58:57 +0000622 if (vat->getSizeExpr())
623 return vat;
Mike Stump6d9828c2009-07-17 01:31:16 +0000624
Ted Kremenek610a09e2008-09-26 22:58:57 +0000625 t = vt->getElementType().getTypePtr();
626 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000627
Ted Kremenek610a09e2008-09-26 22:58:57 +0000628 return 0;
629}
Mike Stump6d9828c2009-07-17 01:31:16 +0000630
631/// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an
632/// arbitrary statement. Examples include a single expression or a function
633/// body (compound statement). The ownership of the returned CFG is
634/// transferred to the caller. If CFG construction fails, this method returns
635/// NULL.
Ted Kremenek9c378f72011-08-12 23:37:29 +0000636CFG* CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) {
Ted Kremenek0ba497b2009-10-20 23:46:25 +0000637 assert(cfg.get());
Ted Kremenek4f880632009-07-17 22:18:43 +0000638 if (!Statement)
639 return NULL;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000640
Mike Stump6d9828c2009-07-17 01:31:16 +0000641 // Create an empty block that will serve as the exit block for the CFG. Since
642 // this is the first block added to the CFG, it will be implicitly registered
643 // as the exit block.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000644 Succ = createBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000645 assert(Succ == &cfg->getExit());
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000646 Block = NULL; // the EXIT block is empty. Create all other blocks lazily.
Mike Stump6d9828c2009-07-17 01:31:16 +0000647
Marcin Swiderski7c625d82010-10-05 05:37:00 +0000648 if (BuildOpts.AddImplicitDtors)
649 if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D))
650 addImplicitDtorsForDestructor(DD);
651
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000652 // Visit the statements and create the CFG.
Zhongxing Xu1b3b7cb2010-09-06 07:04:06 +0000653 CFGBlock *B = addStmt(Statement);
654
655 if (badCFG)
656 return NULL;
657
Marcin Swiderski82bc3fd2010-10-04 03:38:22 +0000658 // For C++ constructor add initializers to CFG.
659 if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) {
660 for (CXXConstructorDecl::init_const_reverse_iterator I = CD->init_rbegin(),
661 E = CD->init_rend(); I != E; ++I) {
662 B = addInitializer(*I);
663 if (badCFG)
664 return NULL;
665 }
666 }
667
Zhongxing Xu1b3b7cb2010-09-06 07:04:06 +0000668 if (B)
669 Succ = B;
Mike Stumpb978a442010-01-21 02:21:40 +0000670
Zhongxing Xu1b3b7cb2010-09-06 07:04:06 +0000671 // Backpatch the gotos whose label -> block mappings we didn't know when we
672 // encountered them.
673 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
674 E = BackpatchBlocks.end(); I != E; ++I ) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000675
Ted Kremenek9c378f72011-08-12 23:37:29 +0000676 CFGBlock *B = I->block;
677 GotoStmt *G = cast<GotoStmt>(B->getTerminator());
Zhongxing Xu1b3b7cb2010-09-06 07:04:06 +0000678 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
Mike Stump6d9828c2009-07-17 01:31:16 +0000679
Zhongxing Xu1b3b7cb2010-09-06 07:04:06 +0000680 // If there is no target for the goto, then we are looking at an
681 // incomplete AST. Handle this by not registering a successor.
682 if (LI == LabelMap.end()) continue;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000683
Marcin Swiderskif1308c72010-09-25 11:05:21 +0000684 JumpTarget JT = LI->second;
Ted Kremenek9ce52702011-01-07 19:37:16 +0000685 prependAutomaticObjDtorsWithTerminator(B, I->scopePosition,
686 JT.scopePosition);
687 addSuccessor(B, JT.block);
Zhongxing Xu1b3b7cb2010-09-06 07:04:06 +0000688 }
689
690 // Add successors to the Indirect Goto Dispatch block (if we have one).
Ted Kremenek9c378f72011-08-12 23:37:29 +0000691 if (CFGBlock *B = cfg->getIndirectGotoBlock())
Zhongxing Xu1b3b7cb2010-09-06 07:04:06 +0000692 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
693 E = AddressTakenLabels.end(); I != E; ++I ) {
694
695 // Lookup the target block.
696 LabelMapTy::iterator LI = LabelMap.find(*I);
697
698 // If there is no target block that contains label, then we are looking
699 // at an incomplete AST. Handle this by not registering a successor.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000700 if (LI == LabelMap.end()) continue;
Zhongxing Xu1b3b7cb2010-09-06 07:04:06 +0000701
Ted Kremenek9ce52702011-01-07 19:37:16 +0000702 addSuccessor(B, LI->second.block);
Ted Kremenek19bb3562007-08-28 19:26:49 +0000703 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000704
Mike Stump6d9828c2009-07-17 01:31:16 +0000705 // Create an empty entry block that has no predecessors.
Ted Kremenek322f58d2007-09-26 21:23:31 +0000706 cfg->setEntry(createBlock());
Mike Stump6d9828c2009-07-17 01:31:16 +0000707
Zhongxing Xu1b3b7cb2010-09-06 07:04:06 +0000708 return cfg.take();
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000709}
Mike Stump6d9828c2009-07-17 01:31:16 +0000710
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000711/// createBlock - Used to lazily create blocks that are connected
712/// to the current (global) succcessor.
Ted Kremenek9c378f72011-08-12 23:37:29 +0000713CFGBlock *CFGBuilder::createBlock(bool add_successor) {
714 CFGBlock *B = cfg->createBlock();
Ted Kremenek4f880632009-07-17 22:18:43 +0000715 if (add_successor && Succ)
Ted Kremenek0a3ed312010-12-17 04:44:39 +0000716 addSuccessor(B, Succ);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000717 return B;
718}
Mike Stump6d9828c2009-07-17 01:31:16 +0000719
Chandler Carruthdba3fb52011-09-13 09:13:49 +0000720/// createNoReturnBlock - Used to create a block is a 'noreturn' point in the
721/// CFG. It is *not* connected to the current (global) successor, and instead
722/// directly tied to the exit block in order to be reachable.
723CFGBlock *CFGBuilder::createNoReturnBlock() {
724 CFGBlock *B = createBlock(false);
Chandler Carruth83754162011-09-13 09:53:55 +0000725 B->setHasNoReturnElement();
Chandler Carruthdba3fb52011-09-13 09:13:49 +0000726 addSuccessor(B, &cfg->getExit());
727 return B;
728}
729
Marcin Swiderski82bc3fd2010-10-04 03:38:22 +0000730/// addInitializer - Add C++ base or member initializer element to CFG.
Sean Huntcbb67482011-01-08 20:30:50 +0000731CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) {
Marcin Swiderski82bc3fd2010-10-04 03:38:22 +0000732 if (!BuildOpts.AddInitializers)
733 return Block;
734
Marcin Swiderski8599e762010-11-03 06:19:35 +0000735 bool IsReference = false;
736 bool HasTemporaries = false;
737
738 // Destructors of temporaries in initialization expression should be called
739 // after initialization finishes.
740 Expr *Init = I->getInit();
741 if (Init) {
Francois Pichet00eb3f92010-12-04 09:14:42 +0000742 if (FieldDecl *FD = I->getAnyMember())
Marcin Swiderski8599e762010-11-03 06:19:35 +0000743 IsReference = FD->getType()->isReferenceType();
John McCall4765fa02010-12-06 08:20:24 +0000744 HasTemporaries = isa<ExprWithCleanups>(Init);
Marcin Swiderski8599e762010-11-03 06:19:35 +0000745
Jordan Rose5a1ffe92012-09-05 22:55:23 +0000746 if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
Marcin Swiderski8599e762010-11-03 06:19:35 +0000747 // Generate destructors for temporaries in initialization expression.
John McCall4765fa02010-12-06 08:20:24 +0000748 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
Marcin Swiderski8599e762010-11-03 06:19:35 +0000749 IsReference);
750 }
751 }
752
Marcin Swiderski82bc3fd2010-10-04 03:38:22 +0000753 autoCreateBlock();
754 appendInitializer(Block, I);
755
Marcin Swiderski8599e762010-11-03 06:19:35 +0000756 if (Init) {
Ted Kremenek892697d2010-12-16 07:46:53 +0000757 if (HasTemporaries) {
Marcin Swiderski8599e762010-11-03 06:19:35 +0000758 // For expression with temporaries go directly to subexpression to omit
759 // generating destructors for the second time.
Ted Kremenek892697d2010-12-16 07:46:53 +0000760 return Visit(cast<ExprWithCleanups>(Init)->getSubExpr());
761 }
762 return Visit(Init);
Marcin Swiderski82bc3fd2010-10-04 03:38:22 +0000763 }
Marcin Swiderski8599e762010-11-03 06:19:35 +0000764
Marcin Swiderski82bc3fd2010-10-04 03:38:22 +0000765 return Block;
766}
767
Douglas Gregor2d9eb212011-11-15 15:29:30 +0000768/// \brief Retrieve the type of the temporary object whose lifetime was
769/// extended by a local reference with the given initializer.
770static QualType getReferenceInitTemporaryType(ASTContext &Context,
771 const Expr *Init) {
772 while (true) {
773 // Skip parentheses.
774 Init = Init->IgnoreParens();
775
776 // Skip through cleanups.
777 if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) {
778 Init = EWC->getSubExpr();
779 continue;
780 }
781
782 // Skip through the temporary-materialization expression.
783 if (const MaterializeTemporaryExpr *MTE
784 = dyn_cast<MaterializeTemporaryExpr>(Init)) {
785 Init = MTE->GetTemporaryExpr();
786 continue;
787 }
788
789 // Skip derived-to-base and no-op casts.
790 if (const CastExpr *CE = dyn_cast<CastExpr>(Init)) {
791 if ((CE->getCastKind() == CK_DerivedToBase ||
792 CE->getCastKind() == CK_UncheckedDerivedToBase ||
793 CE->getCastKind() == CK_NoOp) &&
794 Init->getType()->isRecordType()) {
795 Init = CE->getSubExpr();
796 continue;
797 }
798 }
799
800 // Skip member accesses into rvalues.
801 if (const MemberExpr *ME = dyn_cast<MemberExpr>(Init)) {
802 if (!ME->isArrow() && ME->getBase()->isRValue()) {
803 Init = ME->getBase();
804 continue;
805 }
806 }
807
808 break;
809 }
810
811 return Init->getType();
812}
813
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000814/// addAutomaticObjDtors - Add to current block automatic objects destructors
815/// for objects in range of local scope positions. Use S as trigger statement
816/// for destructors.
Zhongxing Xu6a16a302010-10-01 03:22:39 +0000817void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B,
Ted Kremenek9c378f72011-08-12 23:37:29 +0000818 LocalScope::const_iterator E, Stmt *S) {
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000819 if (!BuildOpts.AddImplicitDtors)
Zhongxing Xu6a16a302010-10-01 03:22:39 +0000820 return;
821
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000822 if (B == E)
Zhongxing Xu6a16a302010-10-01 03:22:39 +0000823 return;
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000824
Chandler Carruthc8cfc742011-09-13 06:09:01 +0000825 // We need to append the destructors in reverse order, but any one of them
826 // may be a no-return destructor which changes the CFG. As a result, buffer
827 // this sequence up and replay them in reverse order when appending onto the
828 // CFGBlock(s).
829 SmallVector<VarDecl*, 10> Decls;
830 Decls.reserve(B.distance(E));
831 for (LocalScope::const_iterator I = B; I != E; ++I)
832 Decls.push_back(*I);
833
834 for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(),
835 E = Decls.rend();
836 I != E; ++I) {
837 // If this destructor is marked as a no-return destructor, we need to
838 // create a new block for the destructor which does not have as a successor
839 // anything built thus far: control won't flow out of this block.
Ted Kremenek88237bf2012-07-18 04:57:57 +0000840 QualType Ty = (*I)->getType();
841 if (Ty->isReferenceType()) {
Douglas Gregor2d9eb212011-11-15 15:29:30 +0000842 Ty = getReferenceInitTemporaryType(*Context, (*I)->getInit());
Douglas Gregor2d9eb212011-11-15 15:29:30 +0000843 }
Ted Kremenek88237bf2012-07-18 04:57:57 +0000844 Ty = Context->getBaseElementType(Ty);
845
Chandler Carruthc8cfc742011-09-13 06:09:01 +0000846 const CXXDestructorDecl *Dtor = Ty->getAsCXXRecordDecl()->getDestructor();
Richard Smithcd8ab512013-01-17 01:30:42 +0000847 if (Dtor->isNoReturn())
Chandler Carruthdba3fb52011-09-13 09:13:49 +0000848 Block = createNoReturnBlock();
849 else
Chandler Carruthc8cfc742011-09-13 06:09:01 +0000850 autoCreateBlock();
Chandler Carruthc8cfc742011-09-13 06:09:01 +0000851
852 appendAutomaticObjDtor(Block, *I, S);
853 }
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000854}
855
Marcin Swiderski7c625d82010-10-05 05:37:00 +0000856/// addImplicitDtorsForDestructor - Add implicit destructors generated for
857/// base and member objects in destructor.
858void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) {
859 assert (BuildOpts.AddImplicitDtors
860 && "Can be called only when dtors should be added");
861 const CXXRecordDecl *RD = DD->getParent();
862
863 // At the end destroy virtual base objects.
864 for (CXXRecordDecl::base_class_const_iterator VI = RD->vbases_begin(),
865 VE = RD->vbases_end(); VI != VE; ++VI) {
866 const CXXRecordDecl *CD = VI->getType()->getAsCXXRecordDecl();
867 if (!CD->hasTrivialDestructor()) {
868 autoCreateBlock();
869 appendBaseDtor(Block, VI);
870 }
871 }
872
873 // Before virtual bases destroy direct base objects.
874 for (CXXRecordDecl::base_class_const_iterator BI = RD->bases_begin(),
875 BE = RD->bases_end(); BI != BE; ++BI) {
David Blaikie23661d32012-01-24 04:51:48 +0000876 if (!BI->isVirtual()) {
877 const CXXRecordDecl *CD = BI->getType()->getAsCXXRecordDecl();
878 if (!CD->hasTrivialDestructor()) {
879 autoCreateBlock();
880 appendBaseDtor(Block, BI);
881 }
882 }
Marcin Swiderski7c625d82010-10-05 05:37:00 +0000883 }
884
885 // First destroy member objects.
886 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
887 FE = RD->field_end(); FI != FE; ++FI) {
Marcin Swiderski8c5e5d62010-10-25 07:05:54 +0000888 // Check for constant size array. Set type to array element type.
889 QualType QT = FI->getType();
890 if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
891 if (AT->getSize() == 0)
892 continue;
893 QT = AT->getElementType();
894 }
895
896 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
Marcin Swiderski7c625d82010-10-05 05:37:00 +0000897 if (!CD->hasTrivialDestructor()) {
898 autoCreateBlock();
David Blaikie581deb32012-06-06 20:45:41 +0000899 appendMemberDtor(Block, *FI);
Marcin Swiderski7c625d82010-10-05 05:37:00 +0000900 }
901 }
902}
903
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000904/// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either
905/// way return valid LocalScope object.
906LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) {
907 if (!Scope) {
Ted Kremenekfe59b742011-02-15 02:47:45 +0000908 llvm::BumpPtrAllocator &alloc = cfg->getAllocator();
909 Scope = alloc.Allocate<LocalScope>();
910 BumpVectorContext ctx(alloc);
911 new (Scope) LocalScope(ctx, ScopePos);
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000912 }
913 return Scope;
914}
915
916/// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement
Zhongxing Xu02acdfa2010-10-01 03:00:16 +0000917/// that should create implicit scope (e.g. if/else substatements).
Ted Kremenek9c378f72011-08-12 23:37:29 +0000918void CFGBuilder::addLocalScopeForStmt(Stmt *S) {
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000919 if (!BuildOpts.AddImplicitDtors)
Zhongxing Xu02acdfa2010-10-01 03:00:16 +0000920 return;
921
922 LocalScope *Scope = 0;
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000923
924 // For compound statement we will be creating explicit scope.
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000925 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) {
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000926 for (CompoundStmt::body_iterator BI = CS->body_begin(), BE = CS->body_end()
927 ; BI != BE; ++BI) {
Chandler Carrutha1364be2011-09-10 00:02:34 +0000928 Stmt *SI = (*BI)->stripLabelLikeStatements();
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000929 if (DeclStmt *DS = dyn_cast<DeclStmt>(SI))
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000930 Scope = addLocalScopeForDeclStmt(DS, Scope);
931 }
Zhongxing Xu02acdfa2010-10-01 03:00:16 +0000932 return;
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000933 }
934
935 // For any other statement scope will be implicit and as such will be
936 // interesting only for DeclStmt.
Chandler Carrutha1364be2011-09-10 00:02:34 +0000937 if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements()))
Zhongxing Xub6edff52010-10-01 03:09:09 +0000938 addLocalScopeForDeclStmt(DS);
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000939}
940
941/// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will
942/// reuse Scope if not NULL.
Ted Kremenek9c378f72011-08-12 23:37:29 +0000943LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS,
Zhongxing Xub6edff52010-10-01 03:09:09 +0000944 LocalScope* Scope) {
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000945 if (!BuildOpts.AddImplicitDtors)
946 return Scope;
947
948 for (DeclStmt::decl_iterator DI = DS->decl_begin(), DE = DS->decl_end()
949 ; DI != DE; ++DI) {
Ted Kremenek9c378f72011-08-12 23:37:29 +0000950 if (VarDecl *VD = dyn_cast<VarDecl>(*DI))
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000951 Scope = addLocalScopeForVarDecl(VD, Scope);
952 }
953 return Scope;
954}
955
956/// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will
957/// create add scope for automatic objects and temporary objects bound to
958/// const reference. Will reuse Scope if not NULL.
Ted Kremenek9c378f72011-08-12 23:37:29 +0000959LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD,
Zhongxing Xub6edff52010-10-01 03:09:09 +0000960 LocalScope* Scope) {
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000961 if (!BuildOpts.AddImplicitDtors)
962 return Scope;
963
964 // Check if variable is local.
965 switch (VD->getStorageClass()) {
966 case SC_None:
967 case SC_Auto:
968 case SC_Register:
969 break;
970 default: return Scope;
971 }
972
973 // Check for const references bound to temporary. Set type to pointee.
974 QualType QT = VD->getType();
Douglas Gregor2d9eb212011-11-15 15:29:30 +0000975 if (QT.getTypePtr()->isReferenceType()) {
Douglas Gregor03e80032011-06-21 17:03:29 +0000976 if (!VD->extendsLifetimeOfTemporary())
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000977 return Scope;
Douglas Gregor2d9eb212011-11-15 15:29:30 +0000978
979 QT = getReferenceInitTemporaryType(*Context, VD->getInit());
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000980 }
981
Marcin Swiderskib1c52872010-10-25 07:00:40 +0000982 // Check for constant size array. Set type to array element type.
Douglas Gregor2d9eb212011-11-15 15:29:30 +0000983 while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
Marcin Swiderskib1c52872010-10-25 07:00:40 +0000984 if (AT->getSize() == 0)
985 return Scope;
986 QT = AT->getElementType();
987 }
Zhongxing Xu4e493e02010-10-05 08:38:06 +0000988
Marcin Swiderskib1c52872010-10-25 07:00:40 +0000989 // Check if type is a C++ class with non-trivial destructor.
Ted Kremenek9c378f72011-08-12 23:37:29 +0000990 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
David Blaikie23661d32012-01-24 04:51:48 +0000991 if (!CD->hasTrivialDestructor()) {
Zhongxing Xu4e493e02010-10-05 08:38:06 +0000992 // Add the variable to scope
993 Scope = createOrReuseLocalScope(Scope);
994 Scope->addVar(VD);
995 ScopePos = Scope->begin();
996 }
Marcin Swiderski239a7c42010-09-30 23:05:00 +0000997 return Scope;
998}
999
1000/// addLocalScopeAndDtors - For given statement add local scope for it and
1001/// add destructors that will cleanup the scope. Will reuse Scope if not NULL.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001002void CFGBuilder::addLocalScopeAndDtors(Stmt *S) {
Marcin Swiderski239a7c42010-09-30 23:05:00 +00001003 if (!BuildOpts.AddImplicitDtors)
1004 return;
1005
1006 LocalScope::const_iterator scopeBeginPos = ScopePos;
Zhongxing Xu02acdfa2010-10-01 03:00:16 +00001007 addLocalScopeForStmt(S);
Marcin Swiderski239a7c42010-09-30 23:05:00 +00001008 addAutomaticObjDtors(ScopePos, scopeBeginPos, S);
1009}
1010
Marcin Swiderski53de1342010-09-30 22:54:37 +00001011/// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for
1012/// variables with automatic storage duration to CFGBlock's elements vector.
1013/// Elements will be prepended to physical beginning of the vector which
1014/// happens to be logical end. Use blocks terminator as statement that specifies
1015/// destructors call site.
Chandler Carruthc8cfc742011-09-13 06:09:01 +00001016/// FIXME: This mechanism for adding automatic destructors doesn't handle
1017/// no-return destructors properly.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001018void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
Marcin Swiderski53de1342010-09-30 22:54:37 +00001019 LocalScope::const_iterator B, LocalScope::const_iterator E) {
Chandler Carruthc8cfc742011-09-13 06:09:01 +00001020 BumpVectorContext &C = cfg->getBumpVectorContext();
1021 CFGBlock::iterator InsertPos
1022 = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C);
1023 for (LocalScope::const_iterator I = B; I != E; ++I)
1024 InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I,
1025 Blk->getTerminator());
Marcin Swiderski53de1342010-09-30 22:54:37 +00001026}
1027
Ted Kremenek4f880632009-07-17 22:18:43 +00001028/// Visit - Walk the subtree of a statement and add extra
Mike Stump6d9828c2009-07-17 01:31:16 +00001029/// blocks for ternary operators, &&, and ||. We also process "," and
1030/// DeclStmts (which may contain nested control-flow).
Ted Kremenek9c378f72011-08-12 23:37:29 +00001031CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) {
Ted Kremenekf42e3372010-04-30 22:25:53 +00001032 if (!S) {
1033 badCFG = true;
1034 return 0;
1035 }
Jordy Roseac73ea82011-06-10 08:49:37 +00001036
1037 if (Expr *E = dyn_cast<Expr>(S))
1038 S = E->IgnoreParens();
1039
Ted Kremenek4f880632009-07-17 22:18:43 +00001040 switch (S->getStmtClass()) {
1041 default:
Ted Kremenek852274d2009-12-16 03:18:58 +00001042 return VisitStmt(S, asc);
Ted Kremenek4f880632009-07-17 22:18:43 +00001043
1044 case Stmt::AddrLabelExprClass:
Ted Kremenek852274d2009-12-16 03:18:58 +00001045 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc);
Mike Stump1eb44332009-09-09 15:08:12 +00001046
John McCall56ca35d2011-02-17 10:25:35 +00001047 case Stmt::BinaryConditionalOperatorClass:
1048 return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc);
1049
Ted Kremenek4f880632009-07-17 22:18:43 +00001050 case Stmt::BinaryOperatorClass:
Ted Kremenek852274d2009-12-16 03:18:58 +00001051 return VisitBinaryOperator(cast<BinaryOperator>(S), asc);
Mike Stump1eb44332009-09-09 15:08:12 +00001052
Ted Kremenek4f880632009-07-17 22:18:43 +00001053 case Stmt::BlockExprClass:
Ted Kremenek55331da2012-04-12 20:03:44 +00001054 return VisitNoRecurse(cast<Expr>(S), asc);
Ted Kremenek4f880632009-07-17 22:18:43 +00001055
Ted Kremenek4f880632009-07-17 22:18:43 +00001056 case Stmt::BreakStmtClass:
1057 return VisitBreakStmt(cast<BreakStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001058
Ted Kremenek4f880632009-07-17 22:18:43 +00001059 case Stmt::CallExprClass:
Ted Kremeneka427f1d2010-08-31 18:47:34 +00001060 case Stmt::CXXOperatorCallExprClass:
John McCall1de85332011-05-11 07:19:11 +00001061 case Stmt::CXXMemberCallExprClass:
Richard Smith9fcce652012-03-07 08:35:16 +00001062 case Stmt::UserDefinedLiteralClass:
Ted Kremenek852274d2009-12-16 03:18:58 +00001063 return VisitCallExpr(cast<CallExpr>(S), asc);
Mike Stump1eb44332009-09-09 15:08:12 +00001064
Ted Kremenek4f880632009-07-17 22:18:43 +00001065 case Stmt::CaseStmtClass:
1066 return VisitCaseStmt(cast<CaseStmt>(S));
1067
1068 case Stmt::ChooseExprClass:
Ted Kremenek852274d2009-12-16 03:18:58 +00001069 return VisitChooseExpr(cast<ChooseExpr>(S), asc);
Mike Stump1eb44332009-09-09 15:08:12 +00001070
Ted Kremenek4f880632009-07-17 22:18:43 +00001071 case Stmt::CompoundStmtClass:
1072 return VisitCompoundStmt(cast<CompoundStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001073
Ted Kremenek4f880632009-07-17 22:18:43 +00001074 case Stmt::ConditionalOperatorClass:
Ted Kremenek852274d2009-12-16 03:18:58 +00001075 return VisitConditionalOperator(cast<ConditionalOperator>(S), asc);
Mike Stump1eb44332009-09-09 15:08:12 +00001076
Ted Kremenek4f880632009-07-17 22:18:43 +00001077 case Stmt::ContinueStmtClass:
1078 return VisitContinueStmt(cast<ContinueStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001079
Ted Kremenek021c8af2010-01-19 20:40:33 +00001080 case Stmt::CXXCatchStmtClass:
1081 return VisitCXXCatchStmt(cast<CXXCatchStmt>(S));
1082
John McCall4765fa02010-12-06 08:20:24 +00001083 case Stmt::ExprWithCleanupsClass:
1084 return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc);
Ted Kremenek47e331e2010-08-28 00:19:02 +00001085
Jordan Roseb66529d2012-08-23 18:10:53 +00001086 case Stmt::CXXDefaultArgExprClass:
1087 // FIXME: The expression inside a CXXDefaultArgExpr is owned by the
1088 // called function's declaration, not by the caller. If we simply add
1089 // this expression to the CFG, we could end up with the same Expr
1090 // appearing multiple times.
1091 // PR13385 / <rdar://problem/12156507>
1092 return VisitStmt(S, asc);
1093
Zhongxing Xua725ed42010-11-01 13:04:58 +00001094 case Stmt::CXXBindTemporaryExprClass:
1095 return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc);
1096
Zhongxing Xu81bc7d02010-11-01 06:46:05 +00001097 case Stmt::CXXConstructExprClass:
1098 return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc);
1099
Zhongxing Xua725ed42010-11-01 13:04:58 +00001100 case Stmt::CXXFunctionalCastExprClass:
1101 return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc);
1102
Zhongxing Xu81bc7d02010-11-01 06:46:05 +00001103 case Stmt::CXXTemporaryObjectExprClass:
1104 return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc);
1105
Ted Kremenek021c8af2010-01-19 20:40:33 +00001106 case Stmt::CXXThrowExprClass:
1107 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
Ted Kremenekad5a8942010-08-02 23:46:59 +00001108
Ted Kremenek021c8af2010-01-19 20:40:33 +00001109 case Stmt::CXXTryStmtClass:
1110 return VisitCXXTryStmt(cast<CXXTryStmt>(S));
Ted Kremenekad5a8942010-08-02 23:46:59 +00001111
Richard Smithad762fc2011-04-14 22:09:26 +00001112 case Stmt::CXXForRangeStmtClass:
1113 return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S));
1114
Ted Kremenek4f880632009-07-17 22:18:43 +00001115 case Stmt::DeclStmtClass:
1116 return VisitDeclStmt(cast<DeclStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001117
Ted Kremenek4f880632009-07-17 22:18:43 +00001118 case Stmt::DefaultStmtClass:
1119 return VisitDefaultStmt(cast<DefaultStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001120
Ted Kremenek4f880632009-07-17 22:18:43 +00001121 case Stmt::DoStmtClass:
1122 return VisitDoStmt(cast<DoStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001123
Ted Kremenek4f880632009-07-17 22:18:43 +00001124 case Stmt::ForStmtClass:
1125 return VisitForStmt(cast<ForStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001126
Ted Kremenek4f880632009-07-17 22:18:43 +00001127 case Stmt::GotoStmtClass:
1128 return VisitGotoStmt(cast<GotoStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001129
Ted Kremenek4f880632009-07-17 22:18:43 +00001130 case Stmt::IfStmtClass:
1131 return VisitIfStmt(cast<IfStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001132
Ted Kremenek892697d2010-12-16 07:46:53 +00001133 case Stmt::ImplicitCastExprClass:
1134 return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc);
Zhongxing Xua725ed42010-11-01 13:04:58 +00001135
Ted Kremenek4f880632009-07-17 22:18:43 +00001136 case Stmt::IndirectGotoStmtClass:
1137 return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001138
Ted Kremenek4f880632009-07-17 22:18:43 +00001139 case Stmt::LabelStmtClass:
1140 return VisitLabelStmt(cast<LabelStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001141
Ted Kremenek83748e22012-04-12 20:34:52 +00001142 case Stmt::LambdaExprClass:
1143 return VisitLambdaExpr(cast<LambdaExpr>(S), asc);
1144
Ted Kremenek115c1b92010-04-11 17:02:10 +00001145 case Stmt::MemberExprClass:
1146 return VisitMemberExpr(cast<MemberExpr>(S), asc);
1147
Ted Kremenek6a9065a2011-11-05 00:10:15 +00001148 case Stmt::NullStmtClass:
1149 return Block;
1150
Ted Kremenek4f880632009-07-17 22:18:43 +00001151 case Stmt::ObjCAtCatchStmtClass:
Mike Stump1eb44332009-09-09 15:08:12 +00001152 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
1153
Ted Kremenek8e282c32012-03-06 23:40:47 +00001154 case Stmt::ObjCAutoreleasePoolStmtClass:
1155 return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S));
1156
Ted Kremenek4f880632009-07-17 22:18:43 +00001157 case Stmt::ObjCAtSynchronizedStmtClass:
1158 return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001159
Ted Kremenek4f880632009-07-17 22:18:43 +00001160 case Stmt::ObjCAtThrowStmtClass:
1161 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001162
Ted Kremenek4f880632009-07-17 22:18:43 +00001163 case Stmt::ObjCAtTryStmtClass:
1164 return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001165
Ted Kremenek4f880632009-07-17 22:18:43 +00001166 case Stmt::ObjCForCollectionStmtClass:
1167 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001168
Ted Kremenek6a9065a2011-11-05 00:10:15 +00001169 case Stmt::OpaqueValueExprClass:
Ted Kremenek4f880632009-07-17 22:18:43 +00001170 return Block;
Mike Stump1eb44332009-09-09 15:08:12 +00001171
John McCall4b9c2d22011-11-06 09:01:30 +00001172 case Stmt::PseudoObjectExprClass:
1173 return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S));
1174
Ted Kremenek4f880632009-07-17 22:18:43 +00001175 case Stmt::ReturnStmtClass:
1176 return VisitReturnStmt(cast<ReturnStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001177
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00001178 case Stmt::UnaryExprOrTypeTraitExprClass:
1179 return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S),
1180 asc);
Mike Stump1eb44332009-09-09 15:08:12 +00001181
Ted Kremenek4f880632009-07-17 22:18:43 +00001182 case Stmt::StmtExprClass:
Ted Kremenek852274d2009-12-16 03:18:58 +00001183 return VisitStmtExpr(cast<StmtExpr>(S), asc);
Mike Stump1eb44332009-09-09 15:08:12 +00001184
Ted Kremenek4f880632009-07-17 22:18:43 +00001185 case Stmt::SwitchStmtClass:
1186 return VisitSwitchStmt(cast<SwitchStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +00001187
Zhanyong Wan99cae5b2010-11-22 08:45:56 +00001188 case Stmt::UnaryOperatorClass:
1189 return VisitUnaryOperator(cast<UnaryOperator>(S), asc);
1190
Ted Kremenek4f880632009-07-17 22:18:43 +00001191 case Stmt::WhileStmtClass:
1192 return VisitWhileStmt(cast<WhileStmt>(S));
1193 }
1194}
Mike Stump1eb44332009-09-09 15:08:12 +00001195
Ted Kremenek852274d2009-12-16 03:18:58 +00001196CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) {
Ted Kremenek3179a452011-03-10 01:14:11 +00001197 if (asc.alwaysAdd(*this, S)) {
Ted Kremenek4f880632009-07-17 22:18:43 +00001198 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00001199 appendStmt(Block, S);
Mike Stump6d9828c2009-07-17 01:31:16 +00001200 }
Mike Stump1eb44332009-09-09 15:08:12 +00001201
Ted Kremenek4f880632009-07-17 22:18:43 +00001202 return VisitChildren(S);
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001203}
Mike Stump6d9828c2009-07-17 01:31:16 +00001204
Ted Kremenek4f880632009-07-17 22:18:43 +00001205/// VisitChildren - Visit the children of a Stmt.
Ted Kremenek58467202013-02-05 22:00:19 +00001206CFGBlock *CFGBuilder::VisitChildren(Stmt *S) {
1207 CFGBlock *B = Block;
Ted Kremenek6b12da92011-02-21 22:11:26 +00001208
Ted Kremenek58467202013-02-05 22:00:19 +00001209 // Visit the children in their reverse order so that they appear in
1210 // left-to-right (natural) order in the CFG.
1211 reverse_children RChildren(S);
1212 for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end();
1213 I != E; ++I) {
1214 if (Stmt *Child = *I)
1215 if (CFGBlock *R = Visit(Child))
1216 B = R;
1217 }
1218 return B;
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001219}
Mike Stump1eb44332009-09-09 15:08:12 +00001220
Ted Kremenek852274d2009-12-16 03:18:58 +00001221CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A,
1222 AddStmtChoice asc) {
Ted Kremenek4f880632009-07-17 22:18:43 +00001223 AddressTakenLabels.insert(A->getLabel());
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001224
Ted Kremenek3179a452011-03-10 01:14:11 +00001225 if (asc.alwaysAdd(*this, A)) {
Ted Kremenek4f880632009-07-17 22:18:43 +00001226 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00001227 appendStmt(Block, A);
Ted Kremenek4f880632009-07-17 22:18:43 +00001228 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001229
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001230 return Block;
1231}
Mike Stump1eb44332009-09-09 15:08:12 +00001232
Zhanyong Wan99cae5b2010-11-22 08:45:56 +00001233CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U,
Ted Kremenek892697d2010-12-16 07:46:53 +00001234 AddStmtChoice asc) {
Ted Kremenek3179a452011-03-10 01:14:11 +00001235 if (asc.alwaysAdd(*this, U)) {
Zhanyong Wan99cae5b2010-11-22 08:45:56 +00001236 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00001237 appendStmt(Block, U);
Zhanyong Wan99cae5b2010-11-22 08:45:56 +00001238 }
1239
Ted Kremenek892697d2010-12-16 07:46:53 +00001240 return Visit(U->getSubExpr(), AddStmtChoice());
Zhanyong Wan99cae5b2010-11-22 08:45:56 +00001241}
1242
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001243CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) {
1244 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
1245 appendStmt(ConfluenceBlock, B);
Mike Stump1eb44332009-09-09 15:08:12 +00001246
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001247 if (badCFG)
1248 return 0;
1249
Ted Kremenek3f635c02012-07-14 05:04:10 +00001250 return VisitLogicalOperator(B, 0, ConfluenceBlock, ConfluenceBlock).first;
1251}
1252
1253std::pair<CFGBlock*, CFGBlock*>
1254CFGBuilder::VisitLogicalOperator(BinaryOperator *B,
1255 Stmt *Term,
1256 CFGBlock *TrueBlock,
1257 CFGBlock *FalseBlock) {
1258
1259 // Introspect the RHS. If it is a nested logical operation, we recursively
1260 // build the CFG using this function. Otherwise, resort to default
1261 // CFG construction behavior.
1262 Expr *RHS = B->getRHS()->IgnoreParens();
1263 CFGBlock *RHSBlock, *ExitBlock;
1264
1265 do {
1266 if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS))
1267 if (B_RHS->isLogicalOp()) {
1268 llvm::tie(RHSBlock, ExitBlock) =
1269 VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock);
1270 break;
1271 }
1272
1273 // The RHS is not a nested logical operation. Don't push the terminator
1274 // down further, but instead visit RHS and construct the respective
1275 // pieces of the CFG, and link up the RHSBlock with the terminator
1276 // we have been provided.
1277 ExitBlock = RHSBlock = createBlock(false);
1278
1279 if (!Term) {
1280 assert(TrueBlock == FalseBlock);
1281 addSuccessor(RHSBlock, TrueBlock);
1282 }
1283 else {
1284 RHSBlock->setTerminator(Term);
1285 TryResult KnownVal = tryEvaluateBool(RHS);
1286 addSuccessor(RHSBlock, KnownVal.isFalse() ? NULL : TrueBlock);
1287 addSuccessor(RHSBlock, KnownVal.isTrue() ? NULL : FalseBlock);
1288 }
1289
1290 Block = RHSBlock;
1291 RHSBlock = addStmt(RHS);
1292 }
1293 while (false);
1294
1295 if (badCFG)
1296 return std::make_pair((CFGBlock*)0, (CFGBlock*)0);
1297
1298 // Generate the blocks for evaluating the LHS.
1299 Expr *LHS = B->getLHS()->IgnoreParens();
1300
1301 if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS))
1302 if (B_LHS->isLogicalOp()) {
1303 if (B->getOpcode() == BO_LOr)
1304 FalseBlock = RHSBlock;
1305 else
1306 TrueBlock = RHSBlock;
1307
1308 // For the LHS, treat 'B' as the terminator that we want to sink
1309 // into the nested branch. The RHS always gets the top-most
1310 // terminator.
1311 return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock);
1312 }
1313
1314 // Create the block evaluating the LHS.
1315 // This contains the '&&' or '||' as the terminator.
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001316 CFGBlock *LHSBlock = createBlock(false);
1317 LHSBlock->setTerminator(B);
1318
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001319 Block = LHSBlock;
Ted Kremenek3f635c02012-07-14 05:04:10 +00001320 CFGBlock *EntryLHSBlock = addStmt(LHS);
1321
1322 if (badCFG)
1323 return std::make_pair((CFGBlock*)0, (CFGBlock*)0);
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001324
1325 // See if this is a known constant.
Ted Kremenek3f635c02012-07-14 05:04:10 +00001326 TryResult KnownVal = tryEvaluateBool(LHS);
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001327
1328 // Now link the LHSBlock with RHSBlock.
1329 if (B->getOpcode() == BO_LOr) {
Ted Kremenek3f635c02012-07-14 05:04:10 +00001330 addSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : TrueBlock);
1331 addSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : RHSBlock);
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001332 } else {
1333 assert(B->getOpcode() == BO_LAnd);
1334 addSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock);
Ted Kremenek3f635c02012-07-14 05:04:10 +00001335 addSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : FalseBlock);
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001336 }
1337
Ted Kremenek3f635c02012-07-14 05:04:10 +00001338 return std::make_pair(EntryLHSBlock, ExitBlock);
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001339}
1340
Ted Kremenek3f635c02012-07-14 05:04:10 +00001341
Ted Kremenek5c3ea5c2012-07-14 05:04:06 +00001342CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B,
1343 AddStmtChoice asc) {
1344 // && or ||
1345 if (B->isLogicalOp())
1346 return VisitLogicalOperator(B);
1347
Zhanyong Wan36f327c2010-11-22 19:32:14 +00001348 if (B->getOpcode() == BO_Comma) { // ,
Ted Kremenek6dc534e2009-07-17 22:57:50 +00001349 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00001350 appendStmt(Block, B);
Ted Kremenek4f880632009-07-17 22:18:43 +00001351 addStmt(B->getRHS());
1352 return addStmt(B->getLHS());
1353 }
Zhanyong Wan36f327c2010-11-22 19:32:14 +00001354
1355 if (B->isAssignmentOp()) {
Ted Kremenek3179a452011-03-10 01:14:11 +00001356 if (asc.alwaysAdd(*this, B)) {
Zhongxing Xufc61d942010-06-03 06:23:18 +00001357 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00001358 appendStmt(Block, B);
Zhongxing Xufc61d942010-06-03 06:23:18 +00001359 }
Ted Kremenek892697d2010-12-16 07:46:53 +00001360 Visit(B->getLHS());
Marcin Swiderskie1667192010-10-24 08:21:40 +00001361 return Visit(B->getRHS());
Zhongxing Xufc61d942010-06-03 06:23:18 +00001362 }
Mike Stump1eb44332009-09-09 15:08:12 +00001363
Ted Kremenek3179a452011-03-10 01:14:11 +00001364 if (asc.alwaysAdd(*this, B)) {
Marcin Swiderskie1667192010-10-24 08:21:40 +00001365 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00001366 appendStmt(Block, B);
Marcin Swiderskie1667192010-10-24 08:21:40 +00001367 }
1368
Zhongxing Xua1898dd2010-10-27 03:23:10 +00001369 CFGBlock *RBlock = Visit(B->getRHS());
1370 CFGBlock *LBlock = Visit(B->getLHS());
1371 // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr
1372 // containing a DoStmt, and the LHS doesn't create a new block, then we should
1373 // return RBlock. Otherwise we'll incorrectly return NULL.
1374 return (LBlock ? LBlock : RBlock);
Ted Kremenek4f880632009-07-17 22:18:43 +00001375}
1376
Ted Kremenek55331da2012-04-12 20:03:44 +00001377CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) {
Ted Kremenek3179a452011-03-10 01:14:11 +00001378 if (asc.alwaysAdd(*this, E)) {
Ted Kremenek721903e2009-11-25 01:34:30 +00001379 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00001380 appendStmt(Block, E);
Ted Kremenek721903e2009-11-25 01:34:30 +00001381 }
1382 return Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001383}
1384
Ted Kremenek4f880632009-07-17 22:18:43 +00001385CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
1386 // "break" is a control-flow statement. Thus we stop processing the current
1387 // block.
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001388 if (badCFG)
1389 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001390
Ted Kremenek4f880632009-07-17 22:18:43 +00001391 // Now create a new block that ends with the break statement.
1392 Block = createBlock(false);
1393 Block->setTerminator(B);
Mike Stump1eb44332009-09-09 15:08:12 +00001394
Ted Kremenek4f880632009-07-17 22:18:43 +00001395 // If there is no target for the break, then we are looking at an incomplete
1396 // AST. This means that the CFG cannot be constructed.
Ted Kremenek9ce52702011-01-07 19:37:16 +00001397 if (BreakJumpTarget.block) {
1398 addAutomaticObjDtors(ScopePos, BreakJumpTarget.scopePosition, B);
1399 addSuccessor(Block, BreakJumpTarget.block);
Marcin Swiderskif1308c72010-09-25 11:05:21 +00001400 } else
Ted Kremenek4f880632009-07-17 22:18:43 +00001401 badCFG = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001402
1403
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001404 return Block;
1405}
Mike Stump1eb44332009-09-09 15:08:12 +00001406
Sebastian Redl8026f6d2011-03-13 17:09:40 +00001407static bool CanThrow(Expr *E, ASTContext &Ctx) {
Mike Stump4c45aa12010-01-21 15:20:48 +00001408 QualType Ty = E->getType();
1409 if (Ty->isFunctionPointerType())
1410 Ty = Ty->getAs<PointerType>()->getPointeeType();
1411 else if (Ty->isBlockPointerType())
1412 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Ted Kremenekad5a8942010-08-02 23:46:59 +00001413
Mike Stump4c45aa12010-01-21 15:20:48 +00001414 const FunctionType *FT = Ty->getAs<FunctionType>();
1415 if (FT) {
1416 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT))
Richard Smithb9d0b762012-07-27 04:22:15 +00001417 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) &&
Richard Smithe6975e92012-04-17 00:58:00 +00001418 Proto->isNothrow(Ctx))
Mike Stump4c45aa12010-01-21 15:20:48 +00001419 return false;
1420 }
1421 return true;
1422}
1423
Ted Kremenek852274d2009-12-16 03:18:58 +00001424CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) {
John McCall1de85332011-05-11 07:19:11 +00001425 // Compute the callee type.
1426 QualType calleeType = C->getCallee()->getType();
1427 if (calleeType == Context->BoundMemberTy) {
1428 QualType boundType = Expr::findBoundMemberType(C->getCallee());
1429
1430 // We should only get a null bound type if processing a dependent
1431 // CFG. Recover by assuming nothing.
1432 if (!boundType.isNull()) calleeType = boundType;
Ted Kremenek4f880632009-07-17 22:18:43 +00001433 }
Mike Stump24556362009-07-25 21:26:53 +00001434
John McCall1de85332011-05-11 07:19:11 +00001435 // If this is a call to a no-return function, this stops the block here.
1436 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
1437
Mike Stump4c45aa12010-01-21 15:20:48 +00001438 bool AddEHEdge = false;
Mike Stump079bd722010-01-19 22:00:14 +00001439
1440 // Languages without exceptions are assumed to not throw.
David Blaikie4e4d0842012-03-11 07:00:24 +00001441 if (Context->getLangOpts().Exceptions) {
Ted Kremenek6c52c782010-09-14 23:41:16 +00001442 if (BuildOpts.AddEHEdges)
Mike Stump4c45aa12010-01-21 15:20:48 +00001443 AddEHEdge = true;
Mike Stump079bd722010-01-19 22:00:14 +00001444 }
1445
1446 if (FunctionDecl *FD = C->getDirectCallee()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00001447 if (FD->isNoReturn())
Mike Stump24556362009-07-25 21:26:53 +00001448 NoReturn = true;
Mike Stump079bd722010-01-19 22:00:14 +00001449 if (FD->hasAttr<NoThrowAttr>())
Mike Stump4c45aa12010-01-21 15:20:48 +00001450 AddEHEdge = false;
Mike Stump079bd722010-01-19 22:00:14 +00001451 }
Mike Stump24556362009-07-25 21:26:53 +00001452
Sebastian Redl8026f6d2011-03-13 17:09:40 +00001453 if (!CanThrow(C->getCallee(), *Context))
Mike Stump4c45aa12010-01-21 15:20:48 +00001454 AddEHEdge = false;
1455
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +00001456 if (!NoReturn && !AddEHEdge)
1457 return VisitStmt(C, asc.withAlwaysAdd(true));
Mike Stump1eb44332009-09-09 15:08:12 +00001458
Mike Stump079bd722010-01-19 22:00:14 +00001459 if (Block) {
1460 Succ = Block;
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001461 if (badCFG)
Mike Stump079bd722010-01-19 22:00:14 +00001462 return 0;
1463 }
Mike Stump1eb44332009-09-09 15:08:12 +00001464
Chandler Carruthdba3fb52011-09-13 09:13:49 +00001465 if (NoReturn)
1466 Block = createNoReturnBlock();
1467 else
1468 Block = createBlock();
1469
Ted Kremenek247e9662011-03-10 01:14:08 +00001470 appendStmt(Block, C);
Mike Stump24556362009-07-25 21:26:53 +00001471
Mike Stump4c45aa12010-01-21 15:20:48 +00001472 if (AddEHEdge) {
Mike Stump079bd722010-01-19 22:00:14 +00001473 // Add exceptional edges.
1474 if (TryTerminatedBlock)
Ted Kremenek0a3ed312010-12-17 04:44:39 +00001475 addSuccessor(Block, TryTerminatedBlock);
Mike Stump079bd722010-01-19 22:00:14 +00001476 else
Ted Kremenek0a3ed312010-12-17 04:44:39 +00001477 addSuccessor(Block, &cfg->getExit());
Mike Stump079bd722010-01-19 22:00:14 +00001478 }
Mike Stump1eb44332009-09-09 15:08:12 +00001479
Mike Stump24556362009-07-25 21:26:53 +00001480 return VisitChildren(C);
Ted Kremenek4f880632009-07-17 22:18:43 +00001481}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001482
Ted Kremenek852274d2009-12-16 03:18:58 +00001483CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C,
1484 AddStmtChoice asc) {
Ted Kremenek9c378f72011-08-12 23:37:29 +00001485 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00001486 appendStmt(ConfluenceBlock, C);
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001487 if (badCFG)
Ted Kremenek3fc8ef52009-07-17 18:20:32 +00001488 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001489
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +00001490 AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +00001491 Succ = ConfluenceBlock;
1492 Block = NULL;
Ted Kremenek9c378f72011-08-12 23:37:29 +00001493 CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd);
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001494 if (badCFG)
Ted Kremenek3fc8ef52009-07-17 18:20:32 +00001495 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001496
Ted Kremenek3fc8ef52009-07-17 18:20:32 +00001497 Succ = ConfluenceBlock;
1498 Block = NULL;
Ted Kremenek9c378f72011-08-12 23:37:29 +00001499 CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd);
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001500 if (badCFG)
Ted Kremenek3fc8ef52009-07-17 18:20:32 +00001501 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001502
Ted Kremenek3fc8ef52009-07-17 18:20:32 +00001503 Block = createBlock(false);
Mike Stump00998a02009-07-23 23:25:26 +00001504 // See if this is a known constant.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00001505 const TryResult& KnownVal = tryEvaluateBool(C->getCond());
1506 addSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock);
1507 addSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +00001508 Block->setTerminator(C);
Mike Stump1eb44332009-09-09 15:08:12 +00001509 return addStmt(C->getCond());
Ted Kremenek3fc8ef52009-07-17 18:20:32 +00001510}
Mike Stump1eb44332009-09-09 15:08:12 +00001511
1512
Ted Kremenek9c378f72011-08-12 23:37:29 +00001513CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) {
Marcin Swiderskifcb72ac2010-10-01 00:23:17 +00001514 addLocalScopeAndDtors(C);
Ted Kremenek9c378f72011-08-12 23:37:29 +00001515 CFGBlock *LastBlock = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001516
1517 for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
1518 I != E; ++I ) {
Ted Kremenek334c1952010-08-17 21:00:06 +00001519 // If we hit a segment of code just containing ';' (NullStmts), we can
1520 // get a null block back. In such cases, just use the LastBlock
1521 if (CFGBlock *newBlock = addStmt(*I))
1522 LastBlock = newBlock;
Mike Stump1eb44332009-09-09 15:08:12 +00001523
Ted Kremeneke8d6d2b2009-08-27 23:16:26 +00001524 if (badCFG)
1525 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001526 }
Mike Stump079bd722010-01-19 22:00:14 +00001527
Ted Kremenek4f880632009-07-17 22:18:43 +00001528 return LastBlock;
1529}
Mike Stump1eb44332009-09-09 15:08:12 +00001530
John McCall56ca35d2011-02-17 10:25:35 +00001531CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C,
Ted Kremenek852274d2009-12-16 03:18:58 +00001532 AddStmtChoice asc) {
John McCall56ca35d2011-02-17 10:25:35 +00001533 const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C);
1534 const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : NULL);
1535
Ted Kremenekf34bb2e2009-07-17 18:15:54 +00001536 // Create the confluence block that will "merge" the results of the ternary
1537 // expression.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001538 CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00001539 appendStmt(ConfluenceBlock, C);
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001540 if (badCFG)
Ted Kremenekf34bb2e2009-07-17 18:15:54 +00001541 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001542
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +00001543 AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
Ted Kremenek115c1b92010-04-11 17:02:10 +00001544
Ted Kremenekf34bb2e2009-07-17 18:15:54 +00001545 // Create a block for the LHS expression if there is an LHS expression. A
1546 // GCC extension allows LHS to be NULL, causing the condition to be the
1547 // value that is returned instead.
1548 // e.g: x ?: y is shorthand for: x ? x : y;
1549 Succ = ConfluenceBlock;
1550 Block = NULL;
Ted Kremenek9c378f72011-08-12 23:37:29 +00001551 CFGBlock *LHSBlock = 0;
John McCall56ca35d2011-02-17 10:25:35 +00001552 const Expr *trueExpr = C->getTrueExpr();
1553 if (trueExpr != opaqueValue) {
1554 LHSBlock = Visit(C->getTrueExpr(), alwaysAdd);
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001555 if (badCFG)
Ted Kremenekf34bb2e2009-07-17 18:15:54 +00001556 return 0;
1557 Block = NULL;
1558 }
Ted Kremenekf226d182011-02-24 03:09:15 +00001559 else
1560 LHSBlock = ConfluenceBlock;
Mike Stump1eb44332009-09-09 15:08:12 +00001561
Ted Kremenekf34bb2e2009-07-17 18:15:54 +00001562 // Create the block for the RHS expression.
1563 Succ = ConfluenceBlock;
Ted Kremenek9c378f72011-08-12 23:37:29 +00001564 CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd);
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001565 if (badCFG)
Ted Kremenekf34bb2e2009-07-17 18:15:54 +00001566 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001567
Richard Smith56df4a92012-07-24 21:02:14 +00001568 // If the condition is a logical '&&' or '||', build a more accurate CFG.
1569 if (BinaryOperator *Cond =
1570 dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens()))
1571 if (Cond->isLogicalOp())
1572 return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first;
1573
Ted Kremenekf34bb2e2009-07-17 18:15:54 +00001574 // Create the block that will contain the condition.
1575 Block = createBlock(false);
Mike Stump1eb44332009-09-09 15:08:12 +00001576
Mike Stump00998a02009-07-23 23:25:26 +00001577 // See if this is a known constant.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00001578 const TryResult& KnownVal = tryEvaluateBool(C->getCond());
Ted Kremenekf226d182011-02-24 03:09:15 +00001579 addSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock);
Ted Kremenek0a3ed312010-12-17 04:44:39 +00001580 addSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock);
Ted Kremenekf34bb2e2009-07-17 18:15:54 +00001581 Block->setTerminator(C);
John McCall56ca35d2011-02-17 10:25:35 +00001582 Expr *condExpr = C->getCond();
John McCalld40baf62011-02-19 03:13:26 +00001583
Ted Kremenekf226d182011-02-24 03:09:15 +00001584 if (opaqueValue) {
1585 // Run the condition expression if it's not trivially expressed in
1586 // terms of the opaque value (or if there is no opaque value).
1587 if (condExpr != opaqueValue)
1588 addStmt(condExpr);
John McCalld40baf62011-02-19 03:13:26 +00001589
Ted Kremenekf226d182011-02-24 03:09:15 +00001590 // Before that, run the common subexpression if there was one.
1591 // At least one of this or the above will be run.
1592 return addStmt(BCO->getCommon());
1593 }
1594
1595 return addStmt(condExpr);
Ted Kremenekf34bb2e2009-07-17 18:15:54 +00001596}
1597
Ted Kremenek4f880632009-07-17 22:18:43 +00001598CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
Ted Kremenekbc869de2011-05-10 18:42:15 +00001599 // Check if the Decl is for an __label__. If so, elide it from the
1600 // CFG entirely.
1601 if (isa<LabelDecl>(*DS->decl_begin()))
1602 return Block;
1603
Ted Kremenek29c9e622011-05-24 20:41:31 +00001604 // This case also handles static_asserts.
Marcin Swiderski8599e762010-11-03 06:19:35 +00001605 if (DS->isSingleDecl())
1606 return VisitDeclSubExpr(DS);
Mike Stump1eb44332009-09-09 15:08:12 +00001607
Ted Kremenek4f880632009-07-17 22:18:43 +00001608 CFGBlock *B = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001609
Jordan Rosefd8b4352012-07-20 18:50:48 +00001610 // Build an individual DeclStmt for each decl.
1611 for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(),
1612 E = DS->decl_rend();
1613 I != E; ++I) {
Ted Kremenek4f880632009-07-17 22:18:43 +00001614 // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
1615 unsigned A = llvm::AlignOf<DeclStmt>::Alignment < 8
1616 ? 8 : llvm::AlignOf<DeclStmt>::Alignment;
Mike Stump1eb44332009-09-09 15:08:12 +00001617
Ted Kremenek4f880632009-07-17 22:18:43 +00001618 // Allocate the DeclStmt using the BumpPtrAllocator. It will get
1619 // automatically freed with the CFG.
1620 DeclGroupRef DG(*I);
1621 Decl *D = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00001622 void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
Ted Kremenek4f880632009-07-17 22:18:43 +00001623 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
Mike Stump1eb44332009-09-09 15:08:12 +00001624
Ted Kremenek4f880632009-07-17 22:18:43 +00001625 // Append the fake DeclStmt to block.
Marcin Swiderski8599e762010-11-03 06:19:35 +00001626 B = VisitDeclSubExpr(DSNew);
Ted Kremenek4f880632009-07-17 22:18:43 +00001627 }
Mike Stump1eb44332009-09-09 15:08:12 +00001628
1629 return B;
Ted Kremenek4f880632009-07-17 22:18:43 +00001630}
Mike Stump1eb44332009-09-09 15:08:12 +00001631
Ted Kremenek4f880632009-07-17 22:18:43 +00001632/// VisitDeclSubExpr - Utility method to add block-level expressions for
Marcin Swiderski8599e762010-11-03 06:19:35 +00001633/// DeclStmts and initializers in them.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001634CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) {
Marcin Swiderski8599e762010-11-03 06:19:35 +00001635 assert(DS->isSingleDecl() && "Can handle single declarations only.");
Ted Kremenek29c9e622011-05-24 20:41:31 +00001636 Decl *D = DS->getSingleDecl();
1637
1638 if (isa<StaticAssertDecl>(D)) {
1639 // static_asserts aren't added to the CFG because they do not impact
1640 // runtime semantics.
1641 return Block;
1642 }
1643
Marcin Swiderski8599e762010-11-03 06:19:35 +00001644 VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001645
Marcin Swiderski8599e762010-11-03 06:19:35 +00001646 if (!VD) {
1647 autoCreateBlock();
Ted Kremenek892697d2010-12-16 07:46:53 +00001648 appendStmt(Block, DS);
Ted Kremenek4f880632009-07-17 22:18:43 +00001649 return Block;
Marcin Swiderski8599e762010-11-03 06:19:35 +00001650 }
Mike Stump1eb44332009-09-09 15:08:12 +00001651
Marcin Swiderski8599e762010-11-03 06:19:35 +00001652 bool IsReference = false;
1653 bool HasTemporaries = false;
1654
1655 // Destructors of temporaries in initialization expression should be called
1656 // after initialization finishes.
Ted Kremenek4f880632009-07-17 22:18:43 +00001657 Expr *Init = VD->getInit();
Marcin Swiderski8599e762010-11-03 06:19:35 +00001658 if (Init) {
1659 IsReference = VD->getType()->isReferenceType();
John McCall4765fa02010-12-06 08:20:24 +00001660 HasTemporaries = isa<ExprWithCleanups>(Init);
Marcin Swiderski8599e762010-11-03 06:19:35 +00001661
Jordan Rose5a1ffe92012-09-05 22:55:23 +00001662 if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
Marcin Swiderski8599e762010-11-03 06:19:35 +00001663 // Generate destructors for temporaries in initialization expression.
John McCall4765fa02010-12-06 08:20:24 +00001664 VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
Marcin Swiderski8599e762010-11-03 06:19:35 +00001665 IsReference);
1666 }
1667 }
1668
1669 autoCreateBlock();
Ted Kremenek892697d2010-12-16 07:46:53 +00001670 appendStmt(Block, DS);
Ted Kremenek550f2232012-03-22 05:57:43 +00001671
1672 // Keep track of the last non-null block, as 'Block' can be nulled out
1673 // if the initializer expression is something like a 'while' in a
1674 // statement-expression.
1675 CFGBlock *LastBlock = Block;
Mike Stump1eb44332009-09-09 15:08:12 +00001676
Ted Kremenek4f880632009-07-17 22:18:43 +00001677 if (Init) {
Ted Kremenek550f2232012-03-22 05:57:43 +00001678 if (HasTemporaries) {
Marcin Swiderski8599e762010-11-03 06:19:35 +00001679 // For expression with temporaries go directly to subexpression to omit
1680 // generating destructors for the second time.
Ted Kremenek550f2232012-03-22 05:57:43 +00001681 ExprWithCleanups *EC = cast<ExprWithCleanups>(Init);
1682 if (CFGBlock *newBlock = Visit(EC->getSubExpr()))
1683 LastBlock = newBlock;
1684 }
1685 else {
1686 if (CFGBlock *newBlock = Visit(Init))
1687 LastBlock = newBlock;
1688 }
Ted Kremenek4f880632009-07-17 22:18:43 +00001689 }
Mike Stump1eb44332009-09-09 15:08:12 +00001690
Ted Kremenek4f880632009-07-17 22:18:43 +00001691 // If the type of VD is a VLA, then we must process its size expressions.
John McCallf4c73712011-01-19 06:33:43 +00001692 for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr());
Ted Kremenek8f81acf2012-11-13 00:12:13 +00001693 VA != 0; VA = FindVA(VA->getElementType().getTypePtr())) {
1694 if (CFGBlock *newBlock = addStmt(VA->getSizeExpr()))
1695 LastBlock = newBlock;
1696 }
Mike Stump1eb44332009-09-09 15:08:12 +00001697
Marcin Swiderskifcb72ac2010-10-01 00:23:17 +00001698 // Remove variable from local scope.
1699 if (ScopePos && VD == *ScopePos)
1700 ++ScopePos;
1701
Ted Kremenek550f2232012-03-22 05:57:43 +00001702 return Block ? Block : LastBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001703}
1704
Ted Kremenek9c378f72011-08-12 23:37:29 +00001705CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001706 // We may see an if statement in the middle of a basic block, or it may be the
1707 // first statement we are processing. In either case, we create a new basic
1708 // block. First, we create the blocks for the then...else statements, and
1709 // then we create the block containing the if statement. If we were in the
Ted Kremenek6c249722009-09-24 18:45:41 +00001710 // middle of a block, we stop processing that block. That block is then the
1711 // implicit successor for the "then" and "else" clauses.
Mike Stump6d9828c2009-07-17 01:31:16 +00001712
Marcin Swiderski04e046c2010-10-01 00:52:17 +00001713 // Save local scope position because in case of condition variable ScopePos
1714 // won't be restored when traversing AST.
1715 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
1716
1717 // Create local scope for possible condition variable.
1718 // Store scope position. Add implicit destructor.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001719 if (VarDecl *VD = I->getConditionVariable()) {
Marcin Swiderski04e046c2010-10-01 00:52:17 +00001720 LocalScope::const_iterator BeginScopePos = ScopePos;
1721 addLocalScopeForVarDecl(VD);
1722 addAutomaticObjDtors(ScopePos, BeginScopePos, I);
1723 }
1724
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001725 // The block we were processing is now finished. Make it the successor
Mike Stump6d9828c2009-07-17 01:31:16 +00001726 // block.
1727 if (Block) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001728 Succ = Block;
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001729 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001730 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001731 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001732
Ted Kremenekb6f1d782009-07-17 18:04:55 +00001733 // Process the false branch.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001734 CFGBlock *ElseBlock = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +00001735
Ted Kremenek9c378f72011-08-12 23:37:29 +00001736 if (Stmt *Else = I->getElse()) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001737 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump6d9828c2009-07-17 01:31:16 +00001738
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001739 // NULL out Block so that the recursive call to Visit will
Mike Stump6d9828c2009-07-17 01:31:16 +00001740 // create a new basic block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001741 Block = NULL;
Marcin Swiderski04e046c2010-10-01 00:52:17 +00001742
1743 // If branch is not a compound statement create implicit scope
1744 // and add destructors.
1745 if (!isa<CompoundStmt>(Else))
1746 addLocalScopeAndDtors(Else);
1747
Ted Kremenek4f880632009-07-17 22:18:43 +00001748 ElseBlock = addStmt(Else);
Mike Stump6d9828c2009-07-17 01:31:16 +00001749
Ted Kremenekb6f7b722007-08-30 18:13:31 +00001750 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
1751 ElseBlock = sv.get();
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001752 else if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001753 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001754 return 0;
1755 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001756 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001757
Ted Kremenekb6f1d782009-07-17 18:04:55 +00001758 // Process the true branch.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001759 CFGBlock *ThenBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001760 {
Ted Kremenek9c378f72011-08-12 23:37:29 +00001761 Stmt *Then = I->getThen();
Ted Kremenek6db0ad32010-01-19 20:46:35 +00001762 assert(Then);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001763 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump6d9828c2009-07-17 01:31:16 +00001764 Block = NULL;
Marcin Swiderski04e046c2010-10-01 00:52:17 +00001765
1766 // If branch is not a compound statement create implicit scope
1767 // and add destructors.
1768 if (!isa<CompoundStmt>(Then))
1769 addLocalScopeAndDtors(Then);
1770
Ted Kremenek4f880632009-07-17 22:18:43 +00001771 ThenBlock = addStmt(Then);
Mike Stump6d9828c2009-07-17 01:31:16 +00001772
Ted Kremenekdbdf7942009-04-01 03:52:47 +00001773 if (!ThenBlock) {
1774 // We can reach here if the "then" body has all NullStmts.
1775 // Create an empty block so we can distinguish between true and false
1776 // branches in path-sensitive analyses.
1777 ThenBlock = createBlock(false);
Ted Kremenek0a3ed312010-12-17 04:44:39 +00001778 addSuccessor(ThenBlock, sv.get());
Mike Stump6d9828c2009-07-17 01:31:16 +00001779 } else if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001780 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001781 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001782 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001783 }
1784
Ted Kremenek3f635c02012-07-14 05:04:10 +00001785 // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by
1786 // having these handle the actual control-flow jump. Note that
1787 // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)"
1788 // we resort to the old control-flow behavior. This special handling
1789 // removes infeasible paths from the control-flow graph by having the
1790 // control-flow transfer of '&&' or '||' go directly into the then/else
1791 // blocks directly.
1792 if (!I->getConditionVariable())
Richard Smith56df4a92012-07-24 21:02:14 +00001793 if (BinaryOperator *Cond =
1794 dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens()))
Ted Kremenek3f635c02012-07-14 05:04:10 +00001795 if (Cond->isLogicalOp())
1796 return VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first;
1797
Mike Stump6d9828c2009-07-17 01:31:16 +00001798 // Now create a new block containing the if statement.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001799 Block = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +00001800
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001801 // Set the terminator of the new block to the If statement.
1802 Block->setTerminator(I);
Mike Stump6d9828c2009-07-17 01:31:16 +00001803
Mike Stump00998a02009-07-23 23:25:26 +00001804 // See if this is a known constant.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00001805 const TryResult &KnownVal = tryEvaluateBool(I->getCond());
Mike Stump00998a02009-07-23 23:25:26 +00001806
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001807 // Now add the successors.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00001808 addSuccessor(Block, KnownVal.isFalse() ? NULL : ThenBlock);
1809 addSuccessor(Block, KnownVal.isTrue()? NULL : ElseBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +00001810
1811 // Add the condition as the last statement in the new block. This may create
1812 // new blocks as the condition may contain control-flow. Any newly created
1813 // blocks will be pointed to be "Block".
Ted Kremenek8f81acf2012-11-13 00:12:13 +00001814 CFGBlock *LastBlock = addStmt(I->getCond());
Ted Kremenekad5a8942010-08-02 23:46:59 +00001815
Ted Kremenek61dfbec2009-12-23 04:49:01 +00001816 // Finally, if the IfStmt contains a condition variable, add both the IfStmt
1817 // and the condition variable initialization to the CFG.
1818 if (VarDecl *VD = I->getConditionVariable()) {
1819 if (Expr *Init = VD->getInit()) {
1820 autoCreateBlock();
Ted Kremenekd40066b2011-04-04 23:29:12 +00001821 appendStmt(Block, I->getConditionVariableDeclStmt());
Ted Kremenek8f81acf2012-11-13 00:12:13 +00001822 LastBlock = addStmt(Init);
Ted Kremenek61dfbec2009-12-23 04:49:01 +00001823 }
1824 }
Ted Kremenekad5a8942010-08-02 23:46:59 +00001825
Ted Kremenek8f81acf2012-11-13 00:12:13 +00001826 return LastBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001827}
Mike Stump6d9828c2009-07-17 01:31:16 +00001828
1829
Ted Kremenek9c378f72011-08-12 23:37:29 +00001830CFGBlock *CFGBuilder::VisitReturnStmt(ReturnStmt *R) {
Ted Kremenek6c249722009-09-24 18:45:41 +00001831 // If we were in the middle of a block we stop processing that block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001832 //
Mike Stump6d9828c2009-07-17 01:31:16 +00001833 // NOTE: If a "return" appears in the middle of a block, this means that the
1834 // code afterwards is DEAD (unreachable). We still keep a basic block
1835 // for that code; a simple "mark-and-sweep" from the entry block will be
1836 // able to report such dead blocks.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001837
1838 // Create the new block.
1839 Block = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +00001840
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001841 // The Exit block is the only successor.
Marcin Swiderskifcb72ac2010-10-01 00:23:17 +00001842 addAutomaticObjDtors(ScopePos, LocalScope::const_iterator(), R);
Ted Kremenek0a3ed312010-12-17 04:44:39 +00001843 addSuccessor(Block, &cfg->getExit());
Mike Stump6d9828c2009-07-17 01:31:16 +00001844
1845 // Add the return statement to the block. This may create new blocks if R
1846 // contains control-flow (short-circuit operations).
Ted Kremenek852274d2009-12-16 03:18:58 +00001847 return VisitStmt(R, AddStmtChoice::AlwaysAdd);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001848}
1849
Ted Kremenek9c378f72011-08-12 23:37:29 +00001850CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001851 // Get the block of the labeled statement. Add it to our map.
Ted Kremenek4f880632009-07-17 22:18:43 +00001852 addStmt(L->getSubStmt());
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001853 CFGBlock *LabelBlock = Block;
Mike Stump6d9828c2009-07-17 01:31:16 +00001854
Ted Kremenek4f880632009-07-17 22:18:43 +00001855 if (!LabelBlock) // This can happen when the body is empty, i.e.
1856 LabelBlock = createBlock(); // scopes that only contains NullStmts.
Mike Stump6d9828c2009-07-17 01:31:16 +00001857
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001858 assert(LabelMap.find(L->getDecl()) == LabelMap.end() &&
1859 "label already in map");
1860 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos);
Mike Stump6d9828c2009-07-17 01:31:16 +00001861
1862 // Labels partition blocks, so this is the end of the basic block we were
1863 // processing (L is the block's label). Because this is label (and we have
1864 // already processed the substatement) there is no extra control-flow to worry
1865 // about.
Ted Kremenek9cffe732007-08-29 23:20:49 +00001866 LabelBlock->setLabel(L);
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001867 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001868 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001869
1870 // We set Block to NULL to allow lazy creation of a new block (if necessary);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001871 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001872
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001873 // This block is now the implicit successor of other blocks.
1874 Succ = LabelBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001875
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001876 return LabelBlock;
1877}
1878
Ted Kremenek83748e22012-04-12 20:34:52 +00001879CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) {
1880 CFGBlock *LastBlock = VisitNoRecurse(E, asc);
1881 for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(),
1882 et = E->capture_init_end(); it != et; ++it) {
1883 if (Expr *Init = *it) {
1884 CFGBlock *Tmp = Visit(Init);
1885 if (Tmp != 0)
1886 LastBlock = Tmp;
1887 }
1888 }
1889 return LastBlock;
1890}
1891
Ted Kremenek9c378f72011-08-12 23:37:29 +00001892CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001893 // Goto is a control-flow statement. Thus we stop processing the current
1894 // block and create a new one.
Ted Kremenek4f880632009-07-17 22:18:43 +00001895
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001896 Block = createBlock(false);
1897 Block->setTerminator(G);
Mike Stump6d9828c2009-07-17 01:31:16 +00001898
1899 // If we already know the mapping to the label block add the successor now.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001900 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
Mike Stump6d9828c2009-07-17 01:31:16 +00001901
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001902 if (I == LabelMap.end())
1903 // We will need to backpatch this block later.
Marcin Swiderskif1308c72010-09-25 11:05:21 +00001904 BackpatchBlocks.push_back(JumpSource(Block, ScopePos));
1905 else {
1906 JumpTarget JT = I->second;
Ted Kremenek9ce52702011-01-07 19:37:16 +00001907 addAutomaticObjDtors(ScopePos, JT.scopePosition, G);
1908 addSuccessor(Block, JT.block);
Marcin Swiderskif1308c72010-09-25 11:05:21 +00001909 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001910
Mike Stump6d9828c2009-07-17 01:31:16 +00001911 return Block;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001912}
1913
Ted Kremenek9c378f72011-08-12 23:37:29 +00001914CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) {
1915 CFGBlock *LoopSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001916
Marcin Swiderski47575f12010-10-01 01:38:14 +00001917 // Save local scope position because in case of condition variable ScopePos
1918 // won't be restored when traversing AST.
1919 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
1920
1921 // Create local scope for init statement and possible condition variable.
1922 // Add destructor for init statement and condition variable.
1923 // Store scope position for continue statement.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001924 if (Stmt *Init = F->getInit())
Marcin Swiderski47575f12010-10-01 01:38:14 +00001925 addLocalScopeForStmt(Init);
Marcin Swiderskif1308c72010-09-25 11:05:21 +00001926 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
1927
Ted Kremenek9c378f72011-08-12 23:37:29 +00001928 if (VarDecl *VD = F->getConditionVariable())
Marcin Swiderski47575f12010-10-01 01:38:14 +00001929 addLocalScopeForVarDecl(VD);
1930 LocalScope::const_iterator ContinueScopePos = ScopePos;
1931
1932 addAutomaticObjDtors(ScopePos, save_scope_pos.get(), F);
1933
Mike Stumpfefb9f72009-07-21 01:12:51 +00001934 // "for" is a control-flow statement. Thus we stop processing the current
1935 // block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001936 if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001937 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001938 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001939 LoopSuccessor = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001940 } else
1941 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +00001942
Ted Kremenek3f64a0e2010-05-21 20:30:15 +00001943 // Save the current value for the break targets.
1944 // All breaks should go to the code following the loop.
Marcin Swiderskif1308c72010-09-25 11:05:21 +00001945 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
Marcin Swiderski47575f12010-10-01 01:38:14 +00001946 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Ted Kremenek3f64a0e2010-05-21 20:30:15 +00001947
Ted Kremenek3f635c02012-07-14 05:04:10 +00001948 CFGBlock *BodyBlock = 0, *TransitionBlock = 0;
Mike Stump00998a02009-07-23 23:25:26 +00001949
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001950 // Now create the loop body.
1951 {
Ted Kremenek6db0ad32010-01-19 20:46:35 +00001952 assert(F->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001953
Ted Kremenek3f635c02012-07-14 05:04:10 +00001954 // Save the current values for Block, Succ, continue and break targets.
1955 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
1956 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
Mike Stump6d9828c2009-07-17 01:31:16 +00001957
Ted Kremenek3f635c02012-07-14 05:04:10 +00001958 // Create an empty block to represent the transition block for looping back
1959 // to the head of the loop. If we have increment code, it will
1960 // go in this block as well.
1961 Block = Succ = TransitionBlock = createBlock(false);
1962 TransitionBlock->setLoopTarget(F);
Mike Stump6d9828c2009-07-17 01:31:16 +00001963
Ted Kremenek9c378f72011-08-12 23:37:29 +00001964 if (Stmt *I = F->getInc()) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001965 // Generate increment code in its own basic block. This is the target of
1966 // continue statements.
Ted Kremenek4f880632009-07-17 22:18:43 +00001967 Succ = addStmt(I);
Ted Kremeneke9334502008-09-04 21:48:47 +00001968 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001969
Ted Kremenek3575f842009-04-28 00:51:56 +00001970 // Finish up the increment (or empty) block if it hasn't been already.
1971 if (Block) {
1972 assert(Block == Succ);
Zhongxing Xud438b3d2010-09-06 07:32:31 +00001973 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001974 return 0;
Ted Kremenek3575f842009-04-28 00:51:56 +00001975 Block = 0;
1976 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001977
Ted Kremenek3f635c02012-07-14 05:04:10 +00001978 // The starting block for the loop increment is the block that should
1979 // represent the 'loop target' for looping back to the start of the loop.
1980 ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
1981 ContinueJumpTarget.block->setLoopTarget(F);
Mike Stump6d9828c2009-07-17 01:31:16 +00001982
Ted Kremenek3f635c02012-07-14 05:04:10 +00001983 // Loop body should end with destructor of Condition variable (if any).
1984 addAutomaticObjDtors(ScopePos, LoopBeginScopePos, F);
Ted Kremenek3575f842009-04-28 00:51:56 +00001985
Marcin Swiderski47575f12010-10-01 01:38:14 +00001986 // If body is not a compound statement create implicit scope
1987 // and add destructors.
1988 if (!isa<CompoundStmt>(F->getBody()))
1989 addLocalScopeAndDtors(F->getBody());
1990
Mike Stump6d9828c2009-07-17 01:31:16 +00001991 // Now populate the body block, and in the process create new blocks as we
1992 // walk the body of the loop.
Ted Kremenek3f635c02012-07-14 05:04:10 +00001993 BodyBlock = addStmt(F->getBody());
Ted Kremenekaf603f72007-08-30 18:39:40 +00001994
Ted Kremenek3f635c02012-07-14 05:04:10 +00001995 if (!BodyBlock) {
1996 // In the case of "for (...;...;...);" we can have a null BodyBlock.
1997 // Use the continue jump target as the proxy for the body.
1998 BodyBlock = ContinueJumpTarget.block;
1999 }
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002000 else if (badCFG)
Ted Kremenek941fde82009-07-24 04:47:11 +00002001 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002002 }
Ted Kremenek3f635c02012-07-14 05:04:10 +00002003
2004 // Because of short-circuit evaluation, the condition of the loop can span
2005 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
2006 // evaluate the condition.
2007 CFGBlock *EntryConditionBlock = 0, *ExitConditionBlock = 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00002008
Ted Kremenek3f635c02012-07-14 05:04:10 +00002009 do {
2010 Expr *C = F->getCond();
2011
2012 // Specially handle logical operators, which have a slightly
2013 // more optimal CFG representation.
Richard Smith56df4a92012-07-24 21:02:14 +00002014 if (BinaryOperator *Cond =
2015 dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : 0))
Ted Kremenek3f635c02012-07-14 05:04:10 +00002016 if (Cond->isLogicalOp()) {
2017 llvm::tie(EntryConditionBlock, ExitConditionBlock) =
2018 VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor);
2019 break;
2020 }
2021
2022 // The default case when not handling logical operators.
2023 EntryConditionBlock = ExitConditionBlock = createBlock(false);
2024 ExitConditionBlock->setTerminator(F);
2025
2026 // See if this is a known constant.
2027 TryResult KnownVal(true);
2028
2029 if (C) {
2030 // Now add the actual condition to the condition block.
2031 // Because the condition itself may contain control-flow, new blocks may
2032 // be created. Thus we update "Succ" after adding the condition.
2033 Block = ExitConditionBlock;
2034 EntryConditionBlock = addStmt(C);
2035
2036 // If this block contains a condition variable, add both the condition
2037 // variable and initializer to the CFG.
2038 if (VarDecl *VD = F->getConditionVariable()) {
2039 if (Expr *Init = VD->getInit()) {
2040 autoCreateBlock();
2041 appendStmt(Block, F->getConditionVariableDeclStmt());
2042 EntryConditionBlock = addStmt(Init);
2043 assert(Block == EntryConditionBlock);
2044 }
2045 }
2046
2047 if (Block && badCFG)
2048 return 0;
2049
2050 KnownVal = tryEvaluateBool(C);
2051 }
2052
2053 // Add the loop body entry as a successor to the condition.
2054 addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock);
2055 // Link up the condition block with the code that follows the loop. (the
2056 // false branch).
2057 addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
2058
2059 } while (false);
2060
2061 // Link up the loop-back block to the entry condition block.
2062 addSuccessor(TransitionBlock, EntryConditionBlock);
2063
2064 // The condition block is the implicit successor for any code above the loop.
2065 Succ = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00002066
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002067 // If the loop contains initialization, create a new block for those
Mike Stump6d9828c2009-07-17 01:31:16 +00002068 // statements. This block can also contain statements that precede the loop.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002069 if (Stmt *I = F->getInit()) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002070 Block = createBlock();
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002071 return addStmt(I);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002072 }
Zhanyong Wan36f327c2010-11-22 19:32:14 +00002073
2074 // There is no loop initialization. We are thus basically a while loop.
2075 // NULL out Block to force lazy block construction.
2076 Block = NULL;
2077 Succ = EntryConditionBlock;
2078 return EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002079}
2080
Ted Kremenek115c1b92010-04-11 17:02:10 +00002081CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) {
Ted Kremenek3179a452011-03-10 01:14:11 +00002082 if (asc.alwaysAdd(*this, M)) {
Ted Kremenek115c1b92010-04-11 17:02:10 +00002083 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00002084 appendStmt(Block, M);
Ted Kremenek115c1b92010-04-11 17:02:10 +00002085 }
Ted Kremenek892697d2010-12-16 07:46:53 +00002086 return Visit(M->getBase());
Ted Kremenek115c1b92010-04-11 17:02:10 +00002087}
2088
Ted Kremenek9c378f72011-08-12 23:37:29 +00002089CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
Ted Kremenek514de5a2008-11-11 17:10:00 +00002090 // Objective-C fast enumeration 'for' statements:
2091 // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
2092 //
2093 // for ( Type newVariable in collection_expression ) { statements }
2094 //
2095 // becomes:
2096 //
2097 // prologue:
2098 // 1. collection_expression
2099 // T. jump to loop_entry
2100 // loop_entry:
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002101 // 1. side-effects of element expression
Ted Kremenek514de5a2008-11-11 17:10:00 +00002102 // 1. ObjCForCollectionStmt [performs binding to newVariable]
2103 // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil]
2104 // TB:
2105 // statements
2106 // T. jump to loop_entry
2107 // FB:
2108 // what comes after
2109 //
2110 // and
2111 //
2112 // Type existingItem;
2113 // for ( existingItem in expression ) { statements }
2114 //
2115 // becomes:
2116 //
Mike Stump6d9828c2009-07-17 01:31:16 +00002117 // the same with newVariable replaced with existingItem; the binding works
2118 // the same except that for one ObjCForCollectionStmt::getElement() returns
2119 // a DeclStmt and the other returns a DeclRefExpr.
Ted Kremenek514de5a2008-11-11 17:10:00 +00002120 //
Mike Stump6d9828c2009-07-17 01:31:16 +00002121
Ted Kremenek9c378f72011-08-12 23:37:29 +00002122 CFGBlock *LoopSuccessor = 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00002123
Ted Kremenek514de5a2008-11-11 17:10:00 +00002124 if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002125 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002126 return 0;
Ted Kremenek514de5a2008-11-11 17:10:00 +00002127 LoopSuccessor = Block;
2128 Block = 0;
Ted Kremenek4f880632009-07-17 22:18:43 +00002129 } else
2130 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +00002131
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002132 // Build the condition blocks.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002133 CFGBlock *ExitConditionBlock = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +00002134
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002135 // Set the terminator for the "exit" condition block.
Mike Stump6d9828c2009-07-17 01:31:16 +00002136 ExitConditionBlock->setTerminator(S);
2137
2138 // The last statement in the block should be the ObjCForCollectionStmt, which
2139 // performs the actual binding to 'element' and determines if there are any
2140 // more items in the collection.
Ted Kremenek892697d2010-12-16 07:46:53 +00002141 appendStmt(ExitConditionBlock, S);
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002142 Block = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00002143
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002144 // Walk the 'element' expression to see if there are any side-effects. We
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00002145 // generate new blocks as necessary. We DON'T add the statement by default to
Mike Stump6d9828c2009-07-17 01:31:16 +00002146 // the CFG unless it contains control-flow.
Ted Kremenek012614e2011-08-17 21:04:19 +00002147 CFGBlock *EntryConditionBlock = Visit(S->getElement(),
2148 AddStmtChoice::NotAlwaysAdd);
Mike Stump6d9828c2009-07-17 01:31:16 +00002149 if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002150 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002151 return 0;
2152 Block = 0;
2153 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002154
2155 // The condition block is the implicit successor for the loop body as well as
2156 // any code above the loop.
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002157 Succ = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00002158
Ted Kremenek514de5a2008-11-11 17:10:00 +00002159 // Now create the true branch.
Mike Stump6d9828c2009-07-17 01:31:16 +00002160 {
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002161 // Save the current values for Succ, continue and break targets.
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002162 SaveAndRestore<CFGBlock*> save_Succ(Succ);
2163 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
2164 save_break(BreakJumpTarget);
Mike Stump6d9828c2009-07-17 01:31:16 +00002165
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002166 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
2167 ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos);
Mike Stump6d9828c2009-07-17 01:31:16 +00002168
Ted Kremenek9c378f72011-08-12 23:37:29 +00002169 CFGBlock *BodyBlock = addStmt(S->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00002170
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002171 if (!BodyBlock)
2172 BodyBlock = EntryConditionBlock; // can happen for "for (X in Y) ;"
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002173 else if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002174 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002175 return 0;
2176 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002177
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002178 // This new body block is a successor to our "exit" condition block.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002179 addSuccessor(ExitConditionBlock, BodyBlock);
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002180 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002181
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002182 // Link up the condition block with the code that follows the loop.
2183 // (the false branch).
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002184 addSuccessor(ExitConditionBlock, LoopSuccessor);
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002185
Ted Kremenek514de5a2008-11-11 17:10:00 +00002186 // Now create a prologue block to contain the collection expression.
Ted Kremenek4cb3a852008-11-14 01:57:41 +00002187 Block = createBlock();
Ted Kremenek514de5a2008-11-11 17:10:00 +00002188 return addStmt(S->getCollection());
Mike Stump6d9828c2009-07-17 01:31:16 +00002189}
2190
Ted Kremenek8e282c32012-03-06 23:40:47 +00002191CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) {
2192 // Inline the body.
2193 return addStmt(S->getSubStmt());
2194 // TODO: consider adding cleanups for the end of @autoreleasepool scope.
2195}
2196
Ted Kremenek9c378f72011-08-12 23:37:29 +00002197CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
Ted Kremenekb3b0b362009-05-02 01:49:13 +00002198 // FIXME: Add locking 'primitives' to CFG for @synchronized.
Mike Stump6d9828c2009-07-17 01:31:16 +00002199
Ted Kremenekb3b0b362009-05-02 01:49:13 +00002200 // Inline the body.
Ted Kremenek4f880632009-07-17 22:18:43 +00002201 CFGBlock *SyncBlock = addStmt(S->getSynchBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00002202
Ted Kremenekda5348e2009-05-05 23:11:51 +00002203 // The sync body starts its own basic block. This makes it a little easier
2204 // for diagnostic clients.
2205 if (SyncBlock) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002206 if (badCFG)
Ted Kremenekda5348e2009-05-05 23:11:51 +00002207 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00002208
Ted Kremenekda5348e2009-05-05 23:11:51 +00002209 Block = 0;
Ted Kremenekfadebba2010-05-13 16:38:08 +00002210 Succ = SyncBlock;
Ted Kremenekda5348e2009-05-05 23:11:51 +00002211 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002212
Ted Kremenek4beaa9f2010-09-10 03:05:33 +00002213 // Add the @synchronized to the CFG.
2214 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00002215 appendStmt(Block, S);
Ted Kremenek4beaa9f2010-09-10 03:05:33 +00002216
Ted Kremenekb3b0b362009-05-02 01:49:13 +00002217 // Inline the sync expression.
Ted Kremenek4f880632009-07-17 22:18:43 +00002218 return addStmt(S->getSynchExpr());
Ted Kremenekb3b0b362009-05-02 01:49:13 +00002219}
Mike Stump6d9828c2009-07-17 01:31:16 +00002220
Ted Kremenek9c378f72011-08-12 23:37:29 +00002221CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
Ted Kremenek4f880632009-07-17 22:18:43 +00002222 // FIXME
Ted Kremenek90658ec2009-04-07 04:26:02 +00002223 return NYS();
Ted Kremeneke31c0d22009-03-30 22:29:21 +00002224}
Ted Kremenek514de5a2008-11-11 17:10:00 +00002225
John McCall4b9c2d22011-11-06 09:01:30 +00002226CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) {
2227 autoCreateBlock();
2228
2229 // Add the PseudoObject as the last thing.
2230 appendStmt(Block, E);
2231
2232 CFGBlock *lastBlock = Block;
2233
2234 // Before that, evaluate all of the semantics in order. In
2235 // CFG-land, that means appending them in reverse order.
2236 for (unsigned i = E->getNumSemanticExprs(); i != 0; ) {
2237 Expr *Semantic = E->getSemanticExpr(--i);
2238
2239 // If the semantic is an opaque value, we're being asked to bind
2240 // it to its source expression.
2241 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic))
2242 Semantic = OVE->getSourceExpr();
2243
2244 if (CFGBlock *B = Visit(Semantic))
2245 lastBlock = B;
2246 }
2247
2248 return lastBlock;
2249}
2250
Ted Kremenek9c378f72011-08-12 23:37:29 +00002251CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) {
2252 CFGBlock *LoopSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002253
Marcin Swiderski05adedc2010-10-01 01:14:17 +00002254 // Save local scope position because in case of condition variable ScopePos
2255 // won't be restored when traversing AST.
2256 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2257
2258 // Create local scope for possible condition variable.
2259 // Store scope position for continue statement.
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002260 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
Ted Kremenek9c378f72011-08-12 23:37:29 +00002261 if (VarDecl *VD = W->getConditionVariable()) {
Marcin Swiderski05adedc2010-10-01 01:14:17 +00002262 addLocalScopeForVarDecl(VD);
2263 addAutomaticObjDtors(ScopePos, LoopBeginScopePos, W);
2264 }
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002265
Mike Stumpfefb9f72009-07-21 01:12:51 +00002266 // "while" is a control-flow statement. Thus we stop processing the current
2267 // block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002268 if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002269 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002270 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002271 LoopSuccessor = Block;
Ted Kremenek6b12da92011-02-21 22:11:26 +00002272 Block = 0;
Ted Kremenek3f635c02012-07-14 05:04:10 +00002273 } else {
Ted Kremenek4f880632009-07-17 22:18:43 +00002274 LoopSuccessor = Succ;
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002275 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002276
Ted Kremenek3f635c02012-07-14 05:04:10 +00002277 CFGBlock *BodyBlock = 0, *TransitionBlock = 0;
Mike Stump00998a02009-07-23 23:25:26 +00002278
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002279 // Process the loop body.
2280 {
Ted Kremenekf6e85412009-04-28 03:09:44 +00002281 assert(W->getBody());
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002282
Ted Kremenek3f635c02012-07-14 05:04:10 +00002283 // Save the current values for Block, Succ, continue and break targets.
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002284 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
2285 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
Ted Kremenek3f635c02012-07-14 05:04:10 +00002286 save_break(BreakJumpTarget);
Ted Kremenekf6e85412009-04-28 03:09:44 +00002287
Mike Stump6d9828c2009-07-17 01:31:16 +00002288 // Create an empty block to represent the transition block for looping back
2289 // to the head of the loop.
Ted Kremenek3f635c02012-07-14 05:04:10 +00002290 Succ = TransitionBlock = createBlock(false);
2291 TransitionBlock->setLoopTarget(W);
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002292 ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos);
Mike Stump6d9828c2009-07-17 01:31:16 +00002293
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002294 // All breaks should go to the code following the loop.
Marcin Swiderski05adedc2010-10-01 01:14:17 +00002295 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Mike Stump6d9828c2009-07-17 01:31:16 +00002296
Marcin Swiderski05adedc2010-10-01 01:14:17 +00002297 // Loop body should end with destructor of Condition variable (if any).
2298 addAutomaticObjDtors(ScopePos, LoopBeginScopePos, W);
2299
2300 // If body is not a compound statement create implicit scope
2301 // and add destructors.
2302 if (!isa<CompoundStmt>(W->getBody()))
2303 addLocalScopeAndDtors(W->getBody());
2304
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002305 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek3f635c02012-07-14 05:04:10 +00002306 BodyBlock = addStmt(W->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00002307
Ted Kremenekaf603f72007-08-30 18:39:40 +00002308 if (!BodyBlock)
Ted Kremenek9ce52702011-01-07 19:37:16 +00002309 BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;"
Ted Kremenek3f635c02012-07-14 05:04:10 +00002310 else if (Block && badCFG)
2311 return 0;
2312 }
2313
2314 // Because of short-circuit evaluation, the condition of the loop can span
2315 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
2316 // evaluate the condition.
2317 CFGBlock *EntryConditionBlock = 0, *ExitConditionBlock = 0;
2318
2319 do {
2320 Expr *C = W->getCond();
2321
2322 // Specially handle logical operators, which have a slightly
2323 // more optimal CFG representation.
Richard Smith56df4a92012-07-24 21:02:14 +00002324 if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens()))
Ted Kremenek3f635c02012-07-14 05:04:10 +00002325 if (Cond->isLogicalOp()) {
2326 llvm::tie(EntryConditionBlock, ExitConditionBlock) =
2327 VisitLogicalOperator(Cond, W, BodyBlock,
2328 LoopSuccessor);
2329 break;
2330 }
2331
2332 // The default case when not handling logical operators.
Ted Kremenek857f5682012-10-12 22:56:26 +00002333 ExitConditionBlock = createBlock(false);
Ted Kremenek3f635c02012-07-14 05:04:10 +00002334 ExitConditionBlock->setTerminator(W);
2335
2336 // Now add the actual condition to the condition block.
2337 // Because the condition itself may contain control-flow, new blocks may
2338 // be created. Thus we update "Succ" after adding the condition.
2339 Block = ExitConditionBlock;
2340 Block = EntryConditionBlock = addStmt(C);
2341
2342 // If this block contains a condition variable, add both the condition
2343 // variable and initializer to the CFG.
2344 if (VarDecl *VD = W->getConditionVariable()) {
2345 if (Expr *Init = VD->getInit()) {
2346 autoCreateBlock();
2347 appendStmt(Block, W->getConditionVariableDeclStmt());
2348 EntryConditionBlock = addStmt(Init);
2349 assert(Block == EntryConditionBlock);
2350 }
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002351 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002352
Ted Kremenek3f635c02012-07-14 05:04:10 +00002353 if (Block && badCFG)
2354 return 0;
2355
2356 // See if this is a known constant.
2357 const TryResult& KnownVal = tryEvaluateBool(C);
2358
Ted Kremenek941fde82009-07-24 04:47:11 +00002359 // Add the loop body entry as a successor to the condition.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002360 addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock);
Ted Kremenek3f635c02012-07-14 05:04:10 +00002361 // Link up the condition block with the code that follows the loop. (the
2362 // false branch).
2363 addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump6d9828c2009-07-17 01:31:16 +00002364
Ted Kremenek3f635c02012-07-14 05:04:10 +00002365 } while(false);
2366
2367 // Link up the loop-back block to the entry condition block.
2368 addSuccessor(TransitionBlock, EntryConditionBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +00002369
2370 // There can be no more statements in the condition block since we loop back
2371 // to this block. NULL out Block to force lazy creation of another block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002372 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002373
Ted Kremenek4ec010a2009-12-24 01:34:10 +00002374 // Return the condition block, which is the dominating block for the loop.
Ted Kremenek54827132008-02-27 07:20:00 +00002375 Succ = EntryConditionBlock;
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002376 return EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002377}
Mike Stump1eb44332009-09-09 15:08:12 +00002378
2379
Ted Kremenek9c378f72011-08-12 23:37:29 +00002380CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
Ted Kremenek4f880632009-07-17 22:18:43 +00002381 // FIXME: For now we pretend that @catch and the code it contains does not
2382 // exit.
2383 return Block;
2384}
Mike Stump6d9828c2009-07-17 01:31:16 +00002385
Ted Kremenek9c378f72011-08-12 23:37:29 +00002386CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
Ted Kremenek2fda5042008-12-09 20:20:09 +00002387 // FIXME: This isn't complete. We basically treat @throw like a return
2388 // statement.
Mike Stump6d9828c2009-07-17 01:31:16 +00002389
Ted Kremenek6c249722009-09-24 18:45:41 +00002390 // If we were in the middle of a block we stop processing that block.
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002391 if (badCFG)
Ted Kremenek4f880632009-07-17 22:18:43 +00002392 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00002393
Ted Kremenek2fda5042008-12-09 20:20:09 +00002394 // Create the new block.
2395 Block = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +00002396
Ted Kremenek2fda5042008-12-09 20:20:09 +00002397 // The Exit block is the only successor.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002398 addSuccessor(Block, &cfg->getExit());
Mike Stump6d9828c2009-07-17 01:31:16 +00002399
2400 // Add the statement to the block. This may create new blocks if S contains
2401 // control-flow (short-circuit operations).
Ted Kremenek852274d2009-12-16 03:18:58 +00002402 return VisitStmt(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek2fda5042008-12-09 20:20:09 +00002403}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002404
Ted Kremenek9c378f72011-08-12 23:37:29 +00002405CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) {
Ted Kremenek6c249722009-09-24 18:45:41 +00002406 // If we were in the middle of a block we stop processing that block.
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002407 if (badCFG)
Mike Stump0979d802009-07-22 22:56:04 +00002408 return 0;
2409
2410 // Create the new block.
2411 Block = createBlock(false);
2412
Mike Stump5d1d2022010-01-19 02:20:09 +00002413 if (TryTerminatedBlock)
2414 // The current try statement is the only successor.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002415 addSuccessor(Block, TryTerminatedBlock);
Ted Kremenekad5a8942010-08-02 23:46:59 +00002416 else
Mike Stump5d1d2022010-01-19 02:20:09 +00002417 // otherwise the Exit block is the only successor.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002418 addSuccessor(Block, &cfg->getExit());
Mike Stump0979d802009-07-22 22:56:04 +00002419
2420 // Add the statement to the block. This may create new blocks if S contains
2421 // control-flow (short-circuit operations).
Ted Kremenek852274d2009-12-16 03:18:58 +00002422 return VisitStmt(T, AddStmtChoice::AlwaysAdd);
Mike Stump0979d802009-07-22 22:56:04 +00002423}
2424
Ted Kremenek9c378f72011-08-12 23:37:29 +00002425CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) {
2426 CFGBlock *LoopSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002427
Mike Stump8f9893a2009-07-21 01:27:50 +00002428 // "do...while" is a control-flow statement. Thus we stop processing the
2429 // current block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002430 if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002431 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002432 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002433 LoopSuccessor = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00002434 } else
2435 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +00002436
2437 // Because of short-circuit evaluation, the condition of the loop can span
2438 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
2439 // evaluate the condition.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002440 CFGBlock *ExitConditionBlock = createBlock(false);
2441 CFGBlock *EntryConditionBlock = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00002442
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002443 // Set the terminator for the "exit" condition block.
Mike Stump6d9828c2009-07-17 01:31:16 +00002444 ExitConditionBlock->setTerminator(D);
2445
2446 // Now add the actual condition to the condition block. Because the condition
2447 // itself may contain control-flow, new blocks may be created.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002448 if (Stmt *C = D->getCond()) {
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002449 Block = ExitConditionBlock;
2450 EntryConditionBlock = addStmt(C);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002451 if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002452 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002453 return 0;
2454 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002455 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002456
Ted Kremenek54827132008-02-27 07:20:00 +00002457 // The condition block is the implicit successor for the loop body.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002458 Succ = EntryConditionBlock;
2459
Mike Stump00998a02009-07-23 23:25:26 +00002460 // See if this is a known constant.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002461 const TryResult &KnownVal = tryEvaluateBool(D->getCond());
Mike Stump00998a02009-07-23 23:25:26 +00002462
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002463 // Process the loop body.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002464 CFGBlock *BodyBlock = NULL;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002465 {
Ted Kremenek6db0ad32010-01-19 20:46:35 +00002466 assert(D->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00002467
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002468 // Save the current values for Block, Succ, and continue and break targets
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002469 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
2470 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
2471 save_break(BreakJumpTarget);
Mike Stump6d9828c2009-07-17 01:31:16 +00002472
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002473 // All continues within this loop should go to the condition block
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002474 ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos);
Mike Stump6d9828c2009-07-17 01:31:16 +00002475
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002476 // All breaks should go to the code following the loop.
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002477 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Mike Stump6d9828c2009-07-17 01:31:16 +00002478
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002479 // NULL out Block to force lazy instantiation of blocks for the body.
2480 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002481
Marcin Swiderski05adedc2010-10-01 01:14:17 +00002482 // If body is not a compound statement create implicit scope
2483 // and add destructors.
2484 if (!isa<CompoundStmt>(D->getBody()))
2485 addLocalScopeAndDtors(D->getBody());
2486
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002487 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek4f880632009-07-17 22:18:43 +00002488 BodyBlock = addStmt(D->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00002489
Ted Kremenekaf603f72007-08-30 18:39:40 +00002490 if (!BodyBlock)
Ted Kremeneka9d996d2008-02-27 00:28:17 +00002491 BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002492 else if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002493 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002494 return 0;
2495 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002496
Ted Kremenekd173dc72010-08-17 20:59:56 +00002497 if (!KnownVal.isFalse()) {
2498 // Add an intermediate block between the BodyBlock and the
2499 // ExitConditionBlock to represent the "loop back" transition. Create an
2500 // empty block to represent the transition block for looping back to the
2501 // head of the loop.
2502 // FIXME: Can we do this more efficiently without adding another block?
2503 Block = NULL;
2504 Succ = BodyBlock;
2505 CFGBlock *LoopBackBlock = createBlock();
2506 LoopBackBlock->setLoopTarget(D);
Mike Stump6d9828c2009-07-17 01:31:16 +00002507
Ted Kremenekd173dc72010-08-17 20:59:56 +00002508 // Add the loop body entry as a successor to the condition.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002509 addSuccessor(ExitConditionBlock, LoopBackBlock);
Ted Kremenekd173dc72010-08-17 20:59:56 +00002510 }
2511 else
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002512 addSuccessor(ExitConditionBlock, NULL);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002513 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002514
Ted Kremenek941fde82009-07-24 04:47:11 +00002515 // Link up the condition block with the code that follows the loop.
2516 // (the false branch).
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002517 addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump6d9828c2009-07-17 01:31:16 +00002518
2519 // There can be no more statements in the body block(s) since we loop back to
2520 // the body. NULL out Block to force lazy creation of another block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002521 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002522
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002523 // Return the loop body, which is the dominating block for the loop.
Ted Kremenek54827132008-02-27 07:20:00 +00002524 Succ = BodyBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002525 return BodyBlock;
2526}
2527
Ted Kremenek9c378f72011-08-12 23:37:29 +00002528CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002529 // "continue" is a control-flow statement. Thus we stop processing the
2530 // current block.
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002531 if (badCFG)
2532 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00002533
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002534 // Now create a new block that ends with the continue statement.
2535 Block = createBlock(false);
2536 Block->setTerminator(C);
Mike Stump6d9828c2009-07-17 01:31:16 +00002537
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002538 // If there is no target for the continue, then we are looking at an
Ted Kremenek235c5ed2009-04-07 18:53:24 +00002539 // incomplete AST. This means the CFG cannot be constructed.
Ted Kremenek9ce52702011-01-07 19:37:16 +00002540 if (ContinueJumpTarget.block) {
2541 addAutomaticObjDtors(ScopePos, ContinueJumpTarget.scopePosition, C);
2542 addSuccessor(Block, ContinueJumpTarget.block);
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002543 } else
Ted Kremenek235c5ed2009-04-07 18:53:24 +00002544 badCFG = true;
Mike Stump6d9828c2009-07-17 01:31:16 +00002545
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002546 return Block;
2547}
Mike Stump1eb44332009-09-09 15:08:12 +00002548
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002549CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
2550 AddStmtChoice asc) {
Ted Kremenek13fc08a2009-07-18 00:47:21 +00002551
Ted Kremenek3179a452011-03-10 01:14:11 +00002552 if (asc.alwaysAdd(*this, E)) {
Ted Kremenek13fc08a2009-07-18 00:47:21 +00002553 autoCreateBlock();
Ted Kremenek892697d2010-12-16 07:46:53 +00002554 appendStmt(Block, E);
Ted Kremenek13fc08a2009-07-18 00:47:21 +00002555 }
Mike Stump1eb44332009-09-09 15:08:12 +00002556
Ted Kremenek4f880632009-07-17 22:18:43 +00002557 // VLA types have expressions that must be evaluated.
Ted Kremenek97e50712011-04-14 01:50:50 +00002558 CFGBlock *lastBlock = Block;
2559
Ted Kremenek4f880632009-07-17 22:18:43 +00002560 if (E->isArgumentType()) {
John McCallf4c73712011-01-19 06:33:43 +00002561 for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr());
Ted Kremenek4f880632009-07-17 22:18:43 +00002562 VA != 0; VA = FindVA(VA->getElementType().getTypePtr()))
Ted Kremenek97e50712011-04-14 01:50:50 +00002563 lastBlock = addStmt(VA->getSizeExpr());
Ted Kremenekf91a5b02011-08-06 00:30:00 +00002564 }
Ted Kremenek97e50712011-04-14 01:50:50 +00002565 return lastBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002566}
Mike Stump1eb44332009-09-09 15:08:12 +00002567
Ted Kremenek4f880632009-07-17 22:18:43 +00002568/// VisitStmtExpr - Utility method to handle (nested) statement
2569/// expressions (a GCC extension).
Ted Kremenek9c378f72011-08-12 23:37:29 +00002570CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) {
Ted Kremenek3179a452011-03-10 01:14:11 +00002571 if (asc.alwaysAdd(*this, SE)) {
Ted Kremenek13fc08a2009-07-18 00:47:21 +00002572 autoCreateBlock();
Ted Kremenek892697d2010-12-16 07:46:53 +00002573 appendStmt(Block, SE);
Ted Kremenek13fc08a2009-07-18 00:47:21 +00002574 }
Ted Kremenek4f880632009-07-17 22:18:43 +00002575 return VisitCompoundStmt(SE->getSubStmt());
2576}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002577
Ted Kremenek9c378f72011-08-12 23:37:29 +00002578CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) {
Mike Stump6d9828c2009-07-17 01:31:16 +00002579 // "switch" is a control-flow statement. Thus we stop processing the current
2580 // block.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002581 CFGBlock *SwitchSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002582
Marcin Swiderski8ae60582010-10-01 01:24:41 +00002583 // Save local scope position because in case of condition variable ScopePos
2584 // won't be restored when traversing AST.
2585 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2586
2587 // Create local scope for possible condition variable.
2588 // Store scope position. Add implicit destructor.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002589 if (VarDecl *VD = Terminator->getConditionVariable()) {
Marcin Swiderski8ae60582010-10-01 01:24:41 +00002590 LocalScope::const_iterator SwitchBeginScopePos = ScopePos;
2591 addLocalScopeForVarDecl(VD);
2592 addAutomaticObjDtors(ScopePos, SwitchBeginScopePos, Terminator);
2593 }
2594
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002595 if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002596 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002597 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002598 SwitchSuccessor = Block;
Mike Stump6d9828c2009-07-17 01:31:16 +00002599 } else SwitchSuccessor = Succ;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002600
2601 // Save the current "switch" context.
2602 SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00002603 save_default(DefaultCaseBlock);
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002604 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00002605
Mike Stump6d9828c2009-07-17 01:31:16 +00002606 // Set the "default" case to be the block after the switch statement. If the
2607 // switch statement contains a "default:", this value will be overwritten with
2608 // the block for that code.
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00002609 DefaultCaseBlock = SwitchSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00002610
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002611 // Create a new block that will contain the switch statement.
2612 SwitchTerminatedBlock = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +00002613
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002614 // Now process the switch body. The code after the switch is the implicit
2615 // successor.
2616 Succ = SwitchSuccessor;
Marcin Swiderskif1308c72010-09-25 11:05:21 +00002617 BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos);
Mike Stump6d9828c2009-07-17 01:31:16 +00002618
2619 // When visiting the body, the case statements should automatically get linked
2620 // up to the switch. We also don't keep a pointer to the body, since all
2621 // control-flow from the switch goes to case/default statements.
Ted Kremenek6db0ad32010-01-19 20:46:35 +00002622 assert(Terminator->getBody() && "switch must contain a non-NULL body");
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002623 Block = NULL;
Marcin Swiderski8ae60582010-10-01 01:24:41 +00002624
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002625 // For pruning unreachable case statements, save the current state
2626 // for tracking the condition value.
2627 SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered,
2628 false);
Ted Kremenek04982472011-03-04 01:03:41 +00002629
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002630 // Determine if the switch condition can be explicitly evaluated.
2631 assert(Terminator->getCond() && "switch condition must be non-NULL");
Ted Kremenek04982472011-03-04 01:03:41 +00002632 Expr::EvalResult result;
Ted Kremeneke9cd9c02011-03-13 03:48:04 +00002633 bool b = tryEvaluate(Terminator->getCond(), result);
2634 SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond,
2635 b ? &result : 0);
Ted Kremenek04982472011-03-04 01:03:41 +00002636
Marcin Swiderski8ae60582010-10-01 01:24:41 +00002637 // If body is not a compound statement create implicit scope
2638 // and add destructors.
2639 if (!isa<CompoundStmt>(Terminator->getBody()))
2640 addLocalScopeAndDtors(Terminator->getBody());
2641
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002642 addStmt(Terminator->getBody());
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002643 if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002644 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002645 return 0;
2646 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002647
Mike Stump6d9828c2009-07-17 01:31:16 +00002648 // If we have no "default:" case, the default transition is to the code
Ted Kremenek432c4782011-03-16 04:32:01 +00002649 // following the switch body. Moreover, take into account if all the
2650 // cases of a switch are covered (e.g., switching on an enum value).
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002651 addSuccessor(SwitchTerminatedBlock,
Ted Kremenek432c4782011-03-16 04:32:01 +00002652 switchExclusivelyCovered || Terminator->isAllEnumCasesCovered()
2653 ? 0 : DefaultCaseBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +00002654
Ted Kremenek49af7cb2007-08-27 19:46:09 +00002655 // Add the terminator and condition in the switch block.
Ted Kremenek411cdee2008-04-16 21:10:48 +00002656 SwitchTerminatedBlock->setTerminator(Terminator);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002657 Block = SwitchTerminatedBlock;
Ted Kremenek8f81acf2012-11-13 00:12:13 +00002658 CFGBlock *LastBlock = addStmt(Terminator->getCond());
Ted Kremenekad5a8942010-08-02 23:46:59 +00002659
Ted Kremenek6b501eb2009-12-24 00:39:26 +00002660 // Finally, if the SwitchStmt contains a condition variable, add both the
2661 // SwitchStmt and the condition variable initialization to the CFG.
2662 if (VarDecl *VD = Terminator->getConditionVariable()) {
2663 if (Expr *Init = VD->getInit()) {
2664 autoCreateBlock();
Ted Kremenekd40066b2011-04-04 23:29:12 +00002665 appendStmt(Block, Terminator->getConditionVariableDeclStmt());
Ted Kremenek8f81acf2012-11-13 00:12:13 +00002666 LastBlock = addStmt(Init);
Ted Kremenek6b501eb2009-12-24 00:39:26 +00002667 }
2668 }
Ted Kremenekad5a8942010-08-02 23:46:59 +00002669
Ted Kremenek8f81acf2012-11-13 00:12:13 +00002670 return LastBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002671}
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002672
2673static bool shouldAddCase(bool &switchExclusivelyCovered,
Ted Kremeneke9cd9c02011-03-13 03:48:04 +00002674 const Expr::EvalResult *switchCond,
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002675 const CaseStmt *CS,
2676 ASTContext &Ctx) {
Ted Kremeneke9cd9c02011-03-13 03:48:04 +00002677 if (!switchCond)
2678 return true;
2679
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002680 bool addCase = false;
Ted Kremenek04982472011-03-04 01:03:41 +00002681
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002682 if (!switchExclusivelyCovered) {
Ted Kremeneke9cd9c02011-03-13 03:48:04 +00002683 if (switchCond->Val.isInt()) {
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002684 // Evaluate the LHS of the case value.
Richard Smith85df96c2011-10-14 20:22:00 +00002685 const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx);
Ted Kremeneke9cd9c02011-03-13 03:48:04 +00002686 const llvm::APSInt &condInt = switchCond->Val.getInt();
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002687
2688 if (condInt == lhsInt) {
2689 addCase = true;
2690 switchExclusivelyCovered = true;
2691 }
2692 else if (condInt < lhsInt) {
2693 if (const Expr *RHS = CS->getRHS()) {
2694 // Evaluate the RHS of the case value.
Richard Smith85df96c2011-10-14 20:22:00 +00002695 const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx);
2696 if (V2 <= condInt) {
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002697 addCase = true;
2698 switchExclusivelyCovered = true;
2699 }
2700 }
2701 }
2702 }
2703 else
2704 addCase = true;
2705 }
2706 return addCase;
2707}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002708
Ted Kremenek9c378f72011-08-12 23:37:29 +00002709CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) {
Mike Stump6d9828c2009-07-17 01:31:16 +00002710 // CaseStmts are essentially labels, so they are the first statement in a
2711 // block.
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002712 CFGBlock *TopBlock = 0, *LastBlock = 0;
Ted Kremenek04982472011-03-04 01:03:41 +00002713
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002714 if (Stmt *Sub = CS->getSubStmt()) {
2715 // For deeply nested chains of CaseStmts, instead of doing a recursion
2716 // (which can blow out the stack), manually unroll and create blocks
2717 // along the way.
2718 while (isa<CaseStmt>(Sub)) {
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002719 CFGBlock *currentBlock = createBlock(false);
2720 currentBlock->setLabel(CS);
Ted Kremenek29ccaa12007-08-30 18:48:11 +00002721
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002722 if (TopBlock)
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002723 addSuccessor(LastBlock, currentBlock);
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002724 else
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002725 TopBlock = currentBlock;
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002726
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002727 addSuccessor(SwitchTerminatedBlock,
Ted Kremeneke9cd9c02011-03-13 03:48:04 +00002728 shouldAddCase(switchExclusivelyCovered, switchCond,
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002729 CS, *Context)
2730 ? currentBlock : 0);
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002731
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002732 LastBlock = currentBlock;
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002733 CS = cast<CaseStmt>(Sub);
2734 Sub = CS->getSubStmt();
2735 }
2736
2737 addStmt(Sub);
2738 }
Mike Stump1eb44332009-09-09 15:08:12 +00002739
Ted Kremenek9c378f72011-08-12 23:37:29 +00002740 CFGBlock *CaseBlock = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00002741 if (!CaseBlock)
2742 CaseBlock = createBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +00002743
2744 // Cases statements partition blocks, so this is the top of the basic block we
2745 // were processing (the "case XXX:" is the label).
Ted Kremenek4f880632009-07-17 22:18:43 +00002746 CaseBlock->setLabel(CS);
2747
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002748 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002749 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00002750
2751 // Add this block to the list of successors for the block with the switch
2752 // statement.
Ted Kremenek4f880632009-07-17 22:18:43 +00002753 assert(SwitchTerminatedBlock);
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002754 addSuccessor(SwitchTerminatedBlock,
Ted Kremeneke9cd9c02011-03-13 03:48:04 +00002755 shouldAddCase(switchExclusivelyCovered, switchCond,
Ted Kremeneke71f3d52011-03-01 23:12:55 +00002756 CS, *Context)
2757 ? CaseBlock : 0);
Mike Stump6d9828c2009-07-17 01:31:16 +00002758
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002759 // We set Block to NULL to allow lazy creation of a new block (if necessary)
2760 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002761
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002762 if (TopBlock) {
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002763 addSuccessor(LastBlock, CaseBlock);
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002764 Succ = TopBlock;
Zhanyong Wan36f327c2010-11-22 19:32:14 +00002765 } else {
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002766 // This block is now the implicit successor of other blocks.
2767 Succ = CaseBlock;
2768 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002769
Ted Kremenek0fc67e22010-08-04 23:54:30 +00002770 return Succ;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002771}
Mike Stump6d9828c2009-07-17 01:31:16 +00002772
Ted Kremenek9c378f72011-08-12 23:37:29 +00002773CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) {
Ted Kremenek4f880632009-07-17 22:18:43 +00002774 if (Terminator->getSubStmt())
2775 addStmt(Terminator->getSubStmt());
Mike Stump1eb44332009-09-09 15:08:12 +00002776
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00002777 DefaultCaseBlock = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00002778
2779 if (!DefaultCaseBlock)
2780 DefaultCaseBlock = createBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +00002781
2782 // Default statements partition blocks, so this is the top of the basic block
2783 // we were processing (the "default:" is the label).
Ted Kremenek411cdee2008-04-16 21:10:48 +00002784 DefaultCaseBlock->setLabel(Terminator);
Mike Stump1eb44332009-09-09 15:08:12 +00002785
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002786 if (badCFG)
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00002787 return 0;
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00002788
Mike Stump6d9828c2009-07-17 01:31:16 +00002789 // Unlike case statements, we don't add the default block to the successors
2790 // for the switch statement immediately. This is done when we finish
2791 // processing the switch statement. This allows for the default case
2792 // (including a fall-through to the code after the switch statement) to always
2793 // be the last successor of a switch-terminated block.
2794
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00002795 // We set Block to NULL to allow lazy creation of a new block (if necessary)
2796 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002797
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00002798 // This block is now the implicit successor of other blocks.
2799 Succ = DefaultCaseBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00002800
2801 return DefaultCaseBlock;
Ted Kremenek295222c2008-02-13 21:46:34 +00002802}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00002803
Mike Stump5d1d2022010-01-19 02:20:09 +00002804CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) {
2805 // "try"/"catch" is a control-flow statement. Thus we stop processing the
2806 // current block.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002807 CFGBlock *TrySuccessor = NULL;
Mike Stump5d1d2022010-01-19 02:20:09 +00002808
2809 if (Block) {
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002810 if (badCFG)
Mike Stump5d1d2022010-01-19 02:20:09 +00002811 return 0;
2812 TrySuccessor = Block;
2813 } else TrySuccessor = Succ;
2814
Mike Stumpa1f93632010-01-20 01:15:34 +00002815 CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock;
Mike Stump5d1d2022010-01-19 02:20:09 +00002816
2817 // Create a new block that will contain the try statement.
Mike Stumpf00cca52010-01-20 01:30:58 +00002818 CFGBlock *NewTryTerminatedBlock = createBlock(false);
Mike Stump5d1d2022010-01-19 02:20:09 +00002819 // Add the terminator in the try block.
Mike Stumpf00cca52010-01-20 01:30:58 +00002820 NewTryTerminatedBlock->setTerminator(Terminator);
Mike Stump5d1d2022010-01-19 02:20:09 +00002821
Mike Stumpa1f93632010-01-20 01:15:34 +00002822 bool HasCatchAll = false;
Mike Stump5d1d2022010-01-19 02:20:09 +00002823 for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) {
2824 // The code after the try is the implicit successor.
2825 Succ = TrySuccessor;
2826 CXXCatchStmt *CS = Terminator->getHandler(h);
Mike Stumpa1f93632010-01-20 01:15:34 +00002827 if (CS->getExceptionDecl() == 0) {
2828 HasCatchAll = true;
2829 }
Mike Stump5d1d2022010-01-19 02:20:09 +00002830 Block = NULL;
2831 CFGBlock *CatchBlock = VisitCXXCatchStmt(CS);
2832 if (CatchBlock == 0)
2833 return 0;
2834 // Add this block to the list of successors for the block with the try
2835 // statement.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002836 addSuccessor(NewTryTerminatedBlock, CatchBlock);
Mike Stump5d1d2022010-01-19 02:20:09 +00002837 }
Mike Stumpa1f93632010-01-20 01:15:34 +00002838 if (!HasCatchAll) {
2839 if (PrevTryTerminatedBlock)
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002840 addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock);
Mike Stumpa1f93632010-01-20 01:15:34 +00002841 else
Ted Kremenek0a3ed312010-12-17 04:44:39 +00002842 addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
Mike Stumpa1f93632010-01-20 01:15:34 +00002843 }
Mike Stump5d1d2022010-01-19 02:20:09 +00002844
2845 // The code after the try is the implicit successor.
2846 Succ = TrySuccessor;
2847
Mike Stumpf00cca52010-01-20 01:30:58 +00002848 // Save the current "try" context.
Ted Kremenekf0e71ae2011-08-23 23:05:07 +00002849 SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock);
2850 cfg->addTryDispatchBlock(TryTerminatedBlock);
Mike Stumpf00cca52010-01-20 01:30:58 +00002851
Ted Kremenek6db0ad32010-01-19 20:46:35 +00002852 assert(Terminator->getTryBlock() && "try must contain a non-NULL body");
Mike Stump5d1d2022010-01-19 02:20:09 +00002853 Block = NULL;
Ted Kremenek8f81acf2012-11-13 00:12:13 +00002854 return addStmt(Terminator->getTryBlock());
Mike Stump5d1d2022010-01-19 02:20:09 +00002855}
2856
Ted Kremenek9c378f72011-08-12 23:37:29 +00002857CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) {
Mike Stump5d1d2022010-01-19 02:20:09 +00002858 // CXXCatchStmt are treated like labels, so they are the first statement in a
2859 // block.
2860
Marcin Swiderski0e97bcb2010-10-01 01:46:52 +00002861 // Save local scope position because in case of exception variable ScopePos
2862 // won't be restored when traversing AST.
2863 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2864
2865 // Create local scope for possible exception variable.
2866 // Store scope position. Add implicit destructor.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002867 if (VarDecl *VD = CS->getExceptionDecl()) {
Marcin Swiderski0e97bcb2010-10-01 01:46:52 +00002868 LocalScope::const_iterator BeginScopePos = ScopePos;
2869 addLocalScopeForVarDecl(VD);
2870 addAutomaticObjDtors(ScopePos, BeginScopePos, CS);
2871 }
2872
Mike Stump5d1d2022010-01-19 02:20:09 +00002873 if (CS->getHandlerBlock())
2874 addStmt(CS->getHandlerBlock());
2875
Ted Kremenek9c378f72011-08-12 23:37:29 +00002876 CFGBlock *CatchBlock = Block;
Mike Stump5d1d2022010-01-19 02:20:09 +00002877 if (!CatchBlock)
2878 CatchBlock = createBlock();
Ted Kremenek337e4db2012-03-10 01:34:17 +00002879
2880 // CXXCatchStmt is more than just a label. They have semantic meaning
2881 // as well, as they implicitly "initialize" the catch variable. Add
2882 // it to the CFG as a CFGElement so that the control-flow of these
2883 // semantics gets captured.
2884 appendStmt(CatchBlock, CS);
Mike Stump5d1d2022010-01-19 02:20:09 +00002885
Ted Kremenek337e4db2012-03-10 01:34:17 +00002886 // Also add the CXXCatchStmt as a label, to mirror handling of regular
2887 // labels.
Mike Stump5d1d2022010-01-19 02:20:09 +00002888 CatchBlock->setLabel(CS);
2889
Ted Kremenek337e4db2012-03-10 01:34:17 +00002890 // Bail out if the CFG is bad.
Zhongxing Xud438b3d2010-09-06 07:32:31 +00002891 if (badCFG)
Mike Stump5d1d2022010-01-19 02:20:09 +00002892 return 0;
2893
2894 // We set Block to NULL to allow lazy creation of a new block (if necessary)
2895 Block = NULL;
2896
2897 return CatchBlock;
2898}
2899
Ted Kremenek9c378f72011-08-12 23:37:29 +00002900CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) {
Richard Smithad762fc2011-04-14 22:09:26 +00002901 // C++0x for-range statements are specified as [stmt.ranged]:
2902 //
2903 // {
2904 // auto && __range = range-init;
2905 // for ( auto __begin = begin-expr,
2906 // __end = end-expr;
2907 // __begin != __end;
2908 // ++__begin ) {
2909 // for-range-declaration = *__begin;
2910 // statement
2911 // }
2912 // }
2913
2914 // Save local scope position before the addition of the implicit variables.
2915 SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2916
2917 // Create local scopes and destructors for range, begin and end variables.
2918 if (Stmt *Range = S->getRangeStmt())
2919 addLocalScopeForStmt(Range);
2920 if (Stmt *BeginEnd = S->getBeginEndStmt())
2921 addLocalScopeForStmt(BeginEnd);
2922 addAutomaticObjDtors(ScopePos, save_scope_pos.get(), S);
2923
2924 LocalScope::const_iterator ContinueScopePos = ScopePos;
2925
2926 // "for" is a control-flow statement. Thus we stop processing the current
2927 // block.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002928 CFGBlock *LoopSuccessor = NULL;
Richard Smithad762fc2011-04-14 22:09:26 +00002929 if (Block) {
2930 if (badCFG)
2931 return 0;
2932 LoopSuccessor = Block;
2933 } else
2934 LoopSuccessor = Succ;
2935
2936 // Save the current value for the break targets.
2937 // All breaks should go to the code following the loop.
2938 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
2939 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
2940
2941 // The block for the __begin != __end expression.
Ted Kremenek9c378f72011-08-12 23:37:29 +00002942 CFGBlock *ConditionBlock = createBlock(false);
Richard Smithad762fc2011-04-14 22:09:26 +00002943 ConditionBlock->setTerminator(S);
2944
2945 // Now add the actual condition to the condition block.
2946 if (Expr *C = S->getCond()) {
2947 Block = ConditionBlock;
2948 CFGBlock *BeginConditionBlock = addStmt(C);
2949 if (badCFG)
2950 return 0;
2951 assert(BeginConditionBlock == ConditionBlock &&
2952 "condition block in for-range was unexpectedly complex");
2953 (void)BeginConditionBlock;
2954 }
2955
2956 // The condition block is the implicit successor for the loop body as well as
2957 // any code above the loop.
2958 Succ = ConditionBlock;
2959
2960 // See if this is a known constant.
2961 TryResult KnownVal(true);
2962
2963 if (S->getCond())
2964 KnownVal = tryEvaluateBool(S->getCond());
2965
2966 // Now create the loop body.
2967 {
2968 assert(S->getBody());
2969
2970 // Save the current values for Block, Succ, and continue targets.
2971 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
2972 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
2973
2974 // Generate increment code in its own basic block. This is the target of
2975 // continue statements.
2976 Block = 0;
2977 Succ = addStmt(S->getInc());
2978 ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
2979
2980 // The starting block for the loop increment is the block that should
2981 // represent the 'loop target' for looping back to the start of the loop.
2982 ContinueJumpTarget.block->setLoopTarget(S);
2983
2984 // Finish up the increment block and prepare to start the loop body.
2985 assert(Block);
2986 if (badCFG)
2987 return 0;
2988 Block = 0;
2989
2990
2991 // Add implicit scope and dtors for loop variable.
2992 addLocalScopeAndDtors(S->getLoopVarStmt());
2993
2994 // Populate a new block to contain the loop body and loop variable.
Ted Kremenek8f81acf2012-11-13 00:12:13 +00002995 addStmt(S->getBody());
Richard Smithad762fc2011-04-14 22:09:26 +00002996 if (badCFG)
2997 return 0;
Ted Kremenek8f81acf2012-11-13 00:12:13 +00002998 CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt());
Richard Smithad762fc2011-04-14 22:09:26 +00002999 if (badCFG)
3000 return 0;
3001
3002 // This new body block is a successor to our condition block.
Ted Kremenek8f81acf2012-11-13 00:12:13 +00003003 addSuccessor(ConditionBlock, KnownVal.isFalse() ? 0 : LoopVarStmtBlock);
Richard Smithad762fc2011-04-14 22:09:26 +00003004 }
3005
3006 // Link up the condition block with the code that follows the loop (the
3007 // false branch).
3008 addSuccessor(ConditionBlock, KnownVal.isTrue() ? 0 : LoopSuccessor);
3009
3010 // Add the initialization statements.
3011 Block = createBlock();
Richard Smithb403d6d2011-04-18 15:49:25 +00003012 addStmt(S->getBeginEndStmt());
3013 return addStmt(S->getRangeStmt());
Richard Smithad762fc2011-04-14 22:09:26 +00003014}
3015
John McCall4765fa02010-12-06 08:20:24 +00003016CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E,
Marcin Swiderski8599e762010-11-03 06:19:35 +00003017 AddStmtChoice asc) {
Jordan Rose5a1ffe92012-09-05 22:55:23 +00003018 if (BuildOpts.AddTemporaryDtors) {
Marcin Swiderski8599e762010-11-03 06:19:35 +00003019 // If adding implicit destructors visit the full expression for adding
3020 // destructors of temporaries.
3021 VisitForTemporaryDtors(E->getSubExpr());
3022
3023 // Full expression has to be added as CFGStmt so it will be sequenced
3024 // before destructors of it's temporaries.
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +00003025 asc = asc.withAlwaysAdd(true);
Marcin Swiderski8599e762010-11-03 06:19:35 +00003026 }
3027 return Visit(E->getSubExpr(), asc);
3028}
3029
Zhongxing Xua725ed42010-11-01 13:04:58 +00003030CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E,
3031 AddStmtChoice asc) {
Ted Kremenek3179a452011-03-10 01:14:11 +00003032 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xua725ed42010-11-01 13:04:58 +00003033 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00003034 appendStmt(Block, E);
Zhongxing Xua725ed42010-11-01 13:04:58 +00003035
3036 // We do not want to propagate the AlwaysAdd property.
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +00003037 asc = asc.withAlwaysAdd(false);
Zhongxing Xua725ed42010-11-01 13:04:58 +00003038 }
3039 return Visit(E->getSubExpr(), asc);
3040}
3041
Zhongxing Xu81bc7d02010-11-01 06:46:05 +00003042CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C,
3043 AddStmtChoice asc) {
Zhongxing Xu81bc7d02010-11-01 06:46:05 +00003044 autoCreateBlock();
Zhongxing Xu97a72c32012-01-11 02:39:07 +00003045 appendStmt(Block, C);
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +00003046
Zhongxing Xu81bc7d02010-11-01 06:46:05 +00003047 return VisitChildren(C);
3048}
3049
Zhongxing Xua725ed42010-11-01 13:04:58 +00003050CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E,
3051 AddStmtChoice asc) {
Ted Kremenek3179a452011-03-10 01:14:11 +00003052 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xua725ed42010-11-01 13:04:58 +00003053 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00003054 appendStmt(Block, E);
Zhongxing Xua725ed42010-11-01 13:04:58 +00003055 // We do not want to propagate the AlwaysAdd property.
Zhanyong Wan94a3dcf2010-11-24 03:28:53 +00003056 asc = asc.withAlwaysAdd(false);
Zhongxing Xua725ed42010-11-01 13:04:58 +00003057 }
3058 return Visit(E->getSubExpr(), asc);
3059}
3060
Zhongxing Xu81bc7d02010-11-01 06:46:05 +00003061CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C,
3062 AddStmtChoice asc) {
Zhongxing Xu81bc7d02010-11-01 06:46:05 +00003063 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00003064 appendStmt(Block, C);
Zhongxing Xu81bc7d02010-11-01 06:46:05 +00003065 return VisitChildren(C);
3066}
3067
Zhongxing Xua725ed42010-11-01 13:04:58 +00003068CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E,
3069 AddStmtChoice asc) {
Ted Kremenek3179a452011-03-10 01:14:11 +00003070 if (asc.alwaysAdd(*this, E)) {
Zhongxing Xua725ed42010-11-01 13:04:58 +00003071 autoCreateBlock();
Ted Kremenek247e9662011-03-10 01:14:08 +00003072 appendStmt(Block, E);
Zhongxing Xua725ed42010-11-01 13:04:58 +00003073 }
Ted Kremenek892697d2010-12-16 07:46:53 +00003074 return Visit(E->getSubExpr(), AddStmtChoice());
Zhongxing Xua725ed42010-11-01 13:04:58 +00003075}
3076
Ted Kremenek9c378f72011-08-12 23:37:29 +00003077CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) {
Mike Stump6d9828c2009-07-17 01:31:16 +00003078 // Lazily create the indirect-goto dispatch block if there isn't one already.
Ted Kremenek9c378f72011-08-12 23:37:29 +00003079 CFGBlock *IBlock = cfg->getIndirectGotoBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +00003080
Ted Kremenek19bb3562007-08-28 19:26:49 +00003081 if (!IBlock) {
3082 IBlock = createBlock(false);
3083 cfg->setIndirectGotoBlock(IBlock);
3084 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003085
Ted Kremenek19bb3562007-08-28 19:26:49 +00003086 // IndirectGoto is a control-flow statement. Thus we stop processing the
3087 // current block and create a new one.
Zhongxing Xud438b3d2010-09-06 07:32:31 +00003088 if (badCFG)
Ted Kremenek4f880632009-07-17 22:18:43 +00003089 return 0;
3090
Ted Kremenek19bb3562007-08-28 19:26:49 +00003091 Block = createBlock(false);
3092 Block->setTerminator(I);
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003093 addSuccessor(Block, IBlock);
Ted Kremenek19bb3562007-08-28 19:26:49 +00003094 return addStmt(I->getTarget());
3095}
3096
Marcin Swiderski8599e762010-11-03 06:19:35 +00003097CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary) {
Jordan Rose5a1ffe92012-09-05 22:55:23 +00003098 assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors);
3099
Marcin Swiderski8599e762010-11-03 06:19:35 +00003100tryAgain:
3101 if (!E) {
3102 badCFG = true;
3103 return NULL;
3104 }
3105 switch (E->getStmtClass()) {
3106 default:
3107 return VisitChildrenForTemporaryDtors(E);
3108
3109 case Stmt::BinaryOperatorClass:
3110 return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E));
3111
3112 case Stmt::CXXBindTemporaryExprClass:
3113 return VisitCXXBindTemporaryExprForTemporaryDtors(
3114 cast<CXXBindTemporaryExpr>(E), BindToTemporary);
3115
John McCall56ca35d2011-02-17 10:25:35 +00003116 case Stmt::BinaryConditionalOperatorClass:
Marcin Swiderski8599e762010-11-03 06:19:35 +00003117 case Stmt::ConditionalOperatorClass:
3118 return VisitConditionalOperatorForTemporaryDtors(
John McCall56ca35d2011-02-17 10:25:35 +00003119 cast<AbstractConditionalOperator>(E), BindToTemporary);
Marcin Swiderski8599e762010-11-03 06:19:35 +00003120
3121 case Stmt::ImplicitCastExprClass:
3122 // For implicit cast we want BindToTemporary to be passed further.
3123 E = cast<CastExpr>(E)->getSubExpr();
3124 goto tryAgain;
3125
3126 case Stmt::ParenExprClass:
3127 E = cast<ParenExpr>(E)->getSubExpr();
3128 goto tryAgain;
Douglas Gregor03e80032011-06-21 17:03:29 +00003129
3130 case Stmt::MaterializeTemporaryExprClass:
3131 E = cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr();
3132 goto tryAgain;
Marcin Swiderski8599e762010-11-03 06:19:35 +00003133 }
3134}
3135
3136CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E) {
3137 // When visiting children for destructors we want to visit them in reverse
Ted Kremenek58467202013-02-05 22:00:19 +00003138 // order that they will appear in the CFG. Because the CFG is built
3139 // bottom-up, this means we visit them in their natural order, which
3140 // reverses them in the CFG.
Marcin Swiderski8599e762010-11-03 06:19:35 +00003141 CFGBlock *B = Block;
Ted Kremenek58467202013-02-05 22:00:19 +00003142 for (Stmt::child_range I = E->children(); I; ++I) {
3143 if (Stmt *Child = *I)
3144 if (CFGBlock *R = VisitForTemporaryDtors(Child))
3145 B = R;
Marcin Swiderski8599e762010-11-03 06:19:35 +00003146 }
3147 return B;
3148}
3149
3150CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E) {
3151 if (E->isLogicalOp()) {
3152 // Destructors for temporaries in LHS expression should be called after
3153 // those for RHS expression. Even if this will unnecessarily create a block,
3154 // this block will be used at least by the full expression.
3155 autoCreateBlock();
3156 CFGBlock *ConfluenceBlock = VisitForTemporaryDtors(E->getLHS());
3157 if (badCFG)
3158 return NULL;
3159
3160 Succ = ConfluenceBlock;
3161 Block = NULL;
3162 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS());
3163
3164 if (RHSBlock) {
3165 if (badCFG)
3166 return NULL;
3167
3168 // If RHS expression did produce destructors we need to connect created
3169 // blocks to CFG in same manner as for binary operator itself.
3170 CFGBlock *LHSBlock = createBlock(false);
3171 LHSBlock->setTerminator(CFGTerminator(E, true));
3172
3173 // For binary operator LHS block is before RHS in list of predecessors
3174 // of ConfluenceBlock.
3175 std::reverse(ConfluenceBlock->pred_begin(),
3176 ConfluenceBlock->pred_end());
3177
3178 // See if this is a known constant.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003179 TryResult KnownVal = tryEvaluateBool(E->getLHS());
Marcin Swiderski8599e762010-11-03 06:19:35 +00003180 if (KnownVal.isKnown() && (E->getOpcode() == BO_LOr))
3181 KnownVal.negate();
3182
3183 // Link LHSBlock with RHSBlock exactly the same way as for binary operator
3184 // itself.
3185 if (E->getOpcode() == BO_LOr) {
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003186 addSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock);
3187 addSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock);
Marcin Swiderski8599e762010-11-03 06:19:35 +00003188 } else {
3189 assert (E->getOpcode() == BO_LAnd);
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003190 addSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock);
3191 addSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock);
Marcin Swiderski8599e762010-11-03 06:19:35 +00003192 }
3193
3194 Block = LHSBlock;
3195 return LHSBlock;
3196 }
3197
3198 Block = ConfluenceBlock;
3199 return ConfluenceBlock;
3200 }
3201
Zhanyong Wan36f327c2010-11-22 19:32:14 +00003202 if (E->isAssignmentOp()) {
Marcin Swiderski8599e762010-11-03 06:19:35 +00003203 // For assignment operator (=) LHS expression is visited
3204 // before RHS expression. For destructors visit them in reverse order.
3205 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS());
3206 CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS());
3207 return LHSBlock ? LHSBlock : RHSBlock;
3208 }
3209
3210 // For any other binary operator RHS expression is visited before
3211 // LHS expression (order of children). For destructors visit them in reverse
3212 // order.
3213 CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS());
3214 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS());
3215 return RHSBlock ? RHSBlock : LHSBlock;
3216}
3217
3218CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors(
3219 CXXBindTemporaryExpr *E, bool BindToTemporary) {
3220 // First add destructors for temporaries in subexpression.
3221 CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr());
Zhongxing Xu249c9452010-11-14 15:23:50 +00003222 if (!BindToTemporary) {
Marcin Swiderski8599e762010-11-03 06:19:35 +00003223 // If lifetime of temporary is not prolonged (by assigning to constant
3224 // reference) add destructor for it.
Chandler Carruthc8cfc742011-09-13 06:09:01 +00003225
3226 // If the destructor is marked as a no-return destructor, we need to create
3227 // a new block for the destructor which does not have as a successor
3228 // anything built thus far. Control won't flow out of this block.
3229 const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor();
Richard Smithcd8ab512013-01-17 01:30:42 +00003230 if (Dtor->isNoReturn())
Chandler Carruthdba3fb52011-09-13 09:13:49 +00003231 Block = createNoReturnBlock();
3232 else
Chandler Carruthc8cfc742011-09-13 06:09:01 +00003233 autoCreateBlock();
Chandler Carruthc8cfc742011-09-13 06:09:01 +00003234
Marcin Swiderski8599e762010-11-03 06:19:35 +00003235 appendTemporaryDtor(Block, E);
3236 B = Block;
3237 }
3238 return B;
3239}
3240
3241CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors(
John McCall56ca35d2011-02-17 10:25:35 +00003242 AbstractConditionalOperator *E, bool BindToTemporary) {
Marcin Swiderski8599e762010-11-03 06:19:35 +00003243 // First add destructors for condition expression. Even if this will
3244 // unnecessarily create a block, this block will be used at least by the full
3245 // expression.
3246 autoCreateBlock();
3247 CFGBlock *ConfluenceBlock = VisitForTemporaryDtors(E->getCond());
3248 if (badCFG)
3249 return NULL;
John McCall56ca35d2011-02-17 10:25:35 +00003250 if (BinaryConditionalOperator *BCO
3251 = dyn_cast<BinaryConditionalOperator>(E)) {
3252 ConfluenceBlock = VisitForTemporaryDtors(BCO->getCommon());
Marcin Swiderski8599e762010-11-03 06:19:35 +00003253 if (badCFG)
3254 return NULL;
3255 }
3256
John McCall56ca35d2011-02-17 10:25:35 +00003257 // Try to add block with destructors for LHS expression.
3258 CFGBlock *LHSBlock = NULL;
3259 Succ = ConfluenceBlock;
3260 Block = NULL;
3261 LHSBlock = VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary);
3262 if (badCFG)
3263 return NULL;
3264
Marcin Swiderski8599e762010-11-03 06:19:35 +00003265 // Try to add block with destructors for RHS expression;
3266 Succ = ConfluenceBlock;
3267 Block = NULL;
John McCall56ca35d2011-02-17 10:25:35 +00003268 CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getFalseExpr(),
3269 BindToTemporary);
Marcin Swiderski8599e762010-11-03 06:19:35 +00003270 if (badCFG)
3271 return NULL;
3272
3273 if (!RHSBlock && !LHSBlock) {
3274 // If neither LHS nor RHS expression had temporaries to destroy don't create
3275 // more blocks.
3276 Block = ConfluenceBlock;
3277 return Block;
3278 }
3279
3280 Block = createBlock(false);
3281 Block->setTerminator(CFGTerminator(E, true));
3282
3283 // See if this is a known constant.
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003284 const TryResult &KnownVal = tryEvaluateBool(E->getCond());
Marcin Swiderski8599e762010-11-03 06:19:35 +00003285
3286 if (LHSBlock) {
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003287 addSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock);
Marcin Swiderski8599e762010-11-03 06:19:35 +00003288 } else if (KnownVal.isFalse()) {
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003289 addSuccessor(Block, NULL);
Marcin Swiderski8599e762010-11-03 06:19:35 +00003290 } else {
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003291 addSuccessor(Block, ConfluenceBlock);
Marcin Swiderski8599e762010-11-03 06:19:35 +00003292 std::reverse(ConfluenceBlock->pred_begin(), ConfluenceBlock->pred_end());
3293 }
3294
3295 if (!RHSBlock)
3296 RHSBlock = ConfluenceBlock;
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003297 addSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock);
Marcin Swiderski8599e762010-11-03 06:19:35 +00003298
3299 return Block;
3300}
3301
Ted Kremenekbefef2f2007-08-23 21:26:19 +00003302} // end anonymous namespace
Ted Kremenek026473c2007-08-23 16:51:22 +00003303
Mike Stump6d9828c2009-07-17 01:31:16 +00003304/// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has
3305/// no successors or predecessors. If this is the first block created in the
3306/// CFG, it is automatically set to be the Entry and Exit of the CFG.
Ted Kremenek9c378f72011-08-12 23:37:29 +00003307CFGBlock *CFG::createBlock() {
Ted Kremenek026473c2007-08-23 16:51:22 +00003308 bool first_block = begin() == end();
3309
3310 // Create the block.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00003311 CFGBlock *Mem = getAllocator().Allocate<CFGBlock>();
Anna Zaks02f34c52011-12-05 21:33:11 +00003312 new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this);
Ted Kremenekee82d9b2009-10-12 20:55:07 +00003313 Blocks.push_back(Mem, BlkBVC);
Ted Kremenek026473c2007-08-23 16:51:22 +00003314
3315 // If this is the first block, set it as the Entry and Exit.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00003316 if (first_block)
3317 Entry = Exit = &back();
Ted Kremenek026473c2007-08-23 16:51:22 +00003318
3319 // Return the block.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00003320 return &back();
Ted Kremenekfddd5182007-08-21 21:42:03 +00003321}
3322
Ted Kremenek026473c2007-08-23 16:51:22 +00003323/// buildCFG - Constructs a CFG from an AST. Ownership of the returned
3324/// CFG is returned to the caller.
Ted Kremenek9c378f72011-08-12 23:37:29 +00003325CFG* CFG::buildCFG(const Decl *D, Stmt *Statement, ASTContext *C,
Ted Kremenekb8ad5ee2011-03-10 01:14:05 +00003326 const BuildOptions &BO) {
3327 CFGBuilder Builder(C, BO);
3328 return Builder.buildCFG(D, Statement);
Ted Kremenek026473c2007-08-23 16:51:22 +00003329}
3330
Ted Kremenekc5aff442011-03-03 01:21:32 +00003331const CXXDestructorDecl *
3332CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const {
Ted Kremenekc9f8f5a2011-03-02 20:32:29 +00003333 switch (getKind()) {
3334 case CFGElement::Invalid:
3335 case CFGElement::Statement:
3336 case CFGElement::Initializer:
3337 llvm_unreachable("getDestructorDecl should only be used with "
3338 "ImplicitDtors");
3339 case CFGElement::AutomaticObjectDtor: {
3340 const VarDecl *var = cast<CFGAutomaticObjDtor>(this)->getVarDecl();
3341 QualType ty = var->getType();
Ted Kremenek697d42d2011-03-03 01:01:03 +00003342 ty = ty.getNonReferenceType();
Ted Kremenek4cf22532012-03-19 23:48:41 +00003343 while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) {
Ted Kremenekc5aff442011-03-03 01:21:32 +00003344 ty = arrayType->getElementType();
3345 }
Ted Kremenekc9f8f5a2011-03-02 20:32:29 +00003346 const RecordType *recordType = ty->getAs<RecordType>();
3347 const CXXRecordDecl *classDecl =
Ted Kremenek697d42d2011-03-03 01:01:03 +00003348 cast<CXXRecordDecl>(recordType->getDecl());
Ted Kremenekc9f8f5a2011-03-02 20:32:29 +00003349 return classDecl->getDestructor();
3350 }
3351 case CFGElement::TemporaryDtor: {
3352 const CXXBindTemporaryExpr *bindExpr =
3353 cast<CFGTemporaryDtor>(this)->getBindTemporaryExpr();
3354 const CXXTemporary *temp = bindExpr->getTemporary();
3355 return temp->getDestructor();
3356 }
3357 case CFGElement::BaseDtor:
3358 case CFGElement::MemberDtor:
3359
3360 // Not yet supported.
3361 return 0;
3362 }
Ted Kremenek697d42d2011-03-03 01:01:03 +00003363 llvm_unreachable("getKind() returned bogus value");
Ted Kremenekc9f8f5a2011-03-02 20:32:29 +00003364}
3365
Ted Kremenekc5aff442011-03-03 01:21:32 +00003366bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const {
Richard Smithcd8ab512013-01-17 01:30:42 +00003367 if (const CXXDestructorDecl *DD = getDestructorDecl(astContext))
3368 return DD->isNoReturn();
Ted Kremenekc9f8f5a2011-03-02 20:32:29 +00003369 return false;
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003370}
3371
Ted Kremenek63f58872007-10-01 19:33:33 +00003372//===----------------------------------------------------------------------===//
3373// CFG: Queries for BlkExprs.
3374//===----------------------------------------------------------------------===//
Ted Kremenek7dba8602007-08-29 21:56:09 +00003375
Ted Kremenek63f58872007-10-01 19:33:33 +00003376namespace {
Ted Kremenek86946742008-01-17 20:48:37 +00003377 typedef llvm::DenseMap<const Stmt*,unsigned> BlkExprMapTy;
Ted Kremenek63f58872007-10-01 19:33:33 +00003378}
3379
Ted Kremenekf1d10d92011-08-23 23:05:04 +00003380static void FindSubExprAssignments(const Stmt *S,
3381 llvm::SmallPtrSet<const Expr*,50>& Set) {
Ted Kremenek8a693662009-12-23 23:37:10 +00003382 if (!S)
Ted Kremenek33d4aab2008-01-26 00:03:27 +00003383 return;
Mike Stump6d9828c2009-07-17 01:31:16 +00003384
Ted Kremenekf1d10d92011-08-23 23:05:04 +00003385 for (Stmt::const_child_range I = S->children(); I; ++I) {
3386 const Stmt *child = *I;
Ted Kremenek8a693662009-12-23 23:37:10 +00003387 if (!child)
3388 continue;
Ted Kremenekad5a8942010-08-02 23:46:59 +00003389
Ted Kremenekf1d10d92011-08-23 23:05:04 +00003390 if (const BinaryOperator* B = dyn_cast<BinaryOperator>(child))
Ted Kremenek33d4aab2008-01-26 00:03:27 +00003391 if (B->isAssignmentOp()) Set.insert(B);
Mike Stump6d9828c2009-07-17 01:31:16 +00003392
Ted Kremenek8a693662009-12-23 23:37:10 +00003393 FindSubExprAssignments(child, Set);
Ted Kremenek33d4aab2008-01-26 00:03:27 +00003394 }
3395}
3396
Ted Kremenek63f58872007-10-01 19:33:33 +00003397static BlkExprMapTy* PopulateBlkExprMap(CFG& cfg) {
3398 BlkExprMapTy* M = new BlkExprMapTy();
Mike Stump6d9828c2009-07-17 01:31:16 +00003399
3400 // Look for assignments that are used as subexpressions. These are the only
3401 // assignments that we want to *possibly* register as a block-level
3402 // expression. Basically, if an assignment occurs both in a subexpression and
3403 // at the block-level, it is a block-level expression.
Ted Kremenekf1d10d92011-08-23 23:05:04 +00003404 llvm::SmallPtrSet<const Expr*,50> SubExprAssignments;
Mike Stump6d9828c2009-07-17 01:31:16 +00003405
Ted Kremenek63f58872007-10-01 19:33:33 +00003406 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I)
Ted Kremenekee82d9b2009-10-12 20:55:07 +00003407 for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI)
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003408 if (const CFGStmt *S = BI->getAs<CFGStmt>())
3409 FindSubExprAssignments(S->getStmt(), SubExprAssignments);
Ted Kremenek86946742008-01-17 20:48:37 +00003410
Ted Kremenek411cdee2008-04-16 21:10:48 +00003411 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) {
Mike Stump6d9828c2009-07-17 01:31:16 +00003412
3413 // Iterate over the statements again on identify the Expr* and Stmt* at the
3414 // block-level that are block-level expressions.
Ted Kremenek411cdee2008-04-16 21:10:48 +00003415
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00003416 for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI) {
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003417 const CFGStmt *CS = BI->getAs<CFGStmt>();
3418 if (!CS)
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00003419 continue;
Ted Kremenekf1d10d92011-08-23 23:05:04 +00003420 if (const Expr *Exp = dyn_cast<Expr>(CS->getStmt())) {
Jordy Roseac73ea82011-06-10 08:49:37 +00003421 assert((Exp->IgnoreParens() == Exp) && "No parens on block-level exps");
Mike Stump6d9828c2009-07-17 01:31:16 +00003422
Ted Kremenekf1d10d92011-08-23 23:05:04 +00003423 if (const BinaryOperator* B = dyn_cast<BinaryOperator>(Exp)) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00003424 // Assignment expressions that are not nested within another
Mike Stump6d9828c2009-07-17 01:31:16 +00003425 // expression are really "statements" whose value is never used by
3426 // another expression.
Ted Kremenek411cdee2008-04-16 21:10:48 +00003427 if (B->isAssignmentOp() && !SubExprAssignments.count(Exp))
Ted Kremenek33d4aab2008-01-26 00:03:27 +00003428 continue;
Ted Kremenek9c378f72011-08-12 23:37:29 +00003429 } else if (const StmtExpr *SE = dyn_cast<StmtExpr>(Exp)) {
Mike Stump6d9828c2009-07-17 01:31:16 +00003430 // Special handling for statement expressions. The last statement in
3431 // the statement expression is also a block-level expr.
Ted Kremenek9c378f72011-08-12 23:37:29 +00003432 const CompoundStmt *C = SE->getSubStmt();
Ted Kremenek86946742008-01-17 20:48:37 +00003433 if (!C->body_empty()) {
Jordy Roseac73ea82011-06-10 08:49:37 +00003434 const Stmt *Last = C->body_back();
3435 if (const Expr *LastEx = dyn_cast<Expr>(Last))
3436 Last = LastEx->IgnoreParens();
Ted Kremenek33d4aab2008-01-26 00:03:27 +00003437 unsigned x = M->size();
Jordy Roseac73ea82011-06-10 08:49:37 +00003438 (*M)[Last] = x;
Ted Kremenek86946742008-01-17 20:48:37 +00003439 }
3440 }
Ted Kremeneke2dcd782008-01-25 23:22:27 +00003441
Ted Kremenek33d4aab2008-01-26 00:03:27 +00003442 unsigned x = M->size();
Ted Kremenek411cdee2008-04-16 21:10:48 +00003443 (*M)[Exp] = x;
Ted Kremenek33d4aab2008-01-26 00:03:27 +00003444 }
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00003445 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003446
Ted Kremenek411cdee2008-04-16 21:10:48 +00003447 // Look at terminators. The condition is a block-level expression.
Mike Stump6d9828c2009-07-17 01:31:16 +00003448
Ted Kremenek9c378f72011-08-12 23:37:29 +00003449 Stmt *S = (*I)->getTerminatorCondition();
Mike Stump6d9828c2009-07-17 01:31:16 +00003450
Ted Kremenek390e48b2008-11-12 21:11:49 +00003451 if (S && M->find(S) == M->end()) {
Jordy Roseac73ea82011-06-10 08:49:37 +00003452 unsigned x = M->size();
3453 (*M)[S] = x;
Ted Kremenek411cdee2008-04-16 21:10:48 +00003454 }
3455 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003456
Ted Kremenek63f58872007-10-01 19:33:33 +00003457 return M;
3458}
3459
Ted Kremenek9c378f72011-08-12 23:37:29 +00003460CFG::BlkExprNumTy CFG::getBlkExprNum(const Stmt *S) {
Ted Kremenek86946742008-01-17 20:48:37 +00003461 assert(S != NULL);
Ted Kremenek63f58872007-10-01 19:33:33 +00003462 if (!BlkExprMap) { BlkExprMap = (void*) PopulateBlkExprMap(*this); }
Mike Stump6d9828c2009-07-17 01:31:16 +00003463
Ted Kremenek63f58872007-10-01 19:33:33 +00003464 BlkExprMapTy* M = reinterpret_cast<BlkExprMapTy*>(BlkExprMap);
Ted Kremenek86946742008-01-17 20:48:37 +00003465 BlkExprMapTy::iterator I = M->find(S);
Ted Kremenek3fa1e4b2010-01-19 20:52:05 +00003466 return (I == M->end()) ? CFG::BlkExprNumTy() : CFG::BlkExprNumTy(I->second);
Ted Kremenek63f58872007-10-01 19:33:33 +00003467}
3468
3469unsigned CFG::getNumBlkExprs() {
3470 if (const BlkExprMapTy* M = reinterpret_cast<const BlkExprMapTy*>(BlkExprMap))
3471 return M->size();
Zhanyong Wan36f327c2010-11-22 19:32:14 +00003472
3473 // We assume callers interested in the number of BlkExprs will want
3474 // the map constructed if it doesn't already exist.
3475 BlkExprMap = (void*) PopulateBlkExprMap(*this);
3476 return reinterpret_cast<BlkExprMapTy*>(BlkExprMap)->size();
Ted Kremenek63f58872007-10-01 19:33:33 +00003477}
3478
Ted Kremenek274f4332008-04-28 18:00:46 +00003479//===----------------------------------------------------------------------===//
Ted Kremenekee7f84d2010-09-09 00:06:04 +00003480// Filtered walking of the CFG.
3481//===----------------------------------------------------------------------===//
3482
3483bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F,
Ted Kremenekbe39a562010-09-09 02:57:48 +00003484 const CFGBlock *From, const CFGBlock *To) {
Ted Kremenekee7f84d2010-09-09 00:06:04 +00003485
Ted Kremenek6e400352011-03-07 22:04:39 +00003486 if (To && F.IgnoreDefaultsWithCoveredEnums) {
Ted Kremenekee7f84d2010-09-09 00:06:04 +00003487 // If the 'To' has no label or is labeled but the label isn't a
3488 // CaseStmt then filter this edge.
3489 if (const SwitchStmt *S =
Ted Kremenek6e400352011-03-07 22:04:39 +00003490 dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) {
Ted Kremenekee7f84d2010-09-09 00:06:04 +00003491 if (S->isAllEnumCasesCovered()) {
Ted Kremenek6e400352011-03-07 22:04:39 +00003492 const Stmt *L = To->getLabel();
3493 if (!L || !isa<CaseStmt>(L))
3494 return true;
Ted Kremenekee7f84d2010-09-09 00:06:04 +00003495 }
3496 }
3497 }
3498
3499 return false;
3500}
3501
3502//===----------------------------------------------------------------------===//
Ted Kremenek274f4332008-04-28 18:00:46 +00003503// Cleanup: CFG dstor.
3504//===----------------------------------------------------------------------===//
3505
Ted Kremenek63f58872007-10-01 19:33:33 +00003506CFG::~CFG() {
3507 delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap);
3508}
Mike Stump6d9828c2009-07-17 01:31:16 +00003509
Ted Kremenek7dba8602007-08-29 21:56:09 +00003510//===----------------------------------------------------------------------===//
3511// CFG pretty printing
3512//===----------------------------------------------------------------------===//
3513
Ted Kremeneke8ee26b2007-08-22 18:22:34 +00003514namespace {
3515
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +00003516class StmtPrinterHelper : public PrinterHelper {
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003517 typedef llvm::DenseMap<const Stmt*,std::pair<unsigned,unsigned> > StmtMapTy;
3518 typedef llvm::DenseMap<const Decl*,std::pair<unsigned,unsigned> > DeclMapTy;
Ted Kremenek42a509f2007-08-31 21:30:12 +00003519 StmtMapTy StmtMap;
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003520 DeclMapTy DeclMap;
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003521 signed currentBlock;
Ted Kremenek66c486f2012-08-22 06:26:15 +00003522 unsigned currStmt;
Chris Lattnere4f21422009-06-30 01:26:17 +00003523 const LangOptions &LangOpts;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003524public:
Ted Kremenek1c29bba2007-08-31 22:26:13 +00003525
Chris Lattnere4f21422009-06-30 01:26:17 +00003526 StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
Ted Kremenek66c486f2012-08-22 06:26:15 +00003527 : currentBlock(0), currStmt(0), LangOpts(LO)
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003528 {
Ted Kremenek42a509f2007-08-31 21:30:12 +00003529 for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
3530 unsigned j = 1;
Ted Kremenekee82d9b2009-10-12 20:55:07 +00003531 for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ;
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003532 BI != BEnd; ++BI, ++j ) {
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003533 if (const CFGStmt *SE = BI->getAs<CFGStmt>()) {
3534 const Stmt *stmt= SE->getStmt();
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003535 std::pair<unsigned, unsigned> P((*I)->getBlockID(), j);
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003536 StmtMap[stmt] = P;
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003537
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003538 switch (stmt->getStmtClass()) {
3539 case Stmt::DeclStmtClass:
3540 DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P;
3541 break;
3542 case Stmt::IfStmtClass: {
3543 const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable();
3544 if (var)
3545 DeclMap[var] = P;
3546 break;
3547 }
3548 case Stmt::ForStmtClass: {
3549 const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable();
3550 if (var)
3551 DeclMap[var] = P;
3552 break;
3553 }
3554 case Stmt::WhileStmtClass: {
3555 const VarDecl *var =
3556 cast<WhileStmt>(stmt)->getConditionVariable();
3557 if (var)
3558 DeclMap[var] = P;
3559 break;
3560 }
3561 case Stmt::SwitchStmtClass: {
3562 const VarDecl *var =
3563 cast<SwitchStmt>(stmt)->getConditionVariable();
3564 if (var)
3565 DeclMap[var] = P;
3566 break;
3567 }
3568 case Stmt::CXXCatchStmtClass: {
3569 const VarDecl *var =
3570 cast<CXXCatchStmt>(stmt)->getExceptionDecl();
3571 if (var)
3572 DeclMap[var] = P;
3573 break;
3574 }
3575 default:
3576 break;
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003577 }
3578 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00003579 }
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00003580 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00003581 }
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003582
Mike Stump6d9828c2009-07-17 01:31:16 +00003583
Ted Kremenek42a509f2007-08-31 21:30:12 +00003584 virtual ~StmtPrinterHelper() {}
Mike Stump6d9828c2009-07-17 01:31:16 +00003585
Chris Lattnere4f21422009-06-30 01:26:17 +00003586 const LangOptions &getLangOpts() const { return LangOpts; }
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003587 void setBlockID(signed i) { currentBlock = i; }
Ted Kremenek66c486f2012-08-22 06:26:15 +00003588 void setStmtID(unsigned i) { currStmt = i; }
Mike Stump6d9828c2009-07-17 01:31:16 +00003589
Ted Kremenek9c378f72011-08-12 23:37:29 +00003590 virtual bool handledStmt(Stmt *S, raw_ostream &OS) {
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003591 StmtMapTy::iterator I = StmtMap.find(S);
Ted Kremenek42a509f2007-08-31 21:30:12 +00003592
3593 if (I == StmtMap.end())
3594 return false;
Mike Stump6d9828c2009-07-17 01:31:16 +00003595
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003596 if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
Ted Kremenek66c486f2012-08-22 06:26:15 +00003597 && I->second.second == currStmt) {
Ted Kremenek42a509f2007-08-31 21:30:12 +00003598 return false;
Ted Kremenek3fa1e4b2010-01-19 20:52:05 +00003599 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003600
Ted Kremenek3fa1e4b2010-01-19 20:52:05 +00003601 OS << "[B" << I->second.first << "." << I->second.second << "]";
Ted Kremenek1c29bba2007-08-31 22:26:13 +00003602 return true;
Ted Kremenek42a509f2007-08-31 21:30:12 +00003603 }
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003604
Ted Kremenek9c378f72011-08-12 23:37:29 +00003605 bool handleDecl(const Decl *D, raw_ostream &OS) {
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003606 DeclMapTy::iterator I = DeclMap.find(D);
3607
3608 if (I == DeclMap.end())
3609 return false;
3610
Ted Kremenek0a3ed312010-12-17 04:44:39 +00003611 if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
Ted Kremenek66c486f2012-08-22 06:26:15 +00003612 && I->second.second == currStmt) {
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003613 return false;
3614 }
3615
3616 OS << "[B" << I->second.first << "." << I->second.second << "]";
3617 return true;
3618 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00003619};
Chris Lattnere4f21422009-06-30 01:26:17 +00003620} // end anonymous namespace
Ted Kremenek42a509f2007-08-31 21:30:12 +00003621
Chris Lattnere4f21422009-06-30 01:26:17 +00003622
3623namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +00003624class CFGBlockTerminatorPrint
Ted Kremenek6fa9b882008-01-08 18:15:10 +00003625 : public StmtVisitor<CFGBlockTerminatorPrint,void> {
Mike Stump6d9828c2009-07-17 01:31:16 +00003626
Ted Kremenek9c378f72011-08-12 23:37:29 +00003627 raw_ostream &OS;
Ted Kremenek42a509f2007-08-31 21:30:12 +00003628 StmtPrinterHelper* Helper;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00003629 PrintingPolicy Policy;
Ted Kremenek42a509f2007-08-31 21:30:12 +00003630public:
Ted Kremenek9c378f72011-08-12 23:37:29 +00003631 CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper,
Chris Lattnere4f21422009-06-30 01:26:17 +00003632 const PrintingPolicy &Policy)
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00003633 : OS(os), Helper(helper), Policy(Policy) {}
Mike Stump6d9828c2009-07-17 01:31:16 +00003634
Ted Kremenek9c378f72011-08-12 23:37:29 +00003635 void VisitIfStmt(IfStmt *I) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003636 OS << "if ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00003637 I->getCond()->printPretty(OS,Helper,Policy);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003638 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003639
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003640 // Default case.
Ted Kremenek9c378f72011-08-12 23:37:29 +00003641 void VisitStmt(Stmt *Terminator) {
Mike Stump6d9828c2009-07-17 01:31:16 +00003642 Terminator->printPretty(OS, Helper, Policy);
3643 }
3644
Ted Kremenek9c378f72011-08-12 23:37:29 +00003645 void VisitForStmt(ForStmt *F) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003646 OS << "for (" ;
Ted Kremenek3fa1e4b2010-01-19 20:52:05 +00003647 if (F->getInit())
3648 OS << "...";
Ted Kremenek535bb202007-08-30 21:28:02 +00003649 OS << "; ";
Ted Kremenek9c378f72011-08-12 23:37:29 +00003650 if (Stmt *C = F->getCond())
Ted Kremenek3fa1e4b2010-01-19 20:52:05 +00003651 C->printPretty(OS, Helper, Policy);
Ted Kremenek535bb202007-08-30 21:28:02 +00003652 OS << "; ";
Ted Kremenek3fa1e4b2010-01-19 20:52:05 +00003653 if (F->getInc())
3654 OS << "...";
Ted Kremeneka2925852008-01-30 23:02:42 +00003655 OS << ")";
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003656 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003657
Ted Kremenek9c378f72011-08-12 23:37:29 +00003658 void VisitWhileStmt(WhileStmt *W) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003659 OS << "while " ;
Ted Kremenek9c378f72011-08-12 23:37:29 +00003660 if (Stmt *C = W->getCond())
Ted Kremenek3fa1e4b2010-01-19 20:52:05 +00003661 C->printPretty(OS, Helper, Policy);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003662 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003663
Ted Kremenek9c378f72011-08-12 23:37:29 +00003664 void VisitDoStmt(DoStmt *D) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003665 OS << "do ... while ";
Ted Kremenek9c378f72011-08-12 23:37:29 +00003666 if (Stmt *C = D->getCond())
Ted Kremenek3fa1e4b2010-01-19 20:52:05 +00003667 C->printPretty(OS, Helper, Policy);
Ted Kremenek9da2fb72007-08-27 21:27:44 +00003668 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003669
Ted Kremenek9c378f72011-08-12 23:37:29 +00003670 void VisitSwitchStmt(SwitchStmt *Terminator) {
Ted Kremenek9da2fb72007-08-27 21:27:44 +00003671 OS << "switch ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00003672 Terminator->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek9da2fb72007-08-27 21:27:44 +00003673 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003674
Ted Kremenek9c378f72011-08-12 23:37:29 +00003675 void VisitCXXTryStmt(CXXTryStmt *CS) {
Mike Stump5d1d2022010-01-19 02:20:09 +00003676 OS << "try ...";
3677 }
3678
John McCall56ca35d2011-02-17 10:25:35 +00003679 void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) {
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00003680 C->getCond()->printPretty(OS, Helper, Policy);
Mike Stump6d9828c2009-07-17 01:31:16 +00003681 OS << " ? ... : ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00003682 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003683
Ted Kremenek9c378f72011-08-12 23:37:29 +00003684 void VisitChooseExpr(ChooseExpr *C) {
Ted Kremenekaeddbf62007-08-31 22:29:13 +00003685 OS << "__builtin_choose_expr( ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00003686 C->getCond()->printPretty(OS, Helper, Policy);
Ted Kremeneka2925852008-01-30 23:02:42 +00003687 OS << " )";
Ted Kremenekaeddbf62007-08-31 22:29:13 +00003688 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003689
Ted Kremenek9c378f72011-08-12 23:37:29 +00003690 void VisitIndirectGotoStmt(IndirectGotoStmt *I) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00003691 OS << "goto *";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00003692 I->getTarget()->printPretty(OS, Helper, Policy);
Ted Kremenek1c29bba2007-08-31 22:26:13 +00003693 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003694
Ted Kremenek805e9a82007-08-31 21:49:40 +00003695 void VisitBinaryOperator(BinaryOperator* B) {
3696 if (!B->isLogicalOp()) {
3697 VisitExpr(B);
3698 return;
3699 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003700
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00003701 B->getLHS()->printPretty(OS, Helper, Policy);
Mike Stump6d9828c2009-07-17 01:31:16 +00003702
Ted Kremenek805e9a82007-08-31 21:49:40 +00003703 switch (B->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +00003704 case BO_LOr:
Ted Kremeneka2925852008-01-30 23:02:42 +00003705 OS << " || ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00003706 return;
John McCall2de56d12010-08-25 11:45:40 +00003707 case BO_LAnd:
Ted Kremeneka2925852008-01-30 23:02:42 +00003708 OS << " && ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00003709 return;
3710 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00003711 llvm_unreachable("Invalid logical operator.");
Mike Stump6d9828c2009-07-17 01:31:16 +00003712 }
Ted Kremenek805e9a82007-08-31 21:49:40 +00003713 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003714
Ted Kremenek9c378f72011-08-12 23:37:29 +00003715 void VisitExpr(Expr *E) {
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00003716 E->printPretty(OS, Helper, Policy);
Mike Stump6d9828c2009-07-17 01:31:16 +00003717 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +00003718};
Chris Lattnere4f21422009-06-30 01:26:17 +00003719} // end anonymous namespace
3720
Chris Lattner5f9e2722011-07-23 10:55:15 +00003721static void print_elem(raw_ostream &OS, StmtPrinterHelper* Helper,
Mike Stump079bd722010-01-19 22:00:14 +00003722 const CFGElement &E) {
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003723 if (const CFGStmt *CS = E.getAs<CFGStmt>()) {
Ted Kremenekf1d10d92011-08-23 23:05:04 +00003724 const Stmt *S = CS->getStmt();
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003725
3726 if (Helper) {
Mike Stump6d9828c2009-07-17 01:31:16 +00003727
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003728 // special printing for statement-expressions.
Ted Kremenekf1d10d92011-08-23 23:05:04 +00003729 if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) {
3730 const CompoundStmt *Sub = SE->getSubStmt();
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003731
John McCall7502c1d2011-02-13 04:07:26 +00003732 if (Sub->children()) {
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003733 OS << "({ ... ; ";
3734 Helper->handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
3735 OS << " })\n";
3736 return;
3737 }
3738 }
3739 // special printing for comma expressions.
Ted Kremenekf1d10d92011-08-23 23:05:04 +00003740 if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003741 if (B->getOpcode() == BO_Comma) {
3742 OS << "... , ";
3743 Helper->handledStmt(B->getRHS(),OS);
3744 OS << '\n';
3745 return;
3746 }
Ted Kremenek1c29bba2007-08-31 22:26:13 +00003747 }
3748 }
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003749 S->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts()));
Mike Stump6d9828c2009-07-17 01:31:16 +00003750
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003751 if (isa<CXXOperatorCallExpr>(S)) {
Zhanyong Wan36f327c2010-11-22 19:32:14 +00003752 OS << " (OperatorCall)";
Ted Kremenek893d4142011-12-21 19:32:38 +00003753 }
3754 else if (isa<CXXBindTemporaryExpr>(S)) {
Zhanyong Wan36f327c2010-11-22 19:32:14 +00003755 OS << " (BindTemporary)";
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003756 }
Ted Kremenek3b7a48f2011-12-21 19:39:59 +00003757 else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) {
3758 OS << " (CXXConstructExpr, " << CCE->getType().getAsString() << ")";
3759 }
Ted Kremenek893d4142011-12-21 19:32:38 +00003760 else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) {
3761 OS << " (" << CE->getStmtClassName() << ", "
3762 << CE->getCastKindName()
3763 << ", " << CE->getType().getAsString()
3764 << ")";
3765 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003766
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003767 // Expressions need a newline.
3768 if (isa<Expr>(S))
3769 OS << '\n';
Ted Kremenek4e0cfa82010-08-31 18:47:37 +00003770
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003771 } else if (const CFGInitializer *IE = E.getAs<CFGInitializer>()) {
3772 const CXXCtorInitializer *I = IE->getInitializer();
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003773 if (I->isBaseInitializer())
3774 OS << I->getBaseClass()->getAsCXXRecordDecl()->getName();
Francois Pichet00eb3f92010-12-04 09:14:42 +00003775 else OS << I->getAnyMember()->getName();
Mike Stump6d9828c2009-07-17 01:31:16 +00003776
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003777 OS << "(";
Ted Kremenek9c378f72011-08-12 23:37:29 +00003778 if (Expr *IE = I->getInit())
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003779 IE->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts()));
3780 OS << ")";
3781
3782 if (I->isBaseInitializer())
3783 OS << " (Base initializer)\n";
3784 else OS << " (Member initializer)\n";
3785
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003786 } else if (const CFGAutomaticObjDtor *DE = E.getAs<CFGAutomaticObjDtor>()){
Ted Kremenek9c378f72011-08-12 23:37:29 +00003787 const VarDecl *VD = DE->getVarDecl();
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003788 Helper->handleDecl(VD, OS);
3789
Marcin Swiderskib1c52872010-10-25 07:00:40 +00003790 const Type* T = VD->getType().getTypePtr();
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003791 if (const ReferenceType* RT = T->getAs<ReferenceType>())
3792 T = RT->getPointeeType().getTypePtr();
Richard Smith56df4a92012-07-24 21:02:14 +00003793 T = T->getBaseElementTypeUnsafe();
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003794
3795 OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()";
3796 OS << " (Implicit destructor)\n";
Marcin Swiderski7c625d82010-10-05 05:37:00 +00003797
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003798 } else if (const CFGBaseDtor *BE = E.getAs<CFGBaseDtor>()) {
3799 const CXXBaseSpecifier *BS = BE->getBaseSpecifier();
Marcin Swiderski7c625d82010-10-05 05:37:00 +00003800 OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()";
Zhongxing Xu4e493e02010-10-05 08:38:06 +00003801 OS << " (Base object destructor)\n";
Marcin Swiderski7c625d82010-10-05 05:37:00 +00003802
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003803 } else if (const CFGMemberDtor *ME = E.getAs<CFGMemberDtor>()) {
3804 const FieldDecl *FD = ME->getFieldDecl();
Richard Smith56df4a92012-07-24 21:02:14 +00003805 const Type *T = FD->getType()->getBaseElementTypeUnsafe();
Marcin Swiderski7c625d82010-10-05 05:37:00 +00003806 OS << "this->" << FD->getName();
Marcin Swiderski8c5e5d62010-10-25 07:05:54 +00003807 OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()";
Zhongxing Xu4e493e02010-10-05 08:38:06 +00003808 OS << " (Member object destructor)\n";
Marcin Swiderski8599e762010-11-03 06:19:35 +00003809
Ted Kremenek3c0349e2011-03-01 03:15:10 +00003810 } else if (const CFGTemporaryDtor *TE = E.getAs<CFGTemporaryDtor>()) {
3811 const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr();
Marcin Swiderski8599e762010-11-03 06:19:35 +00003812 OS << "~" << BT->getType()->getAsCXXRecordDecl()->getName() << "()";
3813 OS << " (Temporary object destructor)\n";
Marcin Swiderski1cff1322010-09-21 05:58:15 +00003814 }
Zhongxing Xu81bc7d02010-11-01 06:46:05 +00003815}
Mike Stump6d9828c2009-07-17 01:31:16 +00003816
Ted Kremenek9c378f72011-08-12 23:37:29 +00003817static void print_block(raw_ostream &OS, const CFG* cfg,
3818 const CFGBlock &B,
Ted Kremenek682060c2011-12-22 23:33:52 +00003819 StmtPrinterHelper* Helper, bool print_edges,
3820 bool ShowColors) {
Mike Stump6d9828c2009-07-17 01:31:16 +00003821
Ted Kremenek682060c2011-12-22 23:33:52 +00003822 if (Helper)
3823 Helper->setBlockID(B.getBlockID());
Mike Stump6d9828c2009-07-17 01:31:16 +00003824
Ted Kremenek7dba8602007-08-29 21:56:09 +00003825 // Print the header.
Ted Kremenek682060c2011-12-22 23:33:52 +00003826 if (ShowColors)
3827 OS.changeColor(raw_ostream::YELLOW, true);
3828
3829 OS << "\n [B" << B.getBlockID();
Mike Stump6d9828c2009-07-17 01:31:16 +00003830
Ted Kremenek42a509f2007-08-31 21:30:12 +00003831 if (&B == &cfg->getEntry())
Ted Kremenek682060c2011-12-22 23:33:52 +00003832 OS << " (ENTRY)]\n";
Ted Kremenek42a509f2007-08-31 21:30:12 +00003833 else if (&B == &cfg->getExit())
Ted Kremenek682060c2011-12-22 23:33:52 +00003834 OS << " (EXIT)]\n";
Ted Kremenek42a509f2007-08-31 21:30:12 +00003835 else if (&B == cfg->getIndirectGotoBlock())
Ted Kremenek682060c2011-12-22 23:33:52 +00003836 OS << " (INDIRECT GOTO DISPATCH)]\n";
Ted Kremenek42a509f2007-08-31 21:30:12 +00003837 else
Ted Kremenek682060c2011-12-22 23:33:52 +00003838 OS << "]\n";
3839
3840 if (ShowColors)
3841 OS.resetColor();
Mike Stump6d9828c2009-07-17 01:31:16 +00003842
Ted Kremenek9cffe732007-08-29 23:20:49 +00003843 // Print the label of this block.
Ted Kremenek9c378f72011-08-12 23:37:29 +00003844 if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) {
Ted Kremenek42a509f2007-08-31 21:30:12 +00003845
3846 if (print_edges)
Ted Kremenek682060c2011-12-22 23:33:52 +00003847 OS << " ";
Mike Stump6d9828c2009-07-17 01:31:16 +00003848
Ted Kremenek9c378f72011-08-12 23:37:29 +00003849 if (LabelStmt *L = dyn_cast<LabelStmt>(Label))
Ted Kremenek9cffe732007-08-29 23:20:49 +00003850 OS << L->getName();
Ted Kremenek9c378f72011-08-12 23:37:29 +00003851 else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) {
Ted Kremenek9cffe732007-08-29 23:20:49 +00003852 OS << "case ";
Chris Lattnere4f21422009-06-30 01:26:17 +00003853 C->getLHS()->printPretty(OS, Helper,
3854 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek9cffe732007-08-29 23:20:49 +00003855 if (C->getRHS()) {
3856 OS << " ... ";
Chris Lattnere4f21422009-06-30 01:26:17 +00003857 C->getRHS()->printPretty(OS, Helper,
3858 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek9cffe732007-08-29 23:20:49 +00003859 }
Mike Stump079bd722010-01-19 22:00:14 +00003860 } else if (isa<DefaultStmt>(Label))
Ted Kremenek9cffe732007-08-29 23:20:49 +00003861 OS << "default";
Mike Stump079bd722010-01-19 22:00:14 +00003862 else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) {
Mike Stump5d1d2022010-01-19 02:20:09 +00003863 OS << "catch (";
Mike Stumpa1f93632010-01-20 01:15:34 +00003864 if (CS->getExceptionDecl())
3865 CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper->getLangOpts()),
3866 0);
3867 else
3868 OS << "...";
Mike Stump5d1d2022010-01-19 02:20:09 +00003869 OS << ")";
3870
3871 } else
David Blaikieb219cfc2011-09-23 05:06:16 +00003872 llvm_unreachable("Invalid label statement in CFGBlock.");
Mike Stump6d9828c2009-07-17 01:31:16 +00003873
Ted Kremenek9cffe732007-08-29 23:20:49 +00003874 OS << ":\n";
3875 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003876
Ted Kremenekfddd5182007-08-21 21:42:03 +00003877 // Iterate through the statements in the block and print them.
Ted Kremenekfddd5182007-08-21 21:42:03 +00003878 unsigned j = 1;
Mike Stump6d9828c2009-07-17 01:31:16 +00003879
Ted Kremenek42a509f2007-08-31 21:30:12 +00003880 for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
3881 I != E ; ++I, ++j ) {
Mike Stump6d9828c2009-07-17 01:31:16 +00003882
Ted Kremenek9cffe732007-08-29 23:20:49 +00003883 // Print the statement # in the basic block and the statement itself.
Ted Kremenek42a509f2007-08-31 21:30:12 +00003884 if (print_edges)
Ted Kremenek682060c2011-12-22 23:33:52 +00003885 OS << " ";
Mike Stump6d9828c2009-07-17 01:31:16 +00003886
Ted Kremeneka95d3752008-09-13 05:16:45 +00003887 OS << llvm::format("%3d", j) << ": ";
Mike Stump6d9828c2009-07-17 01:31:16 +00003888
Ted Kremenek42a509f2007-08-31 21:30:12 +00003889 if (Helper)
3890 Helper->setStmtID(j);
Mike Stump6d9828c2009-07-17 01:31:16 +00003891
Ted Kremenek682060c2011-12-22 23:33:52 +00003892 print_elem(OS, Helper, *I);
Ted Kremenekfddd5182007-08-21 21:42:03 +00003893 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003894
Ted Kremenek9cffe732007-08-29 23:20:49 +00003895 // Print the terminator of this block.
Ted Kremenek42a509f2007-08-31 21:30:12 +00003896 if (B.getTerminator()) {
Ted Kremenek682060c2011-12-22 23:33:52 +00003897 if (ShowColors)
3898 OS.changeColor(raw_ostream::GREEN);
Mike Stump6d9828c2009-07-17 01:31:16 +00003899
Ted Kremenek682060c2011-12-22 23:33:52 +00003900 OS << " T: ";
Mike Stump6d9828c2009-07-17 01:31:16 +00003901
Ted Kremenek42a509f2007-08-31 21:30:12 +00003902 if (Helper) Helper->setBlockID(-1);
Mike Stump6d9828c2009-07-17 01:31:16 +00003903
Ted Kremenek507d1062012-10-12 22:56:31 +00003904 PrintingPolicy PP(Helper ? Helper->getLangOpts() : LangOptions());
3905 CFGBlockTerminatorPrint TPrinter(OS, Helper, PP);
Marcin Swiderski4ba72a02010-10-29 05:21:47 +00003906 TPrinter.Visit(const_cast<Stmt*>(B.getTerminator().getStmt()));
Ted Kremeneka2925852008-01-30 23:02:42 +00003907 OS << '\n';
Ted Kremenek682060c2011-12-22 23:33:52 +00003908
3909 if (ShowColors)
3910 OS.resetColor();
Ted Kremenekfddd5182007-08-21 21:42:03 +00003911 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003912
Ted Kremenek9cffe732007-08-29 23:20:49 +00003913 if (print_edges) {
3914 // Print the predecessors of this block.
Ted Kremenek682060c2011-12-22 23:33:52 +00003915 if (!B.pred_empty()) {
3916 const raw_ostream::Colors Color = raw_ostream::BLUE;
3917 if (ShowColors)
3918 OS.changeColor(Color);
3919 OS << " Preds " ;
3920 if (ShowColors)
3921 OS.resetColor();
3922 OS << '(' << B.pred_size() << "):";
3923 unsigned i = 0;
Ted Kremenek9cffe732007-08-29 23:20:49 +00003924
Ted Kremenek682060c2011-12-22 23:33:52 +00003925 if (ShowColors)
3926 OS.changeColor(Color);
3927
3928 for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
3929 I != E; ++I, ++i) {
Mike Stump6d9828c2009-07-17 01:31:16 +00003930
Will Dietzdac62522013-01-07 09:51:17 +00003931 if (i % 10 == 8)
Ted Kremenek682060c2011-12-22 23:33:52 +00003932 OS << "\n ";
Mike Stump6d9828c2009-07-17 01:31:16 +00003933
Ted Kremenek682060c2011-12-22 23:33:52 +00003934 OS << " B" << (*I)->getBlockID();
3935 }
3936
3937 if (ShowColors)
3938 OS.resetColor();
3939
3940 OS << '\n';
Ted Kremenek9cffe732007-08-29 23:20:49 +00003941 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003942
Ted Kremenek42a509f2007-08-31 21:30:12 +00003943 // Print the successors of this block.
Ted Kremenek682060c2011-12-22 23:33:52 +00003944 if (!B.succ_empty()) {
3945 const raw_ostream::Colors Color = raw_ostream::MAGENTA;
3946 if (ShowColors)
3947 OS.changeColor(Color);
3948 OS << " Succs ";
3949 if (ShowColors)
3950 OS.resetColor();
3951 OS << '(' << B.succ_size() << "):";
3952 unsigned i = 0;
Ted Kremenek42a509f2007-08-31 21:30:12 +00003953
Ted Kremenek682060c2011-12-22 23:33:52 +00003954 if (ShowColors)
3955 OS.changeColor(Color);
Mike Stump6d9828c2009-07-17 01:31:16 +00003956
Ted Kremenek682060c2011-12-22 23:33:52 +00003957 for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
3958 I != E; ++I, ++i) {
Ted Kremenek42a509f2007-08-31 21:30:12 +00003959
Will Dietzdac62522013-01-07 09:51:17 +00003960 if (i % 10 == 8)
Ted Kremenek682060c2011-12-22 23:33:52 +00003961 OS << "\n ";
3962
3963 if (*I)
3964 OS << " B" << (*I)->getBlockID();
3965 else
3966 OS << " NULL";
3967 }
3968
3969 if (ShowColors)
3970 OS.resetColor();
3971 OS << '\n';
Ted Kremenek42a509f2007-08-31 21:30:12 +00003972 }
Ted Kremenekfddd5182007-08-21 21:42:03 +00003973 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003974}
Ted Kremenek42a509f2007-08-31 21:30:12 +00003975
Ted Kremenek42a509f2007-08-31 21:30:12 +00003976
3977/// dump - A simple pretty printer of a CFG that outputs to stderr.
Ted Kremenek682060c2011-12-22 23:33:52 +00003978void CFG::dump(const LangOptions &LO, bool ShowColors) const {
3979 print(llvm::errs(), LO, ShowColors);
3980}
Ted Kremenek42a509f2007-08-31 21:30:12 +00003981
3982/// print - A simple pretty printer of a CFG that outputs to an ostream.
Ted Kremenek682060c2011-12-22 23:33:52 +00003983void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const {
Chris Lattnere4f21422009-06-30 01:26:17 +00003984 StmtPrinterHelper Helper(this, LO);
Mike Stump6d9828c2009-07-17 01:31:16 +00003985
Ted Kremenek42a509f2007-08-31 21:30:12 +00003986 // Print the entry block.
Ted Kremenek682060c2011-12-22 23:33:52 +00003987 print_block(OS, this, getEntry(), &Helper, true, ShowColors);
Mike Stump6d9828c2009-07-17 01:31:16 +00003988
Ted Kremenek42a509f2007-08-31 21:30:12 +00003989 // Iterate through the CFGBlocks and print them one by one.
3990 for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
3991 // Skip the entry block, because we already printed it.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00003992 if (&(**I) == &getEntry() || &(**I) == &getExit())
Ted Kremenek42a509f2007-08-31 21:30:12 +00003993 continue;
Mike Stump6d9828c2009-07-17 01:31:16 +00003994
Ted Kremenek682060c2011-12-22 23:33:52 +00003995 print_block(OS, this, **I, &Helper, true, ShowColors);
Ted Kremenek42a509f2007-08-31 21:30:12 +00003996 }
Mike Stump6d9828c2009-07-17 01:31:16 +00003997
Ted Kremenek42a509f2007-08-31 21:30:12 +00003998 // Print the exit block.
Ted Kremenek682060c2011-12-22 23:33:52 +00003999 print_block(OS, this, getExit(), &Helper, true, ShowColors);
4000 OS << '\n';
Ted Kremenekd0172432008-11-24 20:50:24 +00004001 OS.flush();
Mike Stump6d9828c2009-07-17 01:31:16 +00004002}
Ted Kremenek42a509f2007-08-31 21:30:12 +00004003
4004/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
Ted Kremenek682060c2011-12-22 23:33:52 +00004005void CFGBlock::dump(const CFG* cfg, const LangOptions &LO,
4006 bool ShowColors) const {
4007 print(llvm::errs(), cfg, LO, ShowColors);
Chris Lattnere4f21422009-06-30 01:26:17 +00004008}
Ted Kremenek42a509f2007-08-31 21:30:12 +00004009
4010/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
4011/// Generally this will only be called from CFG::print.
Ted Kremenek9c378f72011-08-12 23:37:29 +00004012void CFGBlock::print(raw_ostream &OS, const CFG* cfg,
Ted Kremenek682060c2011-12-22 23:33:52 +00004013 const LangOptions &LO, bool ShowColors) const {
Chris Lattnere4f21422009-06-30 01:26:17 +00004014 StmtPrinterHelper Helper(cfg, LO);
Ted Kremenek682060c2011-12-22 23:33:52 +00004015 print_block(OS, cfg, *this, &Helper, true, ShowColors);
4016 OS << '\n';
Ted Kremenek026473c2007-08-23 16:51:22 +00004017}
Ted Kremenek7dba8602007-08-29 21:56:09 +00004018
Ted Kremeneka2925852008-01-30 23:02:42 +00004019/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004020void CFGBlock::printTerminator(raw_ostream &OS,
Mike Stump6d9828c2009-07-17 01:31:16 +00004021 const LangOptions &LO) const {
Chris Lattnere4f21422009-06-30 01:26:17 +00004022 CFGBlockTerminatorPrint TPrinter(OS, NULL, PrintingPolicy(LO));
Marcin Swiderski4ba72a02010-10-29 05:21:47 +00004023 TPrinter.Visit(const_cast<Stmt*>(getTerminator().getStmt()));
Ted Kremeneka2925852008-01-30 23:02:42 +00004024}
4025
Ted Kremenek9c378f72011-08-12 23:37:29 +00004026Stmt *CFGBlock::getTerminatorCondition() {
Marcin Swiderski4ba72a02010-10-29 05:21:47 +00004027 Stmt *Terminator = this->Terminator;
Ted Kremenek411cdee2008-04-16 21:10:48 +00004028 if (!Terminator)
4029 return NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00004030
Ted Kremenek9c378f72011-08-12 23:37:29 +00004031 Expr *E = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00004032
Ted Kremenek411cdee2008-04-16 21:10:48 +00004033 switch (Terminator->getStmtClass()) {
4034 default:
4035 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004036
Ted Kremenek411cdee2008-04-16 21:10:48 +00004037 case Stmt::ForStmtClass:
4038 E = cast<ForStmt>(Terminator)->getCond();
4039 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004040
Ted Kremenek411cdee2008-04-16 21:10:48 +00004041 case Stmt::WhileStmtClass:
4042 E = cast<WhileStmt>(Terminator)->getCond();
4043 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004044
Ted Kremenek411cdee2008-04-16 21:10:48 +00004045 case Stmt::DoStmtClass:
4046 E = cast<DoStmt>(Terminator)->getCond();
4047 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004048
Ted Kremenek411cdee2008-04-16 21:10:48 +00004049 case Stmt::IfStmtClass:
4050 E = cast<IfStmt>(Terminator)->getCond();
4051 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004052
Ted Kremenek411cdee2008-04-16 21:10:48 +00004053 case Stmt::ChooseExprClass:
4054 E = cast<ChooseExpr>(Terminator)->getCond();
4055 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004056
Ted Kremenek411cdee2008-04-16 21:10:48 +00004057 case Stmt::IndirectGotoStmtClass:
4058 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
4059 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004060
Ted Kremenek411cdee2008-04-16 21:10:48 +00004061 case Stmt::SwitchStmtClass:
4062 E = cast<SwitchStmt>(Terminator)->getCond();
4063 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004064
John McCall56ca35d2011-02-17 10:25:35 +00004065 case Stmt::BinaryConditionalOperatorClass:
4066 E = cast<BinaryConditionalOperator>(Terminator)->getCond();
4067 break;
4068
Ted Kremenek411cdee2008-04-16 21:10:48 +00004069 case Stmt::ConditionalOperatorClass:
4070 E = cast<ConditionalOperator>(Terminator)->getCond();
4071 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004072
Ted Kremenek411cdee2008-04-16 21:10:48 +00004073 case Stmt::BinaryOperatorClass: // '&&' and '||'
4074 E = cast<BinaryOperator>(Terminator)->getLHS();
Ted Kremenek390e48b2008-11-12 21:11:49 +00004075 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00004076
Ted Kremenek390e48b2008-11-12 21:11:49 +00004077 case Stmt::ObjCForCollectionStmtClass:
Mike Stump6d9828c2009-07-17 01:31:16 +00004078 return Terminator;
Ted Kremenek411cdee2008-04-16 21:10:48 +00004079 }
Mike Stump6d9828c2009-07-17 01:31:16 +00004080
Ted Kremenek411cdee2008-04-16 21:10:48 +00004081 return E ? E->IgnoreParens() : NULL;
4082}
4083
Ted Kremenek7dba8602007-08-29 21:56:09 +00004084//===----------------------------------------------------------------------===//
4085// CFG Graphviz Visualization
4086//===----------------------------------------------------------------------===//
4087
Ted Kremenek42a509f2007-08-31 21:30:12 +00004088
4089#ifndef NDEBUG
Mike Stump6d9828c2009-07-17 01:31:16 +00004090static StmtPrinterHelper* GraphHelper;
Ted Kremenek42a509f2007-08-31 21:30:12 +00004091#endif
4092
Chris Lattnere4f21422009-06-30 01:26:17 +00004093void CFG::viewCFG(const LangOptions &LO) const {
Ted Kremenek42a509f2007-08-31 21:30:12 +00004094#ifndef NDEBUG
Chris Lattnere4f21422009-06-30 01:26:17 +00004095 StmtPrinterHelper H(this, LO);
Ted Kremenek42a509f2007-08-31 21:30:12 +00004096 GraphHelper = &H;
4097 llvm::ViewGraph(this,"CFG");
4098 GraphHelper = NULL;
Ted Kremenek42a509f2007-08-31 21:30:12 +00004099#endif
4100}
4101
Ted Kremenek7dba8602007-08-29 21:56:09 +00004102namespace llvm {
4103template<>
4104struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
Tobias Grosser006b0eb2009-11-30 14:16:05 +00004105
4106 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
4107
Ted Kremenek9c378f72011-08-12 23:37:29 +00004108 static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) {
Ted Kremenek7dba8602007-08-29 21:56:09 +00004109
Hartmut Kaiserbd250b42007-09-16 00:28:28 +00004110#ifndef NDEBUG
Ted Kremeneka95d3752008-09-13 05:16:45 +00004111 std::string OutSStr;
4112 llvm::raw_string_ostream Out(OutSStr);
Ted Kremenek682060c2011-12-22 23:33:52 +00004113 print_block(Out,Graph, *Node, GraphHelper, false, false);
Ted Kremeneka95d3752008-09-13 05:16:45 +00004114 std::string& OutStr = Out.str();
Ted Kremenek7dba8602007-08-29 21:56:09 +00004115
4116 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
4117
4118 // Process string output to make it nicer...
4119 for (unsigned i = 0; i != OutStr.length(); ++i)
4120 if (OutStr[i] == '\n') { // Left justify
4121 OutStr[i] = '\\';
4122 OutStr.insert(OutStr.begin()+i+1, 'l');
4123 }
Mike Stump6d9828c2009-07-17 01:31:16 +00004124
Ted Kremenek7dba8602007-08-29 21:56:09 +00004125 return OutStr;
Hartmut Kaiserbd250b42007-09-16 00:28:28 +00004126#else
4127 return "";
4128#endif
Ted Kremenek7dba8602007-08-29 21:56:09 +00004129 }
4130};
4131} // end namespace llvm