blob: e08a00b8a5e135668cb4c32688b7acd682585d66 [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
15#include "clang/AST/CFG.h"
Ted Kremenekc310e932007-08-21 22:06:14 +000016#include "clang/AST/StmtVisitor.h"
Ted Kremenek42a509f2007-08-31 21:30:12 +000017#include "clang/AST/PrettyPrinter.h"
Ted Kremenek0cebe3e2007-08-21 23:26:17 +000018#include "llvm/ADT/DenseMap.h"
Ted Kremenek19bb3562007-08-28 19:26:49 +000019#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek7dba8602007-08-29 21:56:09 +000020#include "llvm/Support/GraphWriter.h"
Ted Kremenek7e3a89d2007-12-17 19:35:20 +000021#include "llvm/Support/Streams.h"
Ted Kremenek6fa9b882008-01-08 18:15:10 +000022#include "llvm/Support/Compiler.h"
Ted Kremenek274f4332008-04-28 18:00:46 +000023#include <llvm/Support/Allocator.h>
Ted Kremeneka95d3752008-09-13 05:16:45 +000024#include <llvm/Support/Format.h>
Ted Kremenekfddd5182007-08-21 21:42:03 +000025#include <iomanip>
26#include <algorithm>
Ted Kremenek7dba8602007-08-29 21:56:09 +000027#include <sstream>
Ted Kremenek83c01da2008-01-11 00:40:29 +000028
Ted Kremenekfddd5182007-08-21 21:42:03 +000029using namespace clang;
30
31namespace {
32
Ted Kremenekbefef2f2007-08-23 21:26:19 +000033// SaveAndRestore - A utility class that uses RIIA to save and restore
34// the value of a variable.
35template<typename T>
Ted Kremenek6fa9b882008-01-08 18:15:10 +000036struct VISIBILITY_HIDDEN SaveAndRestore {
Ted Kremenekbefef2f2007-08-23 21:26:19 +000037 SaveAndRestore(T& x) : X(x), old_value(x) {}
38 ~SaveAndRestore() { X = old_value; }
Ted Kremenekb6f7b722007-08-30 18:13:31 +000039 T get() { return old_value; }
40
Ted Kremenekbefef2f2007-08-23 21:26:19 +000041 T& X;
42 T old_value;
43};
Ted Kremenekfddd5182007-08-21 21:42:03 +000044
Douglas Gregor4afa39d2009-01-20 01:17:11 +000045static SourceLocation GetEndLoc(Decl* D) {
Ted Kremenekc7eb9032008-08-06 23:20:50 +000046 if (VarDecl* VD = dyn_cast<VarDecl>(D))
47 if (Expr* Ex = VD->getInit())
48 return Ex->getSourceRange().getEnd();
49
50 return D->getLocation();
51}
52
Ted Kremeneka34ea072008-08-04 22:51:42 +000053/// CFGBuilder - This class implements CFG construction from an AST.
Ted Kremenekfddd5182007-08-21 21:42:03 +000054/// The builder is stateful: an instance of the builder should be used to only
55/// construct a single CFG.
56///
57/// Example usage:
58///
59/// CFGBuilder builder;
60/// CFG* cfg = builder.BuildAST(stmt1);
61///
Ted Kremenekc310e932007-08-21 22:06:14 +000062/// CFG construction is done via a recursive walk of an AST.
63/// We actually parse the AST in reverse order so that the successor
64/// of a basic block is constructed prior to its predecessor. This
65/// allows us to nicely capture implicit fall-throughs without extra
66/// basic blocks.
67///
Ted Kremenek6fa9b882008-01-08 18:15:10 +000068class VISIBILITY_HIDDEN CFGBuilder : public StmtVisitor<CFGBuilder,CFGBlock*> {
Ted Kremenekfddd5182007-08-21 21:42:03 +000069 CFG* cfg;
70 CFGBlock* Block;
Ted Kremenekfddd5182007-08-21 21:42:03 +000071 CFGBlock* Succ;
Ted Kremenekbf15b272007-08-22 21:36:54 +000072 CFGBlock* ContinueTargetBlock;
Ted Kremenek8a294712007-08-22 21:51:58 +000073 CFGBlock* BreakTargetBlock;
Ted Kremenekb5c13b02007-08-23 18:43:24 +000074 CFGBlock* SwitchTerminatedBlock;
Ted Kremenekeef5a9a2008-02-13 22:05:39 +000075 CFGBlock* DefaultCaseBlock;
Ted Kremenekfddd5182007-08-21 21:42:03 +000076
Ted Kremenek19bb3562007-08-28 19:26:49 +000077 // LabelMap records the mapping from Label expressions to their blocks.
Ted Kremenek0cebe3e2007-08-21 23:26:17 +000078 typedef llvm::DenseMap<LabelStmt*,CFGBlock*> LabelMapTy;
79 LabelMapTy LabelMap;
80
Ted Kremenek19bb3562007-08-28 19:26:49 +000081 // A list of blocks that end with a "goto" that must be backpatched to
82 // their resolved targets upon completion of CFG construction.
Ted Kremenek4a2b8a12007-08-22 15:40:58 +000083 typedef std::vector<CFGBlock*> BackpatchBlocksTy;
Ted Kremenek0cebe3e2007-08-21 23:26:17 +000084 BackpatchBlocksTy BackpatchBlocks;
85
Ted Kremenek19bb3562007-08-28 19:26:49 +000086 // A list of labels whose address has been taken (for indirect gotos).
87 typedef llvm::SmallPtrSet<LabelStmt*,5> LabelSetTy;
88 LabelSetTy AddressTakenLabels;
89
Ted Kremenekfddd5182007-08-21 21:42:03 +000090public:
Ted Kremenek026473c2007-08-23 16:51:22 +000091 explicit CFGBuilder() : cfg(NULL), Block(NULL), Succ(NULL),
Ted Kremenek8a294712007-08-22 21:51:58 +000092 ContinueTargetBlock(NULL), BreakTargetBlock(NULL),
Ted Kremenekeef5a9a2008-02-13 22:05:39 +000093 SwitchTerminatedBlock(NULL), DefaultCaseBlock(NULL) {
Ted Kremenekfddd5182007-08-21 21:42:03 +000094 // Create an empty CFG.
95 cfg = new CFG();
96 }
97
98 ~CFGBuilder() { delete cfg; }
Ted Kremenekfddd5182007-08-21 21:42:03 +000099
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000100 // buildCFG - Used by external clients to construct the CFG.
101 CFG* buildCFG(Stmt* Statement);
Ted Kremenekc310e932007-08-21 22:06:14 +0000102
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000103 // Visitors to walk an AST and construct the CFG. Called by
104 // buildCFG. Do not call directly!
Ted Kremeneke8ee26b2007-08-22 18:22:34 +0000105
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000106 CFGBlock* VisitBreakStmt(BreakStmt* B);
Ted Kremenek411cdee2008-04-16 21:10:48 +0000107 CFGBlock* VisitCaseStmt(CaseStmt* Terminator);
Ted Kremenek514de5a2008-11-11 17:10:00 +0000108 CFGBlock* VisitCompoundStmt(CompoundStmt* C);
109 CFGBlock* VisitContinueStmt(ContinueStmt* C);
Ted Kremenek295222c2008-02-13 21:46:34 +0000110 CFGBlock* VisitDefaultStmt(DefaultStmt* D);
Ted Kremenek514de5a2008-11-11 17:10:00 +0000111 CFGBlock* VisitDoStmt(DoStmt* D);
112 CFGBlock* VisitForStmt(ForStmt* F);
113 CFGBlock* VisitGotoStmt(GotoStmt* G);
114 CFGBlock* VisitIfStmt(IfStmt* I);
Ted Kremenek19bb3562007-08-28 19:26:49 +0000115 CFGBlock* VisitIndirectGotoStmt(IndirectGotoStmt* I);
Ted Kremenek514de5a2008-11-11 17:10:00 +0000116 CFGBlock* VisitLabelStmt(LabelStmt* L);
117 CFGBlock* VisitNullStmt(NullStmt* Statement);
118 CFGBlock* VisitObjCForCollectionStmt(ObjCForCollectionStmt* S);
119 CFGBlock* VisitReturnStmt(ReturnStmt* R);
120 CFGBlock* VisitStmt(Stmt* Statement);
121 CFGBlock* VisitSwitchStmt(SwitchStmt* Terminator);
122 CFGBlock* VisitWhileStmt(WhileStmt* W);
Ted Kremenekfddd5182007-08-21 21:42:03 +0000123
Ted Kremenek4102af92008-03-13 03:04:22 +0000124 // FIXME: Add support for ObjC-specific control-flow structures.
125
Ted Kremenek274f4332008-04-28 18:00:46 +0000126 // NYS == Not Yet Supported
127 CFGBlock* NYS() {
Ted Kremenek4102af92008-03-13 03:04:22 +0000128 badCFG = true;
129 return Block;
130 }
131
Ted Kremenek274f4332008-04-28 18:00:46 +0000132 CFGBlock* VisitObjCAtTryStmt(ObjCAtTryStmt* S) { return NYS(); }
133 CFGBlock* VisitObjCAtCatchStmt(ObjCAtCatchStmt* S) { return NYS(); }
134 CFGBlock* VisitObjCAtFinallyStmt(ObjCAtFinallyStmt* S) { return NYS(); }
Ted Kremenek2fda5042008-12-09 20:20:09 +0000135
136 // FIXME: This is not completely supported. We basically @throw like
137 // a 'return'.
138 CFGBlock* VisitObjCAtThrowStmt(ObjCAtThrowStmt* S);
Ted Kremenek274f4332008-04-28 18:00:46 +0000139
140 CFGBlock* VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt* S){
141 return NYS();
Ted Kremenek4102af92008-03-13 03:04:22 +0000142 }
143
Ted Kremenek00c0a302008-09-26 18:17:07 +0000144 // Blocks.
145 CFGBlock* VisitBlockExpr(BlockExpr* E) { return NYS(); }
146 CFGBlock* VisitBlockDeclRefExpr(BlockDeclRefExpr* E) { return NYS(); }
147
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000148private:
149 CFGBlock* createBlock(bool add_successor = true);
Ted Kremenek411cdee2008-04-16 21:10:48 +0000150 CFGBlock* addStmt(Stmt* Terminator);
151 CFGBlock* WalkAST(Stmt* Terminator, bool AlwaysAddStmt);
152 CFGBlock* WalkAST_VisitChildren(Stmt* Terminator);
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000153 CFGBlock* WalkAST_VisitDeclSubExpr(Decl* D);
Ted Kremenek411cdee2008-04-16 21:10:48 +0000154 CFGBlock* WalkAST_VisitStmtExpr(StmtExpr* Terminator);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000155 void FinishBlock(CFGBlock* B);
Ted Kremeneke8ee26b2007-08-22 18:22:34 +0000156
Ted Kremenek4102af92008-03-13 03:04:22 +0000157 bool badCFG;
Ted Kremenekfddd5182007-08-21 21:42:03 +0000158};
Ted Kremenek610a09e2008-09-26 22:58:57 +0000159
Douglas Gregor898574e2008-12-05 23:32:09 +0000160// FIXME: Add support for dependent-sized array types in C++?
161// Does it even make sense to build a CFG for an uninstantiated template?
Ted Kremenek610a09e2008-09-26 22:58:57 +0000162static VariableArrayType* FindVA(Type* t) {
163 while (ArrayType* vt = dyn_cast<ArrayType>(t)) {
164 if (VariableArrayType* vat = dyn_cast<VariableArrayType>(vt))
165 if (vat->getSizeExpr())
166 return vat;
167
168 t = vt->getElementType().getTypePtr();
169 }
170
171 return 0;
172}
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000173
174/// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can
175/// represent an arbitrary statement. Examples include a single expression
176/// or a function body (compound statement). The ownership of the returned
177/// CFG is transferred to the caller. If CFG construction fails, this method
178/// returns NULL.
179CFG* CFGBuilder::buildCFG(Stmt* Statement) {
Ted Kremenek19bb3562007-08-28 19:26:49 +0000180 assert (cfg);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000181 if (!Statement) return NULL;
182
Ted Kremenek4102af92008-03-13 03:04:22 +0000183 badCFG = false;
184
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000185 // Create an empty block that will serve as the exit block for the CFG.
186 // Since this is the first block added to the CFG, it will be implicitly
187 // registered as the exit block.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000188 Succ = createBlock();
189 assert (Succ == &cfg->getExit());
190 Block = NULL; // the EXIT block is empty. Create all other blocks lazily.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000191
192 // Visit the statements and create the CFG.
Ted Kremenek0d99ecf2008-02-27 17:33:02 +0000193 CFGBlock* B = Visit(Statement);
194 if (!B) B = Succ;
195
196 if (B) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000197 // Finalize the last constructed block. This usually involves
198 // reversing the order of the statements in the block.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000199 if (Block) FinishBlock(B);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000200
201 // Backpatch the gotos whose label -> block mappings we didn't know
202 // when we encountered them.
203 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
204 E = BackpatchBlocks.end(); I != E; ++I ) {
205
206 CFGBlock* B = *I;
207 GotoStmt* G = cast<GotoStmt>(B->getTerminator());
208 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
209
210 // If there is no target for the goto, then we are looking at an
211 // incomplete AST. Handle this by not registering a successor.
212 if (LI == LabelMap.end()) continue;
213
214 B->addSuccessor(LI->second);
Ted Kremenek19bb3562007-08-28 19:26:49 +0000215 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000216
Ted Kremenek19bb3562007-08-28 19:26:49 +0000217 // Add successors to the Indirect Goto Dispatch block (if we have one).
218 if (CFGBlock* B = cfg->getIndirectGotoBlock())
219 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
220 E = AddressTakenLabels.end(); I != E; ++I ) {
221
222 // Lookup the target block.
223 LabelMapTy::iterator LI = LabelMap.find(*I);
224
225 // If there is no target block that contains label, then we are looking
226 // at an incomplete AST. Handle this by not registering a successor.
227 if (LI == LabelMap.end()) continue;
228
229 B->addSuccessor(LI->second);
230 }
Ted Kremenek322f58d2007-09-26 21:23:31 +0000231
Ted Kremenek94b33162007-09-17 16:18:02 +0000232 Succ = B;
Ted Kremenek322f58d2007-09-26 21:23:31 +0000233 }
234
235 // Create an empty entry block that has no predecessors.
236 cfg->setEntry(createBlock());
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000237
Ted Kremenek4102af92008-03-13 03:04:22 +0000238 if (badCFG) {
239 delete cfg;
240 cfg = NULL;
241 return NULL;
242 }
243
Ted Kremenek322f58d2007-09-26 21:23:31 +0000244 // NULL out cfg so that repeated calls to the builder will fail and that
245 // the ownership of the constructed CFG is passed to the caller.
246 CFG* t = cfg;
247 cfg = NULL;
248 return t;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000249}
250
251/// createBlock - Used to lazily create blocks that are connected
252/// to the current (global) succcessor.
253CFGBlock* CFGBuilder::createBlock(bool add_successor) {
Ted Kremenek94382522007-09-05 20:02:05 +0000254 CFGBlock* B = cfg->createBlock();
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000255 if (add_successor && Succ) B->addSuccessor(Succ);
256 return B;
257}
258
259/// FinishBlock - When the last statement has been added to the block,
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000260/// we must reverse the statements because they have been inserted
261/// in reverse order.
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000262void CFGBuilder::FinishBlock(CFGBlock* B) {
263 assert (B);
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000264 B->reverseStmts();
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000265}
266
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000267/// addStmt - Used to add statements/expressions to the current CFGBlock
268/// "Block". This method calls WalkAST on the passed statement to see if it
269/// contains any short-circuit expressions. If so, it recursively creates
270/// the necessary blocks for such expressions. It returns the "topmost" block
271/// of the created blocks, or the original value of "Block" when this method
272/// was called if no additional blocks are created.
Ted Kremenek411cdee2008-04-16 21:10:48 +0000273CFGBlock* CFGBuilder::addStmt(Stmt* Terminator) {
Ted Kremenekaf603f72007-08-30 18:39:40 +0000274 if (!Block) Block = createBlock();
Ted Kremenek411cdee2008-04-16 21:10:48 +0000275 return WalkAST(Terminator,true);
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000276}
277
278/// WalkAST - Used by addStmt to walk the subtree of a statement and
Ted Kremenekb49e1aa2007-08-28 18:14:37 +0000279/// add extra blocks for ternary operators, &&, and ||. We also
280/// process "," and DeclStmts (which may contain nested control-flow).
Ted Kremenek411cdee2008-04-16 21:10:48 +0000281CFGBlock* CFGBuilder::WalkAST(Stmt* Terminator, bool AlwaysAddStmt = false) {
282 switch (Terminator->getStmtClass()) {
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000283 case Stmt::ConditionalOperatorClass: {
Ted Kremenek411cdee2008-04-16 21:10:48 +0000284 ConditionalOperator* C = cast<ConditionalOperator>(Terminator);
Ted Kremenekecc04c92007-11-26 18:20:26 +0000285
286 // Create the confluence block that will "merge" the results
287 // of the ternary expression.
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000288 CFGBlock* ConfluenceBlock = (Block) ? Block : createBlock();
289 ConfluenceBlock->appendStmt(C);
Ted Kremeneka651e0e2007-12-13 22:44:18 +0000290 FinishBlock(ConfluenceBlock);
Ted Kremenekecc04c92007-11-26 18:20:26 +0000291
292 // Create a block for the LHS expression if there is an LHS expression.
293 // A GCC extension allows LHS to be NULL, causing the condition to
294 // be the value that is returned instead.
295 // e.g: x ?: y is shorthand for: x ? x : y;
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000296 Succ = ConfluenceBlock;
297 Block = NULL;
Ted Kremenekecc04c92007-11-26 18:20:26 +0000298 CFGBlock* LHSBlock = NULL;
299 if (C->getLHS()) {
300 LHSBlock = Visit(C->getLHS());
301 FinishBlock(LHSBlock);
302 Block = NULL;
303 }
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000304
Ted Kremenekecc04c92007-11-26 18:20:26 +0000305 // Create the block for the RHS expression.
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000306 Succ = ConfluenceBlock;
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000307 CFGBlock* RHSBlock = Visit(C->getRHS());
Ted Kremenekf50ec102007-09-11 21:29:43 +0000308 FinishBlock(RHSBlock);
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000309
Ted Kremenekecc04c92007-11-26 18:20:26 +0000310 // Create the block that will contain the condition.
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000311 Block = createBlock(false);
Ted Kremenekecc04c92007-11-26 18:20:26 +0000312
313 if (LHSBlock)
314 Block->addSuccessor(LHSBlock);
315 else {
316 // If we have no LHS expression, add the ConfluenceBlock as a direct
317 // successor for the block containing the condition. Moreover,
318 // we need to reverse the order of the predecessors in the
319 // ConfluenceBlock because the RHSBlock will have been added to
320 // the succcessors already, and we want the first predecessor to the
321 // the block containing the expression for the case when the ternary
322 // expression evaluates to true.
323 Block->addSuccessor(ConfluenceBlock);
324 assert (ConfluenceBlock->pred_size() == 2);
325 std::reverse(ConfluenceBlock->pred_begin(),
326 ConfluenceBlock->pred_end());
327 }
328
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000329 Block->addSuccessor(RHSBlock);
Ted Kremenekecc04c92007-11-26 18:20:26 +0000330
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000331 Block->setTerminator(C);
332 return addStmt(C->getCond());
333 }
Ted Kremenek49a436d2007-08-31 17:03:41 +0000334
335 case Stmt::ChooseExprClass: {
Ted Kremenek411cdee2008-04-16 21:10:48 +0000336 ChooseExpr* C = cast<ChooseExpr>(Terminator);
Ted Kremenek49a436d2007-08-31 17:03:41 +0000337
338 CFGBlock* ConfluenceBlock = (Block) ? Block : createBlock();
339 ConfluenceBlock->appendStmt(C);
340 FinishBlock(ConfluenceBlock);
341
342 Succ = ConfluenceBlock;
343 Block = NULL;
344 CFGBlock* LHSBlock = Visit(C->getLHS());
Ted Kremenekf50ec102007-09-11 21:29:43 +0000345 FinishBlock(LHSBlock);
346
Ted Kremenek49a436d2007-08-31 17:03:41 +0000347 Succ = ConfluenceBlock;
348 Block = NULL;
349 CFGBlock* RHSBlock = Visit(C->getRHS());
Ted Kremenekf50ec102007-09-11 21:29:43 +0000350 FinishBlock(RHSBlock);
Ted Kremenek49a436d2007-08-31 17:03:41 +0000351
352 Block = createBlock(false);
353 Block->addSuccessor(LHSBlock);
354 Block->addSuccessor(RHSBlock);
355 Block->setTerminator(C);
356 return addStmt(C->getCond());
357 }
Ted Kremenek7926f7c2007-08-28 16:18:58 +0000358
Ted Kremenek8f54c1f2007-10-30 21:48:34 +0000359 case Stmt::DeclStmtClass: {
Ted Kremenek53061c82008-10-06 20:56:19 +0000360 DeclStmt *DS = cast<DeclStmt>(Terminator);
361 if (DS->hasSolitaryDecl()) {
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000362 Block->appendStmt(Terminator);
Ted Kremenek53061c82008-10-06 20:56:19 +0000363 return WalkAST_VisitDeclSubExpr(DS->getSolitaryDecl());
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000364 }
365 else {
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000366 typedef llvm::SmallVector<Decl*,10> BufTy;
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000367 BufTy Buf;
368 CFGBlock* B = 0;
Ted Kremenek53061c82008-10-06 20:56:19 +0000369
370 // FIXME: Add a reverse iterator for DeclStmt to avoid this
371 // extra copy.
372 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
373 DI != DE; ++DI)
374 Buf.push_back(*DI);
375
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000376 for (BufTy::reverse_iterator I=Buf.rbegin(), E=Buf.rend(); I!=E; ++I) {
Ted Kremenek8ffb1592008-10-07 23:09:49 +0000377 // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
378 unsigned A = llvm::AlignOf<DeclStmt>::Alignment < 8
379 ? 8 : llvm::AlignOf<DeclStmt>::Alignment;
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000380
Ted Kremenek8ffb1592008-10-07 23:09:49 +0000381 // Allocate the DeclStmt using the BumpPtrAllocator. It will
Douglas Gregor9653db72009-02-13 19:06:18 +0000382 // get automatically freed with the CFG.
383 DeclGroupRef DG(*I);
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000384 Decl* D = *I;
Ted Kremenek8ffb1592008-10-07 23:09:49 +0000385 void* Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
386
387 DeclStmt* DS = new (Mem) DeclStmt(DG, D->getLocation(),
388 GetEndLoc(D));
389
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000390 // Append the fake DeclStmt to block.
Ted Kremenek8ffb1592008-10-07 23:09:49 +0000391 Block->appendStmt(DS);
392 B = WalkAST_VisitDeclSubExpr(D);
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000393 }
394 return B;
395 }
Ted Kremenek8f54c1f2007-10-30 21:48:34 +0000396 }
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000397
Ted Kremenek19bb3562007-08-28 19:26:49 +0000398 case Stmt::AddrLabelExprClass: {
Ted Kremenek411cdee2008-04-16 21:10:48 +0000399 AddrLabelExpr* A = cast<AddrLabelExpr>(Terminator);
Ted Kremenek19bb3562007-08-28 19:26:49 +0000400 AddressTakenLabels.insert(A->getLabel());
401
Ted Kremenek411cdee2008-04-16 21:10:48 +0000402 if (AlwaysAddStmt) Block->appendStmt(Terminator);
Ted Kremenek19bb3562007-08-28 19:26:49 +0000403 return Block;
404 }
Ted Kremenekf50ec102007-09-11 21:29:43 +0000405
Ted Kremenek15c27a82007-08-28 18:30:10 +0000406 case Stmt::StmtExprClass:
Ted Kremenek411cdee2008-04-16 21:10:48 +0000407 return WalkAST_VisitStmtExpr(cast<StmtExpr>(Terminator));
Ted Kremenekb49e1aa2007-08-28 18:14:37 +0000408
Sebastian Redl05189992008-11-11 17:56:53 +0000409 case Stmt::SizeOfAlignOfExprClass: {
410 SizeOfAlignOfExpr* E = cast<SizeOfAlignOfExpr>(Terminator);
Ted Kremenek610a09e2008-09-26 22:58:57 +0000411
412 // VLA types have expressions that must be evaluated.
Sebastian Redl05189992008-11-11 17:56:53 +0000413 if (E->isArgumentType()) {
414 for (VariableArrayType* VA = FindVA(E->getArgumentType().getTypePtr());
415 VA != 0; VA = FindVA(VA->getElementType().getTypePtr()))
416 addStmt(VA->getSizeExpr());
417 }
418 // Expressions in sizeof/alignof are not evaluated and thus have no
419 // control flow.
420 else
421 Block->appendStmt(Terminator);
Ted Kremenek610a09e2008-09-26 22:58:57 +0000422
423 return Block;
424 }
425
Ted Kremenek0b1d9b72007-08-27 21:54:41 +0000426 case Stmt::BinaryOperatorClass: {
Ted Kremenek411cdee2008-04-16 21:10:48 +0000427 BinaryOperator* B = cast<BinaryOperator>(Terminator);
Ted Kremenek0b1d9b72007-08-27 21:54:41 +0000428
429 if (B->isLogicalOp()) { // && or ||
430 CFGBlock* ConfluenceBlock = (Block) ? Block : createBlock();
431 ConfluenceBlock->appendStmt(B);
432 FinishBlock(ConfluenceBlock);
433
434 // create the block evaluating the LHS
435 CFGBlock* LHSBlock = createBlock(false);
Ted Kremenekafe54332007-12-21 19:49:00 +0000436 LHSBlock->setTerminator(B);
Ted Kremenek0b1d9b72007-08-27 21:54:41 +0000437
438 // create the block evaluating the RHS
439 Succ = ConfluenceBlock;
440 Block = NULL;
441 CFGBlock* RHSBlock = Visit(B->getRHS());
Zhongxing Xu924d9a82008-10-04 05:48:38 +0000442 FinishBlock(RHSBlock);
Ted Kremenekafe54332007-12-21 19:49:00 +0000443
444 // Now link the LHSBlock with RHSBlock.
445 if (B->getOpcode() == BinaryOperator::LOr) {
446 LHSBlock->addSuccessor(ConfluenceBlock);
447 LHSBlock->addSuccessor(RHSBlock);
448 }
449 else {
450 assert (B->getOpcode() == BinaryOperator::LAnd);
451 LHSBlock->addSuccessor(RHSBlock);
452 LHSBlock->addSuccessor(ConfluenceBlock);
453 }
Ted Kremenek0b1d9b72007-08-27 21:54:41 +0000454
455 // Generate the blocks for evaluating the LHS.
456 Block = LHSBlock;
457 return addStmt(B->getLHS());
Ted Kremenekb49e1aa2007-08-28 18:14:37 +0000458 }
459 else if (B->getOpcode() == BinaryOperator::Comma) { // ,
460 Block->appendStmt(B);
461 addStmt(B->getRHS());
462 return addStmt(B->getLHS());
Ted Kremenek63f58872007-10-01 19:33:33 +0000463 }
Ted Kremeneka651e0e2007-12-13 22:44:18 +0000464
465 break;
Ted Kremenek0b1d9b72007-08-27 21:54:41 +0000466 }
Ted Kremenek00c0a302008-09-26 18:17:07 +0000467
468 // Blocks: No support for blocks ... yet
469 case Stmt::BlockExprClass:
470 case Stmt::BlockDeclRefExprClass:
471 return NYS();
Ted Kremenekf4e15fc2008-02-26 02:37:08 +0000472
473 case Stmt::ParenExprClass:
Ted Kremenek411cdee2008-04-16 21:10:48 +0000474 return WalkAST(cast<ParenExpr>(Terminator)->getSubExpr(), AlwaysAddStmt);
Ted Kremenek0b1d9b72007-08-27 21:54:41 +0000475
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000476 default:
Ted Kremeneka651e0e2007-12-13 22:44:18 +0000477 break;
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000478 };
Ted Kremeneka651e0e2007-12-13 22:44:18 +0000479
Ted Kremenek411cdee2008-04-16 21:10:48 +0000480 if (AlwaysAddStmt) Block->appendStmt(Terminator);
481 return WalkAST_VisitChildren(Terminator);
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000482}
Ted Kremenekfcd06f72008-09-26 16:26:36 +0000483
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000484/// WalkAST_VisitDeclSubExpr - Utility method to add block-level expressions
485/// for initializers in Decls.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000486CFGBlock* CFGBuilder::WalkAST_VisitDeclSubExpr(Decl* D) {
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000487 VarDecl* VD = dyn_cast<VarDecl>(D);
488
489 if (!VD)
Ted Kremenekd6603222007-11-18 20:06:01 +0000490 return Block;
491
Ted Kremenekc7eb9032008-08-06 23:20:50 +0000492 Expr* Init = VD->getInit();
Ted Kremenek8f54c1f2007-10-30 21:48:34 +0000493
Ted Kremenekfcd06f72008-09-26 16:26:36 +0000494 if (Init) {
495 // Optimization: Don't create separate block-level statements for literals.
496 switch (Init->getStmtClass()) {
497 case Stmt::IntegerLiteralClass:
498 case Stmt::CharacterLiteralClass:
499 case Stmt::StringLiteralClass:
500 break;
501 default:
502 Block = addStmt(Init);
503 }
Ted Kremenekae2a98c2008-02-29 22:32:24 +0000504 }
Ted Kremenekfcd06f72008-09-26 16:26:36 +0000505
506 // If the type of VD is a VLA, then we must process its size expressions.
507 for (VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); VA != 0;
508 VA = FindVA(VA->getElementType().getTypePtr()))
509 Block = addStmt(VA->getSizeExpr());
Ted Kremenekae2a98c2008-02-29 22:32:24 +0000510
Ted Kremenekb49e1aa2007-08-28 18:14:37 +0000511 return Block;
512}
513
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000514/// WalkAST_VisitChildren - Utility method to call WalkAST on the
515/// children of a Stmt.
Ted Kremenek411cdee2008-04-16 21:10:48 +0000516CFGBlock* CFGBuilder::WalkAST_VisitChildren(Stmt* Terminator) {
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000517 CFGBlock* B = Block;
Ted Kremenek411cdee2008-04-16 21:10:48 +0000518 for (Stmt::child_iterator I = Terminator->child_begin(), E = Terminator->child_end() ;
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000519 I != E; ++I)
Ted Kremenek322f58d2007-09-26 21:23:31 +0000520 if (*I) B = WalkAST(*I);
Ted Kremenek9da2fb72007-08-27 21:27:44 +0000521
522 return B;
523}
524
Ted Kremenek15c27a82007-08-28 18:30:10 +0000525/// WalkAST_VisitStmtExpr - Utility method to handle (nested) statement
526/// expressions (a GCC extension).
Ted Kremenek411cdee2008-04-16 21:10:48 +0000527CFGBlock* CFGBuilder::WalkAST_VisitStmtExpr(StmtExpr* Terminator) {
528 Block->appendStmt(Terminator);
529 return VisitCompoundStmt(Terminator->getSubStmt());
Ted Kremenek15c27a82007-08-28 18:30:10 +0000530}
531
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000532/// VisitStmt - Handle statements with no branching control flow.
533CFGBlock* CFGBuilder::VisitStmt(Stmt* Statement) {
534 // We cannot assume that we are in the middle of a basic block, since
535 // the CFG might only be constructed for this single statement. If
536 // we have no current basic block, just create one lazily.
537 if (!Block) Block = createBlock();
538
539 // Simply add the statement to the current block. We actually
540 // insert statements in reverse order; this order is reversed later
541 // when processing the containing element in the AST.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000542 addStmt(Statement);
543
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000544 return Block;
545}
546
547CFGBlock* CFGBuilder::VisitNullStmt(NullStmt* Statement) {
548 return Block;
549}
550
551CFGBlock* CFGBuilder::VisitCompoundStmt(CompoundStmt* C) {
Ted Kremeneka716d7a2008-03-17 17:19:44 +0000552
553 CFGBlock* LastBlock = NULL;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000554
Ted Kremenekd34066c2008-02-26 00:22:58 +0000555 for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
556 I != E; ++I ) {
Ted Kremeneka716d7a2008-03-17 17:19:44 +0000557 LastBlock = Visit(*I);
Ted Kremenekd34066c2008-02-26 00:22:58 +0000558 }
559
Ted Kremeneka716d7a2008-03-17 17:19:44 +0000560 return LastBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000561}
562
563CFGBlock* CFGBuilder::VisitIfStmt(IfStmt* I) {
564 // We may see an if statement in the middle of a basic block, or
565 // it may be the first statement we are processing. In either case,
566 // we create a new basic block. First, we create the blocks for
567 // the then...else statements, and then we create the block containing
568 // the if statement. If we were in the middle of a block, we
569 // stop processing that block and reverse its statements. That block
570 // is then the implicit successor for the "then" and "else" clauses.
571
572 // The block we were proccessing is now finished. Make it the
573 // successor block.
574 if (Block) {
575 Succ = Block;
576 FinishBlock(Block);
577 }
578
579 // Process the false branch. NULL out Block so that the recursive
580 // call to Visit will create a new basic block.
581 // Null out Block so that all successor
582 CFGBlock* ElseBlock = Succ;
583
584 if (Stmt* Else = I->getElse()) {
585 SaveAndRestore<CFGBlock*> sv(Succ);
586
587 // NULL out Block so that the recursive call to Visit will
588 // create a new basic block.
589 Block = NULL;
Ted Kremenekb6f7b722007-08-30 18:13:31 +0000590 ElseBlock = Visit(Else);
591
592 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
593 ElseBlock = sv.get();
594 else if (Block)
595 FinishBlock(ElseBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000596 }
597
598 // Process the true branch. NULL out Block so that the recursive
599 // call to Visit will create a new basic block.
600 // Null out Block so that all successor
601 CFGBlock* ThenBlock;
602 {
603 Stmt* Then = I->getThen();
604 assert (Then);
605 SaveAndRestore<CFGBlock*> sv(Succ);
606 Block = NULL;
Ted Kremenekb6f7b722007-08-30 18:13:31 +0000607 ThenBlock = Visit(Then);
608
609 if (!ThenBlock) // Can occur when the Then body has all NullStmts.
610 ThenBlock = sv.get();
611 else if (Block)
612 FinishBlock(ThenBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000613 }
614
615 // Now create a new block containing the if statement.
616 Block = createBlock(false);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000617
618 // Set the terminator of the new block to the If statement.
619 Block->setTerminator(I);
620
621 // Now add the successors.
622 Block->addSuccessor(ThenBlock);
623 Block->addSuccessor(ElseBlock);
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000624
625 // Add the condition as the last statement in the new block. This
626 // may create new blocks as the condition may contain control-flow. Any
627 // newly created blocks will be pointed to be "Block".
Ted Kremeneka2925852008-01-30 23:02:42 +0000628 return addStmt(I->getCond()->IgnoreParens());
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000629}
Ted Kremenekf50ec102007-09-11 21:29:43 +0000630
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000631
632CFGBlock* CFGBuilder::VisitReturnStmt(ReturnStmt* R) {
633 // If we were in the middle of a block we stop processing that block
634 // and reverse its statements.
635 //
636 // NOTE: If a "return" appears in the middle of a block, this means
637 // that the code afterwards is DEAD (unreachable). We still
638 // keep a basic block for that code; a simple "mark-and-sweep"
639 // from the entry block will be able to report such dead
640 // blocks.
641 if (Block) FinishBlock(Block);
642
643 // Create the new block.
644 Block = createBlock(false);
645
646 // The Exit block is the only successor.
647 Block->addSuccessor(&cfg->getExit());
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000648
649 // Add the return statement to the block. This may create new blocks
650 // if R contains control-flow (short-circuit operations).
651 return addStmt(R);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000652}
653
654CFGBlock* CFGBuilder::VisitLabelStmt(LabelStmt* L) {
655 // Get the block of the labeled statement. Add it to our map.
Ted Kremenek2677ea82008-03-15 07:45:02 +0000656 Visit(L->getSubStmt());
657 CFGBlock* LabelBlock = Block;
Ted Kremenek16e4dc82007-08-30 18:20:57 +0000658
659 if (!LabelBlock) // This can happen when the body is empty, i.e.
660 LabelBlock=createBlock(); // scopes that only contains NullStmts.
661
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000662 assert (LabelMap.find(L) == LabelMap.end() && "label already in map");
663 LabelMap[ L ] = LabelBlock;
664
665 // Labels partition blocks, so this is the end of the basic block
Ted Kremenek9cffe732007-08-29 23:20:49 +0000666 // we were processing (L is the block's label). Because this is
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000667 // label (and we have already processed the substatement) there is no
668 // extra control-flow to worry about.
Ted Kremenek9cffe732007-08-29 23:20:49 +0000669 LabelBlock->setLabel(L);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000670 FinishBlock(LabelBlock);
671
672 // We set Block to NULL to allow lazy creation of a new block
673 // (if necessary);
674 Block = NULL;
675
676 // This block is now the implicit successor of other blocks.
677 Succ = LabelBlock;
678
679 return LabelBlock;
680}
681
682CFGBlock* CFGBuilder::VisitGotoStmt(GotoStmt* G) {
683 // Goto is a control-flow statement. Thus we stop processing the
684 // current block and create a new one.
685 if (Block) FinishBlock(Block);
686 Block = createBlock(false);
687 Block->setTerminator(G);
688
689 // If we already know the mapping to the label block add the
690 // successor now.
691 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
692
693 if (I == LabelMap.end())
694 // We will need to backpatch this block later.
695 BackpatchBlocks.push_back(Block);
696 else
697 Block->addSuccessor(I->second);
698
699 return Block;
700}
701
702CFGBlock* CFGBuilder::VisitForStmt(ForStmt* F) {
703 // "for" is a control-flow statement. Thus we stop processing the
704 // current block.
705
706 CFGBlock* LoopSuccessor = NULL;
707
708 if (Block) {
709 FinishBlock(Block);
710 LoopSuccessor = Block;
711 }
712 else LoopSuccessor = Succ;
713
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000714 // Because of short-circuit evaluation, the condition of the loop
715 // can span multiple basic blocks. Thus we need the "Entry" and "Exit"
716 // blocks that evaluate the condition.
717 CFGBlock* ExitConditionBlock = createBlock(false);
718 CFGBlock* EntryConditionBlock = ExitConditionBlock;
719
720 // Set the terminator for the "exit" condition block.
721 ExitConditionBlock->setTerminator(F);
722
723 // Now add the actual condition to the condition block. Because the
724 // condition itself may contain control-flow, new blocks may be created.
725 if (Stmt* C = F->getCond()) {
726 Block = ExitConditionBlock;
727 EntryConditionBlock = addStmt(C);
728 if (Block) FinishBlock(EntryConditionBlock);
729 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000730
731 // The condition block is the implicit successor for the loop body as
732 // well as any code above the loop.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000733 Succ = EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000734
735 // Now create the loop body.
736 {
737 assert (F->getBody());
738
739 // Save the current values for Block, Succ, and continue and break targets
740 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
741 save_continue(ContinueTargetBlock),
742 save_break(BreakTargetBlock);
Ted Kremeneke9334502008-09-04 21:48:47 +0000743
Ted Kremenekaf603f72007-08-30 18:39:40 +0000744 // Create a new block to contain the (bottom) of the loop body.
745 Block = NULL;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000746
Ted Kremeneke9334502008-09-04 21:48:47 +0000747 if (Stmt* I = F->getInc()) {
748 // Generate increment code in its own basic block. This is the target
749 // of continue statements.
Ted Kremenekd0172432008-11-24 20:50:24 +0000750 Succ = Visit(I);
751
752 // Finish up the increment block if it hasn't been already.
753 if (Block) {
754 assert (Block == Succ);
755 FinishBlock(Block);
756 Block = 0;
757 }
758
Ted Kremeneke9334502008-09-04 21:48:47 +0000759 ContinueTargetBlock = Succ;
760 }
761 else {
762 // No increment code. Continues should go the the entry condition block.
763 ContinueTargetBlock = EntryConditionBlock;
764 }
765
766 // All breaks should go to the code following the loop.
767 BreakTargetBlock = LoopSuccessor;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000768
769 // Now populate the body block, and in the process create new blocks
770 // as we walk the body of the loop.
771 CFGBlock* BodyBlock = Visit(F->getBody());
Ted Kremenekaf603f72007-08-30 18:39:40 +0000772
773 if (!BodyBlock)
Ted Kremeneka9d996d2008-02-27 00:28:17 +0000774 BodyBlock = EntryConditionBlock; // can happen for "for (...;...; ) ;"
Ted Kremenekaf603f72007-08-30 18:39:40 +0000775 else if (Block)
776 FinishBlock(BodyBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000777
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000778 // This new body block is a successor to our "exit" condition block.
779 ExitConditionBlock->addSuccessor(BodyBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000780 }
781
782 // Link up the condition block with the code that follows the loop.
783 // (the false branch).
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000784 ExitConditionBlock->addSuccessor(LoopSuccessor);
785
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000786 // If the loop contains initialization, create a new block for those
787 // statements. This block can also contain statements that precede
788 // the loop.
789 if (Stmt* I = F->getInit()) {
790 Block = createBlock();
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000791 return addStmt(I);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000792 }
793 else {
794 // There is no loop initialization. We are thus basically a while
795 // loop. NULL out Block to force lazy block construction.
796 Block = NULL;
Ted Kremenek54827132008-02-27 07:20:00 +0000797 Succ = EntryConditionBlock;
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000798 return EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000799 }
800}
801
Ted Kremenek514de5a2008-11-11 17:10:00 +0000802CFGBlock* CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt* S) {
803 // Objective-C fast enumeration 'for' statements:
804 // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
805 //
806 // for ( Type newVariable in collection_expression ) { statements }
807 //
808 // becomes:
809 //
810 // prologue:
811 // 1. collection_expression
812 // T. jump to loop_entry
813 // loop_entry:
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000814 // 1. side-effects of element expression
Ted Kremenek514de5a2008-11-11 17:10:00 +0000815 // 1. ObjCForCollectionStmt [performs binding to newVariable]
816 // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil]
817 // TB:
818 // statements
819 // T. jump to loop_entry
820 // FB:
821 // what comes after
822 //
823 // and
824 //
825 // Type existingItem;
826 // for ( existingItem in expression ) { statements }
827 //
828 // becomes:
829 //
830 // the same with newVariable replaced with existingItem; the binding
831 // works the same except that for one ObjCForCollectionStmt::getElement()
832 // returns a DeclStmt and the other returns a DeclRefExpr.
833 //
834
835 CFGBlock* LoopSuccessor = 0;
836
837 if (Block) {
838 FinishBlock(Block);
839 LoopSuccessor = Block;
840 Block = 0;
841 }
842 else LoopSuccessor = Succ;
843
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000844 // Build the condition blocks.
845 CFGBlock* ExitConditionBlock = createBlock(false);
846 CFGBlock* EntryConditionBlock = ExitConditionBlock;
847
848 // Set the terminator for the "exit" condition block.
849 ExitConditionBlock->setTerminator(S);
850
851 // The last statement in the block should be the ObjCForCollectionStmt,
852 // which performs the actual binding to 'element' and determines if there
853 // are any more items in the collection.
854 ExitConditionBlock->appendStmt(S);
855 Block = ExitConditionBlock;
856
857 // Walk the 'element' expression to see if there are any side-effects. We
858 // generate new blocks as necesary. We DON'T add the statement by default
859 // to the CFG unless it contains control-flow.
860 EntryConditionBlock = WalkAST(S->getElement(), false);
861 if (Block) { FinishBlock(EntryConditionBlock); Block = 0; }
862
863 // The condition block is the implicit successor for the loop body as
864 // well as any code above the loop.
865 Succ = EntryConditionBlock;
Ted Kremenek514de5a2008-11-11 17:10:00 +0000866
867 // Now create the true branch.
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000868 {
869 // Save the current values for Succ, continue and break targets.
870 SaveAndRestore<CFGBlock*> save_Succ(Succ),
871 save_continue(ContinueTargetBlock), save_break(BreakTargetBlock);
872
873 BreakTargetBlock = LoopSuccessor;
874 ContinueTargetBlock = EntryConditionBlock;
875
876 CFGBlock* BodyBlock = Visit(S->getBody());
877
878 if (!BodyBlock)
879 BodyBlock = EntryConditionBlock; // can happen for "for (X in Y) ;"
880 else if (Block)
881 FinishBlock(BodyBlock);
882
883 // This new body block is a successor to our "exit" condition block.
884 ExitConditionBlock->addSuccessor(BodyBlock);
885 }
Ted Kremenekfc335522008-11-13 06:36:45 +0000886
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000887 // Link up the condition block with the code that follows the loop.
888 // (the false branch).
889 ExitConditionBlock->addSuccessor(LoopSuccessor);
890
Ted Kremenek514de5a2008-11-11 17:10:00 +0000891 // Now create a prologue block to contain the collection expression.
Ted Kremenek4cb3a852008-11-14 01:57:41 +0000892 Block = createBlock();
Ted Kremenek514de5a2008-11-11 17:10:00 +0000893 return addStmt(S->getCollection());
894}
895
896
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000897CFGBlock* CFGBuilder::VisitWhileStmt(WhileStmt* W) {
898 // "while" is a control-flow statement. Thus we stop processing the
899 // current block.
900
901 CFGBlock* LoopSuccessor = NULL;
902
903 if (Block) {
904 FinishBlock(Block);
905 LoopSuccessor = Block;
906 }
907 else LoopSuccessor = Succ;
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000908
909 // Because of short-circuit evaluation, the condition of the loop
910 // can span multiple basic blocks. Thus we need the "Entry" and "Exit"
911 // blocks that evaluate the condition.
912 CFGBlock* ExitConditionBlock = createBlock(false);
913 CFGBlock* EntryConditionBlock = ExitConditionBlock;
914
915 // Set the terminator for the "exit" condition block.
916 ExitConditionBlock->setTerminator(W);
917
918 // Now add the actual condition to the condition block. Because the
919 // condition itself may contain control-flow, new blocks may be created.
920 // Thus we update "Succ" after adding the condition.
921 if (Stmt* C = W->getCond()) {
922 Block = ExitConditionBlock;
923 EntryConditionBlock = addStmt(C);
Ted Kremeneka9d996d2008-02-27 00:28:17 +0000924 assert (Block == EntryConditionBlock);
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000925 if (Block) FinishBlock(EntryConditionBlock);
926 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000927
928 // The condition block is the implicit successor for the loop body as
929 // well as any code above the loop.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000930 Succ = EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000931
932 // Process the loop body.
933 {
934 assert (W->getBody());
935
936 // Save the current values for Block, Succ, and continue and break targets
937 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
938 save_continue(ContinueTargetBlock),
939 save_break(BreakTargetBlock);
940
941 // All continues within this loop should go to the condition block
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000942 ContinueTargetBlock = EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000943
944 // All breaks should go to the code following the loop.
945 BreakTargetBlock = LoopSuccessor;
946
947 // NULL out Block to force lazy instantiation of blocks for the body.
948 Block = NULL;
949
950 // Create the body. The returned block is the entry to the loop body.
951 CFGBlock* BodyBlock = Visit(W->getBody());
Ted Kremenekaf603f72007-08-30 18:39:40 +0000952
953 if (!BodyBlock)
Ted Kremeneka9d996d2008-02-27 00:28:17 +0000954 BodyBlock = EntryConditionBlock; // can happen for "while(...) ;"
Ted Kremenekaf603f72007-08-30 18:39:40 +0000955 else if (Block)
956 FinishBlock(BodyBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000957
958 // Add the loop body entry as a successor to the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000959 ExitConditionBlock->addSuccessor(BodyBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000960 }
961
962 // Link up the condition block with the code that follows the loop.
963 // (the false branch).
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000964 ExitConditionBlock->addSuccessor(LoopSuccessor);
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000965
966 // There can be no more statements in the condition block
967 // since we loop back to this block. NULL out Block to force
968 // lazy creation of another block.
969 Block = NULL;
970
971 // Return the condition block, which is the dominating block for the loop.
Ted Kremenek54827132008-02-27 07:20:00 +0000972 Succ = EntryConditionBlock;
Ted Kremenek49af7cb2007-08-27 19:46:09 +0000973 return EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000974}
Ted Kremenek2fda5042008-12-09 20:20:09 +0000975
976CFGBlock* CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt* S) {
977 // FIXME: This isn't complete. We basically treat @throw like a return
978 // statement.
979
980 // If we were in the middle of a block we stop processing that block
981 // and reverse its statements.
982 if (Block) FinishBlock(Block);
983
984 // Create the new block.
985 Block = createBlock(false);
986
987 // The Exit block is the only successor.
988 Block->addSuccessor(&cfg->getExit());
989
990 // Add the statement to the block. This may create new blocks
991 // if S contains control-flow (short-circuit operations).
992 return addStmt(S);
993}
Ted Kremenekd4fdee32007-08-23 21:42:29 +0000994
995CFGBlock* CFGBuilder::VisitDoStmt(DoStmt* D) {
996 // "do...while" is a control-flow statement. Thus we stop processing the
997 // current block.
998
999 CFGBlock* LoopSuccessor = NULL;
1000
1001 if (Block) {
1002 FinishBlock(Block);
1003 LoopSuccessor = Block;
1004 }
1005 else LoopSuccessor = Succ;
1006
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001007 // Because of short-circuit evaluation, the condition of the loop
1008 // can span multiple basic blocks. Thus we need the "Entry" and "Exit"
1009 // blocks that evaluate the condition.
1010 CFGBlock* ExitConditionBlock = createBlock(false);
1011 CFGBlock* EntryConditionBlock = ExitConditionBlock;
1012
1013 // Set the terminator for the "exit" condition block.
1014 ExitConditionBlock->setTerminator(D);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001015
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001016 // Now add the actual condition to the condition block. Because the
1017 // condition itself may contain control-flow, new blocks may be created.
1018 if (Stmt* C = D->getCond()) {
1019 Block = ExitConditionBlock;
1020 EntryConditionBlock = addStmt(C);
1021 if (Block) FinishBlock(EntryConditionBlock);
1022 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001023
Ted Kremenek54827132008-02-27 07:20:00 +00001024 // The condition block is the implicit successor for the loop body.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001025 Succ = EntryConditionBlock;
1026
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001027 // Process the loop body.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001028 CFGBlock* BodyBlock = NULL;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001029 {
1030 assert (D->getBody());
1031
1032 // Save the current values for Block, Succ, and continue and break targets
1033 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
1034 save_continue(ContinueTargetBlock),
1035 save_break(BreakTargetBlock);
1036
1037 // All continues within this loop should go to the condition block
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001038 ContinueTargetBlock = EntryConditionBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001039
1040 // All breaks should go to the code following the loop.
1041 BreakTargetBlock = LoopSuccessor;
1042
1043 // NULL out Block to force lazy instantiation of blocks for the body.
1044 Block = NULL;
1045
1046 // Create the body. The returned block is the entry to the loop body.
1047 BodyBlock = Visit(D->getBody());
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001048
Ted Kremenekaf603f72007-08-30 18:39:40 +00001049 if (!BodyBlock)
Ted Kremeneka9d996d2008-02-27 00:28:17 +00001050 BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
Ted Kremenekaf603f72007-08-30 18:39:40 +00001051 else if (Block)
1052 FinishBlock(BodyBlock);
1053
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001054 // Add the loop body entry as a successor to the condition.
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001055 ExitConditionBlock->addSuccessor(BodyBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001056 }
1057
1058 // Link up the condition block with the code that follows the loop.
1059 // (the false branch).
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001060 ExitConditionBlock->addSuccessor(LoopSuccessor);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001061
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001062 // There can be no more statements in the body block(s)
1063 // since we loop back to the body. NULL out Block to force
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001064 // lazy creation of another block.
1065 Block = NULL;
1066
1067 // Return the loop body, which is the dominating block for the loop.
Ted Kremenek54827132008-02-27 07:20:00 +00001068 Succ = BodyBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001069 return BodyBlock;
1070}
1071
1072CFGBlock* CFGBuilder::VisitContinueStmt(ContinueStmt* C) {
1073 // "continue" is a control-flow statement. Thus we stop processing the
1074 // current block.
1075 if (Block) FinishBlock(Block);
1076
1077 // Now create a new block that ends with the continue statement.
1078 Block = createBlock(false);
1079 Block->setTerminator(C);
1080
1081 // If there is no target for the continue, then we are looking at an
1082 // incomplete AST. Handle this by not registering a successor.
1083 if (ContinueTargetBlock) Block->addSuccessor(ContinueTargetBlock);
1084
1085 return Block;
1086}
1087
1088CFGBlock* CFGBuilder::VisitBreakStmt(BreakStmt* B) {
1089 // "break" is a control-flow statement. Thus we stop processing the
1090 // current block.
1091 if (Block) FinishBlock(Block);
1092
1093 // Now create a new block that ends with the continue statement.
1094 Block = createBlock(false);
1095 Block->setTerminator(B);
1096
1097 // If there is no target for the break, then we are looking at an
1098 // incomplete AST. Handle this by not registering a successor.
1099 if (BreakTargetBlock) Block->addSuccessor(BreakTargetBlock);
1100
1101 return Block;
1102}
1103
Ted Kremenek411cdee2008-04-16 21:10:48 +00001104CFGBlock* CFGBuilder::VisitSwitchStmt(SwitchStmt* Terminator) {
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001105 // "switch" is a control-flow statement. Thus we stop processing the
1106 // current block.
1107 CFGBlock* SwitchSuccessor = NULL;
1108
1109 if (Block) {
1110 FinishBlock(Block);
1111 SwitchSuccessor = Block;
1112 }
1113 else SwitchSuccessor = Succ;
1114
1115 // Save the current "switch" context.
1116 SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001117 save_break(BreakTargetBlock),
1118 save_default(DefaultCaseBlock);
1119
1120 // Set the "default" case to be the block after the switch statement.
1121 // If the switch statement contains a "default:", this value will
1122 // be overwritten with the block for that code.
1123 DefaultCaseBlock = SwitchSuccessor;
Ted Kremenek295222c2008-02-13 21:46:34 +00001124
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001125 // Create a new block that will contain the switch statement.
1126 SwitchTerminatedBlock = createBlock(false);
1127
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001128 // Now process the switch body. The code after the switch is the implicit
1129 // successor.
1130 Succ = SwitchSuccessor;
1131 BreakTargetBlock = SwitchSuccessor;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001132
1133 // When visiting the body, the case statements should automatically get
1134 // linked up to the switch. We also don't keep a pointer to the body,
1135 // since all control-flow from the switch goes to case/default statements.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001136 assert (Terminator->getBody() && "switch must contain a non-NULL body");
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001137 Block = NULL;
Ted Kremenek411cdee2008-04-16 21:10:48 +00001138 CFGBlock *BodyBlock = Visit(Terminator->getBody());
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001139 if (Block) FinishBlock(BodyBlock);
1140
Ted Kremenek295222c2008-02-13 21:46:34 +00001141 // If we have no "default:" case, the default transition is to the
1142 // code following the switch body.
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001143 SwitchTerminatedBlock->addSuccessor(DefaultCaseBlock);
Ted Kremenek295222c2008-02-13 21:46:34 +00001144
Ted Kremenek49af7cb2007-08-27 19:46:09 +00001145 // Add the terminator and condition in the switch block.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001146 SwitchTerminatedBlock->setTerminator(Terminator);
1147 assert (Terminator->getCond() && "switch condition must be non-NULL");
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001148 Block = SwitchTerminatedBlock;
Ted Kremenek295222c2008-02-13 21:46:34 +00001149
Ted Kremenek411cdee2008-04-16 21:10:48 +00001150 return addStmt(Terminator->getCond());
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001151}
1152
Ted Kremenek411cdee2008-04-16 21:10:48 +00001153CFGBlock* CFGBuilder::VisitCaseStmt(CaseStmt* Terminator) {
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001154 // CaseStmts are essentially labels, so they are the
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001155 // first statement in a block.
Ted Kremenek29ccaa12007-08-30 18:48:11 +00001156
Ted Kremenek411cdee2008-04-16 21:10:48 +00001157 if (Terminator->getSubStmt()) Visit(Terminator->getSubStmt());
Ted Kremenek29ccaa12007-08-30 18:48:11 +00001158 CFGBlock* CaseBlock = Block;
1159 if (!CaseBlock) CaseBlock = createBlock();
1160
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001161 // Cases statements partition blocks, so this is the top of
1162 // the basic block we were processing (the "case XXX:" is the label).
Ted Kremenek411cdee2008-04-16 21:10:48 +00001163 CaseBlock->setLabel(Terminator);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001164 FinishBlock(CaseBlock);
1165
1166 // Add this block to the list of successors for the block with the
1167 // switch statement.
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001168 assert (SwitchTerminatedBlock);
1169 SwitchTerminatedBlock->addSuccessor(CaseBlock);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001170
1171 // We set Block to NULL to allow lazy creation of a new block (if necessary)
1172 Block = NULL;
1173
1174 // This block is now the implicit successor of other blocks.
1175 Succ = CaseBlock;
1176
Ted Kremenek2677ea82008-03-15 07:45:02 +00001177 return CaseBlock;
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001178}
Ted Kremenek295222c2008-02-13 21:46:34 +00001179
Ted Kremenek411cdee2008-04-16 21:10:48 +00001180CFGBlock* CFGBuilder::VisitDefaultStmt(DefaultStmt* Terminator) {
1181 if (Terminator->getSubStmt()) Visit(Terminator->getSubStmt());
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001182 DefaultCaseBlock = Block;
1183 if (!DefaultCaseBlock) DefaultCaseBlock = createBlock();
1184
1185 // Default statements partition blocks, so this is the top of
1186 // the basic block we were processing (the "default:" is the label).
Ted Kremenek411cdee2008-04-16 21:10:48 +00001187 DefaultCaseBlock->setLabel(Terminator);
Ted Kremenekeef5a9a2008-02-13 22:05:39 +00001188 FinishBlock(DefaultCaseBlock);
1189
1190 // Unlike case statements, we don't add the default block to the
1191 // successors for the switch statement immediately. This is done
1192 // when we finish processing the switch statement. This allows for
1193 // the default case (including a fall-through to the code after the
1194 // switch statement) to always be the last successor of a switch-terminated
1195 // block.
1196
1197 // We set Block to NULL to allow lazy creation of a new block (if necessary)
1198 Block = NULL;
1199
1200 // This block is now the implicit successor of other blocks.
1201 Succ = DefaultCaseBlock;
1202
1203 return DefaultCaseBlock;
Ted Kremenek295222c2008-02-13 21:46:34 +00001204}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001205
Ted Kremenek19bb3562007-08-28 19:26:49 +00001206CFGBlock* CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt* I) {
1207 // Lazily create the indirect-goto dispatch block if there isn't one
1208 // already.
1209 CFGBlock* IBlock = cfg->getIndirectGotoBlock();
1210
1211 if (!IBlock) {
1212 IBlock = createBlock(false);
1213 cfg->setIndirectGotoBlock(IBlock);
1214 }
1215
1216 // IndirectGoto is a control-flow statement. Thus we stop processing the
1217 // current block and create a new one.
1218 if (Block) FinishBlock(Block);
1219 Block = createBlock(false);
1220 Block->setTerminator(I);
1221 Block->addSuccessor(IBlock);
1222 return addStmt(I->getTarget());
1223}
1224
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001225
Ted Kremenekbefef2f2007-08-23 21:26:19 +00001226} // end anonymous namespace
Ted Kremenek026473c2007-08-23 16:51:22 +00001227
1228/// createBlock - Constructs and adds a new CFGBlock to the CFG. The
1229/// block has no successors or predecessors. If this is the first block
1230/// created in the CFG, it is automatically set to be the Entry and Exit
1231/// of the CFG.
Ted Kremenek94382522007-09-05 20:02:05 +00001232CFGBlock* CFG::createBlock() {
Ted Kremenek026473c2007-08-23 16:51:22 +00001233 bool first_block = begin() == end();
1234
1235 // Create the block.
Ted Kremenek94382522007-09-05 20:02:05 +00001236 Blocks.push_front(CFGBlock(NumBlockIDs++));
Ted Kremenek026473c2007-08-23 16:51:22 +00001237
1238 // If this is the first block, set it as the Entry and Exit.
1239 if (first_block) Entry = Exit = &front();
1240
1241 // Return the block.
1242 return &front();
Ted Kremenekfddd5182007-08-21 21:42:03 +00001243}
1244
Ted Kremenek026473c2007-08-23 16:51:22 +00001245/// buildCFG - Constructs a CFG from an AST. Ownership of the returned
1246/// CFG is returned to the caller.
1247CFG* CFG::buildCFG(Stmt* Statement) {
1248 CFGBuilder Builder;
1249 return Builder.buildCFG(Statement);
1250}
1251
1252/// reverseStmts - Reverses the orders of statements within a CFGBlock.
Ted Kremenekfddd5182007-08-21 21:42:03 +00001253void CFGBlock::reverseStmts() { std::reverse(Stmts.begin(),Stmts.end()); }
1254
Ted Kremenek63f58872007-10-01 19:33:33 +00001255//===----------------------------------------------------------------------===//
1256// CFG: Queries for BlkExprs.
1257//===----------------------------------------------------------------------===//
Ted Kremenek7dba8602007-08-29 21:56:09 +00001258
Ted Kremenek63f58872007-10-01 19:33:33 +00001259namespace {
Ted Kremenek86946742008-01-17 20:48:37 +00001260 typedef llvm::DenseMap<const Stmt*,unsigned> BlkExprMapTy;
Ted Kremenek63f58872007-10-01 19:33:33 +00001261}
1262
Ted Kremenek411cdee2008-04-16 21:10:48 +00001263static void FindSubExprAssignments(Stmt* Terminator, llvm::SmallPtrSet<Expr*,50>& Set) {
1264 if (!Terminator)
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001265 return;
1266
Ted Kremenek411cdee2008-04-16 21:10:48 +00001267 for (Stmt::child_iterator I=Terminator->child_begin(), E=Terminator->child_end(); I!=E; ++I) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001268 if (!*I) continue;
1269
1270 if (BinaryOperator* B = dyn_cast<BinaryOperator>(*I))
1271 if (B->isAssignmentOp()) Set.insert(B);
1272
1273 FindSubExprAssignments(*I, Set);
1274 }
1275}
1276
Ted Kremenek63f58872007-10-01 19:33:33 +00001277static BlkExprMapTy* PopulateBlkExprMap(CFG& cfg) {
1278 BlkExprMapTy* M = new BlkExprMapTy();
1279
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001280 // Look for assignments that are used as subexpressions. These are the
Ted Kremenek411cdee2008-04-16 21:10:48 +00001281 // only assignments that we want to *possibly* register as a block-level
1282 // expression. Basically, if an assignment occurs both in a subexpression
1283 // and at the block-level, it is a block-level expression.
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001284 llvm::SmallPtrSet<Expr*,50> SubExprAssignments;
1285
Ted Kremenek63f58872007-10-01 19:33:33 +00001286 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I)
1287 for (CFGBlock::iterator BI=I->begin(), EI=I->end(); BI != EI; ++BI)
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001288 FindSubExprAssignments(*BI, SubExprAssignments);
Ted Kremenek86946742008-01-17 20:48:37 +00001289
Ted Kremenek411cdee2008-04-16 21:10:48 +00001290 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) {
1291
1292 // Iterate over the statements again on identify the Expr* and Stmt* at
1293 // the block-level that are block-level expressions.
1294
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001295 for (CFGBlock::iterator BI=I->begin(), EI=I->end(); BI != EI; ++BI)
Ted Kremenek411cdee2008-04-16 21:10:48 +00001296 if (Expr* Exp = dyn_cast<Expr>(*BI)) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001297
Ted Kremenek411cdee2008-04-16 21:10:48 +00001298 if (BinaryOperator* B = dyn_cast<BinaryOperator>(Exp)) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001299 // Assignment expressions that are not nested within another
1300 // expression are really "statements" whose value is never
1301 // used by another expression.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001302 if (B->isAssignmentOp() && !SubExprAssignments.count(Exp))
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001303 continue;
1304 }
Ted Kremenek411cdee2008-04-16 21:10:48 +00001305 else if (const StmtExpr* Terminator = dyn_cast<StmtExpr>(Exp)) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001306 // Special handling for statement expressions. The last statement
1307 // in the statement expression is also a block-level expr.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001308 const CompoundStmt* C = Terminator->getSubStmt();
Ted Kremenek86946742008-01-17 20:48:37 +00001309 if (!C->body_empty()) {
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001310 unsigned x = M->size();
Ted Kremenek86946742008-01-17 20:48:37 +00001311 (*M)[C->body_back()] = x;
1312 }
1313 }
Ted Kremeneke2dcd782008-01-25 23:22:27 +00001314
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001315 unsigned x = M->size();
Ted Kremenek411cdee2008-04-16 21:10:48 +00001316 (*M)[Exp] = x;
Ted Kremenek33d4aab2008-01-26 00:03:27 +00001317 }
1318
Ted Kremenek411cdee2008-04-16 21:10:48 +00001319 // Look at terminators. The condition is a block-level expression.
1320
Ted Kremenek390e48b2008-11-12 21:11:49 +00001321 Stmt* S = I->getTerminatorCondition();
Ted Kremenek411cdee2008-04-16 21:10:48 +00001322
Ted Kremenek390e48b2008-11-12 21:11:49 +00001323 if (S && M->find(S) == M->end()) {
Ted Kremenek411cdee2008-04-16 21:10:48 +00001324 unsigned x = M->size();
Ted Kremenek390e48b2008-11-12 21:11:49 +00001325 (*M)[S] = x;
Ted Kremenek411cdee2008-04-16 21:10:48 +00001326 }
1327 }
1328
Ted Kremenek63f58872007-10-01 19:33:33 +00001329 return M;
1330}
1331
Ted Kremenek86946742008-01-17 20:48:37 +00001332CFG::BlkExprNumTy CFG::getBlkExprNum(const Stmt* S) {
1333 assert(S != NULL);
Ted Kremenek63f58872007-10-01 19:33:33 +00001334 if (!BlkExprMap) { BlkExprMap = (void*) PopulateBlkExprMap(*this); }
1335
1336 BlkExprMapTy* M = reinterpret_cast<BlkExprMapTy*>(BlkExprMap);
Ted Kremenek86946742008-01-17 20:48:37 +00001337 BlkExprMapTy::iterator I = M->find(S);
Ted Kremenek63f58872007-10-01 19:33:33 +00001338
1339 if (I == M->end()) return CFG::BlkExprNumTy();
1340 else return CFG::BlkExprNumTy(I->second);
1341}
1342
1343unsigned CFG::getNumBlkExprs() {
1344 if (const BlkExprMapTy* M = reinterpret_cast<const BlkExprMapTy*>(BlkExprMap))
1345 return M->size();
1346 else {
1347 // We assume callers interested in the number of BlkExprs will want
1348 // the map constructed if it doesn't already exist.
1349 BlkExprMap = (void*) PopulateBlkExprMap(*this);
1350 return reinterpret_cast<BlkExprMapTy*>(BlkExprMap)->size();
1351 }
1352}
1353
Ted Kremenek274f4332008-04-28 18:00:46 +00001354//===----------------------------------------------------------------------===//
Ted Kremenek274f4332008-04-28 18:00:46 +00001355// Cleanup: CFG dstor.
1356//===----------------------------------------------------------------------===//
1357
Ted Kremenek63f58872007-10-01 19:33:33 +00001358CFG::~CFG() {
1359 delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap);
1360}
1361
Ted Kremenek7dba8602007-08-29 21:56:09 +00001362//===----------------------------------------------------------------------===//
1363// CFG pretty printing
1364//===----------------------------------------------------------------------===//
1365
Ted Kremeneke8ee26b2007-08-22 18:22:34 +00001366namespace {
1367
Ted Kremenek6fa9b882008-01-08 18:15:10 +00001368class VISIBILITY_HIDDEN StmtPrinterHelper : public PrinterHelper {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001369
Ted Kremenek42a509f2007-08-31 21:30:12 +00001370 typedef llvm::DenseMap<Stmt*,std::pair<unsigned,unsigned> > StmtMapTy;
1371 StmtMapTy StmtMap;
1372 signed CurrentBlock;
1373 unsigned CurrentStmt;
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001374
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001375public:
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001376
Ted Kremenek42a509f2007-08-31 21:30:12 +00001377 StmtPrinterHelper(const CFG* cfg) : CurrentBlock(0), CurrentStmt(0) {
1378 for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
1379 unsigned j = 1;
1380 for (CFGBlock::const_iterator BI = I->begin(), BEnd = I->end() ;
1381 BI != BEnd; ++BI, ++j )
1382 StmtMap[*BI] = std::make_pair(I->getBlockID(),j);
1383 }
1384 }
1385
1386 virtual ~StmtPrinterHelper() {}
1387
1388 void setBlockID(signed i) { CurrentBlock = i; }
1389 void setStmtID(unsigned i) { CurrentStmt = i; }
1390
Ted Kremeneka95d3752008-09-13 05:16:45 +00001391 virtual bool handledStmt(Stmt* Terminator, llvm::raw_ostream& OS) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001392
Ted Kremenek411cdee2008-04-16 21:10:48 +00001393 StmtMapTy::iterator I = StmtMap.find(Terminator);
Ted Kremenek42a509f2007-08-31 21:30:12 +00001394
1395 if (I == StmtMap.end())
1396 return false;
1397
1398 if (CurrentBlock >= 0 && I->second.first == (unsigned) CurrentBlock
1399 && I->second.second == CurrentStmt)
1400 return false;
1401
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001402 OS << "[B" << I->second.first << "." << I->second.second << "]";
1403 return true;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001404 }
1405};
1406
Ted Kremenek6fa9b882008-01-08 18:15:10 +00001407class VISIBILITY_HIDDEN CFGBlockTerminatorPrint
1408 : public StmtVisitor<CFGBlockTerminatorPrint,void> {
1409
Ted Kremeneka95d3752008-09-13 05:16:45 +00001410 llvm::raw_ostream& OS;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001411 StmtPrinterHelper* Helper;
1412public:
Ted Kremeneka95d3752008-09-13 05:16:45 +00001413 CFGBlockTerminatorPrint(llvm::raw_ostream& os, StmtPrinterHelper* helper)
Ted Kremenek42a509f2007-08-31 21:30:12 +00001414 : OS(os), Helper(helper) {}
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001415
1416 void VisitIfStmt(IfStmt* I) {
1417 OS << "if ";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001418 I->getCond()->printPretty(OS,Helper);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001419 }
1420
1421 // Default case.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001422 void VisitStmt(Stmt* Terminator) { Terminator->printPretty(OS); }
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001423
1424 void VisitForStmt(ForStmt* F) {
1425 OS << "for (" ;
Ted Kremenek535bb202007-08-30 21:28:02 +00001426 if (F->getInit()) OS << "...";
1427 OS << "; ";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001428 if (Stmt* C = F->getCond()) C->printPretty(OS,Helper);
Ted Kremenek535bb202007-08-30 21:28:02 +00001429 OS << "; ";
1430 if (F->getInc()) OS << "...";
Ted Kremeneka2925852008-01-30 23:02:42 +00001431 OS << ")";
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001432 }
1433
1434 void VisitWhileStmt(WhileStmt* W) {
1435 OS << "while " ;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001436 if (Stmt* C = W->getCond()) C->printPretty(OS,Helper);
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001437 }
1438
1439 void VisitDoStmt(DoStmt* D) {
1440 OS << "do ... while ";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001441 if (Stmt* C = D->getCond()) C->printPretty(OS,Helper);
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001442 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001443
Ted Kremenek411cdee2008-04-16 21:10:48 +00001444 void VisitSwitchStmt(SwitchStmt* Terminator) {
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001445 OS << "switch ";
Ted Kremenek411cdee2008-04-16 21:10:48 +00001446 Terminator->getCond()->printPretty(OS,Helper);
Ted Kremenek9da2fb72007-08-27 21:27:44 +00001447 }
1448
Ted Kremenek805e9a82007-08-31 21:49:40 +00001449 void VisitConditionalOperator(ConditionalOperator* C) {
1450 C->getCond()->printPretty(OS,Helper);
Ted Kremeneka2925852008-01-30 23:02:42 +00001451 OS << " ? ... : ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00001452 }
1453
Ted Kremenekaeddbf62007-08-31 22:29:13 +00001454 void VisitChooseExpr(ChooseExpr* C) {
1455 OS << "__builtin_choose_expr( ";
1456 C->getCond()->printPretty(OS,Helper);
Ted Kremeneka2925852008-01-30 23:02:42 +00001457 OS << " )";
Ted Kremenekaeddbf62007-08-31 22:29:13 +00001458 }
1459
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001460 void VisitIndirectGotoStmt(IndirectGotoStmt* I) {
1461 OS << "goto *";
1462 I->getTarget()->printPretty(OS,Helper);
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001463 }
1464
Ted Kremenek805e9a82007-08-31 21:49:40 +00001465 void VisitBinaryOperator(BinaryOperator* B) {
1466 if (!B->isLogicalOp()) {
1467 VisitExpr(B);
1468 return;
1469 }
1470
1471 B->getLHS()->printPretty(OS,Helper);
1472
1473 switch (B->getOpcode()) {
1474 case BinaryOperator::LOr:
Ted Kremeneka2925852008-01-30 23:02:42 +00001475 OS << " || ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00001476 return;
1477 case BinaryOperator::LAnd:
Ted Kremeneka2925852008-01-30 23:02:42 +00001478 OS << " && ...";
Ted Kremenek805e9a82007-08-31 21:49:40 +00001479 return;
1480 default:
1481 assert(false && "Invalid logical operator.");
1482 }
1483 }
1484
Ted Kremenek0b1d9b72007-08-27 21:54:41 +00001485 void VisitExpr(Expr* E) {
Ted Kremenek42a509f2007-08-31 21:30:12 +00001486 E->printPretty(OS,Helper);
Ted Kremenek0b1d9b72007-08-27 21:54:41 +00001487 }
Ted Kremenekd4fdee32007-08-23 21:42:29 +00001488};
Ted Kremenek42a509f2007-08-31 21:30:12 +00001489
1490
Ted Kremeneka95d3752008-09-13 05:16:45 +00001491void print_stmt(llvm::raw_ostream&OS, StmtPrinterHelper* Helper, Stmt* Terminator) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001492 if (Helper) {
1493 // special printing for statement-expressions.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001494 if (StmtExpr* SE = dyn_cast<StmtExpr>(Terminator)) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001495 CompoundStmt* Sub = SE->getSubStmt();
1496
1497 if (Sub->child_begin() != Sub->child_end()) {
Ted Kremenek60266e82007-08-31 22:47:06 +00001498 OS << "({ ... ; ";
Ted Kremenek7a9d9d72007-10-29 20:41:04 +00001499 Helper->handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
Ted Kremenek60266e82007-08-31 22:47:06 +00001500 OS << " })\n";
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001501 return;
1502 }
1503 }
1504
1505 // special printing for comma expressions.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001506 if (BinaryOperator* B = dyn_cast<BinaryOperator>(Terminator)) {
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001507 if (B->getOpcode() == BinaryOperator::Comma) {
1508 OS << "... , ";
1509 Helper->handledStmt(B->getRHS(),OS);
1510 OS << '\n';
1511 return;
1512 }
1513 }
1514 }
1515
Ted Kremenek411cdee2008-04-16 21:10:48 +00001516 Terminator->printPretty(OS, Helper);
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001517
1518 // Expressions need a newline.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001519 if (isa<Expr>(Terminator)) OS << '\n';
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001520}
1521
Ted Kremeneka95d3752008-09-13 05:16:45 +00001522void print_block(llvm::raw_ostream& OS, const CFG* cfg, const CFGBlock& B,
Ted Kremenek42a509f2007-08-31 21:30:12 +00001523 StmtPrinterHelper* Helper, bool print_edges) {
1524
1525 if (Helper) Helper->setBlockID(B.getBlockID());
1526
Ted Kremenek7dba8602007-08-29 21:56:09 +00001527 // Print the header.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001528 OS << "\n [ B" << B.getBlockID();
1529
1530 if (&B == &cfg->getEntry())
1531 OS << " (ENTRY) ]\n";
1532 else if (&B == &cfg->getExit())
1533 OS << " (EXIT) ]\n";
1534 else if (&B == cfg->getIndirectGotoBlock())
Ted Kremenek7dba8602007-08-29 21:56:09 +00001535 OS << " (INDIRECT GOTO DISPATCH) ]\n";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001536 else
1537 OS << " ]\n";
1538
Ted Kremenek9cffe732007-08-29 23:20:49 +00001539 // Print the label of this block.
Ted Kremenek411cdee2008-04-16 21:10:48 +00001540 if (Stmt* Terminator = const_cast<Stmt*>(B.getLabel())) {
Ted Kremenek42a509f2007-08-31 21:30:12 +00001541
1542 if (print_edges)
1543 OS << " ";
1544
Ted Kremenek411cdee2008-04-16 21:10:48 +00001545 if (LabelStmt* L = dyn_cast<LabelStmt>(Terminator))
Ted Kremenek9cffe732007-08-29 23:20:49 +00001546 OS << L->getName();
Ted Kremenek411cdee2008-04-16 21:10:48 +00001547 else if (CaseStmt* C = dyn_cast<CaseStmt>(Terminator)) {
Ted Kremenek9cffe732007-08-29 23:20:49 +00001548 OS << "case ";
1549 C->getLHS()->printPretty(OS);
1550 if (C->getRHS()) {
1551 OS << " ... ";
1552 C->getRHS()->printPretty(OS);
1553 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001554 }
Ted Kremenek411cdee2008-04-16 21:10:48 +00001555 else if (isa<DefaultStmt>(Terminator))
Ted Kremenek9cffe732007-08-29 23:20:49 +00001556 OS << "default";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001557 else
1558 assert(false && "Invalid label statement in CFGBlock.");
1559
Ted Kremenek9cffe732007-08-29 23:20:49 +00001560 OS << ":\n";
1561 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001562
Ted Kremenekfddd5182007-08-21 21:42:03 +00001563 // Iterate through the statements in the block and print them.
Ted Kremenekfddd5182007-08-21 21:42:03 +00001564 unsigned j = 1;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001565
1566 for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
1567 I != E ; ++I, ++j ) {
1568
Ted Kremenek9cffe732007-08-29 23:20:49 +00001569 // Print the statement # in the basic block and the statement itself.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001570 if (print_edges)
1571 OS << " ";
1572
Ted Kremeneka95d3752008-09-13 05:16:45 +00001573 OS << llvm::format("%3d", j) << ": ";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001574
1575 if (Helper)
1576 Helper->setStmtID(j);
Ted Kremenek1c29bba2007-08-31 22:26:13 +00001577
1578 print_stmt(OS,Helper,*I);
Ted Kremenekfddd5182007-08-21 21:42:03 +00001579 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001580
Ted Kremenek9cffe732007-08-29 23:20:49 +00001581 // Print the terminator of this block.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001582 if (B.getTerminator()) {
1583 if (print_edges)
1584 OS << " ";
1585
Ted Kremenek9cffe732007-08-29 23:20:49 +00001586 OS << " T: ";
Ted Kremenek42a509f2007-08-31 21:30:12 +00001587
1588 if (Helper) Helper->setBlockID(-1);
1589
1590 CFGBlockTerminatorPrint TPrinter(OS,Helper);
1591 TPrinter.Visit(const_cast<Stmt*>(B.getTerminator()));
Ted Kremeneka2925852008-01-30 23:02:42 +00001592 OS << '\n';
Ted Kremenekfddd5182007-08-21 21:42:03 +00001593 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001594
Ted Kremenek9cffe732007-08-29 23:20:49 +00001595 if (print_edges) {
1596 // Print the predecessors of this block.
Ted Kremenek42a509f2007-08-31 21:30:12 +00001597 OS << " Predecessors (" << B.pred_size() << "):";
Ted Kremenek9cffe732007-08-29 23:20:49 +00001598 unsigned i = 0;
Ted Kremenek9cffe732007-08-29 23:20:49 +00001599
Ted Kremenek42a509f2007-08-31 21:30:12 +00001600 for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
1601 I != E; ++I, ++i) {
1602
1603 if (i == 8 || (i-8) == 0)
1604 OS << "\n ";
1605
Ted Kremenek9cffe732007-08-29 23:20:49 +00001606 OS << " B" << (*I)->getBlockID();
1607 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001608
1609 OS << '\n';
1610
1611 // Print the successors of this block.
1612 OS << " Successors (" << B.succ_size() << "):";
1613 i = 0;
1614
1615 for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
1616 I != E; ++I, ++i) {
1617
1618 if (i == 8 || (i-8) % 10 == 0)
1619 OS << "\n ";
1620
1621 OS << " B" << (*I)->getBlockID();
1622 }
1623
Ted Kremenek9cffe732007-08-29 23:20:49 +00001624 OS << '\n';
Ted Kremenekfddd5182007-08-21 21:42:03 +00001625 }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001626}
1627
1628} // end anonymous namespace
1629
1630/// dump - A simple pretty printer of a CFG that outputs to stderr.
Ted Kremeneka95d3752008-09-13 05:16:45 +00001631void CFG::dump() const { print(llvm::errs()); }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001632
1633/// print - A simple pretty printer of a CFG that outputs to an ostream.
Ted Kremeneka95d3752008-09-13 05:16:45 +00001634void CFG::print(llvm::raw_ostream& OS) const {
Ted Kremenek42a509f2007-08-31 21:30:12 +00001635
1636 StmtPrinterHelper Helper(this);
1637
1638 // Print the entry block.
1639 print_block(OS, this, getEntry(), &Helper, true);
1640
1641 // Iterate through the CFGBlocks and print them one by one.
1642 for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
1643 // Skip the entry block, because we already printed it.
1644 if (&(*I) == &getEntry() || &(*I) == &getExit())
1645 continue;
1646
1647 print_block(OS, this, *I, &Helper, true);
1648 }
1649
1650 // Print the exit block.
1651 print_block(OS, this, getExit(), &Helper, true);
Ted Kremenekd0172432008-11-24 20:50:24 +00001652 OS.flush();
Ted Kremenek42a509f2007-08-31 21:30:12 +00001653}
1654
1655/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
Ted Kremeneka95d3752008-09-13 05:16:45 +00001656void CFGBlock::dump(const CFG* cfg) const { print(llvm::errs(), cfg); }
Ted Kremenek42a509f2007-08-31 21:30:12 +00001657
1658/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
1659/// Generally this will only be called from CFG::print.
Ted Kremeneka95d3752008-09-13 05:16:45 +00001660void CFGBlock::print(llvm::raw_ostream& OS, const CFG* cfg) const {
Ted Kremenek42a509f2007-08-31 21:30:12 +00001661 StmtPrinterHelper Helper(cfg);
1662 print_block(OS, cfg, *this, &Helper, true);
Ted Kremenek026473c2007-08-23 16:51:22 +00001663}
Ted Kremenek7dba8602007-08-29 21:56:09 +00001664
Ted Kremeneka2925852008-01-30 23:02:42 +00001665/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
Ted Kremeneka95d3752008-09-13 05:16:45 +00001666void CFGBlock::printTerminator(llvm::raw_ostream& OS) const {
Ted Kremeneka2925852008-01-30 23:02:42 +00001667 CFGBlockTerminatorPrint TPrinter(OS,NULL);
1668 TPrinter.Visit(const_cast<Stmt*>(getTerminator()));
1669}
1670
Ted Kremenek390e48b2008-11-12 21:11:49 +00001671Stmt* CFGBlock::getTerminatorCondition() {
Ted Kremenek411cdee2008-04-16 21:10:48 +00001672
1673 if (!Terminator)
1674 return NULL;
1675
1676 Expr* E = NULL;
1677
1678 switch (Terminator->getStmtClass()) {
1679 default:
1680 break;
1681
1682 case Stmt::ForStmtClass:
1683 E = cast<ForStmt>(Terminator)->getCond();
1684 break;
1685
1686 case Stmt::WhileStmtClass:
1687 E = cast<WhileStmt>(Terminator)->getCond();
1688 break;
1689
1690 case Stmt::DoStmtClass:
1691 E = cast<DoStmt>(Terminator)->getCond();
1692 break;
1693
1694 case Stmt::IfStmtClass:
1695 E = cast<IfStmt>(Terminator)->getCond();
1696 break;
1697
1698 case Stmt::ChooseExprClass:
1699 E = cast<ChooseExpr>(Terminator)->getCond();
1700 break;
1701
1702 case Stmt::IndirectGotoStmtClass:
1703 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
1704 break;
1705
1706 case Stmt::SwitchStmtClass:
1707 E = cast<SwitchStmt>(Terminator)->getCond();
1708 break;
1709
1710 case Stmt::ConditionalOperatorClass:
1711 E = cast<ConditionalOperator>(Terminator)->getCond();
1712 break;
1713
1714 case Stmt::BinaryOperatorClass: // '&&' and '||'
1715 E = cast<BinaryOperator>(Terminator)->getLHS();
Ted Kremenek390e48b2008-11-12 21:11:49 +00001716 break;
1717
1718 case Stmt::ObjCForCollectionStmtClass:
1719 return Terminator;
Ted Kremenek411cdee2008-04-16 21:10:48 +00001720 }
1721
1722 return E ? E->IgnoreParens() : NULL;
1723}
1724
Ted Kremenek9c2535a2008-05-16 16:06:00 +00001725bool CFGBlock::hasBinaryBranchTerminator() const {
1726
1727 if (!Terminator)
1728 return false;
1729
1730 Expr* E = NULL;
1731
1732 switch (Terminator->getStmtClass()) {
1733 default:
1734 return false;
1735
1736 case Stmt::ForStmtClass:
1737 case Stmt::WhileStmtClass:
1738 case Stmt::DoStmtClass:
1739 case Stmt::IfStmtClass:
1740 case Stmt::ChooseExprClass:
1741 case Stmt::ConditionalOperatorClass:
1742 case Stmt::BinaryOperatorClass:
1743 return true;
1744 }
1745
1746 return E ? E->IgnoreParens() : NULL;
1747}
1748
Ted Kremeneka2925852008-01-30 23:02:42 +00001749
Ted Kremenek7dba8602007-08-29 21:56:09 +00001750//===----------------------------------------------------------------------===//
1751// CFG Graphviz Visualization
1752//===----------------------------------------------------------------------===//
1753
Ted Kremenek42a509f2007-08-31 21:30:12 +00001754
1755#ifndef NDEBUG
Chris Lattner00123512007-09-17 06:16:32 +00001756static StmtPrinterHelper* GraphHelper;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001757#endif
1758
1759void CFG::viewCFG() const {
1760#ifndef NDEBUG
1761 StmtPrinterHelper H(this);
1762 GraphHelper = &H;
1763 llvm::ViewGraph(this,"CFG");
1764 GraphHelper = NULL;
Ted Kremenek42a509f2007-08-31 21:30:12 +00001765#endif
1766}
1767
Ted Kremenek7dba8602007-08-29 21:56:09 +00001768namespace llvm {
1769template<>
1770struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
1771 static std::string getNodeLabel(const CFGBlock* Node, const CFG* Graph) {
1772
Hartmut Kaiserbd250b42007-09-16 00:28:28 +00001773#ifndef NDEBUG
Ted Kremeneka95d3752008-09-13 05:16:45 +00001774 std::string OutSStr;
1775 llvm::raw_string_ostream Out(OutSStr);
Ted Kremenek42a509f2007-08-31 21:30:12 +00001776 print_block(Out,Graph, *Node, GraphHelper, false);
Ted Kremeneka95d3752008-09-13 05:16:45 +00001777 std::string& OutStr = Out.str();
Ted Kremenek7dba8602007-08-29 21:56:09 +00001778
1779 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
1780
1781 // Process string output to make it nicer...
1782 for (unsigned i = 0; i != OutStr.length(); ++i)
1783 if (OutStr[i] == '\n') { // Left justify
1784 OutStr[i] = '\\';
1785 OutStr.insert(OutStr.begin()+i+1, 'l');
1786 }
1787
1788 return OutStr;
Hartmut Kaiserbd250b42007-09-16 00:28:28 +00001789#else
1790 return "";
1791#endif
Ted Kremenek7dba8602007-08-29 21:56:09 +00001792 }
1793};
1794} // end namespace llvm