diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-24 18:31:42 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-24 18:31:42 +0000 |
commit | 77d7ef8d8a80ccb2ab3d25c80810571e3ab14ee4 (patch) | |
tree | 04198313e050aa108bb02c1cc9a0ee191a8c0d2a /lib/Analysis/GRExprEngine.cpp | |
parent | 43ae4b0d2ba2a7de1c3ccb25f22955489999e1fb (diff) |
Added initial boilerplate in GRExprEngine to allow checker-specific transfer
function logic to act when symbols become dead.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50221 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index a6d8ef9051..a287e54298 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -188,13 +188,34 @@ void GRExprEngine::ProcessStmt(Stmt* S, StmtNodeBuilder& builder) { // Create the cleaned state. CleanedState = StateMgr.RemoveDeadBindings(StmtEntryNode->getState(), - CurrentStmt, Liveness); + CurrentStmt, Liveness, + DeadSymbols); - Builder->SetCleanedState(CleanedState); + // Process any special transfer function for dead symbols. - // Visit the statement. + NodeSet Tmp; - Visit(S, StmtEntryNode, Dst); + if (DeadSymbols.empty()) + Tmp.Add(StmtEntryNode); + else { + SaveAndRestore<bool> OldSink(Builder->BuildSinks); +/* + FIXME: Will hook this up next. + + TF->EvalDeadSymbols(Tmp, *this, *Builder, StmtEntryNode->getLocation(), Pred, + CleanedState, DeadSymbols); +*/ + if (!Builder->BuildSinks && Tmp.empty() && !Builder->HasGeneratedNode) + Tmp.Add(StmtEntryNode); + } + + for (NodeSet::iterator I=Tmp.begin(), E=Tmp.end(); I!=E; ++I) { + // Set the cleaned state. + Builder->SetCleanedState(*I == StmtEntryNode ? CleanedState : (*I)->getState()); + + // Visit the statement. + Visit(S, StmtEntryNode, Dst); + } // If no nodes were generated, generate a new node that has all the // dead mappings removed. |