blob: 4b181a954c0e9cee42587ca9ff1ee1905b9c4f83 [file] [log] [blame]
Ted Kremenek11de5cb2007-09-20 21:42:55 +00001//=- LiveVariables.cpp - Live Variable Analysis for Source CFGs -*- C++ --*-==//
Ted Kremeneke4e63342007-09-06 00:17:54 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Ted Kremeneke4e63342007-09-06 00:17:54 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements Live Variables analysis for source-level CFGs.
11//
12//===----------------------------------------------------------------------===//
13
Ted Kremenekcf6e41b2007-12-21 21:42:19 +000014#include "clang/Analysis/Analyses/LiveVariables.h"
Ted Kremenek27b07c52007-09-06 21:26:58 +000015#include "clang/Basic/SourceManager.h"
Ted Kremeneke4e63342007-09-06 00:17:54 +000016#include "clang/AST/Expr.h"
17#include "clang/AST/CFG.h"
Ted Kremenekfdd225e2007-09-25 04:31:27 +000018#include "clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h"
Ted Kremenek1de632b2007-09-25 21:00:24 +000019#include "clang/Analysis/FlowSensitive/DataflowSolver.h"
Ted Kremeneke4e63342007-09-06 00:17:54 +000020#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek7deed0c2008-04-15 18:35:30 +000021#include "llvm/ADT/SmallVector.h"
Ted Kremenekc2b51d82008-01-08 18:19:08 +000022#include "llvm/Support/Compiler.h"
Ted Kremeneke4e63342007-09-06 00:17:54 +000023
Ted Kremenek27b07c52007-09-06 21:26:58 +000024#include <string.h>
25#include <stdio.h>
Ted Kremeneke4e63342007-09-06 00:17:54 +000026
27using namespace clang;
28
29//===----------------------------------------------------------------------===//
Ted Kremenek7deed0c2008-04-15 18:35:30 +000030// Useful constants.
31//===----------------------------------------------------------------------===//
32
33static const bool Alive = true;
34static const bool Dead = false;
35
36//===----------------------------------------------------------------------===//
Ted Kremenekfdd225e2007-09-25 04:31:27 +000037// Dataflow initialization logic.
38//===----------------------------------------------------------------------===//
Ted Kremeneke4e63342007-09-06 00:17:54 +000039
40namespace {
Ted Kremenekc2b51d82008-01-08 18:19:08 +000041class VISIBILITY_HIDDEN RegisterDecls
42 : public CFGRecStmtDeclVisitor<RegisterDecls> {
43
Ted Kremenekfdd225e2007-09-25 04:31:27 +000044 LiveVariables::AnalysisDataTy& AD;
Ted Kremenek7deed0c2008-04-15 18:35:30 +000045
46 typedef llvm::SmallVector<VarDecl*, 20> AlwaysLiveTy;
47 AlwaysLiveTy AlwaysLive;
48
49
Ted Kremenekf63aa452007-09-28 20:38:59 +000050public:
Ted Kremenek7deed0c2008-04-15 18:35:30 +000051 RegisterDecls(LiveVariables::AnalysisDataTy& ad) : AD(ad) {}
52
53 ~RegisterDecls() {
54
55 AD.AlwaysLive.resetValues(AD);
56
57 for (AlwaysLiveTy::iterator I = AlwaysLive.begin(), E = AlwaysLive.end();
58 I != E; ++ I)
59 AD.AlwaysLive(*I, AD) = Alive;
60 }
61
Chris Lattner41110242008-06-17 18:05:57 +000062 void VisitImplicitParamDecl(ImplicitParamDecl* IPD) {
63 // Register the VarDecl for tracking.
64 AD.Register(IPD);
65 }
66
Ted Kremenek7deed0c2008-04-15 18:35:30 +000067 void VisitVarDecl(VarDecl* VD) {
68 // Register the VarDecl for tracking.
69 AD.Register(VD);
70
71 // Does the variable have global storage? If so, it is always live.
72 if (VD->hasGlobalStorage())
73 AlwaysLive.push_back(VD);
74 }
75
76 void VisitUnaryOperator(UnaryOperator* U) {
77 // Check for '&'. Any VarDecl whose value has its address-taken we
78 // treat as always being live (flow-insensitive).
79
80 Expr* E = U->getSubExpr()->IgnoreParenCasts();
81
82 if (U->getOpcode() == UnaryOperator::AddrOf)
83 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E))
84 if (VarDecl* VD = dyn_cast<VarDecl>(DR->getDecl())) {
85 AD.Register(VD);
86 AlwaysLive.push_back(VD);
87 return;
88 }
89
90 Visit(E);
91 }
92
Ted Kremenek9f9141c2007-11-20 03:01:58 +000093 CFG& getCFG() { return AD.getCFG(); }
Ted Kremenek11e72182007-10-01 20:33:52 +000094};
Ted Kremeneke4e63342007-09-06 00:17:54 +000095} // end anonymous namespace
96
Ted Kremenekbffaa832008-01-29 05:13:23 +000097
Ted Kremenek7cb15932008-03-13 16:55:07 +000098LiveVariables::LiveVariables(CFG& cfg) {
99 // Register all referenced VarDecls.
Ted Kremenekbffaa832008-01-29 05:13:23 +0000100 getAnalysisData().setCFG(&cfg);
Ted Kremenek11e72182007-10-01 20:33:52 +0000101 RegisterDecls R(getAnalysisData());
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000102 cfg.VisitBlockStmts(R);
103}
Ted Kremeneke4e63342007-09-06 00:17:54 +0000104
105//===----------------------------------------------------------------------===//
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000106// Transfer functions.
107//===----------------------------------------------------------------------===//
Ted Kremeneke4e63342007-09-06 00:17:54 +0000108
109namespace {
Ted Kremenekf63aa452007-09-28 20:38:59 +0000110
Ted Kremenekc2b51d82008-01-08 18:19:08 +0000111class VISIBILITY_HIDDEN TransferFuncs : public CFGRecStmtVisitor<TransferFuncs>{
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000112 LiveVariables::AnalysisDataTy& AD;
Ted Kremenekf63aa452007-09-28 20:38:59 +0000113 LiveVariables::ValTy LiveState;
Ted Kremeneke4e63342007-09-06 00:17:54 +0000114public:
Ted Kremenek11e72182007-10-01 20:33:52 +0000115 TransferFuncs(LiveVariables::AnalysisDataTy& ad) : AD(ad) {}
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000116
Ted Kremenekf63aa452007-09-28 20:38:59 +0000117 LiveVariables::ValTy& getVal() { return LiveState; }
Ted Kremenek9f9141c2007-11-20 03:01:58 +0000118 CFG& getCFG() { return AD.getCFG(); }
Ted Kremenekf1758052007-09-12 19:10:52 +0000119
Ted Kremeneke4e63342007-09-06 00:17:54 +0000120 void VisitDeclRefExpr(DeclRefExpr* DR);
121 void VisitBinaryOperator(BinaryOperator* B);
122 void VisitAssign(BinaryOperator* B);
Ted Kremenek27b07c52007-09-06 21:26:58 +0000123 void VisitDeclStmt(DeclStmt* DS);
Ted Kremenekbfcb7122008-11-12 21:58:46 +0000124 void BlockStmt_VisitObjCForCollectionStmt(ObjCForCollectionStmt* S);
Ted Kremenek27b07c52007-09-06 21:26:58 +0000125 void VisitUnaryOperator(UnaryOperator* U);
Ted Kremenek8f5aab62008-11-11 17:42:10 +0000126 void Visit(Stmt *S);
Ted Kremenek411cdee2008-04-16 21:10:48 +0000127 void VisitTerminator(CFGBlock* B);
Ted Kremenek7deed0c2008-04-15 18:35:30 +0000128
129 void SetTopValue(LiveVariables::ValTy& V) {
130 V = AD.AlwaysLive;
131 }
132
Ted Kremeneke4e63342007-09-06 00:17:54 +0000133};
Ted Kremenek11e72182007-10-01 20:33:52 +0000134
Ted Kremenek11e72182007-10-01 20:33:52 +0000135void TransferFuncs::Visit(Stmt *S) {
Ted Kremenekf63aa452007-09-28 20:38:59 +0000136
Ted Kremenek86946742008-01-17 20:48:37 +0000137 if (S == getCurrentBlkStmt()) {
Ted Kremenek03648652008-07-03 22:25:27 +0000138
139 if (AD.Observer)
140 AD.Observer->ObserveStmt(S,AD,LiveState);
141
Ted Kremenek1aa9a582008-03-05 19:26:46 +0000142 if (getCFG().isBlkExpr(S)) LiveState(S,AD) = Dead;
Ted Kremenek2a9da9c2008-01-18 00:40:21 +0000143 StmtVisitor<TransferFuncs,void>::Visit(S);
Ted Kremenek86946742008-01-17 20:48:37 +0000144 }
Ted Kremenek03648652008-07-03 22:25:27 +0000145 else if (!getCFG().isBlkExpr(S)) {
146
147 if (AD.Observer)
148 AD.Observer->ObserveStmt(S,AD,LiveState);
149
Ted Kremenek86946742008-01-17 20:48:37 +0000150 StmtVisitor<TransferFuncs,void>::Visit(S);
Ted Kremenek03648652008-07-03 22:25:27 +0000151
152 }
Ted Kremenek86946742008-01-17 20:48:37 +0000153 else
154 // For block-level expressions, mark that they are live.
155 LiveState(S,AD) = Alive;
Ted Kremenek11e72182007-10-01 20:33:52 +0000156}
Ted Kremenek37622082008-04-15 04:39:08 +0000157
Ted Kremenek411cdee2008-04-16 21:10:48 +0000158void TransferFuncs::VisitTerminator(CFGBlock* B) {
159
Ted Kremenek8ded8d82008-11-12 21:12:18 +0000160 const Stmt* E = B->getTerminatorCondition();
Ted Kremenek411cdee2008-04-16 21:10:48 +0000161
Ted Kremenek5cd24382008-04-16 17:07:59 +0000162 if (!E)
163 return;
164
Ted Kremenek5cd24382008-04-16 17:07:59 +0000165 assert (getCFG().isBlkExpr(E));
166 LiveState(E, AD) = Alive;
Ted Kremenek37622082008-04-15 04:39:08 +0000167}
168
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000169void TransferFuncs::VisitDeclRefExpr(DeclRefExpr* DR) {
170 if (VarDecl* V = dyn_cast<VarDecl>(DR->getDecl()))
Ted Kremenekf63aa452007-09-28 20:38:59 +0000171 LiveState(V,AD) = Alive;
Ted Kremeneke4e63342007-09-06 00:17:54 +0000172}
Ted Kremeneke4e63342007-09-06 00:17:54 +0000173
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000174void TransferFuncs::VisitBinaryOperator(BinaryOperator* B) {
Ted Kremenekf1758052007-09-12 19:10:52 +0000175 if (B->isAssignmentOp()) VisitAssign(B);
176 else VisitStmt(B);
Ted Kremeneke4e63342007-09-06 00:17:54 +0000177}
178
Ted Kremenekbfcb7122008-11-12 21:58:46 +0000179void
180TransferFuncs::BlockStmt_VisitObjCForCollectionStmt(ObjCForCollectionStmt* S) {
181
Ted Kremenek06529ae2008-11-14 21:07:14 +0000182 // This is a block-level expression. Its value is 'dead' before this point.
183 LiveState(S, AD) = Dead;
184
Ted Kremeneke97d9db2008-11-11 19:40:47 +0000185 // This represents a 'use' of the collection.
186 Visit(S->getCollection());
Ted Kremenek8f5aab62008-11-11 17:42:10 +0000187
188 // This represents a 'kill' for the variable.
Ted Kremeneke97d9db2008-11-11 19:40:47 +0000189 Stmt* Element = S->getElement();
Ted Kremenek8f646002008-11-14 01:58:12 +0000190 DeclRefExpr* DR = 0;
Ted Kremeneke97d9db2008-11-11 19:40:47 +0000191 VarDecl* VD = 0;
192
193 if (DeclStmt* DS = dyn_cast<DeclStmt>(Element))
194 VD = cast<VarDecl>(DS->getSolitaryDecl());
195 else {
Ted Kremenek8f646002008-11-14 01:58:12 +0000196 Expr* ElemExpr = cast<Expr>(Element)->IgnoreParens();
197 if ((DR = dyn_cast<DeclRefExpr>(ElemExpr)))
198 VD = cast<VarDecl>(DR->getDecl());
Ted Kremenek06529ae2008-11-14 21:07:14 +0000199 else {
200 Visit(ElemExpr);
201 return;
202 }
Ted Kremeneke97d9db2008-11-11 19:40:47 +0000203 }
204
Ted Kremenek8f646002008-11-14 01:58:12 +0000205 if (VD) {
206 LiveState(VD, AD) = Dead;
207 if (AD.Observer && DR) { AD.Observer->ObserverKill(DR); }
208 }
Ted Kremenek8f5aab62008-11-11 17:42:10 +0000209}
210
211
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000212void TransferFuncs::VisitUnaryOperator(UnaryOperator* U) {
Ted Kremenek5e2b6092008-01-17 17:50:49 +0000213 Expr *E = U->getSubExpr();
Ted Kremenekbcb07d52007-09-28 21:29:33 +0000214
Ted Kremenek27b07c52007-09-06 21:26:58 +0000215 switch (U->getOpcode()) {
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000216 case UnaryOperator::PostInc:
217 case UnaryOperator::PostDec:
218 case UnaryOperator::PreInc:
219 case UnaryOperator::PreDec:
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000220 // Walk through the subexpressions, blasting through ParenExprs
221 // until we either find a DeclRefExpr or some non-DeclRefExpr
222 // expression.
Ted Kremenek56206312008-02-22 00:34:10 +0000223 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E->IgnoreParens()))
Ted Kremenekdace4c92008-04-15 04:08:54 +0000224 if (VarDecl* VD = dyn_cast<VarDecl>(DR->getDecl())) {
225 // Treat the --/++ operator as a kill.
Ted Kremenek56206312008-02-22 00:34:10 +0000226 if (AD.Observer) { AD.Observer->ObserverKill(DR); }
Ted Kremenekdace4c92008-04-15 04:08:54 +0000227 LiveState(VD, AD) = Alive;
Ted Kremenek56206312008-02-22 00:34:10 +0000228 return VisitDeclRefExpr(DR);
229 }
Ted Kremenekbcb07d52007-09-28 21:29:33 +0000230
231 // Fall-through.
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000232
233 default:
Ted Kremenek5e2b6092008-01-17 17:50:49 +0000234 return Visit(E);
Ted Kremenek27b07c52007-09-06 21:26:58 +0000235 }
236}
Ted Kremenekbcb07d52007-09-28 21:29:33 +0000237
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000238void TransferFuncs::VisitAssign(BinaryOperator* B) {
Ted Kremenek5e2b6092008-01-17 17:50:49 +0000239 Expr* LHS = B->getLHS();
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000240
Ted Kremenekbcb07d52007-09-28 21:29:33 +0000241 // Assigning to a variable?
Ted Kremenek5e2b6092008-01-17 17:50:49 +0000242 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(LHS->IgnoreParens())) {
Ted Kremenek7deed0c2008-04-15 18:35:30 +0000243
244 // Update liveness inforamtion.
245 unsigned bit = AD.getIdx(DR->getDecl());
246 LiveState.getDeclBit(bit) = Dead | AD.AlwaysLive.getDeclBit(bit);
247
Ted Kremenekf63aa452007-09-28 20:38:59 +0000248 if (AD.Observer) { AD.Observer->ObserverKill(DR); }
249
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000250 // Handle things like +=, etc., which also generate "uses"
251 // of a variable. Do this just by visiting the subexpression.
Ted Kremenekbcb07d52007-09-28 21:29:33 +0000252 if (B->getOpcode() != BinaryOperator::Assign)
253 VisitDeclRefExpr(DR);
Ted Kremeneke4e63342007-09-06 00:17:54 +0000254 }
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000255 else // Not assigning to a variable. Process LHS as usual.
Ted Kremenek27b07c52007-09-06 21:26:58 +0000256 Visit(LHS);
Ted Kremeneke4e63342007-09-06 00:17:54 +0000257
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000258 Visit(B->getRHS());
Ted Kremeneke4e63342007-09-06 00:17:54 +0000259}
260
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000261void TransferFuncs::VisitDeclStmt(DeclStmt* DS) {
262 // Declarations effectively "kill" a variable since they cannot
263 // possibly be live before they are declared.
Ted Kremenek14f8b4f2008-08-05 20:46:55 +0000264 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE = DS->decl_end();
265 DI != DE; ++DI)
266 if (VarDecl* VD = dyn_cast<VarDecl>(*DI)) {
Ted Kremenek84fa6b92008-09-26 05:52:45 +0000267 // The initializer is evaluated after the variable comes into scope.
268 // Since this is a reverse dataflow analysis, we must evaluate the
269 // transfer function for this expression first.
Ted Kremenek2bca5e42008-02-07 02:38:55 +0000270 if (Expr* Init = VD->getInit())
271 Visit(Init);
Ted Kremenek84fa6b92008-09-26 05:52:45 +0000272
273 // Update liveness information by killing the VarDecl.
274 unsigned bit = AD.getIdx(VD);
275 LiveState.getDeclBit(bit) = Dead | AD.AlwaysLive.getDeclBit(bit);
Ted Kremenekdcc48102008-02-25 22:28:54 +0000276 }
Ted Kremenek27b07c52007-09-06 21:26:58 +0000277}
Ted Kremenekf63aa452007-09-28 20:38:59 +0000278
Ted Kremeneke4e63342007-09-06 00:17:54 +0000279} // end anonymous namespace
280
Ted Kremenekf63aa452007-09-28 20:38:59 +0000281//===----------------------------------------------------------------------===//
282// Merge operator: if something is live on any successor block, it is live
283// in the current block (a set union).
284//===----------------------------------------------------------------------===//
Ted Kremeneke4e63342007-09-06 00:17:54 +0000285
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000286namespace {
Ted Kremenekfa59f1f2008-03-20 21:46:49 +0000287
288struct Merge {
Ted Kremenek8d798c72008-11-14 01:14:18 +0000289 typedef StmtDeclBitVector_Types::ValTy ValTy;
Ted Kremenekfa59f1f2008-03-20 21:46:49 +0000290
291 void operator()(ValTy& Dst, const ValTy& Src) {
292 Dst.OrDeclBits(Src);
Ted Kremenek8d798c72008-11-14 01:14:18 +0000293 Dst.AndBlkExprBits(Src);
Ted Kremenekfa59f1f2008-03-20 21:46:49 +0000294 }
295};
296
297typedef DataflowSolver<LiveVariables, TransferFuncs, Merge> Solver;
Ted Kremenekf63aa452007-09-28 20:38:59 +0000298} // end anonymous namespace
299
300//===----------------------------------------------------------------------===//
301// External interface to run Liveness analysis.
302//===----------------------------------------------------------------------===//
Ted Kremeneke4e63342007-09-06 00:17:54 +0000303
Ted Kremenek83c01da2008-01-11 00:40:29 +0000304void LiveVariables::runOnCFG(CFG& cfg) {
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000305 Solver S(*this);
306 S.runOnCFG(cfg);
307}
Ted Kremenek27b07c52007-09-06 21:26:58 +0000308
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000309void LiveVariables::runOnAllBlocks(const CFG& cfg,
Ted Kremenek79649df2008-01-17 18:25:22 +0000310 LiveVariables::ObserverTy* Obs,
311 bool recordStmtValues) {
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000312 Solver S(*this);
313 ObserverTy* OldObserver = getAnalysisData().Observer;
Ted Kremenek79649df2008-01-17 18:25:22 +0000314 getAnalysisData().Observer = Obs;
315 S.runOnAllBlocks(cfg, recordStmtValues);
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000316 getAnalysisData().Observer = OldObserver;
Ted Kremenek27b07c52007-09-06 21:26:58 +0000317}
318
319//===----------------------------------------------------------------------===//
320// liveness queries
321//
322
Ted Kremenekc0576ca2007-09-10 17:36:42 +0000323bool LiveVariables::isLive(const CFGBlock* B, const VarDecl* D) const {
Ted Kremenek7cb15932008-03-13 16:55:07 +0000324 DeclBitVector_Types::Idx i = getAnalysisData().getIdx(D);
325 return i.isValid() ? getBlockData(B).getBit(i) : false;
Ted Kremenek27b07c52007-09-06 21:26:58 +0000326}
327
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000328bool LiveVariables::isLive(const ValTy& Live, const VarDecl* D) const {
Ted Kremenek7cb15932008-03-13 16:55:07 +0000329 DeclBitVector_Types::Idx i = getAnalysisData().getIdx(D);
330 return i.isValid() ? Live.getBit(i) : false;
Ted Kremenek055c2752007-09-06 23:00:42 +0000331}
332
Ted Kremenek86946742008-01-17 20:48:37 +0000333bool LiveVariables::isLive(const Stmt* Loc, const Stmt* StmtVal) const {
334 return getStmtData(Loc)(StmtVal,getAnalysisData());
335}
336
Ted Kremenek2a9da9c2008-01-18 00:40:21 +0000337bool LiveVariables::isLive(const Stmt* Loc, const VarDecl* D) const {
338 return getStmtData(Loc)(D,getAnalysisData());
339}
340
Ted Kremenek055c2752007-09-06 23:00:42 +0000341//===----------------------------------------------------------------------===//
Ted Kremeneke4e63342007-09-06 00:17:54 +0000342// printing liveness state for debugging
343//
344
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000345void LiveVariables::dumpLiveness(const ValTy& V, SourceManager& SM) const {
346 const AnalysisDataTy& AD = getAnalysisData();
347
Ted Kremenekf63aa452007-09-28 20:38:59 +0000348 for (AnalysisDataTy::decl_iterator I = AD.begin_decl(),
349 E = AD.end_decl(); I!=E; ++I)
350 if (V.getDeclBit(I->second)) {
Ted Kremenek27b07c52007-09-06 21:26:58 +0000351 SourceLocation PhysLoc = SM.getPhysicalLoc(I->first->getLocation());
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000352
Ted Kremenek27b07c52007-09-06 21:26:58 +0000353 fprintf(stderr, " %s <%s:%u:%u>\n",
354 I->first->getIdentifier()->getName(),
355 SM.getSourceName(PhysLoc),
356 SM.getLineNumber(PhysLoc),
357 SM.getColumnNumber(PhysLoc));
Ted Kremeneke4e63342007-09-06 00:17:54 +0000358 }
Ted Kremeneke4e63342007-09-06 00:17:54 +0000359}
360
Ted Kremenek27b07c52007-09-06 21:26:58 +0000361void LiveVariables::dumpBlockLiveness(SourceManager& M) const {
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000362 for (BlockDataMapTy::iterator I = getBlockDataMap().begin(),
363 E = getBlockDataMap().end(); I!=E; ++I) {
364 fprintf(stderr, "\n[ B%d (live variables at block exit) ]\n",
Ted Kremenek27b07c52007-09-06 21:26:58 +0000365 I->first->getBlockID());
366
367 dumpLiveness(I->second,M);
368 }
Ted Kremenekc0576ca2007-09-10 17:36:42 +0000369
370 fprintf(stderr,"\n");
371}