blob: f0dbc532b2e129267c02524fde3d923a693576e0 [file] [log] [blame]
Ted Kremenekcf6e41b2007-12-21 21:42:19 +00001#include "clang/Analysis/Analyses/LiveVariables.h"
Ted Kremenekedb18632011-10-22 02:14:23 +00002#include "clang/Analysis/Analyses/PostOrderCFGView.h"
3
Ted Kremenek88299892011-07-28 23:07:59 +00004#include "clang/AST/Stmt.h"
Ted Kremeneke41611a2009-07-16 18:13:04 +00005#include "clang/Analysis/CFG.h"
Ted Kremenek1309f9a2010-01-25 04:41:41 +00006#include "clang/Analysis/AnalysisContext.h"
Ted Kremenek88299892011-07-28 23:07:59 +00007#include "clang/AST/StmtVisitor.h"
8
Ted Kremenek87aa1252011-09-16 23:01:39 +00009#include "llvm/ADT/PostOrderIterator.h"
10#include "llvm/ADT/DenseMap.h"
11
Ted Kremenek88299892011-07-28 23:07:59 +000012#include <deque>
13#include <algorithm>
14#include <vector>
Ted Kremeneke4e63342007-09-06 00:17:54 +000015
16using namespace clang;
17
Ted Kremeneke4e63342007-09-06 00:17:54 +000018namespace {
Mike Stump1eb44332009-09-09 15:08:12 +000019
Ted Kremenek87aa1252011-09-16 23:01:39 +000020class DataflowWorklist {
21 SmallVector<const CFGBlock *, 20> worklist;
22 llvm::BitVector enqueuedBlocks;
Ted Kremenekedb18632011-10-22 02:14:23 +000023 PostOrderCFGView *POV;
Ted Kremenek87aa1252011-09-16 23:01:39 +000024public:
Ted Kremenek1d26f482011-10-24 01:32:45 +000025 DataflowWorklist(const CFG &cfg, AnalysisDeclContext &Ctx)
Ted Kremenek87aa1252011-09-16 23:01:39 +000026 : enqueuedBlocks(cfg.getNumBlockIDs()),
Ted Kremenekedb18632011-10-22 02:14:23 +000027 POV(Ctx.getAnalysis<PostOrderCFGView>()) {}
Ted Kremenek87aa1252011-09-16 23:01:39 +000028
29 void enqueueBlock(const CFGBlock *block);
30 void enqueueSuccessors(const CFGBlock *block);
31 void enqueuePredecessors(const CFGBlock *block);
32
33 const CFGBlock *dequeue();
34
35 void sortWorklist();
36};
37
38}
39
40void DataflowWorklist::enqueueBlock(const clang::CFGBlock *block) {
41 if (block && !enqueuedBlocks[block->getBlockID()]) {
42 enqueuedBlocks[block->getBlockID()] = true;
43 worklist.push_back(block);
44 }
45}
46
47void DataflowWorklist::enqueueSuccessors(const clang::CFGBlock *block) {
48 const unsigned OldWorklistSize = worklist.size();
49 for (CFGBlock::const_succ_iterator I = block->succ_begin(),
50 E = block->succ_end(); I != E; ++I) {
51 enqueueBlock(*I);
52 }
53
54 if (OldWorklistSize == 0 || OldWorklistSize == worklist.size())
55 return;
56
57 sortWorklist();
58}
59
60void DataflowWorklist::enqueuePredecessors(const clang::CFGBlock *block) {
61 const unsigned OldWorklistSize = worklist.size();
62 for (CFGBlock::const_pred_iterator I = block->pred_begin(),
63 E = block->pred_end(); I != E; ++I) {
64 enqueueBlock(*I);
65 }
66
67 if (OldWorklistSize == 0 || OldWorklistSize == worklist.size())
68 return;
69
70 sortWorklist();
71}
72
73void DataflowWorklist::sortWorklist() {
Ted Kremenekedb18632011-10-22 02:14:23 +000074 std::sort(worklist.begin(), worklist.end(), POV->getComparator());
Ted Kremenek87aa1252011-09-16 23:01:39 +000075}
76
Ted Kremenek87aa1252011-09-16 23:01:39 +000077const CFGBlock *DataflowWorklist::dequeue() {
78 if (worklist.empty())
79 return 0;
80 const CFGBlock *b = worklist.back();
81 worklist.pop_back();
82 enqueuedBlocks[b->getBlockID()] = false;
83 return b;
84}
85
86namespace {
87class LiveVariablesImpl {
88public:
Ted Kremenek1d26f482011-10-24 01:32:45 +000089 AnalysisDeclContext &analysisContext;
Ted Kremenek87aa1252011-09-16 23:01:39 +000090 std::vector<LiveVariables::LivenessValues> cfgBlockValues;
91 llvm::ImmutableSet<const Stmt *>::Factory SSetFact;
92 llvm::ImmutableSet<const VarDecl *>::Factory DSetFact;
93 llvm::DenseMap<const CFGBlock *, LiveVariables::LivenessValues> blocksEndToLiveness;
94 llvm::DenseMap<const CFGBlock *, LiveVariables::LivenessValues> blocksBeginToLiveness;
95 llvm::DenseMap<const Stmt *, LiveVariables::LivenessValues> stmtsToLiveness;
96 llvm::DenseMap<const DeclRefExpr *, unsigned> inAssignment;
97 const bool killAtAssign;
98
99 LiveVariables::LivenessValues
100 merge(LiveVariables::LivenessValues valsA,
101 LiveVariables::LivenessValues valsB);
102
103 LiveVariables::LivenessValues runOnBlock(const CFGBlock *block,
104 LiveVariables::LivenessValues val,
105 LiveVariables::Observer *obs = 0);
106
107 void dumpBlockLiveness(const SourceManager& M);
108
Ted Kremenek1d26f482011-10-24 01:32:45 +0000109 LiveVariablesImpl(AnalysisDeclContext &ac, bool KillAtAssign)
Ted Kremenek3c2b5f72011-10-02 01:45:37 +0000110 : analysisContext(ac),
111 SSetFact(false), // Do not canonicalize ImmutableSets by default.
112 DSetFact(false), // This is a *major* performance win.
113 killAtAssign(KillAtAssign) {}
Ted Kremenek87aa1252011-09-16 23:01:39 +0000114};
Ted Kremenek88299892011-07-28 23:07:59 +0000115}
Ted Kremenek7deed0c2008-04-15 18:35:30 +0000116
Ted Kremenek9c378f72011-08-12 23:37:29 +0000117static LiveVariablesImpl &getImpl(void *x) {
Ted Kremenek88299892011-07-28 23:07:59 +0000118 return *((LiveVariablesImpl *) x);
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000119}
Ted Kremeneke4e63342007-09-06 00:17:54 +0000120
121//===----------------------------------------------------------------------===//
Ted Kremenek88299892011-07-28 23:07:59 +0000122// Operations and queries on LivenessValues.
123//===----------------------------------------------------------------------===//
124
125bool LiveVariables::LivenessValues::isLive(const Stmt *S) const {
126 return liveStmts.contains(S);
127}
128
129bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const {
130 return liveDecls.contains(D);
131}
132
133namespace {
134 template <typename SET>
Ted Kremenek87aa1252011-09-16 23:01:39 +0000135 SET mergeSets(SET A, SET B) {
136 if (A.isEmpty())
137 return B;
138
Ted Kremenek88299892011-07-28 23:07:59 +0000139 for (typename SET::iterator it = B.begin(), ei = B.end(); it != ei; ++it) {
Ted Kremenek87aa1252011-09-16 23:01:39 +0000140 A = A.add(*it);
Ted Kremenek88299892011-07-28 23:07:59 +0000141 }
142 return A;
143 }
144}
145
146LiveVariables::LivenessValues
147LiveVariablesImpl::merge(LiveVariables::LivenessValues valsA,
148 LiveVariables::LivenessValues valsB) {
Ted Kremenek87aa1252011-09-16 23:01:39 +0000149
150 llvm::ImmutableSetRef<const Stmt *>
151 SSetRefA(valsA.liveStmts.getRootWithoutRetain(), SSetFact.getTreeFactory()),
152 SSetRefB(valsB.liveStmts.getRootWithoutRetain(), SSetFact.getTreeFactory());
153
154
155 llvm::ImmutableSetRef<const VarDecl *>
156 DSetRefA(valsA.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory()),
157 DSetRefB(valsB.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory());
158
159
160 SSetRefA = mergeSets(SSetRefA, SSetRefB);
161 DSetRefA = mergeSets(DSetRefA, DSetRefB);
162
Ted Kremenek3c2b5f72011-10-02 01:45:37 +0000163 // asImmutableSet() canonicalizes the tree, allowing us to do an easy
164 // comparison afterwards.
Ted Kremenek87aa1252011-09-16 23:01:39 +0000165 return LiveVariables::LivenessValues(SSetRefA.asImmutableSet(),
166 DSetRefA.asImmutableSet());
Ted Kremenek88299892011-07-28 23:07:59 +0000167}
168
169bool LiveVariables::LivenessValues::equals(const LivenessValues &V) const {
170 return liveStmts == V.liveStmts && liveDecls == V.liveDecls;
171}
172
173//===----------------------------------------------------------------------===//
174// Query methods.
175//===----------------------------------------------------------------------===//
176
177static bool isAlwaysAlive(const VarDecl *D) {
178 return D->hasGlobalStorage();
179}
180
181bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) {
182 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D);
183}
184
185bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) {
186 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D);
187}
188
189bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) {
190 return getImpl(impl).stmtsToLiveness[Loc].isLive(S);
191}
192
193//===----------------------------------------------------------------------===//
194// Dataflow computation.
Mike Stump1eb44332009-09-09 15:08:12 +0000195//===----------------------------------------------------------------------===//
Ted Kremeneke4e63342007-09-06 00:17:54 +0000196
197namespace {
Ted Kremenek88299892011-07-28 23:07:59 +0000198class TransferFunctions : public StmtVisitor<TransferFunctions> {
199 LiveVariablesImpl &LV;
200 LiveVariables::LivenessValues &val;
201 LiveVariables::Observer *observer;
Ted Kremenek848ec832011-02-11 23:24:26 +0000202 const CFGBlock *currentBlock;
Ted Kremeneke4e63342007-09-06 00:17:54 +0000203public:
Ted Kremenek88299892011-07-28 23:07:59 +0000204 TransferFunctions(LiveVariablesImpl &im,
205 LiveVariables::LivenessValues &Val,
206 LiveVariables::Observer *Observer,
207 const CFGBlock *CurrentBlock)
208 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {}
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000209
Ted Kremenek88299892011-07-28 23:07:59 +0000210 void VisitBinaryOperator(BinaryOperator *BO);
211 void VisitBlockExpr(BlockExpr *BE);
212 void VisitDeclRefExpr(DeclRefExpr *DR);
213 void VisitDeclStmt(DeclStmt *DS);
214 void VisitObjCForCollectionStmt(ObjCForCollectionStmt *OS);
215 void VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *UE);
216 void VisitUnaryOperator(UnaryOperator *UO);
Mike Stump1eb44332009-09-09 15:08:12 +0000217 void Visit(Stmt *S);
Ted Kremeneke4e63342007-09-06 00:17:54 +0000218};
Ted Kremenek11e72182007-10-01 20:33:52 +0000219}
Ted Kremenek88299892011-07-28 23:07:59 +0000220
Ted Kremenekf91a5b02011-08-06 00:30:00 +0000221static const VariableArrayType *FindVA(QualType Ty) {
222 const Type *ty = Ty.getTypePtr();
223 while (const ArrayType *VT = dyn_cast<ArrayType>(ty)) {
224 if (const VariableArrayType *VAT = dyn_cast<VariableArrayType>(VT))
225 if (VAT->getSizeExpr())
226 return VAT;
227
228 ty = VT->getElementType().getTypePtr();
229 }
230
231 return 0;
232}
233
Ted Kremenekddaec0d2011-11-05 00:26:53 +0000234static const Stmt *LookThroughStmt(const Stmt *S) {
Ted Kremenek6bbecd52011-11-05 07:34:28 +0000235 while (S) {
236 if (const Expr *Ex = dyn_cast<Expr>(S))
237 S = Ex->IgnoreParens();
238 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(S)) {
239 S = OVE->getSourceExpr();
240 continue;
241 }
242 break;
243 }
Ted Kremenekddaec0d2011-11-05 00:26:53 +0000244 return S;
245}
246
247static void AddLiveStmt(llvm::ImmutableSet<const Stmt *> &Set,
248 llvm::ImmutableSet<const Stmt *>::Factory &F,
249 const Stmt *S) {
250 Set = F.add(Set, LookThroughStmt(S));
251}
252
Ted Kremenek88299892011-07-28 23:07:59 +0000253void TransferFunctions::Visit(Stmt *S) {
254 if (observer)
255 observer->observeStmt(S, currentBlock, val);
Ted Kremenekbfbcefb2009-12-24 02:40:30 +0000256
Ted Kremenek88299892011-07-28 23:07:59 +0000257 StmtVisitor<TransferFunctions>::Visit(S);
Ted Kremenekb1a7b652009-11-26 02:31:33 +0000258
Ted Kremenek88299892011-07-28 23:07:59 +0000259 if (isa<Expr>(S)) {
260 val.liveStmts = LV.SSetFact.remove(val.liveStmts, S);
261 }
262
263 // Mark all children expressions live.
264
265 switch (S->getStmtClass()) {
266 default:
267 break;
268 case Stmt::StmtExprClass: {
269 // For statement expressions, look through the compound statement.
270 S = cast<StmtExpr>(S)->getSubStmt();
271 break;
272 }
273 case Stmt::CXXMemberCallExprClass: {
274 // Include the implicit "this" pointer as being live.
275 CXXMemberCallExpr *CE = cast<CXXMemberCallExpr>(S);
Ted Kremenekc8085032011-10-06 20:53:28 +0000276 if (Expr *ImplicitObj = CE->getImplicitObjectArgument()) {
Ted Kremenekddaec0d2011-11-05 00:26:53 +0000277 AddLiveStmt(val.liveStmts, LV.SSetFact, ImplicitObj);
Ted Kremenekc8085032011-10-06 20:53:28 +0000278 }
Ted Kremenek88299892011-07-28 23:07:59 +0000279 break;
280 }
Ted Kremenekf91a5b02011-08-06 00:30:00 +0000281 case Stmt::DeclStmtClass: {
282 const DeclStmt *DS = cast<DeclStmt>(S);
283 if (const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl())) {
284 for (const VariableArrayType* VA = FindVA(VD->getType());
285 VA != 0; VA = FindVA(VA->getElementType())) {
Ted Kremenekddaec0d2011-11-05 00:26:53 +0000286 AddLiveStmt(val.liveStmts, LV.SSetFact, VA->getSizeExpr());
Ted Kremenekf91a5b02011-08-06 00:30:00 +0000287 }
288 }
289 break;
290 }
John McCall4b9c2d22011-11-06 09:01:30 +0000291 case Stmt::PseudoObjectExprClass: {
292 // A pseudo-object operation only directly consumes its result
293 // expression.
294 Expr *child = cast<PseudoObjectExpr>(S)->getResultExpr();
295 if (!child) return;
296 if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(child))
297 child = OV->getSourceExpr();
298 child = child->IgnoreParens();
299 val.liveStmts = LV.SSetFact.add(val.liveStmts, child);
300 return;
301 }
302
Ted Kremenek88299892011-07-28 23:07:59 +0000303 // FIXME: These cases eventually shouldn't be needed.
304 case Stmt::ExprWithCleanupsClass: {
305 S = cast<ExprWithCleanups>(S)->getSubExpr();
306 break;
307 }
308 case Stmt::CXXBindTemporaryExprClass: {
309 S = cast<CXXBindTemporaryExpr>(S)->getSubExpr();
310 break;
311 }
Ted Kremenekf91a5b02011-08-06 00:30:00 +0000312 case Stmt::UnaryExprOrTypeTraitExprClass: {
313 // No need to unconditionally visit subexpressions.
314 return;
315 }
Ted Kremenek88299892011-07-28 23:07:59 +0000316 }
317
318 for (Stmt::child_iterator it = S->child_begin(), ei = S->child_end();
319 it != ei; ++it) {
Ted Kremenekddaec0d2011-11-05 00:26:53 +0000320 if (Stmt *child = *it)
321 AddLiveStmt(val.liveStmts, LV.SSetFact, child);
Ted Kremenekb1a7b652009-11-26 02:31:33 +0000322 }
Ted Kremeneke4e63342007-09-06 00:17:54 +0000323}
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Ted Kremenek88299892011-07-28 23:07:59 +0000325void TransferFunctions::VisitBinaryOperator(BinaryOperator *B) {
326 if (B->isAssignmentOp()) {
327 if (!LV.killAtAssign)
Ted Kremenek06529ae2008-11-14 21:07:14 +0000328 return;
Ted Kremenek88299892011-07-28 23:07:59 +0000329
330 // Assigning to a variable?
331 Expr *LHS = B->getLHS()->IgnoreParens();
332
Ted Kremenek9c378f72011-08-12 23:37:29 +0000333 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS))
Ted Kremenek88299892011-07-28 23:07:59 +0000334 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
335 // Assignments to references don't kill the ref's address
336 if (VD->getType()->isReferenceType())
337 return;
Ted Kremeneke97d9db2008-11-11 19:40:47 +0000338
Ted Kremenek88299892011-07-28 23:07:59 +0000339 if (!isAlwaysAlive(VD)) {
340 // The variable is now dead.
341 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD);
342 }
Ted Kremenek8f5aab62008-11-11 17:42:10 +0000343
Ted Kremenek88299892011-07-28 23:07:59 +0000344 if (observer)
345 observer->observerKill(DR);
Ted Kremenek56206312008-02-22 00:34:10 +0000346 }
Ted Kremenek27b07c52007-09-06 21:26:58 +0000347 }
348}
Mike Stump1eb44332009-09-09 15:08:12 +0000349
Ted Kremenek88299892011-07-28 23:07:59 +0000350void TransferFunctions::VisitBlockExpr(BlockExpr *BE) {
Ted Kremenek1d26f482011-10-24 01:32:45 +0000351 AnalysisDeclContext::referenced_decls_iterator I, E;
Ted Kremenek88299892011-07-28 23:07:59 +0000352 llvm::tie(I, E) =
353 LV.analysisContext.getReferencedBlockVars(BE->getBlockDecl());
354 for ( ; I != E ; ++I) {
355 const VarDecl *VD = *I;
356 if (isAlwaysAlive(VD))
357 continue;
358 val.liveDecls = LV.DSetFact.add(val.liveDecls, VD);
Ted Kremeneke4e63342007-09-06 00:17:54 +0000359 }
Ted Kremeneke4e63342007-09-06 00:17:54 +0000360}
361
Ted Kremenek88299892011-07-28 23:07:59 +0000362void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *DR) {
363 if (const VarDecl *D = dyn_cast<VarDecl>(DR->getDecl()))
364 if (!isAlwaysAlive(D) && LV.inAssignment.find(DR) == LV.inAssignment.end())
365 val.liveDecls = LV.DSetFact.add(val.liveDecls, D);
366}
367
368void TransferFunctions::VisitDeclStmt(DeclStmt *DS) {
Ted Kremenek14f8b4f2008-08-05 20:46:55 +0000369 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE = DS->decl_end();
370 DI != DE; ++DI)
Ted Kremenek9c378f72011-08-12 23:37:29 +0000371 if (VarDecl *VD = dyn_cast<VarDecl>(*DI)) {
Ted Kremenek88299892011-07-28 23:07:59 +0000372 if (!isAlwaysAlive(VD))
373 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD);
Ted Kremenekdcc48102008-02-25 22:28:54 +0000374 }
Ted Kremenek27b07c52007-09-06 21:26:58 +0000375}
Mike Stump1eb44332009-09-09 15:08:12 +0000376
Ted Kremenek88299892011-07-28 23:07:59 +0000377void TransferFunctions::VisitObjCForCollectionStmt(ObjCForCollectionStmt *OS) {
378 // Kill the iteration variable.
379 DeclRefExpr *DR = 0;
380 const VarDecl *VD = 0;
Ted Kremeneke4e63342007-09-06 00:17:54 +0000381
Ted Kremenek88299892011-07-28 23:07:59 +0000382 Stmt *element = OS->getElement();
383 if (DeclStmt *DS = dyn_cast<DeclStmt>(element)) {
384 VD = cast<VarDecl>(DS->getSingleDecl());
385 }
386 else if ((DR = dyn_cast<DeclRefExpr>(cast<Expr>(element)->IgnoreParens()))) {
387 VD = cast<VarDecl>(DR->getDecl());
388 }
389
390 if (VD) {
391 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD);
392 if (observer && DR)
393 observer->observerKill(DR);
394 }
Ted Kremenekfdd225e2007-09-25 04:31:27 +0000395}
Ted Kremenek27b07c52007-09-06 21:26:58 +0000396
Ted Kremenek88299892011-07-28 23:07:59 +0000397void TransferFunctions::
398VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *UE)
399{
400 // While sizeof(var) doesn't technically extend the liveness of 'var', it
401 // does extent the liveness of metadata if 'var' is a VariableArrayType.
402 // We handle that special case here.
403 if (UE->getKind() != UETT_SizeOf || UE->isArgumentType())
404 return;
405
Ted Kremenekf91a5b02011-08-06 00:30:00 +0000406 const Expr *subEx = UE->getArgumentExpr();
407 if (subEx->getType()->isVariableArrayType()) {
408 assert(subEx->isLValue());
409 val.liveStmts = LV.SSetFact.add(val.liveStmts, subEx->IgnoreParens());
410 }
Ted Kremenek27b07c52007-09-06 21:26:58 +0000411}
412
Ted Kremenek88299892011-07-28 23:07:59 +0000413void TransferFunctions::VisitUnaryOperator(UnaryOperator *UO) {
414 // Treat ++/-- as a kill.
415 // Note we don't actually have to do anything if we don't have an observer,
416 // since a ++/-- acts as both a kill and a "use".
417 if (!observer)
418 return;
419
420 switch (UO->getOpcode()) {
421 default:
422 return;
423 case UO_PostInc:
424 case UO_PostDec:
425 case UO_PreInc:
426 case UO_PreDec:
427 break;
428 }
429
430 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(UO->getSubExpr()->IgnoreParens()))
431 if (isa<VarDecl>(DR->getDecl())) {
432 // Treat ++/-- as a kill.
433 observer->observerKill(DR);
434 }
Ted Kremenek27b07c52007-09-06 21:26:58 +0000435}
436
Ted Kremenek88299892011-07-28 23:07:59 +0000437LiveVariables::LivenessValues
438LiveVariablesImpl::runOnBlock(const CFGBlock *block,
439 LiveVariables::LivenessValues val,
440 LiveVariables::Observer *obs) {
441
442 TransferFunctions TF(*this, val, obs, block);
443
444 // Visit the terminator (if any).
445 if (const Stmt *term = block->getTerminator())
446 TF.Visit(const_cast<Stmt*>(term));
447
448 // Apply the transfer function for all Stmts in the block.
449 for (CFGBlock::const_reverse_iterator it = block->rbegin(),
450 ei = block->rend(); it != ei; ++it) {
451 const CFGElement &elem = *it;
452 if (!isa<CFGStmt>(elem))
453 continue;
454
455 const Stmt *S = cast<CFGStmt>(elem).getStmt();
456 TF.Visit(const_cast<Stmt*>(S));
457 stmtsToLiveness[S] = val;
458 }
459 return val;
Ted Kremenek055c2752007-09-06 23:00:42 +0000460}
461
Ted Kremenek88299892011-07-28 23:07:59 +0000462void LiveVariables::runOnAllBlocks(LiveVariables::Observer &obs) {
463 const CFG *cfg = getImpl(impl).analysisContext.getCFG();
464 for (CFG::const_iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it)
465 getImpl(impl).runOnBlock(*it, getImpl(impl).blocksEndToLiveness[*it], &obs);
Ted Kremenek86946742008-01-17 20:48:37 +0000466}
467
Ted Kremenek88299892011-07-28 23:07:59 +0000468LiveVariables::LiveVariables(void *im) : impl(im) {}
469
470LiveVariables::~LiveVariables() {
471 delete (LiveVariablesImpl*) impl;
Ted Kremenek2a9da9c2008-01-18 00:40:21 +0000472}
473
Ted Kremenek88299892011-07-28 23:07:59 +0000474LiveVariables *
Ted Kremenek1d26f482011-10-24 01:32:45 +0000475LiveVariables::computeLiveness(AnalysisDeclContext &AC,
Ted Kremenek88299892011-07-28 23:07:59 +0000476 bool killAtAssign) {
Ted Kremeneke4e63342007-09-06 00:17:54 +0000477
Ted Kremenek88299892011-07-28 23:07:59 +0000478 // No CFG? Bail out.
479 CFG *cfg = AC.getCFG();
480 if (!cfg)
481 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000482
Ted Kremenek88299892011-07-28 23:07:59 +0000483 LiveVariablesImpl *LV = new LiveVariablesImpl(AC, killAtAssign);
484
485 // Construct the dataflow worklist. Enqueue the exit block as the
486 // start of the analysis.
Ted Kremenekedb18632011-10-22 02:14:23 +0000487 DataflowWorklist worklist(*cfg, AC);
Ted Kremenek88299892011-07-28 23:07:59 +0000488 llvm::BitVector everAnalyzedBlock(cfg->getNumBlockIDs());
489
490 // FIXME: we should enqueue using post order.
491 for (CFG::const_iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it) {
492 const CFGBlock *block = *it;
493 worklist.enqueueBlock(block);
494
495 // FIXME: Scan for DeclRefExprs using in the LHS of an assignment.
496 // We need to do this because we lack context in the reverse analysis
497 // to determine if a DeclRefExpr appears in such a context, and thus
498 // doesn't constitute a "use".
499 if (killAtAssign)
500 for (CFGBlock::const_iterator bi = block->begin(), be = block->end();
501 bi != be; ++bi) {
502 if (const CFGStmt *cs = bi->getAs<CFGStmt>()) {
Ted Kremenekf1d10d92011-08-23 23:05:04 +0000503 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(cs->getStmt())) {
Ted Kremenek88299892011-07-28 23:07:59 +0000504 if (BO->getOpcode() == BO_Assign) {
505 if (const DeclRefExpr *DR =
506 dyn_cast<DeclRefExpr>(BO->getLHS()->IgnoreParens())) {
507 LV->inAssignment[DR] = 1;
508 }
509 }
510 }
511 }
512 }
513 }
514
Ted Kremenek87aa1252011-09-16 23:01:39 +0000515 worklist.sortWorklist();
516
517 while (const CFGBlock *block = worklist.dequeue()) {
Ted Kremenek88299892011-07-28 23:07:59 +0000518 // Determine if the block's end value has changed. If not, we
519 // have nothing left to do for this block.
520 LivenessValues &prevVal = LV->blocksEndToLiveness[block];
521
522 // Merge the values of all successor blocks.
523 LivenessValues val;
524 for (CFGBlock::const_succ_iterator it = block->succ_begin(),
525 ei = block->succ_end(); it != ei; ++it) {
Ted Kremenek87aa1252011-09-16 23:01:39 +0000526 if (const CFGBlock *succ = *it) {
Ted Kremenek88299892011-07-28 23:07:59 +0000527 val = LV->merge(val, LV->blocksBeginToLiveness[succ]);
Ted Kremenek87aa1252011-09-16 23:01:39 +0000528 }
Ted Kremenek88299892011-07-28 23:07:59 +0000529 }
530
531 if (!everAnalyzedBlock[block->getBlockID()])
532 everAnalyzedBlock[block->getBlockID()] = true;
533 else if (prevVal.equals(val))
534 continue;
535
536 prevVal = val;
537
538 // Update the dataflow value for the start of this block.
539 LV->blocksBeginToLiveness[block] = LV->runOnBlock(block, val);
540
541 // Enqueue the value to the predecessors.
Ted Kremenek87aa1252011-09-16 23:01:39 +0000542 worklist.enqueuePredecessors(block);
Ted Kremenek88299892011-07-28 23:07:59 +0000543 }
544
545 return new LiveVariables(LV);
546}
547
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000548static bool compare_entries(const CFGBlock *A, const CFGBlock *B) {
Ted Kremenek88299892011-07-28 23:07:59 +0000549 return A->getBlockID() < B->getBlockID();
550}
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000551
552static bool compare_vd_entries(const Decl *A, const Decl *B) {
Ted Kremenek88299892011-07-28 23:07:59 +0000553 SourceLocation ALoc = A->getLocStart();
554 SourceLocation BLoc = B->getLocStart();
555 return ALoc.getRawEncoding() < BLoc.getRawEncoding();
556}
557
558void LiveVariables::dumpBlockLiveness(const SourceManager &M) {
559 getImpl(impl).dumpBlockLiveness(M);
560}
561
562void LiveVariablesImpl::dumpBlockLiveness(const SourceManager &M) {
563 std::vector<const CFGBlock *> vec;
564 for (llvm::DenseMap<const CFGBlock *, LiveVariables::LivenessValues>::iterator
565 it = blocksEndToLiveness.begin(), ei = blocksEndToLiveness.end();
566 it != ei; ++it) {
567 vec.push_back(it->first);
568 }
569 std::sort(vec.begin(), vec.end(), compare_entries);
570
571 std::vector<const VarDecl*> declVec;
572
573 for (std::vector<const CFGBlock *>::iterator
574 it = vec.begin(), ei = vec.end(); it != ei; ++it) {
575 llvm::errs() << "\n[ B" << (*it)->getBlockID()
576 << " (live variables at block exit) ]\n";
577
578 LiveVariables::LivenessValues vals = blocksEndToLiveness[*it];
579 declVec.clear();
580
581 for (llvm::ImmutableSet<const VarDecl *>::iterator si =
582 vals.liveDecls.begin(),
583 se = vals.liveDecls.end(); si != se; ++si) {
584 declVec.push_back(*si);
585 }
586
587 std::sort(declVec.begin(), declVec.end(), compare_vd_entries);
588
589 for (std::vector<const VarDecl*>::iterator di = declVec.begin(),
590 de = declVec.end(); di != de; ++di) {
591 llvm::errs() << " " << (*di)->getDeclName().getAsString()
592 << " <";
593 (*di)->getLocation().dump(M);
Daniel Dunbarc0d56722009-10-17 18:12:37 +0000594 llvm::errs() << ">\n";
Ted Kremeneke4e63342007-09-06 00:17:54 +0000595 }
Ted Kremenek27b07c52007-09-06 21:26:58 +0000596 }
Ted Kremenek88299892011-07-28 23:07:59 +0000597 llvm::errs() << "\n";
Ted Kremenekc0576ca2007-09-10 17:36:42 +0000598}
Ted Kremenek88299892011-07-28 23:07:59 +0000599
Ted Kremeneka5937bb2011-10-07 22:21:02 +0000600const void *LiveVariables::getTag() { static int x; return &x; }
601const void *RelaxedLiveVariables::getTag() { static int x; return &x; }