blob: 33e0ff94c2440935b2b1fb1007acfc2fb0c8c052 [file] [log] [blame]
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001//===--- CFG.cpp - Classes for representing and building CFGs----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the CFG and CFGBuilder classes for representing and
11// building Control-Flow Graphs (CFGs) from ASTs.
12//
13//===----------------------------------------------------------------------===//
14
Ted Kremenekb1c170e2009-07-22 21:45:16 +000015#include "clang/Analysis/Support/SaveAndRestore.h"
Ted Kremenek6796fbd2009-07-16 18:13:04 +000016#include "clang/Analysis/CFG.h"
Mike Stump6bf1c082010-01-21 02:21:40 +000017#include "clang/AST/DeclCXX.h"
Ted Kremenek1b8ac852007-08-21 22:06:14 +000018#include "clang/AST/StmtVisitor.h"
Ted Kremenek04f3cee2007-08-31 21:30:12 +000019#include "clang/AST/PrettyPrinter.h"
Benjamin Kramer89b422c2009-08-23 12:08:50 +000020#include "llvm/Support/GraphWriter.h"
Benjamin Kramer89b422c2009-08-23 12:08:50 +000021#include "llvm/Support/Allocator.h"
22#include "llvm/Support/Format.h"
Ted Kremenek8a632182007-08-21 23:26:17 +000023#include "llvm/ADT/DenseMap.h"
Ted Kremenekeda180e22007-08-28 19:26:49 +000024#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek8aed4902009-10-20 23:46:25 +000025#include "llvm/ADT/OwningPtr.h"
Ted Kremeneke5ccf9a2008-01-11 00:40:29 +000026
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000027using namespace clang;
28
29namespace {
30
Douglas Gregor6e6ad602009-01-20 01:17:11 +000031static SourceLocation GetEndLoc(Decl* D) {
Ted Kremenek8889bb32008-08-06 23:20:50 +000032 if (VarDecl* VD = dyn_cast<VarDecl>(D))
33 if (Expr* Ex = VD->getInit())
34 return Ex->getSourceRange().getEnd();
Mike Stump31feda52009-07-17 01:31:16 +000035
36 return D->getLocation();
Ted Kremenek8889bb32008-08-06 23:20:50 +000037}
Ted Kremenekdc03bd02010-08-02 23:46:59 +000038
Ted Kremenek4cad5fc2009-12-16 03:18:58 +000039class AddStmtChoice {
40public:
Ted Kremenek5d2bb1b2010-03-02 21:43:54 +000041 enum Kind { NotAlwaysAdd = 0,
42 AlwaysAdd = 1,
43 AsLValueNotAlwaysAdd = 2,
44 AlwaysAddAsLValue = 3 };
45
Benjamin Kramera3b13412010-03-03 16:28:47 +000046 AddStmtChoice(Kind kind) : k(kind) {}
Ted Kremenek5d2bb1b2010-03-02 21:43:54 +000047
Benjamin Kramera3b13412010-03-03 16:28:47 +000048 bool alwaysAdd() const { return (unsigned)k & 0x1; }
Ted Kremenek66de6032010-04-11 17:02:04 +000049 bool asLValue() const { return k >= AsLValueNotAlwaysAdd; }
Ted Kremenek5d2bb1b2010-03-02 21:43:54 +000050
Ted Kremenek4cad5fc2009-12-16 03:18:58 +000051private:
Benjamin Kramera3b13412010-03-03 16:28:47 +000052 Kind k;
Ted Kremenek4cad5fc2009-12-16 03:18:58 +000053};
Mike Stump31feda52009-07-17 01:31:16 +000054
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +000055/// LocalScope - Node in tree of local scopes created for C++ implicit
56/// destructor calls generation. It contains list of automatic variables
57/// declared in the scope and link to position in previous scope this scope
58/// began in.
59///
60/// The process of creating local scopes is as follows:
61/// - Init CFGBuilder::ScopePos with invalid position (equivalent for null),
62/// - Before processing statements in scope (e.g. CompoundStmt) create
63/// LocalScope object using CFGBuilder::ScopePos as link to previous scope
64/// and set CFGBuilder::ScopePos to the end of new scope,
Marcin Swiderskie9862ce2010-09-30 22:42:32 +000065/// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +000066/// at this VarDecl,
67/// - For every normal (without jump) end of scope add to CFGBlock destructors
68/// for objects in the current scope,
69/// - For every jump add to CFGBlock destructors for objects
70/// between CFGBuilder::ScopePos and local scope position saved for jump
71/// target. Thanks to C++ restrictions on goto jumps we can be sure that
72/// jump target position will be on the path to root from CFGBuilder::ScopePos
73/// (adding any variable that doesn't need constructor to be called to
74/// LocalScope can break this assumption),
75///
76class LocalScope {
77public:
78 typedef llvm::SmallVector<VarDecl*, 4> AutomaticVarsTy;
79
80 /// const_iterator - Iterates local scope backwards and jumps to previous
Marcin Swiderskie9862ce2010-09-30 22:42:32 +000081 /// scope on reaching the beginning of currently iterated scope.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +000082 class const_iterator {
83 const LocalScope* Scope;
84
85 /// VarIter is guaranteed to be greater then 0 for every valid iterator.
86 /// Invalid iterator (with null Scope) has VarIter equal to 0.
87 unsigned VarIter;
88
89 public:
90 /// Create invalid iterator. Dereferencing invalid iterator is not allowed.
91 /// Incrementing invalid iterator is allowed and will result in invalid
92 /// iterator.
93 const_iterator()
94 : Scope(NULL), VarIter(0) {}
95
96 /// Create valid iterator. In case when S.Prev is an invalid iterator and
97 /// I is equal to 0, this will create invalid iterator.
98 const_iterator(const LocalScope& S, unsigned I)
99 : Scope(&S), VarIter(I) {
100 // Iterator to "end" of scope is not allowed. Handle it by going up
101 // in scopes tree possibly up to invalid iterator in the root.
102 if (VarIter == 0 && Scope)
103 *this = Scope->Prev;
104 }
105
106 VarDecl* const* operator->() const {
107 assert (Scope && "Dereferencing invalid iterator is not allowed");
108 assert (VarIter != 0 && "Iterator has invalid value of VarIter member");
109 return &Scope->Vars[VarIter - 1];
110 }
111 VarDecl* operator*() const {
112 return *this->operator->();
113 }
114
115 const_iterator& operator++() {
116 if (!Scope)
117 return *this;
118
119 assert (VarIter != 0 && "Iterator has invalid value of VarIter member");
120 --VarIter;
121 if (VarIter == 0)
122 *this = Scope->Prev;
123 return *this;
124 }
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000125 const_iterator operator++(int) {
126 const_iterator P = *this;
127 ++*this;
128 return P;
129 }
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000130
131 bool operator==(const const_iterator& rhs) const {
132 return Scope == rhs.Scope && VarIter == rhs.VarIter;
133 }
134 bool operator!=(const const_iterator& rhs) const {
135 return !(*this == rhs);
136 }
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000137
138 operator bool() const {
139 return *this != const_iterator();
140 }
141
142 int distance(const_iterator L);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000143 };
144
145 friend class const_iterator;
146
147private:
148 /// Automatic variables in order of declaration.
149 AutomaticVarsTy Vars;
150 /// Iterator to variable in previous scope that was declared just before
151 /// begin of this scope.
152 const_iterator Prev;
153
154public:
155 /// Constructs empty scope linked to previous scope in specified place.
156 LocalScope(const_iterator P)
157 : Vars()
158 , Prev(P) {}
159
160 /// Begin of scope in direction of CFG building (backwards).
161 const_iterator begin() const { return const_iterator(*this, Vars.size()); }
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000162
163 void addVar(VarDecl* VD) {
164 Vars.push_back(VD);
165 }
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000166};
167
Marcin Swiderskie9862ce2010-09-30 22:42:32 +0000168/// distance - Calculates distance from this to L. L must be reachable from this
169/// (with use of ++ operator). Cost of calculating the distance is linear w.r.t.
170/// number of scopes between this and L.
171int LocalScope::const_iterator::distance(LocalScope::const_iterator L) {
172 int D = 0;
173 const_iterator F = *this;
174 while (F.Scope != L.Scope) {
175 assert (F != const_iterator()
176 && "L iterator is not reachable from F iterator.");
177 D += F.VarIter;
178 F = F.Scope->Prev;
179 }
180 D += F.VarIter - L.VarIter;
181 return D;
182}
183
184/// BlockScopePosPair - Structure for specifying position in CFG during its
185/// build process. It consists of CFGBlock that specifies position in CFG graph
186/// and LocalScope::const_iterator that specifies position in LocalScope graph.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000187struct BlockScopePosPair {
188 BlockScopePosPair() {}
189 BlockScopePosPair(CFGBlock* B, LocalScope::const_iterator S)
190 : Block(B), ScopePos(S) {}
191
192 CFGBlock* Block;
193 LocalScope::const_iterator ScopePos;
194};
195
Ted Kremenekbe9b33b2008-08-04 22:51:42 +0000196/// CFGBuilder - This class implements CFG construction from an AST.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +0000197/// The builder is stateful: an instance of the builder should be used to only
198/// construct a single CFG.
199///
200/// Example usage:
201///
202/// CFGBuilder builder;
203/// CFG* cfg = builder.BuildAST(stmt1);
204///
Mike Stump31feda52009-07-17 01:31:16 +0000205/// CFG construction is done via a recursive walk of an AST. We actually parse
206/// the AST in reverse order so that the successor of a basic block is
207/// constructed prior to its predecessor. This allows us to nicely capture
208/// implicit fall-throughs without extra basic blocks.
Ted Kremenek1b8ac852007-08-21 22:06:14 +0000209///
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +0000210class CFGBuilder {
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000211 typedef BlockScopePosPair JumpTarget;
212 typedef BlockScopePosPair JumpSource;
213
Mike Stump0d76d072009-07-20 23:24:15 +0000214 ASTContext *Context;
Ted Kremenek8aed4902009-10-20 23:46:25 +0000215 llvm::OwningPtr<CFG> cfg;
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000216
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +0000217 CFGBlock* Block;
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +0000218 CFGBlock* Succ;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000219 JumpTarget ContinueJumpTarget;
220 JumpTarget BreakJumpTarget;
Ted Kremenek879d8e12007-08-23 18:43:24 +0000221 CFGBlock* SwitchTerminatedBlock;
Ted Kremenek654c78f2008-02-13 22:05:39 +0000222 CFGBlock* DefaultCaseBlock;
Mike Stumpbbf5ba62010-01-19 02:20:09 +0000223 CFGBlock* TryTerminatedBlock;
Mike Stump31feda52009-07-17 01:31:16 +0000224
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000225 // Current position in local scope.
226 LocalScope::const_iterator ScopePos;
227
228 // LabelMap records the mapping from Label expressions to their jump targets.
229 typedef llvm::DenseMap<LabelStmt*, JumpTarget> LabelMapTy;
Ted Kremenek8a632182007-08-21 23:26:17 +0000230 LabelMapTy LabelMap;
Mike Stump31feda52009-07-17 01:31:16 +0000231
232 // A list of blocks that end with a "goto" that must be backpatched to their
233 // resolved targets upon completion of CFG construction.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000234 typedef std::vector<JumpSource> BackpatchBlocksTy;
Ted Kremenek8a632182007-08-21 23:26:17 +0000235 BackpatchBlocksTy BackpatchBlocks;
Mike Stump31feda52009-07-17 01:31:16 +0000236
Ted Kremenekeda180e22007-08-28 19:26:49 +0000237 // A list of labels whose address has been taken (for indirect gotos).
238 typedef llvm::SmallPtrSet<LabelStmt*,5> LabelSetTy;
239 LabelSetTy AddressTakenLabels;
Mike Stump31feda52009-07-17 01:31:16 +0000240
Zhongxing Xud38fb842010-09-16 03:28:18 +0000241 bool badCFG;
242 CFG::BuildOptions BuildOpts;
243
Mike Stump31feda52009-07-17 01:31:16 +0000244public:
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000245 explicit CFGBuilder() : cfg(new CFG()), // crew a new CFG
246 Block(NULL), Succ(NULL),
Mike Stumpbbf5ba62010-01-19 02:20:09 +0000247 SwitchTerminatedBlock(NULL), DefaultCaseBlock(NULL),
Zhongxing Xud38fb842010-09-16 03:28:18 +0000248 TryTerminatedBlock(NULL), badCFG(false) {}
Mike Stump31feda52009-07-17 01:31:16 +0000249
Ted Kremenek9aae5132007-08-23 21:42:29 +0000250 // buildCFG - Used by external clients to construct the CFG.
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000251 CFG* buildCFG(const Decl *D, Stmt *Statement, ASTContext *C,
Ted Kremeneke97b1eb2010-09-14 23:41:16 +0000252 CFG::BuildOptions BO);
Mike Stump31feda52009-07-17 01:31:16 +0000253
Ted Kremenek93668002009-07-17 22:18:43 +0000254private:
255 // Visitors to walk an AST and construct the CFG.
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000256 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc);
257 CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc);
258 CFGBlock *VisitBlockExpr(BlockExpr* E, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000259 CFGBlock *VisitBreakStmt(BreakStmt *B);
Ted Kremenekd2ba1f92010-04-11 17:01:59 +0000260 CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S);
261 CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T);
262 CFGBlock *VisitCXXTryStmt(CXXTryStmt *S);
Zhongxing Xu7e612172010-04-13 09:38:01 +0000263 CFGBlock *VisitCXXMemberCallExpr(CXXMemberCallExpr *C, AddStmtChoice asc);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000264 CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000265 CFGBlock *VisitCaseStmt(CaseStmt *C);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000266 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
Ted Kremenek21822592009-07-17 18:20:32 +0000267 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
Ted Kremenekd2ba1f92010-04-11 17:01:59 +0000268 CFGBlock *VisitConditionalOperator(ConditionalOperator *C, AddStmtChoice asc);
Ted Kremenek21822592009-07-17 18:20:32 +0000269 CFGBlock *VisitContinueStmt(ContinueStmt *C);
Ted Kremenek93668002009-07-17 22:18:43 +0000270 CFGBlock *VisitDeclStmt(DeclStmt *DS);
271 CFGBlock *VisitDeclSubExpr(Decl* D);
Ted Kremenek21822592009-07-17 18:20:32 +0000272 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
273 CFGBlock *VisitDoStmt(DoStmt *D);
274 CFGBlock *VisitForStmt(ForStmt *F);
Ted Kremenek93668002009-07-17 22:18:43 +0000275 CFGBlock *VisitGotoStmt(GotoStmt* G);
276 CFGBlock *VisitIfStmt(IfStmt *I);
277 CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
278 CFGBlock *VisitLabelStmt(LabelStmt *L);
Ted Kremenek5868ec62010-04-11 17:02:10 +0000279 CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000280 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
281 CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
282 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
283 CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
284 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
285 CFGBlock *VisitReturnStmt(ReturnStmt* R);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000286 CFGBlock *VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E, AddStmtChoice asc);
287 CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000288 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
289 CFGBlock *VisitWhileStmt(WhileStmt *W);
Mike Stump48871a22009-07-17 01:04:31 +0000290
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000291 CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd);
292 CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000293 CFGBlock *VisitChildren(Stmt* S);
Mike Stump48871a22009-07-17 01:04:31 +0000294
Ted Kremenek6065ef62008-04-28 18:00:46 +0000295 // NYS == Not Yet Supported
296 CFGBlock* NYS() {
Ted Kremenekb64d1832008-03-13 03:04:22 +0000297 badCFG = true;
298 return Block;
299 }
Mike Stump31feda52009-07-17 01:31:16 +0000300
Ted Kremenek93668002009-07-17 22:18:43 +0000301 void autoCreateBlock() { if (!Block) Block = createBlock(); }
302 CFGBlock *createBlock(bool add_successor = true);
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000303
Zhongxing Xuea9fcff2010-06-03 06:43:23 +0000304 CFGBlock *addStmt(Stmt *S) {
305 return Visit(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000306 }
Marcin Swiderski5e415732010-09-30 23:05:00 +0000307 CFGBlock *addAutomaticObjDtors(LocalScope::const_iterator B,
308 LocalScope::const_iterator E, Stmt* S);
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000309
Marcin Swiderski5e415732010-09-30 23:05:00 +0000310 // Local scopes creation.
311 LocalScope* createOrReuseLocalScope(LocalScope* Scope);
312
313 LocalScope* addLocalScopeForStmt(Stmt* S, LocalScope* Scope = NULL);
314 LocalScope* addLocalScopeForDeclStmt(DeclStmt* DS, LocalScope* Scope = NULL);
315 LocalScope* addLocalScopeForVarDecl(VarDecl* VD, LocalScope* Scope = NULL);
316
317 void addLocalScopeAndDtors(Stmt* S);
318
319 // Interface to CFGBlock - adding CFGElements.
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000320 void AppendStmt(CFGBlock *B, Stmt *S,
321 AddStmtChoice asc = AddStmtChoice::AlwaysAdd) {
322 B->appendStmt(S, cfg->getBumpVectorContext(), asc.asLValue());
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000323 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000324
Marcin Swiderski321a7072010-09-30 22:54:37 +0000325 void insertAutomaticObjDtors(CFGBlock* Blk, CFGBlock::iterator I,
326 LocalScope::const_iterator B, LocalScope::const_iterator E, Stmt* S);
327 void appendAutomaticObjDtors(CFGBlock* Blk, LocalScope::const_iterator B,
328 LocalScope::const_iterator E, Stmt* S);
329 void prependAutomaticObjDtorsWithTerminator(CFGBlock* Blk,
330 LocalScope::const_iterator B, LocalScope::const_iterator E);
331
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000332 void AddSuccessor(CFGBlock *B, CFGBlock *S) {
333 B->addSuccessor(S, cfg->getBumpVectorContext());
334 }
Mike Stump11289f42009-09-09 15:08:12 +0000335
Ted Kremenek963cc312009-07-24 06:55:42 +0000336 /// TryResult - a class representing a variant over the values
337 /// 'true', 'false', or 'unknown'. This is returned by TryEvaluateBool,
338 /// and is used by the CFGBuilder to decide if a branch condition
339 /// can be decided up front during CFG construction.
Ted Kremenek30754282009-07-24 04:47:11 +0000340 class TryResult {
341 int X;
342 public:
343 TryResult(bool b) : X(b ? 1 : 0) {}
344 TryResult() : X(-1) {}
Mike Stump11289f42009-09-09 15:08:12 +0000345
Ted Kremenek30754282009-07-24 04:47:11 +0000346 bool isTrue() const { return X == 1; }
347 bool isFalse() const { return X == 0; }
348 bool isKnown() const { return X >= 0; }
349 void negate() {
350 assert(isKnown());
351 X ^= 0x1;
352 }
353 };
Mike Stump11289f42009-09-09 15:08:12 +0000354
Mike Stump773582d2009-07-23 23:25:26 +0000355 /// TryEvaluateBool - Try and evaluate the Stmt and return 0 or 1
356 /// if we can evaluate to a known value, otherwise return -1.
Ted Kremenek30754282009-07-24 04:47:11 +0000357 TryResult TryEvaluateBool(Expr *S) {
Ted Kremeneke97b1eb2010-09-14 23:41:16 +0000358 if (!BuildOpts.PruneTriviallyFalseEdges)
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000359 return TryResult();
360
Mike Stump773582d2009-07-23 23:25:26 +0000361 Expr::EvalResult Result;
Douglas Gregor4c952882009-08-24 21:39:56 +0000362 if (!S->isTypeDependent() && !S->isValueDependent() &&
363 S->Evaluate(Result, *Context) && Result.Val.isInt())
Ted Kremenek963cc312009-07-24 06:55:42 +0000364 return Result.Val.getInt().getBoolValue();
Ted Kremenek30754282009-07-24 04:47:11 +0000365
366 return TryResult();
Mike Stump773582d2009-07-23 23:25:26 +0000367 }
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +0000368};
Mike Stump31feda52009-07-17 01:31:16 +0000369
Douglas Gregor4619e432008-12-05 23:32:09 +0000370// FIXME: Add support for dependent-sized array types in C++?
371// Does it even make sense to build a CFG for an uninstantiated template?
Ted Kremenekd86d39c2008-09-26 22:58:57 +0000372static VariableArrayType* FindVA(Type* t) {
373 while (ArrayType* vt = dyn_cast<ArrayType>(t)) {
374 if (VariableArrayType* vat = dyn_cast<VariableArrayType>(vt))
375 if (vat->getSizeExpr())
376 return vat;
Mike Stump31feda52009-07-17 01:31:16 +0000377
Ted Kremenekd86d39c2008-09-26 22:58:57 +0000378 t = vt->getElementType().getTypePtr();
379 }
Mike Stump31feda52009-07-17 01:31:16 +0000380
Ted Kremenekd86d39c2008-09-26 22:58:57 +0000381 return 0;
382}
Mike Stump31feda52009-07-17 01:31:16 +0000383
384/// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an
385/// arbitrary statement. Examples include a single expression or a function
386/// body (compound statement). The ownership of the returned CFG is
387/// transferred to the caller. If CFG construction fails, this method returns
388/// NULL.
Mike Stump6bf1c082010-01-21 02:21:40 +0000389CFG* CFGBuilder::buildCFG(const Decl *D, Stmt* Statement, ASTContext* C,
Ted Kremeneke97b1eb2010-09-14 23:41:16 +0000390 CFG::BuildOptions BO) {
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000391
Mike Stump0d76d072009-07-20 23:24:15 +0000392 Context = C;
Ted Kremenek8aed4902009-10-20 23:46:25 +0000393 assert(cfg.get());
Ted Kremenek93668002009-07-17 22:18:43 +0000394 if (!Statement)
395 return NULL;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000396
Ted Kremeneke97b1eb2010-09-14 23:41:16 +0000397 BuildOpts = BO;
398 if (!C->getLangOptions().CPlusPlus)
399 BuildOpts.AddImplicitDtors = false;
Mike Stump31feda52009-07-17 01:31:16 +0000400
401 // Create an empty block that will serve as the exit block for the CFG. Since
402 // this is the first block added to the CFG, it will be implicitly registered
403 // as the exit block.
Ted Kremenek81e14852007-08-27 19:46:09 +0000404 Succ = createBlock();
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000405 assert(Succ == &cfg->getExit());
Ted Kremenek81e14852007-08-27 19:46:09 +0000406 Block = NULL; // the EXIT block is empty. Create all other blocks lazily.
Mike Stump31feda52009-07-17 01:31:16 +0000407
Ted Kremenek9aae5132007-08-23 21:42:29 +0000408 // Visit the statements and create the CFG.
Zhongxing Xub1e10aa2010-09-06 07:04:06 +0000409 CFGBlock *B = addStmt(Statement);
410
411 if (badCFG)
412 return NULL;
413
414 if (B)
415 Succ = B;
Mike Stump6bf1c082010-01-21 02:21:40 +0000416
417 if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) {
418 // FIXME: Add code for base initializers and member initializers.
419 (void)CD;
420 }
Mike Stump31feda52009-07-17 01:31:16 +0000421
Zhongxing Xub1e10aa2010-09-06 07:04:06 +0000422 // Backpatch the gotos whose label -> block mappings we didn't know when we
423 // encountered them.
424 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
425 E = BackpatchBlocks.end(); I != E; ++I ) {
Mike Stump31feda52009-07-17 01:31:16 +0000426
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000427 CFGBlock* B = I->Block;
Zhongxing Xub1e10aa2010-09-06 07:04:06 +0000428 GotoStmt* G = cast<GotoStmt>(B->getTerminator());
429 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
Mike Stump31feda52009-07-17 01:31:16 +0000430
Zhongxing Xub1e10aa2010-09-06 07:04:06 +0000431 // If there is no target for the goto, then we are looking at an
432 // incomplete AST. Handle this by not registering a successor.
433 if (LI == LabelMap.end()) continue;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000434
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000435 JumpTarget JT = LI->second;
Marcin Swiderski667ffec2010-10-01 00:23:17 +0000436 prependAutomaticObjDtorsWithTerminator(B, I->ScopePos, JT.ScopePos);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000437 AddSuccessor(B, JT.Block);
Zhongxing Xub1e10aa2010-09-06 07:04:06 +0000438 }
439
440 // Add successors to the Indirect Goto Dispatch block (if we have one).
441 if (CFGBlock* B = cfg->getIndirectGotoBlock())
442 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
443 E = AddressTakenLabels.end(); I != E; ++I ) {
444
445 // Lookup the target block.
446 LabelMapTy::iterator LI = LabelMap.find(*I);
447
448 // If there is no target block that contains label, then we are looking
449 // at an incomplete AST. Handle this by not registering a successor.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000450 if (LI == LabelMap.end()) continue;
Zhongxing Xub1e10aa2010-09-06 07:04:06 +0000451
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000452 AddSuccessor(B, LI->second.Block);
Ted Kremenekeda180e22007-08-28 19:26:49 +0000453 }
Mike Stump31feda52009-07-17 01:31:16 +0000454
Mike Stump31feda52009-07-17 01:31:16 +0000455 // Create an empty entry block that has no predecessors.
Ted Kremenek5c50fd12007-09-26 21:23:31 +0000456 cfg->setEntry(createBlock());
Mike Stump31feda52009-07-17 01:31:16 +0000457
Zhongxing Xub1e10aa2010-09-06 07:04:06 +0000458 return cfg.take();
Ted Kremenek9aae5132007-08-23 21:42:29 +0000459}
Mike Stump31feda52009-07-17 01:31:16 +0000460
Ted Kremenek9aae5132007-08-23 21:42:29 +0000461/// createBlock - Used to lazily create blocks that are connected
462/// to the current (global) succcessor.
Mike Stump31feda52009-07-17 01:31:16 +0000463CFGBlock* CFGBuilder::createBlock(bool add_successor) {
Ted Kremenek813dd672007-09-05 20:02:05 +0000464 CFGBlock* B = cfg->createBlock();
Ted Kremenek93668002009-07-17 22:18:43 +0000465 if (add_successor && Succ)
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000466 AddSuccessor(B, Succ);
Ted Kremenek9aae5132007-08-23 21:42:29 +0000467 return B;
468}
Mike Stump31feda52009-07-17 01:31:16 +0000469
Marcin Swiderski5e415732010-09-30 23:05:00 +0000470/// addAutomaticObjDtors - Add to current block automatic objects destructors
471/// for objects in range of local scope positions. Use S as trigger statement
472/// for destructors.
473CFGBlock* CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B,
474 LocalScope::const_iterator E, Stmt* S) {
475 if (!BuildOpts.AddImplicitDtors)
476 return Block;
477 if (B == E)
478 return Block;
479
480 autoCreateBlock();
481 appendAutomaticObjDtors(Block, B, E, S);
482 return Block;
483}
484
485/// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either
486/// way return valid LocalScope object.
487LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) {
488 if (!Scope) {
489 Scope = cfg->getAllocator().Allocate<LocalScope>();
490 new (Scope) LocalScope(ScopePos);
491 }
492 return Scope;
493}
494
495/// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement
496/// that should create implicit scope (e.g. if/else substatements). Will reuse
497/// Scope if not NULL.
498LocalScope* CFGBuilder::addLocalScopeForStmt(Stmt* S, LocalScope* Scope) {
499 if (!BuildOpts.AddImplicitDtors)
500 return Scope;
501
502 // For compound statement we will be creating explicit scope.
503 if (CompoundStmt* CS = dyn_cast<CompoundStmt>(S)) {
504 for (CompoundStmt::body_iterator BI = CS->body_begin(), BE = CS->body_end()
505 ; BI != BE; ++BI) {
506 Stmt* SI = *BI;
507 if (LabelStmt* LS = dyn_cast<LabelStmt>(SI))
508 SI = LS->getSubStmt();
509 if (DeclStmt* DS = dyn_cast<DeclStmt>(SI))
510 Scope = addLocalScopeForDeclStmt(DS, Scope);
511 }
512 return Scope;
513 }
514
515 // For any other statement scope will be implicit and as such will be
516 // interesting only for DeclStmt.
517 if (LabelStmt* LS = dyn_cast<LabelStmt>(S))
518 S = LS->getSubStmt();
519 if (DeclStmt* DS = dyn_cast<DeclStmt>(S))
520 Scope = addLocalScopeForDeclStmt(DS, Scope);
521 return Scope;
522}
523
524/// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will
525/// reuse Scope if not NULL.
526LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt* DS,
527 LocalScope* Scope) {
528 if (!BuildOpts.AddImplicitDtors)
529 return Scope;
530
531 for (DeclStmt::decl_iterator DI = DS->decl_begin(), DE = DS->decl_end()
532 ; DI != DE; ++DI) {
533 if (VarDecl* VD = dyn_cast<VarDecl>(*DI))
534 Scope = addLocalScopeForVarDecl(VD, Scope);
535 }
536 return Scope;
537}
538
539/// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will
540/// create add scope for automatic objects and temporary objects bound to
541/// const reference. Will reuse Scope if not NULL.
542LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl* VD,
543 LocalScope* Scope) {
544 if (!BuildOpts.AddImplicitDtors)
545 return Scope;
546
547 // Check if variable is local.
548 switch (VD->getStorageClass()) {
549 case SC_None:
550 case SC_Auto:
551 case SC_Register:
552 break;
553 default: return Scope;
554 }
555
556 // Check for const references bound to temporary. Set type to pointee.
557 QualType QT = VD->getType();
558 if (const ReferenceType* RT = QT.getTypePtr()->getAs<ReferenceType>()) {
559 QT = RT->getPointeeType();
560 if (!QT.isConstQualified())
561 return Scope;
562 if (!VD->getInit() || !VD->getInit()->Classify(*Context).isRValue())
563 return Scope;
564 }
565
566 // Check if type is a C++ class with non-trivial destructor.
Marcin Swiderskie84cb972010-10-01 00:31:22 +0000567 if (const RecordType* RT = QT.getTypePtr()->getAs<RecordType>())
568 if (const CXXRecordDecl* CD = dyn_cast<CXXRecordDecl>(RT->getDecl()))
569 if (CD->hasTrivialDestructor())
570 return Scope;
Marcin Swiderski5e415732010-09-30 23:05:00 +0000571
572 // Add the variable to scope
573 Scope = createOrReuseLocalScope(Scope);
574 Scope->addVar(VD);
575 ScopePos = Scope->begin();
576 return Scope;
577}
578
579/// addLocalScopeAndDtors - For given statement add local scope for it and
580/// add destructors that will cleanup the scope. Will reuse Scope if not NULL.
581void CFGBuilder::addLocalScopeAndDtors(Stmt* S) {
582 if (!BuildOpts.AddImplicitDtors)
583 return;
584
585 LocalScope::const_iterator scopeBeginPos = ScopePos;
586 addLocalScopeForStmt(S, NULL);
587 addAutomaticObjDtors(ScopePos, scopeBeginPos, S);
588}
589
Marcin Swiderski321a7072010-09-30 22:54:37 +0000590/// insertAutomaticObjDtors - Insert destructor CFGElements for variables with
591/// automatic storage duration to CFGBlock's elements vector. Insertion will be
592/// performed in place specified with iterator.
593void CFGBuilder::insertAutomaticObjDtors(CFGBlock* Blk, CFGBlock::iterator I,
594 LocalScope::const_iterator B, LocalScope::const_iterator E, Stmt* S) {
595 BumpVectorContext& C = cfg->getBumpVectorContext();
596 I = Blk->beginAutomaticObjDtorsInsert(I, B.distance(E), C);
597 while (B != E)
598 I = Blk->insertAutomaticObjDtor(I, *B++, S);
599}
600
601/// appendAutomaticObjDtors - Append destructor CFGElements for variables with
602/// automatic storage duration to CFGBlock's elements vector. Elements will be
603/// appended to physical end of the vector which happens to be logical
604/// beginning.
605void CFGBuilder::appendAutomaticObjDtors(CFGBlock* Blk,
606 LocalScope::const_iterator B, LocalScope::const_iterator E, Stmt* S) {
607 insertAutomaticObjDtors(Blk, Blk->begin(), B, E, S);
608}
609
610/// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for
611/// variables with automatic storage duration to CFGBlock's elements vector.
612/// Elements will be prepended to physical beginning of the vector which
613/// happens to be logical end. Use blocks terminator as statement that specifies
614/// destructors call site.
615void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock* Blk,
616 LocalScope::const_iterator B, LocalScope::const_iterator E) {
617 insertAutomaticObjDtors(Blk, Blk->end(), B, E, Blk->getTerminator());
618}
619
Ted Kremenek93668002009-07-17 22:18:43 +0000620/// Visit - Walk the subtree of a statement and add extra
Mike Stump31feda52009-07-17 01:31:16 +0000621/// blocks for ternary operators, &&, and ||. We also process "," and
622/// DeclStmts (which may contain nested control-flow).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000623CFGBlock* CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) {
Ted Kremenek93668002009-07-17 22:18:43 +0000624tryAgain:
Ted Kremenekbc1416d2010-04-30 22:25:53 +0000625 if (!S) {
626 badCFG = true;
627 return 0;
628 }
Ted Kremenek93668002009-07-17 22:18:43 +0000629 switch (S->getStmtClass()) {
630 default:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000631 return VisitStmt(S, asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000632
633 case Stmt::AddrLabelExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000634 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +0000635
Ted Kremenek93668002009-07-17 22:18:43 +0000636 case Stmt::BinaryOperatorClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000637 return VisitBinaryOperator(cast<BinaryOperator>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +0000638
Ted Kremenek93668002009-07-17 22:18:43 +0000639 case Stmt::BlockExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000640 return VisitBlockExpr(cast<BlockExpr>(S), asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000641
Ted Kremenek93668002009-07-17 22:18:43 +0000642 case Stmt::BreakStmtClass:
643 return VisitBreakStmt(cast<BreakStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000644
Ted Kremenek93668002009-07-17 22:18:43 +0000645 case Stmt::CallExprClass:
Ted Kremenek128d04d2010-08-31 18:47:34 +0000646 case Stmt::CXXOperatorCallExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000647 return VisitCallExpr(cast<CallExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +0000648
Ted Kremenek93668002009-07-17 22:18:43 +0000649 case Stmt::CaseStmtClass:
650 return VisitCaseStmt(cast<CaseStmt>(S));
651
652 case Stmt::ChooseExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000653 return VisitChooseExpr(cast<ChooseExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +0000654
Ted Kremenek93668002009-07-17 22:18:43 +0000655 case Stmt::CompoundStmtClass:
656 return VisitCompoundStmt(cast<CompoundStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000657
Ted Kremenek93668002009-07-17 22:18:43 +0000658 case Stmt::ConditionalOperatorClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000659 return VisitConditionalOperator(cast<ConditionalOperator>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +0000660
Ted Kremenek93668002009-07-17 22:18:43 +0000661 case Stmt::ContinueStmtClass:
662 return VisitContinueStmt(cast<ContinueStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000663
Ted Kremenekb27378c2010-01-19 20:40:33 +0000664 case Stmt::CXXCatchStmtClass:
665 return VisitCXXCatchStmt(cast<CXXCatchStmt>(S));
666
Ted Kremenek82bfc862010-08-28 00:19:02 +0000667 case Stmt::CXXExprWithTemporariesClass: {
668 // FIXME: Handle temporaries. For now, just visit the subexpression
669 // so we don't artificially create extra blocks.
Ted Kremenek128d04d2010-08-31 18:47:34 +0000670 return Visit(cast<CXXExprWithTemporaries>(S)->getSubExpr(), asc);
Ted Kremenek82bfc862010-08-28 00:19:02 +0000671 }
672
Zhongxing Xu7e612172010-04-13 09:38:01 +0000673 case Stmt::CXXMemberCallExprClass:
674 return VisitCXXMemberCallExpr(cast<CXXMemberCallExpr>(S), asc);
675
Ted Kremenekb27378c2010-01-19 20:40:33 +0000676 case Stmt::CXXThrowExprClass:
677 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000678
Ted Kremenekb27378c2010-01-19 20:40:33 +0000679 case Stmt::CXXTryStmtClass:
680 return VisitCXXTryStmt(cast<CXXTryStmt>(S));
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000681
Ted Kremenek93668002009-07-17 22:18:43 +0000682 case Stmt::DeclStmtClass:
683 return VisitDeclStmt(cast<DeclStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000684
Ted Kremenek93668002009-07-17 22:18:43 +0000685 case Stmt::DefaultStmtClass:
686 return VisitDefaultStmt(cast<DefaultStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000687
Ted Kremenek93668002009-07-17 22:18:43 +0000688 case Stmt::DoStmtClass:
689 return VisitDoStmt(cast<DoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000690
Ted Kremenek93668002009-07-17 22:18:43 +0000691 case Stmt::ForStmtClass:
692 return VisitForStmt(cast<ForStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000693
Ted Kremenek93668002009-07-17 22:18:43 +0000694 case Stmt::GotoStmtClass:
695 return VisitGotoStmt(cast<GotoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000696
Ted Kremenek93668002009-07-17 22:18:43 +0000697 case Stmt::IfStmtClass:
698 return VisitIfStmt(cast<IfStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000699
Ted Kremenek93668002009-07-17 22:18:43 +0000700 case Stmt::IndirectGotoStmtClass:
701 return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000702
Ted Kremenek93668002009-07-17 22:18:43 +0000703 case Stmt::LabelStmtClass:
704 return VisitLabelStmt(cast<LabelStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000705
Ted Kremenek5868ec62010-04-11 17:02:10 +0000706 case Stmt::MemberExprClass:
707 return VisitMemberExpr(cast<MemberExpr>(S), asc);
708
Ted Kremenek93668002009-07-17 22:18:43 +0000709 case Stmt::ObjCAtCatchStmtClass:
Mike Stump11289f42009-09-09 15:08:12 +0000710 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
711
Ted Kremenek93668002009-07-17 22:18:43 +0000712 case Stmt::ObjCAtSynchronizedStmtClass:
713 return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000714
Ted Kremenek93668002009-07-17 22:18:43 +0000715 case Stmt::ObjCAtThrowStmtClass:
716 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000717
Ted Kremenek93668002009-07-17 22:18:43 +0000718 case Stmt::ObjCAtTryStmtClass:
719 return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000720
Ted Kremenek93668002009-07-17 22:18:43 +0000721 case Stmt::ObjCForCollectionStmtClass:
722 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000723
Ted Kremenek93668002009-07-17 22:18:43 +0000724 case Stmt::ParenExprClass:
725 S = cast<ParenExpr>(S)->getSubExpr();
Mike Stump11289f42009-09-09 15:08:12 +0000726 goto tryAgain;
727
Ted Kremenek93668002009-07-17 22:18:43 +0000728 case Stmt::NullStmtClass:
729 return Block;
Mike Stump11289f42009-09-09 15:08:12 +0000730
Ted Kremenek93668002009-07-17 22:18:43 +0000731 case Stmt::ReturnStmtClass:
732 return VisitReturnStmt(cast<ReturnStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000733
Ted Kremenek93668002009-07-17 22:18:43 +0000734 case Stmt::SizeOfAlignOfExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000735 return VisitSizeOfAlignOfExpr(cast<SizeOfAlignOfExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +0000736
Ted Kremenek93668002009-07-17 22:18:43 +0000737 case Stmt::StmtExprClass:
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000738 return VisitStmtExpr(cast<StmtExpr>(S), asc);
Mike Stump11289f42009-09-09 15:08:12 +0000739
Ted Kremenek93668002009-07-17 22:18:43 +0000740 case Stmt::SwitchStmtClass:
741 return VisitSwitchStmt(cast<SwitchStmt>(S));
Mike Stump11289f42009-09-09 15:08:12 +0000742
Ted Kremenek93668002009-07-17 22:18:43 +0000743 case Stmt::WhileStmtClass:
744 return VisitWhileStmt(cast<WhileStmt>(S));
745 }
746}
Mike Stump11289f42009-09-09 15:08:12 +0000747
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000748CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) {
749 if (asc.alwaysAdd()) {
Ted Kremenek93668002009-07-17 22:18:43 +0000750 autoCreateBlock();
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000751 AppendStmt(Block, S, asc);
Mike Stump31feda52009-07-17 01:31:16 +0000752 }
Mike Stump11289f42009-09-09 15:08:12 +0000753
Ted Kremenek93668002009-07-17 22:18:43 +0000754 return VisitChildren(S);
Ted Kremenek9e248872007-08-27 21:27:44 +0000755}
Mike Stump31feda52009-07-17 01:31:16 +0000756
Ted Kremenek93668002009-07-17 22:18:43 +0000757/// VisitChildren - Visit the children of a Stmt.
758CFGBlock *CFGBuilder::VisitChildren(Stmt* Terminator) {
759 CFGBlock *B = Block;
Mike Stumpd8ba7a22009-02-26 08:00:25 +0000760 for (Stmt::child_iterator I = Terminator->child_begin(),
Ted Kremenek93668002009-07-17 22:18:43 +0000761 E = Terminator->child_end(); I != E; ++I) {
762 if (*I) B = Visit(*I);
763 }
Ted Kremenek9e248872007-08-27 21:27:44 +0000764 return B;
765}
Mike Stump11289f42009-09-09 15:08:12 +0000766
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000767CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A,
768 AddStmtChoice asc) {
Ted Kremenek93668002009-07-17 22:18:43 +0000769 AddressTakenLabels.insert(A->getLabel());
Ted Kremenek9e248872007-08-27 21:27:44 +0000770
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000771 if (asc.alwaysAdd()) {
Ted Kremenek93668002009-07-17 22:18:43 +0000772 autoCreateBlock();
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000773 AppendStmt(Block, A, asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000774 }
Ted Kremenek81e14852007-08-27 19:46:09 +0000775
Ted Kremenek9aae5132007-08-23 21:42:29 +0000776 return Block;
777}
Mike Stump11289f42009-09-09 15:08:12 +0000778
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000779CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B,
780 AddStmtChoice asc) {
Ted Kremenek93668002009-07-17 22:18:43 +0000781 if (B->isLogicalOp()) { // && or ||
Ted Kremenek93668002009-07-17 22:18:43 +0000782 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000783 AppendStmt(ConfluenceBlock, B, asc);
Mike Stump11289f42009-09-09 15:08:12 +0000784
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000785 if (badCFG)
Ted Kremenek93668002009-07-17 22:18:43 +0000786 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000787
Ted Kremenek93668002009-07-17 22:18:43 +0000788 // create the block evaluating the LHS
789 CFGBlock* LHSBlock = createBlock(false);
790 LHSBlock->setTerminator(B);
Mike Stump11289f42009-09-09 15:08:12 +0000791
Ted Kremenek93668002009-07-17 22:18:43 +0000792 // create the block evaluating the RHS
793 Succ = ConfluenceBlock;
794 Block = NULL;
795 CFGBlock* RHSBlock = addStmt(B->getRHS());
Ted Kremenek989da5e2010-04-29 01:10:26 +0000796
797 if (RHSBlock) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000798 if (badCFG)
Ted Kremenek989da5e2010-04-29 01:10:26 +0000799 return 0;
800 }
801 else {
802 // Create an empty block for cases where the RHS doesn't require
803 // any explicit statements in the CFG.
804 RHSBlock = createBlock();
805 }
Mike Stump11289f42009-09-09 15:08:12 +0000806
Mike Stump773582d2009-07-23 23:25:26 +0000807 // See if this is a known constant.
Ted Kremenek30754282009-07-24 04:47:11 +0000808 TryResult KnownVal = TryEvaluateBool(B->getLHS());
John McCalle3027922010-08-25 11:45:40 +0000809 if (KnownVal.isKnown() && (B->getOpcode() == BO_LOr))
Ted Kremenek30754282009-07-24 04:47:11 +0000810 KnownVal.negate();
Mike Stump773582d2009-07-23 23:25:26 +0000811
Ted Kremenek93668002009-07-17 22:18:43 +0000812 // Now link the LHSBlock with RHSBlock.
John McCalle3027922010-08-25 11:45:40 +0000813 if (B->getOpcode() == BO_LOr) {
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000814 AddSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock);
815 AddSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000816 } else {
John McCalle3027922010-08-25 11:45:40 +0000817 assert(B->getOpcode() == BO_LAnd);
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000818 AddSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock);
819 AddSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock);
Ted Kremenek93668002009-07-17 22:18:43 +0000820 }
Mike Stump11289f42009-09-09 15:08:12 +0000821
Ted Kremenek93668002009-07-17 22:18:43 +0000822 // Generate the blocks for evaluating the LHS.
823 Block = LHSBlock;
824 return addStmt(B->getLHS());
Mike Stump11289f42009-09-09 15:08:12 +0000825 }
John McCalle3027922010-08-25 11:45:40 +0000826 else if (B->getOpcode() == BO_Comma) { // ,
Ted Kremenekfe9b7682009-07-17 22:57:50 +0000827 autoCreateBlock();
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000828 AppendStmt(Block, B, asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000829 addStmt(B->getRHS());
830 return addStmt(B->getLHS());
831 }
Zhongxing Xu41cdf582010-06-03 06:23:18 +0000832 else if (B->isAssignmentOp()) {
833 if (asc.alwaysAdd()) {
834 autoCreateBlock();
835 AppendStmt(Block, B, asc);
836 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000837
Ted Kremenek8abff772010-09-14 01:13:32 +0000838 // If visiting RHS causes us to finish 'Block' and the LHS doesn't
839 // create a new block, then we should return RBlock. Otherwise
840 // we'll incorrectly return NULL.
841 CFGBlock *RBlock = Visit(B->getRHS());
842 CFGBlock *LBlock = Visit(B->getLHS(), AddStmtChoice::AsLValueNotAlwaysAdd);
843 return LBlock ? LBlock : RBlock;
Zhongxing Xu41cdf582010-06-03 06:23:18 +0000844 }
Mike Stump11289f42009-09-09 15:08:12 +0000845
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000846 return VisitStmt(B, asc);
Ted Kremenek93668002009-07-17 22:18:43 +0000847}
848
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000849CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) {
850 if (asc.alwaysAdd()) {
Ted Kremenek470bfa42009-11-25 01:34:30 +0000851 autoCreateBlock();
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000852 AppendStmt(Block, E, asc);
Ted Kremenek470bfa42009-11-25 01:34:30 +0000853 }
854 return Block;
Ted Kremenek93668002009-07-17 22:18:43 +0000855}
856
Ted Kremenek93668002009-07-17 22:18:43 +0000857CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
858 // "break" is a control-flow statement. Thus we stop processing the current
859 // block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000860 if (badCFG)
861 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000862
Ted Kremenek93668002009-07-17 22:18:43 +0000863 // Now create a new block that ends with the break statement.
864 Block = createBlock(false);
865 Block->setTerminator(B);
Mike Stump11289f42009-09-09 15:08:12 +0000866
Ted Kremenek93668002009-07-17 22:18:43 +0000867 // If there is no target for the break, then we are looking at an incomplete
868 // AST. This means that the CFG cannot be constructed.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000869 if (BreakJumpTarget.Block) {
Marcin Swiderski667ffec2010-10-01 00:23:17 +0000870 addAutomaticObjDtors(ScopePos, BreakJumpTarget.ScopePos, B);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +0000871 AddSuccessor(Block, BreakJumpTarget.Block);
872 } else
Ted Kremenek93668002009-07-17 22:18:43 +0000873 badCFG = true;
Mike Stump11289f42009-09-09 15:08:12 +0000874
875
Ted Kremenek9aae5132007-08-23 21:42:29 +0000876 return Block;
877}
Mike Stump11289f42009-09-09 15:08:12 +0000878
Mike Stump04c68512010-01-21 15:20:48 +0000879static bool CanThrow(Expr *E) {
880 QualType Ty = E->getType();
881 if (Ty->isFunctionPointerType())
882 Ty = Ty->getAs<PointerType>()->getPointeeType();
883 else if (Ty->isBlockPointerType())
884 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Ted Kremenekdc03bd02010-08-02 23:46:59 +0000885
Mike Stump04c68512010-01-21 15:20:48 +0000886 const FunctionType *FT = Ty->getAs<FunctionType>();
887 if (FT) {
888 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT))
889 if (Proto->hasEmptyExceptionSpec())
890 return false;
891 }
892 return true;
893}
894
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000895CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) {
Ted Kremenek93668002009-07-17 22:18:43 +0000896 // If this is a call to a no-return function, this stops the block here.
Mike Stump8c5d7992009-07-25 21:26:53 +0000897 bool NoReturn = false;
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000898 if (getFunctionExtInfo(*C->getCallee()->getType()).getNoReturn()) {
Mike Stump8c5d7992009-07-25 21:26:53 +0000899 NoReturn = true;
Ted Kremenek93668002009-07-17 22:18:43 +0000900 }
Mike Stump8c5d7992009-07-25 21:26:53 +0000901
Mike Stump04c68512010-01-21 15:20:48 +0000902 bool AddEHEdge = false;
Mike Stump92244b02010-01-19 22:00:14 +0000903
904 // Languages without exceptions are assumed to not throw.
905 if (Context->getLangOptions().Exceptions) {
Ted Kremeneke97b1eb2010-09-14 23:41:16 +0000906 if (BuildOpts.AddEHEdges)
Mike Stump04c68512010-01-21 15:20:48 +0000907 AddEHEdge = true;
Mike Stump92244b02010-01-19 22:00:14 +0000908 }
909
910 if (FunctionDecl *FD = C->getDirectCallee()) {
Mike Stump8c5d7992009-07-25 21:26:53 +0000911 if (FD->hasAttr<NoReturnAttr>())
912 NoReturn = true;
Mike Stump92244b02010-01-19 22:00:14 +0000913 if (FD->hasAttr<NoThrowAttr>())
Mike Stump04c68512010-01-21 15:20:48 +0000914 AddEHEdge = false;
Mike Stump92244b02010-01-19 22:00:14 +0000915 }
Mike Stump8c5d7992009-07-25 21:26:53 +0000916
Mike Stump04c68512010-01-21 15:20:48 +0000917 if (!CanThrow(C->getCallee()))
918 AddEHEdge = false;
919
Zhongxing Xu41cdf582010-06-03 06:23:18 +0000920 if (!NoReturn && !AddEHEdge) {
921 if (asc.asLValue())
922 return VisitStmt(C, AddStmtChoice::AlwaysAddAsLValue);
923 else
924 return VisitStmt(C, AddStmtChoice::AlwaysAdd);
925 }
Mike Stump11289f42009-09-09 15:08:12 +0000926
Mike Stump92244b02010-01-19 22:00:14 +0000927 if (Block) {
928 Succ = Block;
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000929 if (badCFG)
Mike Stump92244b02010-01-19 22:00:14 +0000930 return 0;
931 }
Mike Stump11289f42009-09-09 15:08:12 +0000932
Mike Stump92244b02010-01-19 22:00:14 +0000933 Block = createBlock(!NoReturn);
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000934 AppendStmt(Block, C, asc);
Mike Stump8c5d7992009-07-25 21:26:53 +0000935
Mike Stump92244b02010-01-19 22:00:14 +0000936 if (NoReturn) {
937 // Wire this to the exit block directly.
938 AddSuccessor(Block, &cfg->getExit());
939 }
Mike Stump04c68512010-01-21 15:20:48 +0000940 if (AddEHEdge) {
Mike Stump92244b02010-01-19 22:00:14 +0000941 // Add exceptional edges.
942 if (TryTerminatedBlock)
943 AddSuccessor(Block, TryTerminatedBlock);
944 else
945 AddSuccessor(Block, &cfg->getExit());
946 }
Mike Stump11289f42009-09-09 15:08:12 +0000947
Mike Stump8c5d7992009-07-25 21:26:53 +0000948 return VisitChildren(C);
Ted Kremenek93668002009-07-17 22:18:43 +0000949}
Ted Kremenek9aae5132007-08-23 21:42:29 +0000950
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000951CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C,
952 AddStmtChoice asc) {
Ted Kremenek21822592009-07-17 18:20:32 +0000953 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek4cad5fc2009-12-16 03:18:58 +0000954 AppendStmt(ConfluenceBlock, C, asc);
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000955 if (badCFG)
Ted Kremenek21822592009-07-17 18:20:32 +0000956 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000957
Ted Kremenek5868ec62010-04-11 17:02:10 +0000958 asc = asc.asLValue() ? AddStmtChoice::AlwaysAddAsLValue
959 : AddStmtChoice::AlwaysAdd;
960
Ted Kremenek21822592009-07-17 18:20:32 +0000961 Succ = ConfluenceBlock;
962 Block = NULL;
Zhongxing Xuea9fcff2010-06-03 06:43:23 +0000963 CFGBlock* LHSBlock = Visit(C->getLHS(), asc);
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000964 if (badCFG)
Ted Kremenek21822592009-07-17 18:20:32 +0000965 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000966
Ted Kremenek21822592009-07-17 18:20:32 +0000967 Succ = ConfluenceBlock;
968 Block = NULL;
Zhongxing Xuea9fcff2010-06-03 06:43:23 +0000969 CFGBlock* RHSBlock = Visit(C->getRHS(), asc);
Zhongxing Xu33dfc072010-09-06 07:32:31 +0000970 if (badCFG)
Ted Kremenek21822592009-07-17 18:20:32 +0000971 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000972
Ted Kremenek21822592009-07-17 18:20:32 +0000973 Block = createBlock(false);
Mike Stump773582d2009-07-23 23:25:26 +0000974 // See if this is a known constant.
Ted Kremenek30754282009-07-24 04:47:11 +0000975 const TryResult& KnownVal = TryEvaluateBool(C->getCond());
Ted Kremenek289ae4f2009-10-12 20:55:07 +0000976 AddSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock);
977 AddSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock);
Ted Kremenek21822592009-07-17 18:20:32 +0000978 Block->setTerminator(C);
Mike Stump11289f42009-09-09 15:08:12 +0000979 return addStmt(C->getCond());
Ted Kremenek21822592009-07-17 18:20:32 +0000980}
Mike Stump11289f42009-09-09 15:08:12 +0000981
982
983CFGBlock* CFGBuilder::VisitCompoundStmt(CompoundStmt* C) {
Marcin Swiderski667ffec2010-10-01 00:23:17 +0000984 addLocalScopeAndDtors(C);
Mike Stump11289f42009-09-09 15:08:12 +0000985 CFGBlock* LastBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +0000986
987 for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
988 I != E; ++I ) {
Ted Kremenek4f2ab5a2010-08-17 21:00:06 +0000989 // If we hit a segment of code just containing ';' (NullStmts), we can
990 // get a null block back. In such cases, just use the LastBlock
991 if (CFGBlock *newBlock = addStmt(*I))
992 LastBlock = newBlock;
Mike Stump11289f42009-09-09 15:08:12 +0000993
Ted Kremenekce499c22009-08-27 23:16:26 +0000994 if (badCFG)
995 return NULL;
Mike Stump11289f42009-09-09 15:08:12 +0000996 }
Mike Stump92244b02010-01-19 22:00:14 +0000997
Ted Kremenek93668002009-07-17 22:18:43 +0000998 return LastBlock;
999}
Mike Stump11289f42009-09-09 15:08:12 +00001000
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001001CFGBlock *CFGBuilder::VisitConditionalOperator(ConditionalOperator *C,
1002 AddStmtChoice asc) {
Ted Kremenek51d40b02009-07-17 18:15:54 +00001003 // Create the confluence block that will "merge" the results of the ternary
1004 // expression.
1005 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001006 AppendStmt(ConfluenceBlock, C, asc);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001007 if (badCFG)
Ted Kremenek51d40b02009-07-17 18:15:54 +00001008 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00001009
Ted Kremenek5868ec62010-04-11 17:02:10 +00001010 asc = asc.asLValue() ? AddStmtChoice::AlwaysAddAsLValue
1011 : AddStmtChoice::AlwaysAdd;
1012
Ted Kremenek51d40b02009-07-17 18:15:54 +00001013 // Create a block for the LHS expression if there is an LHS expression. A
1014 // GCC extension allows LHS to be NULL, causing the condition to be the
1015 // value that is returned instead.
1016 // e.g: x ?: y is shorthand for: x ? x : y;
1017 Succ = ConfluenceBlock;
1018 Block = NULL;
1019 CFGBlock* LHSBlock = NULL;
1020 if (C->getLHS()) {
Zhongxing Xuea9fcff2010-06-03 06:43:23 +00001021 LHSBlock = Visit(C->getLHS(), asc);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001022 if (badCFG)
Ted Kremenek51d40b02009-07-17 18:15:54 +00001023 return 0;
1024 Block = NULL;
1025 }
Mike Stump11289f42009-09-09 15:08:12 +00001026
Ted Kremenek51d40b02009-07-17 18:15:54 +00001027 // Create the block for the RHS expression.
1028 Succ = ConfluenceBlock;
Zhongxing Xuea9fcff2010-06-03 06:43:23 +00001029 CFGBlock* RHSBlock = Visit(C->getRHS(), asc);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001030 if (badCFG)
Ted Kremenek51d40b02009-07-17 18:15:54 +00001031 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00001032
Ted Kremenek51d40b02009-07-17 18:15:54 +00001033 // Create the block that will contain the condition.
1034 Block = createBlock(false);
Mike Stump11289f42009-09-09 15:08:12 +00001035
Mike Stump773582d2009-07-23 23:25:26 +00001036 // See if this is a known constant.
Ted Kremenek30754282009-07-24 04:47:11 +00001037 const TryResult& KnownVal = TryEvaluateBool(C->getCond());
Mike Stump0d76d072009-07-20 23:24:15 +00001038 if (LHSBlock) {
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001039 AddSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock);
Mike Stump0d76d072009-07-20 23:24:15 +00001040 } else {
Ted Kremenek30754282009-07-24 04:47:11 +00001041 if (KnownVal.isFalse()) {
Mike Stump0d76d072009-07-20 23:24:15 +00001042 // If we know the condition is false, add NULL as the successor for
1043 // the block containing the condition. In this case, the confluence
1044 // block will have just one predecessor.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001045 AddSuccessor(Block, 0);
Ted Kremenek30754282009-07-24 04:47:11 +00001046 assert(ConfluenceBlock->pred_size() == 1);
Mike Stump0d76d072009-07-20 23:24:15 +00001047 } else {
1048 // If we have no LHS expression, add the ConfluenceBlock as a direct
1049 // successor for the block containing the condition. Moreover, we need to
1050 // reverse the order of the predecessors in the ConfluenceBlock because
1051 // the RHSBlock will have been added to the succcessors already, and we
1052 // want the first predecessor to the the block containing the expression
1053 // for the case when the ternary expression evaluates to true.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001054 AddSuccessor(Block, ConfluenceBlock);
Ted Kremenek30754282009-07-24 04:47:11 +00001055 assert(ConfluenceBlock->pred_size() == 2);
Mike Stump0d76d072009-07-20 23:24:15 +00001056 std::reverse(ConfluenceBlock->pred_begin(),
1057 ConfluenceBlock->pred_end());
1058 }
Ted Kremenek51d40b02009-07-17 18:15:54 +00001059 }
Mike Stump11289f42009-09-09 15:08:12 +00001060
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001061 AddSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock);
Ted Kremenek51d40b02009-07-17 18:15:54 +00001062 Block->setTerminator(C);
1063 return addStmt(C->getCond());
1064}
1065
Ted Kremenek93668002009-07-17 22:18:43 +00001066CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
1067 autoCreateBlock();
Mike Stump31feda52009-07-17 01:31:16 +00001068
Ted Kremenek93668002009-07-17 22:18:43 +00001069 if (DS->isSingleDecl()) {
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001070 AppendStmt(Block, DS);
Ted Kremenek93668002009-07-17 22:18:43 +00001071 return VisitDeclSubExpr(DS->getSingleDecl());
Ted Kremenekf6998822008-02-26 00:22:58 +00001072 }
Mike Stump11289f42009-09-09 15:08:12 +00001073
Ted Kremenek93668002009-07-17 22:18:43 +00001074 CFGBlock *B = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001075
Ted Kremenek93668002009-07-17 22:18:43 +00001076 // FIXME: Add a reverse iterator for DeclStmt to avoid this extra copy.
1077 typedef llvm::SmallVector<Decl*,10> BufTy;
1078 BufTy Buf(DS->decl_begin(), DS->decl_end());
Mike Stump11289f42009-09-09 15:08:12 +00001079
Ted Kremenek93668002009-07-17 22:18:43 +00001080 for (BufTy::reverse_iterator I = Buf.rbegin(), E = Buf.rend(); I != E; ++I) {
1081 // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
1082 unsigned A = llvm::AlignOf<DeclStmt>::Alignment < 8
1083 ? 8 : llvm::AlignOf<DeclStmt>::Alignment;
Mike Stump11289f42009-09-09 15:08:12 +00001084
Ted Kremenek93668002009-07-17 22:18:43 +00001085 // Allocate the DeclStmt using the BumpPtrAllocator. It will get
1086 // automatically freed with the CFG.
1087 DeclGroupRef DG(*I);
1088 Decl *D = *I;
Mike Stump11289f42009-09-09 15:08:12 +00001089 void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
Ted Kremenek93668002009-07-17 22:18:43 +00001090 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
Mike Stump11289f42009-09-09 15:08:12 +00001091
Ted Kremenek93668002009-07-17 22:18:43 +00001092 // Append the fake DeclStmt to block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001093 AppendStmt(Block, DSNew);
Ted Kremenek93668002009-07-17 22:18:43 +00001094 B = VisitDeclSubExpr(D);
1095 }
Mike Stump11289f42009-09-09 15:08:12 +00001096
1097 return B;
Ted Kremenek93668002009-07-17 22:18:43 +00001098}
Mike Stump11289f42009-09-09 15:08:12 +00001099
Ted Kremenek93668002009-07-17 22:18:43 +00001100/// VisitDeclSubExpr - Utility method to add block-level expressions for
1101/// initializers in Decls.
1102CFGBlock *CFGBuilder::VisitDeclSubExpr(Decl* D) {
1103 assert(Block);
Ted Kremenekf6998822008-02-26 00:22:58 +00001104
Ted Kremenek93668002009-07-17 22:18:43 +00001105 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00001106
Ted Kremenek93668002009-07-17 22:18:43 +00001107 if (!VD)
1108 return Block;
Mike Stump11289f42009-09-09 15:08:12 +00001109
Ted Kremenek93668002009-07-17 22:18:43 +00001110 Expr *Init = VD->getInit();
Mike Stump11289f42009-09-09 15:08:12 +00001111
Ted Kremenek93668002009-07-17 22:18:43 +00001112 if (Init) {
Ted Kremenek5d2bb1b2010-03-02 21:43:54 +00001113 AddStmtChoice::Kind k =
1114 VD->getType()->isReferenceType() ? AddStmtChoice::AsLValueNotAlwaysAdd
1115 : AddStmtChoice::NotAlwaysAdd;
1116 Visit(Init, AddStmtChoice(k));
Ted Kremenek93668002009-07-17 22:18:43 +00001117 }
Mike Stump11289f42009-09-09 15:08:12 +00001118
Ted Kremenek93668002009-07-17 22:18:43 +00001119 // If the type of VD is a VLA, then we must process its size expressions.
1120 for (VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); VA != 0;
1121 VA = FindVA(VA->getElementType().getTypePtr()))
1122 Block = addStmt(VA->getSizeExpr());
Mike Stump11289f42009-09-09 15:08:12 +00001123
Marcin Swiderski667ffec2010-10-01 00:23:17 +00001124 // Remove variable from local scope.
1125 if (ScopePos && VD == *ScopePos)
1126 ++ScopePos;
1127
Ted Kremenek93668002009-07-17 22:18:43 +00001128 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001129}
1130
1131CFGBlock* CFGBuilder::VisitIfStmt(IfStmt* I) {
Mike Stump31feda52009-07-17 01:31:16 +00001132 // We may see an if statement in the middle of a basic block, or it may be the
1133 // first statement we are processing. In either case, we create a new basic
1134 // block. First, we create the blocks for the then...else statements, and
1135 // then we create the block containing the if statement. If we were in the
Ted Kremenek0868eea2009-09-24 18:45:41 +00001136 // middle of a block, we stop processing that block. That block is then the
1137 // implicit successor for the "then" and "else" clauses.
Mike Stump31feda52009-07-17 01:31:16 +00001138
1139 // The block we were proccessing is now finished. Make it the successor
1140 // block.
1141 if (Block) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00001142 Succ = Block;
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001143 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001144 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001145 }
Mike Stump31feda52009-07-17 01:31:16 +00001146
Ted Kremenek0bcdc982009-07-17 18:04:55 +00001147 // Process the false branch.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001148 CFGBlock* ElseBlock = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00001149
Ted Kremenek9aae5132007-08-23 21:42:29 +00001150 if (Stmt* Else = I->getElse()) {
1151 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump31feda52009-07-17 01:31:16 +00001152
Ted Kremenek9aae5132007-08-23 21:42:29 +00001153 // NULL out Block so that the recursive call to Visit will
Mike Stump31feda52009-07-17 01:31:16 +00001154 // create a new basic block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001155 Block = NULL;
Ted Kremenek93668002009-07-17 22:18:43 +00001156 ElseBlock = addStmt(Else);
Mike Stump31feda52009-07-17 01:31:16 +00001157
Ted Kremenekbbad8ce2007-08-30 18:13:31 +00001158 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
1159 ElseBlock = sv.get();
Ted Kremenek55957a82009-05-02 00:13:27 +00001160 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001161 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001162 return 0;
1163 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00001164 }
Mike Stump31feda52009-07-17 01:31:16 +00001165
Ted Kremenek0bcdc982009-07-17 18:04:55 +00001166 // Process the true branch.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001167 CFGBlock* ThenBlock;
1168 {
1169 Stmt* Then = I->getThen();
Ted Kremenek1362b8b2010-01-19 20:46:35 +00001170 assert(Then);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001171 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump31feda52009-07-17 01:31:16 +00001172 Block = NULL;
Ted Kremenek93668002009-07-17 22:18:43 +00001173 ThenBlock = addStmt(Then);
Mike Stump31feda52009-07-17 01:31:16 +00001174
Ted Kremenek1b379512009-04-01 03:52:47 +00001175 if (!ThenBlock) {
1176 // We can reach here if the "then" body has all NullStmts.
1177 // Create an empty block so we can distinguish between true and false
1178 // branches in path-sensitive analyses.
1179 ThenBlock = createBlock(false);
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001180 AddSuccessor(ThenBlock, sv.get());
Mike Stump31feda52009-07-17 01:31:16 +00001181 } else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001182 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001183 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001184 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00001185 }
1186
Mike Stump31feda52009-07-17 01:31:16 +00001187 // Now create a new block containing the if statement.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001188 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00001189
Ted Kremenek9aae5132007-08-23 21:42:29 +00001190 // Set the terminator of the new block to the If statement.
1191 Block->setTerminator(I);
Mike Stump31feda52009-07-17 01:31:16 +00001192
Mike Stump773582d2009-07-23 23:25:26 +00001193 // See if this is a known constant.
Ted Kremenek30754282009-07-24 04:47:11 +00001194 const TryResult &KnownVal = TryEvaluateBool(I->getCond());
Mike Stump773582d2009-07-23 23:25:26 +00001195
Ted Kremenek9aae5132007-08-23 21:42:29 +00001196 // Now add the successors.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001197 AddSuccessor(Block, KnownVal.isFalse() ? NULL : ThenBlock);
1198 AddSuccessor(Block, KnownVal.isTrue()? NULL : ElseBlock);
Mike Stump31feda52009-07-17 01:31:16 +00001199
1200 // Add the condition as the last statement in the new block. This may create
1201 // new blocks as the condition may contain control-flow. Any newly created
1202 // blocks will be pointed to be "Block".
Ted Kremeneka7bcbde2009-12-23 04:49:01 +00001203 Block = addStmt(I->getCond());
Ted Kremenekdc03bd02010-08-02 23:46:59 +00001204
Ted Kremeneka7bcbde2009-12-23 04:49:01 +00001205 // Finally, if the IfStmt contains a condition variable, add both the IfStmt
1206 // and the condition variable initialization to the CFG.
1207 if (VarDecl *VD = I->getConditionVariable()) {
1208 if (Expr *Init = VD->getInit()) {
1209 autoCreateBlock();
1210 AppendStmt(Block, I, AddStmtChoice::AlwaysAdd);
1211 addStmt(Init);
1212 }
1213 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +00001214
Ted Kremeneka7bcbde2009-12-23 04:49:01 +00001215 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001216}
Mike Stump31feda52009-07-17 01:31:16 +00001217
1218
Ted Kremenek9aae5132007-08-23 21:42:29 +00001219CFGBlock* CFGBuilder::VisitReturnStmt(ReturnStmt* R) {
Ted Kremenek0868eea2009-09-24 18:45:41 +00001220 // If we were in the middle of a block we stop processing that block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001221 //
Mike Stump31feda52009-07-17 01:31:16 +00001222 // NOTE: If a "return" appears in the middle of a block, this means that the
1223 // code afterwards is DEAD (unreachable). We still keep a basic block
1224 // for that code; a simple "mark-and-sweep" from the entry block will be
1225 // able to report such dead blocks.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001226
1227 // Create the new block.
1228 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00001229
Ted Kremenek9aae5132007-08-23 21:42:29 +00001230 // The Exit block is the only successor.
Marcin Swiderski667ffec2010-10-01 00:23:17 +00001231 addAutomaticObjDtors(ScopePos, LocalScope::const_iterator(), R);
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001232 AddSuccessor(Block, &cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +00001233
1234 // Add the return statement to the block. This may create new blocks if R
1235 // contains control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001236 return VisitStmt(R, AddStmtChoice::AlwaysAdd);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001237}
1238
1239CFGBlock* CFGBuilder::VisitLabelStmt(LabelStmt* L) {
1240 // Get the block of the labeled statement. Add it to our map.
Ted Kremenek93668002009-07-17 22:18:43 +00001241 addStmt(L->getSubStmt());
Ted Kremenekcab47bd2008-03-15 07:45:02 +00001242 CFGBlock* LabelBlock = Block;
Mike Stump31feda52009-07-17 01:31:16 +00001243
Ted Kremenek93668002009-07-17 22:18:43 +00001244 if (!LabelBlock) // This can happen when the body is empty, i.e.
1245 LabelBlock = createBlock(); // scopes that only contains NullStmts.
Mike Stump31feda52009-07-17 01:31:16 +00001246
Ted Kremenek93668002009-07-17 22:18:43 +00001247 assert(LabelMap.find(L) == LabelMap.end() && "label already in map");
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001248 LabelMap[ L ] = JumpTarget(LabelBlock, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00001249
1250 // Labels partition blocks, so this is the end of the basic block we were
1251 // processing (L is the block's label). Because this is label (and we have
1252 // already processed the substatement) there is no extra control-flow to worry
1253 // about.
Ted Kremenek71eca012007-08-29 23:20:49 +00001254 LabelBlock->setLabel(L);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001255 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001256 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001257
1258 // We set Block to NULL to allow lazy creation of a new block (if necessary);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001259 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001260
Ted Kremenek9aae5132007-08-23 21:42:29 +00001261 // This block is now the implicit successor of other blocks.
1262 Succ = LabelBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001263
Ted Kremenek9aae5132007-08-23 21:42:29 +00001264 return LabelBlock;
1265}
1266
1267CFGBlock* CFGBuilder::VisitGotoStmt(GotoStmt* G) {
Mike Stump31feda52009-07-17 01:31:16 +00001268 // Goto is a control-flow statement. Thus we stop processing the current
1269 // block and create a new one.
Ted Kremenek93668002009-07-17 22:18:43 +00001270
Ted Kremenek9aae5132007-08-23 21:42:29 +00001271 Block = createBlock(false);
1272 Block->setTerminator(G);
Mike Stump31feda52009-07-17 01:31:16 +00001273
1274 // If we already know the mapping to the label block add the successor now.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001275 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
Mike Stump31feda52009-07-17 01:31:16 +00001276
Ted Kremenek9aae5132007-08-23 21:42:29 +00001277 if (I == LabelMap.end())
1278 // We will need to backpatch this block later.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001279 BackpatchBlocks.push_back(JumpSource(Block, ScopePos));
1280 else {
1281 JumpTarget JT = I->second;
Marcin Swiderski667ffec2010-10-01 00:23:17 +00001282 addAutomaticObjDtors(ScopePos, JT.ScopePos, G);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001283 AddSuccessor(Block, JT.Block);
1284 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00001285
Mike Stump31feda52009-07-17 01:31:16 +00001286 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001287}
1288
1289CFGBlock* CFGBuilder::VisitForStmt(ForStmt* F) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00001290 CFGBlock* LoopSuccessor = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001291
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001292 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
1293
Mike Stump014b3ea2009-07-21 01:12:51 +00001294 // "for" is a control-flow statement. Thus we stop processing the current
1295 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001296 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001297 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001298 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001299 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00001300 } else
1301 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00001302
Ted Kremenek304a9532010-05-21 20:30:15 +00001303 // Save the current value for the break targets.
1304 // All breaks should go to the code following the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001305 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
1306 BreakJumpTarget = JumpTarget(LoopSuccessor, LoopBeginScopePos);
Ted Kremenek304a9532010-05-21 20:30:15 +00001307
Mike Stump31feda52009-07-17 01:31:16 +00001308 // Because of short-circuit evaluation, the condition of the loop can span
1309 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
1310 // evaluate the condition.
Ted Kremenek81e14852007-08-27 19:46:09 +00001311 CFGBlock* ExitConditionBlock = createBlock(false);
1312 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001313
Ted Kremenek81e14852007-08-27 19:46:09 +00001314 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00001315 ExitConditionBlock->setTerminator(F);
1316
1317 // Now add the actual condition to the condition block. Because the condition
1318 // itself may contain control-flow, new blocks may be created.
Ted Kremenek81e14852007-08-27 19:46:09 +00001319 if (Stmt* C = F->getCond()) {
1320 Block = ExitConditionBlock;
1321 EntryConditionBlock = addStmt(C);
Ted Kremenek7b31a612010-09-15 07:01:20 +00001322 assert(Block == EntryConditionBlock ||
1323 (Block == 0 && EntryConditionBlock == Succ));
Ted Kremenekec92f942009-12-24 01:49:06 +00001324
1325 // If this block contains a condition variable, add both the condition
1326 // variable and initializer to the CFG.
1327 if (VarDecl *VD = F->getConditionVariable()) {
1328 if (Expr *Init = VD->getInit()) {
1329 autoCreateBlock();
1330 AppendStmt(Block, F, AddStmtChoice::AlwaysAdd);
1331 EntryConditionBlock = addStmt(Init);
1332 assert(Block == EntryConditionBlock);
1333 }
1334 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +00001335
Ted Kremenek55957a82009-05-02 00:13:27 +00001336 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001337 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001338 return 0;
1339 }
Ted Kremenek81e14852007-08-27 19:46:09 +00001340 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00001341
Mike Stump31feda52009-07-17 01:31:16 +00001342 // The condition block is the implicit successor for the loop body as well as
1343 // any code above the loop.
Ted Kremenek81e14852007-08-27 19:46:09 +00001344 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001345
Mike Stump773582d2009-07-23 23:25:26 +00001346 // See if this is a known constant.
Ted Kremenek30754282009-07-24 04:47:11 +00001347 TryResult KnownVal(true);
Mike Stump11289f42009-09-09 15:08:12 +00001348
Mike Stump773582d2009-07-23 23:25:26 +00001349 if (F->getCond())
1350 KnownVal = TryEvaluateBool(F->getCond());
1351
Ted Kremenek9aae5132007-08-23 21:42:29 +00001352 // Now create the loop body.
1353 {
Ted Kremenek1362b8b2010-01-19 20:46:35 +00001354 assert(F->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00001355
Ted Kremenek304a9532010-05-21 20:30:15 +00001356 // Save the current values for Block, Succ, and continue targets.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001357 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
1358 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00001359
Ted Kremeneke9610502007-08-30 18:39:40 +00001360 // Create a new block to contain the (bottom) of the loop body.
1361 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001362
Ted Kremenekb0746ca2008-09-04 21:48:47 +00001363 if (Stmt* I = F->getInc()) {
Mike Stump31feda52009-07-17 01:31:16 +00001364 // Generate increment code in its own basic block. This is the target of
1365 // continue statements.
Ted Kremenek93668002009-07-17 22:18:43 +00001366 Succ = addStmt(I);
Mike Stump31feda52009-07-17 01:31:16 +00001367 } else {
1368 // No increment code. Create a special, empty, block that is used as the
1369 // target block for "looping back" to the start of the loop.
Ted Kremenek902393b2009-04-28 00:51:56 +00001370 assert(Succ == EntryConditionBlock);
1371 Succ = createBlock();
Ted Kremenekb0746ca2008-09-04 21:48:47 +00001372 }
Mike Stump31feda52009-07-17 01:31:16 +00001373
Ted Kremenek902393b2009-04-28 00:51:56 +00001374 // Finish up the increment (or empty) block if it hasn't been already.
1375 if (Block) {
1376 assert(Block == Succ);
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001377 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001378 return 0;
Ted Kremenek902393b2009-04-28 00:51:56 +00001379 Block = 0;
1380 }
Mike Stump31feda52009-07-17 01:31:16 +00001381
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001382 ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00001383
Ted Kremenek902393b2009-04-28 00:51:56 +00001384 // The starting block for the loop increment is the block that should
1385 // represent the 'loop target' for looping back to the start of the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001386 ContinueJumpTarget.Block->setLoopTarget(F);
Ted Kremenek902393b2009-04-28 00:51:56 +00001387
Mike Stump31feda52009-07-17 01:31:16 +00001388 // Now populate the body block, and in the process create new blocks as we
1389 // walk the body of the loop.
Ted Kremenek93668002009-07-17 22:18:43 +00001390 CFGBlock* BodyBlock = addStmt(F->getBody());
Ted Kremeneke9610502007-08-30 18:39:40 +00001391
1392 if (!BodyBlock)
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001393 BodyBlock = ContinueJumpTarget.Block;//can happen for "for (...;...;...);"
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001394 else if (badCFG)
Ted Kremenek30754282009-07-24 04:47:11 +00001395 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001396
Ted Kremenek30754282009-07-24 04:47:11 +00001397 // This new body block is a successor to our "exit" condition block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001398 AddSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001399 }
Mike Stump31feda52009-07-17 01:31:16 +00001400
Ted Kremenek30754282009-07-24 04:47:11 +00001401 // Link up the condition block with the code that follows the loop. (the
1402 // false branch).
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001403 AddSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00001404
Ted Kremenek9aae5132007-08-23 21:42:29 +00001405 // If the loop contains initialization, create a new block for those
Mike Stump31feda52009-07-17 01:31:16 +00001406 // statements. This block can also contain statements that precede the loop.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001407 if (Stmt* I = F->getInit()) {
1408 Block = createBlock();
Ted Kremenek81e14852007-08-27 19:46:09 +00001409 return addStmt(I);
Mike Stump31feda52009-07-17 01:31:16 +00001410 } else {
1411 // There is no loop initialization. We are thus basically a while loop.
1412 // NULL out Block to force lazy block construction.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001413 Block = NULL;
Ted Kremeneka1523a32008-02-27 07:20:00 +00001414 Succ = EntryConditionBlock;
Ted Kremenek81e14852007-08-27 19:46:09 +00001415 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001416 }
1417}
1418
Ted Kremenek5868ec62010-04-11 17:02:10 +00001419CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) {
1420 if (asc.alwaysAdd()) {
1421 autoCreateBlock();
1422 AppendStmt(Block, M, asc);
1423 }
1424 return Visit(M->getBase(),
1425 M->isArrow() ? AddStmtChoice::NotAlwaysAdd
1426 : AddStmtChoice::AsLValueNotAlwaysAdd);
1427}
1428
Ted Kremenek9d56e642008-11-11 17:10:00 +00001429CFGBlock* CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt* S) {
1430 // Objective-C fast enumeration 'for' statements:
1431 // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
1432 //
1433 // for ( Type newVariable in collection_expression ) { statements }
1434 //
1435 // becomes:
1436 //
1437 // prologue:
1438 // 1. collection_expression
1439 // T. jump to loop_entry
1440 // loop_entry:
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001441 // 1. side-effects of element expression
Ted Kremenek9d56e642008-11-11 17:10:00 +00001442 // 1. ObjCForCollectionStmt [performs binding to newVariable]
1443 // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil]
1444 // TB:
1445 // statements
1446 // T. jump to loop_entry
1447 // FB:
1448 // what comes after
1449 //
1450 // and
1451 //
1452 // Type existingItem;
1453 // for ( existingItem in expression ) { statements }
1454 //
1455 // becomes:
1456 //
Mike Stump31feda52009-07-17 01:31:16 +00001457 // the same with newVariable replaced with existingItem; the binding works
1458 // the same except that for one ObjCForCollectionStmt::getElement() returns
1459 // a DeclStmt and the other returns a DeclRefExpr.
Ted Kremenek9d56e642008-11-11 17:10:00 +00001460 //
Mike Stump31feda52009-07-17 01:31:16 +00001461
Ted Kremenek9d56e642008-11-11 17:10:00 +00001462 CFGBlock* LoopSuccessor = 0;
Mike Stump31feda52009-07-17 01:31:16 +00001463
Ted Kremenek9d56e642008-11-11 17:10:00 +00001464 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001465 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001466 return 0;
Ted Kremenek9d56e642008-11-11 17:10:00 +00001467 LoopSuccessor = Block;
1468 Block = 0;
Ted Kremenek93668002009-07-17 22:18:43 +00001469 } else
1470 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00001471
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001472 // Build the condition blocks.
1473 CFGBlock* ExitConditionBlock = createBlock(false);
1474 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001475
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001476 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00001477 ExitConditionBlock->setTerminator(S);
1478
1479 // The last statement in the block should be the ObjCForCollectionStmt, which
1480 // performs the actual binding to 'element' and determines if there are any
1481 // more items in the collection.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001482 AppendStmt(ExitConditionBlock, S);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001483 Block = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001484
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001485 // Walk the 'element' expression to see if there are any side-effects. We
Mike Stump31feda52009-07-17 01:31:16 +00001486 // generate new blocks as necesary. We DON'T add the statement by default to
1487 // the CFG unless it contains control-flow.
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001488 EntryConditionBlock = Visit(S->getElement(), AddStmtChoice::NotAlwaysAdd);
Mike Stump31feda52009-07-17 01:31:16 +00001489 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001490 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001491 return 0;
1492 Block = 0;
1493 }
Mike Stump31feda52009-07-17 01:31:16 +00001494
1495 // The condition block is the implicit successor for the loop body as well as
1496 // any code above the loop.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001497 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001498
Ted Kremenek9d56e642008-11-11 17:10:00 +00001499 // Now create the true branch.
Mike Stump31feda52009-07-17 01:31:16 +00001500 {
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001501 // Save the current values for Succ, continue and break targets.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001502 SaveAndRestore<CFGBlock*> save_Succ(Succ);
1503 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
1504 save_break(BreakJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00001505
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001506 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
1507 ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00001508
Ted Kremenek93668002009-07-17 22:18:43 +00001509 CFGBlock* BodyBlock = addStmt(S->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00001510
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001511 if (!BodyBlock)
1512 BodyBlock = EntryConditionBlock; // can happen for "for (X in Y) ;"
Ted Kremenek55957a82009-05-02 00:13:27 +00001513 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001514 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001515 return 0;
1516 }
Mike Stump31feda52009-07-17 01:31:16 +00001517
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001518 // This new body block is a successor to our "exit" condition block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001519 AddSuccessor(ExitConditionBlock, BodyBlock);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001520 }
Mike Stump31feda52009-07-17 01:31:16 +00001521
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001522 // Link up the condition block with the code that follows the loop.
1523 // (the false branch).
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001524 AddSuccessor(ExitConditionBlock, LoopSuccessor);
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001525
Ted Kremenek9d56e642008-11-11 17:10:00 +00001526 // Now create a prologue block to contain the collection expression.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +00001527 Block = createBlock();
Ted Kremenek9d56e642008-11-11 17:10:00 +00001528 return addStmt(S->getCollection());
Mike Stump31feda52009-07-17 01:31:16 +00001529}
1530
Ted Kremenek49805452009-05-02 01:49:13 +00001531CFGBlock* CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt* S) {
1532 // FIXME: Add locking 'primitives' to CFG for @synchronized.
Mike Stump31feda52009-07-17 01:31:16 +00001533
Ted Kremenek49805452009-05-02 01:49:13 +00001534 // Inline the body.
Ted Kremenek93668002009-07-17 22:18:43 +00001535 CFGBlock *SyncBlock = addStmt(S->getSynchBody());
Mike Stump31feda52009-07-17 01:31:16 +00001536
Ted Kremenekb3c657b2009-05-05 23:11:51 +00001537 // The sync body starts its own basic block. This makes it a little easier
1538 // for diagnostic clients.
1539 if (SyncBlock) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001540 if (badCFG)
Ted Kremenekb3c657b2009-05-05 23:11:51 +00001541 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001542
Ted Kremenekb3c657b2009-05-05 23:11:51 +00001543 Block = 0;
Ted Kremenekecc31c92010-05-13 16:38:08 +00001544 Succ = SyncBlock;
Ted Kremenekb3c657b2009-05-05 23:11:51 +00001545 }
Mike Stump31feda52009-07-17 01:31:16 +00001546
Ted Kremeneked12f1b2010-09-10 03:05:33 +00001547 // Add the @synchronized to the CFG.
1548 autoCreateBlock();
1549 AppendStmt(Block, S, AddStmtChoice::AlwaysAdd);
1550
Ted Kremenek49805452009-05-02 01:49:13 +00001551 // Inline the sync expression.
Ted Kremenek93668002009-07-17 22:18:43 +00001552 return addStmt(S->getSynchExpr());
Ted Kremenek49805452009-05-02 01:49:13 +00001553}
Mike Stump31feda52009-07-17 01:31:16 +00001554
Ted Kremenek89cc8ea2009-03-30 22:29:21 +00001555CFGBlock* CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt* S) {
Ted Kremenek93668002009-07-17 22:18:43 +00001556 // FIXME
Ted Kremenek89be6522009-04-07 04:26:02 +00001557 return NYS();
Ted Kremenek89cc8ea2009-03-30 22:29:21 +00001558}
Ted Kremenek9d56e642008-11-11 17:10:00 +00001559
Ted Kremenek9aae5132007-08-23 21:42:29 +00001560CFGBlock* CFGBuilder::VisitWhileStmt(WhileStmt* W) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00001561 CFGBlock* LoopSuccessor = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001562
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001563 LocalScope::const_iterator LoopBeginScopePos = ScopePos;
1564
Mike Stump014b3ea2009-07-21 01:12:51 +00001565 // "while" is a control-flow statement. Thus we stop processing the current
1566 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001567 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001568 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001569 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001570 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00001571 } else
1572 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00001573
1574 // Because of short-circuit evaluation, the condition of the loop can span
1575 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
1576 // evaluate the condition.
Ted Kremenek81e14852007-08-27 19:46:09 +00001577 CFGBlock* ExitConditionBlock = createBlock(false);
1578 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001579
Ted Kremenek81e14852007-08-27 19:46:09 +00001580 // Set the terminator for the "exit" condition block.
1581 ExitConditionBlock->setTerminator(W);
Mike Stump31feda52009-07-17 01:31:16 +00001582
1583 // Now add the actual condition to the condition block. Because the condition
1584 // itself may contain control-flow, new blocks may be created. Thus we update
1585 // "Succ" after adding the condition.
Ted Kremenek81e14852007-08-27 19:46:09 +00001586 if (Stmt* C = W->getCond()) {
1587 Block = ExitConditionBlock;
1588 EntryConditionBlock = addStmt(C);
Ted Kremenek49936f72009-04-28 03:09:44 +00001589 assert(Block == EntryConditionBlock);
Ted Kremenekdc03bd02010-08-02 23:46:59 +00001590
Ted Kremenek1ce53c42009-12-24 01:34:10 +00001591 // If this block contains a condition variable, add both the condition
1592 // variable and initializer to the CFG.
1593 if (VarDecl *VD = W->getConditionVariable()) {
1594 if (Expr *Init = VD->getInit()) {
1595 autoCreateBlock();
1596 AppendStmt(Block, W, AddStmtChoice::AlwaysAdd);
1597 EntryConditionBlock = addStmt(Init);
1598 assert(Block == EntryConditionBlock);
1599 }
1600 }
1601
Ted Kremenek55957a82009-05-02 00:13:27 +00001602 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001603 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001604 return 0;
1605 }
Ted Kremenek81e14852007-08-27 19:46:09 +00001606 }
Mike Stump31feda52009-07-17 01:31:16 +00001607
1608 // The condition block is the implicit successor for the loop body as well as
1609 // any code above the loop.
Ted Kremenek81e14852007-08-27 19:46:09 +00001610 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001611
Mike Stump773582d2009-07-23 23:25:26 +00001612 // See if this is a known constant.
Ted Kremenek30754282009-07-24 04:47:11 +00001613 const TryResult& KnownVal = TryEvaluateBool(W->getCond());
Mike Stump773582d2009-07-23 23:25:26 +00001614
Ted Kremenek9aae5132007-08-23 21:42:29 +00001615 // Process the loop body.
1616 {
Ted Kremenek49936f72009-04-28 03:09:44 +00001617 assert(W->getBody());
Ted Kremenek9aae5132007-08-23 21:42:29 +00001618
1619 // Save the current values for Block, Succ, and continue and break targets
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001620 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
1621 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
1622 save_break(BreakJumpTarget);
Ted Kremenek49936f72009-04-28 03:09:44 +00001623
Mike Stump31feda52009-07-17 01:31:16 +00001624 // Create an empty block to represent the transition block for looping back
1625 // to the head of the loop.
Ted Kremenek49936f72009-04-28 03:09:44 +00001626 Block = 0;
1627 assert(Succ == EntryConditionBlock);
1628 Succ = createBlock();
1629 Succ->setLoopTarget(W);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001630 ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00001631
Ted Kremenek9aae5132007-08-23 21:42:29 +00001632 // All breaks should go to the code following the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001633 BreakJumpTarget = JumpTarget(LoopSuccessor, LoopBeginScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00001634
Ted Kremenek9aae5132007-08-23 21:42:29 +00001635 // NULL out Block to force lazy instantiation of blocks for the body.
1636 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001637
Ted Kremenek9aae5132007-08-23 21:42:29 +00001638 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek93668002009-07-17 22:18:43 +00001639 CFGBlock* BodyBlock = addStmt(W->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00001640
Ted Kremeneke9610502007-08-30 18:39:40 +00001641 if (!BodyBlock)
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001642 BodyBlock = ContinueJumpTarget.Block; // can happen for "while(...) ;"
Ted Kremenek55957a82009-05-02 00:13:27 +00001643 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001644 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001645 return 0;
1646 }
Mike Stump31feda52009-07-17 01:31:16 +00001647
Ted Kremenek30754282009-07-24 04:47:11 +00001648 // Add the loop body entry as a successor to the condition.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001649 AddSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001650 }
Mike Stump31feda52009-07-17 01:31:16 +00001651
Ted Kremenek30754282009-07-24 04:47:11 +00001652 // Link up the condition block with the code that follows the loop. (the
1653 // false branch).
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001654 AddSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00001655
1656 // There can be no more statements in the condition block since we loop back
1657 // to this block. NULL out Block to force lazy creation of another block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001658 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001659
Ted Kremenek1ce53c42009-12-24 01:34:10 +00001660 // Return the condition block, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00001661 Succ = EntryConditionBlock;
Ted Kremenek81e14852007-08-27 19:46:09 +00001662 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001663}
Mike Stump11289f42009-09-09 15:08:12 +00001664
1665
Ted Kremenek93668002009-07-17 22:18:43 +00001666CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt* S) {
1667 // FIXME: For now we pretend that @catch and the code it contains does not
1668 // exit.
1669 return Block;
1670}
Mike Stump31feda52009-07-17 01:31:16 +00001671
Ted Kremenek93041ba2008-12-09 20:20:09 +00001672CFGBlock* CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt* S) {
1673 // FIXME: This isn't complete. We basically treat @throw like a return
1674 // statement.
Mike Stump31feda52009-07-17 01:31:16 +00001675
Ted Kremenek0868eea2009-09-24 18:45:41 +00001676 // If we were in the middle of a block we stop processing that block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001677 if (badCFG)
Ted Kremenek93668002009-07-17 22:18:43 +00001678 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001679
Ted Kremenek93041ba2008-12-09 20:20:09 +00001680 // Create the new block.
1681 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00001682
Ted Kremenek93041ba2008-12-09 20:20:09 +00001683 // The Exit block is the only successor.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001684 AddSuccessor(Block, &cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +00001685
1686 // Add the statement to the block. This may create new blocks if S contains
1687 // control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001688 return VisitStmt(S, AddStmtChoice::AlwaysAdd);
Ted Kremenek93041ba2008-12-09 20:20:09 +00001689}
Ted Kremenek9aae5132007-08-23 21:42:29 +00001690
Mike Stump8dd1b6b2009-07-22 22:56:04 +00001691CFGBlock* CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr* T) {
Ted Kremenek0868eea2009-09-24 18:45:41 +00001692 // If we were in the middle of a block we stop processing that block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001693 if (badCFG)
Mike Stump8dd1b6b2009-07-22 22:56:04 +00001694 return 0;
1695
1696 // Create the new block.
1697 Block = createBlock(false);
1698
Mike Stumpbbf5ba62010-01-19 02:20:09 +00001699 if (TryTerminatedBlock)
1700 // The current try statement is the only successor.
1701 AddSuccessor(Block, TryTerminatedBlock);
Ted Kremenekdc03bd02010-08-02 23:46:59 +00001702 else
Mike Stumpbbf5ba62010-01-19 02:20:09 +00001703 // otherwise the Exit block is the only successor.
1704 AddSuccessor(Block, &cfg->getExit());
Mike Stump8dd1b6b2009-07-22 22:56:04 +00001705
1706 // Add the statement to the block. This may create new blocks if S contains
1707 // control-flow (short-circuit operations).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001708 return VisitStmt(T, AddStmtChoice::AlwaysAdd);
Mike Stump8dd1b6b2009-07-22 22:56:04 +00001709}
1710
Ted Kremenek93668002009-07-17 22:18:43 +00001711CFGBlock *CFGBuilder::VisitDoStmt(DoStmt* D) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00001712 CFGBlock* LoopSuccessor = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001713
Mike Stump8d50b6a2009-07-21 01:27:50 +00001714 // "do...while" is a control-flow statement. Thus we stop processing the
1715 // current block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001716 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001717 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001718 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001719 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00001720 } else
1721 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00001722
1723 // Because of short-circuit evaluation, the condition of the loop can span
1724 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
1725 // evaluate the condition.
Ted Kremenek81e14852007-08-27 19:46:09 +00001726 CFGBlock* ExitConditionBlock = createBlock(false);
1727 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001728
Ted Kremenek81e14852007-08-27 19:46:09 +00001729 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00001730 ExitConditionBlock->setTerminator(D);
1731
1732 // Now add the actual condition to the condition block. Because the condition
1733 // itself may contain control-flow, new blocks may be created.
Ted Kremenek81e14852007-08-27 19:46:09 +00001734 if (Stmt* C = D->getCond()) {
1735 Block = ExitConditionBlock;
1736 EntryConditionBlock = addStmt(C);
Ted Kremenek55957a82009-05-02 00:13:27 +00001737 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001738 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001739 return 0;
1740 }
Ted Kremenek81e14852007-08-27 19:46:09 +00001741 }
Mike Stump31feda52009-07-17 01:31:16 +00001742
Ted Kremeneka1523a32008-02-27 07:20:00 +00001743 // The condition block is the implicit successor for the loop body.
Ted Kremenek81e14852007-08-27 19:46:09 +00001744 Succ = EntryConditionBlock;
1745
Mike Stump773582d2009-07-23 23:25:26 +00001746 // See if this is a known constant.
Ted Kremenek30754282009-07-24 04:47:11 +00001747 const TryResult &KnownVal = TryEvaluateBool(D->getCond());
Mike Stump773582d2009-07-23 23:25:26 +00001748
Ted Kremenek9aae5132007-08-23 21:42:29 +00001749 // Process the loop body.
Ted Kremenek81e14852007-08-27 19:46:09 +00001750 CFGBlock* BodyBlock = NULL;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001751 {
Ted Kremenek1362b8b2010-01-19 20:46:35 +00001752 assert(D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00001753
Ted Kremenek9aae5132007-08-23 21:42:29 +00001754 // Save the current values for Block, Succ, and continue and break targets
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001755 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
1756 SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
1757 save_break(BreakJumpTarget);
Mike Stump31feda52009-07-17 01:31:16 +00001758
Ted Kremenek9aae5132007-08-23 21:42:29 +00001759 // All continues within this loop should go to the condition block
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001760 ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00001761
Ted Kremenek9aae5132007-08-23 21:42:29 +00001762 // All breaks should go to the code following the loop.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001763 BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00001764
Ted Kremenek9aae5132007-08-23 21:42:29 +00001765 // NULL out Block to force lazy instantiation of blocks for the body.
1766 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001767
Ted Kremenek9aae5132007-08-23 21:42:29 +00001768 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek93668002009-07-17 22:18:43 +00001769 BodyBlock = addStmt(D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00001770
Ted Kremeneke9610502007-08-30 18:39:40 +00001771 if (!BodyBlock)
Ted Kremenek39321aa2008-02-27 00:28:17 +00001772 BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
Ted Kremenek55957a82009-05-02 00:13:27 +00001773 else if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001774 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001775 return 0;
1776 }
Mike Stump31feda52009-07-17 01:31:16 +00001777
Ted Kremenek110974d2010-08-17 20:59:56 +00001778 if (!KnownVal.isFalse()) {
1779 // Add an intermediate block between the BodyBlock and the
1780 // ExitConditionBlock to represent the "loop back" transition. Create an
1781 // empty block to represent the transition block for looping back to the
1782 // head of the loop.
1783 // FIXME: Can we do this more efficiently without adding another block?
1784 Block = NULL;
1785 Succ = BodyBlock;
1786 CFGBlock *LoopBackBlock = createBlock();
1787 LoopBackBlock->setLoopTarget(D);
Mike Stump31feda52009-07-17 01:31:16 +00001788
Ted Kremenek110974d2010-08-17 20:59:56 +00001789 // Add the loop body entry as a successor to the condition.
1790 AddSuccessor(ExitConditionBlock, LoopBackBlock);
1791 }
1792 else
1793 AddSuccessor(ExitConditionBlock, NULL);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001794 }
Mike Stump31feda52009-07-17 01:31:16 +00001795
Ted Kremenek30754282009-07-24 04:47:11 +00001796 // Link up the condition block with the code that follows the loop.
1797 // (the false branch).
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001798 AddSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00001799
1800 // There can be no more statements in the body block(s) since we loop back to
1801 // the body. NULL out Block to force lazy creation of another block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001802 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001803
Ted Kremenek9aae5132007-08-23 21:42:29 +00001804 // Return the loop body, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00001805 Succ = BodyBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001806 return BodyBlock;
1807}
1808
1809CFGBlock* CFGBuilder::VisitContinueStmt(ContinueStmt* C) {
1810 // "continue" is a control-flow statement. Thus we stop processing the
1811 // current block.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001812 if (badCFG)
1813 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001814
Ted Kremenek9aae5132007-08-23 21:42:29 +00001815 // Now create a new block that ends with the continue statement.
1816 Block = createBlock(false);
1817 Block->setTerminator(C);
Mike Stump31feda52009-07-17 01:31:16 +00001818
Ted Kremenek9aae5132007-08-23 21:42:29 +00001819 // If there is no target for the continue, then we are looking at an
Ted Kremenek882cf062009-04-07 18:53:24 +00001820 // incomplete AST. This means the CFG cannot be constructed.
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001821 if (ContinueJumpTarget.Block) {
Marcin Swiderski667ffec2010-10-01 00:23:17 +00001822 addAutomaticObjDtors(ScopePos, ContinueJumpTarget.ScopePos, C);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001823 AddSuccessor(Block, ContinueJumpTarget.Block);
1824 } else
Ted Kremenek882cf062009-04-07 18:53:24 +00001825 badCFG = true;
Mike Stump31feda52009-07-17 01:31:16 +00001826
Ted Kremenek9aae5132007-08-23 21:42:29 +00001827 return Block;
1828}
Mike Stump11289f42009-09-09 15:08:12 +00001829
Ted Kremenek0747de62009-07-18 00:47:21 +00001830CFGBlock *CFGBuilder::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E,
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001831 AddStmtChoice asc) {
Ted Kremenek0747de62009-07-18 00:47:21 +00001832
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001833 if (asc.alwaysAdd()) {
Ted Kremenek0747de62009-07-18 00:47:21 +00001834 autoCreateBlock();
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001835 AppendStmt(Block, E);
Ted Kremenek0747de62009-07-18 00:47:21 +00001836 }
Mike Stump11289f42009-09-09 15:08:12 +00001837
Ted Kremenek93668002009-07-17 22:18:43 +00001838 // VLA types have expressions that must be evaluated.
1839 if (E->isArgumentType()) {
1840 for (VariableArrayType* VA = FindVA(E->getArgumentType().getTypePtr());
1841 VA != 0; VA = FindVA(VA->getElementType().getTypePtr()))
1842 addStmt(VA->getSizeExpr());
Ted Kremenek55957a82009-05-02 00:13:27 +00001843 }
Mike Stump11289f42009-09-09 15:08:12 +00001844
Mike Stump31feda52009-07-17 01:31:16 +00001845 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001846}
Mike Stump11289f42009-09-09 15:08:12 +00001847
Ted Kremenek93668002009-07-17 22:18:43 +00001848/// VisitStmtExpr - Utility method to handle (nested) statement
1849/// expressions (a GCC extension).
Ted Kremenek4cad5fc2009-12-16 03:18:58 +00001850CFGBlock* CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) {
1851 if (asc.alwaysAdd()) {
Ted Kremenek0747de62009-07-18 00:47:21 +00001852 autoCreateBlock();
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001853 AppendStmt(Block, SE);
Ted Kremenek0747de62009-07-18 00:47:21 +00001854 }
Ted Kremenek93668002009-07-17 22:18:43 +00001855 return VisitCompoundStmt(SE->getSubStmt());
1856}
Ted Kremenek9aae5132007-08-23 21:42:29 +00001857
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001858CFGBlock* CFGBuilder::VisitSwitchStmt(SwitchStmt* Terminator) {
Mike Stump31feda52009-07-17 01:31:16 +00001859 // "switch" is a control-flow statement. Thus we stop processing the current
1860 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001861 CFGBlock* SwitchSuccessor = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001862
Ted Kremenek9aae5132007-08-23 21:42:29 +00001863 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001864 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001865 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001866 SwitchSuccessor = Block;
Mike Stump31feda52009-07-17 01:31:16 +00001867 } else SwitchSuccessor = Succ;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001868
1869 // Save the current "switch" context.
1870 SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
Ted Kremenek654c78f2008-02-13 22:05:39 +00001871 save_default(DefaultCaseBlock);
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001872 SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
Ted Kremenek654c78f2008-02-13 22:05:39 +00001873
Mike Stump31feda52009-07-17 01:31:16 +00001874 // Set the "default" case to be the block after the switch statement. If the
1875 // switch statement contains a "default:", this value will be overwritten with
1876 // the block for that code.
Ted Kremenek654c78f2008-02-13 22:05:39 +00001877 DefaultCaseBlock = SwitchSuccessor;
Mike Stump31feda52009-07-17 01:31:16 +00001878
Ted Kremenek9aae5132007-08-23 21:42:29 +00001879 // Create a new block that will contain the switch statement.
1880 SwitchTerminatedBlock = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00001881
Ted Kremenek9aae5132007-08-23 21:42:29 +00001882 // Now process the switch body. The code after the switch is the implicit
1883 // successor.
1884 Succ = SwitchSuccessor;
Marcin Swiderski8b99b8a2010-09-25 11:05:21 +00001885 BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos);
Mike Stump31feda52009-07-17 01:31:16 +00001886
1887 // When visiting the body, the case statements should automatically get linked
1888 // up to the switch. We also don't keep a pointer to the body, since all
1889 // control-flow from the switch goes to case/default statements.
Ted Kremenek1362b8b2010-01-19 20:46:35 +00001890 assert(Terminator->getBody() && "switch must contain a non-NULL body");
Ted Kremenek81e14852007-08-27 19:46:09 +00001891 Block = NULL;
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001892 addStmt(Terminator->getBody());
Ted Kremenek55957a82009-05-02 00:13:27 +00001893 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001894 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001895 return 0;
1896 }
Ted Kremenek81e14852007-08-27 19:46:09 +00001897
Mike Stump31feda52009-07-17 01:31:16 +00001898 // If we have no "default:" case, the default transition is to the code
1899 // following the switch body.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001900 AddSuccessor(SwitchTerminatedBlock, DefaultCaseBlock);
Mike Stump31feda52009-07-17 01:31:16 +00001901
Ted Kremenek81e14852007-08-27 19:46:09 +00001902 // Add the terminator and condition in the switch block.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001903 SwitchTerminatedBlock->setTerminator(Terminator);
Ted Kremenek1362b8b2010-01-19 20:46:35 +00001904 assert(Terminator->getCond() && "switch condition must be non-NULL");
Ted Kremenek9aae5132007-08-23 21:42:29 +00001905 Block = SwitchTerminatedBlock;
Ted Kremenek8b5dc122009-12-24 00:39:26 +00001906 Block = addStmt(Terminator->getCond());
Ted Kremenekdc03bd02010-08-02 23:46:59 +00001907
Ted Kremenek8b5dc122009-12-24 00:39:26 +00001908 // Finally, if the SwitchStmt contains a condition variable, add both the
1909 // SwitchStmt and the condition variable initialization to the CFG.
1910 if (VarDecl *VD = Terminator->getConditionVariable()) {
1911 if (Expr *Init = VD->getInit()) {
1912 autoCreateBlock();
1913 AppendStmt(Block, Terminator, AddStmtChoice::AlwaysAdd);
1914 addStmt(Init);
1915 }
1916 }
Ted Kremenekdc03bd02010-08-02 23:46:59 +00001917
Ted Kremenek8b5dc122009-12-24 00:39:26 +00001918 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001919}
1920
Ted Kremenek93668002009-07-17 22:18:43 +00001921CFGBlock* CFGBuilder::VisitCaseStmt(CaseStmt* CS) {
Mike Stump31feda52009-07-17 01:31:16 +00001922 // CaseStmts are essentially labels, so they are the first statement in a
1923 // block.
Ted Kremenek60fa6572010-08-04 23:54:30 +00001924 CFGBlock *TopBlock = 0, *LastBlock = 0;
1925
1926 if (Stmt *Sub = CS->getSubStmt()) {
1927 // For deeply nested chains of CaseStmts, instead of doing a recursion
1928 // (which can blow out the stack), manually unroll and create blocks
1929 // along the way.
1930 while (isa<CaseStmt>(Sub)) {
1931 CFGBlock *CurrentBlock = createBlock(false);
1932 CurrentBlock->setLabel(CS);
Ted Kremenek55e91e82007-08-30 18:48:11 +00001933
Ted Kremenek60fa6572010-08-04 23:54:30 +00001934 if (TopBlock)
1935 AddSuccessor(LastBlock, CurrentBlock);
1936 else
1937 TopBlock = CurrentBlock;
1938
1939 AddSuccessor(SwitchTerminatedBlock, CurrentBlock);
1940 LastBlock = CurrentBlock;
1941
1942 CS = cast<CaseStmt>(Sub);
1943 Sub = CS->getSubStmt();
1944 }
1945
1946 addStmt(Sub);
1947 }
Mike Stump11289f42009-09-09 15:08:12 +00001948
Ted Kremenek55e91e82007-08-30 18:48:11 +00001949 CFGBlock* CaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00001950 if (!CaseBlock)
1951 CaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00001952
1953 // Cases statements partition blocks, so this is the top of the basic block we
1954 // were processing (the "case XXX:" is the label).
Ted Kremenek93668002009-07-17 22:18:43 +00001955 CaseBlock->setLabel(CS);
1956
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001957 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001958 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001959
1960 // Add this block to the list of successors for the block with the switch
1961 // statement.
Ted Kremenek93668002009-07-17 22:18:43 +00001962 assert(SwitchTerminatedBlock);
Ted Kremenek289ae4f2009-10-12 20:55:07 +00001963 AddSuccessor(SwitchTerminatedBlock, CaseBlock);
Mike Stump31feda52009-07-17 01:31:16 +00001964
Ted Kremenek9aae5132007-08-23 21:42:29 +00001965 // We set Block to NULL to allow lazy creation of a new block (if necessary)
1966 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001967
Ted Kremenek60fa6572010-08-04 23:54:30 +00001968 if (TopBlock) {
1969 AddSuccessor(LastBlock, CaseBlock);
1970 Succ = TopBlock;
1971 }
1972 else {
1973 // This block is now the implicit successor of other blocks.
1974 Succ = CaseBlock;
1975 }
Mike Stump31feda52009-07-17 01:31:16 +00001976
Ted Kremenek60fa6572010-08-04 23:54:30 +00001977 return Succ;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001978}
Mike Stump31feda52009-07-17 01:31:16 +00001979
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001980CFGBlock* CFGBuilder::VisitDefaultStmt(DefaultStmt* Terminator) {
Ted Kremenek93668002009-07-17 22:18:43 +00001981 if (Terminator->getSubStmt())
1982 addStmt(Terminator->getSubStmt());
Mike Stump11289f42009-09-09 15:08:12 +00001983
Ted Kremenek654c78f2008-02-13 22:05:39 +00001984 DefaultCaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00001985
1986 if (!DefaultCaseBlock)
1987 DefaultCaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00001988
1989 // Default statements partition blocks, so this is the top of the basic block
1990 // we were processing (the "default:" is the label).
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001991 DefaultCaseBlock->setLabel(Terminator);
Mike Stump11289f42009-09-09 15:08:12 +00001992
Zhongxing Xu33dfc072010-09-06 07:32:31 +00001993 if (badCFG)
Ted Kremenek55957a82009-05-02 00:13:27 +00001994 return 0;
Ted Kremenek654c78f2008-02-13 22:05:39 +00001995
Mike Stump31feda52009-07-17 01:31:16 +00001996 // Unlike case statements, we don't add the default block to the successors
1997 // for the switch statement immediately. This is done when we finish
1998 // processing the switch statement. This allows for the default case
1999 // (including a fall-through to the code after the switch statement) to always
2000 // be the last successor of a switch-terminated block.
2001
Ted Kremenek654c78f2008-02-13 22:05:39 +00002002 // We set Block to NULL to allow lazy creation of a new block (if necessary)
2003 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00002004
Ted Kremenek654c78f2008-02-13 22:05:39 +00002005 // This block is now the implicit successor of other blocks.
2006 Succ = DefaultCaseBlock;
Mike Stump31feda52009-07-17 01:31:16 +00002007
2008 return DefaultCaseBlock;
Ted Kremenek9682be12008-02-13 21:46:34 +00002009}
Ted Kremenek9aae5132007-08-23 21:42:29 +00002010
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002011CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) {
2012 // "try"/"catch" is a control-flow statement. Thus we stop processing the
2013 // current block.
2014 CFGBlock* TrySuccessor = NULL;
2015
2016 if (Block) {
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002017 if (badCFG)
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002018 return 0;
2019 TrySuccessor = Block;
2020 } else TrySuccessor = Succ;
2021
Mike Stump0bdba6c2010-01-20 01:15:34 +00002022 CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002023
2024 // Create a new block that will contain the try statement.
Mike Stump845384a2010-01-20 01:30:58 +00002025 CFGBlock *NewTryTerminatedBlock = createBlock(false);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002026 // Add the terminator in the try block.
Mike Stump845384a2010-01-20 01:30:58 +00002027 NewTryTerminatedBlock->setTerminator(Terminator);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002028
Mike Stump0bdba6c2010-01-20 01:15:34 +00002029 bool HasCatchAll = false;
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002030 for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) {
2031 // The code after the try is the implicit successor.
2032 Succ = TrySuccessor;
2033 CXXCatchStmt *CS = Terminator->getHandler(h);
Mike Stump0bdba6c2010-01-20 01:15:34 +00002034 if (CS->getExceptionDecl() == 0) {
2035 HasCatchAll = true;
2036 }
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002037 Block = NULL;
2038 CFGBlock *CatchBlock = VisitCXXCatchStmt(CS);
2039 if (CatchBlock == 0)
2040 return 0;
2041 // Add this block to the list of successors for the block with the try
2042 // statement.
Mike Stump845384a2010-01-20 01:30:58 +00002043 AddSuccessor(NewTryTerminatedBlock, CatchBlock);
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002044 }
Mike Stump0bdba6c2010-01-20 01:15:34 +00002045 if (!HasCatchAll) {
2046 if (PrevTryTerminatedBlock)
Mike Stump845384a2010-01-20 01:30:58 +00002047 AddSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock);
Mike Stump0bdba6c2010-01-20 01:15:34 +00002048 else
Mike Stump845384a2010-01-20 01:30:58 +00002049 AddSuccessor(NewTryTerminatedBlock, &cfg->getExit());
Mike Stump0bdba6c2010-01-20 01:15:34 +00002050 }
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002051
2052 // The code after the try is the implicit successor.
2053 Succ = TrySuccessor;
2054
Mike Stump845384a2010-01-20 01:30:58 +00002055 // Save the current "try" context.
2056 SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock);
2057 TryTerminatedBlock = NewTryTerminatedBlock;
2058
Ted Kremenek1362b8b2010-01-19 20:46:35 +00002059 assert(Terminator->getTryBlock() && "try must contain a non-NULL body");
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002060 Block = NULL;
Ted Kremenek60983dc2010-01-19 20:52:05 +00002061 Block = addStmt(Terminator->getTryBlock());
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002062 return Block;
2063}
2064
2065CFGBlock* CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt* CS) {
2066 // CXXCatchStmt are treated like labels, so they are the first statement in a
2067 // block.
2068
2069 if (CS->getHandlerBlock())
2070 addStmt(CS->getHandlerBlock());
2071
2072 CFGBlock* CatchBlock = Block;
2073 if (!CatchBlock)
2074 CatchBlock = createBlock();
2075
2076 CatchBlock->setLabel(CS);
2077
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002078 if (badCFG)
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002079 return 0;
2080
2081 // We set Block to NULL to allow lazy creation of a new block (if necessary)
2082 Block = NULL;
2083
2084 return CatchBlock;
2085}
2086
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002087CFGBlock *CFGBuilder::VisitCXXMemberCallExpr(CXXMemberCallExpr *C,
Zhongxing Xu7e612172010-04-13 09:38:01 +00002088 AddStmtChoice asc) {
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002089 AddStmtChoice::Kind K = asc.asLValue() ? AddStmtChoice::AlwaysAddAsLValue
Zhongxing Xub5e94ac2010-04-14 05:50:04 +00002090 : AddStmtChoice::AlwaysAdd;
Zhongxing Xu7e612172010-04-13 09:38:01 +00002091 autoCreateBlock();
Zhongxing Xub5e94ac2010-04-14 05:50:04 +00002092 AppendStmt(Block, C, AddStmtChoice(K));
Zhongxing Xu7e612172010-04-13 09:38:01 +00002093 return VisitChildren(C);
2094}
2095
Ted Kremenekeda180e22007-08-28 19:26:49 +00002096CFGBlock* CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt* I) {
Mike Stump31feda52009-07-17 01:31:16 +00002097 // Lazily create the indirect-goto dispatch block if there isn't one already.
Ted Kremenekeda180e22007-08-28 19:26:49 +00002098 CFGBlock* IBlock = cfg->getIndirectGotoBlock();
Mike Stump31feda52009-07-17 01:31:16 +00002099
Ted Kremenekeda180e22007-08-28 19:26:49 +00002100 if (!IBlock) {
2101 IBlock = createBlock(false);
2102 cfg->setIndirectGotoBlock(IBlock);
2103 }
Mike Stump31feda52009-07-17 01:31:16 +00002104
Ted Kremenekeda180e22007-08-28 19:26:49 +00002105 // IndirectGoto is a control-flow statement. Thus we stop processing the
2106 // current block and create a new one.
Zhongxing Xu33dfc072010-09-06 07:32:31 +00002107 if (badCFG)
Ted Kremenek93668002009-07-17 22:18:43 +00002108 return 0;
2109
Ted Kremenekeda180e22007-08-28 19:26:49 +00002110 Block = createBlock(false);
2111 Block->setTerminator(I);
Ted Kremenek289ae4f2009-10-12 20:55:07 +00002112 AddSuccessor(Block, IBlock);
Ted Kremenekeda180e22007-08-28 19:26:49 +00002113 return addStmt(I->getTarget());
2114}
2115
Ted Kremenek04cca642007-08-23 21:26:19 +00002116} // end anonymous namespace
Ted Kremenek889073f2007-08-23 16:51:22 +00002117
Mike Stump31feda52009-07-17 01:31:16 +00002118/// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has
2119/// no successors or predecessors. If this is the first block created in the
2120/// CFG, it is automatically set to be the Entry and Exit of the CFG.
Ted Kremenek813dd672007-09-05 20:02:05 +00002121CFGBlock* CFG::createBlock() {
Ted Kremenek889073f2007-08-23 16:51:22 +00002122 bool first_block = begin() == end();
2123
2124 // Create the block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00002125 CFGBlock *Mem = getAllocator().Allocate<CFGBlock>();
2126 new (Mem) CFGBlock(NumBlockIDs++, BlkBVC);
2127 Blocks.push_back(Mem, BlkBVC);
Ted Kremenek889073f2007-08-23 16:51:22 +00002128
2129 // If this is the first block, set it as the Entry and Exit.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00002130 if (first_block)
2131 Entry = Exit = &back();
Ted Kremenek889073f2007-08-23 16:51:22 +00002132
2133 // Return the block.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00002134 return &back();
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00002135}
2136
Ted Kremenek889073f2007-08-23 16:51:22 +00002137/// buildCFG - Constructs a CFG from an AST. Ownership of the returned
2138/// CFG is returned to the caller.
Mike Stump6bf1c082010-01-21 02:21:40 +00002139CFG* CFG::buildCFG(const Decl *D, Stmt* Statement, ASTContext *C,
Ted Kremeneke97b1eb2010-09-14 23:41:16 +00002140 BuildOptions BO) {
Ted Kremenek889073f2007-08-23 16:51:22 +00002141 CFGBuilder Builder;
Ted Kremeneke97b1eb2010-09-14 23:41:16 +00002142 return Builder.buildCFG(D, Statement, C, BO);
Ted Kremenek889073f2007-08-23 16:51:22 +00002143}
2144
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002145//===----------------------------------------------------------------------===//
2146// CFG: Queries for BlkExprs.
2147//===----------------------------------------------------------------------===//
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002148
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002149namespace {
Ted Kremenek85be7cf2008-01-17 20:48:37 +00002150 typedef llvm::DenseMap<const Stmt*,unsigned> BlkExprMapTy;
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002151}
2152
Ted Kremenekbff98442009-12-23 23:37:10 +00002153static void FindSubExprAssignments(Stmt *S,
2154 llvm::SmallPtrSet<Expr*,50>& Set) {
2155 if (!S)
Ted Kremenek95a123c2008-01-26 00:03:27 +00002156 return;
Mike Stump31feda52009-07-17 01:31:16 +00002157
Ted Kremenekbff98442009-12-23 23:37:10 +00002158 for (Stmt::child_iterator I=S->child_begin(), E=S->child_end(); I!=E; ++I) {
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002159 Stmt *child = *I;
Ted Kremenekbff98442009-12-23 23:37:10 +00002160 if (!child)
2161 continue;
Ted Kremenekdc03bd02010-08-02 23:46:59 +00002162
Ted Kremenekbff98442009-12-23 23:37:10 +00002163 if (BinaryOperator* B = dyn_cast<BinaryOperator>(child))
Ted Kremenek95a123c2008-01-26 00:03:27 +00002164 if (B->isAssignmentOp()) Set.insert(B);
Mike Stump31feda52009-07-17 01:31:16 +00002165
Ted Kremenekbff98442009-12-23 23:37:10 +00002166 FindSubExprAssignments(child, Set);
Ted Kremenek95a123c2008-01-26 00:03:27 +00002167 }
2168}
2169
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002170static BlkExprMapTy* PopulateBlkExprMap(CFG& cfg) {
2171 BlkExprMapTy* M = new BlkExprMapTy();
Mike Stump31feda52009-07-17 01:31:16 +00002172
2173 // Look for assignments that are used as subexpressions. These are the only
2174 // assignments that we want to *possibly* register as a block-level
2175 // expression. Basically, if an assignment occurs both in a subexpression and
2176 // at the block-level, it is a block-level expression.
Ted Kremenek95a123c2008-01-26 00:03:27 +00002177 llvm::SmallPtrSet<Expr*,50> SubExprAssignments;
Mike Stump31feda52009-07-17 01:31:16 +00002178
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002179 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I)
Ted Kremenek289ae4f2009-10-12 20:55:07 +00002180 for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI)
Zhongxing Xu2cd7a782010-09-16 01:25:47 +00002181 if (CFGStmt S = BI->getAs<CFGStmt>())
2182 FindSubExprAssignments(S, SubExprAssignments);
Ted Kremenek85be7cf2008-01-17 20:48:37 +00002183
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002184 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) {
Mike Stump31feda52009-07-17 01:31:16 +00002185
2186 // Iterate over the statements again on identify the Expr* and Stmt* at the
2187 // block-level that are block-level expressions.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002188
Zhongxing Xu2cd7a782010-09-16 01:25:47 +00002189 for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI) {
2190 CFGStmt CS = BI->getAs<CFGStmt>();
2191 if (!CS.isValid())
2192 continue;
2193 if (Expr* Exp = dyn_cast<Expr>(CS.getStmt())) {
Mike Stump31feda52009-07-17 01:31:16 +00002194
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002195 if (BinaryOperator* B = dyn_cast<BinaryOperator>(Exp)) {
Ted Kremenek95a123c2008-01-26 00:03:27 +00002196 // Assignment expressions that are not nested within another
Mike Stump31feda52009-07-17 01:31:16 +00002197 // expression are really "statements" whose value is never used by
2198 // another expression.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002199 if (B->isAssignmentOp() && !SubExprAssignments.count(Exp))
Ted Kremenek95a123c2008-01-26 00:03:27 +00002200 continue;
Mike Stump31feda52009-07-17 01:31:16 +00002201 } else if (const StmtExpr* Terminator = dyn_cast<StmtExpr>(Exp)) {
2202 // Special handling for statement expressions. The last statement in
2203 // the statement expression is also a block-level expr.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002204 const CompoundStmt* C = Terminator->getSubStmt();
Ted Kremenek85be7cf2008-01-17 20:48:37 +00002205 if (!C->body_empty()) {
Ted Kremenek95a123c2008-01-26 00:03:27 +00002206 unsigned x = M->size();
Ted Kremenek85be7cf2008-01-17 20:48:37 +00002207 (*M)[C->body_back()] = x;
2208 }
2209 }
Ted Kremenek0cb1ba22008-01-25 23:22:27 +00002210
Ted Kremenek95a123c2008-01-26 00:03:27 +00002211 unsigned x = M->size();
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002212 (*M)[Exp] = x;
Ted Kremenek95a123c2008-01-26 00:03:27 +00002213 }
Zhongxing Xu2cd7a782010-09-16 01:25:47 +00002214 }
Mike Stump31feda52009-07-17 01:31:16 +00002215
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002216 // Look at terminators. The condition is a block-level expression.
Mike Stump31feda52009-07-17 01:31:16 +00002217
Ted Kremenek289ae4f2009-10-12 20:55:07 +00002218 Stmt* S = (*I)->getTerminatorCondition();
Mike Stump31feda52009-07-17 01:31:16 +00002219
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00002220 if (S && M->find(S) == M->end()) {
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002221 unsigned x = M->size();
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00002222 (*M)[S] = x;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002223 }
2224 }
Mike Stump31feda52009-07-17 01:31:16 +00002225
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002226 return M;
2227}
2228
Ted Kremenek85be7cf2008-01-17 20:48:37 +00002229CFG::BlkExprNumTy CFG::getBlkExprNum(const Stmt* S) {
2230 assert(S != NULL);
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002231 if (!BlkExprMap) { BlkExprMap = (void*) PopulateBlkExprMap(*this); }
Mike Stump31feda52009-07-17 01:31:16 +00002232
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002233 BlkExprMapTy* M = reinterpret_cast<BlkExprMapTy*>(BlkExprMap);
Ted Kremenek85be7cf2008-01-17 20:48:37 +00002234 BlkExprMapTy::iterator I = M->find(S);
Ted Kremenek60983dc2010-01-19 20:52:05 +00002235 return (I == M->end()) ? CFG::BlkExprNumTy() : CFG::BlkExprNumTy(I->second);
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002236}
2237
2238unsigned CFG::getNumBlkExprs() {
2239 if (const BlkExprMapTy* M = reinterpret_cast<const BlkExprMapTy*>(BlkExprMap))
2240 return M->size();
2241 else {
2242 // We assume callers interested in the number of BlkExprs will want
2243 // the map constructed if it doesn't already exist.
2244 BlkExprMap = (void*) PopulateBlkExprMap(*this);
2245 return reinterpret_cast<BlkExprMapTy*>(BlkExprMap)->size();
2246 }
2247}
2248
Ted Kremenek6065ef62008-04-28 18:00:46 +00002249//===----------------------------------------------------------------------===//
Ted Kremenekb0371852010-09-09 00:06:04 +00002250// Filtered walking of the CFG.
2251//===----------------------------------------------------------------------===//
2252
2253bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F,
Ted Kremenekf146cd12010-09-09 02:57:48 +00002254 const CFGBlock *From, const CFGBlock *To) {
Ted Kremenekb0371852010-09-09 00:06:04 +00002255
2256 if (F.IgnoreDefaultsWithCoveredEnums) {
2257 // If the 'To' has no label or is labeled but the label isn't a
2258 // CaseStmt then filter this edge.
2259 if (const SwitchStmt *S =
Ted Kremenekf146cd12010-09-09 02:57:48 +00002260 dyn_cast_or_null<SwitchStmt>(From->getTerminator())) {
Ted Kremenekb0371852010-09-09 00:06:04 +00002261 if (S->isAllEnumCasesCovered()) {
Ted Kremenekf146cd12010-09-09 02:57:48 +00002262 const Stmt *L = To->getLabel();
2263 if (!L || !isa<CaseStmt>(L))
2264 return true;
Ted Kremenekb0371852010-09-09 00:06:04 +00002265 }
2266 }
2267 }
2268
2269 return false;
2270}
2271
2272//===----------------------------------------------------------------------===//
Ted Kremenek6065ef62008-04-28 18:00:46 +00002273// Cleanup: CFG dstor.
2274//===----------------------------------------------------------------------===//
2275
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00002276CFG::~CFG() {
2277 delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap);
2278}
Mike Stump31feda52009-07-17 01:31:16 +00002279
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002280//===----------------------------------------------------------------------===//
2281// CFG pretty printing
2282//===----------------------------------------------------------------------===//
2283
Ted Kremenek7e776b12007-08-22 18:22:34 +00002284namespace {
2285
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00002286class StmtPrinterHelper : public PrinterHelper {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002287 typedef llvm::DenseMap<Stmt*,std::pair<unsigned,unsigned> > StmtMapTy;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002288 typedef llvm::DenseMap<Decl*,std::pair<unsigned,unsigned> > DeclMapTy;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002289 StmtMapTy StmtMap;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002290 DeclMapTy DeclMap;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002291 signed CurrentBlock;
2292 unsigned CurrentStmt;
Chris Lattnerc61089a2009-06-30 01:26:17 +00002293 const LangOptions &LangOpts;
Ted Kremenek9aae5132007-08-23 21:42:29 +00002294public:
Ted Kremenekf8b50e92007-08-31 22:26:13 +00002295
Chris Lattnerc61089a2009-06-30 01:26:17 +00002296 StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
2297 : CurrentBlock(0), CurrentStmt(0), LangOpts(LO) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002298 for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
2299 unsigned j = 1;
Ted Kremenek289ae4f2009-10-12 20:55:07 +00002300 for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ;
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002301 BI != BEnd; ++BI, ++j ) {
2302 if (CFGStmt SE = BI->getAs<CFGStmt>()) {
2303 std::pair<unsigned, unsigned> P((*I)->getBlockID(), j);
2304 StmtMap[SE] = P;
2305
2306 if (DeclStmt* DS = dyn_cast<DeclStmt>(SE.getStmt())) {
2307 DeclMap[DS->getSingleDecl()] = P;
2308
2309 } else if (IfStmt* IS = dyn_cast<IfStmt>(SE.getStmt())) {
2310 if (VarDecl* VD = IS->getConditionVariable())
2311 DeclMap[VD] = P;
2312
2313 } else if (ForStmt* FS = dyn_cast<ForStmt>(SE.getStmt())) {
2314 if (VarDecl* VD = FS->getConditionVariable())
2315 DeclMap[VD] = P;
2316
2317 } else if (WhileStmt* WS = dyn_cast<WhileStmt>(SE.getStmt())) {
2318 if (VarDecl* VD = WS->getConditionVariable())
2319 DeclMap[VD] = P;
2320
2321 } else if (SwitchStmt* SS = dyn_cast<SwitchStmt>(SE.getStmt())) {
2322 if (VarDecl* VD = SS->getConditionVariable())
2323 DeclMap[VD] = P;
2324
2325 } else if (CXXCatchStmt* CS = dyn_cast<CXXCatchStmt>(SE.getStmt())) {
2326 if (VarDecl* VD = CS->getExceptionDecl())
2327 DeclMap[VD] = P;
2328 }
2329 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002330 }
Zhongxing Xu2cd7a782010-09-16 01:25:47 +00002331 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002332 }
Mike Stump31feda52009-07-17 01:31:16 +00002333
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002334 virtual ~StmtPrinterHelper() {}
Mike Stump31feda52009-07-17 01:31:16 +00002335
Chris Lattnerc61089a2009-06-30 01:26:17 +00002336 const LangOptions &getLangOpts() const { return LangOpts; }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002337 void setBlockID(signed i) { CurrentBlock = i; }
2338 void setStmtID(unsigned i) { CurrentStmt = i; }
Mike Stump31feda52009-07-17 01:31:16 +00002339
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002340 virtual bool handledStmt(Stmt* S, llvm::raw_ostream& OS) {
2341 StmtMapTy::iterator I = StmtMap.find(S);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002342
2343 if (I == StmtMap.end())
2344 return false;
Mike Stump31feda52009-07-17 01:31:16 +00002345
2346 if (CurrentBlock >= 0 && I->second.first == (unsigned) CurrentBlock
Ted Kremenek60983dc2010-01-19 20:52:05 +00002347 && I->second.second == CurrentStmt) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002348 return false;
Ted Kremenek60983dc2010-01-19 20:52:05 +00002349 }
Mike Stump31feda52009-07-17 01:31:16 +00002350
Ted Kremenek60983dc2010-01-19 20:52:05 +00002351 OS << "[B" << I->second.first << "." << I->second.second << "]";
Ted Kremenekf8b50e92007-08-31 22:26:13 +00002352 return true;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002353 }
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002354
2355 bool handleDecl(Decl* D, llvm::raw_ostream& OS) {
2356 DeclMapTy::iterator I = DeclMap.find(D);
2357
2358 if (I == DeclMap.end())
2359 return false;
2360
2361 if (CurrentBlock >= 0 && I->second.first == (unsigned) CurrentBlock
2362 && I->second.second == CurrentStmt) {
2363 return false;
2364 }
2365
2366 OS << "[B" << I->second.first << "." << I->second.second << "]";
2367 return true;
2368 }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002369};
Chris Lattnerc61089a2009-06-30 01:26:17 +00002370} // end anonymous namespace
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002371
Chris Lattnerc61089a2009-06-30 01:26:17 +00002372
2373namespace {
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00002374class CFGBlockTerminatorPrint
Ted Kremenek83ebcef2008-01-08 18:15:10 +00002375 : public StmtVisitor<CFGBlockTerminatorPrint,void> {
Mike Stump31feda52009-07-17 01:31:16 +00002376
Ted Kremenek2d470fc2008-09-13 05:16:45 +00002377 llvm::raw_ostream& OS;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002378 StmtPrinterHelper* Helper;
Douglas Gregor7de59662009-05-29 20:38:28 +00002379 PrintingPolicy Policy;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002380public:
Douglas Gregor7de59662009-05-29 20:38:28 +00002381 CFGBlockTerminatorPrint(llvm::raw_ostream& os, StmtPrinterHelper* helper,
Chris Lattnerc61089a2009-06-30 01:26:17 +00002382 const PrintingPolicy &Policy)
Douglas Gregor7de59662009-05-29 20:38:28 +00002383 : OS(os), Helper(helper), Policy(Policy) {}
Mike Stump31feda52009-07-17 01:31:16 +00002384
Ted Kremenek9aae5132007-08-23 21:42:29 +00002385 void VisitIfStmt(IfStmt* I) {
2386 OS << "if ";
Douglas Gregor7de59662009-05-29 20:38:28 +00002387 I->getCond()->printPretty(OS,Helper,Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00002388 }
Mike Stump31feda52009-07-17 01:31:16 +00002389
Ted Kremenek9aae5132007-08-23 21:42:29 +00002390 // Default case.
Mike Stump31feda52009-07-17 01:31:16 +00002391 void VisitStmt(Stmt* Terminator) {
2392 Terminator->printPretty(OS, Helper, Policy);
2393 }
2394
Ted Kremenek9aae5132007-08-23 21:42:29 +00002395 void VisitForStmt(ForStmt* F) {
2396 OS << "for (" ;
Ted Kremenek60983dc2010-01-19 20:52:05 +00002397 if (F->getInit())
2398 OS << "...";
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00002399 OS << "; ";
Ted Kremenek60983dc2010-01-19 20:52:05 +00002400 if (Stmt* C = F->getCond())
2401 C->printPretty(OS, Helper, Policy);
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00002402 OS << "; ";
Ted Kremenek60983dc2010-01-19 20:52:05 +00002403 if (F->getInc())
2404 OS << "...";
Ted Kremenek15647632008-01-30 23:02:42 +00002405 OS << ")";
Ted Kremenek9aae5132007-08-23 21:42:29 +00002406 }
Mike Stump31feda52009-07-17 01:31:16 +00002407
Ted Kremenek9aae5132007-08-23 21:42:29 +00002408 void VisitWhileStmt(WhileStmt* W) {
2409 OS << "while " ;
Ted Kremenek60983dc2010-01-19 20:52:05 +00002410 if (Stmt* C = W->getCond())
2411 C->printPretty(OS, Helper, Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00002412 }
Mike Stump31feda52009-07-17 01:31:16 +00002413
Ted Kremenek9aae5132007-08-23 21:42:29 +00002414 void VisitDoStmt(DoStmt* D) {
2415 OS << "do ... while ";
Ted Kremenek60983dc2010-01-19 20:52:05 +00002416 if (Stmt* C = D->getCond())
2417 C->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00002418 }
Mike Stump31feda52009-07-17 01:31:16 +00002419
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002420 void VisitSwitchStmt(SwitchStmt* Terminator) {
Ted Kremenek9e248872007-08-27 21:27:44 +00002421 OS << "switch ";
Douglas Gregor7de59662009-05-29 20:38:28 +00002422 Terminator->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00002423 }
Mike Stump31feda52009-07-17 01:31:16 +00002424
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002425 void VisitCXXTryStmt(CXXTryStmt* CS) {
2426 OS << "try ...";
2427 }
2428
Ted Kremenek7f7dd762007-08-31 21:49:40 +00002429 void VisitConditionalOperator(ConditionalOperator* C) {
Douglas Gregor7de59662009-05-29 20:38:28 +00002430 C->getCond()->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00002431 OS << " ? ... : ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00002432 }
Mike Stump31feda52009-07-17 01:31:16 +00002433
Ted Kremenek391f94a2007-08-31 22:29:13 +00002434 void VisitChooseExpr(ChooseExpr* C) {
2435 OS << "__builtin_choose_expr( ";
Douglas Gregor7de59662009-05-29 20:38:28 +00002436 C->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek15647632008-01-30 23:02:42 +00002437 OS << " )";
Ted Kremenek391f94a2007-08-31 22:29:13 +00002438 }
Mike Stump31feda52009-07-17 01:31:16 +00002439
Ted Kremenekf8b50e92007-08-31 22:26:13 +00002440 void VisitIndirectGotoStmt(IndirectGotoStmt* I) {
2441 OS << "goto *";
Douglas Gregor7de59662009-05-29 20:38:28 +00002442 I->getTarget()->printPretty(OS, Helper, Policy);
Ted Kremenekf8b50e92007-08-31 22:26:13 +00002443 }
Mike Stump31feda52009-07-17 01:31:16 +00002444
Ted Kremenek7f7dd762007-08-31 21:49:40 +00002445 void VisitBinaryOperator(BinaryOperator* B) {
2446 if (!B->isLogicalOp()) {
2447 VisitExpr(B);
2448 return;
2449 }
Mike Stump31feda52009-07-17 01:31:16 +00002450
Douglas Gregor7de59662009-05-29 20:38:28 +00002451 B->getLHS()->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00002452
Ted Kremenek7f7dd762007-08-31 21:49:40 +00002453 switch (B->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +00002454 case BO_LOr:
Ted Kremenek15647632008-01-30 23:02:42 +00002455 OS << " || ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00002456 return;
John McCalle3027922010-08-25 11:45:40 +00002457 case BO_LAnd:
Ted Kremenek15647632008-01-30 23:02:42 +00002458 OS << " && ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00002459 return;
2460 default:
2461 assert(false && "Invalid logical operator.");
Mike Stump31feda52009-07-17 01:31:16 +00002462 }
Ted Kremenek7f7dd762007-08-31 21:49:40 +00002463 }
Mike Stump31feda52009-07-17 01:31:16 +00002464
Ted Kremenek12687ff2007-08-27 21:54:41 +00002465 void VisitExpr(Expr* E) {
Douglas Gregor7de59662009-05-29 20:38:28 +00002466 E->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00002467 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00002468};
Chris Lattnerc61089a2009-06-30 01:26:17 +00002469} // end anonymous namespace
2470
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002471static void print_elem(llvm::raw_ostream &OS, StmtPrinterHelper* Helper,
Mike Stump92244b02010-01-19 22:00:14 +00002472 const CFGElement &E) {
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002473 if (CFGStmt CS = E.getAs<CFGStmt>()) {
2474 Stmt *S = CS;
2475
2476 if (Helper) {
Mike Stump31feda52009-07-17 01:31:16 +00002477
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002478 // special printing for statement-expressions.
2479 if (StmtExpr* SE = dyn_cast<StmtExpr>(S)) {
2480 CompoundStmt* Sub = SE->getSubStmt();
2481
2482 if (Sub->child_begin() != Sub->child_end()) {
2483 OS << "({ ... ; ";
2484 Helper->handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
2485 OS << " })\n";
2486 return;
2487 }
2488 }
2489 // special printing for comma expressions.
2490 if (BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
2491 if (B->getOpcode() == BO_Comma) {
2492 OS << "... , ";
2493 Helper->handledStmt(B->getRHS(),OS);
2494 OS << '\n';
2495 return;
2496 }
Ted Kremenekf8b50e92007-08-31 22:26:13 +00002497 }
2498 }
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002499 S->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts()));
Mike Stump31feda52009-07-17 01:31:16 +00002500
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002501 if (isa<CXXOperatorCallExpr>(S)) {
2502 OS << " (OperatorCall)";
Mike Stump31feda52009-07-17 01:31:16 +00002503 }
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002504 else if (isa<CXXBindTemporaryExpr>(S)) {
2505 OS << " (BindTemporary)";
2506 }
Mike Stump31feda52009-07-17 01:31:16 +00002507
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002508 // Expressions need a newline.
2509 if (isa<Expr>(S))
2510 OS << '\n';
Ted Kremenek0f5d8bc2010-08-31 18:47:37 +00002511
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002512 } else if (CFGInitializer IE = E.getAs<CFGInitializer>()) {
2513 CXXBaseOrMemberInitializer* I = IE;
2514 if (I->isBaseInitializer())
2515 OS << I->getBaseClass()->getAsCXXRecordDecl()->getName();
2516 else OS << I->getMember()->getName();
Mike Stump31feda52009-07-17 01:31:16 +00002517
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002518 OS << "(";
2519 if (Expr* IE = I->getInit())
2520 IE->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts()));
2521 OS << ")";
2522
2523 if (I->isBaseInitializer())
2524 OS << " (Base initializer)\n";
2525 else OS << " (Member initializer)\n";
2526
2527 } else if (CFGAutomaticObjDtor DE = E.getAs<CFGAutomaticObjDtor>()){
2528 VarDecl* VD = DE.getVarDecl();
2529 Helper->handleDecl(VD, OS);
2530
2531 Type* T = VD->getType().getTypePtr();
2532 if (const ReferenceType* RT = T->getAs<ReferenceType>())
2533 T = RT->getPointeeType().getTypePtr();
2534
2535 OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()";
2536 OS << " (Implicit destructor)\n";
2537 }
2538 }
Mike Stump31feda52009-07-17 01:31:16 +00002539
Chris Lattnerc61089a2009-06-30 01:26:17 +00002540static void print_block(llvm::raw_ostream& OS, const CFG* cfg,
2541 const CFGBlock& B,
2542 StmtPrinterHelper* Helper, bool print_edges) {
Mike Stump31feda52009-07-17 01:31:16 +00002543
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002544 if (Helper) Helper->setBlockID(B.getBlockID());
Mike Stump31feda52009-07-17 01:31:16 +00002545
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002546 // Print the header.
Mike Stump31feda52009-07-17 01:31:16 +00002547 OS << "\n [ B" << B.getBlockID();
2548
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002549 if (&B == &cfg->getEntry())
2550 OS << " (ENTRY) ]\n";
2551 else if (&B == &cfg->getExit())
2552 OS << " (EXIT) ]\n";
2553 else if (&B == cfg->getIndirectGotoBlock())
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002554 OS << " (INDIRECT GOTO DISPATCH) ]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002555 else
2556 OS << " ]\n";
Mike Stump31feda52009-07-17 01:31:16 +00002557
Ted Kremenek71eca012007-08-29 23:20:49 +00002558 // Print the label of this block.
Mike Stump92244b02010-01-19 22:00:14 +00002559 if (Stmt* Label = const_cast<Stmt*>(B.getLabel())) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002560
2561 if (print_edges)
2562 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00002563
Mike Stump92244b02010-01-19 22:00:14 +00002564 if (LabelStmt* L = dyn_cast<LabelStmt>(Label))
Ted Kremenek71eca012007-08-29 23:20:49 +00002565 OS << L->getName();
Mike Stump92244b02010-01-19 22:00:14 +00002566 else if (CaseStmt* C = dyn_cast<CaseStmt>(Label)) {
Ted Kremenek71eca012007-08-29 23:20:49 +00002567 OS << "case ";
Chris Lattnerc61089a2009-06-30 01:26:17 +00002568 C->getLHS()->printPretty(OS, Helper,
2569 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00002570 if (C->getRHS()) {
2571 OS << " ... ";
Chris Lattnerc61089a2009-06-30 01:26:17 +00002572 C->getRHS()->printPretty(OS, Helper,
2573 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00002574 }
Mike Stump92244b02010-01-19 22:00:14 +00002575 } else if (isa<DefaultStmt>(Label))
Ted Kremenek71eca012007-08-29 23:20:49 +00002576 OS << "default";
Mike Stump92244b02010-01-19 22:00:14 +00002577 else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) {
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002578 OS << "catch (";
Mike Stump0bdba6c2010-01-20 01:15:34 +00002579 if (CS->getExceptionDecl())
2580 CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper->getLangOpts()),
2581 0);
2582 else
2583 OS << "...";
Mike Stumpbbf5ba62010-01-19 02:20:09 +00002584 OS << ")";
2585
2586 } else
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002587 assert(false && "Invalid label statement in CFGBlock.");
Mike Stump31feda52009-07-17 01:31:16 +00002588
Ted Kremenek71eca012007-08-29 23:20:49 +00002589 OS << ":\n";
2590 }
Mike Stump31feda52009-07-17 01:31:16 +00002591
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00002592 // Iterate through the statements in the block and print them.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00002593 unsigned j = 1;
Mike Stump31feda52009-07-17 01:31:16 +00002594
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002595 for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
2596 I != E ; ++I, ++j ) {
Mike Stump31feda52009-07-17 01:31:16 +00002597
Ted Kremenek71eca012007-08-29 23:20:49 +00002598 // Print the statement # in the basic block and the statement itself.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002599 if (print_edges)
2600 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00002601
Ted Kremenek2d470fc2008-09-13 05:16:45 +00002602 OS << llvm::format("%3d", j) << ": ";
Mike Stump31feda52009-07-17 01:31:16 +00002603
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002604 if (Helper)
2605 Helper->setStmtID(j);
Mike Stump31feda52009-07-17 01:31:16 +00002606
Marcin Swiderskic0ca7312010-09-21 05:58:15 +00002607 print_elem(OS,Helper,*I);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00002608 }
Mike Stump31feda52009-07-17 01:31:16 +00002609
Ted Kremenek71eca012007-08-29 23:20:49 +00002610 // Print the terminator of this block.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002611 if (B.getTerminator()) {
2612 if (print_edges)
2613 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00002614
Ted Kremenek71eca012007-08-29 23:20:49 +00002615 OS << " T: ";
Mike Stump31feda52009-07-17 01:31:16 +00002616
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002617 if (Helper) Helper->setBlockID(-1);
Mike Stump31feda52009-07-17 01:31:16 +00002618
Chris Lattnerc61089a2009-06-30 01:26:17 +00002619 CFGBlockTerminatorPrint TPrinter(OS, Helper,
2620 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002621 TPrinter.Visit(const_cast<Stmt*>(B.getTerminator()));
Ted Kremenek15647632008-01-30 23:02:42 +00002622 OS << '\n';
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00002623 }
Mike Stump31feda52009-07-17 01:31:16 +00002624
Ted Kremenek71eca012007-08-29 23:20:49 +00002625 if (print_edges) {
2626 // Print the predecessors of this block.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002627 OS << " Predecessors (" << B.pred_size() << "):";
Ted Kremenek71eca012007-08-29 23:20:49 +00002628 unsigned i = 0;
Ted Kremenek71eca012007-08-29 23:20:49 +00002629
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002630 for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
2631 I != E; ++I, ++i) {
Mike Stump31feda52009-07-17 01:31:16 +00002632
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002633 if (i == 8 || (i-8) == 0)
2634 OS << "\n ";
Mike Stump31feda52009-07-17 01:31:16 +00002635
Ted Kremenek71eca012007-08-29 23:20:49 +00002636 OS << " B" << (*I)->getBlockID();
2637 }
Mike Stump31feda52009-07-17 01:31:16 +00002638
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002639 OS << '\n';
Mike Stump31feda52009-07-17 01:31:16 +00002640
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002641 // Print the successors of this block.
2642 OS << " Successors (" << B.succ_size() << "):";
2643 i = 0;
2644
2645 for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
2646 I != E; ++I, ++i) {
Mike Stump31feda52009-07-17 01:31:16 +00002647
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002648 if (i == 8 || (i-8) % 10 == 0)
2649 OS << "\n ";
2650
Mike Stump0d76d072009-07-20 23:24:15 +00002651 if (*I)
2652 OS << " B" << (*I)->getBlockID();
2653 else
2654 OS << " NULL";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002655 }
Mike Stump31feda52009-07-17 01:31:16 +00002656
Ted Kremenek71eca012007-08-29 23:20:49 +00002657 OS << '\n';
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00002658 }
Mike Stump31feda52009-07-17 01:31:16 +00002659}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002660
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002661
2662/// dump - A simple pretty printer of a CFG that outputs to stderr.
Chris Lattnerc61089a2009-06-30 01:26:17 +00002663void CFG::dump(const LangOptions &LO) const { print(llvm::errs(), LO); }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002664
2665/// print - A simple pretty printer of a CFG that outputs to an ostream.
Chris Lattnerc61089a2009-06-30 01:26:17 +00002666void CFG::print(llvm::raw_ostream &OS, const LangOptions &LO) const {
2667 StmtPrinterHelper Helper(this, LO);
Mike Stump31feda52009-07-17 01:31:16 +00002668
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002669 // Print the entry block.
2670 print_block(OS, this, getEntry(), &Helper, true);
Mike Stump31feda52009-07-17 01:31:16 +00002671
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002672 // Iterate through the CFGBlocks and print them one by one.
2673 for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
2674 // Skip the entry block, because we already printed it.
Ted Kremenek289ae4f2009-10-12 20:55:07 +00002675 if (&(**I) == &getEntry() || &(**I) == &getExit())
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002676 continue;
Mike Stump31feda52009-07-17 01:31:16 +00002677
Ted Kremenek289ae4f2009-10-12 20:55:07 +00002678 print_block(OS, this, **I, &Helper, true);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002679 }
Mike Stump31feda52009-07-17 01:31:16 +00002680
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002681 // Print the exit block.
2682 print_block(OS, this, getExit(), &Helper, true);
Ted Kremeneke03879b2008-11-24 20:50:24 +00002683 OS.flush();
Mike Stump31feda52009-07-17 01:31:16 +00002684}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002685
2686/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
Chris Lattnerc61089a2009-06-30 01:26:17 +00002687void CFGBlock::dump(const CFG* cfg, const LangOptions &LO) const {
2688 print(llvm::errs(), cfg, LO);
2689}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002690
2691/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
2692/// Generally this will only be called from CFG::print.
Chris Lattnerc61089a2009-06-30 01:26:17 +00002693void CFGBlock::print(llvm::raw_ostream& OS, const CFG* cfg,
2694 const LangOptions &LO) const {
2695 StmtPrinterHelper Helper(cfg, LO);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002696 print_block(OS, cfg, *this, &Helper, true);
Ted Kremenek889073f2007-08-23 16:51:22 +00002697}
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002698
Ted Kremenek15647632008-01-30 23:02:42 +00002699/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
Chris Lattnerc61089a2009-06-30 01:26:17 +00002700void CFGBlock::printTerminator(llvm::raw_ostream &OS,
Mike Stump31feda52009-07-17 01:31:16 +00002701 const LangOptions &LO) const {
Chris Lattnerc61089a2009-06-30 01:26:17 +00002702 CFGBlockTerminatorPrint TPrinter(OS, NULL, PrintingPolicy(LO));
Ted Kremenek15647632008-01-30 23:02:42 +00002703 TPrinter.Visit(const_cast<Stmt*>(getTerminator()));
2704}
2705
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00002706Stmt* CFGBlock::getTerminatorCondition() {
Mike Stump31feda52009-07-17 01:31:16 +00002707
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002708 if (!Terminator)
2709 return NULL;
Mike Stump31feda52009-07-17 01:31:16 +00002710
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002711 Expr* E = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00002712
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002713 switch (Terminator->getStmtClass()) {
2714 default:
2715 break;
Mike Stump31feda52009-07-17 01:31:16 +00002716
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002717 case Stmt::ForStmtClass:
2718 E = cast<ForStmt>(Terminator)->getCond();
2719 break;
Mike Stump31feda52009-07-17 01:31:16 +00002720
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002721 case Stmt::WhileStmtClass:
2722 E = cast<WhileStmt>(Terminator)->getCond();
2723 break;
Mike Stump31feda52009-07-17 01:31:16 +00002724
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002725 case Stmt::DoStmtClass:
2726 E = cast<DoStmt>(Terminator)->getCond();
2727 break;
Mike Stump31feda52009-07-17 01:31:16 +00002728
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002729 case Stmt::IfStmtClass:
2730 E = cast<IfStmt>(Terminator)->getCond();
2731 break;
Mike Stump31feda52009-07-17 01:31:16 +00002732
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002733 case Stmt::ChooseExprClass:
2734 E = cast<ChooseExpr>(Terminator)->getCond();
2735 break;
Mike Stump31feda52009-07-17 01:31:16 +00002736
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002737 case Stmt::IndirectGotoStmtClass:
2738 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
2739 break;
Mike Stump31feda52009-07-17 01:31:16 +00002740
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002741 case Stmt::SwitchStmtClass:
2742 E = cast<SwitchStmt>(Terminator)->getCond();
2743 break;
Mike Stump31feda52009-07-17 01:31:16 +00002744
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002745 case Stmt::ConditionalOperatorClass:
2746 E = cast<ConditionalOperator>(Terminator)->getCond();
2747 break;
Mike Stump31feda52009-07-17 01:31:16 +00002748
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002749 case Stmt::BinaryOperatorClass: // '&&' and '||'
2750 E = cast<BinaryOperator>(Terminator)->getLHS();
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00002751 break;
Mike Stump31feda52009-07-17 01:31:16 +00002752
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00002753 case Stmt::ObjCForCollectionStmtClass:
Mike Stump31feda52009-07-17 01:31:16 +00002754 return Terminator;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002755 }
Mike Stump31feda52009-07-17 01:31:16 +00002756
Ted Kremenekc1f9a282008-04-16 21:10:48 +00002757 return E ? E->IgnoreParens() : NULL;
2758}
2759
Ted Kremenek92137a32008-05-16 16:06:00 +00002760bool CFGBlock::hasBinaryBranchTerminator() const {
Mike Stump31feda52009-07-17 01:31:16 +00002761
Ted Kremenek92137a32008-05-16 16:06:00 +00002762 if (!Terminator)
2763 return false;
Mike Stump31feda52009-07-17 01:31:16 +00002764
Ted Kremenek92137a32008-05-16 16:06:00 +00002765 Expr* E = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00002766
Ted Kremenek92137a32008-05-16 16:06:00 +00002767 switch (Terminator->getStmtClass()) {
2768 default:
2769 return false;
Mike Stump31feda52009-07-17 01:31:16 +00002770
2771 case Stmt::ForStmtClass:
Ted Kremenek92137a32008-05-16 16:06:00 +00002772 case Stmt::WhileStmtClass:
2773 case Stmt::DoStmtClass:
2774 case Stmt::IfStmtClass:
2775 case Stmt::ChooseExprClass:
2776 case Stmt::ConditionalOperatorClass:
2777 case Stmt::BinaryOperatorClass:
Mike Stump31feda52009-07-17 01:31:16 +00002778 return true;
Ted Kremenek92137a32008-05-16 16:06:00 +00002779 }
Mike Stump31feda52009-07-17 01:31:16 +00002780
Ted Kremenek92137a32008-05-16 16:06:00 +00002781 return E ? E->IgnoreParens() : NULL;
2782}
2783
Ted Kremenek15647632008-01-30 23:02:42 +00002784
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002785//===----------------------------------------------------------------------===//
2786// CFG Graphviz Visualization
2787//===----------------------------------------------------------------------===//
2788
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002789
2790#ifndef NDEBUG
Mike Stump31feda52009-07-17 01:31:16 +00002791static StmtPrinterHelper* GraphHelper;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002792#endif
2793
Chris Lattnerc61089a2009-06-30 01:26:17 +00002794void CFG::viewCFG(const LangOptions &LO) const {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002795#ifndef NDEBUG
Chris Lattnerc61089a2009-06-30 01:26:17 +00002796 StmtPrinterHelper H(this, LO);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002797 GraphHelper = &H;
2798 llvm::ViewGraph(this,"CFG");
2799 GraphHelper = NULL;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002800#endif
2801}
2802
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002803namespace llvm {
2804template<>
2805struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
Tobias Grosser9fc223a2009-11-30 14:16:05 +00002806
2807 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
2808
2809 static std::string getNodeLabel(const CFGBlock* Node, const CFG* Graph) {
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002810
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00002811#ifndef NDEBUG
Ted Kremenek2d470fc2008-09-13 05:16:45 +00002812 std::string OutSStr;
2813 llvm::raw_string_ostream Out(OutSStr);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00002814 print_block(Out,Graph, *Node, GraphHelper, false);
Ted Kremenek2d470fc2008-09-13 05:16:45 +00002815 std::string& OutStr = Out.str();
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002816
2817 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
2818
2819 // Process string output to make it nicer...
2820 for (unsigned i = 0; i != OutStr.length(); ++i)
2821 if (OutStr[i] == '\n') { // Left justify
2822 OutStr[i] = '\\';
2823 OutStr.insert(OutStr.begin()+i+1, 'l');
2824 }
Mike Stump31feda52009-07-17 01:31:16 +00002825
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002826 return OutStr;
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00002827#else
2828 return "";
2829#endif
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00002830 }
2831};
2832} // end namespace llvm