Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1 | //===--- CFG.cpp - Classes for representing and building CFGs----*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the CFG and CFGBuilder classes for representing and |
| 11 | // building Control-Flow Graphs (CFGs) from ASTs. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/AST/CFG.h" |
Ted Kremenek | c310e93 | 2007-08-21 22:06:14 +0000 | [diff] [blame] | 16 | #include "clang/AST/StmtVisitor.h" |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 17 | #include "clang/AST/PrettyPrinter.h" |
Ted Kremenek | 0cebe3e | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/DenseMap.h" |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallPtrSet.h" |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 20 | #include "llvm/Support/GraphWriter.h" |
Ted Kremenek | 7e3a89d | 2007-12-17 19:35:20 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Streams.h" |
Ted Kremenek | 6fa9b88 | 2008-01-08 18:15:10 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Compiler.h" |
Ted Kremenek | 274f433 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 23 | #include <llvm/Support/Allocator.h> |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 24 | #include <llvm/Support/Format.h> |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 25 | #include <iomanip> |
| 26 | #include <algorithm> |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 27 | #include <sstream> |
Ted Kremenek | 83c01da | 2008-01-11 00:40:29 +0000 | [diff] [blame] | 28 | |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 29 | using namespace clang; |
| 30 | |
| 31 | namespace { |
| 32 | |
Ted Kremenek | befef2f | 2007-08-23 21:26:19 +0000 | [diff] [blame] | 33 | // SaveAndRestore - A utility class that uses RIIA to save and restore |
| 34 | // the value of a variable. |
| 35 | template<typename T> |
Ted Kremenek | 6fa9b88 | 2008-01-08 18:15:10 +0000 | [diff] [blame] | 36 | struct VISIBILITY_HIDDEN SaveAndRestore { |
Ted Kremenek | befef2f | 2007-08-23 21:26:19 +0000 | [diff] [blame] | 37 | SaveAndRestore(T& x) : X(x), old_value(x) {} |
| 38 | ~SaveAndRestore() { X = old_value; } |
Ted Kremenek | b6f7b72 | 2007-08-30 18:13:31 +0000 | [diff] [blame] | 39 | T get() { return old_value; } |
| 40 | |
Ted Kremenek | befef2f | 2007-08-23 21:26:19 +0000 | [diff] [blame] | 41 | T& X; |
| 42 | T old_value; |
| 43 | }; |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 44 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 45 | static SourceLocation GetEndLoc(Decl* D) { |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 46 | if (VarDecl* VD = dyn_cast<VarDecl>(D)) |
| 47 | if (Expr* Ex = VD->getInit()) |
| 48 | return Ex->getSourceRange().getEnd(); |
| 49 | |
| 50 | return D->getLocation(); |
| 51 | } |
| 52 | |
Ted Kremenek | a34ea07 | 2008-08-04 22:51:42 +0000 | [diff] [blame] | 53 | /// CFGBuilder - This class implements CFG construction from an AST. |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 54 | /// The builder is stateful: an instance of the builder should be used to only |
| 55 | /// construct a single CFG. |
| 56 | /// |
| 57 | /// Example usage: |
| 58 | /// |
| 59 | /// CFGBuilder builder; |
| 60 | /// CFG* cfg = builder.BuildAST(stmt1); |
| 61 | /// |
Ted Kremenek | c310e93 | 2007-08-21 22:06:14 +0000 | [diff] [blame] | 62 | /// CFG construction is done via a recursive walk of an AST. |
| 63 | /// We actually parse the AST in reverse order so that the successor |
| 64 | /// of a basic block is constructed prior to its predecessor. This |
| 65 | /// allows us to nicely capture implicit fall-throughs without extra |
| 66 | /// basic blocks. |
| 67 | /// |
Ted Kremenek | 6fa9b88 | 2008-01-08 18:15:10 +0000 | [diff] [blame] | 68 | class VISIBILITY_HIDDEN CFGBuilder : public StmtVisitor<CFGBuilder,CFGBlock*> { |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 69 | CFG* cfg; |
| 70 | CFGBlock* Block; |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 71 | CFGBlock* Succ; |
Ted Kremenek | bf15b27 | 2007-08-22 21:36:54 +0000 | [diff] [blame] | 72 | CFGBlock* ContinueTargetBlock; |
Ted Kremenek | 8a29471 | 2007-08-22 21:51:58 +0000 | [diff] [blame] | 73 | CFGBlock* BreakTargetBlock; |
Ted Kremenek | b5c13b0 | 2007-08-23 18:43:24 +0000 | [diff] [blame] | 74 | CFGBlock* SwitchTerminatedBlock; |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 75 | CFGBlock* DefaultCaseBlock; |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 76 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 77 | // LabelMap records the mapping from Label expressions to their blocks. |
Ted Kremenek | 0cebe3e | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 78 | typedef llvm::DenseMap<LabelStmt*,CFGBlock*> LabelMapTy; |
| 79 | LabelMapTy LabelMap; |
| 80 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 81 | // A list of blocks that end with a "goto" that must be backpatched to |
| 82 | // their resolved targets upon completion of CFG construction. |
Ted Kremenek | 4a2b8a1 | 2007-08-22 15:40:58 +0000 | [diff] [blame] | 83 | typedef std::vector<CFGBlock*> BackpatchBlocksTy; |
Ted Kremenek | 0cebe3e | 2007-08-21 23:26:17 +0000 | [diff] [blame] | 84 | BackpatchBlocksTy BackpatchBlocks; |
| 85 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 86 | // A list of labels whose address has been taken (for indirect gotos). |
| 87 | typedef llvm::SmallPtrSet<LabelStmt*,5> LabelSetTy; |
| 88 | LabelSetTy AddressTakenLabels; |
| 89 | |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 90 | public: |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 91 | explicit CFGBuilder() : cfg(NULL), Block(NULL), Succ(NULL), |
Ted Kremenek | 8a29471 | 2007-08-22 21:51:58 +0000 | [diff] [blame] | 92 | ContinueTargetBlock(NULL), BreakTargetBlock(NULL), |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 93 | SwitchTerminatedBlock(NULL), DefaultCaseBlock(NULL) { |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 94 | // Create an empty CFG. |
| 95 | cfg = new CFG(); |
| 96 | } |
| 97 | |
| 98 | ~CFGBuilder() { delete cfg; } |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 99 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 100 | // buildCFG - Used by external clients to construct the CFG. |
| 101 | CFG* buildCFG(Stmt* Statement); |
Ted Kremenek | c310e93 | 2007-08-21 22:06:14 +0000 | [diff] [blame] | 102 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 103 | // Visitors to walk an AST and construct the CFG. Called by |
| 104 | // buildCFG. Do not call directly! |
Ted Kremenek | e8ee26b | 2007-08-22 18:22:34 +0000 | [diff] [blame] | 105 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 106 | CFGBlock* VisitBreakStmt(BreakStmt* B); |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 107 | CFGBlock* VisitCaseStmt(CaseStmt* Terminator); |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 108 | CFGBlock* VisitCompoundStmt(CompoundStmt* C); |
| 109 | CFGBlock* VisitContinueStmt(ContinueStmt* C); |
Ted Kremenek | 295222c | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 110 | CFGBlock* VisitDefaultStmt(DefaultStmt* D); |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 111 | CFGBlock* VisitDoStmt(DoStmt* D); |
| 112 | CFGBlock* VisitForStmt(ForStmt* F); |
| 113 | CFGBlock* VisitGotoStmt(GotoStmt* G); |
| 114 | CFGBlock* VisitIfStmt(IfStmt* I); |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 115 | CFGBlock* VisitIndirectGotoStmt(IndirectGotoStmt* I); |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 116 | CFGBlock* VisitLabelStmt(LabelStmt* L); |
| 117 | CFGBlock* VisitNullStmt(NullStmt* Statement); |
| 118 | CFGBlock* VisitObjCForCollectionStmt(ObjCForCollectionStmt* S); |
| 119 | CFGBlock* VisitReturnStmt(ReturnStmt* R); |
| 120 | CFGBlock* VisitStmt(Stmt* Statement); |
| 121 | CFGBlock* VisitSwitchStmt(SwitchStmt* Terminator); |
| 122 | CFGBlock* VisitWhileStmt(WhileStmt* W); |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 123 | |
Ted Kremenek | 4102af9 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 124 | // FIXME: Add support for ObjC-specific control-flow structures. |
| 125 | |
Ted Kremenek | 274f433 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 126 | // NYS == Not Yet Supported |
| 127 | CFGBlock* NYS() { |
Ted Kremenek | 4102af9 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 128 | badCFG = true; |
| 129 | return Block; |
| 130 | } |
| 131 | |
Ted Kremenek | 274f433 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 132 | CFGBlock* VisitObjCAtTryStmt(ObjCAtTryStmt* S) { return NYS(); } |
| 133 | CFGBlock* VisitObjCAtCatchStmt(ObjCAtCatchStmt* S) { return NYS(); } |
| 134 | CFGBlock* VisitObjCAtFinallyStmt(ObjCAtFinallyStmt* S) { return NYS(); } |
Ted Kremenek | 2fda504 | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 135 | |
| 136 | // FIXME: This is not completely supported. We basically @throw like |
| 137 | // a 'return'. |
| 138 | CFGBlock* VisitObjCAtThrowStmt(ObjCAtThrowStmt* S); |
Ted Kremenek | 274f433 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 139 | |
| 140 | CFGBlock* VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt* S){ |
| 141 | return NYS(); |
Ted Kremenek | 4102af9 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 142 | } |
| 143 | |
Ted Kremenek | 00c0a30 | 2008-09-26 18:17:07 +0000 | [diff] [blame] | 144 | // Blocks. |
| 145 | CFGBlock* VisitBlockExpr(BlockExpr* E) { return NYS(); } |
| 146 | CFGBlock* VisitBlockDeclRefExpr(BlockDeclRefExpr* E) { return NYS(); } |
| 147 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 148 | private: |
| 149 | CFGBlock* createBlock(bool add_successor = true); |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 150 | CFGBlock* addStmt(Stmt* Terminator); |
| 151 | CFGBlock* WalkAST(Stmt* Terminator, bool AlwaysAddStmt); |
| 152 | CFGBlock* WalkAST_VisitChildren(Stmt* Terminator); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 153 | CFGBlock* WalkAST_VisitDeclSubExpr(Decl* D); |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 154 | CFGBlock* WalkAST_VisitStmtExpr(StmtExpr* Terminator); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 155 | void FinishBlock(CFGBlock* B); |
Ted Kremenek | e8ee26b | 2007-08-22 18:22:34 +0000 | [diff] [blame] | 156 | |
Ted Kremenek | 4102af9 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 157 | bool badCFG; |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 158 | }; |
Ted Kremenek | 610a09e | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 159 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 160 | // FIXME: Add support for dependent-sized array types in C++? |
| 161 | // Does it even make sense to build a CFG for an uninstantiated template? |
Ted Kremenek | 610a09e | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 162 | static VariableArrayType* FindVA(Type* t) { |
| 163 | while (ArrayType* vt = dyn_cast<ArrayType>(t)) { |
| 164 | if (VariableArrayType* vat = dyn_cast<VariableArrayType>(vt)) |
| 165 | if (vat->getSizeExpr()) |
| 166 | return vat; |
| 167 | |
| 168 | t = vt->getElementType().getTypePtr(); |
| 169 | } |
| 170 | |
| 171 | return 0; |
| 172 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 173 | |
| 174 | /// BuildCFG - Constructs a CFG from an AST (a Stmt*). The AST can |
| 175 | /// represent an arbitrary statement. Examples include a single expression |
| 176 | /// or a function body (compound statement). The ownership of the returned |
| 177 | /// CFG is transferred to the caller. If CFG construction fails, this method |
| 178 | /// returns NULL. |
| 179 | CFG* CFGBuilder::buildCFG(Stmt* Statement) { |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 180 | assert (cfg); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 181 | if (!Statement) return NULL; |
| 182 | |
Ted Kremenek | 4102af9 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 183 | badCFG = false; |
| 184 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 185 | // Create an empty block that will serve as the exit block for the CFG. |
| 186 | // Since this is the first block added to the CFG, it will be implicitly |
| 187 | // registered as the exit block. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 188 | Succ = createBlock(); |
| 189 | assert (Succ == &cfg->getExit()); |
| 190 | Block = NULL; // the EXIT block is empty. Create all other blocks lazily. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 191 | |
| 192 | // Visit the statements and create the CFG. |
Ted Kremenek | 0d99ecf | 2008-02-27 17:33:02 +0000 | [diff] [blame] | 193 | CFGBlock* B = Visit(Statement); |
| 194 | if (!B) B = Succ; |
| 195 | |
| 196 | if (B) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 197 | // Finalize the last constructed block. This usually involves |
| 198 | // reversing the order of the statements in the block. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 199 | if (Block) FinishBlock(B); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 200 | |
| 201 | // Backpatch the gotos whose label -> block mappings we didn't know |
| 202 | // when we encountered them. |
| 203 | for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(), |
| 204 | E = BackpatchBlocks.end(); I != E; ++I ) { |
| 205 | |
| 206 | CFGBlock* B = *I; |
| 207 | GotoStmt* G = cast<GotoStmt>(B->getTerminator()); |
| 208 | LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); |
| 209 | |
| 210 | // If there is no target for the goto, then we are looking at an |
| 211 | // incomplete AST. Handle this by not registering a successor. |
| 212 | if (LI == LabelMap.end()) continue; |
| 213 | |
| 214 | B->addSuccessor(LI->second); |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 215 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 216 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 217 | // Add successors to the Indirect Goto Dispatch block (if we have one). |
| 218 | if (CFGBlock* B = cfg->getIndirectGotoBlock()) |
| 219 | for (LabelSetTy::iterator I = AddressTakenLabels.begin(), |
| 220 | E = AddressTakenLabels.end(); I != E; ++I ) { |
| 221 | |
| 222 | // Lookup the target block. |
| 223 | LabelMapTy::iterator LI = LabelMap.find(*I); |
| 224 | |
| 225 | // If there is no target block that contains label, then we are looking |
| 226 | // at an incomplete AST. Handle this by not registering a successor. |
| 227 | if (LI == LabelMap.end()) continue; |
| 228 | |
| 229 | B->addSuccessor(LI->second); |
| 230 | } |
Ted Kremenek | 322f58d | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 231 | |
Ted Kremenek | 94b3316 | 2007-09-17 16:18:02 +0000 | [diff] [blame] | 232 | Succ = B; |
Ted Kremenek | 322f58d | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | // Create an empty entry block that has no predecessors. |
| 236 | cfg->setEntry(createBlock()); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 237 | |
Ted Kremenek | 4102af9 | 2008-03-13 03:04:22 +0000 | [diff] [blame] | 238 | if (badCFG) { |
| 239 | delete cfg; |
| 240 | cfg = NULL; |
| 241 | return NULL; |
| 242 | } |
| 243 | |
Ted Kremenek | 322f58d | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 244 | // NULL out cfg so that repeated calls to the builder will fail and that |
| 245 | // the ownership of the constructed CFG is passed to the caller. |
| 246 | CFG* t = cfg; |
| 247 | cfg = NULL; |
| 248 | return t; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | /// createBlock - Used to lazily create blocks that are connected |
| 252 | /// to the current (global) succcessor. |
| 253 | CFGBlock* CFGBuilder::createBlock(bool add_successor) { |
Ted Kremenek | 9438252 | 2007-09-05 20:02:05 +0000 | [diff] [blame] | 254 | CFGBlock* B = cfg->createBlock(); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 255 | if (add_successor && Succ) B->addSuccessor(Succ); |
| 256 | return B; |
| 257 | } |
| 258 | |
| 259 | /// FinishBlock - When the last statement has been added to the block, |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 260 | /// we must reverse the statements because they have been inserted |
| 261 | /// in reverse order. |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 262 | void CFGBuilder::FinishBlock(CFGBlock* B) { |
| 263 | assert (B); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 264 | B->reverseStmts(); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 265 | } |
| 266 | |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 267 | /// addStmt - Used to add statements/expressions to the current CFGBlock |
| 268 | /// "Block". This method calls WalkAST on the passed statement to see if it |
| 269 | /// contains any short-circuit expressions. If so, it recursively creates |
| 270 | /// the necessary blocks for such expressions. It returns the "topmost" block |
| 271 | /// of the created blocks, or the original value of "Block" when this method |
| 272 | /// was called if no additional blocks are created. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 273 | CFGBlock* CFGBuilder::addStmt(Stmt* Terminator) { |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 274 | if (!Block) Block = createBlock(); |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 275 | return WalkAST(Terminator,true); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | /// WalkAST - Used by addStmt to walk the subtree of a statement and |
Ted Kremenek | b49e1aa | 2007-08-28 18:14:37 +0000 | [diff] [blame] | 279 | /// add extra blocks for ternary operators, &&, and ||. We also |
| 280 | /// process "," and DeclStmts (which may contain nested control-flow). |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 281 | CFGBlock* CFGBuilder::WalkAST(Stmt* Terminator, bool AlwaysAddStmt = false) { |
| 282 | switch (Terminator->getStmtClass()) { |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 283 | case Stmt::ConditionalOperatorClass: { |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 284 | ConditionalOperator* C = cast<ConditionalOperator>(Terminator); |
Ted Kremenek | ecc04c9 | 2007-11-26 18:20:26 +0000 | [diff] [blame] | 285 | |
| 286 | // Create the confluence block that will "merge" the results |
| 287 | // of the ternary expression. |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 288 | CFGBlock* ConfluenceBlock = (Block) ? Block : createBlock(); |
| 289 | ConfluenceBlock->appendStmt(C); |
Ted Kremenek | a651e0e | 2007-12-13 22:44:18 +0000 | [diff] [blame] | 290 | FinishBlock(ConfluenceBlock); |
Ted Kremenek | ecc04c9 | 2007-11-26 18:20:26 +0000 | [diff] [blame] | 291 | |
| 292 | // Create a block for the LHS expression if there is an LHS expression. |
| 293 | // A GCC extension allows LHS to be NULL, causing the condition to |
| 294 | // be the value that is returned instead. |
| 295 | // e.g: x ?: y is shorthand for: x ? x : y; |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 296 | Succ = ConfluenceBlock; |
| 297 | Block = NULL; |
Ted Kremenek | ecc04c9 | 2007-11-26 18:20:26 +0000 | [diff] [blame] | 298 | CFGBlock* LHSBlock = NULL; |
| 299 | if (C->getLHS()) { |
| 300 | LHSBlock = Visit(C->getLHS()); |
| 301 | FinishBlock(LHSBlock); |
| 302 | Block = NULL; |
| 303 | } |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 304 | |
Ted Kremenek | ecc04c9 | 2007-11-26 18:20:26 +0000 | [diff] [blame] | 305 | // Create the block for the RHS expression. |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 306 | Succ = ConfluenceBlock; |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 307 | CFGBlock* RHSBlock = Visit(C->getRHS()); |
Ted Kremenek | f50ec10 | 2007-09-11 21:29:43 +0000 | [diff] [blame] | 308 | FinishBlock(RHSBlock); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 309 | |
Ted Kremenek | ecc04c9 | 2007-11-26 18:20:26 +0000 | [diff] [blame] | 310 | // Create the block that will contain the condition. |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 311 | Block = createBlock(false); |
Ted Kremenek | ecc04c9 | 2007-11-26 18:20:26 +0000 | [diff] [blame] | 312 | |
| 313 | if (LHSBlock) |
| 314 | Block->addSuccessor(LHSBlock); |
| 315 | else { |
| 316 | // If we have no LHS expression, add the ConfluenceBlock as a direct |
| 317 | // successor for the block containing the condition. Moreover, |
| 318 | // we need to reverse the order of the predecessors in the |
| 319 | // ConfluenceBlock because the RHSBlock will have been added to |
| 320 | // the succcessors already, and we want the first predecessor to the |
| 321 | // the block containing the expression for the case when the ternary |
| 322 | // expression evaluates to true. |
| 323 | Block->addSuccessor(ConfluenceBlock); |
| 324 | assert (ConfluenceBlock->pred_size() == 2); |
| 325 | std::reverse(ConfluenceBlock->pred_begin(), |
| 326 | ConfluenceBlock->pred_end()); |
| 327 | } |
| 328 | |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 329 | Block->addSuccessor(RHSBlock); |
Ted Kremenek | ecc04c9 | 2007-11-26 18:20:26 +0000 | [diff] [blame] | 330 | |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 331 | Block->setTerminator(C); |
| 332 | return addStmt(C->getCond()); |
| 333 | } |
Ted Kremenek | 49a436d | 2007-08-31 17:03:41 +0000 | [diff] [blame] | 334 | |
| 335 | case Stmt::ChooseExprClass: { |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 336 | ChooseExpr* C = cast<ChooseExpr>(Terminator); |
Ted Kremenek | 49a436d | 2007-08-31 17:03:41 +0000 | [diff] [blame] | 337 | |
| 338 | CFGBlock* ConfluenceBlock = (Block) ? Block : createBlock(); |
| 339 | ConfluenceBlock->appendStmt(C); |
| 340 | FinishBlock(ConfluenceBlock); |
| 341 | |
| 342 | Succ = ConfluenceBlock; |
| 343 | Block = NULL; |
| 344 | CFGBlock* LHSBlock = Visit(C->getLHS()); |
Ted Kremenek | f50ec10 | 2007-09-11 21:29:43 +0000 | [diff] [blame] | 345 | FinishBlock(LHSBlock); |
| 346 | |
Ted Kremenek | 49a436d | 2007-08-31 17:03:41 +0000 | [diff] [blame] | 347 | Succ = ConfluenceBlock; |
| 348 | Block = NULL; |
| 349 | CFGBlock* RHSBlock = Visit(C->getRHS()); |
Ted Kremenek | f50ec10 | 2007-09-11 21:29:43 +0000 | [diff] [blame] | 350 | FinishBlock(RHSBlock); |
Ted Kremenek | 49a436d | 2007-08-31 17:03:41 +0000 | [diff] [blame] | 351 | |
| 352 | Block = createBlock(false); |
| 353 | Block->addSuccessor(LHSBlock); |
| 354 | Block->addSuccessor(RHSBlock); |
| 355 | Block->setTerminator(C); |
| 356 | return addStmt(C->getCond()); |
| 357 | } |
Ted Kremenek | 7926f7c | 2007-08-28 16:18:58 +0000 | [diff] [blame] | 358 | |
Ted Kremenek | 8f54c1f | 2007-10-30 21:48:34 +0000 | [diff] [blame] | 359 | case Stmt::DeclStmtClass: { |
Ted Kremenek | 53061c8 | 2008-10-06 20:56:19 +0000 | [diff] [blame] | 360 | DeclStmt *DS = cast<DeclStmt>(Terminator); |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 361 | if (DS->isSingleDecl()) { |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 362 | Block->appendStmt(Terminator); |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 363 | return WalkAST_VisitDeclSubExpr(DS->getSingleDecl()); |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 364 | } |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 365 | |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 366 | CFGBlock* B = 0; |
Ted Kremenek | 53061c8 | 2008-10-06 20:56:19 +0000 | [diff] [blame] | 367 | |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 368 | // FIXME: Add a reverse iterator for DeclStmt to avoid this |
| 369 | // extra copy. |
Chris Lattner | e66a8cf | 2009-03-28 06:53:40 +0000 | [diff] [blame^] | 370 | typedef llvm::SmallVector<Decl*,10> BufTy; |
| 371 | BufTy Buf(DS->decl_begin(), DS->decl_end()); |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 372 | |
| 373 | for (BufTy::reverse_iterator I=Buf.rbegin(), E=Buf.rend(); I!=E; ++I) { |
| 374 | // Get the alignment of the new DeclStmt, padding out to >=8 bytes. |
| 375 | unsigned A = llvm::AlignOf<DeclStmt>::Alignment < 8 |
| 376 | ? 8 : llvm::AlignOf<DeclStmt>::Alignment; |
Ted Kremenek | 53061c8 | 2008-10-06 20:56:19 +0000 | [diff] [blame] | 377 | |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 378 | // Allocate the DeclStmt using the BumpPtrAllocator. It will |
| 379 | // get automatically freed with the CFG. |
| 380 | DeclGroupRef DG(*I); |
| 381 | Decl* D = *I; |
| 382 | void* Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A); |
| 383 | |
Chris Lattner | e66a8cf | 2009-03-28 06:53:40 +0000 | [diff] [blame^] | 384 | DeclStmt* DS = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D)); |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 385 | |
| 386 | // Append the fake DeclStmt to block. |
| 387 | Block->appendStmt(DS); |
| 388 | B = WalkAST_VisitDeclSubExpr(D); |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 389 | } |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 390 | return B; |
Ted Kremenek | 8f54c1f | 2007-10-30 21:48:34 +0000 | [diff] [blame] | 391 | } |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 392 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 393 | case Stmt::AddrLabelExprClass: { |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 394 | AddrLabelExpr* A = cast<AddrLabelExpr>(Terminator); |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 395 | AddressTakenLabels.insert(A->getLabel()); |
| 396 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 397 | if (AlwaysAddStmt) Block->appendStmt(Terminator); |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 398 | return Block; |
| 399 | } |
Ted Kremenek | f50ec10 | 2007-09-11 21:29:43 +0000 | [diff] [blame] | 400 | |
Ted Kremenek | 15c27a8 | 2007-08-28 18:30:10 +0000 | [diff] [blame] | 401 | case Stmt::StmtExprClass: |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 402 | return WalkAST_VisitStmtExpr(cast<StmtExpr>(Terminator)); |
Ted Kremenek | b49e1aa | 2007-08-28 18:14:37 +0000 | [diff] [blame] | 403 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 404 | case Stmt::SizeOfAlignOfExprClass: { |
| 405 | SizeOfAlignOfExpr* E = cast<SizeOfAlignOfExpr>(Terminator); |
Ted Kremenek | 610a09e | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 406 | |
| 407 | // VLA types have expressions that must be evaluated. |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 408 | if (E->isArgumentType()) { |
| 409 | for (VariableArrayType* VA = FindVA(E->getArgumentType().getTypePtr()); |
| 410 | VA != 0; VA = FindVA(VA->getElementType().getTypePtr())) |
| 411 | addStmt(VA->getSizeExpr()); |
| 412 | } |
| 413 | // Expressions in sizeof/alignof are not evaluated and thus have no |
| 414 | // control flow. |
| 415 | else |
| 416 | Block->appendStmt(Terminator); |
Ted Kremenek | 610a09e | 2008-09-26 22:58:57 +0000 | [diff] [blame] | 417 | |
| 418 | return Block; |
| 419 | } |
| 420 | |
Ted Kremenek | 0b1d9b7 | 2007-08-27 21:54:41 +0000 | [diff] [blame] | 421 | case Stmt::BinaryOperatorClass: { |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 422 | BinaryOperator* B = cast<BinaryOperator>(Terminator); |
Ted Kremenek | 0b1d9b7 | 2007-08-27 21:54:41 +0000 | [diff] [blame] | 423 | |
| 424 | if (B->isLogicalOp()) { // && or || |
| 425 | CFGBlock* ConfluenceBlock = (Block) ? Block : createBlock(); |
| 426 | ConfluenceBlock->appendStmt(B); |
| 427 | FinishBlock(ConfluenceBlock); |
| 428 | |
| 429 | // create the block evaluating the LHS |
| 430 | CFGBlock* LHSBlock = createBlock(false); |
Ted Kremenek | afe5433 | 2007-12-21 19:49:00 +0000 | [diff] [blame] | 431 | LHSBlock->setTerminator(B); |
Ted Kremenek | 0b1d9b7 | 2007-08-27 21:54:41 +0000 | [diff] [blame] | 432 | |
| 433 | // create the block evaluating the RHS |
| 434 | Succ = ConfluenceBlock; |
| 435 | Block = NULL; |
| 436 | CFGBlock* RHSBlock = Visit(B->getRHS()); |
Zhongxing Xu | 924d9a8 | 2008-10-04 05:48:38 +0000 | [diff] [blame] | 437 | FinishBlock(RHSBlock); |
Ted Kremenek | afe5433 | 2007-12-21 19:49:00 +0000 | [diff] [blame] | 438 | |
| 439 | // Now link the LHSBlock with RHSBlock. |
| 440 | if (B->getOpcode() == BinaryOperator::LOr) { |
| 441 | LHSBlock->addSuccessor(ConfluenceBlock); |
| 442 | LHSBlock->addSuccessor(RHSBlock); |
| 443 | } |
| 444 | else { |
| 445 | assert (B->getOpcode() == BinaryOperator::LAnd); |
| 446 | LHSBlock->addSuccessor(RHSBlock); |
| 447 | LHSBlock->addSuccessor(ConfluenceBlock); |
| 448 | } |
Ted Kremenek | 0b1d9b7 | 2007-08-27 21:54:41 +0000 | [diff] [blame] | 449 | |
| 450 | // Generate the blocks for evaluating the LHS. |
| 451 | Block = LHSBlock; |
| 452 | return addStmt(B->getLHS()); |
Ted Kremenek | b49e1aa | 2007-08-28 18:14:37 +0000 | [diff] [blame] | 453 | } |
| 454 | else if (B->getOpcode() == BinaryOperator::Comma) { // , |
| 455 | Block->appendStmt(B); |
| 456 | addStmt(B->getRHS()); |
| 457 | return addStmt(B->getLHS()); |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 458 | } |
Ted Kremenek | a651e0e | 2007-12-13 22:44:18 +0000 | [diff] [blame] | 459 | |
| 460 | break; |
Ted Kremenek | 0b1d9b7 | 2007-08-27 21:54:41 +0000 | [diff] [blame] | 461 | } |
Ted Kremenek | 00c0a30 | 2008-09-26 18:17:07 +0000 | [diff] [blame] | 462 | |
| 463 | // Blocks: No support for blocks ... yet |
| 464 | case Stmt::BlockExprClass: |
| 465 | case Stmt::BlockDeclRefExprClass: |
| 466 | return NYS(); |
Ted Kremenek | f4e15fc | 2008-02-26 02:37:08 +0000 | [diff] [blame] | 467 | |
| 468 | case Stmt::ParenExprClass: |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 469 | return WalkAST(cast<ParenExpr>(Terminator)->getSubExpr(), AlwaysAddStmt); |
Ted Kremenek | 0b1d9b7 | 2007-08-27 21:54:41 +0000 | [diff] [blame] | 470 | |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 471 | default: |
Ted Kremenek | a651e0e | 2007-12-13 22:44:18 +0000 | [diff] [blame] | 472 | break; |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 473 | }; |
Ted Kremenek | a651e0e | 2007-12-13 22:44:18 +0000 | [diff] [blame] | 474 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 475 | if (AlwaysAddStmt) Block->appendStmt(Terminator); |
| 476 | return WalkAST_VisitChildren(Terminator); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 477 | } |
Ted Kremenek | fcd06f7 | 2008-09-26 16:26:36 +0000 | [diff] [blame] | 478 | |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 479 | /// WalkAST_VisitDeclSubExpr - Utility method to add block-level expressions |
| 480 | /// for initializers in Decls. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 481 | CFGBlock* CFGBuilder::WalkAST_VisitDeclSubExpr(Decl* D) { |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 482 | VarDecl* VD = dyn_cast<VarDecl>(D); |
| 483 | |
| 484 | if (!VD) |
Ted Kremenek | d660322 | 2007-11-18 20:06:01 +0000 | [diff] [blame] | 485 | return Block; |
| 486 | |
Ted Kremenek | c7eb903 | 2008-08-06 23:20:50 +0000 | [diff] [blame] | 487 | Expr* Init = VD->getInit(); |
Ted Kremenek | 8f54c1f | 2007-10-30 21:48:34 +0000 | [diff] [blame] | 488 | |
Ted Kremenek | fcd06f7 | 2008-09-26 16:26:36 +0000 | [diff] [blame] | 489 | if (Init) { |
Mike Stump | 54cc43f | 2009-02-26 08:00:25 +0000 | [diff] [blame] | 490 | // Optimization: Don't create separate block-level statements for literals. |
Ted Kremenek | fcd06f7 | 2008-09-26 16:26:36 +0000 | [diff] [blame] | 491 | switch (Init->getStmtClass()) { |
| 492 | case Stmt::IntegerLiteralClass: |
| 493 | case Stmt::CharacterLiteralClass: |
| 494 | case Stmt::StringLiteralClass: |
| 495 | break; |
| 496 | default: |
| 497 | Block = addStmt(Init); |
| 498 | } |
Ted Kremenek | ae2a98c | 2008-02-29 22:32:24 +0000 | [diff] [blame] | 499 | } |
Ted Kremenek | fcd06f7 | 2008-09-26 16:26:36 +0000 | [diff] [blame] | 500 | |
| 501 | // If the type of VD is a VLA, then we must process its size expressions. |
| 502 | for (VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); VA != 0; |
| 503 | VA = FindVA(VA->getElementType().getTypePtr())) |
| 504 | Block = addStmt(VA->getSizeExpr()); |
Ted Kremenek | ae2a98c | 2008-02-29 22:32:24 +0000 | [diff] [blame] | 505 | |
Ted Kremenek | b49e1aa | 2007-08-28 18:14:37 +0000 | [diff] [blame] | 506 | return Block; |
| 507 | } |
| 508 | |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 509 | /// WalkAST_VisitChildren - Utility method to call WalkAST on the |
| 510 | /// children of a Stmt. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 511 | CFGBlock* CFGBuilder::WalkAST_VisitChildren(Stmt* Terminator) { |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 512 | CFGBlock* B = Block; |
Mike Stump | 54cc43f | 2009-02-26 08:00:25 +0000 | [diff] [blame] | 513 | for (Stmt::child_iterator I = Terminator->child_begin(), |
| 514 | E = Terminator->child_end(); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 515 | I != E; ++I) |
Ted Kremenek | 322f58d | 2007-09-26 21:23:31 +0000 | [diff] [blame] | 516 | if (*I) B = WalkAST(*I); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 517 | |
| 518 | return B; |
| 519 | } |
| 520 | |
Ted Kremenek | 15c27a8 | 2007-08-28 18:30:10 +0000 | [diff] [blame] | 521 | /// WalkAST_VisitStmtExpr - Utility method to handle (nested) statement |
| 522 | /// expressions (a GCC extension). |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 523 | CFGBlock* CFGBuilder::WalkAST_VisitStmtExpr(StmtExpr* Terminator) { |
| 524 | Block->appendStmt(Terminator); |
| 525 | return VisitCompoundStmt(Terminator->getSubStmt()); |
Ted Kremenek | 15c27a8 | 2007-08-28 18:30:10 +0000 | [diff] [blame] | 526 | } |
| 527 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 528 | /// VisitStmt - Handle statements with no branching control flow. |
| 529 | CFGBlock* CFGBuilder::VisitStmt(Stmt* Statement) { |
| 530 | // We cannot assume that we are in the middle of a basic block, since |
| 531 | // the CFG might only be constructed for this single statement. If |
| 532 | // we have no current basic block, just create one lazily. |
| 533 | if (!Block) Block = createBlock(); |
| 534 | |
| 535 | // Simply add the statement to the current block. We actually |
| 536 | // insert statements in reverse order; this order is reversed later |
| 537 | // when processing the containing element in the AST. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 538 | addStmt(Statement); |
| 539 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 540 | return Block; |
| 541 | } |
| 542 | |
| 543 | CFGBlock* CFGBuilder::VisitNullStmt(NullStmt* Statement) { |
| 544 | return Block; |
| 545 | } |
| 546 | |
| 547 | CFGBlock* CFGBuilder::VisitCompoundStmt(CompoundStmt* C) { |
Ted Kremenek | a716d7a | 2008-03-17 17:19:44 +0000 | [diff] [blame] | 548 | |
| 549 | CFGBlock* LastBlock = NULL; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 550 | |
Ted Kremenek | d34066c | 2008-02-26 00:22:58 +0000 | [diff] [blame] | 551 | for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend(); |
| 552 | I != E; ++I ) { |
Ted Kremenek | a716d7a | 2008-03-17 17:19:44 +0000 | [diff] [blame] | 553 | LastBlock = Visit(*I); |
Ted Kremenek | d34066c | 2008-02-26 00:22:58 +0000 | [diff] [blame] | 554 | } |
| 555 | |
Ted Kremenek | a716d7a | 2008-03-17 17:19:44 +0000 | [diff] [blame] | 556 | return LastBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | CFGBlock* CFGBuilder::VisitIfStmt(IfStmt* I) { |
| 560 | // We may see an if statement in the middle of a basic block, or |
| 561 | // it may be the first statement we are processing. In either case, |
| 562 | // we create a new basic block. First, we create the blocks for |
| 563 | // the then...else statements, and then we create the block containing |
| 564 | // the if statement. If we were in the middle of a block, we |
| 565 | // stop processing that block and reverse its statements. That block |
| 566 | // is then the implicit successor for the "then" and "else" clauses. |
| 567 | |
| 568 | // The block we were proccessing is now finished. Make it the |
| 569 | // successor block. |
| 570 | if (Block) { |
| 571 | Succ = Block; |
| 572 | FinishBlock(Block); |
| 573 | } |
| 574 | |
| 575 | // Process the false branch. NULL out Block so that the recursive |
| 576 | // call to Visit will create a new basic block. |
| 577 | // Null out Block so that all successor |
| 578 | CFGBlock* ElseBlock = Succ; |
| 579 | |
| 580 | if (Stmt* Else = I->getElse()) { |
| 581 | SaveAndRestore<CFGBlock*> sv(Succ); |
| 582 | |
| 583 | // NULL out Block so that the recursive call to Visit will |
| 584 | // create a new basic block. |
| 585 | Block = NULL; |
Ted Kremenek | b6f7b72 | 2007-08-30 18:13:31 +0000 | [diff] [blame] | 586 | ElseBlock = Visit(Else); |
| 587 | |
| 588 | if (!ElseBlock) // Can occur when the Else body has all NullStmts. |
| 589 | ElseBlock = sv.get(); |
| 590 | else if (Block) |
| 591 | FinishBlock(ElseBlock); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | // Process the true branch. NULL out Block so that the recursive |
| 595 | // call to Visit will create a new basic block. |
| 596 | // Null out Block so that all successor |
| 597 | CFGBlock* ThenBlock; |
| 598 | { |
| 599 | Stmt* Then = I->getThen(); |
| 600 | assert (Then); |
| 601 | SaveAndRestore<CFGBlock*> sv(Succ); |
| 602 | Block = NULL; |
Ted Kremenek | b6f7b72 | 2007-08-30 18:13:31 +0000 | [diff] [blame] | 603 | ThenBlock = Visit(Then); |
| 604 | |
| 605 | if (!ThenBlock) // Can occur when the Then body has all NullStmts. |
| 606 | ThenBlock = sv.get(); |
| 607 | else if (Block) |
| 608 | FinishBlock(ThenBlock); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | // Now create a new block containing the if statement. |
| 612 | Block = createBlock(false); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 613 | |
| 614 | // Set the terminator of the new block to the If statement. |
| 615 | Block->setTerminator(I); |
| 616 | |
| 617 | // Now add the successors. |
| 618 | Block->addSuccessor(ThenBlock); |
| 619 | Block->addSuccessor(ElseBlock); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 620 | |
| 621 | // Add the condition as the last statement in the new block. This |
| 622 | // may create new blocks as the condition may contain control-flow. Any |
| 623 | // newly created blocks will be pointed to be "Block". |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 624 | return addStmt(I->getCond()->IgnoreParens()); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 625 | } |
Ted Kremenek | f50ec10 | 2007-09-11 21:29:43 +0000 | [diff] [blame] | 626 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 627 | |
| 628 | CFGBlock* CFGBuilder::VisitReturnStmt(ReturnStmt* R) { |
| 629 | // If we were in the middle of a block we stop processing that block |
| 630 | // and reverse its statements. |
| 631 | // |
| 632 | // NOTE: If a "return" appears in the middle of a block, this means |
| 633 | // that the code afterwards is DEAD (unreachable). We still |
| 634 | // keep a basic block for that code; a simple "mark-and-sweep" |
| 635 | // from the entry block will be able to report such dead |
| 636 | // blocks. |
| 637 | if (Block) FinishBlock(Block); |
| 638 | |
| 639 | // Create the new block. |
| 640 | Block = createBlock(false); |
| 641 | |
| 642 | // The Exit block is the only successor. |
| 643 | Block->addSuccessor(&cfg->getExit()); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 644 | |
| 645 | // Add the return statement to the block. This may create new blocks |
| 646 | // if R contains control-flow (short-circuit operations). |
| 647 | return addStmt(R); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 648 | } |
| 649 | |
| 650 | CFGBlock* CFGBuilder::VisitLabelStmt(LabelStmt* L) { |
| 651 | // Get the block of the labeled statement. Add it to our map. |
Ted Kremenek | 2677ea8 | 2008-03-15 07:45:02 +0000 | [diff] [blame] | 652 | Visit(L->getSubStmt()); |
| 653 | CFGBlock* LabelBlock = Block; |
Ted Kremenek | 16e4dc8 | 2007-08-30 18:20:57 +0000 | [diff] [blame] | 654 | |
| 655 | if (!LabelBlock) // This can happen when the body is empty, i.e. |
| 656 | LabelBlock=createBlock(); // scopes that only contains NullStmts. |
| 657 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 658 | assert (LabelMap.find(L) == LabelMap.end() && "label already in map"); |
| 659 | LabelMap[ L ] = LabelBlock; |
| 660 | |
| 661 | // Labels partition blocks, so this is the end of the basic block |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 662 | // we were processing (L is the block's label). Because this is |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 663 | // label (and we have already processed the substatement) there is no |
| 664 | // extra control-flow to worry about. |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 665 | LabelBlock->setLabel(L); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 666 | FinishBlock(LabelBlock); |
| 667 | |
| 668 | // We set Block to NULL to allow lazy creation of a new block |
| 669 | // (if necessary); |
| 670 | Block = NULL; |
| 671 | |
| 672 | // This block is now the implicit successor of other blocks. |
| 673 | Succ = LabelBlock; |
| 674 | |
| 675 | return LabelBlock; |
| 676 | } |
| 677 | |
| 678 | CFGBlock* CFGBuilder::VisitGotoStmt(GotoStmt* G) { |
| 679 | // Goto is a control-flow statement. Thus we stop processing the |
| 680 | // current block and create a new one. |
| 681 | if (Block) FinishBlock(Block); |
| 682 | Block = createBlock(false); |
| 683 | Block->setTerminator(G); |
| 684 | |
| 685 | // If we already know the mapping to the label block add the |
| 686 | // successor now. |
| 687 | LabelMapTy::iterator I = LabelMap.find(G->getLabel()); |
| 688 | |
| 689 | if (I == LabelMap.end()) |
| 690 | // We will need to backpatch this block later. |
| 691 | BackpatchBlocks.push_back(Block); |
| 692 | else |
| 693 | Block->addSuccessor(I->second); |
| 694 | |
| 695 | return Block; |
| 696 | } |
| 697 | |
| 698 | CFGBlock* CFGBuilder::VisitForStmt(ForStmt* F) { |
| 699 | // "for" is a control-flow statement. Thus we stop processing the |
| 700 | // current block. |
| 701 | |
| 702 | CFGBlock* LoopSuccessor = NULL; |
| 703 | |
| 704 | if (Block) { |
| 705 | FinishBlock(Block); |
| 706 | LoopSuccessor = Block; |
| 707 | } |
| 708 | else LoopSuccessor = Succ; |
| 709 | |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 710 | // Because of short-circuit evaluation, the condition of the loop |
| 711 | // can span multiple basic blocks. Thus we need the "Entry" and "Exit" |
| 712 | // blocks that evaluate the condition. |
| 713 | CFGBlock* ExitConditionBlock = createBlock(false); |
| 714 | CFGBlock* EntryConditionBlock = ExitConditionBlock; |
| 715 | |
| 716 | // Set the terminator for the "exit" condition block. |
| 717 | ExitConditionBlock->setTerminator(F); |
| 718 | |
| 719 | // Now add the actual condition to the condition block. Because the |
| 720 | // condition itself may contain control-flow, new blocks may be created. |
| 721 | if (Stmt* C = F->getCond()) { |
| 722 | Block = ExitConditionBlock; |
| 723 | EntryConditionBlock = addStmt(C); |
| 724 | if (Block) FinishBlock(EntryConditionBlock); |
| 725 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 726 | |
| 727 | // The condition block is the implicit successor for the loop body as |
| 728 | // well as any code above the loop. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 729 | Succ = EntryConditionBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 730 | |
| 731 | // Now create the loop body. |
| 732 | { |
| 733 | assert (F->getBody()); |
| 734 | |
| 735 | // Save the current values for Block, Succ, and continue and break targets |
| 736 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ), |
| 737 | save_continue(ContinueTargetBlock), |
| 738 | save_break(BreakTargetBlock); |
Ted Kremenek | e933450 | 2008-09-04 21:48:47 +0000 | [diff] [blame] | 739 | |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 740 | // Create a new block to contain the (bottom) of the loop body. |
| 741 | Block = NULL; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 742 | |
Ted Kremenek | e933450 | 2008-09-04 21:48:47 +0000 | [diff] [blame] | 743 | if (Stmt* I = F->getInc()) { |
| 744 | // Generate increment code in its own basic block. This is the target |
| 745 | // of continue statements. |
Ted Kremenek | d017243 | 2008-11-24 20:50:24 +0000 | [diff] [blame] | 746 | Succ = Visit(I); |
| 747 | |
| 748 | // Finish up the increment block if it hasn't been already. |
| 749 | if (Block) { |
| 750 | assert (Block == Succ); |
| 751 | FinishBlock(Block); |
| 752 | Block = 0; |
| 753 | } |
| 754 | |
Ted Kremenek | e933450 | 2008-09-04 21:48:47 +0000 | [diff] [blame] | 755 | ContinueTargetBlock = Succ; |
| 756 | } |
| 757 | else { |
| 758 | // No increment code. Continues should go the the entry condition block. |
| 759 | ContinueTargetBlock = EntryConditionBlock; |
| 760 | } |
| 761 | |
| 762 | // All breaks should go to the code following the loop. |
| 763 | BreakTargetBlock = LoopSuccessor; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 764 | |
| 765 | // Now populate the body block, and in the process create new blocks |
| 766 | // as we walk the body of the loop. |
| 767 | CFGBlock* BodyBlock = Visit(F->getBody()); |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 768 | |
| 769 | if (!BodyBlock) |
Ted Kremenek | a9d996d | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 770 | BodyBlock = EntryConditionBlock; // can happen for "for (...;...; ) ;" |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 771 | else if (Block) |
| 772 | FinishBlock(BodyBlock); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 773 | |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 774 | // This new body block is a successor to our "exit" condition block. |
| 775 | ExitConditionBlock->addSuccessor(BodyBlock); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 776 | } |
| 777 | |
| 778 | // Link up the condition block with the code that follows the loop. |
| 779 | // (the false branch). |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 780 | ExitConditionBlock->addSuccessor(LoopSuccessor); |
| 781 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 782 | // If the loop contains initialization, create a new block for those |
| 783 | // statements. This block can also contain statements that precede |
| 784 | // the loop. |
| 785 | if (Stmt* I = F->getInit()) { |
| 786 | Block = createBlock(); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 787 | return addStmt(I); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 788 | } |
| 789 | else { |
| 790 | // There is no loop initialization. We are thus basically a while |
| 791 | // loop. NULL out Block to force lazy block construction. |
| 792 | Block = NULL; |
Ted Kremenek | 5482713 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 793 | Succ = EntryConditionBlock; |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 794 | return EntryConditionBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 795 | } |
| 796 | } |
| 797 | |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 798 | CFGBlock* CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt* S) { |
| 799 | // Objective-C fast enumeration 'for' statements: |
| 800 | // http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC |
| 801 | // |
| 802 | // for ( Type newVariable in collection_expression ) { statements } |
| 803 | // |
| 804 | // becomes: |
| 805 | // |
| 806 | // prologue: |
| 807 | // 1. collection_expression |
| 808 | // T. jump to loop_entry |
| 809 | // loop_entry: |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 810 | // 1. side-effects of element expression |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 811 | // 1. ObjCForCollectionStmt [performs binding to newVariable] |
| 812 | // T. ObjCForCollectionStmt TB, FB [jumps to TB if newVariable != nil] |
| 813 | // TB: |
| 814 | // statements |
| 815 | // T. jump to loop_entry |
| 816 | // FB: |
| 817 | // what comes after |
| 818 | // |
| 819 | // and |
| 820 | // |
| 821 | // Type existingItem; |
| 822 | // for ( existingItem in expression ) { statements } |
| 823 | // |
| 824 | // becomes: |
| 825 | // |
| 826 | // the same with newVariable replaced with existingItem; the binding |
| 827 | // works the same except that for one ObjCForCollectionStmt::getElement() |
| 828 | // returns a DeclStmt and the other returns a DeclRefExpr. |
| 829 | // |
| 830 | |
| 831 | CFGBlock* LoopSuccessor = 0; |
| 832 | |
| 833 | if (Block) { |
| 834 | FinishBlock(Block); |
| 835 | LoopSuccessor = Block; |
| 836 | Block = 0; |
| 837 | } |
| 838 | else LoopSuccessor = Succ; |
| 839 | |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 840 | // Build the condition blocks. |
| 841 | CFGBlock* ExitConditionBlock = createBlock(false); |
| 842 | CFGBlock* EntryConditionBlock = ExitConditionBlock; |
| 843 | |
| 844 | // Set the terminator for the "exit" condition block. |
| 845 | ExitConditionBlock->setTerminator(S); |
| 846 | |
| 847 | // The last statement in the block should be the ObjCForCollectionStmt, |
| 848 | // which performs the actual binding to 'element' and determines if there |
| 849 | // are any more items in the collection. |
| 850 | ExitConditionBlock->appendStmt(S); |
| 851 | Block = ExitConditionBlock; |
| 852 | |
| 853 | // Walk the 'element' expression to see if there are any side-effects. We |
| 854 | // generate new blocks as necesary. We DON'T add the statement by default |
| 855 | // to the CFG unless it contains control-flow. |
| 856 | EntryConditionBlock = WalkAST(S->getElement(), false); |
| 857 | if (Block) { FinishBlock(EntryConditionBlock); Block = 0; } |
| 858 | |
| 859 | // The condition block is the implicit successor for the loop body as |
| 860 | // well as any code above the loop. |
| 861 | Succ = EntryConditionBlock; |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 862 | |
| 863 | // Now create the true branch. |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 864 | { |
| 865 | // Save the current values for Succ, continue and break targets. |
| 866 | SaveAndRestore<CFGBlock*> save_Succ(Succ), |
| 867 | save_continue(ContinueTargetBlock), save_break(BreakTargetBlock); |
| 868 | |
| 869 | BreakTargetBlock = LoopSuccessor; |
| 870 | ContinueTargetBlock = EntryConditionBlock; |
| 871 | |
| 872 | CFGBlock* BodyBlock = Visit(S->getBody()); |
| 873 | |
| 874 | if (!BodyBlock) |
| 875 | BodyBlock = EntryConditionBlock; // can happen for "for (X in Y) ;" |
| 876 | else if (Block) |
| 877 | FinishBlock(BodyBlock); |
| 878 | |
| 879 | // This new body block is a successor to our "exit" condition block. |
| 880 | ExitConditionBlock->addSuccessor(BodyBlock); |
| 881 | } |
Ted Kremenek | fc33552 | 2008-11-13 06:36:45 +0000 | [diff] [blame] | 882 | |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 883 | // Link up the condition block with the code that follows the loop. |
| 884 | // (the false branch). |
| 885 | ExitConditionBlock->addSuccessor(LoopSuccessor); |
| 886 | |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 887 | // Now create a prologue block to contain the collection expression. |
Ted Kremenek | 4cb3a85 | 2008-11-14 01:57:41 +0000 | [diff] [blame] | 888 | Block = createBlock(); |
Ted Kremenek | 514de5a | 2008-11-11 17:10:00 +0000 | [diff] [blame] | 889 | return addStmt(S->getCollection()); |
| 890 | } |
| 891 | |
| 892 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 893 | CFGBlock* CFGBuilder::VisitWhileStmt(WhileStmt* W) { |
| 894 | // "while" is a control-flow statement. Thus we stop processing the |
| 895 | // current block. |
| 896 | |
| 897 | CFGBlock* LoopSuccessor = NULL; |
| 898 | |
| 899 | if (Block) { |
| 900 | FinishBlock(Block); |
| 901 | LoopSuccessor = Block; |
| 902 | } |
| 903 | else LoopSuccessor = Succ; |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 904 | |
| 905 | // Because of short-circuit evaluation, the condition of the loop |
| 906 | // can span multiple basic blocks. Thus we need the "Entry" and "Exit" |
| 907 | // blocks that evaluate the condition. |
| 908 | CFGBlock* ExitConditionBlock = createBlock(false); |
| 909 | CFGBlock* EntryConditionBlock = ExitConditionBlock; |
| 910 | |
| 911 | // Set the terminator for the "exit" condition block. |
| 912 | ExitConditionBlock->setTerminator(W); |
| 913 | |
| 914 | // Now add the actual condition to the condition block. Because the |
| 915 | // condition itself may contain control-flow, new blocks may be created. |
| 916 | // Thus we update "Succ" after adding the condition. |
| 917 | if (Stmt* C = W->getCond()) { |
| 918 | Block = ExitConditionBlock; |
| 919 | EntryConditionBlock = addStmt(C); |
Ted Kremenek | a9d996d | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 920 | assert (Block == EntryConditionBlock); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 921 | if (Block) FinishBlock(EntryConditionBlock); |
| 922 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 923 | |
| 924 | // The condition block is the implicit successor for the loop body as |
| 925 | // well as any code above the loop. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 926 | Succ = EntryConditionBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 927 | |
| 928 | // Process the loop body. |
| 929 | { |
| 930 | assert (W->getBody()); |
| 931 | |
| 932 | // Save the current values for Block, Succ, and continue and break targets |
| 933 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ), |
| 934 | save_continue(ContinueTargetBlock), |
| 935 | save_break(BreakTargetBlock); |
| 936 | |
| 937 | // All continues within this loop should go to the condition block |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 938 | ContinueTargetBlock = EntryConditionBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 939 | |
| 940 | // All breaks should go to the code following the loop. |
| 941 | BreakTargetBlock = LoopSuccessor; |
| 942 | |
| 943 | // NULL out Block to force lazy instantiation of blocks for the body. |
| 944 | Block = NULL; |
| 945 | |
| 946 | // Create the body. The returned block is the entry to the loop body. |
| 947 | CFGBlock* BodyBlock = Visit(W->getBody()); |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 948 | |
| 949 | if (!BodyBlock) |
Ted Kremenek | a9d996d | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 950 | BodyBlock = EntryConditionBlock; // can happen for "while(...) ;" |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 951 | else if (Block) |
| 952 | FinishBlock(BodyBlock); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 953 | |
| 954 | // Add the loop body entry as a successor to the condition. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 955 | ExitConditionBlock->addSuccessor(BodyBlock); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | // Link up the condition block with the code that follows the loop. |
| 959 | // (the false branch). |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 960 | ExitConditionBlock->addSuccessor(LoopSuccessor); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 961 | |
| 962 | // There can be no more statements in the condition block |
| 963 | // since we loop back to this block. NULL out Block to force |
| 964 | // lazy creation of another block. |
| 965 | Block = NULL; |
| 966 | |
| 967 | // Return the condition block, which is the dominating block for the loop. |
Ted Kremenek | 5482713 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 968 | Succ = EntryConditionBlock; |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 969 | return EntryConditionBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 970 | } |
Ted Kremenek | 2fda504 | 2008-12-09 20:20:09 +0000 | [diff] [blame] | 971 | |
| 972 | CFGBlock* CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt* S) { |
| 973 | // FIXME: This isn't complete. We basically treat @throw like a return |
| 974 | // statement. |
| 975 | |
| 976 | // If we were in the middle of a block we stop processing that block |
| 977 | // and reverse its statements. |
| 978 | if (Block) FinishBlock(Block); |
| 979 | |
| 980 | // Create the new block. |
| 981 | Block = createBlock(false); |
| 982 | |
| 983 | // The Exit block is the only successor. |
| 984 | Block->addSuccessor(&cfg->getExit()); |
| 985 | |
| 986 | // Add the statement to the block. This may create new blocks |
| 987 | // if S contains control-flow (short-circuit operations). |
| 988 | return addStmt(S); |
| 989 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 990 | |
| 991 | CFGBlock* CFGBuilder::VisitDoStmt(DoStmt* D) { |
| 992 | // "do...while" is a control-flow statement. Thus we stop processing the |
| 993 | // current block. |
| 994 | |
| 995 | CFGBlock* LoopSuccessor = NULL; |
| 996 | |
| 997 | if (Block) { |
| 998 | FinishBlock(Block); |
| 999 | LoopSuccessor = Block; |
| 1000 | } |
| 1001 | else LoopSuccessor = Succ; |
| 1002 | |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1003 | // Because of short-circuit evaluation, the condition of the loop |
| 1004 | // can span multiple basic blocks. Thus we need the "Entry" and "Exit" |
| 1005 | // blocks that evaluate the condition. |
| 1006 | CFGBlock* ExitConditionBlock = createBlock(false); |
| 1007 | CFGBlock* EntryConditionBlock = ExitConditionBlock; |
| 1008 | |
| 1009 | // Set the terminator for the "exit" condition block. |
| 1010 | ExitConditionBlock->setTerminator(D); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1011 | |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1012 | // Now add the actual condition to the condition block. Because the |
| 1013 | // condition itself may contain control-flow, new blocks may be created. |
| 1014 | if (Stmt* C = D->getCond()) { |
| 1015 | Block = ExitConditionBlock; |
| 1016 | EntryConditionBlock = addStmt(C); |
| 1017 | if (Block) FinishBlock(EntryConditionBlock); |
| 1018 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1019 | |
Ted Kremenek | 5482713 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 1020 | // The condition block is the implicit successor for the loop body. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1021 | Succ = EntryConditionBlock; |
| 1022 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1023 | // Process the loop body. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1024 | CFGBlock* BodyBlock = NULL; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1025 | { |
| 1026 | assert (D->getBody()); |
| 1027 | |
| 1028 | // Save the current values for Block, Succ, and continue and break targets |
| 1029 | SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ), |
| 1030 | save_continue(ContinueTargetBlock), |
| 1031 | save_break(BreakTargetBlock); |
| 1032 | |
| 1033 | // All continues within this loop should go to the condition block |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1034 | ContinueTargetBlock = EntryConditionBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1035 | |
| 1036 | // All breaks should go to the code following the loop. |
| 1037 | BreakTargetBlock = LoopSuccessor; |
| 1038 | |
| 1039 | // NULL out Block to force lazy instantiation of blocks for the body. |
| 1040 | Block = NULL; |
| 1041 | |
| 1042 | // Create the body. The returned block is the entry to the loop body. |
| 1043 | BodyBlock = Visit(D->getBody()); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1044 | |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 1045 | if (!BodyBlock) |
Ted Kremenek | a9d996d | 2008-02-27 00:28:17 +0000 | [diff] [blame] | 1046 | BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)" |
Ted Kremenek | af603f7 | 2007-08-30 18:39:40 +0000 | [diff] [blame] | 1047 | else if (Block) |
| 1048 | FinishBlock(BodyBlock); |
| 1049 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1050 | // Add the loop body entry as a successor to the condition. |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1051 | ExitConditionBlock->addSuccessor(BodyBlock); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1052 | } |
| 1053 | |
| 1054 | // Link up the condition block with the code that follows the loop. |
| 1055 | // (the false branch). |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1056 | ExitConditionBlock->addSuccessor(LoopSuccessor); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1057 | |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1058 | // There can be no more statements in the body block(s) |
| 1059 | // since we loop back to the body. NULL out Block to force |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1060 | // lazy creation of another block. |
| 1061 | Block = NULL; |
| 1062 | |
| 1063 | // Return the loop body, which is the dominating block for the loop. |
Ted Kremenek | 5482713 | 2008-02-27 07:20:00 +0000 | [diff] [blame] | 1064 | Succ = BodyBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1065 | return BodyBlock; |
| 1066 | } |
| 1067 | |
| 1068 | CFGBlock* CFGBuilder::VisitContinueStmt(ContinueStmt* C) { |
| 1069 | // "continue" is a control-flow statement. Thus we stop processing the |
| 1070 | // current block. |
| 1071 | if (Block) FinishBlock(Block); |
| 1072 | |
| 1073 | // Now create a new block that ends with the continue statement. |
| 1074 | Block = createBlock(false); |
| 1075 | Block->setTerminator(C); |
| 1076 | |
| 1077 | // If there is no target for the continue, then we are looking at an |
| 1078 | // incomplete AST. Handle this by not registering a successor. |
| 1079 | if (ContinueTargetBlock) Block->addSuccessor(ContinueTargetBlock); |
| 1080 | |
| 1081 | return Block; |
| 1082 | } |
| 1083 | |
| 1084 | CFGBlock* CFGBuilder::VisitBreakStmt(BreakStmt* B) { |
| 1085 | // "break" is a control-flow statement. Thus we stop processing the |
| 1086 | // current block. |
| 1087 | if (Block) FinishBlock(Block); |
| 1088 | |
| 1089 | // Now create a new block that ends with the continue statement. |
| 1090 | Block = createBlock(false); |
| 1091 | Block->setTerminator(B); |
| 1092 | |
| 1093 | // If there is no target for the break, then we are looking at an |
| 1094 | // incomplete AST. Handle this by not registering a successor. |
| 1095 | if (BreakTargetBlock) Block->addSuccessor(BreakTargetBlock); |
| 1096 | |
| 1097 | return Block; |
| 1098 | } |
| 1099 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1100 | CFGBlock* CFGBuilder::VisitSwitchStmt(SwitchStmt* Terminator) { |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1101 | // "switch" is a control-flow statement. Thus we stop processing the |
| 1102 | // current block. |
| 1103 | CFGBlock* SwitchSuccessor = NULL; |
| 1104 | |
| 1105 | if (Block) { |
| 1106 | FinishBlock(Block); |
| 1107 | SwitchSuccessor = Block; |
| 1108 | } |
| 1109 | else SwitchSuccessor = Succ; |
| 1110 | |
| 1111 | // Save the current "switch" context. |
| 1112 | SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock), |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 1113 | save_break(BreakTargetBlock), |
| 1114 | save_default(DefaultCaseBlock); |
| 1115 | |
| 1116 | // Set the "default" case to be the block after the switch statement. |
| 1117 | // If the switch statement contains a "default:", this value will |
| 1118 | // be overwritten with the block for that code. |
| 1119 | DefaultCaseBlock = SwitchSuccessor; |
Ted Kremenek | 295222c | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 1120 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1121 | // Create a new block that will contain the switch statement. |
| 1122 | SwitchTerminatedBlock = createBlock(false); |
| 1123 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1124 | // Now process the switch body. The code after the switch is the implicit |
| 1125 | // successor. |
| 1126 | Succ = SwitchSuccessor; |
| 1127 | BreakTargetBlock = SwitchSuccessor; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1128 | |
| 1129 | // When visiting the body, the case statements should automatically get |
| 1130 | // linked up to the switch. We also don't keep a pointer to the body, |
| 1131 | // since all control-flow from the switch goes to case/default statements. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1132 | assert (Terminator->getBody() && "switch must contain a non-NULL body"); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1133 | Block = NULL; |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1134 | CFGBlock *BodyBlock = Visit(Terminator->getBody()); |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1135 | if (Block) FinishBlock(BodyBlock); |
| 1136 | |
Ted Kremenek | 295222c | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 1137 | // If we have no "default:" case, the default transition is to the |
| 1138 | // code following the switch body. |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 1139 | SwitchTerminatedBlock->addSuccessor(DefaultCaseBlock); |
Ted Kremenek | 295222c | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 1140 | |
Ted Kremenek | 49af7cb | 2007-08-27 19:46:09 +0000 | [diff] [blame] | 1141 | // Add the terminator and condition in the switch block. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1142 | SwitchTerminatedBlock->setTerminator(Terminator); |
| 1143 | assert (Terminator->getCond() && "switch condition must be non-NULL"); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1144 | Block = SwitchTerminatedBlock; |
Ted Kremenek | 295222c | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 1145 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1146 | return addStmt(Terminator->getCond()); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1147 | } |
| 1148 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1149 | CFGBlock* CFGBuilder::VisitCaseStmt(CaseStmt* Terminator) { |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 1150 | // CaseStmts are essentially labels, so they are the |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1151 | // first statement in a block. |
Ted Kremenek | 29ccaa1 | 2007-08-30 18:48:11 +0000 | [diff] [blame] | 1152 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1153 | if (Terminator->getSubStmt()) Visit(Terminator->getSubStmt()); |
Ted Kremenek | 29ccaa1 | 2007-08-30 18:48:11 +0000 | [diff] [blame] | 1154 | CFGBlock* CaseBlock = Block; |
| 1155 | if (!CaseBlock) CaseBlock = createBlock(); |
| 1156 | |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 1157 | // Cases statements partition blocks, so this is the top of |
| 1158 | // the basic block we were processing (the "case XXX:" is the label). |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1159 | CaseBlock->setLabel(Terminator); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1160 | FinishBlock(CaseBlock); |
| 1161 | |
| 1162 | // Add this block to the list of successors for the block with the |
| 1163 | // switch statement. |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 1164 | assert (SwitchTerminatedBlock); |
| 1165 | SwitchTerminatedBlock->addSuccessor(CaseBlock); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1166 | |
| 1167 | // We set Block to NULL to allow lazy creation of a new block (if necessary) |
| 1168 | Block = NULL; |
| 1169 | |
| 1170 | // This block is now the implicit successor of other blocks. |
| 1171 | Succ = CaseBlock; |
| 1172 | |
Ted Kremenek | 2677ea8 | 2008-03-15 07:45:02 +0000 | [diff] [blame] | 1173 | return CaseBlock; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1174 | } |
Ted Kremenek | 295222c | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 1175 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1176 | CFGBlock* CFGBuilder::VisitDefaultStmt(DefaultStmt* Terminator) { |
| 1177 | if (Terminator->getSubStmt()) Visit(Terminator->getSubStmt()); |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 1178 | DefaultCaseBlock = Block; |
| 1179 | if (!DefaultCaseBlock) DefaultCaseBlock = createBlock(); |
| 1180 | |
| 1181 | // Default statements partition blocks, so this is the top of |
| 1182 | // the basic block we were processing (the "default:" is the label). |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1183 | DefaultCaseBlock->setLabel(Terminator); |
Ted Kremenek | eef5a9a | 2008-02-13 22:05:39 +0000 | [diff] [blame] | 1184 | FinishBlock(DefaultCaseBlock); |
| 1185 | |
| 1186 | // Unlike case statements, we don't add the default block to the |
| 1187 | // successors for the switch statement immediately. This is done |
| 1188 | // when we finish processing the switch statement. This allows for |
| 1189 | // the default case (including a fall-through to the code after the |
| 1190 | // switch statement) to always be the last successor of a switch-terminated |
| 1191 | // block. |
| 1192 | |
| 1193 | // We set Block to NULL to allow lazy creation of a new block (if necessary) |
| 1194 | Block = NULL; |
| 1195 | |
| 1196 | // This block is now the implicit successor of other blocks. |
| 1197 | Succ = DefaultCaseBlock; |
| 1198 | |
| 1199 | return DefaultCaseBlock; |
Ted Kremenek | 295222c | 2008-02-13 21:46:34 +0000 | [diff] [blame] | 1200 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1201 | |
Ted Kremenek | 19bb356 | 2007-08-28 19:26:49 +0000 | [diff] [blame] | 1202 | CFGBlock* CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt* I) { |
| 1203 | // Lazily create the indirect-goto dispatch block if there isn't one |
| 1204 | // already. |
| 1205 | CFGBlock* IBlock = cfg->getIndirectGotoBlock(); |
| 1206 | |
| 1207 | if (!IBlock) { |
| 1208 | IBlock = createBlock(false); |
| 1209 | cfg->setIndirectGotoBlock(IBlock); |
| 1210 | } |
| 1211 | |
| 1212 | // IndirectGoto is a control-flow statement. Thus we stop processing the |
| 1213 | // current block and create a new one. |
| 1214 | if (Block) FinishBlock(Block); |
| 1215 | Block = createBlock(false); |
| 1216 | Block->setTerminator(I); |
| 1217 | Block->addSuccessor(IBlock); |
| 1218 | return addStmt(I->getTarget()); |
| 1219 | } |
| 1220 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1221 | |
Ted Kremenek | befef2f | 2007-08-23 21:26:19 +0000 | [diff] [blame] | 1222 | } // end anonymous namespace |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 1223 | |
| 1224 | /// createBlock - Constructs and adds a new CFGBlock to the CFG. The |
| 1225 | /// block has no successors or predecessors. If this is the first block |
| 1226 | /// created in the CFG, it is automatically set to be the Entry and Exit |
| 1227 | /// of the CFG. |
Ted Kremenek | 9438252 | 2007-09-05 20:02:05 +0000 | [diff] [blame] | 1228 | CFGBlock* CFG::createBlock() { |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 1229 | bool first_block = begin() == end(); |
| 1230 | |
| 1231 | // Create the block. |
Ted Kremenek | 9438252 | 2007-09-05 20:02:05 +0000 | [diff] [blame] | 1232 | Blocks.push_front(CFGBlock(NumBlockIDs++)); |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 1233 | |
| 1234 | // If this is the first block, set it as the Entry and Exit. |
| 1235 | if (first_block) Entry = Exit = &front(); |
| 1236 | |
| 1237 | // Return the block. |
| 1238 | return &front(); |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1239 | } |
| 1240 | |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 1241 | /// buildCFG - Constructs a CFG from an AST. Ownership of the returned |
| 1242 | /// CFG is returned to the caller. |
| 1243 | CFG* CFG::buildCFG(Stmt* Statement) { |
| 1244 | CFGBuilder Builder; |
| 1245 | return Builder.buildCFG(Statement); |
| 1246 | } |
| 1247 | |
| 1248 | /// reverseStmts - Reverses the orders of statements within a CFGBlock. |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1249 | void CFGBlock::reverseStmts() { std::reverse(Stmts.begin(),Stmts.end()); } |
| 1250 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 1251 | //===----------------------------------------------------------------------===// |
| 1252 | // CFG: Queries for BlkExprs. |
| 1253 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 1254 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 1255 | namespace { |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 1256 | typedef llvm::DenseMap<const Stmt*,unsigned> BlkExprMapTy; |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 1257 | } |
| 1258 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1259 | static void FindSubExprAssignments(Stmt* Terminator, llvm::SmallPtrSet<Expr*,50>& Set) { |
| 1260 | if (!Terminator) |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1261 | return; |
| 1262 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1263 | for (Stmt::child_iterator I=Terminator->child_begin(), E=Terminator->child_end(); I!=E; ++I) { |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1264 | if (!*I) continue; |
| 1265 | |
| 1266 | if (BinaryOperator* B = dyn_cast<BinaryOperator>(*I)) |
| 1267 | if (B->isAssignmentOp()) Set.insert(B); |
| 1268 | |
| 1269 | FindSubExprAssignments(*I, Set); |
| 1270 | } |
| 1271 | } |
| 1272 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 1273 | static BlkExprMapTy* PopulateBlkExprMap(CFG& cfg) { |
| 1274 | BlkExprMapTy* M = new BlkExprMapTy(); |
| 1275 | |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1276 | // Look for assignments that are used as subexpressions. These are the |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1277 | // only assignments that we want to *possibly* register as a block-level |
| 1278 | // expression. Basically, if an assignment occurs both in a subexpression |
| 1279 | // and at the block-level, it is a block-level expression. |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1280 | llvm::SmallPtrSet<Expr*,50> SubExprAssignments; |
| 1281 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 1282 | for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) |
| 1283 | for (CFGBlock::iterator BI=I->begin(), EI=I->end(); BI != EI; ++BI) |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1284 | FindSubExprAssignments(*BI, SubExprAssignments); |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 1285 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1286 | for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) { |
| 1287 | |
| 1288 | // Iterate over the statements again on identify the Expr* and Stmt* at |
| 1289 | // the block-level that are block-level expressions. |
| 1290 | |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1291 | for (CFGBlock::iterator BI=I->begin(), EI=I->end(); BI != EI; ++BI) |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1292 | if (Expr* Exp = dyn_cast<Expr>(*BI)) { |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1293 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1294 | if (BinaryOperator* B = dyn_cast<BinaryOperator>(Exp)) { |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1295 | // Assignment expressions that are not nested within another |
| 1296 | // expression are really "statements" whose value is never |
| 1297 | // used by another expression. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1298 | if (B->isAssignmentOp() && !SubExprAssignments.count(Exp)) |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1299 | continue; |
| 1300 | } |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1301 | else if (const StmtExpr* Terminator = dyn_cast<StmtExpr>(Exp)) { |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1302 | // Special handling for statement expressions. The last statement |
| 1303 | // in the statement expression is also a block-level expr. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1304 | const CompoundStmt* C = Terminator->getSubStmt(); |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 1305 | if (!C->body_empty()) { |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1306 | unsigned x = M->size(); |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 1307 | (*M)[C->body_back()] = x; |
| 1308 | } |
| 1309 | } |
Ted Kremenek | e2dcd78 | 2008-01-25 23:22:27 +0000 | [diff] [blame] | 1310 | |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1311 | unsigned x = M->size(); |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1312 | (*M)[Exp] = x; |
Ted Kremenek | 33d4aab | 2008-01-26 00:03:27 +0000 | [diff] [blame] | 1313 | } |
| 1314 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1315 | // Look at terminators. The condition is a block-level expression. |
| 1316 | |
Ted Kremenek | 390e48b | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 1317 | Stmt* S = I->getTerminatorCondition(); |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1318 | |
Ted Kremenek | 390e48b | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 1319 | if (S && M->find(S) == M->end()) { |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1320 | unsigned x = M->size(); |
Ted Kremenek | 390e48b | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 1321 | (*M)[S] = x; |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1322 | } |
| 1323 | } |
| 1324 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 1325 | return M; |
| 1326 | } |
| 1327 | |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 1328 | CFG::BlkExprNumTy CFG::getBlkExprNum(const Stmt* S) { |
| 1329 | assert(S != NULL); |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 1330 | if (!BlkExprMap) { BlkExprMap = (void*) PopulateBlkExprMap(*this); } |
| 1331 | |
| 1332 | BlkExprMapTy* M = reinterpret_cast<BlkExprMapTy*>(BlkExprMap); |
Ted Kremenek | 8694674 | 2008-01-17 20:48:37 +0000 | [diff] [blame] | 1333 | BlkExprMapTy::iterator I = M->find(S); |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 1334 | |
| 1335 | if (I == M->end()) return CFG::BlkExprNumTy(); |
| 1336 | else return CFG::BlkExprNumTy(I->second); |
| 1337 | } |
| 1338 | |
| 1339 | unsigned CFG::getNumBlkExprs() { |
| 1340 | if (const BlkExprMapTy* M = reinterpret_cast<const BlkExprMapTy*>(BlkExprMap)) |
| 1341 | return M->size(); |
| 1342 | else { |
| 1343 | // We assume callers interested in the number of BlkExprs will want |
| 1344 | // the map constructed if it doesn't already exist. |
| 1345 | BlkExprMap = (void*) PopulateBlkExprMap(*this); |
| 1346 | return reinterpret_cast<BlkExprMapTy*>(BlkExprMap)->size(); |
| 1347 | } |
| 1348 | } |
| 1349 | |
Ted Kremenek | 274f433 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 1350 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 274f433 | 2008-04-28 18:00:46 +0000 | [diff] [blame] | 1351 | // Cleanup: CFG dstor. |
| 1352 | //===----------------------------------------------------------------------===// |
| 1353 | |
Ted Kremenek | 63f5887 | 2007-10-01 19:33:33 +0000 | [diff] [blame] | 1354 | CFG::~CFG() { |
| 1355 | delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap); |
| 1356 | } |
| 1357 | |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 1358 | //===----------------------------------------------------------------------===// |
| 1359 | // CFG pretty printing |
| 1360 | //===----------------------------------------------------------------------===// |
| 1361 | |
Ted Kremenek | e8ee26b | 2007-08-22 18:22:34 +0000 | [diff] [blame] | 1362 | namespace { |
| 1363 | |
Ted Kremenek | 6fa9b88 | 2008-01-08 18:15:10 +0000 | [diff] [blame] | 1364 | class VISIBILITY_HIDDEN StmtPrinterHelper : public PrinterHelper { |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1365 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1366 | typedef llvm::DenseMap<Stmt*,std::pair<unsigned,unsigned> > StmtMapTy; |
| 1367 | StmtMapTy StmtMap; |
| 1368 | signed CurrentBlock; |
| 1369 | unsigned CurrentStmt; |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1370 | |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1371 | public: |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1372 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1373 | StmtPrinterHelper(const CFG* cfg) : CurrentBlock(0), CurrentStmt(0) { |
| 1374 | for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) { |
| 1375 | unsigned j = 1; |
| 1376 | for (CFGBlock::const_iterator BI = I->begin(), BEnd = I->end() ; |
| 1377 | BI != BEnd; ++BI, ++j ) |
| 1378 | StmtMap[*BI] = std::make_pair(I->getBlockID(),j); |
| 1379 | } |
| 1380 | } |
| 1381 | |
| 1382 | virtual ~StmtPrinterHelper() {} |
| 1383 | |
| 1384 | void setBlockID(signed i) { CurrentBlock = i; } |
| 1385 | void setStmtID(unsigned i) { CurrentStmt = i; } |
| 1386 | |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1387 | virtual bool handledStmt(Stmt* Terminator, llvm::raw_ostream& OS) { |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1388 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1389 | StmtMapTy::iterator I = StmtMap.find(Terminator); |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1390 | |
| 1391 | if (I == StmtMap.end()) |
| 1392 | return false; |
| 1393 | |
| 1394 | if (CurrentBlock >= 0 && I->second.first == (unsigned) CurrentBlock |
| 1395 | && I->second.second == CurrentStmt) |
| 1396 | return false; |
| 1397 | |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1398 | OS << "[B" << I->second.first << "." << I->second.second << "]"; |
| 1399 | return true; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1400 | } |
| 1401 | }; |
| 1402 | |
Ted Kremenek | 6fa9b88 | 2008-01-08 18:15:10 +0000 | [diff] [blame] | 1403 | class VISIBILITY_HIDDEN CFGBlockTerminatorPrint |
| 1404 | : public StmtVisitor<CFGBlockTerminatorPrint,void> { |
| 1405 | |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1406 | llvm::raw_ostream& OS; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1407 | StmtPrinterHelper* Helper; |
| 1408 | public: |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1409 | CFGBlockTerminatorPrint(llvm::raw_ostream& os, StmtPrinterHelper* helper) |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1410 | : OS(os), Helper(helper) {} |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1411 | |
| 1412 | void VisitIfStmt(IfStmt* I) { |
| 1413 | OS << "if "; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1414 | I->getCond()->printPretty(OS,Helper); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1415 | } |
| 1416 | |
| 1417 | // Default case. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1418 | void VisitStmt(Stmt* Terminator) { Terminator->printPretty(OS); } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1419 | |
| 1420 | void VisitForStmt(ForStmt* F) { |
| 1421 | OS << "for (" ; |
Ted Kremenek | 535bb20 | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 1422 | if (F->getInit()) OS << "..."; |
| 1423 | OS << "; "; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1424 | if (Stmt* C = F->getCond()) C->printPretty(OS,Helper); |
Ted Kremenek | 535bb20 | 2007-08-30 21:28:02 +0000 | [diff] [blame] | 1425 | OS << "; "; |
| 1426 | if (F->getInc()) OS << "..."; |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 1427 | OS << ")"; |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1428 | } |
| 1429 | |
| 1430 | void VisitWhileStmt(WhileStmt* W) { |
| 1431 | OS << "while " ; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1432 | if (Stmt* C = W->getCond()) C->printPretty(OS,Helper); |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1433 | } |
| 1434 | |
| 1435 | void VisitDoStmt(DoStmt* D) { |
| 1436 | OS << "do ... while "; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1437 | if (Stmt* C = D->getCond()) C->printPretty(OS,Helper); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 1438 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1439 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1440 | void VisitSwitchStmt(SwitchStmt* Terminator) { |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 1441 | OS << "switch "; |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1442 | Terminator->getCond()->printPretty(OS,Helper); |
Ted Kremenek | 9da2fb7 | 2007-08-27 21:27:44 +0000 | [diff] [blame] | 1443 | } |
| 1444 | |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 1445 | void VisitConditionalOperator(ConditionalOperator* C) { |
| 1446 | C->getCond()->printPretty(OS,Helper); |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 1447 | OS << " ? ... : ..."; |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 1448 | } |
| 1449 | |
Ted Kremenek | aeddbf6 | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 1450 | void VisitChooseExpr(ChooseExpr* C) { |
| 1451 | OS << "__builtin_choose_expr( "; |
| 1452 | C->getCond()->printPretty(OS,Helper); |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 1453 | OS << " )"; |
Ted Kremenek | aeddbf6 | 2007-08-31 22:29:13 +0000 | [diff] [blame] | 1454 | } |
| 1455 | |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1456 | void VisitIndirectGotoStmt(IndirectGotoStmt* I) { |
| 1457 | OS << "goto *"; |
| 1458 | I->getTarget()->printPretty(OS,Helper); |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1459 | } |
| 1460 | |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 1461 | void VisitBinaryOperator(BinaryOperator* B) { |
| 1462 | if (!B->isLogicalOp()) { |
| 1463 | VisitExpr(B); |
| 1464 | return; |
| 1465 | } |
| 1466 | |
| 1467 | B->getLHS()->printPretty(OS,Helper); |
| 1468 | |
| 1469 | switch (B->getOpcode()) { |
| 1470 | case BinaryOperator::LOr: |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 1471 | OS << " || ..."; |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 1472 | return; |
| 1473 | case BinaryOperator::LAnd: |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 1474 | OS << " && ..."; |
Ted Kremenek | 805e9a8 | 2007-08-31 21:49:40 +0000 | [diff] [blame] | 1475 | return; |
| 1476 | default: |
| 1477 | assert(false && "Invalid logical operator."); |
| 1478 | } |
| 1479 | } |
| 1480 | |
Ted Kremenek | 0b1d9b7 | 2007-08-27 21:54:41 +0000 | [diff] [blame] | 1481 | void VisitExpr(Expr* E) { |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1482 | E->printPretty(OS,Helper); |
Ted Kremenek | 0b1d9b7 | 2007-08-27 21:54:41 +0000 | [diff] [blame] | 1483 | } |
Ted Kremenek | d4fdee3 | 2007-08-23 21:42:29 +0000 | [diff] [blame] | 1484 | }; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1485 | |
| 1486 | |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1487 | void print_stmt(llvm::raw_ostream&OS, StmtPrinterHelper* Helper, Stmt* Terminator) { |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1488 | if (Helper) { |
| 1489 | // special printing for statement-expressions. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1490 | if (StmtExpr* SE = dyn_cast<StmtExpr>(Terminator)) { |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1491 | CompoundStmt* Sub = SE->getSubStmt(); |
| 1492 | |
| 1493 | if (Sub->child_begin() != Sub->child_end()) { |
Ted Kremenek | 60266e8 | 2007-08-31 22:47:06 +0000 | [diff] [blame] | 1494 | OS << "({ ... ; "; |
Ted Kremenek | 7a9d9d7 | 2007-10-29 20:41:04 +0000 | [diff] [blame] | 1495 | Helper->handledStmt(*SE->getSubStmt()->body_rbegin(),OS); |
Ted Kremenek | 60266e8 | 2007-08-31 22:47:06 +0000 | [diff] [blame] | 1496 | OS << " })\n"; |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1497 | return; |
| 1498 | } |
| 1499 | } |
| 1500 | |
| 1501 | // special printing for comma expressions. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1502 | if (BinaryOperator* B = dyn_cast<BinaryOperator>(Terminator)) { |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1503 | if (B->getOpcode() == BinaryOperator::Comma) { |
| 1504 | OS << "... , "; |
| 1505 | Helper->handledStmt(B->getRHS(),OS); |
| 1506 | OS << '\n'; |
| 1507 | return; |
| 1508 | } |
| 1509 | } |
| 1510 | } |
| 1511 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1512 | Terminator->printPretty(OS, Helper); |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1513 | |
| 1514 | // Expressions need a newline. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1515 | if (isa<Expr>(Terminator)) OS << '\n'; |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1516 | } |
| 1517 | |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1518 | void print_block(llvm::raw_ostream& OS, const CFG* cfg, const CFGBlock& B, |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1519 | StmtPrinterHelper* Helper, bool print_edges) { |
| 1520 | |
| 1521 | if (Helper) Helper->setBlockID(B.getBlockID()); |
| 1522 | |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 1523 | // Print the header. |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1524 | OS << "\n [ B" << B.getBlockID(); |
| 1525 | |
| 1526 | if (&B == &cfg->getEntry()) |
| 1527 | OS << " (ENTRY) ]\n"; |
| 1528 | else if (&B == &cfg->getExit()) |
| 1529 | OS << " (EXIT) ]\n"; |
| 1530 | else if (&B == cfg->getIndirectGotoBlock()) |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 1531 | OS << " (INDIRECT GOTO DISPATCH) ]\n"; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1532 | else |
| 1533 | OS << " ]\n"; |
| 1534 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1535 | // Print the label of this block. |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1536 | if (Stmt* Terminator = const_cast<Stmt*>(B.getLabel())) { |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1537 | |
| 1538 | if (print_edges) |
| 1539 | OS << " "; |
| 1540 | |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1541 | if (LabelStmt* L = dyn_cast<LabelStmt>(Terminator)) |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1542 | OS << L->getName(); |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1543 | else if (CaseStmt* C = dyn_cast<CaseStmt>(Terminator)) { |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1544 | OS << "case "; |
| 1545 | C->getLHS()->printPretty(OS); |
| 1546 | if (C->getRHS()) { |
| 1547 | OS << " ... "; |
| 1548 | C->getRHS()->printPretty(OS); |
| 1549 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1550 | } |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1551 | else if (isa<DefaultStmt>(Terminator)) |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1552 | OS << "default"; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1553 | else |
| 1554 | assert(false && "Invalid label statement in CFGBlock."); |
| 1555 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1556 | OS << ":\n"; |
| 1557 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1558 | |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1559 | // Iterate through the statements in the block and print them. |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1560 | unsigned j = 1; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1561 | |
| 1562 | for (CFGBlock::const_iterator I = B.begin(), E = B.end() ; |
| 1563 | I != E ; ++I, ++j ) { |
| 1564 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1565 | // Print the statement # in the basic block and the statement itself. |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1566 | if (print_edges) |
| 1567 | OS << " "; |
| 1568 | |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1569 | OS << llvm::format("%3d", j) << ": "; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1570 | |
| 1571 | if (Helper) |
| 1572 | Helper->setStmtID(j); |
Ted Kremenek | 1c29bba | 2007-08-31 22:26:13 +0000 | [diff] [blame] | 1573 | |
| 1574 | print_stmt(OS,Helper,*I); |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1575 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1576 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1577 | // Print the terminator of this block. |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1578 | if (B.getTerminator()) { |
| 1579 | if (print_edges) |
| 1580 | OS << " "; |
| 1581 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1582 | OS << " T: "; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1583 | |
| 1584 | if (Helper) Helper->setBlockID(-1); |
| 1585 | |
| 1586 | CFGBlockTerminatorPrint TPrinter(OS,Helper); |
| 1587 | TPrinter.Visit(const_cast<Stmt*>(B.getTerminator())); |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 1588 | OS << '\n'; |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1589 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1590 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1591 | if (print_edges) { |
| 1592 | // Print the predecessors of this block. |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1593 | OS << " Predecessors (" << B.pred_size() << "):"; |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1594 | unsigned i = 0; |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1595 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1596 | for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end(); |
| 1597 | I != E; ++I, ++i) { |
| 1598 | |
| 1599 | if (i == 8 || (i-8) == 0) |
| 1600 | OS << "\n "; |
| 1601 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1602 | OS << " B" << (*I)->getBlockID(); |
| 1603 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1604 | |
| 1605 | OS << '\n'; |
| 1606 | |
| 1607 | // Print the successors of this block. |
| 1608 | OS << " Successors (" << B.succ_size() << "):"; |
| 1609 | i = 0; |
| 1610 | |
| 1611 | for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end(); |
| 1612 | I != E; ++I, ++i) { |
| 1613 | |
| 1614 | if (i == 8 || (i-8) % 10 == 0) |
| 1615 | OS << "\n "; |
| 1616 | |
| 1617 | OS << " B" << (*I)->getBlockID(); |
| 1618 | } |
| 1619 | |
Ted Kremenek | 9cffe73 | 2007-08-29 23:20:49 +0000 | [diff] [blame] | 1620 | OS << '\n'; |
Ted Kremenek | fddd518 | 2007-08-21 21:42:03 +0000 | [diff] [blame] | 1621 | } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1622 | } |
| 1623 | |
| 1624 | } // end anonymous namespace |
| 1625 | |
| 1626 | /// dump - A simple pretty printer of a CFG that outputs to stderr. |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1627 | void CFG::dump() const { print(llvm::errs()); } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1628 | |
| 1629 | /// print - A simple pretty printer of a CFG that outputs to an ostream. |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1630 | void CFG::print(llvm::raw_ostream& OS) const { |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1631 | |
| 1632 | StmtPrinterHelper Helper(this); |
| 1633 | |
| 1634 | // Print the entry block. |
| 1635 | print_block(OS, this, getEntry(), &Helper, true); |
| 1636 | |
| 1637 | // Iterate through the CFGBlocks and print them one by one. |
| 1638 | for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) { |
| 1639 | // Skip the entry block, because we already printed it. |
| 1640 | if (&(*I) == &getEntry() || &(*I) == &getExit()) |
| 1641 | continue; |
| 1642 | |
| 1643 | print_block(OS, this, *I, &Helper, true); |
| 1644 | } |
| 1645 | |
| 1646 | // Print the exit block. |
| 1647 | print_block(OS, this, getExit(), &Helper, true); |
Ted Kremenek | d017243 | 2008-11-24 20:50:24 +0000 | [diff] [blame] | 1648 | OS.flush(); |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | /// dump - A simply pretty printer of a CFGBlock that outputs to stderr. |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1652 | void CFGBlock::dump(const CFG* cfg) const { print(llvm::errs(), cfg); } |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1653 | |
| 1654 | /// print - A simple pretty printer of a CFGBlock that outputs to an ostream. |
| 1655 | /// Generally this will only be called from CFG::print. |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1656 | void CFGBlock::print(llvm::raw_ostream& OS, const CFG* cfg) const { |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1657 | StmtPrinterHelper Helper(cfg); |
| 1658 | print_block(OS, cfg, *this, &Helper, true); |
Ted Kremenek | 026473c | 2007-08-23 16:51:22 +0000 | [diff] [blame] | 1659 | } |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 1660 | |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 1661 | /// printTerminator - A simple pretty printer of the terminator of a CFGBlock. |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1662 | void CFGBlock::printTerminator(llvm::raw_ostream& OS) const { |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 1663 | CFGBlockTerminatorPrint TPrinter(OS,NULL); |
| 1664 | TPrinter.Visit(const_cast<Stmt*>(getTerminator())); |
| 1665 | } |
| 1666 | |
Ted Kremenek | 390e48b | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 1667 | Stmt* CFGBlock::getTerminatorCondition() { |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1668 | |
| 1669 | if (!Terminator) |
| 1670 | return NULL; |
| 1671 | |
| 1672 | Expr* E = NULL; |
| 1673 | |
| 1674 | switch (Terminator->getStmtClass()) { |
| 1675 | default: |
| 1676 | break; |
| 1677 | |
| 1678 | case Stmt::ForStmtClass: |
| 1679 | E = cast<ForStmt>(Terminator)->getCond(); |
| 1680 | break; |
| 1681 | |
| 1682 | case Stmt::WhileStmtClass: |
| 1683 | E = cast<WhileStmt>(Terminator)->getCond(); |
| 1684 | break; |
| 1685 | |
| 1686 | case Stmt::DoStmtClass: |
| 1687 | E = cast<DoStmt>(Terminator)->getCond(); |
| 1688 | break; |
| 1689 | |
| 1690 | case Stmt::IfStmtClass: |
| 1691 | E = cast<IfStmt>(Terminator)->getCond(); |
| 1692 | break; |
| 1693 | |
| 1694 | case Stmt::ChooseExprClass: |
| 1695 | E = cast<ChooseExpr>(Terminator)->getCond(); |
| 1696 | break; |
| 1697 | |
| 1698 | case Stmt::IndirectGotoStmtClass: |
| 1699 | E = cast<IndirectGotoStmt>(Terminator)->getTarget(); |
| 1700 | break; |
| 1701 | |
| 1702 | case Stmt::SwitchStmtClass: |
| 1703 | E = cast<SwitchStmt>(Terminator)->getCond(); |
| 1704 | break; |
| 1705 | |
| 1706 | case Stmt::ConditionalOperatorClass: |
| 1707 | E = cast<ConditionalOperator>(Terminator)->getCond(); |
| 1708 | break; |
| 1709 | |
| 1710 | case Stmt::BinaryOperatorClass: // '&&' and '||' |
| 1711 | E = cast<BinaryOperator>(Terminator)->getLHS(); |
Ted Kremenek | 390e48b | 2008-11-12 21:11:49 +0000 | [diff] [blame] | 1712 | break; |
| 1713 | |
| 1714 | case Stmt::ObjCForCollectionStmtClass: |
| 1715 | return Terminator; |
Ted Kremenek | 411cdee | 2008-04-16 21:10:48 +0000 | [diff] [blame] | 1716 | } |
| 1717 | |
| 1718 | return E ? E->IgnoreParens() : NULL; |
| 1719 | } |
| 1720 | |
Ted Kremenek | 9c2535a | 2008-05-16 16:06:00 +0000 | [diff] [blame] | 1721 | bool CFGBlock::hasBinaryBranchTerminator() const { |
| 1722 | |
| 1723 | if (!Terminator) |
| 1724 | return false; |
| 1725 | |
| 1726 | Expr* E = NULL; |
| 1727 | |
| 1728 | switch (Terminator->getStmtClass()) { |
| 1729 | default: |
| 1730 | return false; |
| 1731 | |
| 1732 | case Stmt::ForStmtClass: |
| 1733 | case Stmt::WhileStmtClass: |
| 1734 | case Stmt::DoStmtClass: |
| 1735 | case Stmt::IfStmtClass: |
| 1736 | case Stmt::ChooseExprClass: |
| 1737 | case Stmt::ConditionalOperatorClass: |
| 1738 | case Stmt::BinaryOperatorClass: |
| 1739 | return true; |
| 1740 | } |
| 1741 | |
| 1742 | return E ? E->IgnoreParens() : NULL; |
| 1743 | } |
| 1744 | |
Ted Kremenek | a292585 | 2008-01-30 23:02:42 +0000 | [diff] [blame] | 1745 | |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 1746 | //===----------------------------------------------------------------------===// |
| 1747 | // CFG Graphviz Visualization |
| 1748 | //===----------------------------------------------------------------------===// |
| 1749 | |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1750 | |
| 1751 | #ifndef NDEBUG |
Chris Lattner | 0012351 | 2007-09-17 06:16:32 +0000 | [diff] [blame] | 1752 | static StmtPrinterHelper* GraphHelper; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1753 | #endif |
| 1754 | |
| 1755 | void CFG::viewCFG() const { |
| 1756 | #ifndef NDEBUG |
| 1757 | StmtPrinterHelper H(this); |
| 1758 | GraphHelper = &H; |
| 1759 | llvm::ViewGraph(this,"CFG"); |
| 1760 | GraphHelper = NULL; |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1761 | #endif |
| 1762 | } |
| 1763 | |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 1764 | namespace llvm { |
| 1765 | template<> |
| 1766 | struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits { |
| 1767 | static std::string getNodeLabel(const CFGBlock* Node, const CFG* Graph) { |
| 1768 | |
Hartmut Kaiser | bd250b4 | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 1769 | #ifndef NDEBUG |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1770 | std::string OutSStr; |
| 1771 | llvm::raw_string_ostream Out(OutSStr); |
Ted Kremenek | 42a509f | 2007-08-31 21:30:12 +0000 | [diff] [blame] | 1772 | print_block(Out,Graph, *Node, GraphHelper, false); |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1773 | std::string& OutStr = Out.str(); |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 1774 | |
| 1775 | if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); |
| 1776 | |
| 1777 | // Process string output to make it nicer... |
| 1778 | for (unsigned i = 0; i != OutStr.length(); ++i) |
| 1779 | if (OutStr[i] == '\n') { // Left justify |
| 1780 | OutStr[i] = '\\'; |
| 1781 | OutStr.insert(OutStr.begin()+i+1, 'l'); |
| 1782 | } |
| 1783 | |
| 1784 | return OutStr; |
Hartmut Kaiser | bd250b4 | 2007-09-16 00:28:28 +0000 | [diff] [blame] | 1785 | #else |
| 1786 | return ""; |
| 1787 | #endif |
Ted Kremenek | 7dba860 | 2007-08-29 21:56:09 +0000 | [diff] [blame] | 1788 | } |
| 1789 | }; |
| 1790 | } // end namespace llvm |