blob: fb3165ed395c381de89ddfde2b2497a9cf6beecf [file] [log] [blame]
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001//===--- CFG.cpp - Classes for representing and building CFGs----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the CFG and CFGBuilder classes for representing and
11// building Control-Flow Graphs (CFGs) from ASTs.
12//
13//===----------------------------------------------------------------------===//
14
Ted Kremenek6796fbd2009-07-16 18:13:04 +000015#include "clang/Analysis/CFG.h"
Ted Kremenek1b8ac852007-08-21 22:06:14 +000016#include "clang/AST/StmtVisitor.h"
Ted Kremenek04f3cee2007-08-31 21:30:12 +000017#include "clang/AST/PrettyPrinter.h"
Ted Kremenek8a632182007-08-21 23:26:17 +000018#include "llvm/ADT/DenseMap.h"
Ted Kremenekeda180e22007-08-28 19:26:49 +000019#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek4e5f99d2007-08-29 21:56:09 +000020#include "llvm/Support/GraphWriter.h"
Ted Kremeneka59e0062007-12-17 19:35:20 +000021#include "llvm/Support/Streams.h"
Ted Kremenek83ebcef2008-01-08 18:15:10 +000022#include "llvm/Support/Compiler.h"
Ted Kremenek6065ef62008-04-28 18:00:46 +000023#include <llvm/Support/Allocator.h>
Ted Kremenek2d470fc2008-09-13 05:16:45 +000024#include <llvm/Support/Format.h>
Ted Kremeneke5ccf9a2008-01-11 00:40:29 +000025
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000026using namespace clang;
27
28namespace {
29
Ted Kremenek04cca642007-08-23 21:26:19 +000030// SaveAndRestore - A utility class that uses RIIA to save and restore
31// the value of a variable.
32template<typename T>
Ted Kremenek83ebcef2008-01-08 18:15:10 +000033struct VISIBILITY_HIDDEN SaveAndRestore {
Ted Kremenek04cca642007-08-23 21:26:19 +000034 SaveAndRestore(T& x) : X(x), old_value(x) {}
35 ~SaveAndRestore() { X = old_value; }
Ted Kremenekbbad8ce2007-08-30 18:13:31 +000036 T get() { return old_value; }
37
Ted Kremenek04cca642007-08-23 21:26:19 +000038 T& X;
39 T old_value;
40};
Mike Stump31feda52009-07-17 01:31:16 +000041
Douglas Gregor6e6ad602009-01-20 01:17:11 +000042static SourceLocation GetEndLoc(Decl* D) {
Ted Kremenek8889bb32008-08-06 23:20:50 +000043 if (VarDecl* VD = dyn_cast<VarDecl>(D))
44 if (Expr* Ex = VD->getInit())
45 return Ex->getSourceRange().getEnd();
Mike Stump31feda52009-07-17 01:31:16 +000046
47 return D->getLocation();
Ted Kremenek8889bb32008-08-06 23:20:50 +000048}
Mike Stump31feda52009-07-17 01:31:16 +000049
Ted Kremenekbe9b33b2008-08-04 22:51:42 +000050/// CFGBuilder - This class implements CFG construction from an AST.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000051/// The builder is stateful: an instance of the builder should be used to only
52/// construct a single CFG.
53///
54/// Example usage:
55///
56/// CFGBuilder builder;
57/// CFG* cfg = builder.BuildAST(stmt1);
58///
Mike Stump31feda52009-07-17 01:31:16 +000059/// CFG construction is done via a recursive walk of an AST. We actually parse
60/// the AST in reverse order so that the successor of a basic block is
61/// constructed prior to its predecessor. This allows us to nicely capture
62/// implicit fall-throughs without extra basic blocks.
Ted Kremenek1b8ac852007-08-21 22:06:14 +000063///
Ted Kremenek93668002009-07-17 22:18:43 +000064class VISIBILITY_HIDDEN CFGBuilder {
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000065 CFG* cfg;
66 CFGBlock* Block;
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000067 CFGBlock* Succ;
Ted Kremenek1aebee02007-08-22 21:36:54 +000068 CFGBlock* ContinueTargetBlock;
Ted Kremeneke1810de2007-08-22 21:51:58 +000069 CFGBlock* BreakTargetBlock;
Ted Kremenek879d8e12007-08-23 18:43:24 +000070 CFGBlock* SwitchTerminatedBlock;
Ted Kremenek654c78f2008-02-13 22:05:39 +000071 CFGBlock* DefaultCaseBlock;
Mike Stump31feda52009-07-17 01:31:16 +000072
Ted Kremenekeda180e22007-08-28 19:26:49 +000073 // LabelMap records the mapping from Label expressions to their blocks.
Ted Kremenek8a632182007-08-21 23:26:17 +000074 typedef llvm::DenseMap<LabelStmt*,CFGBlock*> LabelMapTy;
75 LabelMapTy LabelMap;
Mike Stump31feda52009-07-17 01:31:16 +000076
77 // A list of blocks that end with a "goto" that must be backpatched to their
78 // resolved targets upon completion of CFG construction.
Ted Kremenekde979ae2007-08-22 15:40:58 +000079 typedef std::vector<CFGBlock*> BackpatchBlocksTy;
Ted Kremenek8a632182007-08-21 23:26:17 +000080 BackpatchBlocksTy BackpatchBlocks;
Mike Stump31feda52009-07-17 01:31:16 +000081
Ted Kremenekeda180e22007-08-28 19:26:49 +000082 // A list of labels whose address has been taken (for indirect gotos).
83 typedef llvm::SmallPtrSet<LabelStmt*,5> LabelSetTy;
84 LabelSetTy AddressTakenLabels;
Mike Stump31feda52009-07-17 01:31:16 +000085
86public:
Ted Kremenek889073f2007-08-23 16:51:22 +000087 explicit CFGBuilder() : cfg(NULL), Block(NULL), Succ(NULL),
Ted Kremeneke1810de2007-08-22 21:51:58 +000088 ContinueTargetBlock(NULL), BreakTargetBlock(NULL),
Ted Kremenek654c78f2008-02-13 22:05:39 +000089 SwitchTerminatedBlock(NULL), DefaultCaseBlock(NULL) {
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000090 // Create an empty CFG.
Mike Stump31feda52009-07-17 01:31:16 +000091 cfg = new CFG();
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000092 }
Mike Stump31feda52009-07-17 01:31:16 +000093
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +000094 ~CFGBuilder() { delete cfg; }
Mike Stump31feda52009-07-17 01:31:16 +000095
Ted Kremenek9aae5132007-08-23 21:42:29 +000096 // buildCFG - Used by external clients to construct the CFG.
97 CFG* buildCFG(Stmt* Statement);
Mike Stump31feda52009-07-17 01:31:16 +000098
Ted Kremenek93668002009-07-17 22:18:43 +000099private:
100 // Visitors to walk an AST and construct the CFG.
101 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, bool alwaysAdd);
102 CFGBlock *VisitBinaryOperator(BinaryOperator *B, bool alwaysAdd);
103 CFGBlock *VisitBlockExpr(BlockExpr* E);
104 CFGBlock *VisitBlockDeclRefExpr(BlockDeclRefExpr* E);
105 CFGBlock *VisitBreakStmt(BreakStmt *B);
106 CFGBlock *VisitCallExpr(CallExpr *C, bool alwaysAdd);
107 CFGBlock *VisitCaseStmt(CaseStmt *C);
Ted Kremenek21822592009-07-17 18:20:32 +0000108 CFGBlock *VisitChooseExpr(ChooseExpr *C);
109 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
110 CFGBlock *VisitConditionalOperator(ConditionalOperator *C);
111 CFGBlock *VisitContinueStmt(ContinueStmt *C);
Ted Kremenek93668002009-07-17 22:18:43 +0000112 CFGBlock *VisitDeclStmt(DeclStmt *DS);
113 CFGBlock *VisitDeclSubExpr(Decl* D);
Ted Kremenek21822592009-07-17 18:20:32 +0000114 CFGBlock *VisitDefaultStmt(DefaultStmt *D);
115 CFGBlock *VisitDoStmt(DoStmt *D);
116 CFGBlock *VisitForStmt(ForStmt *F);
Ted Kremenek93668002009-07-17 22:18:43 +0000117 CFGBlock *VisitGotoStmt(GotoStmt* G);
118 CFGBlock *VisitIfStmt(IfStmt *I);
119 CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
120 CFGBlock *VisitLabelStmt(LabelStmt *L);
121 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
122 CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
123 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
124 CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
125 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
126 CFGBlock *VisitReturnStmt(ReturnStmt* R);
127 CFGBlock *VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E);
128 CFGBlock *VisitStmtExpr(StmtExpr *S);
129 CFGBlock *VisitSwitchStmt(SwitchStmt *S);
130 CFGBlock *VisitWhileStmt(WhileStmt *W);
Mike Stump48871a22009-07-17 01:04:31 +0000131
Ted Kremenek93668002009-07-17 22:18:43 +0000132 CFGBlock *Visit(Stmt *S, bool alwaysAdd = false);
133 CFGBlock *VisitStmt(Stmt *S, bool alwaysAdd);
134 CFGBlock *VisitChildren(Stmt* S);
Mike Stump48871a22009-07-17 01:04:31 +0000135
Ted Kremenek6065ef62008-04-28 18:00:46 +0000136 // NYS == Not Yet Supported
137 CFGBlock* NYS() {
Ted Kremenekb64d1832008-03-13 03:04:22 +0000138 badCFG = true;
139 return Block;
140 }
Mike Stump31feda52009-07-17 01:31:16 +0000141
Ted Kremenek93668002009-07-17 22:18:43 +0000142 void autoCreateBlock() { if (!Block) Block = createBlock(); }
143 CFGBlock *createBlock(bool add_successor = true);
Ted Kremenek55957a82009-05-02 00:13:27 +0000144 bool FinishBlock(CFGBlock* B);
Ted Kremenek93668002009-07-17 22:18:43 +0000145 CFGBlock *addStmt(Stmt *S) { return Visit(S, true); }
146
Ted Kremenekb64d1832008-03-13 03:04:22 +0000147 bool badCFG;
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +0000148};
Mike Stump31feda52009-07-17 01:31:16 +0000149
Douglas Gregor4619e432008-12-05 23:32:09 +0000150// FIXME: Add support for dependent-sized array types in C++?
151// Does it even make sense to build a CFG for an uninstantiated template?
Ted Kremenekd86d39c2008-09-26 22:58:57 +0000152static VariableArrayType* FindVA(Type* t) {
153 while (ArrayType* vt = dyn_cast<ArrayType>(t)) {
154 if (VariableArrayType* vat = dyn_cast<VariableArrayType>(vt))
155 if (vat->getSizeExpr())
156 return vat;
Mike Stump31feda52009-07-17 01:31:16 +0000157
Ted Kremenekd86d39c2008-09-26 22:58:57 +0000158 t = vt->getElementType().getTypePtr();
159 }
Mike Stump31feda52009-07-17 01:31:16 +0000160
Ted Kremenekd86d39c2008-09-26 22:58:57 +0000161 return 0;
162}
Mike Stump31feda52009-07-17 01:31:16 +0000163
164/// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can represent an
165/// arbitrary statement. Examples include a single expression or a function
166/// body (compound statement). The ownership of the returned CFG is
167/// transferred to the caller. If CFG construction fails, this method returns
168/// NULL.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000169CFG* CFGBuilder::buildCFG(Stmt* Statement) {
Ted Kremenek93668002009-07-17 22:18:43 +0000170 assert(cfg);
171 if (!Statement)
172 return NULL;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000173
Ted Kremenekb64d1832008-03-13 03:04:22 +0000174 badCFG = false;
Mike Stump31feda52009-07-17 01:31:16 +0000175
176 // Create an empty block that will serve as the exit block for the CFG. Since
177 // this is the first block added to the CFG, it will be implicitly registered
178 // as the exit block.
Ted Kremenek81e14852007-08-27 19:46:09 +0000179 Succ = createBlock();
180 assert (Succ == &cfg->getExit());
181 Block = NULL; // the EXIT block is empty. Create all other blocks lazily.
Mike Stump31feda52009-07-17 01:31:16 +0000182
Ted Kremenek9aae5132007-08-23 21:42:29 +0000183 // Visit the statements and create the CFG.
Ted Kremenek93668002009-07-17 22:18:43 +0000184 CFGBlock* B = addStmt(Statement);
Ted Kremenek40d87632008-02-27 17:33:02 +0000185 if (!B) B = Succ;
Mike Stump31feda52009-07-17 01:31:16 +0000186
Ted Kremenek40d87632008-02-27 17:33:02 +0000187 if (B) {
Mike Stump31feda52009-07-17 01:31:16 +0000188 // Finalize the last constructed block. This usually involves reversing the
189 // order of the statements in the block.
Ted Kremenek81e14852007-08-27 19:46:09 +0000190 if (Block) FinishBlock(B);
Mike Stump31feda52009-07-17 01:31:16 +0000191
192 // Backpatch the gotos whose label -> block mappings we didn't know when we
193 // encountered them.
194 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
Ted Kremenek9aae5132007-08-23 21:42:29 +0000195 E = BackpatchBlocks.end(); I != E; ++I ) {
Mike Stump31feda52009-07-17 01:31:16 +0000196
Ted Kremenek9aae5132007-08-23 21:42:29 +0000197 CFGBlock* B = *I;
198 GotoStmt* G = cast<GotoStmt>(B->getTerminator());
199 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
200
201 // If there is no target for the goto, then we are looking at an
202 // incomplete AST. Handle this by not registering a successor.
203 if (LI == LabelMap.end()) continue;
Mike Stump31feda52009-07-17 01:31:16 +0000204
205 B->addSuccessor(LI->second);
Ted Kremenekeda180e22007-08-28 19:26:49 +0000206 }
Mike Stump31feda52009-07-17 01:31:16 +0000207
Ted Kremenekeda180e22007-08-28 19:26:49 +0000208 // Add successors to the Indirect Goto Dispatch block (if we have one).
209 if (CFGBlock* B = cfg->getIndirectGotoBlock())
210 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
211 E = AddressTakenLabels.end(); I != E; ++I ) {
212
213 // Lookup the target block.
214 LabelMapTy::iterator LI = LabelMap.find(*I);
215
216 // If there is no target block that contains label, then we are looking
217 // at an incomplete AST. Handle this by not registering a successor.
218 if (LI == LabelMap.end()) continue;
Mike Stump31feda52009-07-17 01:31:16 +0000219
220 B->addSuccessor(LI->second);
Ted Kremenekeda180e22007-08-28 19:26:49 +0000221 }
Mike Stump31feda52009-07-17 01:31:16 +0000222
Ted Kremenekcdc0bc42007-09-17 16:18:02 +0000223 Succ = B;
Ted Kremenek5c50fd12007-09-26 21:23:31 +0000224 }
Mike Stump31feda52009-07-17 01:31:16 +0000225
226 // Create an empty entry block that has no predecessors.
Ted Kremenek5c50fd12007-09-26 21:23:31 +0000227 cfg->setEntry(createBlock());
Mike Stump31feda52009-07-17 01:31:16 +0000228
Ted Kremenekb64d1832008-03-13 03:04:22 +0000229 if (badCFG) {
230 delete cfg;
231 cfg = NULL;
232 return NULL;
233 }
Mike Stump31feda52009-07-17 01:31:16 +0000234
235 // NULL out cfg so that repeated calls to the builder will fail and that the
236 // ownership of the constructed CFG is passed to the caller.
Ted Kremenek5c50fd12007-09-26 21:23:31 +0000237 CFG* t = cfg;
238 cfg = NULL;
239 return t;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000240}
Mike Stump31feda52009-07-17 01:31:16 +0000241
Ted Kremenek9aae5132007-08-23 21:42:29 +0000242/// createBlock - Used to lazily create blocks that are connected
243/// to the current (global) succcessor.
Mike Stump31feda52009-07-17 01:31:16 +0000244CFGBlock* CFGBuilder::createBlock(bool add_successor) {
Ted Kremenek813dd672007-09-05 20:02:05 +0000245 CFGBlock* B = cfg->createBlock();
Ted Kremenek93668002009-07-17 22:18:43 +0000246 if (add_successor && Succ)
247 B->addSuccessor(Succ);
Ted Kremenek9aae5132007-08-23 21:42:29 +0000248 return B;
249}
Mike Stump31feda52009-07-17 01:31:16 +0000250
251/// FinishBlock - When the last statement has been added to the block, we must
252/// reverse the statements because they have been inserted in reverse order.
Ted Kremenek55957a82009-05-02 00:13:27 +0000253bool CFGBuilder::FinishBlock(CFGBlock* B) {
254 if (badCFG)
255 return false;
256
Ted Kremenek93668002009-07-17 22:18:43 +0000257 assert(B);
Ted Kremenek81e14852007-08-27 19:46:09 +0000258 B->reverseStmts();
Ted Kremenek55957a82009-05-02 00:13:27 +0000259 return true;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000260}
261
Ted Kremenek93668002009-07-17 22:18:43 +0000262/// Visit - Walk the subtree of a statement and add extra
Mike Stump31feda52009-07-17 01:31:16 +0000263/// blocks for ternary operators, &&, and ||. We also process "," and
264/// DeclStmts (which may contain nested control-flow).
Ted Kremenek93668002009-07-17 22:18:43 +0000265CFGBlock* CFGBuilder::Visit(Stmt * S, bool alwaysAdd) {
266tryAgain:
267 switch (S->getStmtClass()) {
268 default:
269 return VisitStmt(S, alwaysAdd);
270
271 case Stmt::AddrLabelExprClass:
272 return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), alwaysAdd);
273
274 case Stmt::BinaryOperatorClass:
275 return VisitBinaryOperator(cast<BinaryOperator>(S), alwaysAdd);
276
277 case Stmt::BlockExprClass:
278 return VisitBlockExpr(cast<BlockExpr>(S));
279
280 case Stmt::BlockDeclRefExprClass:
281 return VisitBlockDeclRefExpr(cast<BlockDeclRefExpr>(S));
282
283 case Stmt::BreakStmtClass:
284 return VisitBreakStmt(cast<BreakStmt>(S));
285
286 case Stmt::CallExprClass:
287 return VisitCallExpr(cast<CallExpr>(S), alwaysAdd);
288
289 case Stmt::CaseStmtClass:
290 return VisitCaseStmt(cast<CaseStmt>(S));
291
292 case Stmt::ChooseExprClass:
293 return VisitChooseExpr(cast<ChooseExpr>(S));
294
295 case Stmt::CompoundStmtClass:
296 return VisitCompoundStmt(cast<CompoundStmt>(S));
297
298 case Stmt::ConditionalOperatorClass:
299 return VisitConditionalOperator(cast<ConditionalOperator>(S));
300
301 case Stmt::ContinueStmtClass:
302 return VisitContinueStmt(cast<ContinueStmt>(S));
303
304 case Stmt::DeclStmtClass:
305 return VisitDeclStmt(cast<DeclStmt>(S));
306
307 case Stmt::DefaultStmtClass:
308 return VisitDefaultStmt(cast<DefaultStmt>(S));
309
310 case Stmt::DoStmtClass:
311 return VisitDoStmt(cast<DoStmt>(S));
312
313 case Stmt::ForStmtClass:
314 return VisitForStmt(cast<ForStmt>(S));
315
316 case Stmt::GotoStmtClass:
317 return VisitGotoStmt(cast<GotoStmt>(S));
318
319 case Stmt::IfStmtClass:
320 return VisitIfStmt(cast<IfStmt>(S));
321
322 case Stmt::IndirectGotoStmtClass:
323 return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
324
325 case Stmt::LabelStmtClass:
326 return VisitLabelStmt(cast<LabelStmt>(S));
327
328 case Stmt::ObjCAtCatchStmtClass:
329 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
330
331 case Stmt::ObjCAtSynchronizedStmtClass:
332 return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
333
334 case Stmt::ObjCAtThrowStmtClass:
335 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
336
337 case Stmt::ObjCAtTryStmtClass:
338 return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
339
340 case Stmt::ObjCForCollectionStmtClass:
341 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
342
343 case Stmt::ParenExprClass:
344 S = cast<ParenExpr>(S)->getSubExpr();
345 goto tryAgain;
346
347 case Stmt::NullStmtClass:
348 return Block;
349
350 case Stmt::ReturnStmtClass:
351 return VisitReturnStmt(cast<ReturnStmt>(S));
352
353 case Stmt::SizeOfAlignOfExprClass:
354 return VisitSizeOfAlignOfExpr(cast<SizeOfAlignOfExpr>(S));
355
356 case Stmt::StmtExprClass:
357 return VisitStmtExpr(cast<StmtExpr>(S));
358
359 case Stmt::SwitchStmtClass:
360 return VisitSwitchStmt(cast<SwitchStmt>(S));
361
362 case Stmt::WhileStmtClass:
363 return VisitWhileStmt(cast<WhileStmt>(S));
364 }
365}
Ted Kremenek51d40b02009-07-17 18:15:54 +0000366
Ted Kremenek93668002009-07-17 22:18:43 +0000367CFGBlock *CFGBuilder::VisitStmt(Stmt *S, bool alwaysAdd) {
368 if (alwaysAdd) {
369 autoCreateBlock();
370 Block->appendStmt(S);
Mike Stump31feda52009-07-17 01:31:16 +0000371 }
Ted Kremenek93668002009-07-17 22:18:43 +0000372
373 return VisitChildren(S);
Ted Kremenek9e248872007-08-27 21:27:44 +0000374}
Mike Stump31feda52009-07-17 01:31:16 +0000375
Ted Kremenek93668002009-07-17 22:18:43 +0000376/// VisitChildren - Visit the children of a Stmt.
377CFGBlock *CFGBuilder::VisitChildren(Stmt* Terminator) {
378 CFGBlock *B = Block;
Mike Stumpd8ba7a22009-02-26 08:00:25 +0000379 for (Stmt::child_iterator I = Terminator->child_begin(),
Ted Kremenek93668002009-07-17 22:18:43 +0000380 E = Terminator->child_end(); I != E; ++I) {
381 if (*I) B = Visit(*I);
382 }
Ted Kremenek9e248872007-08-27 21:27:44 +0000383 return B;
384}
Ted Kremenek93668002009-07-17 22:18:43 +0000385
386CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A, bool alwaysAdd) {
387 AddressTakenLabels.insert(A->getLabel());
Ted Kremenek9e248872007-08-27 21:27:44 +0000388
Ted Kremenek93668002009-07-17 22:18:43 +0000389 if (alwaysAdd) {
390 autoCreateBlock();
391 Block->appendStmt(A);
392 }
Ted Kremenek81e14852007-08-27 19:46:09 +0000393
Ted Kremenek9aae5132007-08-23 21:42:29 +0000394 return Block;
395}
Ted Kremenek93668002009-07-17 22:18:43 +0000396
397CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B, bool alwaysAdd) {
398 if (B->isLogicalOp()) { // && or ||
Ted Kremenek9aae5132007-08-23 21:42:29 +0000399
Ted Kremenek93668002009-07-17 22:18:43 +0000400 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
401 ConfluenceBlock->appendStmt(B);
402
403 if (!FinishBlock(ConfluenceBlock))
404 return 0;
405
406 // create the block evaluating the LHS
407 CFGBlock* LHSBlock = createBlock(false);
408 LHSBlock->setTerminator(B);
409
410 // create the block evaluating the RHS
411 Succ = ConfluenceBlock;
412 Block = NULL;
413 CFGBlock* RHSBlock = addStmt(B->getRHS());
414 if (!FinishBlock(RHSBlock))
415 return 0;
416
417 // Now link the LHSBlock with RHSBlock.
418 if (B->getOpcode() == BinaryOperator::LOr) {
419 LHSBlock->addSuccessor(ConfluenceBlock);
420 LHSBlock->addSuccessor(RHSBlock);
421 } else {
422 assert (B->getOpcode() == BinaryOperator::LAnd);
423 LHSBlock->addSuccessor(RHSBlock);
424 LHSBlock->addSuccessor(ConfluenceBlock);
425 }
426
427 // Generate the blocks for evaluating the LHS.
428 Block = LHSBlock;
429 return addStmt(B->getLHS());
430 }
431 else if (B->getOpcode() == BinaryOperator::Comma) { // ,
Ted Kremenekfe9b7682009-07-17 22:57:50 +0000432 autoCreateBlock();
Ted Kremenek93668002009-07-17 22:18:43 +0000433 Block->appendStmt(B);
434 addStmt(B->getRHS());
435 return addStmt(B->getLHS());
436 }
437
438 return VisitStmt(B, alwaysAdd);
439}
440
441CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr* E) {
442 // FIXME
443 return NYS();
444}
445
446CFGBlock *CFGBuilder::VisitBlockDeclRefExpr(BlockDeclRefExpr* E) {
447 // FIXME
448 return NYS();
449}
450
451CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
452 // "break" is a control-flow statement. Thus we stop processing the current
453 // block.
454 if (Block && !FinishBlock(Block))
455 return 0;
456
457 // Now create a new block that ends with the break statement.
458 Block = createBlock(false);
459 Block->setTerminator(B);
460
461 // If there is no target for the break, then we are looking at an incomplete
462 // AST. This means that the CFG cannot be constructed.
463 if (BreakTargetBlock)
464 Block->addSuccessor(BreakTargetBlock);
465 else
466 badCFG = true;
467
468
Ted Kremenek9aae5132007-08-23 21:42:29 +0000469 return Block;
470}
Ted Kremenek93668002009-07-17 22:18:43 +0000471
472CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, bool alwaysAdd) {
473 // If this is a call to a no-return function, this stops the block here.
474 if (FunctionDecl *FD = C->getDirectCallee()) {
475
476 if (!FD->hasAttr<NoReturnAttr>())
477 return VisitStmt(C, alwaysAdd);
478
479 if (Block && !FinishBlock(Block))
480 return 0;
481
482 // Create new block with no successor for the remaining pieces.
483 Block = createBlock(false);
484 Block->appendStmt(C);
485
486 // Wire this to the exit block directly.
487 Block->addSuccessor(&cfg->getExit());
488
489 return VisitChildren(C);
490 }
491
492 return VisitStmt(C, alwaysAdd);
493}
Ted Kremenek9aae5132007-08-23 21:42:29 +0000494
Ted Kremenek21822592009-07-17 18:20:32 +0000495CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C) {
496 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
497 ConfluenceBlock->appendStmt(C);
498 if (!FinishBlock(ConfluenceBlock))
499 return 0;
500
501 Succ = ConfluenceBlock;
502 Block = NULL;
Ted Kremenek93668002009-07-17 22:18:43 +0000503 CFGBlock* LHSBlock = addStmt(C->getLHS());
Ted Kremenek21822592009-07-17 18:20:32 +0000504 if (!FinishBlock(LHSBlock))
505 return 0;
506
507 Succ = ConfluenceBlock;
508 Block = NULL;
Ted Kremenek93668002009-07-17 22:18:43 +0000509 CFGBlock* RHSBlock = addStmt(C->getRHS());
Ted Kremenek21822592009-07-17 18:20:32 +0000510 if (!FinishBlock(RHSBlock))
511 return 0;
512
513 Block = createBlock(false);
514 Block->addSuccessor(LHSBlock);
515 Block->addSuccessor(RHSBlock);
516 Block->setTerminator(C);
517 return addStmt(C->getCond());
518}
Ted Kremenek51d40b02009-07-17 18:15:54 +0000519
Ted Kremenek93668002009-07-17 22:18:43 +0000520
521CFGBlock* CFGBuilder::VisitCompoundStmt(CompoundStmt* C) {
522 CFGBlock* LastBlock = Block;
523
524 for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
525 I != E; ++I ) {
526 LastBlock = addStmt(*I);
527 }
528 return LastBlock;
529}
530
Ted Kremenek51d40b02009-07-17 18:15:54 +0000531CFGBlock *CFGBuilder::VisitConditionalOperator(ConditionalOperator *C) {
532 // Create the confluence block that will "merge" the results of the ternary
533 // expression.
534 CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
535 ConfluenceBlock->appendStmt(C);
536 if (!FinishBlock(ConfluenceBlock))
537 return 0;
538
539 // Create a block for the LHS expression if there is an LHS expression. A
540 // GCC extension allows LHS to be NULL, causing the condition to be the
541 // value that is returned instead.
542 // e.g: x ?: y is shorthand for: x ? x : y;
543 Succ = ConfluenceBlock;
544 Block = NULL;
545 CFGBlock* LHSBlock = NULL;
546 if (C->getLHS()) {
Ted Kremenek93668002009-07-17 22:18:43 +0000547 LHSBlock = addStmt(C->getLHS());
Ted Kremenek51d40b02009-07-17 18:15:54 +0000548 if (!FinishBlock(LHSBlock))
549 return 0;
550 Block = NULL;
551 }
552
553 // Create the block for the RHS expression.
554 Succ = ConfluenceBlock;
Ted Kremenek93668002009-07-17 22:18:43 +0000555 CFGBlock* RHSBlock = addStmt(C->getRHS());
Ted Kremenek51d40b02009-07-17 18:15:54 +0000556 if (!FinishBlock(RHSBlock))
557 return 0;
558
559 // Create the block that will contain the condition.
560 Block = createBlock(false);
561
562 if (LHSBlock)
563 Block->addSuccessor(LHSBlock);
564 else {
565 // If we have no LHS expression, add the ConfluenceBlock as a direct
566 // successor for the block containing the condition. Moreover, we need to
567 // reverse the order of the predecessors in the ConfluenceBlock because
568 // the RHSBlock will have been added to the succcessors already, and we
569 // want the first predecessor to the the block containing the expression
570 // for the case when the ternary expression evaluates to true.
571 Block->addSuccessor(ConfluenceBlock);
572 assert (ConfluenceBlock->pred_size() == 2);
573 std::reverse(ConfluenceBlock->pred_begin(),
574 ConfluenceBlock->pred_end());
575 }
576
577 Block->addSuccessor(RHSBlock);
578
579 Block->setTerminator(C);
580 return addStmt(C->getCond());
581}
582
Ted Kremenek93668002009-07-17 22:18:43 +0000583CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
584 autoCreateBlock();
Mike Stump31feda52009-07-17 01:31:16 +0000585
Ted Kremenek93668002009-07-17 22:18:43 +0000586 if (DS->isSingleDecl()) {
587 Block->appendStmt(DS);
588 return VisitDeclSubExpr(DS->getSingleDecl());
Ted Kremenekf6998822008-02-26 00:22:58 +0000589 }
Ted Kremenek93668002009-07-17 22:18:43 +0000590
591 CFGBlock *B = 0;
592
593 // FIXME: Add a reverse iterator for DeclStmt to avoid this extra copy.
594 typedef llvm::SmallVector<Decl*,10> BufTy;
595 BufTy Buf(DS->decl_begin(), DS->decl_end());
596
597 for (BufTy::reverse_iterator I = Buf.rbegin(), E = Buf.rend(); I != E; ++I) {
598 // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
599 unsigned A = llvm::AlignOf<DeclStmt>::Alignment < 8
600 ? 8 : llvm::AlignOf<DeclStmt>::Alignment;
601
602 // Allocate the DeclStmt using the BumpPtrAllocator. It will get
603 // automatically freed with the CFG.
604 DeclGroupRef DG(*I);
605 Decl *D = *I;
606 void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
607 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
608
609 // Append the fake DeclStmt to block.
610 Block->appendStmt(DSNew);
611 B = VisitDeclSubExpr(D);
612 }
613
614 return B;
615}
616
617/// VisitDeclSubExpr - Utility method to add block-level expressions for
618/// initializers in Decls.
619CFGBlock *CFGBuilder::VisitDeclSubExpr(Decl* D) {
620 assert(Block);
Ted Kremenekf6998822008-02-26 00:22:58 +0000621
Ted Kremenek93668002009-07-17 22:18:43 +0000622 VarDecl *VD = dyn_cast<VarDecl>(D);
623
624 if (!VD)
625 return Block;
626
627 Expr *Init = VD->getInit();
628
629 if (Init) {
630 // Optimization: Don't create separate block-level statements for literals.
631 switch (Init->getStmtClass()) {
632 case Stmt::IntegerLiteralClass:
633 case Stmt::CharacterLiteralClass:
634 case Stmt::StringLiteralClass:
635 break;
636 default:
637 Block = addStmt(Init);
638 }
639 }
640
641 // If the type of VD is a VLA, then we must process its size expressions.
642 for (VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); VA != 0;
643 VA = FindVA(VA->getElementType().getTypePtr()))
644 Block = addStmt(VA->getSizeExpr());
645
646 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000647}
648
649CFGBlock* CFGBuilder::VisitIfStmt(IfStmt* I) {
Mike Stump31feda52009-07-17 01:31:16 +0000650 // We may see an if statement in the middle of a basic block, or it may be the
651 // first statement we are processing. In either case, we create a new basic
652 // block. First, we create the blocks for the then...else statements, and
653 // then we create the block containing the if statement. If we were in the
654 // middle of a block, we stop processing that block and reverse its
655 // statements. That block is then the implicit successor for the "then" and
656 // "else" clauses.
657
658 // The block we were proccessing is now finished. Make it the successor
659 // block.
660 if (Block) {
Ted Kremenek9aae5132007-08-23 21:42:29 +0000661 Succ = Block;
Ted Kremenek55957a82009-05-02 00:13:27 +0000662 if (!FinishBlock(Block))
663 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000664 }
Mike Stump31feda52009-07-17 01:31:16 +0000665
Ted Kremenek0bcdc982009-07-17 18:04:55 +0000666 // Process the false branch.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000667 CFGBlock* ElseBlock = Succ;
Mike Stump31feda52009-07-17 01:31:16 +0000668
Ted Kremenek9aae5132007-08-23 21:42:29 +0000669 if (Stmt* Else = I->getElse()) {
670 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump31feda52009-07-17 01:31:16 +0000671
Ted Kremenek9aae5132007-08-23 21:42:29 +0000672 // NULL out Block so that the recursive call to Visit will
Mike Stump31feda52009-07-17 01:31:16 +0000673 // create a new basic block.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000674 Block = NULL;
Ted Kremenek93668002009-07-17 22:18:43 +0000675 ElseBlock = addStmt(Else);
Mike Stump31feda52009-07-17 01:31:16 +0000676
Ted Kremenekbbad8ce2007-08-30 18:13:31 +0000677 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
678 ElseBlock = sv.get();
Ted Kremenek55957a82009-05-02 00:13:27 +0000679 else if (Block) {
680 if (!FinishBlock(ElseBlock))
681 return 0;
682 }
Ted Kremenek9aae5132007-08-23 21:42:29 +0000683 }
Mike Stump31feda52009-07-17 01:31:16 +0000684
Ted Kremenek0bcdc982009-07-17 18:04:55 +0000685 // Process the true branch.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000686 CFGBlock* ThenBlock;
687 {
688 Stmt* Then = I->getThen();
689 assert (Then);
690 SaveAndRestore<CFGBlock*> sv(Succ);
Mike Stump31feda52009-07-17 01:31:16 +0000691 Block = NULL;
Ted Kremenek93668002009-07-17 22:18:43 +0000692 ThenBlock = addStmt(Then);
Mike Stump31feda52009-07-17 01:31:16 +0000693
Ted Kremenek1b379512009-04-01 03:52:47 +0000694 if (!ThenBlock) {
695 // We can reach here if the "then" body has all NullStmts.
696 // Create an empty block so we can distinguish between true and false
697 // branches in path-sensitive analyses.
698 ThenBlock = createBlock(false);
699 ThenBlock->addSuccessor(sv.get());
Mike Stump31feda52009-07-17 01:31:16 +0000700 } else if (Block) {
Ted Kremenek55957a82009-05-02 00:13:27 +0000701 if (!FinishBlock(ThenBlock))
702 return 0;
Mike Stump31feda52009-07-17 01:31:16 +0000703 }
Ted Kremenek9aae5132007-08-23 21:42:29 +0000704 }
705
Mike Stump31feda52009-07-17 01:31:16 +0000706 // Now create a new block containing the if statement.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000707 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +0000708
Ted Kremenek9aae5132007-08-23 21:42:29 +0000709 // Set the terminator of the new block to the If statement.
710 Block->setTerminator(I);
Mike Stump31feda52009-07-17 01:31:16 +0000711
Ted Kremenek9aae5132007-08-23 21:42:29 +0000712 // Now add the successors.
713 Block->addSuccessor(ThenBlock);
714 Block->addSuccessor(ElseBlock);
Mike Stump31feda52009-07-17 01:31:16 +0000715
716 // Add the condition as the last statement in the new block. This may create
717 // new blocks as the condition may contain control-flow. Any newly created
718 // blocks will be pointed to be "Block".
Ted Kremenek93668002009-07-17 22:18:43 +0000719 return addStmt(I->getCond());
Ted Kremenek9aae5132007-08-23 21:42:29 +0000720}
Mike Stump31feda52009-07-17 01:31:16 +0000721
722
Ted Kremenek9aae5132007-08-23 21:42:29 +0000723CFGBlock* CFGBuilder::VisitReturnStmt(ReturnStmt* R) {
Mike Stump31feda52009-07-17 01:31:16 +0000724 // If we were in the middle of a block we stop processing that block and
725 // reverse its statements.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000726 //
Mike Stump31feda52009-07-17 01:31:16 +0000727 // NOTE: If a "return" appears in the middle of a block, this means that the
728 // code afterwards is DEAD (unreachable). We still keep a basic block
729 // for that code; a simple "mark-and-sweep" from the entry block will be
730 // able to report such dead blocks.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000731 if (Block) FinishBlock(Block);
732
733 // Create the new block.
734 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +0000735
Ted Kremenek9aae5132007-08-23 21:42:29 +0000736 // The Exit block is the only successor.
737 Block->addSuccessor(&cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +0000738
739 // Add the return statement to the block. This may create new blocks if R
740 // contains control-flow (short-circuit operations).
Ted Kremenek93668002009-07-17 22:18:43 +0000741 return VisitStmt(R, true);
Ted Kremenek9aae5132007-08-23 21:42:29 +0000742}
743
744CFGBlock* CFGBuilder::VisitLabelStmt(LabelStmt* L) {
745 // Get the block of the labeled statement. Add it to our map.
Ted Kremenek93668002009-07-17 22:18:43 +0000746 addStmt(L->getSubStmt());
Ted Kremenekcab47bd2008-03-15 07:45:02 +0000747 CFGBlock* LabelBlock = Block;
Mike Stump31feda52009-07-17 01:31:16 +0000748
Ted Kremenek93668002009-07-17 22:18:43 +0000749 if (!LabelBlock) // This can happen when the body is empty, i.e.
750 LabelBlock = createBlock(); // scopes that only contains NullStmts.
Mike Stump31feda52009-07-17 01:31:16 +0000751
Ted Kremenek93668002009-07-17 22:18:43 +0000752 assert(LabelMap.find(L) == LabelMap.end() && "label already in map");
Ted Kremenek9aae5132007-08-23 21:42:29 +0000753 LabelMap[ L ] = LabelBlock;
Mike Stump31feda52009-07-17 01:31:16 +0000754
755 // Labels partition blocks, so this is the end of the basic block we were
756 // processing (L is the block's label). Because this is label (and we have
757 // already processed the substatement) there is no extra control-flow to worry
758 // about.
Ted Kremenek71eca012007-08-29 23:20:49 +0000759 LabelBlock->setLabel(L);
Ted Kremenek55957a82009-05-02 00:13:27 +0000760 if (!FinishBlock(LabelBlock))
761 return 0;
Mike Stump31feda52009-07-17 01:31:16 +0000762
763 // We set Block to NULL to allow lazy creation of a new block (if necessary);
Ted Kremenek9aae5132007-08-23 21:42:29 +0000764 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +0000765
Ted Kremenek9aae5132007-08-23 21:42:29 +0000766 // This block is now the implicit successor of other blocks.
767 Succ = LabelBlock;
Mike Stump31feda52009-07-17 01:31:16 +0000768
Ted Kremenek9aae5132007-08-23 21:42:29 +0000769 return LabelBlock;
770}
771
772CFGBlock* CFGBuilder::VisitGotoStmt(GotoStmt* G) {
Mike Stump31feda52009-07-17 01:31:16 +0000773 // Goto is a control-flow statement. Thus we stop processing the current
774 // block and create a new one.
Ted Kremenek93668002009-07-17 22:18:43 +0000775 if (Block)
776 FinishBlock(Block);
777
Ted Kremenek9aae5132007-08-23 21:42:29 +0000778 Block = createBlock(false);
779 Block->setTerminator(G);
Mike Stump31feda52009-07-17 01:31:16 +0000780
781 // If we already know the mapping to the label block add the successor now.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000782 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
Mike Stump31feda52009-07-17 01:31:16 +0000783
Ted Kremenek9aae5132007-08-23 21:42:29 +0000784 if (I == LabelMap.end())
785 // We will need to backpatch this block later.
786 BackpatchBlocks.push_back(Block);
787 else
788 Block->addSuccessor(I->second);
789
Mike Stump31feda52009-07-17 01:31:16 +0000790 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000791}
792
793CFGBlock* CFGBuilder::VisitForStmt(ForStmt* F) {
Mike Stump31feda52009-07-17 01:31:16 +0000794 // "for" is a control-flow statement. Thus we stop processing the current
795 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000796 CFGBlock* LoopSuccessor = NULL;
Mike Stump31feda52009-07-17 01:31:16 +0000797
Ted Kremenek9aae5132007-08-23 21:42:29 +0000798 if (Block) {
Ted Kremenek55957a82009-05-02 00:13:27 +0000799 if (!FinishBlock(Block))
800 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000801 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +0000802 } else
803 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +0000804
805 // Because of short-circuit evaluation, the condition of the loop can span
806 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
807 // evaluate the condition.
Ted Kremenek81e14852007-08-27 19:46:09 +0000808 CFGBlock* ExitConditionBlock = createBlock(false);
809 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +0000810
Ted Kremenek81e14852007-08-27 19:46:09 +0000811 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +0000812 ExitConditionBlock->setTerminator(F);
813
814 // Now add the actual condition to the condition block. Because the condition
815 // itself may contain control-flow, new blocks may be created.
Ted Kremenek81e14852007-08-27 19:46:09 +0000816 if (Stmt* C = F->getCond()) {
817 Block = ExitConditionBlock;
818 EntryConditionBlock = addStmt(C);
Ted Kremenek55957a82009-05-02 00:13:27 +0000819 if (Block) {
820 if (!FinishBlock(EntryConditionBlock))
821 return 0;
822 }
Ted Kremenek81e14852007-08-27 19:46:09 +0000823 }
Ted Kremenek9aae5132007-08-23 21:42:29 +0000824
Mike Stump31feda52009-07-17 01:31:16 +0000825 // The condition block is the implicit successor for the loop body as well as
826 // any code above the loop.
Ted Kremenek81e14852007-08-27 19:46:09 +0000827 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +0000828
Ted Kremenek9aae5132007-08-23 21:42:29 +0000829 // Now create the loop body.
830 {
831 assert (F->getBody());
Mike Stump31feda52009-07-17 01:31:16 +0000832
Ted Kremenek9aae5132007-08-23 21:42:29 +0000833 // Save the current values for Block, Succ, and continue and break targets
834 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
835 save_continue(ContinueTargetBlock),
Mike Stump31feda52009-07-17 01:31:16 +0000836 save_break(BreakTargetBlock);
837
Ted Kremeneke9610502007-08-30 18:39:40 +0000838 // Create a new block to contain the (bottom) of the loop body.
839 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +0000840
Ted Kremenekb0746ca2008-09-04 21:48:47 +0000841 if (Stmt* I = F->getInc()) {
Mike Stump31feda52009-07-17 01:31:16 +0000842 // Generate increment code in its own basic block. This is the target of
843 // continue statements.
Ted Kremenek93668002009-07-17 22:18:43 +0000844 Succ = addStmt(I);
Mike Stump31feda52009-07-17 01:31:16 +0000845 } else {
846 // No increment code. Create a special, empty, block that is used as the
847 // target block for "looping back" to the start of the loop.
Ted Kremenek902393b2009-04-28 00:51:56 +0000848 assert(Succ == EntryConditionBlock);
849 Succ = createBlock();
Ted Kremenekb0746ca2008-09-04 21:48:47 +0000850 }
Mike Stump31feda52009-07-17 01:31:16 +0000851
Ted Kremenek902393b2009-04-28 00:51:56 +0000852 // Finish up the increment (or empty) block if it hasn't been already.
853 if (Block) {
854 assert(Block == Succ);
Ted Kremenek55957a82009-05-02 00:13:27 +0000855 if (!FinishBlock(Block))
856 return 0;
Ted Kremenek902393b2009-04-28 00:51:56 +0000857 Block = 0;
858 }
Mike Stump31feda52009-07-17 01:31:16 +0000859
Ted Kremenek902393b2009-04-28 00:51:56 +0000860 ContinueTargetBlock = Succ;
Mike Stump31feda52009-07-17 01:31:16 +0000861
Ted Kremenek902393b2009-04-28 00:51:56 +0000862 // The starting block for the loop increment is the block that should
863 // represent the 'loop target' for looping back to the start of the loop.
864 ContinueTargetBlock->setLoopTarget(F);
865
Ted Kremenekb0746ca2008-09-04 21:48:47 +0000866 // All breaks should go to the code following the loop.
Mike Stump31feda52009-07-17 01:31:16 +0000867 BreakTargetBlock = LoopSuccessor;
868
869 // Now populate the body block, and in the process create new blocks as we
870 // walk the body of the loop.
Ted Kremenek93668002009-07-17 22:18:43 +0000871 CFGBlock* BodyBlock = addStmt(F->getBody());
Ted Kremeneke9610502007-08-30 18:39:40 +0000872
873 if (!BodyBlock)
Ted Kremenek39321aa2008-02-27 00:28:17 +0000874 BodyBlock = EntryConditionBlock; // can happen for "for (...;...; ) ;"
Ted Kremenek55957a82009-05-02 00:13:27 +0000875 else if (Block) {
876 if (!FinishBlock(BodyBlock))
877 return 0;
Mike Stump31feda52009-07-17 01:31:16 +0000878 }
879
Ted Kremenek81e14852007-08-27 19:46:09 +0000880 // This new body block is a successor to our "exit" condition block.
881 ExitConditionBlock->addSuccessor(BodyBlock);
Ted Kremenek9aae5132007-08-23 21:42:29 +0000882 }
Mike Stump31feda52009-07-17 01:31:16 +0000883
884 // Link up the condition block with the code that follows the loop. (the
885 // false branch).
Ted Kremenek81e14852007-08-27 19:46:09 +0000886 ExitConditionBlock->addSuccessor(LoopSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +0000887
Ted Kremenek9aae5132007-08-23 21:42:29 +0000888 // If the loop contains initialization, create a new block for those
Mike Stump31feda52009-07-17 01:31:16 +0000889 // statements. This block can also contain statements that precede the loop.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000890 if (Stmt* I = F->getInit()) {
891 Block = createBlock();
Ted Kremenek81e14852007-08-27 19:46:09 +0000892 return addStmt(I);
Mike Stump31feda52009-07-17 01:31:16 +0000893 } else {
894 // There is no loop initialization. We are thus basically a while loop.
895 // NULL out Block to force lazy block construction.
Ted Kremenek9aae5132007-08-23 21:42:29 +0000896 Block = NULL;
Ted Kremeneka1523a32008-02-27 07:20:00 +0000897 Succ = EntryConditionBlock;
Ted Kremenek81e14852007-08-27 19:46:09 +0000898 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +0000899 }
900}
901
Ted Kremenek9d56e642008-11-11 17:10:00 +0000902CFGBlock* CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt* S) {
903 // Objective-C fast enumeration 'for' statements:
904 // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
905 //
906 // for ( Type newVariable in collection_expression ) { statements }
907 //
908 // becomes:
909 //
910 // prologue:
911 // 1. collection_expression
912 // T. jump to loop_entry
913 // loop_entry:
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000914 // 1. side-effects of element expression
Ted Kremenek9d56e642008-11-11 17:10:00 +0000915 // 1. ObjCForCollectionStmt [performs binding to newVariable]
916 // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil]
917 // TB:
918 // statements
919 // T. jump to loop_entry
920 // FB:
921 // what comes after
922 //
923 // and
924 //
925 // Type existingItem;
926 // for ( existingItem in expression ) { statements }
927 //
928 // becomes:
929 //
Mike Stump31feda52009-07-17 01:31:16 +0000930 // the same with newVariable replaced with existingItem; the binding works
931 // the same except that for one ObjCForCollectionStmt::getElement() returns
932 // a DeclStmt and the other returns a DeclRefExpr.
Ted Kremenek9d56e642008-11-11 17:10:00 +0000933 //
Mike Stump31feda52009-07-17 01:31:16 +0000934
Ted Kremenek9d56e642008-11-11 17:10:00 +0000935 CFGBlock* LoopSuccessor = 0;
Mike Stump31feda52009-07-17 01:31:16 +0000936
Ted Kremenek9d56e642008-11-11 17:10:00 +0000937 if (Block) {
Ted Kremenek55957a82009-05-02 00:13:27 +0000938 if (!FinishBlock(Block))
939 return 0;
Ted Kremenek9d56e642008-11-11 17:10:00 +0000940 LoopSuccessor = Block;
941 Block = 0;
Ted Kremenek93668002009-07-17 22:18:43 +0000942 } else
943 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +0000944
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000945 // Build the condition blocks.
946 CFGBlock* ExitConditionBlock = createBlock(false);
947 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +0000948
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000949 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +0000950 ExitConditionBlock->setTerminator(S);
951
952 // The last statement in the block should be the ObjCForCollectionStmt, which
953 // performs the actual binding to 'element' and determines if there are any
954 // more items in the collection.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000955 ExitConditionBlock->appendStmt(S);
956 Block = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +0000957
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000958 // Walk the 'element' expression to see if there are any side-effects. We
Mike Stump31feda52009-07-17 01:31:16 +0000959 // generate new blocks as necesary. We DON'T add the statement by default to
960 // the CFG unless it contains control-flow.
Ted Kremenek93668002009-07-17 22:18:43 +0000961 EntryConditionBlock = Visit(S->getElement(), false);
Mike Stump31feda52009-07-17 01:31:16 +0000962 if (Block) {
Ted Kremenek55957a82009-05-02 00:13:27 +0000963 if (!FinishBlock(EntryConditionBlock))
964 return 0;
965 Block = 0;
966 }
Mike Stump31feda52009-07-17 01:31:16 +0000967
968 // The condition block is the implicit successor for the loop body as well as
969 // any code above the loop.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000970 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +0000971
Ted Kremenek9d56e642008-11-11 17:10:00 +0000972 // Now create the true branch.
Mike Stump31feda52009-07-17 01:31:16 +0000973 {
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000974 // Save the current values for Succ, continue and break targets.
975 SaveAndRestore<CFGBlock*> save_Succ(Succ),
Mike Stump31feda52009-07-17 01:31:16 +0000976 save_continue(ContinueTargetBlock), save_break(BreakTargetBlock);
977
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000978 BreakTargetBlock = LoopSuccessor;
Mike Stump31feda52009-07-17 01:31:16 +0000979 ContinueTargetBlock = EntryConditionBlock;
980
Ted Kremenek93668002009-07-17 22:18:43 +0000981 CFGBlock* BodyBlock = addStmt(S->getBody());
Mike Stump31feda52009-07-17 01:31:16 +0000982
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000983 if (!BodyBlock)
984 BodyBlock = EntryConditionBlock; // can happen for "for (X in Y) ;"
Ted Kremenek55957a82009-05-02 00:13:27 +0000985 else if (Block) {
986 if (!FinishBlock(BodyBlock))
987 return 0;
988 }
Mike Stump31feda52009-07-17 01:31:16 +0000989
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000990 // This new body block is a successor to our "exit" condition block.
991 ExitConditionBlock->addSuccessor(BodyBlock);
992 }
Mike Stump31feda52009-07-17 01:31:16 +0000993
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000994 // Link up the condition block with the code that follows the loop.
995 // (the false branch).
996 ExitConditionBlock->addSuccessor(LoopSuccessor);
997
Ted Kremenek9d56e642008-11-11 17:10:00 +0000998 // Now create a prologue block to contain the collection expression.
Ted Kremenek5cf87ff2008-11-14 01:57:41 +0000999 Block = createBlock();
Ted Kremenek9d56e642008-11-11 17:10:00 +00001000 return addStmt(S->getCollection());
Mike Stump31feda52009-07-17 01:31:16 +00001001}
1002
Ted Kremenek49805452009-05-02 01:49:13 +00001003CFGBlock* CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt* S) {
1004 // FIXME: Add locking 'primitives' to CFG for @synchronized.
Mike Stump31feda52009-07-17 01:31:16 +00001005
Ted Kremenek49805452009-05-02 01:49:13 +00001006 // Inline the body.
Ted Kremenek93668002009-07-17 22:18:43 +00001007 CFGBlock *SyncBlock = addStmt(S->getSynchBody());
Mike Stump31feda52009-07-17 01:31:16 +00001008
Ted Kremenekb3c657b2009-05-05 23:11:51 +00001009 // The sync body starts its own basic block. This makes it a little easier
1010 // for diagnostic clients.
1011 if (SyncBlock) {
1012 if (!FinishBlock(SyncBlock))
1013 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001014
Ted Kremenekb3c657b2009-05-05 23:11:51 +00001015 Block = 0;
1016 }
Mike Stump31feda52009-07-17 01:31:16 +00001017
Ted Kremenekb3c657b2009-05-05 23:11:51 +00001018 Succ = SyncBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001019
Ted Kremenek49805452009-05-02 01:49:13 +00001020 // Inline the sync expression.
Ted Kremenek93668002009-07-17 22:18:43 +00001021 return addStmt(S->getSynchExpr());
Ted Kremenek49805452009-05-02 01:49:13 +00001022}
Mike Stump31feda52009-07-17 01:31:16 +00001023
Ted Kremenek89cc8ea2009-03-30 22:29:21 +00001024CFGBlock* CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt* S) {
Ted Kremenek93668002009-07-17 22:18:43 +00001025 // FIXME
Ted Kremenek89be6522009-04-07 04:26:02 +00001026 return NYS();
Ted Kremenek89cc8ea2009-03-30 22:29:21 +00001027}
Ted Kremenek9d56e642008-11-11 17:10:00 +00001028
Ted Kremenek9aae5132007-08-23 21:42:29 +00001029CFGBlock* CFGBuilder::VisitWhileStmt(WhileStmt* W) {
Mike Stump31feda52009-07-17 01:31:16 +00001030 // "while" is a control-flow statement. Thus we stop processing the current
1031 // block.
1032
Ted Kremenek9aae5132007-08-23 21:42:29 +00001033 CFGBlock* LoopSuccessor = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001034
Ted Kremenek9aae5132007-08-23 21:42:29 +00001035 if (Block) {
Ted Kremenek55957a82009-05-02 00:13:27 +00001036 if (!FinishBlock(Block))
1037 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001038 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00001039 } else
1040 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00001041
1042 // Because of short-circuit evaluation, the condition of the loop can span
1043 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
1044 // evaluate the condition.
Ted Kremenek81e14852007-08-27 19:46:09 +00001045 CFGBlock* ExitConditionBlock = createBlock(false);
1046 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001047
Ted Kremenek81e14852007-08-27 19:46:09 +00001048 // Set the terminator for the "exit" condition block.
1049 ExitConditionBlock->setTerminator(W);
Mike Stump31feda52009-07-17 01:31:16 +00001050
1051 // Now add the actual condition to the condition block. Because the condition
1052 // itself may contain control-flow, new blocks may be created. Thus we update
1053 // "Succ" after adding the condition.
Ted Kremenek81e14852007-08-27 19:46:09 +00001054 if (Stmt* C = W->getCond()) {
1055 Block = ExitConditionBlock;
1056 EntryConditionBlock = addStmt(C);
Ted Kremenek49936f72009-04-28 03:09:44 +00001057 assert(Block == EntryConditionBlock);
Ted Kremenek55957a82009-05-02 00:13:27 +00001058 if (Block) {
1059 if (!FinishBlock(EntryConditionBlock))
1060 return 0;
1061 }
Ted Kremenek81e14852007-08-27 19:46:09 +00001062 }
Mike Stump31feda52009-07-17 01:31:16 +00001063
1064 // The condition block is the implicit successor for the loop body as well as
1065 // any code above the loop.
Ted Kremenek81e14852007-08-27 19:46:09 +00001066 Succ = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001067
Ted Kremenek9aae5132007-08-23 21:42:29 +00001068 // Process the loop body.
1069 {
Ted Kremenek49936f72009-04-28 03:09:44 +00001070 assert(W->getBody());
Ted Kremenek9aae5132007-08-23 21:42:29 +00001071
1072 // Save the current values for Block, Succ, and continue and break targets
1073 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
1074 save_continue(ContinueTargetBlock),
1075 save_break(BreakTargetBlock);
Ted Kremenek49936f72009-04-28 03:09:44 +00001076
Mike Stump31feda52009-07-17 01:31:16 +00001077 // Create an empty block to represent the transition block for looping back
1078 // to the head of the loop.
Ted Kremenek49936f72009-04-28 03:09:44 +00001079 Block = 0;
1080 assert(Succ == EntryConditionBlock);
1081 Succ = createBlock();
1082 Succ->setLoopTarget(W);
Mike Stump31feda52009-07-17 01:31:16 +00001083 ContinueTargetBlock = Succ;
1084
Ted Kremenek9aae5132007-08-23 21:42:29 +00001085 // All breaks should go to the code following the loop.
1086 BreakTargetBlock = LoopSuccessor;
Mike Stump31feda52009-07-17 01:31:16 +00001087
Ted Kremenek9aae5132007-08-23 21:42:29 +00001088 // NULL out Block to force lazy instantiation of blocks for the body.
1089 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001090
Ted Kremenek9aae5132007-08-23 21:42:29 +00001091 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek93668002009-07-17 22:18:43 +00001092 CFGBlock* BodyBlock = addStmt(W->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00001093
Ted Kremeneke9610502007-08-30 18:39:40 +00001094 if (!BodyBlock)
Ted Kremenek39321aa2008-02-27 00:28:17 +00001095 BodyBlock = EntryConditionBlock; // can happen for "while(...) ;"
Ted Kremenek55957a82009-05-02 00:13:27 +00001096 else if (Block) {
1097 if (!FinishBlock(BodyBlock))
1098 return 0;
1099 }
Mike Stump31feda52009-07-17 01:31:16 +00001100
Ted Kremenek9aae5132007-08-23 21:42:29 +00001101 // Add the loop body entry as a successor to the condition.
Ted Kremenek81e14852007-08-27 19:46:09 +00001102 ExitConditionBlock->addSuccessor(BodyBlock);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001103 }
Mike Stump31feda52009-07-17 01:31:16 +00001104
1105 // Link up the condition block with the code that follows the loop. (the
1106 // false branch).
Ted Kremenek81e14852007-08-27 19:46:09 +00001107 ExitConditionBlock->addSuccessor(LoopSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00001108
1109 // There can be no more statements in the condition block since we loop back
1110 // to this block. NULL out Block to force lazy creation of another block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001111 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001112
Ted Kremenek9aae5132007-08-23 21:42:29 +00001113 // Return the condition block, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00001114 Succ = EntryConditionBlock;
Ted Kremenek81e14852007-08-27 19:46:09 +00001115 return EntryConditionBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001116}
Ted Kremenek93668002009-07-17 22:18:43 +00001117
1118
1119CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt* S) {
1120 // FIXME: For now we pretend that @catch and the code it contains does not
1121 // exit.
1122 return Block;
1123}
Mike Stump31feda52009-07-17 01:31:16 +00001124
Ted Kremenek93041ba2008-12-09 20:20:09 +00001125CFGBlock* CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt* S) {
1126 // FIXME: This isn't complete. We basically treat @throw like a return
1127 // statement.
Mike Stump31feda52009-07-17 01:31:16 +00001128
1129 // If we were in the middle of a block we stop processing that block and
1130 // reverse its statements.
Ted Kremenek93668002009-07-17 22:18:43 +00001131 if (Block && !FinishBlock(Block))
1132 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001133
Ted Kremenek93041ba2008-12-09 20:20:09 +00001134 // Create the new block.
1135 Block = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00001136
Ted Kremenek93041ba2008-12-09 20:20:09 +00001137 // The Exit block is the only successor.
1138 Block->addSuccessor(&cfg->getExit());
Mike Stump31feda52009-07-17 01:31:16 +00001139
1140 // Add the statement to the block. This may create new blocks if S contains
1141 // control-flow (short-circuit operations).
Ted Kremenek93668002009-07-17 22:18:43 +00001142 return VisitStmt(S, true);
Ted Kremenek93041ba2008-12-09 20:20:09 +00001143}
Ted Kremenek9aae5132007-08-23 21:42:29 +00001144
Ted Kremenek93668002009-07-17 22:18:43 +00001145CFGBlock *CFGBuilder::VisitDoStmt(DoStmt* D) {
Ted Kremenek9aae5132007-08-23 21:42:29 +00001146 // "do...while" is a control-flow statement. Thus we stop processing the
1147 // current block.
Mike Stump31feda52009-07-17 01:31:16 +00001148
Ted Kremenek9aae5132007-08-23 21:42:29 +00001149 CFGBlock* LoopSuccessor = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001150
Ted Kremenek9aae5132007-08-23 21:42:29 +00001151 if (Block) {
Ted Kremenek55957a82009-05-02 00:13:27 +00001152 if (!FinishBlock(Block))
1153 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001154 LoopSuccessor = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00001155 } else
1156 LoopSuccessor = Succ;
Mike Stump31feda52009-07-17 01:31:16 +00001157
1158 // Because of short-circuit evaluation, the condition of the loop can span
1159 // multiple basic blocks. Thus we need the "Entry" and "Exit" blocks that
1160 // evaluate the condition.
Ted Kremenek81e14852007-08-27 19:46:09 +00001161 CFGBlock* ExitConditionBlock = createBlock(false);
1162 CFGBlock* EntryConditionBlock = ExitConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001163
Ted Kremenek81e14852007-08-27 19:46:09 +00001164 // Set the terminator for the "exit" condition block.
Mike Stump31feda52009-07-17 01:31:16 +00001165 ExitConditionBlock->setTerminator(D);
1166
1167 // Now add the actual condition to the condition block. Because the condition
1168 // itself may contain control-flow, new blocks may be created.
Ted Kremenek81e14852007-08-27 19:46:09 +00001169 if (Stmt* C = D->getCond()) {
1170 Block = ExitConditionBlock;
1171 EntryConditionBlock = addStmt(C);
Ted Kremenek55957a82009-05-02 00:13:27 +00001172 if (Block) {
1173 if (!FinishBlock(EntryConditionBlock))
1174 return 0;
1175 }
Ted Kremenek81e14852007-08-27 19:46:09 +00001176 }
Mike Stump31feda52009-07-17 01:31:16 +00001177
Ted Kremeneka1523a32008-02-27 07:20:00 +00001178 // The condition block is the implicit successor for the loop body.
Ted Kremenek81e14852007-08-27 19:46:09 +00001179 Succ = EntryConditionBlock;
1180
Ted Kremenek9aae5132007-08-23 21:42:29 +00001181 // Process the loop body.
Ted Kremenek81e14852007-08-27 19:46:09 +00001182 CFGBlock* BodyBlock = NULL;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001183 {
1184 assert (D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00001185
Ted Kremenek9aae5132007-08-23 21:42:29 +00001186 // Save the current values for Block, Succ, and continue and break targets
1187 SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
1188 save_continue(ContinueTargetBlock),
1189 save_break(BreakTargetBlock);
Mike Stump31feda52009-07-17 01:31:16 +00001190
Ted Kremenek9aae5132007-08-23 21:42:29 +00001191 // All continues within this loop should go to the condition block
Ted Kremenek81e14852007-08-27 19:46:09 +00001192 ContinueTargetBlock = EntryConditionBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001193
Ted Kremenek9aae5132007-08-23 21:42:29 +00001194 // All breaks should go to the code following the loop.
1195 BreakTargetBlock = LoopSuccessor;
Mike Stump31feda52009-07-17 01:31:16 +00001196
Ted Kremenek9aae5132007-08-23 21:42:29 +00001197 // NULL out Block to force lazy instantiation of blocks for the body.
1198 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001199
Ted Kremenek9aae5132007-08-23 21:42:29 +00001200 // Create the body. The returned block is the entry to the loop body.
Ted Kremenek93668002009-07-17 22:18:43 +00001201 BodyBlock = addStmt(D->getBody());
Mike Stump31feda52009-07-17 01:31:16 +00001202
Ted Kremeneke9610502007-08-30 18:39:40 +00001203 if (!BodyBlock)
Ted Kremenek39321aa2008-02-27 00:28:17 +00001204 BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
Ted Kremenek55957a82009-05-02 00:13:27 +00001205 else if (Block) {
1206 if (!FinishBlock(BodyBlock))
1207 return 0;
1208 }
Mike Stump31feda52009-07-17 01:31:16 +00001209
Ted Kremenekcb37bb02009-04-28 04:22:00 +00001210 // Add an intermediate block between the BodyBlock and the
Mike Stump31feda52009-07-17 01:31:16 +00001211 // ExitConditionBlock to represent the "loop back" transition. Create an
1212 // empty block to represent the transition block for looping back to the
1213 // head of the loop.
Ted Kremenekcb37bb02009-04-28 04:22:00 +00001214 // FIXME: Can we do this more efficiently without adding another block?
1215 Block = NULL;
1216 Succ = BodyBlock;
1217 CFGBlock *LoopBackBlock = createBlock();
1218 LoopBackBlock->setLoopTarget(D);
Mike Stump31feda52009-07-17 01:31:16 +00001219
Ted Kremenek9aae5132007-08-23 21:42:29 +00001220 // Add the loop body entry as a successor to the condition.
Ted Kremenekcb37bb02009-04-28 04:22:00 +00001221 ExitConditionBlock->addSuccessor(LoopBackBlock);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001222 }
Mike Stump31feda52009-07-17 01:31:16 +00001223
Ted Kremenek9aae5132007-08-23 21:42:29 +00001224 // Link up the condition block with the code that follows the loop.
1225 // (the false branch).
Ted Kremenek81e14852007-08-27 19:46:09 +00001226 ExitConditionBlock->addSuccessor(LoopSuccessor);
Mike Stump31feda52009-07-17 01:31:16 +00001227
1228 // There can be no more statements in the body block(s) since we loop back to
1229 // the body. NULL out Block to force lazy creation of another block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001230 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001231
Ted Kremenek9aae5132007-08-23 21:42:29 +00001232 // Return the loop body, which is the dominating block for the loop.
Ted Kremeneka1523a32008-02-27 07:20:00 +00001233 Succ = BodyBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001234 return BodyBlock;
1235}
1236
1237CFGBlock* CFGBuilder::VisitContinueStmt(ContinueStmt* C) {
1238 // "continue" is a control-flow statement. Thus we stop processing the
1239 // current block.
Ted Kremenek93668002009-07-17 22:18:43 +00001240 if (Block && !FinishBlock(Block))
Ted Kremenek55957a82009-05-02 00:13:27 +00001241 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001242
Ted Kremenek9aae5132007-08-23 21:42:29 +00001243 // Now create a new block that ends with the continue statement.
1244 Block = createBlock(false);
1245 Block->setTerminator(C);
Mike Stump31feda52009-07-17 01:31:16 +00001246
Ted Kremenek9aae5132007-08-23 21:42:29 +00001247 // If there is no target for the continue, then we are looking at an
Ted Kremenek882cf062009-04-07 18:53:24 +00001248 // incomplete AST. This means the CFG cannot be constructed.
1249 if (ContinueTargetBlock)
1250 Block->addSuccessor(ContinueTargetBlock);
1251 else
1252 badCFG = true;
Mike Stump31feda52009-07-17 01:31:16 +00001253
Ted Kremenek9aae5132007-08-23 21:42:29 +00001254 return Block;
1255}
Ted Kremenek93668002009-07-17 22:18:43 +00001256
1257CFGBlock *CFGBuilder::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E) {
1258 // VLA types have expressions that must be evaluated.
1259 if (E->isArgumentType()) {
1260 for (VariableArrayType* VA = FindVA(E->getArgumentType().getTypePtr());
1261 VA != 0; VA = FindVA(VA->getElementType().getTypePtr()))
1262 addStmt(VA->getSizeExpr());
Ted Kremenek55957a82009-05-02 00:13:27 +00001263 }
Ted Kremenek93668002009-07-17 22:18:43 +00001264 // Expressions in sizeof/alignof are not evaluated and thus have no
1265 // control flow.
1266 else {
1267 autoCreateBlock();
1268 Block->appendStmt(E);
1269 }
1270
Mike Stump31feda52009-07-17 01:31:16 +00001271 return Block;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001272}
Ted Kremenek93668002009-07-17 22:18:43 +00001273
1274/// VisitStmtExpr - Utility method to handle (nested) statement
1275/// expressions (a GCC extension).
1276CFGBlock* CFGBuilder::VisitStmtExpr(StmtExpr *SE) {
1277 autoCreateBlock();
1278 Block->appendStmt(SE);
1279 return VisitCompoundStmt(SE->getSubStmt());
1280}
Ted Kremenek9aae5132007-08-23 21:42:29 +00001281
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001282CFGBlock* CFGBuilder::VisitSwitchStmt(SwitchStmt* Terminator) {
Mike Stump31feda52009-07-17 01:31:16 +00001283 // "switch" is a control-flow statement. Thus we stop processing the current
1284 // block.
Ted Kremenek9aae5132007-08-23 21:42:29 +00001285 CFGBlock* SwitchSuccessor = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001286
Ted Kremenek9aae5132007-08-23 21:42:29 +00001287 if (Block) {
Ted Kremenek55957a82009-05-02 00:13:27 +00001288 if (!FinishBlock(Block))
1289 return 0;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001290 SwitchSuccessor = Block;
Mike Stump31feda52009-07-17 01:31:16 +00001291 } else SwitchSuccessor = Succ;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001292
1293 // Save the current "switch" context.
1294 SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
Ted Kremenek654c78f2008-02-13 22:05:39 +00001295 save_break(BreakTargetBlock),
1296 save_default(DefaultCaseBlock);
1297
Mike Stump31feda52009-07-17 01:31:16 +00001298 // Set the "default" case to be the block after the switch statement. If the
1299 // switch statement contains a "default:", this value will be overwritten with
1300 // the block for that code.
Ted Kremenek654c78f2008-02-13 22:05:39 +00001301 DefaultCaseBlock = SwitchSuccessor;
Mike Stump31feda52009-07-17 01:31:16 +00001302
Ted Kremenek9aae5132007-08-23 21:42:29 +00001303 // Create a new block that will contain the switch statement.
1304 SwitchTerminatedBlock = createBlock(false);
Mike Stump31feda52009-07-17 01:31:16 +00001305
Ted Kremenek9aae5132007-08-23 21:42:29 +00001306 // Now process the switch body. The code after the switch is the implicit
1307 // successor.
1308 Succ = SwitchSuccessor;
1309 BreakTargetBlock = SwitchSuccessor;
Mike Stump31feda52009-07-17 01:31:16 +00001310
1311 // When visiting the body, the case statements should automatically get linked
1312 // up to the switch. We also don't keep a pointer to the body, since all
1313 // control-flow from the switch goes to case/default statements.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001314 assert (Terminator->getBody() && "switch must contain a non-NULL body");
Ted Kremenek81e14852007-08-27 19:46:09 +00001315 Block = NULL;
Ted Kremenek93668002009-07-17 22:18:43 +00001316 CFGBlock *BodyBlock = addStmt(Terminator->getBody());
Ted Kremenek55957a82009-05-02 00:13:27 +00001317 if (Block) {
1318 if (!FinishBlock(BodyBlock))
1319 return 0;
1320 }
Ted Kremenek81e14852007-08-27 19:46:09 +00001321
Mike Stump31feda52009-07-17 01:31:16 +00001322 // If we have no "default:" case, the default transition is to the code
1323 // following the switch body.
Ted Kremenek654c78f2008-02-13 22:05:39 +00001324 SwitchTerminatedBlock->addSuccessor(DefaultCaseBlock);
Mike Stump31feda52009-07-17 01:31:16 +00001325
Ted Kremenek81e14852007-08-27 19:46:09 +00001326 // Add the terminator and condition in the switch block.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001327 SwitchTerminatedBlock->setTerminator(Terminator);
1328 assert (Terminator->getCond() && "switch condition must be non-NULL");
Ted Kremenek9aae5132007-08-23 21:42:29 +00001329 Block = SwitchTerminatedBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001330
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001331 return addStmt(Terminator->getCond());
Ted Kremenek9aae5132007-08-23 21:42:29 +00001332}
1333
Ted Kremenek93668002009-07-17 22:18:43 +00001334CFGBlock* CFGBuilder::VisitCaseStmt(CaseStmt* CS) {
Mike Stump31feda52009-07-17 01:31:16 +00001335 // CaseStmts are essentially labels, so they are the first statement in a
1336 // block.
Ted Kremenek55e91e82007-08-30 18:48:11 +00001337
Ted Kremenek93668002009-07-17 22:18:43 +00001338 if (CS->getSubStmt())
1339 addStmt(CS->getSubStmt());
1340
Ted Kremenek55e91e82007-08-30 18:48:11 +00001341 CFGBlock* CaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00001342 if (!CaseBlock)
1343 CaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00001344
1345 // Cases statements partition blocks, so this is the top of the basic block we
1346 // were processing (the "case XXX:" is the label).
Ted Kremenek93668002009-07-17 22:18:43 +00001347 CaseBlock->setLabel(CS);
1348
Ted Kremenek55957a82009-05-02 00:13:27 +00001349 if (!FinishBlock(CaseBlock))
1350 return 0;
Mike Stump31feda52009-07-17 01:31:16 +00001351
1352 // Add this block to the list of successors for the block with the switch
1353 // statement.
Ted Kremenek93668002009-07-17 22:18:43 +00001354 assert(SwitchTerminatedBlock);
Ted Kremenek654c78f2008-02-13 22:05:39 +00001355 SwitchTerminatedBlock->addSuccessor(CaseBlock);
Mike Stump31feda52009-07-17 01:31:16 +00001356
Ted Kremenek9aae5132007-08-23 21:42:29 +00001357 // We set Block to NULL to allow lazy creation of a new block (if necessary)
1358 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001359
Ted Kremenek9aae5132007-08-23 21:42:29 +00001360 // This block is now the implicit successor of other blocks.
1361 Succ = CaseBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001362
Ted Kremenekcab47bd2008-03-15 07:45:02 +00001363 return CaseBlock;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001364}
Mike Stump31feda52009-07-17 01:31:16 +00001365
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001366CFGBlock* CFGBuilder::VisitDefaultStmt(DefaultStmt* Terminator) {
Ted Kremenek93668002009-07-17 22:18:43 +00001367 if (Terminator->getSubStmt())
1368 addStmt(Terminator->getSubStmt());
1369
Ted Kremenek654c78f2008-02-13 22:05:39 +00001370 DefaultCaseBlock = Block;
Ted Kremenek93668002009-07-17 22:18:43 +00001371
1372 if (!DefaultCaseBlock)
1373 DefaultCaseBlock = createBlock();
Mike Stump31feda52009-07-17 01:31:16 +00001374
1375 // Default statements partition blocks, so this is the top of the basic block
1376 // we were processing (the "default:" is the label).
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001377 DefaultCaseBlock->setLabel(Terminator);
Ted Kremenek93668002009-07-17 22:18:43 +00001378
Ted Kremenek55957a82009-05-02 00:13:27 +00001379 if (!FinishBlock(DefaultCaseBlock))
1380 return 0;
Ted Kremenek654c78f2008-02-13 22:05:39 +00001381
Mike Stump31feda52009-07-17 01:31:16 +00001382 // Unlike case statements, we don't add the default block to the successors
1383 // for the switch statement immediately. This is done when we finish
1384 // processing the switch statement. This allows for the default case
1385 // (including a fall-through to the code after the switch statement) to always
1386 // be the last successor of a switch-terminated block.
1387
Ted Kremenek654c78f2008-02-13 22:05:39 +00001388 // We set Block to NULL to allow lazy creation of a new block (if necessary)
1389 Block = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001390
Ted Kremenek654c78f2008-02-13 22:05:39 +00001391 // This block is now the implicit successor of other blocks.
1392 Succ = DefaultCaseBlock;
Mike Stump31feda52009-07-17 01:31:16 +00001393
1394 return DefaultCaseBlock;
Ted Kremenek9682be12008-02-13 21:46:34 +00001395}
Ted Kremenek9aae5132007-08-23 21:42:29 +00001396
Ted Kremenekeda180e22007-08-28 19:26:49 +00001397CFGBlock* CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt* I) {
Mike Stump31feda52009-07-17 01:31:16 +00001398 // Lazily create the indirect-goto dispatch block if there isn't one already.
Ted Kremenekeda180e22007-08-28 19:26:49 +00001399 CFGBlock* IBlock = cfg->getIndirectGotoBlock();
Mike Stump31feda52009-07-17 01:31:16 +00001400
Ted Kremenekeda180e22007-08-28 19:26:49 +00001401 if (!IBlock) {
1402 IBlock = createBlock(false);
1403 cfg->setIndirectGotoBlock(IBlock);
1404 }
Mike Stump31feda52009-07-17 01:31:16 +00001405
Ted Kremenekeda180e22007-08-28 19:26:49 +00001406 // IndirectGoto is a control-flow statement. Thus we stop processing the
1407 // current block and create a new one.
Ted Kremenek93668002009-07-17 22:18:43 +00001408 if (Block && !FinishBlock(Block))
1409 return 0;
1410
Ted Kremenekeda180e22007-08-28 19:26:49 +00001411 Block = createBlock(false);
1412 Block->setTerminator(I);
1413 Block->addSuccessor(IBlock);
1414 return addStmt(I->getTarget());
1415}
1416
Ted Kremenek04cca642007-08-23 21:26:19 +00001417} // end anonymous namespace
Ted Kremenek889073f2007-08-23 16:51:22 +00001418
Mike Stump31feda52009-07-17 01:31:16 +00001419/// createBlock - Constructs and adds a new CFGBlock to the CFG. The block has
1420/// no successors or predecessors. If this is the first block created in the
1421/// CFG, it is automatically set to be the Entry and Exit of the CFG.
Ted Kremenek813dd672007-09-05 20:02:05 +00001422CFGBlock* CFG::createBlock() {
Ted Kremenek889073f2007-08-23 16:51:22 +00001423 bool first_block = begin() == end();
1424
1425 // Create the block.
Ted Kremenek813dd672007-09-05 20:02:05 +00001426 Blocks.push_front(CFGBlock(NumBlockIDs++));
Ted Kremenek889073f2007-08-23 16:51:22 +00001427
1428 // If this is the first block, set it as the Entry and Exit.
1429 if (first_block) Entry = Exit = &front();
1430
1431 // Return the block.
1432 return &front();
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001433}
1434
Ted Kremenek889073f2007-08-23 16:51:22 +00001435/// buildCFG - Constructs a CFG from an AST. Ownership of the returned
1436/// CFG is returned to the caller.
1437CFG* CFG::buildCFG(Stmt* Statement) {
1438 CFGBuilder Builder;
1439 return Builder.buildCFG(Statement);
1440}
1441
1442/// reverseStmts - Reverses the orders of statements within a CFGBlock.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001443void CFGBlock::reverseStmts() { std::reverse(Stmts.begin(),Stmts.end()); }
1444
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001445//===----------------------------------------------------------------------===//
1446// CFG: Queries for BlkExprs.
1447//===----------------------------------------------------------------------===//
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001448
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001449namespace {
Ted Kremenek85be7cf2008-01-17 20:48:37 +00001450 typedef llvm::DenseMap<const Stmt*,unsigned> BlkExprMapTy;
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001451}
1452
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001453static void FindSubExprAssignments(Stmt* Terminator, llvm::SmallPtrSet<Expr*,50>& Set) {
1454 if (!Terminator)
Ted Kremenek95a123c2008-01-26 00:03:27 +00001455 return;
Mike Stump31feda52009-07-17 01:31:16 +00001456
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001457 for (Stmt::child_iterator I=Terminator->child_begin(), E=Terminator->child_end(); I!=E; ++I) {
Ted Kremenek95a123c2008-01-26 00:03:27 +00001458 if (!*I) continue;
Mike Stump31feda52009-07-17 01:31:16 +00001459
Ted Kremenek95a123c2008-01-26 00:03:27 +00001460 if (BinaryOperator* B = dyn_cast<BinaryOperator>(*I))
1461 if (B->isAssignmentOp()) Set.insert(B);
Mike Stump31feda52009-07-17 01:31:16 +00001462
Ted Kremenek95a123c2008-01-26 00:03:27 +00001463 FindSubExprAssignments(*I, Set);
1464 }
1465}
1466
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001467static BlkExprMapTy* PopulateBlkExprMap(CFG& cfg) {
1468 BlkExprMapTy* M = new BlkExprMapTy();
Mike Stump31feda52009-07-17 01:31:16 +00001469
1470 // Look for assignments that are used as subexpressions. These are the only
1471 // assignments that we want to *possibly* register as a block-level
1472 // expression. Basically, if an assignment occurs both in a subexpression and
1473 // at the block-level, it is a block-level expression.
Ted Kremenek95a123c2008-01-26 00:03:27 +00001474 llvm::SmallPtrSet<Expr*,50> SubExprAssignments;
Mike Stump31feda52009-07-17 01:31:16 +00001475
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001476 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I)
1477 for (CFGBlock::iterator BI=I->begin(), EI=I->end(); BI != EI; ++BI)
Ted Kremenek95a123c2008-01-26 00:03:27 +00001478 FindSubExprAssignments(*BI, SubExprAssignments);
Ted Kremenek85be7cf2008-01-17 20:48:37 +00001479
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001480 for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) {
Mike Stump31feda52009-07-17 01:31:16 +00001481
1482 // Iterate over the statements again on identify the Expr* and Stmt* at the
1483 // block-level that are block-level expressions.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001484
Ted Kremenek95a123c2008-01-26 00:03:27 +00001485 for (CFGBlock::iterator BI=I->begin(), EI=I->end(); BI != EI; ++BI)
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001486 if (Expr* Exp = dyn_cast<Expr>(*BI)) {
Mike Stump31feda52009-07-17 01:31:16 +00001487
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001488 if (BinaryOperator* B = dyn_cast<BinaryOperator>(Exp)) {
Ted Kremenek95a123c2008-01-26 00:03:27 +00001489 // Assignment expressions that are not nested within another
Mike Stump31feda52009-07-17 01:31:16 +00001490 // expression are really "statements" whose value is never used by
1491 // another expression.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001492 if (B->isAssignmentOp() && !SubExprAssignments.count(Exp))
Ted Kremenek95a123c2008-01-26 00:03:27 +00001493 continue;
Mike Stump31feda52009-07-17 01:31:16 +00001494 } else if (const StmtExpr* Terminator = dyn_cast<StmtExpr>(Exp)) {
1495 // Special handling for statement expressions. The last statement in
1496 // the statement expression is also a block-level expr.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001497 const CompoundStmt* C = Terminator->getSubStmt();
Ted Kremenek85be7cf2008-01-17 20:48:37 +00001498 if (!C->body_empty()) {
Ted Kremenek95a123c2008-01-26 00:03:27 +00001499 unsigned x = M->size();
Ted Kremenek85be7cf2008-01-17 20:48:37 +00001500 (*M)[C->body_back()] = x;
1501 }
1502 }
Ted Kremenek0cb1ba22008-01-25 23:22:27 +00001503
Ted Kremenek95a123c2008-01-26 00:03:27 +00001504 unsigned x = M->size();
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001505 (*M)[Exp] = x;
Ted Kremenek95a123c2008-01-26 00:03:27 +00001506 }
Mike Stump31feda52009-07-17 01:31:16 +00001507
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001508 // Look at terminators. The condition is a block-level expression.
Mike Stump31feda52009-07-17 01:31:16 +00001509
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00001510 Stmt* S = I->getTerminatorCondition();
Mike Stump31feda52009-07-17 01:31:16 +00001511
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00001512 if (S && M->find(S) == M->end()) {
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001513 unsigned x = M->size();
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00001514 (*M)[S] = x;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001515 }
1516 }
Mike Stump31feda52009-07-17 01:31:16 +00001517
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001518 return M;
1519}
1520
Ted Kremenek85be7cf2008-01-17 20:48:37 +00001521CFG::BlkExprNumTy CFG::getBlkExprNum(const Stmt* S) {
1522 assert(S != NULL);
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001523 if (!BlkExprMap) { BlkExprMap = (void*) PopulateBlkExprMap(*this); }
Mike Stump31feda52009-07-17 01:31:16 +00001524
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001525 BlkExprMapTy* M = reinterpret_cast<BlkExprMapTy*>(BlkExprMap);
Ted Kremenek85be7cf2008-01-17 20:48:37 +00001526 BlkExprMapTy::iterator I = M->find(S);
Mike Stump31feda52009-07-17 01:31:16 +00001527
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001528 if (I == M->end()) return CFG::BlkExprNumTy();
1529 else return CFG::BlkExprNumTy(I->second);
1530}
1531
1532unsigned CFG::getNumBlkExprs() {
1533 if (const BlkExprMapTy* M = reinterpret_cast<const BlkExprMapTy*>(BlkExprMap))
1534 return M->size();
1535 else {
1536 // We assume callers interested in the number of BlkExprs will want
1537 // the map constructed if it doesn't already exist.
1538 BlkExprMap = (void*) PopulateBlkExprMap(*this);
1539 return reinterpret_cast<BlkExprMapTy*>(BlkExprMap)->size();
1540 }
1541}
1542
Ted Kremenek6065ef62008-04-28 18:00:46 +00001543//===----------------------------------------------------------------------===//
Ted Kremenek6065ef62008-04-28 18:00:46 +00001544// Cleanup: CFG dstor.
1545//===----------------------------------------------------------------------===//
1546
Ted Kremenekf2d4372b2007-10-01 19:33:33 +00001547CFG::~CFG() {
1548 delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap);
1549}
Mike Stump31feda52009-07-17 01:31:16 +00001550
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001551//===----------------------------------------------------------------------===//
1552// CFG pretty printing
1553//===----------------------------------------------------------------------===//
1554
Ted Kremenek7e776b12007-08-22 18:22:34 +00001555namespace {
1556
Ted Kremenek83ebcef2008-01-08 18:15:10 +00001557class VISIBILITY_HIDDEN StmtPrinterHelper : public PrinterHelper {
Mike Stump31feda52009-07-17 01:31:16 +00001558
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001559 typedef llvm::DenseMap<Stmt*,std::pair<unsigned,unsigned> > StmtMapTy;
1560 StmtMapTy StmtMap;
1561 signed CurrentBlock;
1562 unsigned CurrentStmt;
Chris Lattnerc61089a2009-06-30 01:26:17 +00001563 const LangOptions &LangOpts;
Ted Kremenek9aae5132007-08-23 21:42:29 +00001564public:
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001565
Chris Lattnerc61089a2009-06-30 01:26:17 +00001566 StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
1567 : CurrentBlock(0), CurrentStmt(0), LangOpts(LO) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001568 for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
1569 unsigned j = 1;
1570 for (CFGBlock::const_iterator BI = I->begin(), BEnd = I->end() ;
1571 BI != BEnd; ++BI, ++j )
1572 StmtMap[*BI] = std::make_pair(I->getBlockID(),j);
1573 }
1574 }
Mike Stump31feda52009-07-17 01:31:16 +00001575
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001576 virtual ~StmtPrinterHelper() {}
Mike Stump31feda52009-07-17 01:31:16 +00001577
Chris Lattnerc61089a2009-06-30 01:26:17 +00001578 const LangOptions &getLangOpts() const { return LangOpts; }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001579 void setBlockID(signed i) { CurrentBlock = i; }
1580 void setStmtID(unsigned i) { CurrentStmt = i; }
Mike Stump31feda52009-07-17 01:31:16 +00001581
Ted Kremenek2d470fc2008-09-13 05:16:45 +00001582 virtual bool handledStmt(Stmt* Terminator, llvm::raw_ostream& OS) {
Mike Stump31feda52009-07-17 01:31:16 +00001583
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001584 StmtMapTy::iterator I = StmtMap.find(Terminator);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001585
1586 if (I == StmtMap.end())
1587 return false;
Mike Stump31feda52009-07-17 01:31:16 +00001588
1589 if (CurrentBlock >= 0 && I->second.first == (unsigned) CurrentBlock
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001590 && I->second.second == CurrentStmt)
1591 return false;
Mike Stump31feda52009-07-17 01:31:16 +00001592
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001593 OS << "[B" << I->second.first << "." << I->second.second << "]";
1594 return true;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001595 }
1596};
Chris Lattnerc61089a2009-06-30 01:26:17 +00001597} // end anonymous namespace
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001598
Chris Lattnerc61089a2009-06-30 01:26:17 +00001599
1600namespace {
Ted Kremenek83ebcef2008-01-08 18:15:10 +00001601class VISIBILITY_HIDDEN CFGBlockTerminatorPrint
1602 : public StmtVisitor<CFGBlockTerminatorPrint,void> {
Mike Stump31feda52009-07-17 01:31:16 +00001603
Ted Kremenek2d470fc2008-09-13 05:16:45 +00001604 llvm::raw_ostream& OS;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001605 StmtPrinterHelper* Helper;
Douglas Gregor7de59662009-05-29 20:38:28 +00001606 PrintingPolicy Policy;
1607
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001608public:
Douglas Gregor7de59662009-05-29 20:38:28 +00001609 CFGBlockTerminatorPrint(llvm::raw_ostream& os, StmtPrinterHelper* helper,
Chris Lattnerc61089a2009-06-30 01:26:17 +00001610 const PrintingPolicy &Policy)
Douglas Gregor7de59662009-05-29 20:38:28 +00001611 : OS(os), Helper(helper), Policy(Policy) {}
Mike Stump31feda52009-07-17 01:31:16 +00001612
Ted Kremenek9aae5132007-08-23 21:42:29 +00001613 void VisitIfStmt(IfStmt* I) {
1614 OS << "if ";
Douglas Gregor7de59662009-05-29 20:38:28 +00001615 I->getCond()->printPretty(OS,Helper,Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001616 }
Mike Stump31feda52009-07-17 01:31:16 +00001617
Ted Kremenek9aae5132007-08-23 21:42:29 +00001618 // Default case.
Mike Stump31feda52009-07-17 01:31:16 +00001619 void VisitStmt(Stmt* Terminator) {
1620 Terminator->printPretty(OS, Helper, Policy);
1621 }
1622
Ted Kremenek9aae5132007-08-23 21:42:29 +00001623 void VisitForStmt(ForStmt* F) {
1624 OS << "for (" ;
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00001625 if (F->getInit()) OS << "...";
1626 OS << "; ";
Douglas Gregor7de59662009-05-29 20:38:28 +00001627 if (Stmt* C = F->getCond()) C->printPretty(OS, Helper, Policy);
Ted Kremenekfc7aafc2007-08-30 21:28:02 +00001628 OS << "; ";
1629 if (F->getInc()) OS << "...";
Ted Kremenek15647632008-01-30 23:02:42 +00001630 OS << ")";
Ted Kremenek9aae5132007-08-23 21:42:29 +00001631 }
Mike Stump31feda52009-07-17 01:31:16 +00001632
Ted Kremenek9aae5132007-08-23 21:42:29 +00001633 void VisitWhileStmt(WhileStmt* W) {
1634 OS << "while " ;
Douglas Gregor7de59662009-05-29 20:38:28 +00001635 if (Stmt* C = W->getCond()) C->printPretty(OS, Helper, Policy);
Ted Kremenek9aae5132007-08-23 21:42:29 +00001636 }
Mike Stump31feda52009-07-17 01:31:16 +00001637
Ted Kremenek9aae5132007-08-23 21:42:29 +00001638 void VisitDoStmt(DoStmt* D) {
1639 OS << "do ... while ";
Douglas Gregor7de59662009-05-29 20:38:28 +00001640 if (Stmt* C = D->getCond()) C->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00001641 }
Mike Stump31feda52009-07-17 01:31:16 +00001642
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001643 void VisitSwitchStmt(SwitchStmt* Terminator) {
Ted Kremenek9e248872007-08-27 21:27:44 +00001644 OS << "switch ";
Douglas Gregor7de59662009-05-29 20:38:28 +00001645 Terminator->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek9e248872007-08-27 21:27:44 +00001646 }
Mike Stump31feda52009-07-17 01:31:16 +00001647
Ted Kremenek7f7dd762007-08-31 21:49:40 +00001648 void VisitConditionalOperator(ConditionalOperator* C) {
Douglas Gregor7de59662009-05-29 20:38:28 +00001649 C->getCond()->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00001650 OS << " ? ... : ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00001651 }
Mike Stump31feda52009-07-17 01:31:16 +00001652
Ted Kremenek391f94a2007-08-31 22:29:13 +00001653 void VisitChooseExpr(ChooseExpr* C) {
1654 OS << "__builtin_choose_expr( ";
Douglas Gregor7de59662009-05-29 20:38:28 +00001655 C->getCond()->printPretty(OS, Helper, Policy);
Ted Kremenek15647632008-01-30 23:02:42 +00001656 OS << " )";
Ted Kremenek391f94a2007-08-31 22:29:13 +00001657 }
Mike Stump31feda52009-07-17 01:31:16 +00001658
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001659 void VisitIndirectGotoStmt(IndirectGotoStmt* I) {
1660 OS << "goto *";
Douglas Gregor7de59662009-05-29 20:38:28 +00001661 I->getTarget()->printPretty(OS, Helper, Policy);
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001662 }
Mike Stump31feda52009-07-17 01:31:16 +00001663
Ted Kremenek7f7dd762007-08-31 21:49:40 +00001664 void VisitBinaryOperator(BinaryOperator* B) {
1665 if (!B->isLogicalOp()) {
1666 VisitExpr(B);
1667 return;
1668 }
Mike Stump31feda52009-07-17 01:31:16 +00001669
Douglas Gregor7de59662009-05-29 20:38:28 +00001670 B->getLHS()->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00001671
Ted Kremenek7f7dd762007-08-31 21:49:40 +00001672 switch (B->getOpcode()) {
1673 case BinaryOperator::LOr:
Ted Kremenek15647632008-01-30 23:02:42 +00001674 OS << " || ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00001675 return;
1676 case BinaryOperator::LAnd:
Ted Kremenek15647632008-01-30 23:02:42 +00001677 OS << " && ...";
Ted Kremenek7f7dd762007-08-31 21:49:40 +00001678 return;
1679 default:
1680 assert(false && "Invalid logical operator.");
Mike Stump31feda52009-07-17 01:31:16 +00001681 }
Ted Kremenek7f7dd762007-08-31 21:49:40 +00001682 }
Mike Stump31feda52009-07-17 01:31:16 +00001683
Ted Kremenek12687ff2007-08-27 21:54:41 +00001684 void VisitExpr(Expr* E) {
Douglas Gregor7de59662009-05-29 20:38:28 +00001685 E->printPretty(OS, Helper, Policy);
Mike Stump31feda52009-07-17 01:31:16 +00001686 }
Ted Kremenek9aae5132007-08-23 21:42:29 +00001687};
Chris Lattnerc61089a2009-06-30 01:26:17 +00001688} // end anonymous namespace
1689
Mike Stump31feda52009-07-17 01:31:16 +00001690
Chris Lattnerc61089a2009-06-30 01:26:17 +00001691static void print_stmt(llvm::raw_ostream &OS, StmtPrinterHelper* Helper,
1692 Stmt* Terminator) {
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001693 if (Helper) {
1694 // special printing for statement-expressions.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001695 if (StmtExpr* SE = dyn_cast<StmtExpr>(Terminator)) {
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001696 CompoundStmt* Sub = SE->getSubStmt();
Mike Stump31feda52009-07-17 01:31:16 +00001697
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001698 if (Sub->child_begin() != Sub->child_end()) {
Ted Kremenekcc778062007-08-31 22:47:06 +00001699 OS << "({ ... ; ";
Ted Kremenek6d845f02007-10-29 20:41:04 +00001700 Helper->handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
Ted Kremenekcc778062007-08-31 22:47:06 +00001701 OS << " })\n";
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001702 return;
1703 }
1704 }
Mike Stump31feda52009-07-17 01:31:16 +00001705
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001706 // special printing for comma expressions.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001707 if (BinaryOperator* B = dyn_cast<BinaryOperator>(Terminator)) {
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001708 if (B->getOpcode() == BinaryOperator::Comma) {
1709 OS << "... , ";
1710 Helper->handledStmt(B->getRHS(),OS);
1711 OS << '\n';
1712 return;
Mike Stump31feda52009-07-17 01:31:16 +00001713 }
1714 }
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001715 }
Mike Stump31feda52009-07-17 01:31:16 +00001716
Chris Lattnerc61089a2009-06-30 01:26:17 +00001717 Terminator->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts()));
Mike Stump31feda52009-07-17 01:31:16 +00001718
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001719 // Expressions need a newline.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001720 if (isa<Expr>(Terminator)) OS << '\n';
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001721}
Mike Stump31feda52009-07-17 01:31:16 +00001722
Chris Lattnerc61089a2009-06-30 01:26:17 +00001723static void print_block(llvm::raw_ostream& OS, const CFG* cfg,
1724 const CFGBlock& B,
1725 StmtPrinterHelper* Helper, bool print_edges) {
Mike Stump31feda52009-07-17 01:31:16 +00001726
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001727 if (Helper) Helper->setBlockID(B.getBlockID());
Mike Stump31feda52009-07-17 01:31:16 +00001728
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001729 // Print the header.
Mike Stump31feda52009-07-17 01:31:16 +00001730 OS << "\n [ B" << B.getBlockID();
1731
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001732 if (&B == &cfg->getEntry())
1733 OS << " (ENTRY) ]\n";
1734 else if (&B == &cfg->getExit())
1735 OS << " (EXIT) ]\n";
1736 else if (&B == cfg->getIndirectGotoBlock())
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001737 OS << " (INDIRECT GOTO DISPATCH) ]\n";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001738 else
1739 OS << " ]\n";
Mike Stump31feda52009-07-17 01:31:16 +00001740
Ted Kremenek71eca012007-08-29 23:20:49 +00001741 // Print the label of this block.
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001742 if (Stmt* Terminator = const_cast<Stmt*>(B.getLabel())) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001743
1744 if (print_edges)
1745 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00001746
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001747 if (LabelStmt* L = dyn_cast<LabelStmt>(Terminator))
Ted Kremenek71eca012007-08-29 23:20:49 +00001748 OS << L->getName();
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001749 else if (CaseStmt* C = dyn_cast<CaseStmt>(Terminator)) {
Ted Kremenek71eca012007-08-29 23:20:49 +00001750 OS << "case ";
Chris Lattnerc61089a2009-06-30 01:26:17 +00001751 C->getLHS()->printPretty(OS, Helper,
1752 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00001753 if (C->getRHS()) {
1754 OS << " ... ";
Chris Lattnerc61089a2009-06-30 01:26:17 +00001755 C->getRHS()->printPretty(OS, Helper,
1756 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek71eca012007-08-29 23:20:49 +00001757 }
Mike Stump31feda52009-07-17 01:31:16 +00001758 } else if (isa<DefaultStmt>(Terminator))
Ted Kremenek71eca012007-08-29 23:20:49 +00001759 OS << "default";
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001760 else
1761 assert(false && "Invalid label statement in CFGBlock.");
Mike Stump31feda52009-07-17 01:31:16 +00001762
Ted Kremenek71eca012007-08-29 23:20:49 +00001763 OS << ":\n";
1764 }
Mike Stump31feda52009-07-17 01:31:16 +00001765
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001766 // Iterate through the statements in the block and print them.
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001767 unsigned j = 1;
Mike Stump31feda52009-07-17 01:31:16 +00001768
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001769 for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
1770 I != E ; ++I, ++j ) {
Mike Stump31feda52009-07-17 01:31:16 +00001771
Ted Kremenek71eca012007-08-29 23:20:49 +00001772 // Print the statement # in the basic block and the statement itself.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001773 if (print_edges)
1774 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00001775
Ted Kremenek2d470fc2008-09-13 05:16:45 +00001776 OS << llvm::format("%3d", j) << ": ";
Mike Stump31feda52009-07-17 01:31:16 +00001777
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001778 if (Helper)
1779 Helper->setStmtID(j);
Mike Stump31feda52009-07-17 01:31:16 +00001780
Ted Kremenekf8b50e92007-08-31 22:26:13 +00001781 print_stmt(OS,Helper,*I);
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001782 }
Mike Stump31feda52009-07-17 01:31:16 +00001783
Ted Kremenek71eca012007-08-29 23:20:49 +00001784 // Print the terminator of this block.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001785 if (B.getTerminator()) {
1786 if (print_edges)
1787 OS << " ";
Mike Stump31feda52009-07-17 01:31:16 +00001788
Ted Kremenek71eca012007-08-29 23:20:49 +00001789 OS << " T: ";
Mike Stump31feda52009-07-17 01:31:16 +00001790
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001791 if (Helper) Helper->setBlockID(-1);
Mike Stump31feda52009-07-17 01:31:16 +00001792
Chris Lattnerc61089a2009-06-30 01:26:17 +00001793 CFGBlockTerminatorPrint TPrinter(OS, Helper,
1794 PrintingPolicy(Helper->getLangOpts()));
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001795 TPrinter.Visit(const_cast<Stmt*>(B.getTerminator()));
Ted Kremenek15647632008-01-30 23:02:42 +00001796 OS << '\n';
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001797 }
Mike Stump31feda52009-07-17 01:31:16 +00001798
Ted Kremenek71eca012007-08-29 23:20:49 +00001799 if (print_edges) {
1800 // Print the predecessors of this block.
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001801 OS << " Predecessors (" << B.pred_size() << "):";
Ted Kremenek71eca012007-08-29 23:20:49 +00001802 unsigned i = 0;
Ted Kremenek71eca012007-08-29 23:20:49 +00001803
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001804 for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
1805 I != E; ++I, ++i) {
Mike Stump31feda52009-07-17 01:31:16 +00001806
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001807 if (i == 8 || (i-8) == 0)
1808 OS << "\n ";
Mike Stump31feda52009-07-17 01:31:16 +00001809
Ted Kremenek71eca012007-08-29 23:20:49 +00001810 OS << " B" << (*I)->getBlockID();
1811 }
Mike Stump31feda52009-07-17 01:31:16 +00001812
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001813 OS << '\n';
Mike Stump31feda52009-07-17 01:31:16 +00001814
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001815 // Print the successors of this block.
1816 OS << " Successors (" << B.succ_size() << "):";
1817 i = 0;
1818
1819 for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
1820 I != E; ++I, ++i) {
Mike Stump31feda52009-07-17 01:31:16 +00001821
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001822 if (i == 8 || (i-8) % 10 == 0)
1823 OS << "\n ";
1824
1825 OS << " B" << (*I)->getBlockID();
1826 }
Mike Stump31feda52009-07-17 01:31:16 +00001827
Ted Kremenek71eca012007-08-29 23:20:49 +00001828 OS << '\n';
Ted Kremenek4aa1e8b2007-08-21 21:42:03 +00001829 }
Mike Stump31feda52009-07-17 01:31:16 +00001830}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001831
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001832
1833/// dump - A simple pretty printer of a CFG that outputs to stderr.
Chris Lattnerc61089a2009-06-30 01:26:17 +00001834void CFG::dump(const LangOptions &LO) const { print(llvm::errs(), LO); }
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001835
1836/// print - A simple pretty printer of a CFG that outputs to an ostream.
Chris Lattnerc61089a2009-06-30 01:26:17 +00001837void CFG::print(llvm::raw_ostream &OS, const LangOptions &LO) const {
1838 StmtPrinterHelper Helper(this, LO);
Mike Stump31feda52009-07-17 01:31:16 +00001839
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001840 // Print the entry block.
1841 print_block(OS, this, getEntry(), &Helper, true);
Mike Stump31feda52009-07-17 01:31:16 +00001842
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001843 // Iterate through the CFGBlocks and print them one by one.
1844 for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
1845 // Skip the entry block, because we already printed it.
1846 if (&(*I) == &getEntry() || &(*I) == &getExit())
1847 continue;
Mike Stump31feda52009-07-17 01:31:16 +00001848
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001849 print_block(OS, this, *I, &Helper, true);
1850 }
Mike Stump31feda52009-07-17 01:31:16 +00001851
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001852 // Print the exit block.
1853 print_block(OS, this, getExit(), &Helper, true);
Ted Kremeneke03879b2008-11-24 20:50:24 +00001854 OS.flush();
Mike Stump31feda52009-07-17 01:31:16 +00001855}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001856
1857/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
Chris Lattnerc61089a2009-06-30 01:26:17 +00001858void CFGBlock::dump(const CFG* cfg, const LangOptions &LO) const {
1859 print(llvm::errs(), cfg, LO);
1860}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001861
1862/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
1863/// Generally this will only be called from CFG::print.
Chris Lattnerc61089a2009-06-30 01:26:17 +00001864void CFGBlock::print(llvm::raw_ostream& OS, const CFG* cfg,
1865 const LangOptions &LO) const {
1866 StmtPrinterHelper Helper(cfg, LO);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001867 print_block(OS, cfg, *this, &Helper, true);
Ted Kremenek889073f2007-08-23 16:51:22 +00001868}
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001869
Ted Kremenek15647632008-01-30 23:02:42 +00001870/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
Chris Lattnerc61089a2009-06-30 01:26:17 +00001871void CFGBlock::printTerminator(llvm::raw_ostream &OS,
Mike Stump31feda52009-07-17 01:31:16 +00001872 const LangOptions &LO) const {
Chris Lattnerc61089a2009-06-30 01:26:17 +00001873 CFGBlockTerminatorPrint TPrinter(OS, NULL, PrintingPolicy(LO));
Ted Kremenek15647632008-01-30 23:02:42 +00001874 TPrinter.Visit(const_cast<Stmt*>(getTerminator()));
1875}
1876
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00001877Stmt* CFGBlock::getTerminatorCondition() {
Mike Stump31feda52009-07-17 01:31:16 +00001878
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001879 if (!Terminator)
1880 return NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001881
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001882 Expr* E = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001883
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001884 switch (Terminator->getStmtClass()) {
1885 default:
1886 break;
Mike Stump31feda52009-07-17 01:31:16 +00001887
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001888 case Stmt::ForStmtClass:
1889 E = cast<ForStmt>(Terminator)->getCond();
1890 break;
Mike Stump31feda52009-07-17 01:31:16 +00001891
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001892 case Stmt::WhileStmtClass:
1893 E = cast<WhileStmt>(Terminator)->getCond();
1894 break;
Mike Stump31feda52009-07-17 01:31:16 +00001895
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001896 case Stmt::DoStmtClass:
1897 E = cast<DoStmt>(Terminator)->getCond();
1898 break;
Mike Stump31feda52009-07-17 01:31:16 +00001899
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001900 case Stmt::IfStmtClass:
1901 E = cast<IfStmt>(Terminator)->getCond();
1902 break;
Mike Stump31feda52009-07-17 01:31:16 +00001903
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001904 case Stmt::ChooseExprClass:
1905 E = cast<ChooseExpr>(Terminator)->getCond();
1906 break;
Mike Stump31feda52009-07-17 01:31:16 +00001907
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001908 case Stmt::IndirectGotoStmtClass:
1909 E = cast<IndirectGotoStmt>(Terminator)->getTarget();
1910 break;
Mike Stump31feda52009-07-17 01:31:16 +00001911
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001912 case Stmt::SwitchStmtClass:
1913 E = cast<SwitchStmt>(Terminator)->getCond();
1914 break;
Mike Stump31feda52009-07-17 01:31:16 +00001915
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001916 case Stmt::ConditionalOperatorClass:
1917 E = cast<ConditionalOperator>(Terminator)->getCond();
1918 break;
Mike Stump31feda52009-07-17 01:31:16 +00001919
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001920 case Stmt::BinaryOperatorClass: // '&&' and '||'
1921 E = cast<BinaryOperator>(Terminator)->getLHS();
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00001922 break;
Mike Stump31feda52009-07-17 01:31:16 +00001923
Ted Kremenek6d8b46e2008-11-12 21:11:49 +00001924 case Stmt::ObjCForCollectionStmtClass:
Mike Stump31feda52009-07-17 01:31:16 +00001925 return Terminator;
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001926 }
Mike Stump31feda52009-07-17 01:31:16 +00001927
Ted Kremenekc1f9a282008-04-16 21:10:48 +00001928 return E ? E->IgnoreParens() : NULL;
1929}
1930
Ted Kremenek92137a32008-05-16 16:06:00 +00001931bool CFGBlock::hasBinaryBranchTerminator() const {
Mike Stump31feda52009-07-17 01:31:16 +00001932
Ted Kremenek92137a32008-05-16 16:06:00 +00001933 if (!Terminator)
1934 return false;
Mike Stump31feda52009-07-17 01:31:16 +00001935
Ted Kremenek92137a32008-05-16 16:06:00 +00001936 Expr* E = NULL;
Mike Stump31feda52009-07-17 01:31:16 +00001937
Ted Kremenek92137a32008-05-16 16:06:00 +00001938 switch (Terminator->getStmtClass()) {
1939 default:
1940 return false;
Mike Stump31feda52009-07-17 01:31:16 +00001941
1942 case Stmt::ForStmtClass:
Ted Kremenek92137a32008-05-16 16:06:00 +00001943 case Stmt::WhileStmtClass:
1944 case Stmt::DoStmtClass:
1945 case Stmt::IfStmtClass:
1946 case Stmt::ChooseExprClass:
1947 case Stmt::ConditionalOperatorClass:
1948 case Stmt::BinaryOperatorClass:
Mike Stump31feda52009-07-17 01:31:16 +00001949 return true;
Ted Kremenek92137a32008-05-16 16:06:00 +00001950 }
Mike Stump31feda52009-07-17 01:31:16 +00001951
Ted Kremenek92137a32008-05-16 16:06:00 +00001952 return E ? E->IgnoreParens() : NULL;
1953}
1954
Ted Kremenek15647632008-01-30 23:02:42 +00001955
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001956//===----------------------------------------------------------------------===//
1957// CFG Graphviz Visualization
1958//===----------------------------------------------------------------------===//
1959
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001960
1961#ifndef NDEBUG
Mike Stump31feda52009-07-17 01:31:16 +00001962static StmtPrinterHelper* GraphHelper;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001963#endif
1964
Chris Lattnerc61089a2009-06-30 01:26:17 +00001965void CFG::viewCFG(const LangOptions &LO) const {
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001966#ifndef NDEBUG
Chris Lattnerc61089a2009-06-30 01:26:17 +00001967 StmtPrinterHelper H(this, LO);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001968 GraphHelper = &H;
1969 llvm::ViewGraph(this,"CFG");
1970 GraphHelper = NULL;
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001971#endif
1972}
1973
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001974namespace llvm {
1975template<>
1976struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
Owen Anderson4d9e93c2009-06-24 17:37:55 +00001977 static std::string getNodeLabel(const CFGBlock* Node, const CFG* Graph,
1978 bool ShortNames) {
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001979
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00001980#ifndef NDEBUG
Ted Kremenek2d470fc2008-09-13 05:16:45 +00001981 std::string OutSStr;
1982 llvm::raw_string_ostream Out(OutSStr);
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001983 print_block(Out,Graph, *Node, GraphHelper, false);
Ted Kremenek2d470fc2008-09-13 05:16:45 +00001984 std::string& OutStr = Out.str();
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001985
1986 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
1987
1988 // Process string output to make it nicer...
1989 for (unsigned i = 0; i != OutStr.length(); ++i)
1990 if (OutStr[i] == '\n') { // Left justify
1991 OutStr[i] = '\\';
1992 OutStr.insert(OutStr.begin()+i+1, 'l');
1993 }
Mike Stump31feda52009-07-17 01:31:16 +00001994
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001995 return OutStr;
Hartmut Kaiser04bd2ef2007-09-16 00:28:28 +00001996#else
1997 return "";
1998#endif
Ted Kremenek4e5f99d2007-08-29 21:56:09 +00001999 }
2000};
2001} // end namespace llvm