blob: 82472338ae6228a81bf3db607138209a5987108a [file] [log] [blame]
Ted Kremenekfddd5182007-08-21 21:42:03 +00001//===--- CFG.cpp - Classes for representing and building CFGs----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Ted Kremenekfddd5182007-08-21 21:42:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the CFG and CFGBuilder classes for representing and
11// building Control-Flow Graphs (CFGs) from ASTs.
12//
13//===----------------------------------------------------------------------===//
14
Ted Kremenekbd048782009-07-22 21:45:16 +000015#include "clang/Analysis/Support/SaveAndRestore.h"
Ted Kremeneke41611a2009-07-16 18:13:04 +000016#include "clang/Analysis/CFG.h"
Ted Kremenekc310e932007-08-21 22:06:14 +000017#include "clang/AST/StmtVisitor.h"
Ted Kremenek42a509f2007-08-31 21:30:12 +000018#include "clang/AST/PrettyPrinter.h"
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +000019#include "llvm/Support/GraphWriter.h"
20#include "llvm/Support/Compiler.h"
21#include "llvm/Support/Allocator.h"
22#include "llvm/Support/Format.h"
Ted Kremenek0cebe3e2007-08-21 23:26:17 +000023#include "llvm/ADT/DenseMap.h"
Ted Kremenek19bb3562007-08-28 19:26:49 +000024#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek83c01da2008-01-11 00:40:29 +000025
Ted Kremenekfddd5182007-08-21 21:42:03 +000026using namespace clang;
27
28namespace {
29
Douglas Gregor4afa39d2009-01-20 01:17:11 +000030static SourceLocation GetEndLoc(Decl* D) {
Ted Kremenekc7eb9032008-08-06 23:20:50 +000031 if (VarDecl* VD = dyn_cast<VarDecl>(D))
32 if (Expr* Ex = VD->getInit())
33 return Ex->getSourceRange().getEnd();
Mike Stump6d9828c2009-07-17 01:31:16 +000034
35 return D->getLocation();
Ted Kremenekc7eb9032008-08-06 23:20:50 +000036}
Mike Stump6d9828c2009-07-17 01:31:16 +000037
Ted Kremeneka34ea072008-08-04 22:51:42 +000038/// CFGBuilder - This class implements CFG construction from an AST.
Ted Kremenekfddd5182007-08-21 21:42:03 +000039/// The builder is stateful: an instance of the builder should be used to only
40/// construct a single CFG.
41///
42/// Example usage:
43///
44/// CFGBuilder builder;
45/// CFG* cfg = builder.BuildAST(stmt1);
46///
Mike Stump6d9828c2009-07-17 01:31:16 +000047/// CFG construction is done via a recursive walk of an AST. We actually parse
48/// the AST in reverse order so that the successor of a basic block is
49/// constructed prior to its predecessor. This allows us to nicely capture
50/// implicit fall-throughs without extra basic blocks.
Ted Kremenekc310e932007-08-21 22:06:14 +000051///
Ted Kremenek4f880632009-07-17 22:18:43 +000052class VISIBILITY_HIDDEN CFGBuilder {
Mike Stumpe5af3ce2009-07-20 23:24:15 +000053 ASTContext *Context;
Ted Kremenekfddd5182007-08-21 21:42:03 +000054 CFG* cfg;
55 CFGBlock* Block;
Ted Kremenekfddd5182007-08-21 21:42:03 +000056 CFGBlock* Succ;
Ted Kremenekbf15b272007-08-22 21:36:54 +000057 CFGBlock* ContinueTargetBlock;
Ted Kremenek8a294712007-08-22 21:51:58 +000058 CFGBlock* BreakTargetBlock;
Ted Kremenekb5c13b02007-08-23 18:43:24 +000059 CFGBlock* SwitchTerminatedBlock;
Ted Kremenekeef5a9a2008-02-13 22:05:39 +000060 CFGBlock* DefaultCaseBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +000061
Ted Kremenek19bb3562007-08-28 19:26:49 +000062 // LabelMap records the mapping from Label expressions to their blocks.
Ted Kremenek0cebe3e2007-08-21 23:26:17 +000063 typedef llvm::DenseMap<LabelStmt*,CFGBlock*> LabelMapTy;
64 LabelMapTy LabelMap;
Mike Stump6d9828c2009-07-17 01:31:16 +000065
66 // A list of blocks that end with a "goto" that must be backpatched to their
67 // resolved targets upon completion of CFG construction.
Ted Kremenek4a2b8a12007-08-22 15:40:58 +000068 typedef std::vector<CFGBlock*> BackpatchBlocksTy;
Ted Kremenek0cebe3e2007-08-21 23:26:17 +000069 BackpatchBlocksTy BackpatchBlocks;
Mike Stump6d9828c2009-07-17 01:31:16 +000070
Ted Kremenek19bb3562007-08-28 19:26:49 +000071 // A list of labels whose address has been taken (for indirect gotos).
72 typedef llvm::SmallPtrSet<LabelStmt*,5> LabelSetTy;
73 LabelSetTy AddressTakenLabels;
Mike Stump6d9828c2009-07-17 01:31:16 +000074
75public:
Ted Kremenek026473c2007-08-23 16:51:22 +000076 explicit CFGBuilder() : cfg(NULL), Block(NULL), Succ(NULL),
Ted Kremenek8a294712007-08-22 21:51:58 +000077 ContinueTargetBlock(NULL), BreakTargetBlock(NULL),
Ted Kremenekeef5a9a2008-02-13 22:05:39 +000078 SwitchTerminatedBlock(NULL), DefaultCaseBlock(NULL) {
Ted Kremenekfddd5182007-08-21 21:42:03 +000079 // Create an empty CFG.
Mike Stump6d9828c2009-07-17 01:31:16 +000080 cfg = new CFG();
Ted Kremenekfddd5182007-08-21 21:42:03 +000081 }
Mike Stump6d9828c2009-07-17 01:31:16 +000082
Ted Kremenekfddd5182007-08-21 21:42:03 +000083 ~CFGBuilder() { delete cfg; }
Mike Stump6d9828c2009-07-17 01:31:16 +000084
Ted Kremenekd4fdee32007-08-23 21:42:29 +000085 // buildCFG - Used by external clients to construct the CFG.
Mike Stumpe5af3ce2009-07-20 23:24:15 +000086 CFG* buildCFG(Stmt *Statement, ASTContext *C);
Mike Stump6d9828c2009-07-17 01:31:16 +000087
Ted Kremenek4f880632009-07-17 22:18:43 +000088private:
89 // Visitors to walk an AST and construct the CFG.
90 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, bool alwaysAdd);
91 CFGBlock *VisitBinaryOperator(BinaryOperator *B, bool alwaysAdd);
Ted Kremenek13fc08a2009-07-18 00:47:21 +000092 CFGBlock *VisitBlockExpr(BlockExpr* E, bool alwaysAdd);
93 CFGBlock *VisitBlockDeclRefExpr(BlockDeclRefExpr* E, bool alwaysAdd);
Ted Kremenek4f880632009-07-17 22:18:43 +000094 CFGBlock *VisitBreakStmt(BreakStmt *B);
95 CFGBlock *VisitCallExpr(CallExpr *C, bool alwaysAdd);
96 CFGBlock *VisitCaseStmt(CaseStmt *C);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +000097 CFGBlock *VisitChooseExpr(ChooseExpr *C);
98 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
99 CFGBlock *VisitConditionalOperator(ConditionalOperator *C);
100 CFGBlock *VisitContinueStmt(ContinueStmt *C);
Mike Stump0979d802009-07-22 22:56:04 +0000101 CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T);
Ted Kremenek4f880632009-07-17 22:18:43 +0000102 CFGBlock *VisitDeclStmt(DeclStmt *DS);
103 CFGBlock *VisitDeclSubExpr(Decl* D);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000104 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
105 CFGBlock *VisitDoStmt(DoStmt *D);
106 CFGBlock *VisitForStmt(ForStmt *F);
Ted Kremenek4f880632009-07-17 22:18:43 +0000107 CFGBlock *VisitGotoStmt(GotoStmt* G);
108 CFGBlock *VisitIfStmt(IfStmt *I);
109 CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
110 CFGBlock *VisitLabelStmt(LabelStmt *L);
111 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
112 CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
113 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
114 CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
115 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
116 CFGBlock *VisitReturnStmt(ReturnStmt* R);
Ted Kremenek13fc08a2009-07-18 00:47:21 +0000117 CFGBlock *VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E, bool alwaysAdd);
118 CFGBlock *VisitStmtExpr(StmtExpr *S, bool alwaysAdd);
Ted Kremenek4f880632009-07-17 22:18:43 +0000119 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
120 CFGBlock *VisitWhileStmt(WhileStmt *W);
Mike Stumpcd7bf232009-07-17 01:04:31 +0000121
Ted Kremenek4f880632009-07-17 22:18:43 +0000122 CFGBlock *Visit(Stmt *S, bool alwaysAdd = false);
123 CFGBlock *VisitStmt(Stmt *S, bool alwaysAdd);
124 CFGBlock *VisitChildren(Stmt* S);
Mike Stumpcd7bf232009-07-17 01:04:31 +0000125
Ted Kremenek274f4332008-04-28 18:00:46 +0000126 // NYS == Not Yet Supported
127 CFGBlock* NYS() {
Ted Kremenek4102af92008-03-13 03:04:22 +0000128 badCFG = true;
129 return Block;
130 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000131
Ted Kremenek4f880632009-07-17 22:18:43 +0000132 void autoCreateBlock() { if (!Block) Block = createBlock(); }
133 CFGBlock *createBlock(bool add_successor = true);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000134 bool FinishBlock(CFGBlock* B);
Ted Kremenek4f880632009-07-17 22:18:43 +0000135 CFGBlock *addStmt(Stmt *S) { return Visit(S, true); }
Mike Stump1eb44332009-09-09 15:08:12 +0000136
137
Ted Kremenekfadc9ea2009-07-24 06:55:42 +0000138 /// TryResult - a class representing a variant over the values
139 /// 'true', 'false', or 'unknown'. This is returned by TryEvaluateBool,
140 /// and is used by the CFGBuilder to decide if a branch condition
141 /// can be decided up front during CFG construction.
Ted Kremenek941fde82009-07-24 04:47:11 +0000142 class TryResult {
143 int X;
144 public:
145 TryResult(bool b) : X(b ? 1 : 0) {}
146 TryResult() : X(-1) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000147
Ted Kremenek941fde82009-07-24 04:47:11 +0000148 bool isTrue() const { return X == 1; }
149 bool isFalse() const { return X == 0; }
150 bool isKnown() const { return X >= 0; }
151 void negate() {
152 assert(isKnown());
153 X ^= 0x1;
154 }
155 };
Mike Stump1eb44332009-09-09 15:08:12 +0000156
Mike Stump00998a02009-07-23 23:25:26 +0000157 /// TryEvaluateBool - Try and evaluate the Stmt and return 0 or 1
158 /// if we can evaluate to a known value, otherwise return -1.
Ted Kremenek941fde82009-07-24 04:47:11 +0000159 TryResult TryEvaluateBool(Expr *S) {
Mike Stump00998a02009-07-23 23:25:26 +0000160 Expr::EvalResult Result;
Douglas Gregor9983cc12009-08-24 21:39:56 +0000161 if (!S->isTypeDependent() && !S->isValueDependent() &&
162 S->Evaluate(Result, *Context) && Result.Val.isInt())
Ted Kremenekfadc9ea2009-07-24 06:55:42 +0000163 return Result.Val.getInt().getBoolValue();
Ted Kremenek941fde82009-07-24 04:47:11 +0000164
165 return TryResult();
Mike Stump00998a02009-07-23 23:25:26 +0000166 }
167
Ted Kremenek4102af92008-03-13 03:04:22 +0000168 bool badCFG;
Ted Kremenekfddd5182007-08-21 21:42:03 +0000169};
Mike Stump6d9828c2009-07-17 01:31:16 +0000170
Douglas Gregor898574e2008-12-05 23:32:09 +0000171// FIXME: Add support for dependent-sized array types in C++?
172// Does it even make sense to build a CFG for an uninstantiated template?
Ted Kremenek610a09e2008-09-26 22:58:57 +0000173static VariableArrayType* FindVA(Type* t) {
174 while (ArrayType* vt = dyn_cast<ArrayType>(t)) {
175 if (VariableArrayType* vat = dyn_cast<VariableArrayType>(vt))
176 if (vat->getSizeExpr())
177 return vat;
Mike Stump6d9828c2009-07-17 01:31:16 +0000178
Ted Kremenek610a09e2008-09-26 22:58:57 +0000179 t = vt->getElementType().getTypePtr();
180 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000181
Ted Kremenek610a09e2008-09-26 22:58:57 +0000182 return 0;
183}
Mike Stump6d9828c2009-07-17 01:31:16 +0000184
185/// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an
186/// arbitrary statement. Examples include a single expression or a function
187/// body (compound statement). The ownership of the returned CFG is
188/// transferred to the caller. If CFG construction fails, this method returns
189/// NULL.
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000190CFG* CFGBuilder::buildCFG(Stmt* Statement, ASTContext* C) {
191 Context = C;
Ted Kremenek4f880632009-07-17 22:18:43 +0000192 assert(cfg);
193 if (!Statement)
194 return NULL;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000195
Ted Kremenek4102af92008-03-13 03:04:22 +0000196 badCFG = false;
Mike Stump6d9828c2009-07-17 01:31:16 +0000197
198 // Create an empty block that will serve as the exit block for the CFG. Since
199 // this is the first block added to the CFG, it will be implicitly registered
200 // as the exit block.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000201 Succ = createBlock();
202 assert (Succ == &cfg->getExit());
203 Block = NULL; // the EXIT block is empty. Create all other blocks lazily.
Mike Stump6d9828c2009-07-17 01:31:16 +0000204
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000205 // Visit the statements and create the CFG.
Ted Kremenek4f880632009-07-17 22:18:43 +0000206 CFGBlock* B = addStmt(Statement);
Ted Kremenek0d99ecf2008-02-27 17:33:02 +0000207 if (!B) B = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000208
Ted Kremenek0d99ecf2008-02-27 17:33:02 +0000209 if (B) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000210 // Finalize the last constructed block. This usually involves reversing the
211 // order of the statements in the block.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000212 if (Block) FinishBlock(B);
Mike Stump6d9828c2009-07-17 01:31:16 +0000213
214 // Backpatch the gotos whose label -> block mappings we didn't know when we
215 // encountered them.
216 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000217 E = BackpatchBlocks.end(); I != E; ++I ) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000218
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000219 CFGBlock* B = *I;
220 GotoStmt* G = cast<GotoStmt>(B->getTerminator());
221 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
222
223 // If there is no target for the goto, then we are looking at an
224 // incomplete AST. Handle this by not registering a successor.
225 if (LI == LabelMap.end()) continue;
Mike Stump6d9828c2009-07-17 01:31:16 +0000226
227 B->addSuccessor(LI->second);
Ted Kremenek19bb3562007-08-28 19:26:49 +0000228 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000229
Ted Kremenek19bb3562007-08-28 19:26:49 +0000230 // Add successors to the Indirect Goto Dispatch block (if we have one).
231 if (CFGBlock* B = cfg->getIndirectGotoBlock())
232 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
233 E = AddressTakenLabels.end(); I != E; ++I ) {
234
235 // Lookup the target block.
236 LabelMapTy::iterator LI = LabelMap.find(*I);
237
238 // If there is no target block that contains label, then we are looking
239 // at an incomplete AST. Handle this by not registering a successor.
240 if (LI == LabelMap.end()) continue;
Mike Stump6d9828c2009-07-17 01:31:16 +0000241
242 B->addSuccessor(LI->second);
Ted Kremenek19bb3562007-08-28 19:26:49 +0000243 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000244
Ted Kremenek94b33162007-09-17 16:18:02 +0000245 Succ = B;
Ted Kremenek322f58d2007-09-26 21:23:31 +0000246 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000247
248 // Create an empty entry block that has no predecessors.
Ted Kremenek322f58d2007-09-26 21:23:31 +0000249 cfg->setEntry(createBlock());
Mike Stump6d9828c2009-07-17 01:31:16 +0000250
Ted Kremenek4102af92008-03-13 03:04:22 +0000251 if (badCFG) {
252 delete cfg;
253 cfg = NULL;
254 return NULL;
255 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000256
257 // NULL out cfg so that repeated calls to the builder will fail and that the
258 // ownership of the constructed CFG is passed to the caller.
Ted Kremenek322f58d2007-09-26 21:23:31 +0000259 CFG* t = cfg;
260 cfg = NULL;
261 return t;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000262}
Mike Stump6d9828c2009-07-17 01:31:16 +0000263
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000264/// createBlock - Used to lazily create blocks that are connected
265/// to the current (global) succcessor.
Mike Stump6d9828c2009-07-17 01:31:16 +0000266CFGBlock* CFGBuilder::createBlock(bool add_successor) {
Ted Kremenek94382522007-09-05 20:02:05 +0000267 CFGBlock* B = cfg->createBlock();
Ted Kremenek4f880632009-07-17 22:18:43 +0000268 if (add_successor && Succ)
269 B->addSuccessor(Succ);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000270 return B;
271}
Mike Stump6d9828c2009-07-17 01:31:16 +0000272
Ted Kremenek6c249722009-09-24 18:45:41 +0000273/// FinishBlock - "Finalize" the block by checking if we have a bad CFG.
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000274bool CFGBuilder::FinishBlock(CFGBlock* B) {
275 if (badCFG)
276 return false;
277
Ted Kremenek4f880632009-07-17 22:18:43 +0000278 assert(B);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000279 return true;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000280}
281
Ted Kremenek4f880632009-07-17 22:18:43 +0000282/// Visit - Walk the subtree of a statement and add extra
Mike Stump6d9828c2009-07-17 01:31:16 +0000283/// blocks for ternary operators, &&, and ||. We also process "," and
284/// DeclStmts (which may contain nested control-flow).
Ted Kremenek4f880632009-07-17 22:18:43 +0000285CFGBlock* CFGBuilder::Visit(Stmt * S, bool alwaysAdd) {
286tryAgain:
287 switch (S->getStmtClass()) {
288 default:
289 return VisitStmt(S, alwaysAdd);
290
291 case Stmt::AddrLabelExprClass:
292 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000293
Ted Kremenek4f880632009-07-17 22:18:43 +0000294 case Stmt::BinaryOperatorClass:
295 return VisitBinaryOperator(cast<BinaryOperator>(S), alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000296
Ted Kremenek4f880632009-07-17 22:18:43 +0000297 case Stmt::BlockExprClass:
Ted Kremenek13fc08a2009-07-18 00:47:21 +0000298 return VisitBlockExpr(cast<BlockExpr>(S), alwaysAdd);
Ted Kremenek4f880632009-07-17 22:18:43 +0000299
300 case Stmt::BlockDeclRefExprClass:
Ted Kremenek13fc08a2009-07-18 00:47:21 +0000301 return VisitBlockDeclRefExpr(cast<BlockDeclRefExpr>(S), alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000302
Ted Kremenek4f880632009-07-17 22:18:43 +0000303 case Stmt::BreakStmtClass:
304 return VisitBreakStmt(cast<BreakStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Ted Kremenek4f880632009-07-17 22:18:43 +0000306 case Stmt::CallExprClass:
307 return VisitCallExpr(cast<CallExpr>(S), alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000308
Ted Kremenek4f880632009-07-17 22:18:43 +0000309 case Stmt::CaseStmtClass:
310 return VisitCaseStmt(cast<CaseStmt>(S));
311
312 case Stmt::ChooseExprClass:
313 return VisitChooseExpr(cast<ChooseExpr>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000314
Ted Kremenek4f880632009-07-17 22:18:43 +0000315 case Stmt::CompoundStmtClass:
316 return VisitCompoundStmt(cast<CompoundStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000317
Ted Kremenek4f880632009-07-17 22:18:43 +0000318 case Stmt::ConditionalOperatorClass:
319 return VisitConditionalOperator(cast<ConditionalOperator>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Ted Kremenek4f880632009-07-17 22:18:43 +0000321 case Stmt::ContinueStmtClass:
322 return VisitContinueStmt(cast<ContinueStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000323
Ted Kremenek4f880632009-07-17 22:18:43 +0000324 case Stmt::DeclStmtClass:
325 return VisitDeclStmt(cast<DeclStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000326
Ted Kremenek4f880632009-07-17 22:18:43 +0000327 case Stmt::DefaultStmtClass:
328 return VisitDefaultStmt(cast<DefaultStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000329
Ted Kremenek4f880632009-07-17 22:18:43 +0000330 case Stmt::DoStmtClass:
331 return VisitDoStmt(cast<DoStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000332
Ted Kremenek4f880632009-07-17 22:18:43 +0000333 case Stmt::ForStmtClass:
334 return VisitForStmt(cast<ForStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Ted Kremenek4f880632009-07-17 22:18:43 +0000336 case Stmt::GotoStmtClass:
337 return VisitGotoStmt(cast<GotoStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Ted Kremenek4f880632009-07-17 22:18:43 +0000339 case Stmt::IfStmtClass:
340 return VisitIfStmt(cast<IfStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000341
Ted Kremenek4f880632009-07-17 22:18:43 +0000342 case Stmt::IndirectGotoStmtClass:
343 return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000344
Ted Kremenek4f880632009-07-17 22:18:43 +0000345 case Stmt::LabelStmtClass:
346 return VisitLabelStmt(cast<LabelStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000347
Ted Kremenek4f880632009-07-17 22:18:43 +0000348 case Stmt::ObjCAtCatchStmtClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000349 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
350
Mike Stump0979d802009-07-22 22:56:04 +0000351 case Stmt::CXXThrowExprClass:
352 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
353
Ted Kremenek4f880632009-07-17 22:18:43 +0000354 case Stmt::ObjCAtSynchronizedStmtClass:
355 return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000356
Ted Kremenek4f880632009-07-17 22:18:43 +0000357 case Stmt::ObjCAtThrowStmtClass:
358 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000359
Ted Kremenek4f880632009-07-17 22:18:43 +0000360 case Stmt::ObjCAtTryStmtClass:
361 return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Ted Kremenek4f880632009-07-17 22:18:43 +0000363 case Stmt::ObjCForCollectionStmtClass:
364 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000365
Ted Kremenek4f880632009-07-17 22:18:43 +0000366 case Stmt::ParenExprClass:
367 S = cast<ParenExpr>(S)->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000368 goto tryAgain;
369
Ted Kremenek4f880632009-07-17 22:18:43 +0000370 case Stmt::NullStmtClass:
371 return Block;
Mike Stump1eb44332009-09-09 15:08:12 +0000372
Ted Kremenek4f880632009-07-17 22:18:43 +0000373 case Stmt::ReturnStmtClass:
374 return VisitReturnStmt(cast<ReturnStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000375
Ted Kremenek4f880632009-07-17 22:18:43 +0000376 case Stmt::SizeOfAlignOfExprClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000377 return VisitSizeOfAlignOfExpr(cast<SizeOfAlignOfExpr>(S), alwaysAdd);
378
Ted Kremenek4f880632009-07-17 22:18:43 +0000379 case Stmt::StmtExprClass:
Ted Kremenek13fc08a2009-07-18 00:47:21 +0000380 return VisitStmtExpr(cast<StmtExpr>(S), alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000381
Ted Kremenek4f880632009-07-17 22:18:43 +0000382 case Stmt::SwitchStmtClass:
383 return VisitSwitchStmt(cast<SwitchStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000384
Ted Kremenek4f880632009-07-17 22:18:43 +0000385 case Stmt::WhileStmtClass:
386 return VisitWhileStmt(cast<WhileStmt>(S));
387 }
388}
Mike Stump1eb44332009-09-09 15:08:12 +0000389
Ted Kremenek4f880632009-07-17 22:18:43 +0000390CFGBlock *CFGBuilder::VisitStmt(Stmt *S, bool alwaysAdd) {
391 if (alwaysAdd) {
392 autoCreateBlock();
393 Block->appendStmt(S);
Mike Stump6d9828c2009-07-17 01:31:16 +0000394 }
Mike Stump1eb44332009-09-09 15:08:12 +0000395
Ted Kremenek4f880632009-07-17 22:18:43 +0000396 return VisitChildren(S);
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000397}
Mike Stump6d9828c2009-07-17 01:31:16 +0000398
Ted Kremenek4f880632009-07-17 22:18:43 +0000399/// VisitChildren - Visit the children of a Stmt.
400CFGBlock *CFGBuilder::VisitChildren(Stmt* Terminator) {
401 CFGBlock *B = Block;
Mike Stump54cc43f2009-02-26 08:00:25 +0000402 for (Stmt::child_iterator I = Terminator->child_begin(),
Ted Kremenek4f880632009-07-17 22:18:43 +0000403 E = Terminator->child_end(); I != E; ++I) {
404 if (*I) B = Visit(*I);
405 }
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000406 return B;
407}
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Ted Kremenek4f880632009-07-17 22:18:43 +0000409CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, bool alwaysAdd) {
410 AddressTakenLabels.insert(A->getLabel());
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000411
Ted Kremenek4f880632009-07-17 22:18:43 +0000412 if (alwaysAdd) {
413 autoCreateBlock();
414 Block->appendStmt(A);
415 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000416
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000417 return Block;
418}
Mike Stump1eb44332009-09-09 15:08:12 +0000419
Ted Kremenek4f880632009-07-17 22:18:43 +0000420CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B, bool alwaysAdd) {
421 if (B->isLogicalOp()) { // && or ||
Ted Kremenek4f880632009-07-17 22:18:43 +0000422 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
423 ConfluenceBlock->appendStmt(B);
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Ted Kremenek4f880632009-07-17 22:18:43 +0000425 if (!FinishBlock(ConfluenceBlock))
426 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000427
Ted Kremenek4f880632009-07-17 22:18:43 +0000428 // create the block evaluating the LHS
429 CFGBlock* LHSBlock = createBlock(false);
430 LHSBlock->setTerminator(B);
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Ted Kremenek4f880632009-07-17 22:18:43 +0000432 // create the block evaluating the RHS
433 Succ = ConfluenceBlock;
434 Block = NULL;
435 CFGBlock* RHSBlock = addStmt(B->getRHS());
436 if (!FinishBlock(RHSBlock))
437 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000438
Mike Stump00998a02009-07-23 23:25:26 +0000439 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000440 TryResult KnownVal = TryEvaluateBool(B->getLHS());
441 if (KnownVal.isKnown() && (B->getOpcode() == BinaryOperator::LOr))
442 KnownVal.negate();
Mike Stump00998a02009-07-23 23:25:26 +0000443
Ted Kremenek4f880632009-07-17 22:18:43 +0000444 // Now link the LHSBlock with RHSBlock.
445 if (B->getOpcode() == BinaryOperator::LOr) {
Ted Kremenek941fde82009-07-24 04:47:11 +0000446 LHSBlock->addSuccessor(KnownVal.isTrue() ? NULL : ConfluenceBlock);
447 LHSBlock->addSuccessor(KnownVal.isFalse() ? NULL : RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000448 } else {
Ted Kremenek4f880632009-07-17 22:18:43 +0000449 assert (B->getOpcode() == BinaryOperator::LAnd);
Ted Kremenek941fde82009-07-24 04:47:11 +0000450 LHSBlock->addSuccessor(KnownVal.isFalse() ? NULL : RHSBlock);
451 LHSBlock->addSuccessor(KnownVal.isTrue() ? NULL : ConfluenceBlock);
Ted Kremenek4f880632009-07-17 22:18:43 +0000452 }
Mike Stump1eb44332009-09-09 15:08:12 +0000453
Ted Kremenek4f880632009-07-17 22:18:43 +0000454 // Generate the blocks for evaluating the LHS.
455 Block = LHSBlock;
456 return addStmt(B->getLHS());
Mike Stump1eb44332009-09-09 15:08:12 +0000457 }
Ted Kremenek4f880632009-07-17 22:18:43 +0000458 else if (B->getOpcode() == BinaryOperator::Comma) { // ,
Ted Kremenek6dc534e2009-07-17 22:57:50 +0000459 autoCreateBlock();
Ted Kremenek4f880632009-07-17 22:18:43 +0000460 Block->appendStmt(B);
461 addStmt(B->getRHS());
462 return addStmt(B->getLHS());
463 }
Mike Stump1eb44332009-09-09 15:08:12 +0000464
Ted Kremenek4f880632009-07-17 22:18:43 +0000465 return VisitStmt(B, alwaysAdd);
466}
467
Ted Kremenek13fc08a2009-07-18 00:47:21 +0000468CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr* E, bool alwaysAdd) {
Ted Kremenek4f880632009-07-17 22:18:43 +0000469 // FIXME
470 return NYS();
471}
472
Ted Kremenek13fc08a2009-07-18 00:47:21 +0000473CFGBlock *CFGBuilder::VisitBlockDeclRefExpr(BlockDeclRefExpr* E,
474 bool alwaysAdd) {
Ted Kremenek4f880632009-07-17 22:18:43 +0000475 // FIXME
476 return NYS();
477}
Mike Stump1eb44332009-09-09 15:08:12 +0000478
Ted Kremenek4f880632009-07-17 22:18:43 +0000479CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
480 // "break" is a control-flow statement. Thus we stop processing the current
481 // block.
482 if (Block && !FinishBlock(Block))
483 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000484
Ted Kremenek4f880632009-07-17 22:18:43 +0000485 // Now create a new block that ends with the break statement.
486 Block = createBlock(false);
487 Block->setTerminator(B);
Mike Stump1eb44332009-09-09 15:08:12 +0000488
Ted Kremenek4f880632009-07-17 22:18:43 +0000489 // If there is no target for the break, then we are looking at an incomplete
490 // AST. This means that the CFG cannot be constructed.
491 if (BreakTargetBlock)
492 Block->addSuccessor(BreakTargetBlock);
493 else
494 badCFG = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000495
496
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000497 return Block;
498}
Mike Stump1eb44332009-09-09 15:08:12 +0000499
Ted Kremenek4f880632009-07-17 22:18:43 +0000500CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, bool alwaysAdd) {
501 // If this is a call to a no-return function, this stops the block here.
Mike Stump24556362009-07-25 21:26:53 +0000502 bool NoReturn = false;
503 if (C->getCallee()->getType().getNoReturnAttr()) {
504 NoReturn = true;
Ted Kremenek4f880632009-07-17 22:18:43 +0000505 }
Mike Stump24556362009-07-25 21:26:53 +0000506
507 if (FunctionDecl *FD = C->getDirectCallee())
508 if (FD->hasAttr<NoReturnAttr>())
509 NoReturn = true;
510
511 if (!NoReturn)
512 return VisitStmt(C, alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000513
Mike Stump24556362009-07-25 21:26:53 +0000514 if (Block && !FinishBlock(Block))
515 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000516
Mike Stump24556362009-07-25 21:26:53 +0000517 // Create new block with no successor for the remaining pieces.
518 Block = createBlock(false);
519 Block->appendStmt(C);
520
521 // Wire this to the exit block directly.
522 Block->addSuccessor(&cfg->getExit());
Mike Stump1eb44332009-09-09 15:08:12 +0000523
Mike Stump24556362009-07-25 21:26:53 +0000524 return VisitChildren(C);
Ted Kremenek4f880632009-07-17 22:18:43 +0000525}
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000526
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000527CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C) {
528 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
529 ConfluenceBlock->appendStmt(C);
530 if (!FinishBlock(ConfluenceBlock))
531 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000532
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000533 Succ = ConfluenceBlock;
534 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +0000535 CFGBlock* LHSBlock = addStmt(C->getLHS());
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000536 if (!FinishBlock(LHSBlock))
537 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000538
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000539 Succ = ConfluenceBlock;
540 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +0000541 CFGBlock* RHSBlock = addStmt(C->getRHS());
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000542 if (!FinishBlock(RHSBlock))
543 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000545 Block = createBlock(false);
Mike Stump00998a02009-07-23 23:25:26 +0000546 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000547 const TryResult& KnownVal = TryEvaluateBool(C->getCond());
548 Block->addSuccessor(KnownVal.isFalse() ? NULL : LHSBlock);
549 Block->addSuccessor(KnownVal.isTrue() ? NULL : RHSBlock);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000550 Block->setTerminator(C);
Mike Stump1eb44332009-09-09 15:08:12 +0000551 return addStmt(C->getCond());
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000552}
Mike Stump1eb44332009-09-09 15:08:12 +0000553
554
555CFGBlock* CFGBuilder::VisitCompoundStmt(CompoundStmt* C) {
556 CFGBlock* LastBlock = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +0000557
558 for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
559 I != E; ++I ) {
560 LastBlock = addStmt(*I);
Mike Stump1eb44332009-09-09 15:08:12 +0000561
Ted Kremeneke8d6d2b2009-08-27 23:16:26 +0000562 if (badCFG)
563 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000564 }
Ted Kremenek4f880632009-07-17 22:18:43 +0000565 return LastBlock;
566}
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000568CFGBlock *CFGBuilder::VisitConditionalOperator(ConditionalOperator *C) {
569 // Create the confluence block that will "merge" the results of the ternary
570 // expression.
571 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
572 ConfluenceBlock->appendStmt(C);
573 if (!FinishBlock(ConfluenceBlock))
574 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000575
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000576 // Create a block for the LHS expression if there is an LHS expression. A
577 // GCC extension allows LHS to be NULL, causing the condition to be the
578 // value that is returned instead.
579 // e.g: x ?: y is shorthand for: x ? x : y;
580 Succ = ConfluenceBlock;
581 Block = NULL;
582 CFGBlock* LHSBlock = NULL;
583 if (C->getLHS()) {
Ted Kremenek4f880632009-07-17 22:18:43 +0000584 LHSBlock = addStmt(C->getLHS());
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000585 if (!FinishBlock(LHSBlock))
586 return 0;
587 Block = NULL;
588 }
Mike Stump1eb44332009-09-09 15:08:12 +0000589
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000590 // Create the block for the RHS expression.
591 Succ = ConfluenceBlock;
Ted Kremenek4f880632009-07-17 22:18:43 +0000592 CFGBlock* RHSBlock = addStmt(C->getRHS());
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000593 if (!FinishBlock(RHSBlock))
594 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000595
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000596 // Create the block that will contain the condition.
597 Block = createBlock(false);
Mike Stump1eb44332009-09-09 15:08:12 +0000598
Mike Stump00998a02009-07-23 23:25:26 +0000599 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000600 const TryResult& KnownVal = TryEvaluateBool(C->getCond());
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000601 if (LHSBlock) {
Ted Kremenek941fde82009-07-24 04:47:11 +0000602 Block->addSuccessor(KnownVal.isFalse() ? NULL : LHSBlock);
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000603 } else {
Ted Kremenek941fde82009-07-24 04:47:11 +0000604 if (KnownVal.isFalse()) {
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000605 // If we know the condition is false, add NULL as the successor for
606 // the block containing the condition. In this case, the confluence
607 // block will have just one predecessor.
608 Block->addSuccessor(0);
Ted Kremenek941fde82009-07-24 04:47:11 +0000609 assert(ConfluenceBlock->pred_size() == 1);
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000610 } else {
611 // If we have no LHS expression, add the ConfluenceBlock as a direct
612 // successor for the block containing the condition. Moreover, we need to
613 // reverse the order of the predecessors in the ConfluenceBlock because
614 // the RHSBlock will have been added to the succcessors already, and we
615 // want the first predecessor to the the block containing the expression
616 // for the case when the ternary expression evaluates to true.
617 Block->addSuccessor(ConfluenceBlock);
Ted Kremenek941fde82009-07-24 04:47:11 +0000618 assert(ConfluenceBlock->pred_size() == 2);
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000619 std::reverse(ConfluenceBlock->pred_begin(),
620 ConfluenceBlock->pred_end());
621 }
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000622 }
Mike Stump1eb44332009-09-09 15:08:12 +0000623
624 Block->addSuccessor(KnownVal.isTrue() ? NULL : RHSBlock);
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000625 Block->setTerminator(C);
626 return addStmt(C->getCond());
627}
628
Ted Kremenek4f880632009-07-17 22:18:43 +0000629CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
630 autoCreateBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +0000631
Ted Kremenek4f880632009-07-17 22:18:43 +0000632 if (DS->isSingleDecl()) {
633 Block->appendStmt(DS);
634 return VisitDeclSubExpr(DS->getSingleDecl());
Ted Kremenekd34066c2008-02-26 00:22:58 +0000635 }
Mike Stump1eb44332009-09-09 15:08:12 +0000636
Ted Kremenek4f880632009-07-17 22:18:43 +0000637 CFGBlock *B = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Ted Kremenek4f880632009-07-17 22:18:43 +0000639 // FIXME: Add a reverse iterator for DeclStmt to avoid this extra copy.
640 typedef llvm::SmallVector<Decl*,10> BufTy;
641 BufTy Buf(DS->decl_begin(), DS->decl_end());
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Ted Kremenek4f880632009-07-17 22:18:43 +0000643 for (BufTy::reverse_iterator I = Buf.rbegin(), E = Buf.rend(); I != E; ++I) {
644 // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
645 unsigned A = llvm::AlignOf<DeclStmt>::Alignment < 8
646 ? 8 : llvm::AlignOf<DeclStmt>::Alignment;
Mike Stump1eb44332009-09-09 15:08:12 +0000647
Ted Kremenek4f880632009-07-17 22:18:43 +0000648 // Allocate the DeclStmt using the BumpPtrAllocator. It will get
649 // automatically freed with the CFG.
650 DeclGroupRef DG(*I);
651 Decl *D = *I;
Mike Stump1eb44332009-09-09 15:08:12 +0000652 void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
Ted Kremenek4f880632009-07-17 22:18:43 +0000653 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
Mike Stump1eb44332009-09-09 15:08:12 +0000654
Ted Kremenek4f880632009-07-17 22:18:43 +0000655 // Append the fake DeclStmt to block.
656 Block->appendStmt(DSNew);
657 B = VisitDeclSubExpr(D);
658 }
Mike Stump1eb44332009-09-09 15:08:12 +0000659
660 return B;
Ted Kremenek4f880632009-07-17 22:18:43 +0000661}
Mike Stump1eb44332009-09-09 15:08:12 +0000662
Ted Kremenek4f880632009-07-17 22:18:43 +0000663/// VisitDeclSubExpr - Utility method to add block-level expressions for
664/// initializers in Decls.
665CFGBlock *CFGBuilder::VisitDeclSubExpr(Decl* D) {
666 assert(Block);
Ted Kremenekd34066c2008-02-26 00:22:58 +0000667
Ted Kremenek4f880632009-07-17 22:18:43 +0000668 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +0000669
Ted Kremenek4f880632009-07-17 22:18:43 +0000670 if (!VD)
671 return Block;
Mike Stump1eb44332009-09-09 15:08:12 +0000672
Ted Kremenek4f880632009-07-17 22:18:43 +0000673 Expr *Init = VD->getInit();
Mike Stump1eb44332009-09-09 15:08:12 +0000674
Ted Kremenek4f880632009-07-17 22:18:43 +0000675 if (Init) {
676 // Optimization: Don't create separate block-level statements for literals.
677 switch (Init->getStmtClass()) {
678 case Stmt::IntegerLiteralClass:
679 case Stmt::CharacterLiteralClass:
680 case Stmt::StringLiteralClass:
681 break;
682 default:
683 Block = addStmt(Init);
684 }
685 }
Mike Stump1eb44332009-09-09 15:08:12 +0000686
Ted Kremenek4f880632009-07-17 22:18:43 +0000687 // If the type of VD is a VLA, then we must process its size expressions.
688 for (VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); VA != 0;
689 VA = FindVA(VA->getElementType().getTypePtr()))
690 Block = addStmt(VA->getSizeExpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000691
Ted Kremenek4f880632009-07-17 22:18:43 +0000692 return Block;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000693}
694
695CFGBlock* CFGBuilder::VisitIfStmt(IfStmt* I) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000696 // We may see an if statement in the middle of a basic block, or it may be the
697 // first statement we are processing. In either case, we create a new basic
698 // block. First, we create the blocks for the then...else statements, and
699 // then we create the block containing the if statement. If we were in the
Ted Kremenek6c249722009-09-24 18:45:41 +0000700 // middle of a block, we stop processing that block. That block is then the
701 // implicit successor for the "then" and "else" clauses.
Mike Stump6d9828c2009-07-17 01:31:16 +0000702
703 // The block we were proccessing is now finished. Make it the successor
704 // block.
705 if (Block) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000706 Succ = Block;
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000707 if (!FinishBlock(Block))
708 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000709 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000710
Ted Kremenekb6f1d782009-07-17 18:04:55 +0000711 // Process the false branch.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000712 CFGBlock* ElseBlock = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000713
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000714 if (Stmt* Else = I->getElse()) {
715 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump6d9828c2009-07-17 01:31:16 +0000716
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000717 // NULL out Block so that the recursive call to Visit will
Mike Stump6d9828c2009-07-17 01:31:16 +0000718 // create a new basic block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000719 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +0000720 ElseBlock = addStmt(Else);
Mike Stump6d9828c2009-07-17 01:31:16 +0000721
Ted Kremenekb6f7b722007-08-30 18:13:31 +0000722 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
723 ElseBlock = sv.get();
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000724 else if (Block) {
725 if (!FinishBlock(ElseBlock))
726 return 0;
727 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000728 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000729
Ted Kremenekb6f1d782009-07-17 18:04:55 +0000730 // Process the true branch.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000731 CFGBlock* ThenBlock;
732 {
733 Stmt* Then = I->getThen();
734 assert (Then);
735 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump6d9828c2009-07-17 01:31:16 +0000736 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +0000737 ThenBlock = addStmt(Then);
Mike Stump6d9828c2009-07-17 01:31:16 +0000738
Ted Kremenekdbdf7942009-04-01 03:52:47 +0000739 if (!ThenBlock) {
740 // We can reach here if the "then" body has all NullStmts.
741 // Create an empty block so we can distinguish between true and false
742 // branches in path-sensitive analyses.
743 ThenBlock = createBlock(false);
744 ThenBlock->addSuccessor(sv.get());
Mike Stump6d9828c2009-07-17 01:31:16 +0000745 } else if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000746 if (!FinishBlock(ThenBlock))
747 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +0000748 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000749 }
750
Mike Stump6d9828c2009-07-17 01:31:16 +0000751 // Now create a new block containing the if statement.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000752 Block = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +0000753
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000754 // Set the terminator of the new block to the If statement.
755 Block->setTerminator(I);
Mike Stump6d9828c2009-07-17 01:31:16 +0000756
Mike Stump00998a02009-07-23 23:25:26 +0000757 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000758 const TryResult &KnownVal = TryEvaluateBool(I->getCond());
Mike Stump00998a02009-07-23 23:25:26 +0000759
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000760 // Now add the successors.
Ted Kremenek941fde82009-07-24 04:47:11 +0000761 Block->addSuccessor(KnownVal.isFalse() ? NULL : ThenBlock);
762 Block->addSuccessor(KnownVal.isTrue()? NULL : ElseBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +0000763
764 // Add the condition as the last statement in the new block. This may create
765 // new blocks as the condition may contain control-flow. Any newly created
766 // blocks will be pointed to be "Block".
Ted Kremenek4f880632009-07-17 22:18:43 +0000767 return addStmt(I->getCond());
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000768}
Mike Stump6d9828c2009-07-17 01:31:16 +0000769
770
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000771CFGBlock* CFGBuilder::VisitReturnStmt(ReturnStmt* R) {
Ted Kremenek6c249722009-09-24 18:45:41 +0000772 // If we were in the middle of a block we stop processing that block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000773 //
Mike Stump6d9828c2009-07-17 01:31:16 +0000774 // NOTE: If a "return" appears in the middle of a block, this means that the
775 // code afterwards is DEAD (unreachable). We still keep a basic block
776 // for that code; a simple "mark-and-sweep" from the entry block will be
777 // able to report such dead blocks.
Ted Kremenek6c249722009-09-24 18:45:41 +0000778 if (Block)
779 FinishBlock(Block);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000780
781 // Create the new block.
782 Block = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +0000783
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000784 // The Exit block is the only successor.
785 Block->addSuccessor(&cfg->getExit());
Mike Stump6d9828c2009-07-17 01:31:16 +0000786
787 // Add the return statement to the block. This may create new blocks if R
788 // contains control-flow (short-circuit operations).
Ted Kremenek4f880632009-07-17 22:18:43 +0000789 return VisitStmt(R, true);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000790}
791
792CFGBlock* CFGBuilder::VisitLabelStmt(LabelStmt* L) {
793 // Get the block of the labeled statement. Add it to our map.
Ted Kremenek4f880632009-07-17 22:18:43 +0000794 addStmt(L->getSubStmt());
Ted Kremenek2677ea82008-03-15 07:45:02 +0000795 CFGBlock* LabelBlock = Block;
Mike Stump6d9828c2009-07-17 01:31:16 +0000796
Ted Kremenek4f880632009-07-17 22:18:43 +0000797 if (!LabelBlock) // This can happen when the body is empty, i.e.
798 LabelBlock = createBlock(); // scopes that only contains NullStmts.
Mike Stump6d9828c2009-07-17 01:31:16 +0000799
Ted Kremenek4f880632009-07-17 22:18:43 +0000800 assert(LabelMap.find(L) == LabelMap.end() && "label already in map");
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000801 LabelMap[ L ] = LabelBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000802
803 // Labels partition blocks, so this is the end of the basic block we were
804 // processing (L is the block's label). Because this is label (and we have
805 // already processed the substatement) there is no extra control-flow to worry
806 // about.
Ted Kremenek9cffe732007-08-29 23:20:49 +0000807 LabelBlock->setLabel(L);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000808 if (!FinishBlock(LabelBlock))
809 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +0000810
811 // We set Block to NULL to allow lazy creation of a new block (if necessary);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000812 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +0000813
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000814 // This block is now the implicit successor of other blocks.
815 Succ = LabelBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000816
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000817 return LabelBlock;
818}
819
820CFGBlock* CFGBuilder::VisitGotoStmt(GotoStmt* G) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000821 // Goto is a control-flow statement. Thus we stop processing the current
822 // block and create a new one.
Ted Kremenek4f880632009-07-17 22:18:43 +0000823 if (Block)
824 FinishBlock(Block);
825
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000826 Block = createBlock(false);
827 Block->setTerminator(G);
Mike Stump6d9828c2009-07-17 01:31:16 +0000828
829 // If we already know the mapping to the label block add the successor now.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000830 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
Mike Stump6d9828c2009-07-17 01:31:16 +0000831
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000832 if (I == LabelMap.end())
833 // We will need to backpatch this block later.
834 BackpatchBlocks.push_back(Block);
835 else
836 Block->addSuccessor(I->second);
837
Mike Stump6d9828c2009-07-17 01:31:16 +0000838 return Block;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000839}
840
841CFGBlock* CFGBuilder::VisitForStmt(ForStmt* F) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000842 CFGBlock* LoopSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +0000843
Mike Stumpfefb9f72009-07-21 01:12:51 +0000844 // "for" is a control-flow statement. Thus we stop processing the current
845 // block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000846 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000847 if (!FinishBlock(Block))
848 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000849 LoopSuccessor = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +0000850 } else
851 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000852
853 // Because of short-circuit evaluation, the condition of the loop can span
854 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
855 // evaluate the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000856 CFGBlock* ExitConditionBlock = createBlock(false);
857 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000858
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000859 // Set the terminator for the "exit" condition block.
Mike Stump6d9828c2009-07-17 01:31:16 +0000860 ExitConditionBlock->setTerminator(F);
861
862 // Now add the actual condition to the condition block. Because the condition
863 // itself may contain control-flow, new blocks may be created.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000864 if (Stmt* C = F->getCond()) {
865 Block = ExitConditionBlock;
866 EntryConditionBlock = addStmt(C);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000867 if (Block) {
868 if (!FinishBlock(EntryConditionBlock))
869 return 0;
870 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000871 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000872
Mike Stump6d9828c2009-07-17 01:31:16 +0000873 // The condition block is the implicit successor for the loop body as well as
874 // any code above the loop.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000875 Succ = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000876
Mike Stump00998a02009-07-23 23:25:26 +0000877 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000878 TryResult KnownVal(true);
Mike Stump1eb44332009-09-09 15:08:12 +0000879
Mike Stump00998a02009-07-23 23:25:26 +0000880 if (F->getCond())
881 KnownVal = TryEvaluateBool(F->getCond());
882
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000883 // Now create the loop body.
884 {
885 assert (F->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +0000886
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000887 // Save the current values for Block, Succ, and continue and break targets
888 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
889 save_continue(ContinueTargetBlock),
Mike Stump6d9828c2009-07-17 01:31:16 +0000890 save_break(BreakTargetBlock);
891
Ted Kremenekaf603f72007-08-30 18:39:40 +0000892 // Create a new block to contain the (bottom) of the loop body.
893 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +0000894
Ted Kremeneke9334502008-09-04 21:48:47 +0000895 if (Stmt* I = F->getInc()) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000896 // Generate increment code in its own basic block. This is the target of
897 // continue statements.
Ted Kremenek4f880632009-07-17 22:18:43 +0000898 Succ = addStmt(I);
Mike Stump6d9828c2009-07-17 01:31:16 +0000899 } else {
900 // No increment code. Create a special, empty, block that is used as the
901 // target block for "looping back" to the start of the loop.
Ted Kremenek3575f842009-04-28 00:51:56 +0000902 assert(Succ == EntryConditionBlock);
903 Succ = createBlock();
Ted Kremeneke9334502008-09-04 21:48:47 +0000904 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000905
Ted Kremenek3575f842009-04-28 00:51:56 +0000906 // Finish up the increment (or empty) block if it hasn't been already.
907 if (Block) {
908 assert(Block == Succ);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000909 if (!FinishBlock(Block))
910 return 0;
Ted Kremenek3575f842009-04-28 00:51:56 +0000911 Block = 0;
912 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000913
Ted Kremenek3575f842009-04-28 00:51:56 +0000914 ContinueTargetBlock = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000915
Ted Kremenek3575f842009-04-28 00:51:56 +0000916 // The starting block for the loop increment is the block that should
917 // represent the 'loop target' for looping back to the start of the loop.
918 ContinueTargetBlock->setLoopTarget(F);
919
Ted Kremeneke9334502008-09-04 21:48:47 +0000920 // All breaks should go to the code following the loop.
Mike Stump6d9828c2009-07-17 01:31:16 +0000921 BreakTargetBlock = LoopSuccessor;
922
923 // Now populate the body block, and in the process create new blocks as we
924 // walk the body of the loop.
Ted Kremenek4f880632009-07-17 22:18:43 +0000925 CFGBlock* BodyBlock = addStmt(F->getBody());
Ted Kremenekaf603f72007-08-30 18:39:40 +0000926
927 if (!BodyBlock)
Zhongxing Xu1d4b2182009-08-20 02:56:48 +0000928 BodyBlock = ContinueTargetBlock; // can happen for "for (...;...;...) ;"
Ted Kremenek941fde82009-07-24 04:47:11 +0000929 else if (Block && !FinishBlock(BodyBlock))
930 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +0000931
Ted Kremenek941fde82009-07-24 04:47:11 +0000932 // This new body block is a successor to our "exit" condition block.
933 ExitConditionBlock->addSuccessor(KnownVal.isFalse() ? NULL : BodyBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000934 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000935
Ted Kremenek941fde82009-07-24 04:47:11 +0000936 // Link up the condition block with the code that follows the loop. (the
937 // false branch).
938 ExitConditionBlock->addSuccessor(KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump6d9828c2009-07-17 01:31:16 +0000939
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000940 // If the loop contains initialization, create a new block for those
Mike Stump6d9828c2009-07-17 01:31:16 +0000941 // statements. This block can also contain statements that precede the loop.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000942 if (Stmt* I = F->getInit()) {
943 Block = createBlock();
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000944 return addStmt(I);
Mike Stump6d9828c2009-07-17 01:31:16 +0000945 } else {
946 // There is no loop initialization. We are thus basically a while loop.
947 // NULL out Block to force lazy block construction.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000948 Block = NULL;
Ted Kremenek54827132008-02-27 07:20:00 +0000949 Succ = EntryConditionBlock;
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000950 return EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000951 }
952}
953
Ted Kremenek514de5a2008-11-11 17:10:00 +0000954CFGBlock* CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt* S) {
955 // Objective-C fast enumeration 'for' statements:
956 // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
957 //
958 // for ( Type newVariable in collection_expression ) { statements }
959 //
960 // becomes:
961 //
962 // prologue:
963 // 1. collection_expression
964 // T. jump to loop_entry
965 // loop_entry:
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000966 // 1. side-effects of element expression
Ted Kremenek514de5a2008-11-11 17:10:00 +0000967 // 1. ObjCForCollectionStmt [performs binding to newVariable]
968 // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil]
969 // TB:
970 // statements
971 // T. jump to loop_entry
972 // FB:
973 // what comes after
974 //
975 // and
976 //
977 // Type existingItem;
978 // for ( existingItem in expression ) { statements }
979 //
980 // becomes:
981 //
Mike Stump6d9828c2009-07-17 01:31:16 +0000982 // the same with newVariable replaced with existingItem; the binding works
983 // the same except that for one ObjCForCollectionStmt::getElement() returns
984 // a DeclStmt and the other returns a DeclRefExpr.
Ted Kremenek514de5a2008-11-11 17:10:00 +0000985 //
Mike Stump6d9828c2009-07-17 01:31:16 +0000986
Ted Kremenek514de5a2008-11-11 17:10:00 +0000987 CFGBlock* LoopSuccessor = 0;
Mike Stump6d9828c2009-07-17 01:31:16 +0000988
Ted Kremenek514de5a2008-11-11 17:10:00 +0000989 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000990 if (!FinishBlock(Block))
991 return 0;
Ted Kremenek514de5a2008-11-11 17:10:00 +0000992 LoopSuccessor = Block;
993 Block = 0;
Ted Kremenek4f880632009-07-17 22:18:43 +0000994 } else
995 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000996
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000997 // Build the condition blocks.
998 CFGBlock* ExitConditionBlock = createBlock(false);
999 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001000
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001001 // Set the terminator for the "exit" condition block.
Mike Stump6d9828c2009-07-17 01:31:16 +00001002 ExitConditionBlock->setTerminator(S);
1003
1004 // The last statement in the block should be the ObjCForCollectionStmt, which
1005 // performs the actual binding to 'element' and determines if there are any
1006 // more items in the collection.
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001007 ExitConditionBlock->appendStmt(S);
1008 Block = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001009
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001010 // Walk the 'element' expression to see if there are any side-effects. We
Mike Stump6d9828c2009-07-17 01:31:16 +00001011 // generate new blocks as necesary. We DON'T add the statement by default to
1012 // the CFG unless it contains control-flow.
Ted Kremenek4f880632009-07-17 22:18:43 +00001013 EntryConditionBlock = Visit(S->getElement(), false);
Mike Stump6d9828c2009-07-17 01:31:16 +00001014 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001015 if (!FinishBlock(EntryConditionBlock))
1016 return 0;
1017 Block = 0;
1018 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001019
1020 // The condition block is the implicit successor for the loop body as well as
1021 // any code above the loop.
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001022 Succ = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001023
Ted Kremenek514de5a2008-11-11 17:10:00 +00001024 // Now create the true branch.
Mike Stump6d9828c2009-07-17 01:31:16 +00001025 {
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001026 // Save the current values for Succ, continue and break targets.
1027 SaveAndRestore<CFGBlock*> save_Succ(Succ),
Mike Stump6d9828c2009-07-17 01:31:16 +00001028 save_continue(ContinueTargetBlock), save_break(BreakTargetBlock);
1029
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001030 BreakTargetBlock = LoopSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001031 ContinueTargetBlock = EntryConditionBlock;
1032
Ted Kremenek4f880632009-07-17 22:18:43 +00001033 CFGBlock* BodyBlock = addStmt(S->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001034
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001035 if (!BodyBlock)
1036 BodyBlock = EntryConditionBlock; // can happen for "for (X in Y) ;"
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001037 else if (Block) {
1038 if (!FinishBlock(BodyBlock))
1039 return 0;
1040 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001041
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001042 // This new body block is a successor to our "exit" condition block.
1043 ExitConditionBlock->addSuccessor(BodyBlock);
1044 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001045
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001046 // Link up the condition block with the code that follows the loop.
1047 // (the false branch).
1048 ExitConditionBlock->addSuccessor(LoopSuccessor);
1049
Ted Kremenek514de5a2008-11-11 17:10:00 +00001050 // Now create a prologue block to contain the collection expression.
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001051 Block = createBlock();
Ted Kremenek514de5a2008-11-11 17:10:00 +00001052 return addStmt(S->getCollection());
Mike Stump6d9828c2009-07-17 01:31:16 +00001053}
1054
Ted Kremenekb3b0b362009-05-02 01:49:13 +00001055CFGBlock* CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt* S) {
1056 // FIXME: Add locking 'primitives' to CFG for @synchronized.
Mike Stump6d9828c2009-07-17 01:31:16 +00001057
Ted Kremenekb3b0b362009-05-02 01:49:13 +00001058 // Inline the body.
Ted Kremenek4f880632009-07-17 22:18:43 +00001059 CFGBlock *SyncBlock = addStmt(S->getSynchBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001060
Ted Kremenekda5348e2009-05-05 23:11:51 +00001061 // The sync body starts its own basic block. This makes it a little easier
1062 // for diagnostic clients.
1063 if (SyncBlock) {
1064 if (!FinishBlock(SyncBlock))
1065 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001066
Ted Kremenekda5348e2009-05-05 23:11:51 +00001067 Block = 0;
1068 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001069
Ted Kremenekda5348e2009-05-05 23:11:51 +00001070 Succ = SyncBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001071
Ted Kremenekb3b0b362009-05-02 01:49:13 +00001072 // Inline the sync expression.
Ted Kremenek4f880632009-07-17 22:18:43 +00001073 return addStmt(S->getSynchExpr());
Ted Kremenekb3b0b362009-05-02 01:49:13 +00001074}
Mike Stump6d9828c2009-07-17 01:31:16 +00001075
Ted Kremeneke31c0d22009-03-30 22:29:21 +00001076CFGBlock* CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt* S) {
Ted Kremenek4f880632009-07-17 22:18:43 +00001077 // FIXME
Ted Kremenek90658ec2009-04-07 04:26:02 +00001078 return NYS();
Ted Kremeneke31c0d22009-03-30 22:29:21 +00001079}
Ted Kremenek514de5a2008-11-11 17:10:00 +00001080
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001081CFGBlock* CFGBuilder::VisitWhileStmt(WhileStmt* W) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001082 CFGBlock* LoopSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001083
Mike Stumpfefb9f72009-07-21 01:12:51 +00001084 // "while" is a control-flow statement. Thus we stop processing the current
1085 // block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001086 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001087 if (!FinishBlock(Block))
1088 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001089 LoopSuccessor = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001090 } else
1091 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +00001092
1093 // Because of short-circuit evaluation, the condition of the loop can span
1094 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
1095 // evaluate the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001096 CFGBlock* ExitConditionBlock = createBlock(false);
1097 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001098
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001099 // Set the terminator for the "exit" condition block.
1100 ExitConditionBlock->setTerminator(W);
Mike Stump6d9828c2009-07-17 01:31:16 +00001101
1102 // Now add the actual condition to the condition block. Because the condition
1103 // itself may contain control-flow, new blocks may be created. Thus we update
1104 // "Succ" after adding the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001105 if (Stmt* C = W->getCond()) {
1106 Block = ExitConditionBlock;
1107 EntryConditionBlock = addStmt(C);
Ted Kremenekf6e85412009-04-28 03:09:44 +00001108 assert(Block == EntryConditionBlock);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001109 if (Block) {
1110 if (!FinishBlock(EntryConditionBlock))
1111 return 0;
1112 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001113 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001114
1115 // The condition block is the implicit successor for the loop body as well as
1116 // any code above the loop.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001117 Succ = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001118
Mike Stump00998a02009-07-23 23:25:26 +00001119 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +00001120 const TryResult& KnownVal = TryEvaluateBool(W->getCond());
Mike Stump00998a02009-07-23 23:25:26 +00001121
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001122 // Process the loop body.
1123 {
Ted Kremenekf6e85412009-04-28 03:09:44 +00001124 assert(W->getBody());
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001125
1126 // Save the current values for Block, Succ, and continue and break targets
1127 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
1128 save_continue(ContinueTargetBlock),
1129 save_break(BreakTargetBlock);
Ted Kremenekf6e85412009-04-28 03:09:44 +00001130
Mike Stump6d9828c2009-07-17 01:31:16 +00001131 // Create an empty block to represent the transition block for looping back
1132 // to the head of the loop.
Ted Kremenekf6e85412009-04-28 03:09:44 +00001133 Block = 0;
1134 assert(Succ == EntryConditionBlock);
1135 Succ = createBlock();
1136 Succ->setLoopTarget(W);
Mike Stump6d9828c2009-07-17 01:31:16 +00001137 ContinueTargetBlock = Succ;
1138
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001139 // All breaks should go to the code following the loop.
1140 BreakTargetBlock = LoopSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001141
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001142 // NULL out Block to force lazy instantiation of blocks for the body.
1143 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001144
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001145 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek4f880632009-07-17 22:18:43 +00001146 CFGBlock* BodyBlock = addStmt(W->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001147
Ted Kremenekaf603f72007-08-30 18:39:40 +00001148 if (!BodyBlock)
Zhongxing Xud5c3b132009-08-20 03:21:49 +00001149 BodyBlock = ContinueTargetBlock; // can happen for "while(...) ;"
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001150 else if (Block) {
1151 if (!FinishBlock(BodyBlock))
1152 return 0;
1153 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001154
Ted Kremenek941fde82009-07-24 04:47:11 +00001155 // Add the loop body entry as a successor to the condition.
1156 ExitConditionBlock->addSuccessor(KnownVal.isFalse() ? NULL : BodyBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001157 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001158
Ted Kremenek941fde82009-07-24 04:47:11 +00001159 // Link up the condition block with the code that follows the loop. (the
1160 // false branch).
1161 ExitConditionBlock->addSuccessor(KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump6d9828c2009-07-17 01:31:16 +00001162
1163 // There can be no more statements in the condition block since we loop back
1164 // to this block. NULL out Block to force lazy creation of another block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001165 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001166
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001167 // Return the condition block, which is the dominating block for the loop.
Ted Kremenek54827132008-02-27 07:20:00 +00001168 Succ = EntryConditionBlock;
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001169 return EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001170}
Mike Stump1eb44332009-09-09 15:08:12 +00001171
1172
Ted Kremenek4f880632009-07-17 22:18:43 +00001173CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt* S) {
1174 // FIXME: For now we pretend that @catch and the code it contains does not
1175 // exit.
1176 return Block;
1177}
Mike Stump6d9828c2009-07-17 01:31:16 +00001178
Ted Kremenek2fda5042008-12-09 20:20:09 +00001179CFGBlock* CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt* S) {
1180 // FIXME: This isn't complete. We basically treat @throw like a return
1181 // statement.
Mike Stump6d9828c2009-07-17 01:31:16 +00001182
Ted Kremenek6c249722009-09-24 18:45:41 +00001183 // If we were in the middle of a block we stop processing that block.
Ted Kremenek4f880632009-07-17 22:18:43 +00001184 if (Block && !FinishBlock(Block))
1185 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001186
Ted Kremenek2fda5042008-12-09 20:20:09 +00001187 // Create the new block.
1188 Block = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +00001189
Ted Kremenek2fda5042008-12-09 20:20:09 +00001190 // The Exit block is the only successor.
1191 Block->addSuccessor(&cfg->getExit());
Mike Stump6d9828c2009-07-17 01:31:16 +00001192
1193 // Add the statement to the block. This may create new blocks if S contains
1194 // control-flow (short-circuit operations).
Ted Kremenek4f880632009-07-17 22:18:43 +00001195 return VisitStmt(S, true);
Ted Kremenek2fda5042008-12-09 20:20:09 +00001196}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001197
Mike Stump0979d802009-07-22 22:56:04 +00001198CFGBlock* CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr* T) {
Ted Kremenek6c249722009-09-24 18:45:41 +00001199 // If we were in the middle of a block we stop processing that block.
Mike Stump0979d802009-07-22 22:56:04 +00001200 if (Block && !FinishBlock(Block))
1201 return 0;
1202
1203 // Create the new block.
1204 Block = createBlock(false);
1205
1206 // The Exit block is the only successor.
1207 Block->addSuccessor(&cfg->getExit());
1208
1209 // Add the statement to the block. This may create new blocks if S contains
1210 // control-flow (short-circuit operations).
1211 return VisitStmt(T, true);
1212}
1213
Ted Kremenek4f880632009-07-17 22:18:43 +00001214CFGBlock *CFGBuilder::VisitDoStmt(DoStmt* D) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001215 CFGBlock* LoopSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001216
Mike Stump8f9893a2009-07-21 01:27:50 +00001217 // "do...while" is a control-flow statement. Thus we stop processing the
1218 // current block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001219 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001220 if (!FinishBlock(Block))
1221 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001222 LoopSuccessor = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001223 } else
1224 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +00001225
1226 // Because of short-circuit evaluation, the condition of the loop can span
1227 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
1228 // evaluate the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001229 CFGBlock* ExitConditionBlock = createBlock(false);
1230 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001231
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001232 // Set the terminator for the "exit" condition block.
Mike Stump6d9828c2009-07-17 01:31:16 +00001233 ExitConditionBlock->setTerminator(D);
1234
1235 // Now add the actual condition to the condition block. Because the condition
1236 // itself may contain control-flow, new blocks may be created.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001237 if (Stmt* C = D->getCond()) {
1238 Block = ExitConditionBlock;
1239 EntryConditionBlock = addStmt(C);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001240 if (Block) {
1241 if (!FinishBlock(EntryConditionBlock))
1242 return 0;
1243 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001244 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001245
Ted Kremenek54827132008-02-27 07:20:00 +00001246 // The condition block is the implicit successor for the loop body.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001247 Succ = EntryConditionBlock;
1248
Mike Stump00998a02009-07-23 23:25:26 +00001249 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +00001250 const TryResult &KnownVal = TryEvaluateBool(D->getCond());
Mike Stump00998a02009-07-23 23:25:26 +00001251
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001252 // Process the loop body.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001253 CFGBlock* BodyBlock = NULL;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001254 {
1255 assert (D->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001256
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001257 // Save the current values for Block, Succ, and continue and break targets
1258 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
1259 save_continue(ContinueTargetBlock),
1260 save_break(BreakTargetBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +00001261
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001262 // All continues within this loop should go to the condition block
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001263 ContinueTargetBlock = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001264
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001265 // All breaks should go to the code following the loop.
1266 BreakTargetBlock = LoopSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001267
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001268 // NULL out Block to force lazy instantiation of blocks for the body.
1269 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001270
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001271 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek4f880632009-07-17 22:18:43 +00001272 BodyBlock = addStmt(D->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001273
Ted Kremenekaf603f72007-08-30 18:39:40 +00001274 if (!BodyBlock)
Ted Kremeneka9d996d2008-02-27 00:28:17 +00001275 BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001276 else if (Block) {
1277 if (!FinishBlock(BodyBlock))
1278 return 0;
1279 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001280
Ted Kremenek8f08c9d2009-04-28 04:22:00 +00001281 // Add an intermediate block between the BodyBlock and the
Mike Stump6d9828c2009-07-17 01:31:16 +00001282 // ExitConditionBlock to represent the "loop back" transition. Create an
1283 // empty block to represent the transition block for looping back to the
1284 // head of the loop.
Ted Kremenek8f08c9d2009-04-28 04:22:00 +00001285 // FIXME: Can we do this more efficiently without adding another block?
1286 Block = NULL;
1287 Succ = BodyBlock;
1288 CFGBlock *LoopBackBlock = createBlock();
1289 LoopBackBlock->setLoopTarget(D);
Mike Stump6d9828c2009-07-17 01:31:16 +00001290
Ted Kremenek941fde82009-07-24 04:47:11 +00001291 // Add the loop body entry as a successor to the condition.
1292 ExitConditionBlock->addSuccessor(KnownVal.isFalse() ? NULL : LoopBackBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001293 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001294
Ted Kremenek941fde82009-07-24 04:47:11 +00001295 // Link up the condition block with the code that follows the loop.
1296 // (the false branch).
1297 ExitConditionBlock->addSuccessor(KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump6d9828c2009-07-17 01:31:16 +00001298
1299 // There can be no more statements in the body block(s) since we loop back to
1300 // the body. NULL out Block to force lazy creation of another block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001301 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001302
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001303 // Return the loop body, which is the dominating block for the loop.
Ted Kremenek54827132008-02-27 07:20:00 +00001304 Succ = BodyBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001305 return BodyBlock;
1306}
1307
1308CFGBlock* CFGBuilder::VisitContinueStmt(ContinueStmt* C) {
1309 // "continue" is a control-flow statement. Thus we stop processing the
1310 // current block.
Ted Kremenek4f880632009-07-17 22:18:43 +00001311 if (Block && !FinishBlock(Block))
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001312 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001313
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001314 // Now create a new block that ends with the continue statement.
1315 Block = createBlock(false);
1316 Block->setTerminator(C);
Mike Stump6d9828c2009-07-17 01:31:16 +00001317
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001318 // If there is no target for the continue, then we are looking at an
Ted Kremenek235c5ed2009-04-07 18:53:24 +00001319 // incomplete AST. This means the CFG cannot be constructed.
1320 if (ContinueTargetBlock)
1321 Block->addSuccessor(ContinueTargetBlock);
1322 else
1323 badCFG = true;
Mike Stump6d9828c2009-07-17 01:31:16 +00001324
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001325 return Block;
1326}
Mike Stump1eb44332009-09-09 15:08:12 +00001327
Ted Kremenek13fc08a2009-07-18 00:47:21 +00001328CFGBlock *CFGBuilder::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E,
1329 bool alwaysAdd) {
1330
1331 if (alwaysAdd) {
1332 autoCreateBlock();
1333 Block->appendStmt(E);
1334 }
Mike Stump1eb44332009-09-09 15:08:12 +00001335
Ted Kremenek4f880632009-07-17 22:18:43 +00001336 // VLA types have expressions that must be evaluated.
1337 if (E->isArgumentType()) {
1338 for (VariableArrayType* VA = FindVA(E->getArgumentType().getTypePtr());
1339 VA != 0; VA = FindVA(VA->getElementType().getTypePtr()))
1340 addStmt(VA->getSizeExpr());
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001341 }
Mike Stump1eb44332009-09-09 15:08:12 +00001342
Mike Stump6d9828c2009-07-17 01:31:16 +00001343 return Block;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001344}
Mike Stump1eb44332009-09-09 15:08:12 +00001345
Ted Kremenek4f880632009-07-17 22:18:43 +00001346/// VisitStmtExpr - Utility method to handle (nested) statement
1347/// expressions (a GCC extension).
Ted Kremenek13fc08a2009-07-18 00:47:21 +00001348CFGBlock* CFGBuilder::VisitStmtExpr(StmtExpr *SE, bool alwaysAdd) {
1349 if (alwaysAdd) {
1350 autoCreateBlock();
1351 Block->appendStmt(SE);
1352 }
Ted Kremenek4f880632009-07-17 22:18:43 +00001353 return VisitCompoundStmt(SE->getSubStmt());
1354}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001355
Ted Kremenek411cdee2008-04-16 21:10:48 +00001356CFGBlock* CFGBuilder::VisitSwitchStmt(SwitchStmt* Terminator) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001357 // "switch" is a control-flow statement. Thus we stop processing the current
1358 // block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001359 CFGBlock* SwitchSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001360
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001361 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001362 if (!FinishBlock(Block))
1363 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001364 SwitchSuccessor = Block;
Mike Stump6d9828c2009-07-17 01:31:16 +00001365 } else SwitchSuccessor = Succ;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001366
1367 // Save the current "switch" context.
1368 SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001369 save_break(BreakTargetBlock),
1370 save_default(DefaultCaseBlock);
1371
Mike Stump6d9828c2009-07-17 01:31:16 +00001372 // Set the "default" case to be the block after the switch statement. If the
1373 // switch statement contains a "default:", this value will be overwritten with
1374 // the block for that code.
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001375 DefaultCaseBlock = SwitchSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001376
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001377 // Create a new block that will contain the switch statement.
1378 SwitchTerminatedBlock = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +00001379
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001380 // Now process the switch body. The code after the switch is the implicit
1381 // successor.
1382 Succ = SwitchSuccessor;
1383 BreakTargetBlock = SwitchSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001384
1385 // When visiting the body, the case statements should automatically get linked
1386 // up to the switch. We also don't keep a pointer to the body, since all
1387 // control-flow from the switch goes to case/default statements.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001388 assert (Terminator->getBody() && "switch must contain a non-NULL body");
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001389 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +00001390 CFGBlock *BodyBlock = addStmt(Terminator->getBody());
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001391 if (Block) {
1392 if (!FinishBlock(BodyBlock))
1393 return 0;
1394 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001395
Mike Stump6d9828c2009-07-17 01:31:16 +00001396 // If we have no "default:" case, the default transition is to the code
1397 // following the switch body.
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001398 SwitchTerminatedBlock->addSuccessor(DefaultCaseBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +00001399
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001400 // Add the terminator and condition in the switch block.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001401 SwitchTerminatedBlock->setTerminator(Terminator);
1402 assert (Terminator->getCond() && "switch condition must be non-NULL");
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001403 Block = SwitchTerminatedBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001404
Ted Kremenek411cdee2008-04-16 21:10:48 +00001405 return addStmt(Terminator->getCond());
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001406}
1407
Ted Kremenek4f880632009-07-17 22:18:43 +00001408CFGBlock* CFGBuilder::VisitCaseStmt(CaseStmt* CS) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001409 // CaseStmts are essentially labels, so they are the first statement in a
1410 // block.
Ted Kremenek29ccaa12007-08-30 18:48:11 +00001411
Ted Kremenek4f880632009-07-17 22:18:43 +00001412 if (CS->getSubStmt())
1413 addStmt(CS->getSubStmt());
Mike Stump1eb44332009-09-09 15:08:12 +00001414
Ted Kremenek29ccaa12007-08-30 18:48:11 +00001415 CFGBlock* CaseBlock = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001416 if (!CaseBlock)
1417 CaseBlock = createBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +00001418
1419 // Cases statements partition blocks, so this is the top of the basic block we
1420 // were processing (the "case XXX:" is the label).
Ted Kremenek4f880632009-07-17 22:18:43 +00001421 CaseBlock->setLabel(CS);
1422
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001423 if (!FinishBlock(CaseBlock))
1424 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001425
1426 // Add this block to the list of successors for the block with the switch
1427 // statement.
Ted Kremenek4f880632009-07-17 22:18:43 +00001428 assert(SwitchTerminatedBlock);
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001429 SwitchTerminatedBlock->addSuccessor(CaseBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +00001430
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001431 // We set Block to NULL to allow lazy creation of a new block (if necessary)
1432 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001433
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001434 // This block is now the implicit successor of other blocks.
1435 Succ = CaseBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001436
Ted Kremenek2677ea82008-03-15 07:45:02 +00001437 return CaseBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001438}
Mike Stump6d9828c2009-07-17 01:31:16 +00001439
Ted Kremenek411cdee2008-04-16 21:10:48 +00001440CFGBlock* CFGBuilder::VisitDefaultStmt(DefaultStmt* Terminator) {
Ted Kremenek4f880632009-07-17 22:18:43 +00001441 if (Terminator->getSubStmt())
1442 addStmt(Terminator->getSubStmt());
Mike Stump1eb44332009-09-09 15:08:12 +00001443
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001444 DefaultCaseBlock = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001445
1446 if (!DefaultCaseBlock)
1447 DefaultCaseBlock = createBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +00001448
1449 // Default statements partition blocks, so this is the top of the basic block
1450 // we were processing (the "default:" is the label).
Ted Kremenek411cdee2008-04-16 21:10:48 +00001451 DefaultCaseBlock->setLabel(Terminator);
Mike Stump1eb44332009-09-09 15:08:12 +00001452
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001453 if (!FinishBlock(DefaultCaseBlock))
1454 return 0;
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001455
Mike Stump6d9828c2009-07-17 01:31:16 +00001456 // Unlike case statements, we don't add the default block to the successors
1457 // for the switch statement immediately. This is done when we finish
1458 // processing the switch statement. This allows for the default case
1459 // (including a fall-through to the code after the switch statement) to always
1460 // be the last successor of a switch-terminated block.
1461
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001462 // We set Block to NULL to allow lazy creation of a new block (if necessary)
1463 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001464
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001465 // This block is now the implicit successor of other blocks.
1466 Succ = DefaultCaseBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001467
1468 return DefaultCaseBlock;
Ted Kremenek295222c2008-02-13 21:46:34 +00001469}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001470
Ted Kremenek19bb3562007-08-28 19:26:49 +00001471CFGBlock* CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt* I) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001472 // Lazily create the indirect-goto dispatch block if there isn't one already.
Ted Kremenek19bb3562007-08-28 19:26:49 +00001473 CFGBlock* IBlock = cfg->getIndirectGotoBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +00001474
Ted Kremenek19bb3562007-08-28 19:26:49 +00001475 if (!IBlock) {
1476 IBlock = createBlock(false);
1477 cfg->setIndirectGotoBlock(IBlock);
1478 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001479
Ted Kremenek19bb3562007-08-28 19:26:49 +00001480 // IndirectGoto is a control-flow statement. Thus we stop processing the
1481 // current block and create a new one.
Ted Kremenek4f880632009-07-17 22:18:43 +00001482 if (Block && !FinishBlock(Block))
1483 return 0;
1484
Ted Kremenek19bb3562007-08-28 19:26:49 +00001485 Block = createBlock(false);
1486 Block->setTerminator(I);
1487 Block->addSuccessor(IBlock);
1488 return addStmt(I->getTarget());
1489}
1490
Ted Kremenekbefef2f2007-08-23 21:26:19 +00001491} // end anonymous namespace
Ted Kremenek026473c2007-08-23 16:51:22 +00001492
Mike Stump6d9828c2009-07-17 01:31:16 +00001493/// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has
1494/// no successors or predecessors. If this is the first block created in the
1495/// CFG, it is automatically set to be the Entry and Exit of the CFG.
Ted Kremenek94382522007-09-05 20:02:05 +00001496CFGBlock* CFG::createBlock() {
Ted Kremenek026473c2007-08-23 16:51:22 +00001497 bool first_block = begin() == end();
1498
1499 // Create the block.
Ted Kremenek94382522007-09-05 20:02:05 +00001500 Blocks.push_front(CFGBlock(NumBlockIDs++));
Ted Kremenek026473c2007-08-23 16:51:22 +00001501
1502 // If this is the first block, set it as the Entry and Exit.
1503 if (first_block) Entry = Exit = &front();
1504
1505 // Return the block.
1506 return &front();
Ted Kremenekfddd5182007-08-21 21:42:03 +00001507}
1508
Ted Kremenek026473c2007-08-23 16:51:22 +00001509/// buildCFG - Constructs a CFG from an AST. Ownership of the returned
1510/// CFG is returned to the caller.
Mike Stumpe5af3ce2009-07-20 23:24:15 +00001511CFG* CFG::buildCFG(Stmt* Statement, ASTContext *C) {
Ted Kremenek026473c2007-08-23 16:51:22 +00001512 CFGBuilder Builder;
Mike Stumpe5af3ce2009-07-20 23:24:15 +00001513 return Builder.buildCFG(Statement, C);
Ted Kremenek026473c2007-08-23 16:51:22 +00001514}
1515
Ted Kremenek63f58872007-10-01 19:33:33 +00001516//===----------------------------------------------------------------------===//
1517// CFG: Queries for BlkExprs.
1518//===----------------------------------------------------------------------===//
Ted Kremenek7dba8602007-08-29 21:56:09 +00001519
Ted Kremenek63f58872007-10-01 19:33:33 +00001520namespace {
Ted Kremenek86946742008-01-17 20:48:37 +00001521 typedef llvm::DenseMap<const Stmt*,unsigned> BlkExprMapTy;
Ted Kremenek63f58872007-10-01 19:33:33 +00001522}
1523
Ted Kremenek411cdee2008-04-16 21:10:48 +00001524static void FindSubExprAssignments(Stmt* Terminator, llvm::SmallPtrSet<Expr*,50>& Set) {
1525 if (!Terminator)
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001526 return;
Mike Stump6d9828c2009-07-17 01:31:16 +00001527
Ted Kremenek411cdee2008-04-16 21:10:48 +00001528 for (Stmt::child_iterator I=Terminator->child_begin(), E=Terminator->child_end(); I!=E; ++I) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001529 if (!*I) continue;
Mike Stump6d9828c2009-07-17 01:31:16 +00001530
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001531 if (BinaryOperator* B = dyn_cast<BinaryOperator>(*I))
1532 if (B->isAssignmentOp()) Set.insert(B);
Mike Stump6d9828c2009-07-17 01:31:16 +00001533
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001534 FindSubExprAssignments(*I, Set);
1535 }
1536}
1537
Ted Kremenek63f58872007-10-01 19:33:33 +00001538static BlkExprMapTy* PopulateBlkExprMap(CFG& cfg) {
1539 BlkExprMapTy* M = new BlkExprMapTy();
Mike Stump6d9828c2009-07-17 01:31:16 +00001540
1541 // Look for assignments that are used as subexpressions. These are the only
1542 // assignments that we want to *possibly* register as a block-level
1543 // expression. Basically, if an assignment occurs both in a subexpression and
1544 // at the block-level, it is a block-level expression.
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001545 llvm::SmallPtrSet<Expr*,50> SubExprAssignments;
Mike Stump6d9828c2009-07-17 01:31:16 +00001546
Ted Kremenek63f58872007-10-01 19:33:33 +00001547 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I)
1548 for (CFGBlock::iterator BI=I->begin(), EI=I->end(); BI != EI; ++BI)
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001549 FindSubExprAssignments(*BI, SubExprAssignments);
Ted Kremenek86946742008-01-17 20:48:37 +00001550
Ted Kremenek411cdee2008-04-16 21:10:48 +00001551 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001552
1553 // Iterate over the statements again on identify the Expr* and Stmt* at the
1554 // block-level that are block-level expressions.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001555
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001556 for (CFGBlock::iterator BI=I->begin(), EI=I->end(); BI != EI; ++BI)
Ted Kremenek411cdee2008-04-16 21:10:48 +00001557 if (Expr* Exp = dyn_cast<Expr>(*BI)) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001558
Ted Kremenek411cdee2008-04-16 21:10:48 +00001559 if (BinaryOperator* B = dyn_cast<BinaryOperator>(Exp)) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001560 // Assignment expressions that are not nested within another
Mike Stump6d9828c2009-07-17 01:31:16 +00001561 // expression are really "statements" whose value is never used by
1562 // another expression.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001563 if (B->isAssignmentOp() && !SubExprAssignments.count(Exp))
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001564 continue;
Mike Stump6d9828c2009-07-17 01:31:16 +00001565 } else if (const StmtExpr* Terminator = dyn_cast<StmtExpr>(Exp)) {
1566 // Special handling for statement expressions. The last statement in
1567 // the statement expression is also a block-level expr.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001568 const CompoundStmt* C = Terminator->getSubStmt();
Ted Kremenek86946742008-01-17 20:48:37 +00001569 if (!C->body_empty()) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001570 unsigned x = M->size();
Ted Kremenek86946742008-01-17 20:48:37 +00001571 (*M)[C->body_back()] = x;
1572 }
1573 }
Ted Kremeneke2dcd782008-01-25 23:22:27 +00001574
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001575 unsigned x = M->size();
Ted Kremenek411cdee2008-04-16 21:10:48 +00001576 (*M)[Exp] = x;
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001577 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001578
Ted Kremenek411cdee2008-04-16 21:10:48 +00001579 // Look at terminators. The condition is a block-level expression.
Mike Stump6d9828c2009-07-17 01:31:16 +00001580
Ted Kremenek390e48b2008-11-12 21:11:49 +00001581 Stmt* S = I->getTerminatorCondition();
Mike Stump6d9828c2009-07-17 01:31:16 +00001582
Ted Kremenek390e48b2008-11-12 21:11:49 +00001583 if (S && M->find(S) == M->end()) {
Ted Kremenek411cdee2008-04-16 21:10:48 +00001584 unsigned x = M->size();
Ted Kremenek390e48b2008-11-12 21:11:49 +00001585 (*M)[S] = x;
Ted Kremenek411cdee2008-04-16 21:10:48 +00001586 }
1587 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001588
Ted Kremenek63f58872007-10-01 19:33:33 +00001589 return M;
1590}
1591
Ted Kremenek86946742008-01-17 20:48:37 +00001592CFG::BlkExprNumTy CFG::getBlkExprNum(const Stmt* S) {
1593 assert(S != NULL);
Ted Kremenek63f58872007-10-01 19:33:33 +00001594 if (!BlkExprMap) { BlkExprMap = (void*) PopulateBlkExprMap(*this); }
Mike Stump6d9828c2009-07-17 01:31:16 +00001595
Ted Kremenek63f58872007-10-01 19:33:33 +00001596 BlkExprMapTy* M = reinterpret_cast<BlkExprMapTy*>(BlkExprMap);
Ted Kremenek86946742008-01-17 20:48:37 +00001597 BlkExprMapTy::iterator I = M->find(S);
Mike Stump6d9828c2009-07-17 01:31:16 +00001598
Ted Kremenek63f58872007-10-01 19:33:33 +00001599 if (I == M->end()) return CFG::BlkExprNumTy();
1600 else return CFG::BlkExprNumTy(I->second);
1601}
1602
1603unsigned CFG::getNumBlkExprs() {
1604 if (const BlkExprMapTy* M = reinterpret_cast<const BlkExprMapTy*>(BlkExprMap))
1605 return M->size();
1606 else {
1607 // We assume callers interested in the number of BlkExprs will want
1608 // the map constructed if it doesn't already exist.
1609 BlkExprMap = (void*) PopulateBlkExprMap(*this);
1610 return reinterpret_cast<BlkExprMapTy*>(BlkExprMap)->size();
1611 }
1612}
1613
Ted Kremenek274f4332008-04-28 18:00:46 +00001614//===----------------------------------------------------------------------===//
Ted Kremenek274f4332008-04-28 18:00:46 +00001615// Cleanup: CFG dstor.
1616//===----------------------------------------------------------------------===//
1617
Ted Kremenek63f58872007-10-01 19:33:33 +00001618CFG::~CFG() {
1619 delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap);
1620}
Mike Stump6d9828c2009-07-17 01:31:16 +00001621
Ted Kremenek7dba8602007-08-29 21:56:09 +00001622//===----------------------------------------------------------------------===//
1623// CFG pretty printing
1624//===----------------------------------------------------------------------===//
1625
Ted Kremeneke8ee26b2007-08-22 18:22:34 +00001626namespace {
1627
Ted Kremenek6fa9b882008-01-08 18:15:10 +00001628class VISIBILITY_HIDDEN StmtPrinterHelper : public PrinterHelper {
Mike Stump6d9828c2009-07-17 01:31:16 +00001629
Ted Kremenek42a509f2007-08-31 21:30:12 +00001630 typedef llvm::DenseMap<Stmt*,std::pair<unsigned,unsigned> > StmtMapTy;
1631 StmtMapTy StmtMap;
1632 signed CurrentBlock;
1633 unsigned CurrentStmt;
Chris Lattnere4f21422009-06-30 01:26:17 +00001634 const LangOptions &LangOpts;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001635public:
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001636
Chris Lattnere4f21422009-06-30 01:26:17 +00001637 StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
1638 : CurrentBlock(0), CurrentStmt(0), LangOpts(LO) {
Ted Kremenek42a509f2007-08-31 21:30:12 +00001639 for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
1640 unsigned j = 1;
1641 for (CFGBlock::const_iterator BI = I->begin(), BEnd = I->end() ;
1642 BI != BEnd; ++BI, ++j )
1643 StmtMap[*BI] = std::make_pair(I->getBlockID(),j);
1644 }
1645 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001646
Ted Kremenek42a509f2007-08-31 21:30:12 +00001647 virtual ~StmtPrinterHelper() {}
Mike Stump6d9828c2009-07-17 01:31:16 +00001648
Chris Lattnere4f21422009-06-30 01:26:17 +00001649 const LangOptions &getLangOpts() const { return LangOpts; }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001650 void setBlockID(signed i) { CurrentBlock = i; }
1651 void setStmtID(unsigned i) { CurrentStmt = i; }
Mike Stump6d9828c2009-07-17 01:31:16 +00001652
Ted Kremeneka95d3752008-09-13 05:16:45 +00001653 virtual bool handledStmt(Stmt* Terminator, llvm::raw_ostream& OS) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001654
Ted Kremenek411cdee2008-04-16 21:10:48 +00001655 StmtMapTy::iterator I = StmtMap.find(Terminator);
Ted Kremenek42a509f2007-08-31 21:30:12 +00001656
1657 if (I == StmtMap.end())
1658 return false;
Mike Stump6d9828c2009-07-17 01:31:16 +00001659
1660 if (CurrentBlock >= 0 && I->second.first == (unsigned) CurrentBlock
Ted Kremenek42a509f2007-08-31 21:30:12 +00001661 && I->second.second == CurrentStmt)
1662 return false;
Mike Stump6d9828c2009-07-17 01:31:16 +00001663
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001664 OS << "[B" << I->second.first << "." << I->second.second << "]";
1665 return true;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001666 }
1667};
Chris Lattnere4f21422009-06-30 01:26:17 +00001668} // end anonymous namespace
Ted Kremenek42a509f2007-08-31 21:30:12 +00001669
Chris Lattnere4f21422009-06-30 01:26:17 +00001670
1671namespace {
Ted Kremenek6fa9b882008-01-08 18:15:10 +00001672class VISIBILITY_HIDDEN CFGBlockTerminatorPrint
1673 : public StmtVisitor<CFGBlockTerminatorPrint,void> {
Mike Stump6d9828c2009-07-17 01:31:16 +00001674
Ted Kremeneka95d3752008-09-13 05:16:45 +00001675 llvm::raw_ostream& OS;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001676 StmtPrinterHelper* Helper;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001677 PrintingPolicy Policy;
1678
Ted Kremenek42a509f2007-08-31 21:30:12 +00001679public:
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001680 CFGBlockTerminatorPrint(llvm::raw_ostream& os, StmtPrinterHelper* helper,
Chris Lattnere4f21422009-06-30 01:26:17 +00001681 const PrintingPolicy &Policy)
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001682 : OS(os), Helper(helper), Policy(Policy) {}
Mike Stump6d9828c2009-07-17 01:31:16 +00001683
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001684 void VisitIfStmt(IfStmt* I) {
1685 OS << "if ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001686 I->getCond()->printPretty(OS,Helper,Policy);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001687 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001688
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001689 // Default case.
Mike Stump6d9828c2009-07-17 01:31:16 +00001690 void VisitStmt(Stmt* Terminator) {
1691 Terminator->printPretty(OS, Helper, Policy);
1692 }
1693
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001694 void VisitForStmt(ForStmt* F) {
1695 OS << "for (" ;
Ted Kremenek535bb202007-08-30 21:28:02 +00001696 if (F->getInit()) OS << "...";
1697 OS << "; ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001698 if (Stmt* C = F->getCond()) C->printPretty(OS, Helper, Policy);
Ted Kremenek535bb202007-08-30 21:28:02 +00001699 OS << "; ";
1700 if (F->getInc()) OS << "...";
Ted Kremeneka2925852008-01-30 23:02:42 +00001701 OS << ")";
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001702 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001703
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001704 void VisitWhileStmt(WhileStmt* W) {
1705 OS << "while " ;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001706 if (Stmt* C = W->getCond()) C->printPretty(OS, Helper, Policy);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001707 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001708
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001709 void VisitDoStmt(DoStmt* D) {
1710 OS << "do ... while ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001711 if (Stmt* C = D->getCond()) C->printPretty(OS, Helper, Policy);
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001712 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001713
Ted Kremenek411cdee2008-04-16 21:10:48 +00001714 void VisitSwitchStmt(SwitchStmt* Terminator) {
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001715 OS << "switch ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001716 Terminator->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001717 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001718
Ted Kremenek805e9a82007-08-31 21:49:40 +00001719 void VisitConditionalOperator(ConditionalOperator* C) {
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001720 C->getCond()->printPretty(OS, Helper, Policy);
Mike Stump6d9828c2009-07-17 01:31:16 +00001721 OS << " ? ... : ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00001722 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001723
Ted Kremenekaeddbf62007-08-31 22:29:13 +00001724 void VisitChooseExpr(ChooseExpr* C) {
1725 OS << "__builtin_choose_expr( ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001726 C->getCond()->printPretty(OS, Helper, Policy);
Ted Kremeneka2925852008-01-30 23:02:42 +00001727 OS << " )";
Ted Kremenekaeddbf62007-08-31 22:29:13 +00001728 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001729
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001730 void VisitIndirectGotoStmt(IndirectGotoStmt* I) {
1731 OS << "goto *";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001732 I->getTarget()->printPretty(OS, Helper, Policy);
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001733 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001734
Ted Kremenek805e9a82007-08-31 21:49:40 +00001735 void VisitBinaryOperator(BinaryOperator* B) {
1736 if (!B->isLogicalOp()) {
1737 VisitExpr(B);
1738 return;
1739 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001740
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001741 B->getLHS()->printPretty(OS, Helper, Policy);
Mike Stump6d9828c2009-07-17 01:31:16 +00001742
Ted Kremenek805e9a82007-08-31 21:49:40 +00001743 switch (B->getOpcode()) {
1744 case BinaryOperator::LOr:
Ted Kremeneka2925852008-01-30 23:02:42 +00001745 OS << " || ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00001746 return;
1747 case BinaryOperator::LAnd:
Ted Kremeneka2925852008-01-30 23:02:42 +00001748 OS << " && ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00001749 return;
1750 default:
1751 assert(false && "Invalid logical operator.");
Mike Stump6d9828c2009-07-17 01:31:16 +00001752 }
Ted Kremenek805e9a82007-08-31 21:49:40 +00001753 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001754
Ted Kremenek0b1d9b72007-08-27 21:54:41 +00001755 void VisitExpr(Expr* E) {
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001756 E->printPretty(OS, Helper, Policy);
Mike Stump6d9828c2009-07-17 01:31:16 +00001757 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001758};
Chris Lattnere4f21422009-06-30 01:26:17 +00001759} // end anonymous namespace
1760
Mike Stump6d9828c2009-07-17 01:31:16 +00001761
Chris Lattnere4f21422009-06-30 01:26:17 +00001762static void print_stmt(llvm::raw_ostream &OS, StmtPrinterHelper* Helper,
1763 Stmt* Terminator) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001764 if (Helper) {
1765 // special printing for statement-expressions.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001766 if (StmtExpr* SE = dyn_cast<StmtExpr>(Terminator)) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001767 CompoundStmt* Sub = SE->getSubStmt();
Mike Stump6d9828c2009-07-17 01:31:16 +00001768
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001769 if (Sub->child_begin() != Sub->child_end()) {
Ted Kremenek60266e82007-08-31 22:47:06 +00001770 OS << "({ ... ; ";
Ted Kremenek7a9d9d72007-10-29 20:41:04 +00001771 Helper->handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
Ted Kremenek60266e82007-08-31 22:47:06 +00001772 OS << " })\n";
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001773 return;
1774 }
1775 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001776
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001777 // special printing for comma expressions.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001778 if (BinaryOperator* B = dyn_cast<BinaryOperator>(Terminator)) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001779 if (B->getOpcode() == BinaryOperator::Comma) {
1780 OS << "... , ";
1781 Helper->handledStmt(B->getRHS(),OS);
1782 OS << '\n';
1783 return;
Mike Stump6d9828c2009-07-17 01:31:16 +00001784 }
1785 }
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001786 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001787
Chris Lattnere4f21422009-06-30 01:26:17 +00001788 Terminator->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts()));
Mike Stump6d9828c2009-07-17 01:31:16 +00001789
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001790 // Expressions need a newline.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001791 if (isa<Expr>(Terminator)) OS << '\n';
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001792}
Mike Stump6d9828c2009-07-17 01:31:16 +00001793
Chris Lattnere4f21422009-06-30 01:26:17 +00001794static void print_block(llvm::raw_ostream& OS, const CFG* cfg,
1795 const CFGBlock& B,
1796 StmtPrinterHelper* Helper, bool print_edges) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001797
Ted Kremenek42a509f2007-08-31 21:30:12 +00001798 if (Helper) Helper->setBlockID(B.getBlockID());
Mike Stump6d9828c2009-07-17 01:31:16 +00001799
Ted Kremenek7dba8602007-08-29 21:56:09 +00001800 // Print the header.
Mike Stump6d9828c2009-07-17 01:31:16 +00001801 OS << "\n [ B" << B.getBlockID();
1802
Ted Kremenek42a509f2007-08-31 21:30:12 +00001803 if (&B == &cfg->getEntry())
1804 OS << " (ENTRY) ]\n";
1805 else if (&B == &cfg->getExit())
1806 OS << " (EXIT) ]\n";
1807 else if (&B == cfg->getIndirectGotoBlock())
Ted Kremenek7dba8602007-08-29 21:56:09 +00001808 OS << " (INDIRECT GOTO DISPATCH) ]\n";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001809 else
1810 OS << " ]\n";
Mike Stump6d9828c2009-07-17 01:31:16 +00001811
Ted Kremenek9cffe732007-08-29 23:20:49 +00001812 // Print the label of this block.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001813 if (Stmt* Terminator = const_cast<Stmt*>(B.getLabel())) {
Ted Kremenek42a509f2007-08-31 21:30:12 +00001814
1815 if (print_edges)
1816 OS << " ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001817
Ted Kremenek411cdee2008-04-16 21:10:48 +00001818 if (LabelStmt* L = dyn_cast<LabelStmt>(Terminator))
Ted Kremenek9cffe732007-08-29 23:20:49 +00001819 OS << L->getName();
Ted Kremenek411cdee2008-04-16 21:10:48 +00001820 else if (CaseStmt* C = dyn_cast<CaseStmt>(Terminator)) {
Ted Kremenek9cffe732007-08-29 23:20:49 +00001821 OS << "case ";
Chris Lattnere4f21422009-06-30 01:26:17 +00001822 C->getLHS()->printPretty(OS, Helper,
1823 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek9cffe732007-08-29 23:20:49 +00001824 if (C->getRHS()) {
1825 OS << " ... ";
Chris Lattnere4f21422009-06-30 01:26:17 +00001826 C->getRHS()->printPretty(OS, Helper,
1827 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek9cffe732007-08-29 23:20:49 +00001828 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001829 } else if (isa<DefaultStmt>(Terminator))
Ted Kremenek9cffe732007-08-29 23:20:49 +00001830 OS << "default";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001831 else
1832 assert(false && "Invalid label statement in CFGBlock.");
Mike Stump6d9828c2009-07-17 01:31:16 +00001833
Ted Kremenek9cffe732007-08-29 23:20:49 +00001834 OS << ":\n";
1835 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001836
Ted Kremenekfddd5182007-08-21 21:42:03 +00001837 // Iterate through the statements in the block and print them.
Ted Kremenekfddd5182007-08-21 21:42:03 +00001838 unsigned j = 1;
Mike Stump6d9828c2009-07-17 01:31:16 +00001839
Ted Kremenek42a509f2007-08-31 21:30:12 +00001840 for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
1841 I != E ; ++I, ++j ) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001842
Ted Kremenek9cffe732007-08-29 23:20:49 +00001843 // Print the statement # in the basic block and the statement itself.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001844 if (print_edges)
1845 OS << " ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001846
Ted Kremeneka95d3752008-09-13 05:16:45 +00001847 OS << llvm::format("%3d", j) << ": ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001848
Ted Kremenek42a509f2007-08-31 21:30:12 +00001849 if (Helper)
1850 Helper->setStmtID(j);
Mike Stump6d9828c2009-07-17 01:31:16 +00001851
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001852 print_stmt(OS,Helper,*I);
Ted Kremenekfddd5182007-08-21 21:42:03 +00001853 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001854
Ted Kremenek9cffe732007-08-29 23:20:49 +00001855 // Print the terminator of this block.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001856 if (B.getTerminator()) {
1857 if (print_edges)
1858 OS << " ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001859
Ted Kremenek9cffe732007-08-29 23:20:49 +00001860 OS << " T: ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001861
Ted Kremenek42a509f2007-08-31 21:30:12 +00001862 if (Helper) Helper->setBlockID(-1);
Mike Stump6d9828c2009-07-17 01:31:16 +00001863
Chris Lattnere4f21422009-06-30 01:26:17 +00001864 CFGBlockTerminatorPrint TPrinter(OS, Helper,
1865 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek42a509f2007-08-31 21:30:12 +00001866 TPrinter.Visit(const_cast<Stmt*>(B.getTerminator()));
Ted Kremeneka2925852008-01-30 23:02:42 +00001867 OS << '\n';
Ted Kremenekfddd5182007-08-21 21:42:03 +00001868 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001869
Ted Kremenek9cffe732007-08-29 23:20:49 +00001870 if (print_edges) {
1871 // Print the predecessors of this block.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001872 OS << " Predecessors (" << B.pred_size() << "):";
Ted Kremenek9cffe732007-08-29 23:20:49 +00001873 unsigned i = 0;
Ted Kremenek9cffe732007-08-29 23:20:49 +00001874
Ted Kremenek42a509f2007-08-31 21:30:12 +00001875 for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
1876 I != E; ++I, ++i) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001877
Ted Kremenek42a509f2007-08-31 21:30:12 +00001878 if (i == 8 || (i-8) == 0)
1879 OS << "\n ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001880
Ted Kremenek9cffe732007-08-29 23:20:49 +00001881 OS << " B" << (*I)->getBlockID();
1882 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001883
Ted Kremenek42a509f2007-08-31 21:30:12 +00001884 OS << '\n';
Mike Stump6d9828c2009-07-17 01:31:16 +00001885
Ted Kremenek42a509f2007-08-31 21:30:12 +00001886 // Print the successors of this block.
1887 OS << " Successors (" << B.succ_size() << "):";
1888 i = 0;
1889
1890 for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
1891 I != E; ++I, ++i) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001892
Ted Kremenek42a509f2007-08-31 21:30:12 +00001893 if (i == 8 || (i-8) % 10 == 0)
1894 OS << "\n ";
1895
Mike Stumpe5af3ce2009-07-20 23:24:15 +00001896 if (*I)
1897 OS << " B" << (*I)->getBlockID();
1898 else
1899 OS << " NULL";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001900 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001901
Ted Kremenek9cffe732007-08-29 23:20:49 +00001902 OS << '\n';
Ted Kremenekfddd5182007-08-21 21:42:03 +00001903 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001904}
Ted Kremenek42a509f2007-08-31 21:30:12 +00001905
Ted Kremenek42a509f2007-08-31 21:30:12 +00001906
1907/// dump - A simple pretty printer of a CFG that outputs to stderr.
Chris Lattnere4f21422009-06-30 01:26:17 +00001908void CFG::dump(const LangOptions &LO) const { print(llvm::errs(), LO); }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001909
1910/// print - A simple pretty printer of a CFG that outputs to an ostream.
Chris Lattnere4f21422009-06-30 01:26:17 +00001911void CFG::print(llvm::raw_ostream &OS, const LangOptions &LO) const {
1912 StmtPrinterHelper Helper(this, LO);
Mike Stump6d9828c2009-07-17 01:31:16 +00001913
Ted Kremenek42a509f2007-08-31 21:30:12 +00001914 // Print the entry block.
1915 print_block(OS, this, getEntry(), &Helper, true);
Mike Stump6d9828c2009-07-17 01:31:16 +00001916
Ted Kremenek42a509f2007-08-31 21:30:12 +00001917 // Iterate through the CFGBlocks and print them one by one.
1918 for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
1919 // Skip the entry block, because we already printed it.
1920 if (&(*I) == &getEntry() || &(*I) == &getExit())
1921 continue;
Mike Stump6d9828c2009-07-17 01:31:16 +00001922
Ted Kremenek42a509f2007-08-31 21:30:12 +00001923 print_block(OS, this, *I, &Helper, true);
1924 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001925
Ted Kremenek42a509f2007-08-31 21:30:12 +00001926 // Print the exit block.
1927 print_block(OS, this, getExit(), &Helper, true);
Ted Kremenekd0172432008-11-24 20:50:24 +00001928 OS.flush();
Mike Stump6d9828c2009-07-17 01:31:16 +00001929}
Ted Kremenek42a509f2007-08-31 21:30:12 +00001930
1931/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
Chris Lattnere4f21422009-06-30 01:26:17 +00001932void CFGBlock::dump(const CFG* cfg, const LangOptions &LO) const {
1933 print(llvm::errs(), cfg, LO);
1934}
Ted Kremenek42a509f2007-08-31 21:30:12 +00001935
1936/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
1937/// Generally this will only be called from CFG::print.
Chris Lattnere4f21422009-06-30 01:26:17 +00001938void CFGBlock::print(llvm::raw_ostream& OS, const CFG* cfg,
1939 const LangOptions &LO) const {
1940 StmtPrinterHelper Helper(cfg, LO);
Ted Kremenek42a509f2007-08-31 21:30:12 +00001941 print_block(OS, cfg, *this, &Helper, true);
Ted Kremenek026473c2007-08-23 16:51:22 +00001942}
Ted Kremenek7dba8602007-08-29 21:56:09 +00001943
Ted Kremeneka2925852008-01-30 23:02:42 +00001944/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
Chris Lattnere4f21422009-06-30 01:26:17 +00001945void CFGBlock::printTerminator(llvm::raw_ostream &OS,
Mike Stump6d9828c2009-07-17 01:31:16 +00001946 const LangOptions &LO) const {
Chris Lattnere4f21422009-06-30 01:26:17 +00001947 CFGBlockTerminatorPrint TPrinter(OS, NULL, PrintingPolicy(LO));
Ted Kremeneka2925852008-01-30 23:02:42 +00001948 TPrinter.Visit(const_cast<Stmt*>(getTerminator()));
1949}
1950
Ted Kremenek390e48b2008-11-12 21:11:49 +00001951Stmt* CFGBlock::getTerminatorCondition() {
Mike Stump6d9828c2009-07-17 01:31:16 +00001952
Ted Kremenek411cdee2008-04-16 21:10:48 +00001953 if (!Terminator)
1954 return NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001955
Ted Kremenek411cdee2008-04-16 21:10:48 +00001956 Expr* E = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001957
Ted Kremenek411cdee2008-04-16 21:10:48 +00001958 switch (Terminator->getStmtClass()) {
1959 default:
1960 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001961
Ted Kremenek411cdee2008-04-16 21:10:48 +00001962 case Stmt::ForStmtClass:
1963 E = cast<ForStmt>(Terminator)->getCond();
1964 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001965
Ted Kremenek411cdee2008-04-16 21:10:48 +00001966 case Stmt::WhileStmtClass:
1967 E = cast<WhileStmt>(Terminator)->getCond();
1968 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001969
Ted Kremenek411cdee2008-04-16 21:10:48 +00001970 case Stmt::DoStmtClass:
1971 E = cast<DoStmt>(Terminator)->getCond();
1972 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001973
Ted Kremenek411cdee2008-04-16 21:10:48 +00001974 case Stmt::IfStmtClass:
1975 E = cast<IfStmt>(Terminator)->getCond();
1976 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001977
Ted Kremenek411cdee2008-04-16 21:10:48 +00001978 case Stmt::ChooseExprClass:
1979 E = cast<ChooseExpr>(Terminator)->getCond();
1980 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001981
Ted Kremenek411cdee2008-04-16 21:10:48 +00001982 case Stmt::IndirectGotoStmtClass:
1983 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
1984 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001985
Ted Kremenek411cdee2008-04-16 21:10:48 +00001986 case Stmt::SwitchStmtClass:
1987 E = cast<SwitchStmt>(Terminator)->getCond();
1988 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001989
Ted Kremenek411cdee2008-04-16 21:10:48 +00001990 case Stmt::ConditionalOperatorClass:
1991 E = cast<ConditionalOperator>(Terminator)->getCond();
1992 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001993
Ted Kremenek411cdee2008-04-16 21:10:48 +00001994 case Stmt::BinaryOperatorClass: // '&&' and '||'
1995 E = cast<BinaryOperator>(Terminator)->getLHS();
Ted Kremenek390e48b2008-11-12 21:11:49 +00001996 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001997
Ted Kremenek390e48b2008-11-12 21:11:49 +00001998 case Stmt::ObjCForCollectionStmtClass:
Mike Stump6d9828c2009-07-17 01:31:16 +00001999 return Terminator;
Ted Kremenek411cdee2008-04-16 21:10:48 +00002000 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002001
Ted Kremenek411cdee2008-04-16 21:10:48 +00002002 return E ? E->IgnoreParens() : NULL;
2003}
2004
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002005bool CFGBlock::hasBinaryBranchTerminator() const {
Mike Stump6d9828c2009-07-17 01:31:16 +00002006
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002007 if (!Terminator)
2008 return false;
Mike Stump6d9828c2009-07-17 01:31:16 +00002009
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002010 Expr* E = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002011
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002012 switch (Terminator->getStmtClass()) {
2013 default:
2014 return false;
Mike Stump6d9828c2009-07-17 01:31:16 +00002015
2016 case Stmt::ForStmtClass:
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002017 case Stmt::WhileStmtClass:
2018 case Stmt::DoStmtClass:
2019 case Stmt::IfStmtClass:
2020 case Stmt::ChooseExprClass:
2021 case Stmt::ConditionalOperatorClass:
2022 case Stmt::BinaryOperatorClass:
Mike Stump6d9828c2009-07-17 01:31:16 +00002023 return true;
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002024 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002025
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002026 return E ? E->IgnoreParens() : NULL;
2027}
2028
Ted Kremeneka2925852008-01-30 23:02:42 +00002029
Ted Kremenek7dba8602007-08-29 21:56:09 +00002030//===----------------------------------------------------------------------===//
2031// CFG Graphviz Visualization
2032//===----------------------------------------------------------------------===//
2033
Ted Kremenek42a509f2007-08-31 21:30:12 +00002034
2035#ifndef NDEBUG
Mike Stump6d9828c2009-07-17 01:31:16 +00002036static StmtPrinterHelper* GraphHelper;
Ted Kremenek42a509f2007-08-31 21:30:12 +00002037#endif
2038
Chris Lattnere4f21422009-06-30 01:26:17 +00002039void CFG::viewCFG(const LangOptions &LO) const {
Ted Kremenek42a509f2007-08-31 21:30:12 +00002040#ifndef NDEBUG
Chris Lattnere4f21422009-06-30 01:26:17 +00002041 StmtPrinterHelper H(this, LO);
Ted Kremenek42a509f2007-08-31 21:30:12 +00002042 GraphHelper = &H;
2043 llvm::ViewGraph(this,"CFG");
2044 GraphHelper = NULL;
Ted Kremenek42a509f2007-08-31 21:30:12 +00002045#endif
2046}
2047
Ted Kremenek7dba8602007-08-29 21:56:09 +00002048namespace llvm {
2049template<>
2050struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
Owen Anderson02995ce2009-06-24 17:37:55 +00002051 static std::string getNodeLabel(const CFGBlock* Node, const CFG* Graph,
2052 bool ShortNames) {
Ted Kremenek7dba8602007-08-29 21:56:09 +00002053
Hartmut Kaiserbd250b42007-09-16 00:28:28 +00002054#ifndef NDEBUG
Ted Kremeneka95d3752008-09-13 05:16:45 +00002055 std::string OutSStr;
2056 llvm::raw_string_ostream Out(OutSStr);
Ted Kremenek42a509f2007-08-31 21:30:12 +00002057 print_block(Out,Graph, *Node, GraphHelper, false);
Ted Kremeneka95d3752008-09-13 05:16:45 +00002058 std::string& OutStr = Out.str();
Ted Kremenek7dba8602007-08-29 21:56:09 +00002059
2060 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
2061
2062 // Process string output to make it nicer...
2063 for (unsigned i = 0; i != OutStr.length(); ++i)
2064 if (OutStr[i] == '\n') { // Left justify
2065 OutStr[i] = '\\';
2066 OutStr.insert(OutStr.begin()+i+1, 'l');
2067 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002068
Ted Kremenek7dba8602007-08-29 21:56:09 +00002069 return OutStr;
Hartmut Kaiserbd250b42007-09-16 00:28:28 +00002070#else
2071 return "";
2072#endif
Ted Kremenek7dba8602007-08-29 21:56:09 +00002073 }
2074};
2075} // end namespace llvm