blob: e1a1e72c204338532b135f854850641772eb118a [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"
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +000020#include "llvm/Support/Allocator.h"
21#include "llvm/Support/Format.h"
Ted Kremenek0cebe3e2007-08-21 23:26:17 +000022#include "llvm/ADT/DenseMap.h"
Ted Kremenek19bb3562007-08-28 19:26:49 +000023#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek0ba497b2009-10-20 23:46:25 +000024#include "llvm/ADT/OwningPtr.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///
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +000052class CFGBuilder {
Mike Stumpe5af3ce2009-07-20 23:24:15 +000053 ASTContext *Context;
Ted Kremenek0ba497b2009-10-20 23:46:25 +000054 llvm::OwningPtr<CFG> cfg;
Ted Kremenekee82d9b2009-10-12 20:55:07 +000055
Ted Kremenekfddd5182007-08-21 21:42:03 +000056 CFGBlock* Block;
Ted Kremenekfddd5182007-08-21 21:42:03 +000057 CFGBlock* Succ;
Ted Kremenekbf15b272007-08-22 21:36:54 +000058 CFGBlock* ContinueTargetBlock;
Ted Kremenek8a294712007-08-22 21:51:58 +000059 CFGBlock* BreakTargetBlock;
Ted Kremenekb5c13b02007-08-23 18:43:24 +000060 CFGBlock* SwitchTerminatedBlock;
Ted Kremenekeef5a9a2008-02-13 22:05:39 +000061 CFGBlock* DefaultCaseBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +000062
Ted Kremenek19bb3562007-08-28 19:26:49 +000063 // LabelMap records the mapping from Label expressions to their blocks.
Ted Kremenek0cebe3e2007-08-21 23:26:17 +000064 typedef llvm::DenseMap<LabelStmt*,CFGBlock*> LabelMapTy;
65 LabelMapTy LabelMap;
Mike Stump6d9828c2009-07-17 01:31:16 +000066
67 // A list of blocks that end with a "goto" that must be backpatched to their
68 // resolved targets upon completion of CFG construction.
Ted Kremenek4a2b8a12007-08-22 15:40:58 +000069 typedef std::vector<CFGBlock*> BackpatchBlocksTy;
Ted Kremenek0cebe3e2007-08-21 23:26:17 +000070 BackpatchBlocksTy BackpatchBlocks;
Mike Stump6d9828c2009-07-17 01:31:16 +000071
Ted Kremenek19bb3562007-08-28 19:26:49 +000072 // A list of labels whose address has been taken (for indirect gotos).
73 typedef llvm::SmallPtrSet<LabelStmt*,5> LabelSetTy;
74 LabelSetTy AddressTakenLabels;
Mike Stump6d9828c2009-07-17 01:31:16 +000075
76public:
Ted Kremenekee82d9b2009-10-12 20:55:07 +000077 explicit CFGBuilder() : cfg(new CFG()), // crew a new CFG
78 Block(NULL), Succ(NULL),
Ted Kremenek8a294712007-08-22 21:51:58 +000079 ContinueTargetBlock(NULL), BreakTargetBlock(NULL),
Ted Kremenekee82d9b2009-10-12 20:55:07 +000080 SwitchTerminatedBlock(NULL), DefaultCaseBlock(NULL) {}
Mike Stump6d9828c2009-07-17 01:31:16 +000081
Ted Kremenekd4fdee32007-08-23 21:42:29 +000082 // buildCFG - Used by external clients to construct the CFG.
Mike Stumpe5af3ce2009-07-20 23:24:15 +000083 CFG* buildCFG(Stmt *Statement, ASTContext *C);
Mike Stump6d9828c2009-07-17 01:31:16 +000084
Ted Kremenek4f880632009-07-17 22:18:43 +000085private:
86 // Visitors to walk an AST and construct the CFG.
87 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, bool alwaysAdd);
88 CFGBlock *VisitBinaryOperator(BinaryOperator *B, bool alwaysAdd);
Ted Kremenek13fc08a2009-07-18 00:47:21 +000089 CFGBlock *VisitBlockExpr(BlockExpr* E, bool alwaysAdd);
Ted Kremenek4f880632009-07-17 22:18:43 +000090 CFGBlock *VisitBreakStmt(BreakStmt *B);
91 CFGBlock *VisitCallExpr(CallExpr *C, bool alwaysAdd);
92 CFGBlock *VisitCaseStmt(CaseStmt *C);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +000093 CFGBlock *VisitChooseExpr(ChooseExpr *C);
94 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
95 CFGBlock *VisitConditionalOperator(ConditionalOperator *C);
96 CFGBlock *VisitContinueStmt(ContinueStmt *C);
Ted Kremenekc768a0c2009-12-15 01:38:04 +000097 CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S) { return NYS(); }
Mike Stump0979d802009-07-22 22:56:04 +000098 CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T);
Ted Kremenekc768a0c2009-12-15 01:38:04 +000099 CFGBlock *VisitCXXTryStmt(CXXTryStmt *S) { return NYS(); }
Ted Kremenek4f880632009-07-17 22:18:43 +0000100 CFGBlock *VisitDeclStmt(DeclStmt *DS);
101 CFGBlock *VisitDeclSubExpr(Decl* D);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000102 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
103 CFGBlock *VisitDoStmt(DoStmt *D);
104 CFGBlock *VisitForStmt(ForStmt *F);
Ted Kremenek4f880632009-07-17 22:18:43 +0000105 CFGBlock *VisitGotoStmt(GotoStmt* G);
106 CFGBlock *VisitIfStmt(IfStmt *I);
107 CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
108 CFGBlock *VisitLabelStmt(LabelStmt *L);
109 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
110 CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
111 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
112 CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
113 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
114 CFGBlock *VisitReturnStmt(ReturnStmt* R);
Ted Kremenek13fc08a2009-07-18 00:47:21 +0000115 CFGBlock *VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E, bool alwaysAdd);
116 CFGBlock *VisitStmtExpr(StmtExpr *S, bool alwaysAdd);
Ted Kremenek4f880632009-07-17 22:18:43 +0000117 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
118 CFGBlock *VisitWhileStmt(WhileStmt *W);
Mike Stumpcd7bf232009-07-17 01:04:31 +0000119
Ted Kremenek4f880632009-07-17 22:18:43 +0000120 CFGBlock *Visit(Stmt *S, bool alwaysAdd = false);
121 CFGBlock *VisitStmt(Stmt *S, bool alwaysAdd);
122 CFGBlock *VisitChildren(Stmt* S);
Mike Stumpcd7bf232009-07-17 01:04:31 +0000123
Ted Kremenek274f4332008-04-28 18:00:46 +0000124 // NYS == Not Yet Supported
125 CFGBlock* NYS() {
Ted Kremenek4102af92008-03-13 03:04:22 +0000126 badCFG = true;
127 return Block;
128 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000129
Ted Kremenek4f880632009-07-17 22:18:43 +0000130 void autoCreateBlock() { if (!Block) Block = createBlock(); }
131 CFGBlock *createBlock(bool add_successor = true);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000132 bool FinishBlock(CFGBlock* B);
Ted Kremenek4f880632009-07-17 22:18:43 +0000133 CFGBlock *addStmt(Stmt *S) { return Visit(S, true); }
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000134
135 void AppendStmt(CFGBlock *B, Stmt *S) {
136 B->appendStmt(S, cfg->getBumpVectorContext());
137 }
138
139 void AddSuccessor(CFGBlock *B, CFGBlock *S) {
140 B->addSuccessor(S, cfg->getBumpVectorContext());
141 }
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Ted Kremenekfadc9ea2009-07-24 06:55:42 +0000143 /// TryResult - a class representing a variant over the values
144 /// 'true', 'false', or 'unknown'. This is returned by TryEvaluateBool,
145 /// and is used by the CFGBuilder to decide if a branch condition
146 /// can be decided up front during CFG construction.
Ted Kremenek941fde82009-07-24 04:47:11 +0000147 class TryResult {
148 int X;
149 public:
150 TryResult(bool b) : X(b ? 1 : 0) {}
151 TryResult() : X(-1) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000152
Ted Kremenek941fde82009-07-24 04:47:11 +0000153 bool isTrue() const { return X == 1; }
154 bool isFalse() const { return X == 0; }
155 bool isKnown() const { return X >= 0; }
156 void negate() {
157 assert(isKnown());
158 X ^= 0x1;
159 }
160 };
Mike Stump1eb44332009-09-09 15:08:12 +0000161
Mike Stump00998a02009-07-23 23:25:26 +0000162 /// TryEvaluateBool - Try and evaluate the Stmt and return 0 or 1
163 /// if we can evaluate to a known value, otherwise return -1.
Ted Kremenek941fde82009-07-24 04:47:11 +0000164 TryResult TryEvaluateBool(Expr *S) {
Mike Stump00998a02009-07-23 23:25:26 +0000165 Expr::EvalResult Result;
Douglas Gregor9983cc12009-08-24 21:39:56 +0000166 if (!S->isTypeDependent() && !S->isValueDependent() &&
167 S->Evaluate(Result, *Context) && Result.Val.isInt())
Ted Kremenekfadc9ea2009-07-24 06:55:42 +0000168 return Result.Val.getInt().getBoolValue();
Ted Kremenek941fde82009-07-24 04:47:11 +0000169
170 return TryResult();
Mike Stump00998a02009-07-23 23:25:26 +0000171 }
172
Ted Kremenek4102af92008-03-13 03:04:22 +0000173 bool badCFG;
Ted Kremenekfddd5182007-08-21 21:42:03 +0000174};
Mike Stump6d9828c2009-07-17 01:31:16 +0000175
Douglas Gregor898574e2008-12-05 23:32:09 +0000176// FIXME: Add support for dependent-sized array types in C++?
177// Does it even make sense to build a CFG for an uninstantiated template?
Ted Kremenek610a09e2008-09-26 22:58:57 +0000178static VariableArrayType* FindVA(Type* t) {
179 while (ArrayType* vt = dyn_cast<ArrayType>(t)) {
180 if (VariableArrayType* vat = dyn_cast<VariableArrayType>(vt))
181 if (vat->getSizeExpr())
182 return vat;
Mike Stump6d9828c2009-07-17 01:31:16 +0000183
Ted Kremenek610a09e2008-09-26 22:58:57 +0000184 t = vt->getElementType().getTypePtr();
185 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000186
Ted Kremenek610a09e2008-09-26 22:58:57 +0000187 return 0;
188}
Mike Stump6d9828c2009-07-17 01:31:16 +0000189
190/// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an
191/// arbitrary statement. Examples include a single expression or a function
192/// body (compound statement). The ownership of the returned CFG is
193/// transferred to the caller. If CFG construction fails, this method returns
194/// NULL.
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000195CFG* CFGBuilder::buildCFG(Stmt* Statement, ASTContext* C) {
196 Context = C;
Ted Kremenek0ba497b2009-10-20 23:46:25 +0000197 assert(cfg.get());
Ted Kremenek4f880632009-07-17 22:18:43 +0000198 if (!Statement)
199 return NULL;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000200
Ted Kremenek4102af92008-03-13 03:04:22 +0000201 badCFG = false;
Mike Stump6d9828c2009-07-17 01:31:16 +0000202
203 // Create an empty block that will serve as the exit block for the CFG. Since
204 // this is the first block added to the CFG, it will be implicitly registered
205 // as the exit block.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000206 Succ = createBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000207 assert(Succ == &cfg->getExit());
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000208 Block = NULL; // the EXIT block is empty. Create all other blocks lazily.
Mike Stump6d9828c2009-07-17 01:31:16 +0000209
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000210 // Visit the statements and create the CFG.
Ted Kremenek4f880632009-07-17 22:18:43 +0000211 CFGBlock* B = addStmt(Statement);
Ted Kremenek0ba497b2009-10-20 23:46:25 +0000212 if (!B)
213 B = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000214
Ted Kremenek0d99ecf2008-02-27 17:33:02 +0000215 if (B) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000216 // Finalize the last constructed block. This usually involves reversing the
217 // order of the statements in the block.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000218 if (Block) FinishBlock(B);
Mike Stump6d9828c2009-07-17 01:31:16 +0000219
220 // Backpatch the gotos whose label -> block mappings we didn't know when we
221 // encountered them.
222 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000223 E = BackpatchBlocks.end(); I != E; ++I ) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000224
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000225 CFGBlock* B = *I;
226 GotoStmt* G = cast<GotoStmt>(B->getTerminator());
227 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
228
229 // If there is no target for the goto, then we are looking at an
230 // incomplete AST. Handle this by not registering a successor.
231 if (LI == LabelMap.end()) continue;
Mike Stump6d9828c2009-07-17 01:31:16 +0000232
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000233 AddSuccessor(B, LI->second);
Ted Kremenek19bb3562007-08-28 19:26:49 +0000234 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000235
Ted Kremenek19bb3562007-08-28 19:26:49 +0000236 // Add successors to the Indirect Goto Dispatch block (if we have one).
237 if (CFGBlock* B = cfg->getIndirectGotoBlock())
238 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
239 E = AddressTakenLabels.end(); I != E; ++I ) {
240
241 // Lookup the target block.
242 LabelMapTy::iterator LI = LabelMap.find(*I);
243
244 // If there is no target block that contains label, then we are looking
245 // at an incomplete AST. Handle this by not registering a successor.
246 if (LI == LabelMap.end()) continue;
Mike Stump6d9828c2009-07-17 01:31:16 +0000247
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000248 AddSuccessor(B, LI->second);
Ted Kremenek19bb3562007-08-28 19:26:49 +0000249 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000250
Ted Kremenek94b33162007-09-17 16:18:02 +0000251 Succ = B;
Ted Kremenek322f58d2007-09-26 21:23:31 +0000252 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000253
254 // Create an empty entry block that has no predecessors.
Ted Kremenek322f58d2007-09-26 21:23:31 +0000255 cfg->setEntry(createBlock());
Mike Stump6d9828c2009-07-17 01:31:16 +0000256
Ted Kremenekda9b30e2009-10-20 23:59:28 +0000257 return badCFG ? NULL : cfg.take();
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000258}
Mike Stump6d9828c2009-07-17 01:31:16 +0000259
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000260/// createBlock - Used to lazily create blocks that are connected
261/// to the current (global) succcessor.
Mike Stump6d9828c2009-07-17 01:31:16 +0000262CFGBlock* CFGBuilder::createBlock(bool add_successor) {
Ted Kremenek94382522007-09-05 20:02:05 +0000263 CFGBlock* B = cfg->createBlock();
Ted Kremenek4f880632009-07-17 22:18:43 +0000264 if (add_successor && Succ)
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000265 AddSuccessor(B, Succ);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000266 return B;
267}
Mike Stump6d9828c2009-07-17 01:31:16 +0000268
Ted Kremenek6c249722009-09-24 18:45:41 +0000269/// FinishBlock - "Finalize" the block by checking if we have a bad CFG.
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000270bool CFGBuilder::FinishBlock(CFGBlock* B) {
271 if (badCFG)
272 return false;
273
Ted Kremenek4f880632009-07-17 22:18:43 +0000274 assert(B);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000275 return true;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000276}
277
Ted Kremenek4f880632009-07-17 22:18:43 +0000278/// Visit - Walk the subtree of a statement and add extra
Mike Stump6d9828c2009-07-17 01:31:16 +0000279/// blocks for ternary operators, &&, and ||. We also process "," and
280/// DeclStmts (which may contain nested control-flow).
Ted Kremenek4f880632009-07-17 22:18:43 +0000281CFGBlock* CFGBuilder::Visit(Stmt * S, bool alwaysAdd) {
282tryAgain:
283 switch (S->getStmtClass()) {
284 default:
285 return VisitStmt(S, alwaysAdd);
286
287 case Stmt::AddrLabelExprClass:
288 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Ted Kremenek4f880632009-07-17 22:18:43 +0000290 case Stmt::BinaryOperatorClass:
291 return VisitBinaryOperator(cast<BinaryOperator>(S), alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000292
Ted Kremenek4f880632009-07-17 22:18:43 +0000293 case Stmt::BlockExprClass:
Ted Kremenek13fc08a2009-07-18 00:47:21 +0000294 return VisitBlockExpr(cast<BlockExpr>(S), alwaysAdd);
Ted Kremenek4f880632009-07-17 22:18:43 +0000295
Ted Kremenek4f880632009-07-17 22:18:43 +0000296 case Stmt::BreakStmtClass:
297 return VisitBreakStmt(cast<BreakStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000298
Ted Kremenek4f880632009-07-17 22:18:43 +0000299 case Stmt::CallExprClass:
300 return VisitCallExpr(cast<CallExpr>(S), alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000301
Ted Kremenek4f880632009-07-17 22:18:43 +0000302 case Stmt::CaseStmtClass:
303 return VisitCaseStmt(cast<CaseStmt>(S));
304
305 case Stmt::ChooseExprClass:
306 return VisitChooseExpr(cast<ChooseExpr>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000307
Ted Kremenek4f880632009-07-17 22:18:43 +0000308 case Stmt::CompoundStmtClass:
309 return VisitCompoundStmt(cast<CompoundStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000310
Ted Kremenek4f880632009-07-17 22:18:43 +0000311 case Stmt::ConditionalOperatorClass:
312 return VisitConditionalOperator(cast<ConditionalOperator>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Ted Kremenek4f880632009-07-17 22:18:43 +0000314 case Stmt::ContinueStmtClass:
315 return VisitContinueStmt(cast<ContinueStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Ted Kremenek4f880632009-07-17 22:18:43 +0000317 case Stmt::DeclStmtClass:
318 return VisitDeclStmt(cast<DeclStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000319
Ted Kremenek4f880632009-07-17 22:18:43 +0000320 case Stmt::DefaultStmtClass:
321 return VisitDefaultStmt(cast<DefaultStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000322
Ted Kremenek4f880632009-07-17 22:18:43 +0000323 case Stmt::DoStmtClass:
324 return VisitDoStmt(cast<DoStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000325
Ted Kremenek4f880632009-07-17 22:18:43 +0000326 case Stmt::ForStmtClass:
327 return VisitForStmt(cast<ForStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000328
Ted Kremenek4f880632009-07-17 22:18:43 +0000329 case Stmt::GotoStmtClass:
330 return VisitGotoStmt(cast<GotoStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000331
Ted Kremenek4f880632009-07-17 22:18:43 +0000332 case Stmt::IfStmtClass:
333 return VisitIfStmt(cast<IfStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000334
Ted Kremenek4f880632009-07-17 22:18:43 +0000335 case Stmt::IndirectGotoStmtClass:
336 return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Ted Kremenek4f880632009-07-17 22:18:43 +0000338 case Stmt::LabelStmtClass:
339 return VisitLabelStmt(cast<LabelStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000340
Ted Kremenek4f880632009-07-17 22:18:43 +0000341 case Stmt::ObjCAtCatchStmtClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000342 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
343
Mike Stump0979d802009-07-22 22:56:04 +0000344 case Stmt::CXXThrowExprClass:
345 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
346
Ted Kremenek4f880632009-07-17 22:18:43 +0000347 case Stmt::ObjCAtSynchronizedStmtClass:
348 return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000349
Ted Kremenek4f880632009-07-17 22:18:43 +0000350 case Stmt::ObjCAtThrowStmtClass:
351 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000352
Ted Kremenek4f880632009-07-17 22:18:43 +0000353 case Stmt::ObjCAtTryStmtClass:
354 return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Ted Kremenek4f880632009-07-17 22:18:43 +0000356 case Stmt::ObjCForCollectionStmtClass:
357 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000358
Ted Kremenek4f880632009-07-17 22:18:43 +0000359 case Stmt::ParenExprClass:
360 S = cast<ParenExpr>(S)->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000361 goto tryAgain;
362
Ted Kremenek4f880632009-07-17 22:18:43 +0000363 case Stmt::NullStmtClass:
364 return Block;
Mike Stump1eb44332009-09-09 15:08:12 +0000365
Ted Kremenek4f880632009-07-17 22:18:43 +0000366 case Stmt::ReturnStmtClass:
367 return VisitReturnStmt(cast<ReturnStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000368
Ted Kremenek4f880632009-07-17 22:18:43 +0000369 case Stmt::SizeOfAlignOfExprClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000370 return VisitSizeOfAlignOfExpr(cast<SizeOfAlignOfExpr>(S), alwaysAdd);
371
Ted Kremenek4f880632009-07-17 22:18:43 +0000372 case Stmt::StmtExprClass:
Ted Kremenek13fc08a2009-07-18 00:47:21 +0000373 return VisitStmtExpr(cast<StmtExpr>(S), alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000374
Ted Kremenek4f880632009-07-17 22:18:43 +0000375 case Stmt::SwitchStmtClass:
376 return VisitSwitchStmt(cast<SwitchStmt>(S));
Mike Stump1eb44332009-09-09 15:08:12 +0000377
Ted Kremenek4f880632009-07-17 22:18:43 +0000378 case Stmt::WhileStmtClass:
379 return VisitWhileStmt(cast<WhileStmt>(S));
380 }
381}
Mike Stump1eb44332009-09-09 15:08:12 +0000382
Ted Kremenek4f880632009-07-17 22:18:43 +0000383CFGBlock *CFGBuilder::VisitStmt(Stmt *S, bool alwaysAdd) {
384 if (alwaysAdd) {
385 autoCreateBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000386 AppendStmt(Block, S);
Mike Stump6d9828c2009-07-17 01:31:16 +0000387 }
Mike Stump1eb44332009-09-09 15:08:12 +0000388
Ted Kremenek4f880632009-07-17 22:18:43 +0000389 return VisitChildren(S);
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000390}
Mike Stump6d9828c2009-07-17 01:31:16 +0000391
Ted Kremenek4f880632009-07-17 22:18:43 +0000392/// VisitChildren - Visit the children of a Stmt.
393CFGBlock *CFGBuilder::VisitChildren(Stmt* Terminator) {
394 CFGBlock *B = Block;
Mike Stump54cc43f2009-02-26 08:00:25 +0000395 for (Stmt::child_iterator I = Terminator->child_begin(),
Ted Kremenek4f880632009-07-17 22:18:43 +0000396 E = Terminator->child_end(); I != E; ++I) {
397 if (*I) B = Visit(*I);
398 }
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000399 return B;
400}
Mike Stump1eb44332009-09-09 15:08:12 +0000401
Ted Kremenek4f880632009-07-17 22:18:43 +0000402CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, bool alwaysAdd) {
403 AddressTakenLabels.insert(A->getLabel());
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000404
Ted Kremenek4f880632009-07-17 22:18:43 +0000405 if (alwaysAdd) {
406 autoCreateBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000407 AppendStmt(Block, A);
Ted Kremenek4f880632009-07-17 22:18:43 +0000408 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000409
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000410 return Block;
411}
Mike Stump1eb44332009-09-09 15:08:12 +0000412
Ted Kremenek4f880632009-07-17 22:18:43 +0000413CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B, bool alwaysAdd) {
414 if (B->isLogicalOp()) { // && or ||
Ted Kremenek4f880632009-07-17 22:18:43 +0000415 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000416 AppendStmt(ConfluenceBlock, B);
Mike Stump1eb44332009-09-09 15:08:12 +0000417
Ted Kremenek4f880632009-07-17 22:18:43 +0000418 if (!FinishBlock(ConfluenceBlock))
419 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000420
Ted Kremenek4f880632009-07-17 22:18:43 +0000421 // create the block evaluating the LHS
422 CFGBlock* LHSBlock = createBlock(false);
423 LHSBlock->setTerminator(B);
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Ted Kremenek4f880632009-07-17 22:18:43 +0000425 // create the block evaluating the RHS
426 Succ = ConfluenceBlock;
427 Block = NULL;
428 CFGBlock* RHSBlock = addStmt(B->getRHS());
429 if (!FinishBlock(RHSBlock))
430 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Mike Stump00998a02009-07-23 23:25:26 +0000432 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000433 TryResult KnownVal = TryEvaluateBool(B->getLHS());
434 if (KnownVal.isKnown() && (B->getOpcode() == BinaryOperator::LOr))
435 KnownVal.negate();
Mike Stump00998a02009-07-23 23:25:26 +0000436
Ted Kremenek4f880632009-07-17 22:18:43 +0000437 // Now link the LHSBlock with RHSBlock.
438 if (B->getOpcode() == BinaryOperator::LOr) {
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000439 AddSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock);
440 AddSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000441 } else {
Ted Kremenek4f880632009-07-17 22:18:43 +0000442 assert (B->getOpcode() == BinaryOperator::LAnd);
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000443 AddSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock);
444 AddSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock);
Ted Kremenek4f880632009-07-17 22:18:43 +0000445 }
Mike Stump1eb44332009-09-09 15:08:12 +0000446
Ted Kremenek4f880632009-07-17 22:18:43 +0000447 // Generate the blocks for evaluating the LHS.
448 Block = LHSBlock;
449 return addStmt(B->getLHS());
Mike Stump1eb44332009-09-09 15:08:12 +0000450 }
Ted Kremenek4f880632009-07-17 22:18:43 +0000451 else if (B->getOpcode() == BinaryOperator::Comma) { // ,
Ted Kremenek6dc534e2009-07-17 22:57:50 +0000452 autoCreateBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000453 AppendStmt(Block, B);
Ted Kremenek4f880632009-07-17 22:18:43 +0000454 addStmt(B->getRHS());
455 return addStmt(B->getLHS());
456 }
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Ted Kremenek4f880632009-07-17 22:18:43 +0000458 return VisitStmt(B, alwaysAdd);
459}
460
Ted Kremenek721903e2009-11-25 01:34:30 +0000461CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, bool alwaysAdd) {
462 if (alwaysAdd) {
463 autoCreateBlock();
464 AppendStmt(Block, E);
465 }
466 return Block;
Ted Kremenek4f880632009-07-17 22:18:43 +0000467}
468
Ted Kremenek4f880632009-07-17 22:18:43 +0000469CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
470 // "break" is a control-flow statement. Thus we stop processing the current
471 // block.
472 if (Block && !FinishBlock(Block))
473 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000474
Ted Kremenek4f880632009-07-17 22:18:43 +0000475 // Now create a new block that ends with the break statement.
476 Block = createBlock(false);
477 Block->setTerminator(B);
Mike Stump1eb44332009-09-09 15:08:12 +0000478
Ted Kremenek4f880632009-07-17 22:18:43 +0000479 // If there is no target for the break, then we are looking at an incomplete
480 // AST. This means that the CFG cannot be constructed.
481 if (BreakTargetBlock)
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000482 AddSuccessor(Block, BreakTargetBlock);
Ted Kremenek4f880632009-07-17 22:18:43 +0000483 else
484 badCFG = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000485
486
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000487 return Block;
488}
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Ted Kremenek4f880632009-07-17 22:18:43 +0000490CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, bool alwaysAdd) {
491 // If this is a call to a no-return function, this stops the block here.
Mike Stump24556362009-07-25 21:26:53 +0000492 bool NoReturn = false;
493 if (C->getCallee()->getType().getNoReturnAttr()) {
494 NoReturn = true;
Ted Kremenek4f880632009-07-17 22:18:43 +0000495 }
Mike Stump24556362009-07-25 21:26:53 +0000496
497 if (FunctionDecl *FD = C->getDirectCallee())
498 if (FD->hasAttr<NoReturnAttr>())
499 NoReturn = true;
500
501 if (!NoReturn)
502 return VisitStmt(C, alwaysAdd);
Mike Stump1eb44332009-09-09 15:08:12 +0000503
Mike Stump24556362009-07-25 21:26:53 +0000504 if (Block && !FinishBlock(Block))
505 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000506
Mike Stump24556362009-07-25 21:26:53 +0000507 // Create new block with no successor for the remaining pieces.
508 Block = createBlock(false);
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000509 AppendStmt(Block, C);
Mike Stump24556362009-07-25 21:26:53 +0000510
511 // Wire this to the exit block directly.
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000512 AddSuccessor(Block, &cfg->getExit());
Mike Stump1eb44332009-09-09 15:08:12 +0000513
Mike Stump24556362009-07-25 21:26:53 +0000514 return VisitChildren(C);
Ted Kremenek4f880632009-07-17 22:18:43 +0000515}
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000516
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000517CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C) {
518 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000519 AppendStmt(ConfluenceBlock, C);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000520 if (!FinishBlock(ConfluenceBlock))
521 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000522
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000523 Succ = ConfluenceBlock;
524 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +0000525 CFGBlock* LHSBlock = addStmt(C->getLHS());
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000526 if (!FinishBlock(LHSBlock))
527 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000528
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000529 Succ = ConfluenceBlock;
530 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +0000531 CFGBlock* RHSBlock = addStmt(C->getRHS());
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000532 if (!FinishBlock(RHSBlock))
533 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000534
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000535 Block = createBlock(false);
Mike Stump00998a02009-07-23 23:25:26 +0000536 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000537 const TryResult& KnownVal = TryEvaluateBool(C->getCond());
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000538 AddSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock);
539 AddSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock);
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000540 Block->setTerminator(C);
Mike Stump1eb44332009-09-09 15:08:12 +0000541 return addStmt(C->getCond());
Ted Kremenek3fc8ef52009-07-17 18:20:32 +0000542}
Mike Stump1eb44332009-09-09 15:08:12 +0000543
544
545CFGBlock* CFGBuilder::VisitCompoundStmt(CompoundStmt* C) {
546 CFGBlock* LastBlock = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +0000547
548 for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
549 I != E; ++I ) {
550 LastBlock = addStmt(*I);
Mike Stump1eb44332009-09-09 15:08:12 +0000551
Ted Kremeneke8d6d2b2009-08-27 23:16:26 +0000552 if (badCFG)
553 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000554 }
Ted Kremenek4f880632009-07-17 22:18:43 +0000555 return LastBlock;
556}
Mike Stump1eb44332009-09-09 15:08:12 +0000557
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000558CFGBlock *CFGBuilder::VisitConditionalOperator(ConditionalOperator *C) {
559 // Create the confluence block that will "merge" the results of the ternary
560 // expression.
561 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000562 AppendStmt(ConfluenceBlock, C);
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000563 if (!FinishBlock(ConfluenceBlock))
564 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000565
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000566 // Create a block for the LHS expression if there is an LHS expression. A
567 // GCC extension allows LHS to be NULL, causing the condition to be the
568 // value that is returned instead.
569 // e.g: x ?: y is shorthand for: x ? x : y;
570 Succ = ConfluenceBlock;
571 Block = NULL;
572 CFGBlock* LHSBlock = NULL;
573 if (C->getLHS()) {
Ted Kremenek4f880632009-07-17 22:18:43 +0000574 LHSBlock = addStmt(C->getLHS());
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000575 if (!FinishBlock(LHSBlock))
576 return 0;
577 Block = NULL;
578 }
Mike Stump1eb44332009-09-09 15:08:12 +0000579
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000580 // Create the block for the RHS expression.
581 Succ = ConfluenceBlock;
Ted Kremenek4f880632009-07-17 22:18:43 +0000582 CFGBlock* RHSBlock = addStmt(C->getRHS());
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000583 if (!FinishBlock(RHSBlock))
584 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000585
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000586 // Create the block that will contain the condition.
587 Block = createBlock(false);
Mike Stump1eb44332009-09-09 15:08:12 +0000588
Mike Stump00998a02009-07-23 23:25:26 +0000589 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000590 const TryResult& KnownVal = TryEvaluateBool(C->getCond());
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000591 if (LHSBlock) {
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000592 AddSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock);
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000593 } else {
Ted Kremenek941fde82009-07-24 04:47:11 +0000594 if (KnownVal.isFalse()) {
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000595 // If we know the condition is false, add NULL as the successor for
596 // the block containing the condition. In this case, the confluence
597 // block will have just one predecessor.
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000598 AddSuccessor(Block, 0);
Ted Kremenek941fde82009-07-24 04:47:11 +0000599 assert(ConfluenceBlock->pred_size() == 1);
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000600 } else {
601 // If we have no LHS expression, add the ConfluenceBlock as a direct
602 // successor for the block containing the condition. Moreover, we need to
603 // reverse the order of the predecessors in the ConfluenceBlock because
604 // the RHSBlock will have been added to the succcessors already, and we
605 // want the first predecessor to the the block containing the expression
606 // for the case when the ternary expression evaluates to true.
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000607 AddSuccessor(Block, ConfluenceBlock);
Ted Kremenek941fde82009-07-24 04:47:11 +0000608 assert(ConfluenceBlock->pred_size() == 2);
Mike Stumpe5af3ce2009-07-20 23:24:15 +0000609 std::reverse(ConfluenceBlock->pred_begin(),
610 ConfluenceBlock->pred_end());
611 }
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000612 }
Mike Stump1eb44332009-09-09 15:08:12 +0000613
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000614 AddSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock);
Ted Kremenekf34bb2e2009-07-17 18:15:54 +0000615 Block->setTerminator(C);
616 return addStmt(C->getCond());
617}
618
Ted Kremenek4f880632009-07-17 22:18:43 +0000619CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
620 autoCreateBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +0000621
Ted Kremenek4f880632009-07-17 22:18:43 +0000622 if (DS->isSingleDecl()) {
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000623 AppendStmt(Block, DS);
Ted Kremenek4f880632009-07-17 22:18:43 +0000624 return VisitDeclSubExpr(DS->getSingleDecl());
Ted Kremenekd34066c2008-02-26 00:22:58 +0000625 }
Mike Stump1eb44332009-09-09 15:08:12 +0000626
Ted Kremenek4f880632009-07-17 22:18:43 +0000627 CFGBlock *B = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000628
Ted Kremenek4f880632009-07-17 22:18:43 +0000629 // FIXME: Add a reverse iterator for DeclStmt to avoid this extra copy.
630 typedef llvm::SmallVector<Decl*,10> BufTy;
631 BufTy Buf(DS->decl_begin(), DS->decl_end());
Mike Stump1eb44332009-09-09 15:08:12 +0000632
Ted Kremenek4f880632009-07-17 22:18:43 +0000633 for (BufTy::reverse_iterator I = Buf.rbegin(), E = Buf.rend(); I != E; ++I) {
634 // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
635 unsigned A = llvm::AlignOf<DeclStmt>::Alignment < 8
636 ? 8 : llvm::AlignOf<DeclStmt>::Alignment;
Mike Stump1eb44332009-09-09 15:08:12 +0000637
Ted Kremenek4f880632009-07-17 22:18:43 +0000638 // Allocate the DeclStmt using the BumpPtrAllocator. It will get
639 // automatically freed with the CFG.
640 DeclGroupRef DG(*I);
641 Decl *D = *I;
Mike Stump1eb44332009-09-09 15:08:12 +0000642 void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
Ted Kremenek4f880632009-07-17 22:18:43 +0000643 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
Mike Stump1eb44332009-09-09 15:08:12 +0000644
Ted Kremenek4f880632009-07-17 22:18:43 +0000645 // Append the fake DeclStmt to block.
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000646 AppendStmt(Block, DSNew);
Ted Kremenek4f880632009-07-17 22:18:43 +0000647 B = VisitDeclSubExpr(D);
648 }
Mike Stump1eb44332009-09-09 15:08:12 +0000649
650 return B;
Ted Kremenek4f880632009-07-17 22:18:43 +0000651}
Mike Stump1eb44332009-09-09 15:08:12 +0000652
Ted Kremenek4f880632009-07-17 22:18:43 +0000653/// VisitDeclSubExpr - Utility method to add block-level expressions for
654/// initializers in Decls.
655CFGBlock *CFGBuilder::VisitDeclSubExpr(Decl* D) {
656 assert(Block);
Ted Kremenekd34066c2008-02-26 00:22:58 +0000657
Ted Kremenek4f880632009-07-17 22:18:43 +0000658 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +0000659
Ted Kremenek4f880632009-07-17 22:18:43 +0000660 if (!VD)
661 return Block;
Mike Stump1eb44332009-09-09 15:08:12 +0000662
Ted Kremenek4f880632009-07-17 22:18:43 +0000663 Expr *Init = VD->getInit();
Mike Stump1eb44332009-09-09 15:08:12 +0000664
Ted Kremenek4f880632009-07-17 22:18:43 +0000665 if (Init) {
666 // Optimization: Don't create separate block-level statements for literals.
667 switch (Init->getStmtClass()) {
668 case Stmt::IntegerLiteralClass:
669 case Stmt::CharacterLiteralClass:
670 case Stmt::StringLiteralClass:
671 break;
672 default:
673 Block = addStmt(Init);
674 }
675 }
Mike Stump1eb44332009-09-09 15:08:12 +0000676
Ted Kremenek4f880632009-07-17 22:18:43 +0000677 // If the type of VD is a VLA, then we must process its size expressions.
678 for (VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); VA != 0;
679 VA = FindVA(VA->getElementType().getTypePtr()))
680 Block = addStmt(VA->getSizeExpr());
Mike Stump1eb44332009-09-09 15:08:12 +0000681
Ted Kremenek4f880632009-07-17 22:18:43 +0000682 return Block;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000683}
684
685CFGBlock* CFGBuilder::VisitIfStmt(IfStmt* I) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000686 // We may see an if statement in the middle of a basic block, or it may be the
687 // first statement we are processing. In either case, we create a new basic
688 // block. First, we create the blocks for the then...else statements, and
689 // then we create the block containing the if statement. If we were in the
Ted Kremenek6c249722009-09-24 18:45:41 +0000690 // middle of a block, we stop processing that block. That block is then the
691 // implicit successor for the "then" and "else" clauses.
Mike Stump6d9828c2009-07-17 01:31:16 +0000692
693 // The block we were proccessing is now finished. Make it the successor
694 // block.
695 if (Block) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000696 Succ = Block;
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000697 if (!FinishBlock(Block))
698 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000699 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000700
Ted Kremenekb6f1d782009-07-17 18:04:55 +0000701 // Process the false branch.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000702 CFGBlock* ElseBlock = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000703
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000704 if (Stmt* Else = I->getElse()) {
705 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump6d9828c2009-07-17 01:31:16 +0000706
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000707 // NULL out Block so that the recursive call to Visit will
Mike Stump6d9828c2009-07-17 01:31:16 +0000708 // create a new basic block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000709 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +0000710 ElseBlock = addStmt(Else);
Mike Stump6d9828c2009-07-17 01:31:16 +0000711
Ted Kremenekb6f7b722007-08-30 18:13:31 +0000712 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
713 ElseBlock = sv.get();
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000714 else if (Block) {
715 if (!FinishBlock(ElseBlock))
716 return 0;
717 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000718 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000719
Ted Kremenekb6f1d782009-07-17 18:04:55 +0000720 // Process the true branch.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000721 CFGBlock* ThenBlock;
722 {
723 Stmt* Then = I->getThen();
724 assert (Then);
725 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump6d9828c2009-07-17 01:31:16 +0000726 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +0000727 ThenBlock = addStmt(Then);
Mike Stump6d9828c2009-07-17 01:31:16 +0000728
Ted Kremenekdbdf7942009-04-01 03:52:47 +0000729 if (!ThenBlock) {
730 // We can reach here if the "then" body has all NullStmts.
731 // Create an empty block so we can distinguish between true and false
732 // branches in path-sensitive analyses.
733 ThenBlock = createBlock(false);
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000734 AddSuccessor(ThenBlock, sv.get());
Mike Stump6d9828c2009-07-17 01:31:16 +0000735 } else if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000736 if (!FinishBlock(ThenBlock))
737 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +0000738 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000739 }
740
Mike Stump6d9828c2009-07-17 01:31:16 +0000741 // Now create a new block containing the if statement.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000742 Block = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +0000743
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000744 // Set the terminator of the new block to the If statement.
745 Block->setTerminator(I);
Mike Stump6d9828c2009-07-17 01:31:16 +0000746
Mike Stump00998a02009-07-23 23:25:26 +0000747 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000748 const TryResult &KnownVal = TryEvaluateBool(I->getCond());
Mike Stump00998a02009-07-23 23:25:26 +0000749
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000750 // Now add the successors.
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000751 AddSuccessor(Block, KnownVal.isFalse() ? NULL : ThenBlock);
752 AddSuccessor(Block, KnownVal.isTrue()? NULL : ElseBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +0000753
754 // Add the condition as the last statement in the new block. This may create
755 // new blocks as the condition may contain control-flow. Any newly created
756 // blocks will be pointed to be "Block".
Ted Kremenek4f880632009-07-17 22:18:43 +0000757 return addStmt(I->getCond());
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000758}
Mike Stump6d9828c2009-07-17 01:31:16 +0000759
760
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000761CFGBlock* CFGBuilder::VisitReturnStmt(ReturnStmt* R) {
Ted Kremenek6c249722009-09-24 18:45:41 +0000762 // If we were in the middle of a block we stop processing that block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000763 //
Mike Stump6d9828c2009-07-17 01:31:16 +0000764 // NOTE: If a "return" appears in the middle of a block, this means that the
765 // code afterwards is DEAD (unreachable). We still keep a basic block
766 // for that code; a simple "mark-and-sweep" from the entry block will be
767 // able to report such dead blocks.
Ted Kremenek6c249722009-09-24 18:45:41 +0000768 if (Block)
769 FinishBlock(Block);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000770
771 // Create the new block.
772 Block = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +0000773
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000774 // The Exit block is the only successor.
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000775 AddSuccessor(Block, &cfg->getExit());
Mike Stump6d9828c2009-07-17 01:31:16 +0000776
777 // Add the return statement to the block. This may create new blocks if R
778 // contains control-flow (short-circuit operations).
Ted Kremenek4f880632009-07-17 22:18:43 +0000779 return VisitStmt(R, true);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000780}
781
782CFGBlock* CFGBuilder::VisitLabelStmt(LabelStmt* L) {
783 // Get the block of the labeled statement. Add it to our map.
Ted Kremenek4f880632009-07-17 22:18:43 +0000784 addStmt(L->getSubStmt());
Ted Kremenek2677ea82008-03-15 07:45:02 +0000785 CFGBlock* LabelBlock = Block;
Mike Stump6d9828c2009-07-17 01:31:16 +0000786
Ted Kremenek4f880632009-07-17 22:18:43 +0000787 if (!LabelBlock) // This can happen when the body is empty, i.e.
788 LabelBlock = createBlock(); // scopes that only contains NullStmts.
Mike Stump6d9828c2009-07-17 01:31:16 +0000789
Ted Kremenek4f880632009-07-17 22:18:43 +0000790 assert(LabelMap.find(L) == LabelMap.end() && "label already in map");
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000791 LabelMap[ L ] = LabelBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000792
793 // Labels partition blocks, so this is the end of the basic block we were
794 // processing (L is the block's label). Because this is label (and we have
795 // already processed the substatement) there is no extra control-flow to worry
796 // about.
Ted Kremenek9cffe732007-08-29 23:20:49 +0000797 LabelBlock->setLabel(L);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000798 if (!FinishBlock(LabelBlock))
799 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +0000800
801 // We set Block to NULL to allow lazy creation of a new block (if necessary);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000802 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +0000803
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000804 // This block is now the implicit successor of other blocks.
805 Succ = LabelBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000806
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000807 return LabelBlock;
808}
809
810CFGBlock* CFGBuilder::VisitGotoStmt(GotoStmt* G) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000811 // Goto is a control-flow statement. Thus we stop processing the current
812 // block and create a new one.
Ted Kremenek4f880632009-07-17 22:18:43 +0000813 if (Block)
814 FinishBlock(Block);
815
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000816 Block = createBlock(false);
817 Block->setTerminator(G);
Mike Stump6d9828c2009-07-17 01:31:16 +0000818
819 // If we already know the mapping to the label block add the successor now.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000820 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
Mike Stump6d9828c2009-07-17 01:31:16 +0000821
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000822 if (I == LabelMap.end())
823 // We will need to backpatch this block later.
824 BackpatchBlocks.push_back(Block);
825 else
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000826 AddSuccessor(Block, I->second);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000827
Mike Stump6d9828c2009-07-17 01:31:16 +0000828 return Block;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000829}
830
831CFGBlock* CFGBuilder::VisitForStmt(ForStmt* F) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000832 CFGBlock* LoopSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +0000833
Mike Stumpfefb9f72009-07-21 01:12:51 +0000834 // "for" is a control-flow statement. Thus we stop processing the current
835 // block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000836 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000837 if (!FinishBlock(Block))
838 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000839 LoopSuccessor = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +0000840 } else
841 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000842
843 // Because of short-circuit evaluation, the condition of the loop can span
844 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
845 // evaluate the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000846 CFGBlock* ExitConditionBlock = createBlock(false);
847 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000848
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000849 // Set the terminator for the "exit" condition block.
Mike Stump6d9828c2009-07-17 01:31:16 +0000850 ExitConditionBlock->setTerminator(F);
851
852 // Now add the actual condition to the condition block. Because the condition
853 // itself may contain control-flow, new blocks may be created.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000854 if (Stmt* C = F->getCond()) {
855 Block = ExitConditionBlock;
856 EntryConditionBlock = addStmt(C);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000857 if (Block) {
858 if (!FinishBlock(EntryConditionBlock))
859 return 0;
860 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000861 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000862
Mike Stump6d9828c2009-07-17 01:31:16 +0000863 // The condition block is the implicit successor for the loop body as well as
864 // any code above the loop.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000865 Succ = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000866
Mike Stump00998a02009-07-23 23:25:26 +0000867 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +0000868 TryResult KnownVal(true);
Mike Stump1eb44332009-09-09 15:08:12 +0000869
Mike Stump00998a02009-07-23 23:25:26 +0000870 if (F->getCond())
871 KnownVal = TryEvaluateBool(F->getCond());
872
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000873 // Now create the loop body.
874 {
875 assert (F->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +0000876
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000877 // Save the current values for Block, Succ, and continue and break targets
878 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
879 save_continue(ContinueTargetBlock),
Mike Stump6d9828c2009-07-17 01:31:16 +0000880 save_break(BreakTargetBlock);
881
Ted Kremenekaf603f72007-08-30 18:39:40 +0000882 // Create a new block to contain the (bottom) of the loop body.
883 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +0000884
Ted Kremeneke9334502008-09-04 21:48:47 +0000885 if (Stmt* I = F->getInc()) {
Mike Stump6d9828c2009-07-17 01:31:16 +0000886 // Generate increment code in its own basic block. This is the target of
887 // continue statements.
Ted Kremenek4f880632009-07-17 22:18:43 +0000888 Succ = addStmt(I);
Mike Stump6d9828c2009-07-17 01:31:16 +0000889 } else {
890 // No increment code. Create a special, empty, block that is used as the
891 // target block for "looping back" to the start of the loop.
Ted Kremenek3575f842009-04-28 00:51:56 +0000892 assert(Succ == EntryConditionBlock);
893 Succ = createBlock();
Ted Kremeneke9334502008-09-04 21:48:47 +0000894 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000895
Ted Kremenek3575f842009-04-28 00:51:56 +0000896 // Finish up the increment (or empty) block if it hasn't been already.
897 if (Block) {
898 assert(Block == Succ);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000899 if (!FinishBlock(Block))
900 return 0;
Ted Kremenek3575f842009-04-28 00:51:56 +0000901 Block = 0;
902 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000903
Ted Kremenek3575f842009-04-28 00:51:56 +0000904 ContinueTargetBlock = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000905
Ted Kremenek3575f842009-04-28 00:51:56 +0000906 // The starting block for the loop increment is the block that should
907 // represent the 'loop target' for looping back to the start of the loop.
908 ContinueTargetBlock->setLoopTarget(F);
909
Ted Kremeneke9334502008-09-04 21:48:47 +0000910 // All breaks should go to the code following the loop.
Mike Stump6d9828c2009-07-17 01:31:16 +0000911 BreakTargetBlock = LoopSuccessor;
912
913 // Now populate the body block, and in the process create new blocks as we
914 // walk the body of the loop.
Ted Kremenek4f880632009-07-17 22:18:43 +0000915 CFGBlock* BodyBlock = addStmt(F->getBody());
Ted Kremenekaf603f72007-08-30 18:39:40 +0000916
917 if (!BodyBlock)
Zhongxing Xu1d4b2182009-08-20 02:56:48 +0000918 BodyBlock = ContinueTargetBlock; // can happen for "for (...;...;...) ;"
Ted Kremenek941fde82009-07-24 04:47:11 +0000919 else if (Block && !FinishBlock(BodyBlock))
920 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +0000921
Ted Kremenek941fde82009-07-24 04:47:11 +0000922 // This new body block is a successor to our "exit" condition block.
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000923 AddSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000924 }
Mike Stump6d9828c2009-07-17 01:31:16 +0000925
Ted Kremenek941fde82009-07-24 04:47:11 +0000926 // Link up the condition block with the code that follows the loop. (the
927 // false branch).
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000928 AddSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump6d9828c2009-07-17 01:31:16 +0000929
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000930 // If the loop contains initialization, create a new block for those
Mike Stump6d9828c2009-07-17 01:31:16 +0000931 // statements. This block can also contain statements that precede the loop.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000932 if (Stmt* I = F->getInit()) {
933 Block = createBlock();
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000934 return addStmt(I);
Mike Stump6d9828c2009-07-17 01:31:16 +0000935 } else {
936 // There is no loop initialization. We are thus basically a while loop.
937 // NULL out Block to force lazy block construction.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000938 Block = NULL;
Ted Kremenek54827132008-02-27 07:20:00 +0000939 Succ = EntryConditionBlock;
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000940 return EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000941 }
942}
943
Ted Kremenek514de5a2008-11-11 17:10:00 +0000944CFGBlock* CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt* S) {
945 // Objective-C fast enumeration 'for' statements:
946 // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
947 //
948 // for ( Type newVariable in collection_expression ) { statements }
949 //
950 // becomes:
951 //
952 // prologue:
953 // 1. collection_expression
954 // T. jump to loop_entry
955 // loop_entry:
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000956 // 1. side-effects of element expression
Ted Kremenek514de5a2008-11-11 17:10:00 +0000957 // 1. ObjCForCollectionStmt [performs binding to newVariable]
958 // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil]
959 // TB:
960 // statements
961 // T. jump to loop_entry
962 // FB:
963 // what comes after
964 //
965 // and
966 //
967 // Type existingItem;
968 // for ( existingItem in expression ) { statements }
969 //
970 // becomes:
971 //
Mike Stump6d9828c2009-07-17 01:31:16 +0000972 // the same with newVariable replaced with existingItem; the binding works
973 // the same except that for one ObjCForCollectionStmt::getElement() returns
974 // a DeclStmt and the other returns a DeclRefExpr.
Ted Kremenek514de5a2008-11-11 17:10:00 +0000975 //
Mike Stump6d9828c2009-07-17 01:31:16 +0000976
Ted Kremenek514de5a2008-11-11 17:10:00 +0000977 CFGBlock* LoopSuccessor = 0;
Mike Stump6d9828c2009-07-17 01:31:16 +0000978
Ted Kremenek514de5a2008-11-11 17:10:00 +0000979 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +0000980 if (!FinishBlock(Block))
981 return 0;
Ted Kremenek514de5a2008-11-11 17:10:00 +0000982 LoopSuccessor = Block;
983 Block = 0;
Ted Kremenek4f880632009-07-17 22:18:43 +0000984 } else
985 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +0000986
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000987 // Build the condition blocks.
988 CFGBlock* ExitConditionBlock = createBlock(false);
989 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000990
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000991 // Set the terminator for the "exit" condition block.
Mike Stump6d9828c2009-07-17 01:31:16 +0000992 ExitConditionBlock->setTerminator(S);
993
994 // The last statement in the block should be the ObjCForCollectionStmt, which
995 // performs the actual binding to 'element' and determines if there are any
996 // more items in the collection.
Ted Kremenekee82d9b2009-10-12 20:55:07 +0000997 AppendStmt(ExitConditionBlock, S);
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000998 Block = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +0000999
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001000 // Walk the 'element' expression to see if there are any side-effects. We
Mike Stump6d9828c2009-07-17 01:31:16 +00001001 // generate new blocks as necesary. We DON'T add the statement by default to
1002 // the CFG unless it contains control-flow.
Ted Kremenek4f880632009-07-17 22:18:43 +00001003 EntryConditionBlock = Visit(S->getElement(), false);
Mike Stump6d9828c2009-07-17 01:31:16 +00001004 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001005 if (!FinishBlock(EntryConditionBlock))
1006 return 0;
1007 Block = 0;
1008 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001009
1010 // The condition block is the implicit successor for the loop body as well as
1011 // any code above the loop.
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001012 Succ = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001013
Ted Kremenek514de5a2008-11-11 17:10:00 +00001014 // Now create the true branch.
Mike Stump6d9828c2009-07-17 01:31:16 +00001015 {
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001016 // Save the current values for Succ, continue and break targets.
1017 SaveAndRestore<CFGBlock*> save_Succ(Succ),
Mike Stump6d9828c2009-07-17 01:31:16 +00001018 save_continue(ContinueTargetBlock), save_break(BreakTargetBlock);
1019
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001020 BreakTargetBlock = LoopSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001021 ContinueTargetBlock = EntryConditionBlock;
1022
Ted Kremenek4f880632009-07-17 22:18:43 +00001023 CFGBlock* BodyBlock = addStmt(S->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001024
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001025 if (!BodyBlock)
1026 BodyBlock = EntryConditionBlock; // can happen for "for (X in Y) ;"
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001027 else if (Block) {
1028 if (!FinishBlock(BodyBlock))
1029 return 0;
1030 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001031
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001032 // This new body block is a successor to our "exit" condition block.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001033 AddSuccessor(ExitConditionBlock, BodyBlock);
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001034 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001035
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001036 // Link up the condition block with the code that follows the loop.
1037 // (the false branch).
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001038 AddSuccessor(ExitConditionBlock, LoopSuccessor);
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001039
Ted Kremenek514de5a2008-11-11 17:10:00 +00001040 // Now create a prologue block to contain the collection expression.
Ted Kremenek4cb3a852008-11-14 01:57:41 +00001041 Block = createBlock();
Ted Kremenek514de5a2008-11-11 17:10:00 +00001042 return addStmt(S->getCollection());
Mike Stump6d9828c2009-07-17 01:31:16 +00001043}
1044
Ted Kremenekb3b0b362009-05-02 01:49:13 +00001045CFGBlock* CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt* S) {
1046 // FIXME: Add locking 'primitives' to CFG for @synchronized.
Mike Stump6d9828c2009-07-17 01:31:16 +00001047
Ted Kremenekb3b0b362009-05-02 01:49:13 +00001048 // Inline the body.
Ted Kremenek4f880632009-07-17 22:18:43 +00001049 CFGBlock *SyncBlock = addStmt(S->getSynchBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001050
Ted Kremenekda5348e2009-05-05 23:11:51 +00001051 // The sync body starts its own basic block. This makes it a little easier
1052 // for diagnostic clients.
1053 if (SyncBlock) {
1054 if (!FinishBlock(SyncBlock))
1055 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001056
Ted Kremenekda5348e2009-05-05 23:11:51 +00001057 Block = 0;
1058 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001059
Ted Kremenekda5348e2009-05-05 23:11:51 +00001060 Succ = SyncBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001061
Ted Kremenekb3b0b362009-05-02 01:49:13 +00001062 // Inline the sync expression.
Ted Kremenek4f880632009-07-17 22:18:43 +00001063 return addStmt(S->getSynchExpr());
Ted Kremenekb3b0b362009-05-02 01:49:13 +00001064}
Mike Stump6d9828c2009-07-17 01:31:16 +00001065
Ted Kremeneke31c0d22009-03-30 22:29:21 +00001066CFGBlock* CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt* S) {
Ted Kremenek4f880632009-07-17 22:18:43 +00001067 // FIXME
Ted Kremenek90658ec2009-04-07 04:26:02 +00001068 return NYS();
Ted Kremeneke31c0d22009-03-30 22:29:21 +00001069}
Ted Kremenek514de5a2008-11-11 17:10:00 +00001070
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001071CFGBlock* CFGBuilder::VisitWhileStmt(WhileStmt* W) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001072 CFGBlock* LoopSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001073
Mike Stumpfefb9f72009-07-21 01:12:51 +00001074 // "while" is a control-flow statement. Thus we stop processing the current
1075 // block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001076 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001077 if (!FinishBlock(Block))
1078 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001079 LoopSuccessor = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001080 } else
1081 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +00001082
1083 // Because of short-circuit evaluation, the condition of the loop can span
1084 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
1085 // evaluate the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001086 CFGBlock* ExitConditionBlock = createBlock(false);
1087 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001088
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001089 // Set the terminator for the "exit" condition block.
1090 ExitConditionBlock->setTerminator(W);
Mike Stump6d9828c2009-07-17 01:31:16 +00001091
1092 // Now add the actual condition to the condition block. Because the condition
1093 // itself may contain control-flow, new blocks may be created. Thus we update
1094 // "Succ" after adding the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001095 if (Stmt* C = W->getCond()) {
1096 Block = ExitConditionBlock;
1097 EntryConditionBlock = addStmt(C);
Ted Kremenekf6e85412009-04-28 03:09:44 +00001098 assert(Block == EntryConditionBlock);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001099 if (Block) {
1100 if (!FinishBlock(EntryConditionBlock))
1101 return 0;
1102 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001103 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001104
1105 // The condition block is the implicit successor for the loop body as well as
1106 // any code above the loop.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001107 Succ = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001108
Mike Stump00998a02009-07-23 23:25:26 +00001109 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +00001110 const TryResult& KnownVal = TryEvaluateBool(W->getCond());
Mike Stump00998a02009-07-23 23:25:26 +00001111
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001112 // Process the loop body.
1113 {
Ted Kremenekf6e85412009-04-28 03:09:44 +00001114 assert(W->getBody());
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001115
1116 // Save the current values for Block, Succ, and continue and break targets
1117 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
1118 save_continue(ContinueTargetBlock),
1119 save_break(BreakTargetBlock);
Ted Kremenekf6e85412009-04-28 03:09:44 +00001120
Mike Stump6d9828c2009-07-17 01:31:16 +00001121 // Create an empty block to represent the transition block for looping back
1122 // to the head of the loop.
Ted Kremenekf6e85412009-04-28 03:09:44 +00001123 Block = 0;
1124 assert(Succ == EntryConditionBlock);
1125 Succ = createBlock();
1126 Succ->setLoopTarget(W);
Mike Stump6d9828c2009-07-17 01:31:16 +00001127 ContinueTargetBlock = Succ;
1128
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001129 // All breaks should go to the code following the loop.
1130 BreakTargetBlock = LoopSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001131
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001132 // NULL out Block to force lazy instantiation of blocks for the body.
1133 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001134
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001135 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek4f880632009-07-17 22:18:43 +00001136 CFGBlock* BodyBlock = addStmt(W->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001137
Ted Kremenekaf603f72007-08-30 18:39:40 +00001138 if (!BodyBlock)
Zhongxing Xud5c3b132009-08-20 03:21:49 +00001139 BodyBlock = ContinueTargetBlock; // can happen for "while(...) ;"
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001140 else if (Block) {
1141 if (!FinishBlock(BodyBlock))
1142 return 0;
1143 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001144
Ted Kremenek941fde82009-07-24 04:47:11 +00001145 // Add the loop body entry as a successor to the condition.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001146 AddSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001147 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001148
Ted Kremenek941fde82009-07-24 04:47:11 +00001149 // Link up the condition block with the code that follows the loop. (the
1150 // false branch).
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001151 AddSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump6d9828c2009-07-17 01:31:16 +00001152
1153 // There can be no more statements in the condition block since we loop back
1154 // to this block. NULL out Block to force lazy creation of another block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001155 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001156
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001157 // Return the condition block, which is the dominating block for the loop.
Ted Kremenek54827132008-02-27 07:20:00 +00001158 Succ = EntryConditionBlock;
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001159 return EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001160}
Mike Stump1eb44332009-09-09 15:08:12 +00001161
1162
Ted Kremenek4f880632009-07-17 22:18:43 +00001163CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt* S) {
1164 // FIXME: For now we pretend that @catch and the code it contains does not
1165 // exit.
1166 return Block;
1167}
Mike Stump6d9828c2009-07-17 01:31:16 +00001168
Ted Kremenek2fda5042008-12-09 20:20:09 +00001169CFGBlock* CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt* S) {
1170 // FIXME: This isn't complete. We basically treat @throw like a return
1171 // statement.
Mike Stump6d9828c2009-07-17 01:31:16 +00001172
Ted Kremenek6c249722009-09-24 18:45:41 +00001173 // If we were in the middle of a block we stop processing that block.
Ted Kremenek4f880632009-07-17 22:18:43 +00001174 if (Block && !FinishBlock(Block))
1175 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001176
Ted Kremenek2fda5042008-12-09 20:20:09 +00001177 // Create the new block.
1178 Block = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +00001179
Ted Kremenek2fda5042008-12-09 20:20:09 +00001180 // The Exit block is the only successor.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001181 AddSuccessor(Block, &cfg->getExit());
Mike Stump6d9828c2009-07-17 01:31:16 +00001182
1183 // Add the statement to the block. This may create new blocks if S contains
1184 // control-flow (short-circuit operations).
Ted Kremenek4f880632009-07-17 22:18:43 +00001185 return VisitStmt(S, true);
Ted Kremenek2fda5042008-12-09 20:20:09 +00001186}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001187
Mike Stump0979d802009-07-22 22:56:04 +00001188CFGBlock* CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr* T) {
Ted Kremenek6c249722009-09-24 18:45:41 +00001189 // If we were in the middle of a block we stop processing that block.
Mike Stump0979d802009-07-22 22:56:04 +00001190 if (Block && !FinishBlock(Block))
1191 return 0;
1192
1193 // Create the new block.
1194 Block = createBlock(false);
1195
1196 // The Exit block is the only successor.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001197 AddSuccessor(Block, &cfg->getExit());
Mike Stump0979d802009-07-22 22:56:04 +00001198
1199 // Add the statement to the block. This may create new blocks if S contains
1200 // control-flow (short-circuit operations).
1201 return VisitStmt(T, true);
1202}
1203
Ted Kremenek4f880632009-07-17 22:18:43 +00001204CFGBlock *CFGBuilder::VisitDoStmt(DoStmt* D) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001205 CFGBlock* LoopSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001206
Mike Stump8f9893a2009-07-21 01:27:50 +00001207 // "do...while" is a control-flow statement. Thus we stop processing the
1208 // current block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001209 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001210 if (!FinishBlock(Block))
1211 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001212 LoopSuccessor = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001213 } else
1214 LoopSuccessor = Succ;
Mike Stump6d9828c2009-07-17 01:31:16 +00001215
1216 // Because of short-circuit evaluation, the condition of the loop can span
1217 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
1218 // evaluate the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001219 CFGBlock* ExitConditionBlock = createBlock(false);
1220 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001221
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001222 // Set the terminator for the "exit" condition block.
Mike Stump6d9828c2009-07-17 01:31:16 +00001223 ExitConditionBlock->setTerminator(D);
1224
1225 // Now add the actual condition to the condition block. Because the condition
1226 // itself may contain control-flow, new blocks may be created.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001227 if (Stmt* C = D->getCond()) {
1228 Block = ExitConditionBlock;
1229 EntryConditionBlock = addStmt(C);
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001230 if (Block) {
1231 if (!FinishBlock(EntryConditionBlock))
1232 return 0;
1233 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001234 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001235
Ted Kremenek54827132008-02-27 07:20:00 +00001236 // The condition block is the implicit successor for the loop body.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001237 Succ = EntryConditionBlock;
1238
Mike Stump00998a02009-07-23 23:25:26 +00001239 // See if this is a known constant.
Ted Kremenek941fde82009-07-24 04:47:11 +00001240 const TryResult &KnownVal = TryEvaluateBool(D->getCond());
Mike Stump00998a02009-07-23 23:25:26 +00001241
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001242 // Process the loop body.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001243 CFGBlock* BodyBlock = NULL;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001244 {
1245 assert (D->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001246
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001247 // Save the current values for Block, Succ, and continue and break targets
1248 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
1249 save_continue(ContinueTargetBlock),
1250 save_break(BreakTargetBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +00001251
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001252 // All continues within this loop should go to the condition block
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001253 ContinueTargetBlock = EntryConditionBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001254
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001255 // All breaks should go to the code following the loop.
1256 BreakTargetBlock = LoopSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001257
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001258 // NULL out Block to force lazy instantiation of blocks for the body.
1259 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001260
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001261 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek4f880632009-07-17 22:18:43 +00001262 BodyBlock = addStmt(D->getBody());
Mike Stump6d9828c2009-07-17 01:31:16 +00001263
Ted Kremenekaf603f72007-08-30 18:39:40 +00001264 if (!BodyBlock)
Ted Kremeneka9d996d2008-02-27 00:28:17 +00001265 BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001266 else if (Block) {
1267 if (!FinishBlock(BodyBlock))
1268 return 0;
1269 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001270
Ted Kremenek8f08c9d2009-04-28 04:22:00 +00001271 // Add an intermediate block between the BodyBlock and the
Mike Stump6d9828c2009-07-17 01:31:16 +00001272 // ExitConditionBlock to represent the "loop back" transition. Create an
1273 // empty block to represent the transition block for looping back to the
1274 // head of the loop.
Ted Kremenek8f08c9d2009-04-28 04:22:00 +00001275 // FIXME: Can we do this more efficiently without adding another block?
1276 Block = NULL;
1277 Succ = BodyBlock;
1278 CFGBlock *LoopBackBlock = createBlock();
1279 LoopBackBlock->setLoopTarget(D);
Mike Stump6d9828c2009-07-17 01:31:16 +00001280
Ted Kremenek941fde82009-07-24 04:47:11 +00001281 // Add the loop body entry as a successor to the condition.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001282 AddSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : LoopBackBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001283 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001284
Ted Kremenek941fde82009-07-24 04:47:11 +00001285 // Link up the condition block with the code that follows the loop.
1286 // (the false branch).
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001287 AddSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
Mike Stump6d9828c2009-07-17 01:31:16 +00001288
1289 // There can be no more statements in the body block(s) since we loop back to
1290 // the body. NULL out Block to force lazy creation of another block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001291 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001292
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001293 // Return the loop body, which is the dominating block for the loop.
Ted Kremenek54827132008-02-27 07:20:00 +00001294 Succ = BodyBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001295 return BodyBlock;
1296}
1297
1298CFGBlock* CFGBuilder::VisitContinueStmt(ContinueStmt* C) {
1299 // "continue" is a control-flow statement. Thus we stop processing the
1300 // current block.
Ted Kremenek4f880632009-07-17 22:18:43 +00001301 if (Block && !FinishBlock(Block))
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001302 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001303
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001304 // Now create a new block that ends with the continue statement.
1305 Block = createBlock(false);
1306 Block->setTerminator(C);
Mike Stump6d9828c2009-07-17 01:31:16 +00001307
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001308 // If there is no target for the continue, then we are looking at an
Ted Kremenek235c5ed2009-04-07 18:53:24 +00001309 // incomplete AST. This means the CFG cannot be constructed.
1310 if (ContinueTargetBlock)
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001311 AddSuccessor(Block, ContinueTargetBlock);
Ted Kremenek235c5ed2009-04-07 18:53:24 +00001312 else
1313 badCFG = true;
Mike Stump6d9828c2009-07-17 01:31:16 +00001314
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001315 return Block;
1316}
Mike Stump1eb44332009-09-09 15:08:12 +00001317
Ted Kremenek13fc08a2009-07-18 00:47:21 +00001318CFGBlock *CFGBuilder::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E,
1319 bool alwaysAdd) {
1320
1321 if (alwaysAdd) {
1322 autoCreateBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001323 AppendStmt(Block, E);
Ted Kremenek13fc08a2009-07-18 00:47:21 +00001324 }
Mike Stump1eb44332009-09-09 15:08:12 +00001325
Ted Kremenek4f880632009-07-17 22:18:43 +00001326 // VLA types have expressions that must be evaluated.
1327 if (E->isArgumentType()) {
1328 for (VariableArrayType* VA = FindVA(E->getArgumentType().getTypePtr());
1329 VA != 0; VA = FindVA(VA->getElementType().getTypePtr()))
1330 addStmt(VA->getSizeExpr());
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001331 }
Mike Stump1eb44332009-09-09 15:08:12 +00001332
Mike Stump6d9828c2009-07-17 01:31:16 +00001333 return Block;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001334}
Mike Stump1eb44332009-09-09 15:08:12 +00001335
Ted Kremenek4f880632009-07-17 22:18:43 +00001336/// VisitStmtExpr - Utility method to handle (nested) statement
1337/// expressions (a GCC extension).
Ted Kremenek13fc08a2009-07-18 00:47:21 +00001338CFGBlock* CFGBuilder::VisitStmtExpr(StmtExpr *SE, bool alwaysAdd) {
1339 if (alwaysAdd) {
1340 autoCreateBlock();
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001341 AppendStmt(Block, SE);
Ted Kremenek13fc08a2009-07-18 00:47:21 +00001342 }
Ted Kremenek4f880632009-07-17 22:18:43 +00001343 return VisitCompoundStmt(SE->getSubStmt());
1344}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001345
Ted Kremenek411cdee2008-04-16 21:10:48 +00001346CFGBlock* CFGBuilder::VisitSwitchStmt(SwitchStmt* Terminator) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001347 // "switch" is a control-flow statement. Thus we stop processing the current
1348 // block.
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001349 CFGBlock* SwitchSuccessor = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001350
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001351 if (Block) {
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001352 if (!FinishBlock(Block))
1353 return 0;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001354 SwitchSuccessor = Block;
Mike Stump6d9828c2009-07-17 01:31:16 +00001355 } else SwitchSuccessor = Succ;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001356
1357 // Save the current "switch" context.
1358 SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001359 save_break(BreakTargetBlock),
1360 save_default(DefaultCaseBlock);
1361
Mike Stump6d9828c2009-07-17 01:31:16 +00001362 // Set the "default" case to be the block after the switch statement. If the
1363 // switch statement contains a "default:", this value will be overwritten with
1364 // the block for that code.
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001365 DefaultCaseBlock = SwitchSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001366
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001367 // Create a new block that will contain the switch statement.
1368 SwitchTerminatedBlock = createBlock(false);
Mike Stump6d9828c2009-07-17 01:31:16 +00001369
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001370 // Now process the switch body. The code after the switch is the implicit
1371 // successor.
1372 Succ = SwitchSuccessor;
1373 BreakTargetBlock = SwitchSuccessor;
Mike Stump6d9828c2009-07-17 01:31:16 +00001374
1375 // When visiting the body, the case statements should automatically get linked
1376 // up to the switch. We also don't keep a pointer to the body, since all
1377 // control-flow from the switch goes to case/default statements.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001378 assert (Terminator->getBody() && "switch must contain a non-NULL body");
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001379 Block = NULL;
Ted Kremenek4f880632009-07-17 22:18:43 +00001380 CFGBlock *BodyBlock = addStmt(Terminator->getBody());
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001381 if (Block) {
1382 if (!FinishBlock(BodyBlock))
1383 return 0;
1384 }
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001385
Mike Stump6d9828c2009-07-17 01:31:16 +00001386 // If we have no "default:" case, the default transition is to the code
1387 // following the switch body.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001388 AddSuccessor(SwitchTerminatedBlock, DefaultCaseBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +00001389
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001390 // Add the terminator and condition in the switch block.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001391 SwitchTerminatedBlock->setTerminator(Terminator);
1392 assert (Terminator->getCond() && "switch condition must be non-NULL");
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001393 Block = SwitchTerminatedBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001394
Ted Kremenek411cdee2008-04-16 21:10:48 +00001395 return addStmt(Terminator->getCond());
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001396}
1397
Ted Kremenek4f880632009-07-17 22:18:43 +00001398CFGBlock* CFGBuilder::VisitCaseStmt(CaseStmt* CS) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001399 // CaseStmts are essentially labels, so they are the first statement in a
1400 // block.
Ted Kremenek29ccaa12007-08-30 18:48:11 +00001401
Ted Kremenek4f880632009-07-17 22:18:43 +00001402 if (CS->getSubStmt())
1403 addStmt(CS->getSubStmt());
Mike Stump1eb44332009-09-09 15:08:12 +00001404
Ted Kremenek29ccaa12007-08-30 18:48:11 +00001405 CFGBlock* CaseBlock = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001406 if (!CaseBlock)
1407 CaseBlock = createBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +00001408
1409 // Cases statements partition blocks, so this is the top of the basic block we
1410 // were processing (the "case XXX:" is the label).
Ted Kremenek4f880632009-07-17 22:18:43 +00001411 CaseBlock->setLabel(CS);
1412
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001413 if (!FinishBlock(CaseBlock))
1414 return 0;
Mike Stump6d9828c2009-07-17 01:31:16 +00001415
1416 // Add this block to the list of successors for the block with the switch
1417 // statement.
Ted Kremenek4f880632009-07-17 22:18:43 +00001418 assert(SwitchTerminatedBlock);
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001419 AddSuccessor(SwitchTerminatedBlock, CaseBlock);
Mike Stump6d9828c2009-07-17 01:31:16 +00001420
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001421 // We set Block to NULL to allow lazy creation of a new block (if necessary)
1422 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001423
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001424 // This block is now the implicit successor of other blocks.
1425 Succ = CaseBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001426
Ted Kremenek2677ea82008-03-15 07:45:02 +00001427 return CaseBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001428}
Mike Stump6d9828c2009-07-17 01:31:16 +00001429
Ted Kremenek411cdee2008-04-16 21:10:48 +00001430CFGBlock* CFGBuilder::VisitDefaultStmt(DefaultStmt* Terminator) {
Ted Kremenek4f880632009-07-17 22:18:43 +00001431 if (Terminator->getSubStmt())
1432 addStmt(Terminator->getSubStmt());
Mike Stump1eb44332009-09-09 15:08:12 +00001433
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001434 DefaultCaseBlock = Block;
Ted Kremenek4f880632009-07-17 22:18:43 +00001435
1436 if (!DefaultCaseBlock)
1437 DefaultCaseBlock = createBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +00001438
1439 // Default statements partition blocks, so this is the top of the basic block
1440 // we were processing (the "default:" is the label).
Ted Kremenek411cdee2008-04-16 21:10:48 +00001441 DefaultCaseBlock->setLabel(Terminator);
Mike Stump1eb44332009-09-09 15:08:12 +00001442
Ted Kremenek4e8df2e2009-05-02 00:13:27 +00001443 if (!FinishBlock(DefaultCaseBlock))
1444 return 0;
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001445
Mike Stump6d9828c2009-07-17 01:31:16 +00001446 // Unlike case statements, we don't add the default block to the successors
1447 // for the switch statement immediately. This is done when we finish
1448 // processing the switch statement. This allows for the default case
1449 // (including a fall-through to the code after the switch statement) to always
1450 // be the last successor of a switch-terminated block.
1451
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001452 // We set Block to NULL to allow lazy creation of a new block (if necessary)
1453 Block = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001454
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001455 // This block is now the implicit successor of other blocks.
1456 Succ = DefaultCaseBlock;
Mike Stump6d9828c2009-07-17 01:31:16 +00001457
1458 return DefaultCaseBlock;
Ted Kremenek295222c2008-02-13 21:46:34 +00001459}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001460
Ted Kremenek19bb3562007-08-28 19:26:49 +00001461CFGBlock* CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt* I) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001462 // Lazily create the indirect-goto dispatch block if there isn't one already.
Ted Kremenek19bb3562007-08-28 19:26:49 +00001463 CFGBlock* IBlock = cfg->getIndirectGotoBlock();
Mike Stump6d9828c2009-07-17 01:31:16 +00001464
Ted Kremenek19bb3562007-08-28 19:26:49 +00001465 if (!IBlock) {
1466 IBlock = createBlock(false);
1467 cfg->setIndirectGotoBlock(IBlock);
1468 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001469
Ted Kremenek19bb3562007-08-28 19:26:49 +00001470 // IndirectGoto is a control-flow statement. Thus we stop processing the
1471 // current block and create a new one.
Ted Kremenek4f880632009-07-17 22:18:43 +00001472 if (Block && !FinishBlock(Block))
1473 return 0;
1474
Ted Kremenek19bb3562007-08-28 19:26:49 +00001475 Block = createBlock(false);
1476 Block->setTerminator(I);
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001477 AddSuccessor(Block, IBlock);
Ted Kremenek19bb3562007-08-28 19:26:49 +00001478 return addStmt(I->getTarget());
1479}
1480
Ted Kremenekbefef2f2007-08-23 21:26:19 +00001481} // end anonymous namespace
Ted Kremenek026473c2007-08-23 16:51:22 +00001482
Mike Stump6d9828c2009-07-17 01:31:16 +00001483/// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has
1484/// no successors or predecessors. If this is the first block created in the
1485/// CFG, it is automatically set to be the Entry and Exit of the CFG.
Ted Kremenek94382522007-09-05 20:02:05 +00001486CFGBlock* CFG::createBlock() {
Ted Kremenek026473c2007-08-23 16:51:22 +00001487 bool first_block = begin() == end();
1488
1489 // Create the block.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001490 CFGBlock *Mem = getAllocator().Allocate<CFGBlock>();
1491 new (Mem) CFGBlock(NumBlockIDs++, BlkBVC);
1492 Blocks.push_back(Mem, BlkBVC);
Ted Kremenek026473c2007-08-23 16:51:22 +00001493
1494 // If this is the first block, set it as the Entry and Exit.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001495 if (first_block)
1496 Entry = Exit = &back();
Ted Kremenek026473c2007-08-23 16:51:22 +00001497
1498 // Return the block.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001499 return &back();
Ted Kremenekfddd5182007-08-21 21:42:03 +00001500}
1501
Ted Kremenek026473c2007-08-23 16:51:22 +00001502/// buildCFG - Constructs a CFG from an AST. Ownership of the returned
1503/// CFG is returned to the caller.
Mike Stumpe5af3ce2009-07-20 23:24:15 +00001504CFG* CFG::buildCFG(Stmt* Statement, ASTContext *C) {
Ted Kremenek026473c2007-08-23 16:51:22 +00001505 CFGBuilder Builder;
Mike Stumpe5af3ce2009-07-20 23:24:15 +00001506 return Builder.buildCFG(Statement, C);
Ted Kremenek026473c2007-08-23 16:51:22 +00001507}
1508
Ted Kremenek63f58872007-10-01 19:33:33 +00001509//===----------------------------------------------------------------------===//
1510// CFG: Queries for BlkExprs.
1511//===----------------------------------------------------------------------===//
Ted Kremenek7dba8602007-08-29 21:56:09 +00001512
Ted Kremenek63f58872007-10-01 19:33:33 +00001513namespace {
Ted Kremenek86946742008-01-17 20:48:37 +00001514 typedef llvm::DenseMap<const Stmt*,unsigned> BlkExprMapTy;
Ted Kremenek63f58872007-10-01 19:33:33 +00001515}
1516
Ted Kremenek411cdee2008-04-16 21:10:48 +00001517static void FindSubExprAssignments(Stmt* Terminator, llvm::SmallPtrSet<Expr*,50>& Set) {
1518 if (!Terminator)
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001519 return;
Mike Stump6d9828c2009-07-17 01:31:16 +00001520
Ted Kremenek411cdee2008-04-16 21:10:48 +00001521 for (Stmt::child_iterator I=Terminator->child_begin(), E=Terminator->child_end(); I!=E; ++I) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001522 if (!*I) continue;
Mike Stump6d9828c2009-07-17 01:31:16 +00001523
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001524 if (BinaryOperator* B = dyn_cast<BinaryOperator>(*I))
1525 if (B->isAssignmentOp()) Set.insert(B);
Mike Stump6d9828c2009-07-17 01:31:16 +00001526
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001527 FindSubExprAssignments(*I, Set);
1528 }
1529}
1530
Ted Kremenek63f58872007-10-01 19:33:33 +00001531static BlkExprMapTy* PopulateBlkExprMap(CFG& cfg) {
1532 BlkExprMapTy* M = new BlkExprMapTy();
Mike Stump6d9828c2009-07-17 01:31:16 +00001533
1534 // Look for assignments that are used as subexpressions. These are the only
1535 // assignments that we want to *possibly* register as a block-level
1536 // expression. Basically, if an assignment occurs both in a subexpression and
1537 // at the block-level, it is a block-level expression.
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001538 llvm::SmallPtrSet<Expr*,50> SubExprAssignments;
Mike Stump6d9828c2009-07-17 01:31:16 +00001539
Ted Kremenek63f58872007-10-01 19:33:33 +00001540 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I)
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001541 for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI)
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001542 FindSubExprAssignments(*BI, SubExprAssignments);
Ted Kremenek86946742008-01-17 20:48:37 +00001543
Ted Kremenek411cdee2008-04-16 21:10:48 +00001544 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001545
1546 // Iterate over the statements again on identify the Expr* and Stmt* at the
1547 // block-level that are block-level expressions.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001548
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001549 for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI)
Ted Kremenek411cdee2008-04-16 21:10:48 +00001550 if (Expr* Exp = dyn_cast<Expr>(*BI)) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001551
Ted Kremenek411cdee2008-04-16 21:10:48 +00001552 if (BinaryOperator* B = dyn_cast<BinaryOperator>(Exp)) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001553 // Assignment expressions that are not nested within another
Mike Stump6d9828c2009-07-17 01:31:16 +00001554 // expression are really "statements" whose value is never used by
1555 // another expression.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001556 if (B->isAssignmentOp() && !SubExprAssignments.count(Exp))
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001557 continue;
Mike Stump6d9828c2009-07-17 01:31:16 +00001558 } else if (const StmtExpr* Terminator = dyn_cast<StmtExpr>(Exp)) {
1559 // Special handling for statement expressions. The last statement in
1560 // the statement expression is also a block-level expr.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001561 const CompoundStmt* C = Terminator->getSubStmt();
Ted Kremenek86946742008-01-17 20:48:37 +00001562 if (!C->body_empty()) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001563 unsigned x = M->size();
Ted Kremenek86946742008-01-17 20:48:37 +00001564 (*M)[C->body_back()] = x;
1565 }
1566 }
Ted Kremeneke2dcd782008-01-25 23:22:27 +00001567
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001568 unsigned x = M->size();
Ted Kremenek411cdee2008-04-16 21:10:48 +00001569 (*M)[Exp] = x;
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001570 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001571
Ted Kremenek411cdee2008-04-16 21:10:48 +00001572 // Look at terminators. The condition is a block-level expression.
Mike Stump6d9828c2009-07-17 01:31:16 +00001573
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001574 Stmt* S = (*I)->getTerminatorCondition();
Mike Stump6d9828c2009-07-17 01:31:16 +00001575
Ted Kremenek390e48b2008-11-12 21:11:49 +00001576 if (S && M->find(S) == M->end()) {
Ted Kremenek411cdee2008-04-16 21:10:48 +00001577 unsigned x = M->size();
Ted Kremenek390e48b2008-11-12 21:11:49 +00001578 (*M)[S] = x;
Ted Kremenek411cdee2008-04-16 21:10:48 +00001579 }
1580 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001581
Ted Kremenek63f58872007-10-01 19:33:33 +00001582 return M;
1583}
1584
Ted Kremenek86946742008-01-17 20:48:37 +00001585CFG::BlkExprNumTy CFG::getBlkExprNum(const Stmt* S) {
1586 assert(S != NULL);
Ted Kremenek63f58872007-10-01 19:33:33 +00001587 if (!BlkExprMap) { BlkExprMap = (void*) PopulateBlkExprMap(*this); }
Mike Stump6d9828c2009-07-17 01:31:16 +00001588
Ted Kremenek63f58872007-10-01 19:33:33 +00001589 BlkExprMapTy* M = reinterpret_cast<BlkExprMapTy*>(BlkExprMap);
Ted Kremenek86946742008-01-17 20:48:37 +00001590 BlkExprMapTy::iterator I = M->find(S);
Mike Stump6d9828c2009-07-17 01:31:16 +00001591
Ted Kremenek63f58872007-10-01 19:33:33 +00001592 if (I == M->end()) return CFG::BlkExprNumTy();
1593 else return CFG::BlkExprNumTy(I->second);
1594}
1595
1596unsigned CFG::getNumBlkExprs() {
1597 if (const BlkExprMapTy* M = reinterpret_cast<const BlkExprMapTy*>(BlkExprMap))
1598 return M->size();
1599 else {
1600 // We assume callers interested in the number of BlkExprs will want
1601 // the map constructed if it doesn't already exist.
1602 BlkExprMap = (void*) PopulateBlkExprMap(*this);
1603 return reinterpret_cast<BlkExprMapTy*>(BlkExprMap)->size();
1604 }
1605}
1606
Ted Kremenek274f4332008-04-28 18:00:46 +00001607//===----------------------------------------------------------------------===//
Ted Kremenek274f4332008-04-28 18:00:46 +00001608// Cleanup: CFG dstor.
1609//===----------------------------------------------------------------------===//
1610
Ted Kremenek63f58872007-10-01 19:33:33 +00001611CFG::~CFG() {
1612 delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap);
1613}
Mike Stump6d9828c2009-07-17 01:31:16 +00001614
Ted Kremenek7dba8602007-08-29 21:56:09 +00001615//===----------------------------------------------------------------------===//
1616// CFG pretty printing
1617//===----------------------------------------------------------------------===//
1618
Ted Kremeneke8ee26b2007-08-22 18:22:34 +00001619namespace {
1620
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +00001621class StmtPrinterHelper : public PrinterHelper {
Mike Stump6d9828c2009-07-17 01:31:16 +00001622
Ted Kremenek42a509f2007-08-31 21:30:12 +00001623 typedef llvm::DenseMap<Stmt*,std::pair<unsigned,unsigned> > StmtMapTy;
1624 StmtMapTy StmtMap;
1625 signed CurrentBlock;
1626 unsigned CurrentStmt;
Chris Lattnere4f21422009-06-30 01:26:17 +00001627 const LangOptions &LangOpts;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001628public:
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001629
Chris Lattnere4f21422009-06-30 01:26:17 +00001630 StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
1631 : CurrentBlock(0), CurrentStmt(0), LangOpts(LO) {
Ted Kremenek42a509f2007-08-31 21:30:12 +00001632 for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
1633 unsigned j = 1;
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001634 for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001635 BI != BEnd; ++BI, ++j )
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001636 StmtMap[*BI] = std::make_pair((*I)->getBlockID(),j);
Ted Kremenek42a509f2007-08-31 21:30:12 +00001637 }
1638 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001639
Ted Kremenek42a509f2007-08-31 21:30:12 +00001640 virtual ~StmtPrinterHelper() {}
Mike Stump6d9828c2009-07-17 01:31:16 +00001641
Chris Lattnere4f21422009-06-30 01:26:17 +00001642 const LangOptions &getLangOpts() const { return LangOpts; }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001643 void setBlockID(signed i) { CurrentBlock = i; }
1644 void setStmtID(unsigned i) { CurrentStmt = i; }
Mike Stump6d9828c2009-07-17 01:31:16 +00001645
Ted Kremeneka95d3752008-09-13 05:16:45 +00001646 virtual bool handledStmt(Stmt* Terminator, llvm::raw_ostream& OS) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001647
Ted Kremenek411cdee2008-04-16 21:10:48 +00001648 StmtMapTy::iterator I = StmtMap.find(Terminator);
Ted Kremenek42a509f2007-08-31 21:30:12 +00001649
1650 if (I == StmtMap.end())
1651 return false;
Mike Stump6d9828c2009-07-17 01:31:16 +00001652
1653 if (CurrentBlock >= 0 && I->second.first == (unsigned) CurrentBlock
Ted Kremenek42a509f2007-08-31 21:30:12 +00001654 && I->second.second == CurrentStmt)
1655 return false;
Mike Stump6d9828c2009-07-17 01:31:16 +00001656
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001657 OS << "[B" << I->second.first << "." << I->second.second << "]";
1658 return true;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001659 }
1660};
Chris Lattnere4f21422009-06-30 01:26:17 +00001661} // end anonymous namespace
Ted Kremenek42a509f2007-08-31 21:30:12 +00001662
Chris Lattnere4f21422009-06-30 01:26:17 +00001663
1664namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +00001665class CFGBlockTerminatorPrint
Ted Kremenek6fa9b882008-01-08 18:15:10 +00001666 : public StmtVisitor<CFGBlockTerminatorPrint,void> {
Mike Stump6d9828c2009-07-17 01:31:16 +00001667
Ted Kremeneka95d3752008-09-13 05:16:45 +00001668 llvm::raw_ostream& OS;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001669 StmtPrinterHelper* Helper;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001670 PrintingPolicy Policy;
1671
Ted Kremenek42a509f2007-08-31 21:30:12 +00001672public:
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001673 CFGBlockTerminatorPrint(llvm::raw_ostream& os, StmtPrinterHelper* helper,
Chris Lattnere4f21422009-06-30 01:26:17 +00001674 const PrintingPolicy &Policy)
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001675 : OS(os), Helper(helper), Policy(Policy) {}
Mike Stump6d9828c2009-07-17 01:31:16 +00001676
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001677 void VisitIfStmt(IfStmt* I) {
1678 OS << "if ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001679 I->getCond()->printPretty(OS,Helper,Policy);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001680 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001681
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001682 // Default case.
Mike Stump6d9828c2009-07-17 01:31:16 +00001683 void VisitStmt(Stmt* Terminator) {
1684 Terminator->printPretty(OS, Helper, Policy);
1685 }
1686
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001687 void VisitForStmt(ForStmt* F) {
1688 OS << "for (" ;
Ted Kremenek535bb202007-08-30 21:28:02 +00001689 if (F->getInit()) OS << "...";
1690 OS << "; ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001691 if (Stmt* C = F->getCond()) C->printPretty(OS, Helper, Policy);
Ted Kremenek535bb202007-08-30 21:28:02 +00001692 OS << "; ";
1693 if (F->getInc()) OS << "...";
Ted Kremeneka2925852008-01-30 23:02:42 +00001694 OS << ")";
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001695 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001696
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001697 void VisitWhileStmt(WhileStmt* W) {
1698 OS << "while " ;
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001699 if (Stmt* C = W->getCond()) C->printPretty(OS, Helper, Policy);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001700 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001701
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001702 void VisitDoStmt(DoStmt* D) {
1703 OS << "do ... while ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001704 if (Stmt* C = D->getCond()) C->printPretty(OS, Helper, Policy);
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001705 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001706
Ted Kremenek411cdee2008-04-16 21:10:48 +00001707 void VisitSwitchStmt(SwitchStmt* Terminator) {
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001708 OS << "switch ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001709 Terminator->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001710 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001711
Ted Kremenek805e9a82007-08-31 21:49:40 +00001712 void VisitConditionalOperator(ConditionalOperator* C) {
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001713 C->getCond()->printPretty(OS, Helper, Policy);
Mike Stump6d9828c2009-07-17 01:31:16 +00001714 OS << " ? ... : ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00001715 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001716
Ted Kremenekaeddbf62007-08-31 22:29:13 +00001717 void VisitChooseExpr(ChooseExpr* C) {
1718 OS << "__builtin_choose_expr( ";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001719 C->getCond()->printPretty(OS, Helper, Policy);
Ted Kremeneka2925852008-01-30 23:02:42 +00001720 OS << " )";
Ted Kremenekaeddbf62007-08-31 22:29:13 +00001721 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001722
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001723 void VisitIndirectGotoStmt(IndirectGotoStmt* I) {
1724 OS << "goto *";
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001725 I->getTarget()->printPretty(OS, Helper, Policy);
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001726 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001727
Ted Kremenek805e9a82007-08-31 21:49:40 +00001728 void VisitBinaryOperator(BinaryOperator* B) {
1729 if (!B->isLogicalOp()) {
1730 VisitExpr(B);
1731 return;
1732 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001733
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001734 B->getLHS()->printPretty(OS, Helper, Policy);
Mike Stump6d9828c2009-07-17 01:31:16 +00001735
Ted Kremenek805e9a82007-08-31 21:49:40 +00001736 switch (B->getOpcode()) {
1737 case BinaryOperator::LOr:
Ted Kremeneka2925852008-01-30 23:02:42 +00001738 OS << " || ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00001739 return;
1740 case BinaryOperator::LAnd:
Ted Kremeneka2925852008-01-30 23:02:42 +00001741 OS << " && ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00001742 return;
1743 default:
1744 assert(false && "Invalid logical operator.");
Mike Stump6d9828c2009-07-17 01:31:16 +00001745 }
Ted Kremenek805e9a82007-08-31 21:49:40 +00001746 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001747
Ted Kremenek0b1d9b72007-08-27 21:54:41 +00001748 void VisitExpr(Expr* E) {
Douglas Gregord249e1d1f2009-05-29 20:38:28 +00001749 E->printPretty(OS, Helper, Policy);
Mike Stump6d9828c2009-07-17 01:31:16 +00001750 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001751};
Chris Lattnere4f21422009-06-30 01:26:17 +00001752} // end anonymous namespace
1753
Mike Stump6d9828c2009-07-17 01:31:16 +00001754
Chris Lattnere4f21422009-06-30 01:26:17 +00001755static void print_stmt(llvm::raw_ostream &OS, StmtPrinterHelper* Helper,
1756 Stmt* Terminator) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001757 if (Helper) {
1758 // special printing for statement-expressions.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001759 if (StmtExpr* SE = dyn_cast<StmtExpr>(Terminator)) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001760 CompoundStmt* Sub = SE->getSubStmt();
Mike Stump6d9828c2009-07-17 01:31:16 +00001761
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001762 if (Sub->child_begin() != Sub->child_end()) {
Ted Kremenek60266e82007-08-31 22:47:06 +00001763 OS << "({ ... ; ";
Ted Kremenek7a9d9d72007-10-29 20:41:04 +00001764 Helper->handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
Ted Kremenek60266e82007-08-31 22:47:06 +00001765 OS << " })\n";
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001766 return;
1767 }
1768 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001769
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001770 // special printing for comma expressions.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001771 if (BinaryOperator* B = dyn_cast<BinaryOperator>(Terminator)) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001772 if (B->getOpcode() == BinaryOperator::Comma) {
1773 OS << "... , ";
1774 Helper->handledStmt(B->getRHS(),OS);
1775 OS << '\n';
1776 return;
Mike Stump6d9828c2009-07-17 01:31:16 +00001777 }
1778 }
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001779 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001780
Chris Lattnere4f21422009-06-30 01:26:17 +00001781 Terminator->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts()));
Mike Stump6d9828c2009-07-17 01:31:16 +00001782
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001783 // Expressions need a newline.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001784 if (isa<Expr>(Terminator)) OS << '\n';
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001785}
Mike Stump6d9828c2009-07-17 01:31:16 +00001786
Chris Lattnere4f21422009-06-30 01:26:17 +00001787static void print_block(llvm::raw_ostream& OS, const CFG* cfg,
1788 const CFGBlock& B,
1789 StmtPrinterHelper* Helper, bool print_edges) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001790
Ted Kremenek42a509f2007-08-31 21:30:12 +00001791 if (Helper) Helper->setBlockID(B.getBlockID());
Mike Stump6d9828c2009-07-17 01:31:16 +00001792
Ted Kremenek7dba8602007-08-29 21:56:09 +00001793 // Print the header.
Mike Stump6d9828c2009-07-17 01:31:16 +00001794 OS << "\n [ B" << B.getBlockID();
1795
Ted Kremenek42a509f2007-08-31 21:30:12 +00001796 if (&B == &cfg->getEntry())
1797 OS << " (ENTRY) ]\n";
1798 else if (&B == &cfg->getExit())
1799 OS << " (EXIT) ]\n";
1800 else if (&B == cfg->getIndirectGotoBlock())
Ted Kremenek7dba8602007-08-29 21:56:09 +00001801 OS << " (INDIRECT GOTO DISPATCH) ]\n";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001802 else
1803 OS << " ]\n";
Mike Stump6d9828c2009-07-17 01:31:16 +00001804
Ted Kremenek9cffe732007-08-29 23:20:49 +00001805 // Print the label of this block.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001806 if (Stmt* Terminator = const_cast<Stmt*>(B.getLabel())) {
Ted Kremenek42a509f2007-08-31 21:30:12 +00001807
1808 if (print_edges)
1809 OS << " ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001810
Ted Kremenek411cdee2008-04-16 21:10:48 +00001811 if (LabelStmt* L = dyn_cast<LabelStmt>(Terminator))
Ted Kremenek9cffe732007-08-29 23:20:49 +00001812 OS << L->getName();
Ted Kremenek411cdee2008-04-16 21:10:48 +00001813 else if (CaseStmt* C = dyn_cast<CaseStmt>(Terminator)) {
Ted Kremenek9cffe732007-08-29 23:20:49 +00001814 OS << "case ";
Chris Lattnere4f21422009-06-30 01:26:17 +00001815 C->getLHS()->printPretty(OS, Helper,
1816 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek9cffe732007-08-29 23:20:49 +00001817 if (C->getRHS()) {
1818 OS << " ... ";
Chris Lattnere4f21422009-06-30 01:26:17 +00001819 C->getRHS()->printPretty(OS, Helper,
1820 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek9cffe732007-08-29 23:20:49 +00001821 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001822 } else if (isa<DefaultStmt>(Terminator))
Ted Kremenek9cffe732007-08-29 23:20:49 +00001823 OS << "default";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001824 else
1825 assert(false && "Invalid label statement in CFGBlock.");
Mike Stump6d9828c2009-07-17 01:31:16 +00001826
Ted Kremenek9cffe732007-08-29 23:20:49 +00001827 OS << ":\n";
1828 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001829
Ted Kremenekfddd5182007-08-21 21:42:03 +00001830 // Iterate through the statements in the block and print them.
Ted Kremenekfddd5182007-08-21 21:42:03 +00001831 unsigned j = 1;
Mike Stump6d9828c2009-07-17 01:31:16 +00001832
Ted Kremenek42a509f2007-08-31 21:30:12 +00001833 for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
1834 I != E ; ++I, ++j ) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001835
Ted Kremenek9cffe732007-08-29 23:20:49 +00001836 // Print the statement # in the basic block and the statement itself.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001837 if (print_edges)
1838 OS << " ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001839
Ted Kremeneka95d3752008-09-13 05:16:45 +00001840 OS << llvm::format("%3d", j) << ": ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001841
Ted Kremenek42a509f2007-08-31 21:30:12 +00001842 if (Helper)
1843 Helper->setStmtID(j);
Mike Stump6d9828c2009-07-17 01:31:16 +00001844
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001845 print_stmt(OS,Helper,*I);
Ted Kremenekfddd5182007-08-21 21:42:03 +00001846 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001847
Ted Kremenek9cffe732007-08-29 23:20:49 +00001848 // Print the terminator of this block.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001849 if (B.getTerminator()) {
1850 if (print_edges)
1851 OS << " ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001852
Ted Kremenek9cffe732007-08-29 23:20:49 +00001853 OS << " T: ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001854
Ted Kremenek42a509f2007-08-31 21:30:12 +00001855 if (Helper) Helper->setBlockID(-1);
Mike Stump6d9828c2009-07-17 01:31:16 +00001856
Chris Lattnere4f21422009-06-30 01:26:17 +00001857 CFGBlockTerminatorPrint TPrinter(OS, Helper,
1858 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek42a509f2007-08-31 21:30:12 +00001859 TPrinter.Visit(const_cast<Stmt*>(B.getTerminator()));
Ted Kremeneka2925852008-01-30 23:02:42 +00001860 OS << '\n';
Ted Kremenekfddd5182007-08-21 21:42:03 +00001861 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001862
Ted Kremenek9cffe732007-08-29 23:20:49 +00001863 if (print_edges) {
1864 // Print the predecessors of this block.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001865 OS << " Predecessors (" << B.pred_size() << "):";
Ted Kremenek9cffe732007-08-29 23:20:49 +00001866 unsigned i = 0;
Ted Kremenek9cffe732007-08-29 23:20:49 +00001867
Ted Kremenek42a509f2007-08-31 21:30:12 +00001868 for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
1869 I != E; ++I, ++i) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001870
Ted Kremenek42a509f2007-08-31 21:30:12 +00001871 if (i == 8 || (i-8) == 0)
1872 OS << "\n ";
Mike Stump6d9828c2009-07-17 01:31:16 +00001873
Ted Kremenek9cffe732007-08-29 23:20:49 +00001874 OS << " B" << (*I)->getBlockID();
1875 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001876
Ted Kremenek42a509f2007-08-31 21:30:12 +00001877 OS << '\n';
Mike Stump6d9828c2009-07-17 01:31:16 +00001878
Ted Kremenek42a509f2007-08-31 21:30:12 +00001879 // Print the successors of this block.
1880 OS << " Successors (" << B.succ_size() << "):";
1881 i = 0;
1882
1883 for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
1884 I != E; ++I, ++i) {
Mike Stump6d9828c2009-07-17 01:31:16 +00001885
Ted Kremenek42a509f2007-08-31 21:30:12 +00001886 if (i == 8 || (i-8) % 10 == 0)
1887 OS << "\n ";
1888
Mike Stumpe5af3ce2009-07-20 23:24:15 +00001889 if (*I)
1890 OS << " B" << (*I)->getBlockID();
1891 else
1892 OS << " NULL";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001893 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001894
Ted Kremenek9cffe732007-08-29 23:20:49 +00001895 OS << '\n';
Ted Kremenekfddd5182007-08-21 21:42:03 +00001896 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001897}
Ted Kremenek42a509f2007-08-31 21:30:12 +00001898
Ted Kremenek42a509f2007-08-31 21:30:12 +00001899
1900/// dump - A simple pretty printer of a CFG that outputs to stderr.
Chris Lattnere4f21422009-06-30 01:26:17 +00001901void CFG::dump(const LangOptions &LO) const { print(llvm::errs(), LO); }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001902
1903/// print - A simple pretty printer of a CFG that outputs to an ostream.
Chris Lattnere4f21422009-06-30 01:26:17 +00001904void CFG::print(llvm::raw_ostream &OS, const LangOptions &LO) const {
1905 StmtPrinterHelper Helper(this, LO);
Mike Stump6d9828c2009-07-17 01:31:16 +00001906
Ted Kremenek42a509f2007-08-31 21:30:12 +00001907 // Print the entry block.
1908 print_block(OS, this, getEntry(), &Helper, true);
Mike Stump6d9828c2009-07-17 01:31:16 +00001909
Ted Kremenek42a509f2007-08-31 21:30:12 +00001910 // Iterate through the CFGBlocks and print them one by one.
1911 for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
1912 // Skip the entry block, because we already printed it.
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001913 if (&(**I) == &getEntry() || &(**I) == &getExit())
Ted Kremenek42a509f2007-08-31 21:30:12 +00001914 continue;
Mike Stump6d9828c2009-07-17 01:31:16 +00001915
Ted Kremenekee82d9b2009-10-12 20:55:07 +00001916 print_block(OS, this, **I, &Helper, true);
Ted Kremenek42a509f2007-08-31 21:30:12 +00001917 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001918
Ted Kremenek42a509f2007-08-31 21:30:12 +00001919 // Print the exit block.
1920 print_block(OS, this, getExit(), &Helper, true);
Ted Kremenekd0172432008-11-24 20:50:24 +00001921 OS.flush();
Mike Stump6d9828c2009-07-17 01:31:16 +00001922}
Ted Kremenek42a509f2007-08-31 21:30:12 +00001923
1924/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
Chris Lattnere4f21422009-06-30 01:26:17 +00001925void CFGBlock::dump(const CFG* cfg, const LangOptions &LO) const {
1926 print(llvm::errs(), cfg, LO);
1927}
Ted Kremenek42a509f2007-08-31 21:30:12 +00001928
1929/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
1930/// Generally this will only be called from CFG::print.
Chris Lattnere4f21422009-06-30 01:26:17 +00001931void CFGBlock::print(llvm::raw_ostream& OS, const CFG* cfg,
1932 const LangOptions &LO) const {
1933 StmtPrinterHelper Helper(cfg, LO);
Ted Kremenek42a509f2007-08-31 21:30:12 +00001934 print_block(OS, cfg, *this, &Helper, true);
Ted Kremenek026473c2007-08-23 16:51:22 +00001935}
Ted Kremenek7dba8602007-08-29 21:56:09 +00001936
Ted Kremeneka2925852008-01-30 23:02:42 +00001937/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
Chris Lattnere4f21422009-06-30 01:26:17 +00001938void CFGBlock::printTerminator(llvm::raw_ostream &OS,
Mike Stump6d9828c2009-07-17 01:31:16 +00001939 const LangOptions &LO) const {
Chris Lattnere4f21422009-06-30 01:26:17 +00001940 CFGBlockTerminatorPrint TPrinter(OS, NULL, PrintingPolicy(LO));
Ted Kremeneka2925852008-01-30 23:02:42 +00001941 TPrinter.Visit(const_cast<Stmt*>(getTerminator()));
1942}
1943
Ted Kremenek390e48b2008-11-12 21:11:49 +00001944Stmt* CFGBlock::getTerminatorCondition() {
Mike Stump6d9828c2009-07-17 01:31:16 +00001945
Ted Kremenek411cdee2008-04-16 21:10:48 +00001946 if (!Terminator)
1947 return NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001948
Ted Kremenek411cdee2008-04-16 21:10:48 +00001949 Expr* E = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00001950
Ted Kremenek411cdee2008-04-16 21:10:48 +00001951 switch (Terminator->getStmtClass()) {
1952 default:
1953 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001954
Ted Kremenek411cdee2008-04-16 21:10:48 +00001955 case Stmt::ForStmtClass:
1956 E = cast<ForStmt>(Terminator)->getCond();
1957 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001958
Ted Kremenek411cdee2008-04-16 21:10:48 +00001959 case Stmt::WhileStmtClass:
1960 E = cast<WhileStmt>(Terminator)->getCond();
1961 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001962
Ted Kremenek411cdee2008-04-16 21:10:48 +00001963 case Stmt::DoStmtClass:
1964 E = cast<DoStmt>(Terminator)->getCond();
1965 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001966
Ted Kremenek411cdee2008-04-16 21:10:48 +00001967 case Stmt::IfStmtClass:
1968 E = cast<IfStmt>(Terminator)->getCond();
1969 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001970
Ted Kremenek411cdee2008-04-16 21:10:48 +00001971 case Stmt::ChooseExprClass:
1972 E = cast<ChooseExpr>(Terminator)->getCond();
1973 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001974
Ted Kremenek411cdee2008-04-16 21:10:48 +00001975 case Stmt::IndirectGotoStmtClass:
1976 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
1977 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001978
Ted Kremenek411cdee2008-04-16 21:10:48 +00001979 case Stmt::SwitchStmtClass:
1980 E = cast<SwitchStmt>(Terminator)->getCond();
1981 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001982
Ted Kremenek411cdee2008-04-16 21:10:48 +00001983 case Stmt::ConditionalOperatorClass:
1984 E = cast<ConditionalOperator>(Terminator)->getCond();
1985 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001986
Ted Kremenek411cdee2008-04-16 21:10:48 +00001987 case Stmt::BinaryOperatorClass: // '&&' and '||'
1988 E = cast<BinaryOperator>(Terminator)->getLHS();
Ted Kremenek390e48b2008-11-12 21:11:49 +00001989 break;
Mike Stump6d9828c2009-07-17 01:31:16 +00001990
Ted Kremenek390e48b2008-11-12 21:11:49 +00001991 case Stmt::ObjCForCollectionStmtClass:
Mike Stump6d9828c2009-07-17 01:31:16 +00001992 return Terminator;
Ted Kremenek411cdee2008-04-16 21:10:48 +00001993 }
Mike Stump6d9828c2009-07-17 01:31:16 +00001994
Ted Kremenek411cdee2008-04-16 21:10:48 +00001995 return E ? E->IgnoreParens() : NULL;
1996}
1997
Ted Kremenek9c2535a2008-05-16 16:06:00 +00001998bool CFGBlock::hasBinaryBranchTerminator() const {
Mike Stump6d9828c2009-07-17 01:31:16 +00001999
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002000 if (!Terminator)
2001 return false;
Mike Stump6d9828c2009-07-17 01:31:16 +00002002
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002003 Expr* E = NULL;
Mike Stump6d9828c2009-07-17 01:31:16 +00002004
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002005 switch (Terminator->getStmtClass()) {
2006 default:
2007 return false;
Mike Stump6d9828c2009-07-17 01:31:16 +00002008
2009 case Stmt::ForStmtClass:
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002010 case Stmt::WhileStmtClass:
2011 case Stmt::DoStmtClass:
2012 case Stmt::IfStmtClass:
2013 case Stmt::ChooseExprClass:
2014 case Stmt::ConditionalOperatorClass:
2015 case Stmt::BinaryOperatorClass:
Mike Stump6d9828c2009-07-17 01:31:16 +00002016 return true;
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002017 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002018
Ted Kremenek9c2535a2008-05-16 16:06:00 +00002019 return E ? E->IgnoreParens() : NULL;
2020}
2021
Ted Kremeneka2925852008-01-30 23:02:42 +00002022
Ted Kremenek7dba8602007-08-29 21:56:09 +00002023//===----------------------------------------------------------------------===//
2024// CFG Graphviz Visualization
2025//===----------------------------------------------------------------------===//
2026
Ted Kremenek42a509f2007-08-31 21:30:12 +00002027
2028#ifndef NDEBUG
Mike Stump6d9828c2009-07-17 01:31:16 +00002029static StmtPrinterHelper* GraphHelper;
Ted Kremenek42a509f2007-08-31 21:30:12 +00002030#endif
2031
Chris Lattnere4f21422009-06-30 01:26:17 +00002032void CFG::viewCFG(const LangOptions &LO) const {
Ted Kremenek42a509f2007-08-31 21:30:12 +00002033#ifndef NDEBUG
Chris Lattnere4f21422009-06-30 01:26:17 +00002034 StmtPrinterHelper H(this, LO);
Ted Kremenek42a509f2007-08-31 21:30:12 +00002035 GraphHelper = &H;
2036 llvm::ViewGraph(this,"CFG");
2037 GraphHelper = NULL;
Ted Kremenek42a509f2007-08-31 21:30:12 +00002038#endif
2039}
2040
Ted Kremenek7dba8602007-08-29 21:56:09 +00002041namespace llvm {
2042template<>
2043struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
Tobias Grosser006b0eb2009-11-30 14:16:05 +00002044
2045 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
2046
2047 static std::string getNodeLabel(const CFGBlock* Node, const CFG* Graph) {
Ted Kremenek7dba8602007-08-29 21:56:09 +00002048
Hartmut Kaiserbd250b42007-09-16 00:28:28 +00002049#ifndef NDEBUG
Ted Kremeneka95d3752008-09-13 05:16:45 +00002050 std::string OutSStr;
2051 llvm::raw_string_ostream Out(OutSStr);
Ted Kremenek42a509f2007-08-31 21:30:12 +00002052 print_block(Out,Graph, *Node, GraphHelper, false);
Ted Kremeneka95d3752008-09-13 05:16:45 +00002053 std::string& OutStr = Out.str();
Ted Kremenek7dba8602007-08-29 21:56:09 +00002054
2055 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
2056
2057 // Process string output to make it nicer...
2058 for (unsigned i = 0; i != OutStr.length(); ++i)
2059 if (OutStr[i] == '\n') { // Left justify
2060 OutStr[i] = '\\';
2061 OutStr.insert(OutStr.begin()+i+1, 'l');
2062 }
Mike Stump6d9828c2009-07-17 01:31:16 +00002063
Ted Kremenek7dba8602007-08-29 21:56:09 +00002064 return OutStr;
Hartmut Kaiserbd250b42007-09-16 00:28:28 +00002065#else
2066 return "";
2067#endif
Ted Kremenek7dba8602007-08-29 21:56:09 +00002068 }
2069};
2070} // end namespace llvm