2008-02-05 07:17:49 +00:00
|
|
|
//= ValueState.cpp - Path-Sens. "State" for tracking valuues -----*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-02-08 20:29:23 +00:00
|
|
|
// This files defines SymbolID, ExprBindKey, and ValueState.
|
2008-02-05 07:17:49 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-02-04 21:59:22 +00:00
|
|
|
#include "ValueState.h"
|
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
2008-02-06 00:54:14 +00:00
|
|
|
bool ValueState::isNotEqual(SymbolID sym, const llvm::APSInt& V) const {
|
|
|
|
// First, retrieve the NE-set associated with the given symbol.
|
|
|
|
ConstantNotEqTy::TreeTy* T = Data->ConstantNotEq.SlimFind(sym);
|
|
|
|
|
|
|
|
if (!T)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Second, see if V is present in the NE-set.
|
|
|
|
return T->getValue().second.contains(&V);
|
|
|
|
}
|
|
|
|
|
|
|
|
const llvm::APSInt* ValueState::getSymVal(SymbolID sym) const {
|
|
|
|
ConstantEqTy::TreeTy* T = Data->ConstantEq.SlimFind(sym);
|
|
|
|
return T ? T->getValue().second : NULL;
|
|
|
|
}
|
|
|
|
|
2008-02-08 19:17:19 +00:00
|
|
|
ValueState
|
|
|
|
ValueStateManager::RemoveDeadBindings(ValueState St, Stmt* Loc,
|
|
|
|
const LiveVariables& Liveness) {
|
|
|
|
|
|
|
|
// This code essentially performs a "mark-and-sweep" of the VariableBindings.
|
|
|
|
// The roots are any Block-level exprs and Decls that our liveness algorithm
|
|
|
|
// tells us are live. We then see what Decls they may reference, and keep
|
|
|
|
// those around. This code more than likely can be made faster, and the
|
|
|
|
// frequency of which this method is called should be experimented with
|
|
|
|
// for optimum performance.
|
|
|
|
|
|
|
|
llvm::SmallVector<ValueDecl*, 10> WList;
|
|
|
|
|
|
|
|
for (StateTy::vb_iterator I = St.begin(), E = St.end(); I!=E ; ++I) {
|
|
|
|
|
|
|
|
// Remove old bindings for subexpressions.
|
|
|
|
if (I.getKey().isSubExpr()) {
|
|
|
|
St = Remove(St, I.getKey());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (I.getKey().isBlkExpr()) {
|
|
|
|
if (Liveness.isLive(Loc, cast<Stmt>(I.getKey()))) {
|
|
|
|
if (isa<lval::DeclVal>(I.getData())) {
|
|
|
|
lval::DeclVal LV = cast<lval::DeclVal>(I.getData());
|
|
|
|
WList.push_back(LV.getDecl());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
St = Remove(St, I.getKey());
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert (I.getKey().isDecl());
|
|
|
|
|
|
|
|
if (VarDecl* V = dyn_cast<VarDecl>(cast<ValueDecl>(I.getKey())))
|
|
|
|
if (Liveness.isLive(Loc, V))
|
|
|
|
WList.push_back(V);
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::SmallPtrSet<ValueDecl*, 10> Marked;
|
|
|
|
|
|
|
|
while (!WList.empty()) {
|
|
|
|
ValueDecl* V = WList.back();
|
|
|
|
WList.pop_back();
|
|
|
|
|
|
|
|
if (Marked.count(V))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Marked.insert(V);
|
|
|
|
|
|
|
|
if (V->getType()->isPointerType()) {
|
|
|
|
const LValue& LV = cast<LValue>(GetValue(St, lval::DeclVal(V)));
|
|
|
|
|
|
|
|
if (!isa<lval::DeclVal>(LV))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const lval::DeclVal& LVD = cast<lval::DeclVal>(LV);
|
|
|
|
WList.push_back(LVD.getDecl());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (StateTy::vb_iterator I = St.begin(), E = St.end(); I!=E ; ++I)
|
|
|
|
if (I.getKey().isDecl())
|
|
|
|
if (VarDecl* V = dyn_cast<VarDecl>(cast<ValueDecl>(I.getKey())))
|
|
|
|
if (!Marked.count(V))
|
|
|
|
St = Remove(St, V);
|
|
|
|
|
|
|
|
return St;
|
|
|
|
}
|
2008-02-06 00:54:14 +00:00
|
|
|
|
|
|
|
|
2008-02-07 05:48:01 +00:00
|
|
|
RValue ValueStateManager::GetValue(const StateTy& St, const LValue& LV,
|
|
|
|
QualType* T) {
|
2008-02-08 02:57:34 +00:00
|
|
|
if (isa<UnknownVal>(LV))
|
|
|
|
return UnknownVal();
|
2008-02-07 04:16:04 +00:00
|
|
|
|
2008-02-04 21:59:22 +00:00
|
|
|
switch (LV.getSubKind()) {
|
2008-02-05 21:52:21 +00:00
|
|
|
case lval::DeclValKind: {
|
2008-02-08 03:02:48 +00:00
|
|
|
StateTy::VarBindingsTy::TreeTy* T =
|
|
|
|
St.getImpl()->VarBindings.SlimFind(cast<lval::DeclVal>(LV).getDecl());
|
2008-02-05 07:17:49 +00:00
|
|
|
|
2008-02-08 02:57:34 +00:00
|
|
|
return T ? T->getValue().second : UnknownVal();
|
2008-02-04 21:59:22 +00:00
|
|
|
}
|
2008-02-07 05:48:01 +00:00
|
|
|
|
|
|
|
// FIXME: We should bind how far a "ContentsOf" will go...
|
|
|
|
|
|
|
|
case lval::SymbolValKind: {
|
|
|
|
const lval::SymbolVal& SV = cast<lval::SymbolVal>(LV);
|
|
|
|
assert (T);
|
|
|
|
|
|
|
|
if (T->getTypePtr()->isPointerType())
|
|
|
|
return lval::SymbolVal(SymMgr.getContentsOfSymbol(SV.getSymbol()));
|
|
|
|
else
|
|
|
|
return nonlval::SymbolVal(SymMgr.getContentsOfSymbol(SV.getSymbol()));
|
|
|
|
}
|
|
|
|
|
2008-02-04 21:59:22 +00:00
|
|
|
default:
|
|
|
|
assert (false && "Invalid LValue.");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-02-08 02:57:34 +00:00
|
|
|
return UnknownVal();
|
2008-02-04 21:59:22 +00:00
|
|
|
}
|
|
|
|
|
2008-02-06 00:54:14 +00:00
|
|
|
ValueStateManager::StateTy
|
|
|
|
ValueStateManager::AddNE(StateTy St, SymbolID sym, const llvm::APSInt& V) {
|
|
|
|
// First, retrieve the NE-set associated with the given symbol.
|
|
|
|
ValueState::ConstantNotEqTy::TreeTy* T =
|
|
|
|
St.getImpl()->ConstantNotEq.SlimFind(sym);
|
|
|
|
|
|
|
|
ValueState::IntSetTy S = T ? T->getValue().second : ISetFactory.GetEmptySet();
|
|
|
|
|
|
|
|
// Now add V to the NE set.
|
|
|
|
S = ISetFactory.Add(S, &V);
|
|
|
|
|
|
|
|
// Create a new state with the old binding replaced.
|
|
|
|
ValueStateImpl NewStateImpl = *St.getImpl();
|
|
|
|
NewStateImpl.ConstantNotEq = CNEFactory.Add(NewStateImpl.ConstantNotEq,
|
|
|
|
sym, S);
|
|
|
|
|
|
|
|
// Get the persistent copy.
|
|
|
|
return getPersistentState(NewStateImpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
ValueStateManager::StateTy
|
|
|
|
ValueStateManager::AddEQ(StateTy St, SymbolID sym, const llvm::APSInt& V) {
|
|
|
|
// Create a new state with the old binding replaced.
|
|
|
|
ValueStateImpl NewStateImpl = *St.getImpl();
|
|
|
|
NewStateImpl.ConstantEq = CEFactory.Add(NewStateImpl.ConstantEq, sym, &V);
|
|
|
|
|
|
|
|
// Get the persistent copy.
|
|
|
|
return getPersistentState(NewStateImpl);
|
|
|
|
}
|
|
|
|
|
2008-02-08 20:29:23 +00:00
|
|
|
RValue ValueStateManager::GetValue(const StateTy& St, Expr* S, bool* hasVal) {
|
2008-02-04 21:59:22 +00:00
|
|
|
for (;;) {
|
|
|
|
switch (S->getStmtClass()) {
|
|
|
|
|
|
|
|
// ParenExprs are no-ops.
|
|
|
|
|
|
|
|
case Stmt::ParenExprClass:
|
|
|
|
S = cast<ParenExpr>(S)->getSubExpr();
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// DeclRefExprs can either evaluate to an LValue or a Non-LValue
|
|
|
|
// (assuming an implicit "load") depending on the context. In this
|
|
|
|
// context we assume that we are retrieving the value contained
|
|
|
|
// within the referenced variables.
|
|
|
|
|
|
|
|
case Stmt::DeclRefExprClass:
|
2008-02-05 21:52:21 +00:00
|
|
|
return GetValue(St, lval::DeclVal(cast<DeclRefExpr>(S)->getDecl()));
|
2008-02-04 21:59:22 +00:00
|
|
|
|
|
|
|
// Integer literals evaluate to an RValue. Simply retrieve the
|
|
|
|
// RValue for the literal.
|
|
|
|
|
|
|
|
case Stmt::IntegerLiteralClass:
|
|
|
|
return NonLValue::GetValue(ValMgr, cast<IntegerLiteral>(S));
|
|
|
|
|
|
|
|
// Casts where the source and target type are the same
|
|
|
|
// are no-ops. We blast through these to get the descendant
|
|
|
|
// subexpression that has a value.
|
|
|
|
|
|
|
|
case Stmt::ImplicitCastExprClass: {
|
|
|
|
ImplicitCastExpr* C = cast<ImplicitCastExpr>(S);
|
|
|
|
if (C->getType() == C->getSubExpr()->getType()) {
|
|
|
|
S = C->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Stmt::CastExprClass: {
|
|
|
|
CastExpr* C = cast<CastExpr>(S);
|
|
|
|
if (C->getType() == C->getSubExpr()->getType()) {
|
|
|
|
S = C->getSubExpr();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle all other Stmt* using a lookup.
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-02-08 03:02:48 +00:00
|
|
|
StateTy::VarBindingsTy::TreeTy* T =
|
|
|
|
St.getImpl()->VarBindings.SlimFind(S);
|
2008-02-04 21:59:22 +00:00
|
|
|
|
2008-02-05 00:26:40 +00:00
|
|
|
if (T) {
|
|
|
|
if (hasVal) *hasVal = true;
|
|
|
|
return T->getValue().second;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (hasVal) *hasVal = false;
|
2008-02-08 02:57:34 +00:00
|
|
|
return UnknownVal();
|
2008-02-05 00:26:40 +00:00
|
|
|
}
|
2008-02-04 21:59:22 +00:00
|
|
|
}
|
|
|
|
|
2008-02-08 20:29:23 +00:00
|
|
|
LValue ValueStateManager::GetLValue(const StateTy& St, Expr* S) {
|
2008-02-04 21:59:22 +00:00
|
|
|
|
|
|
|
while (ParenExpr* P = dyn_cast<ParenExpr>(S))
|
|
|
|
S = P->getSubExpr();
|
|
|
|
|
|
|
|
if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(S))
|
2008-02-05 21:52:21 +00:00
|
|
|
return lval::DeclVal(DR->getDecl());
|
2008-02-04 21:59:22 +00:00
|
|
|
|
2008-02-07 01:08:27 +00:00
|
|
|
if (UnaryOperator* U = dyn_cast<UnaryOperator>(S))
|
|
|
|
if (U->getOpcode() == UnaryOperator::Deref)
|
|
|
|
return cast<LValue>(GetValue(St, U->getSubExpr()));
|
|
|
|
|
2008-02-04 21:59:22 +00:00
|
|
|
return cast<LValue>(GetValue(St, S));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ValueStateManager::StateTy
|
2008-02-08 20:29:23 +00:00
|
|
|
ValueStateManager::SetValue(StateTy St, Expr* S, bool isBlkExpr,
|
2008-02-04 21:59:22 +00:00
|
|
|
const RValue& V) {
|
|
|
|
|
|
|
|
assert (S);
|
2008-02-08 20:29:23 +00:00
|
|
|
return V.isKnown() ? Add(St, ExprBindKey(S, isBlkExpr), V) : St;
|
2008-02-04 21:59:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ValueStateManager::StateTy
|
|
|
|
ValueStateManager::SetValue(StateTy St, const LValue& LV, const RValue& V) {
|
|
|
|
|
|
|
|
switch (LV.getSubKind()) {
|
2008-02-05 21:52:21 +00:00
|
|
|
case lval::DeclValKind:
|
2008-02-08 02:57:34 +00:00
|
|
|
return V.isKnown() ? Add(St, cast<lval::DeclVal>(LV).getDecl(), V)
|
2008-02-05 21:52:21 +00:00
|
|
|
: Remove(St, cast<lval::DeclVal>(LV).getDecl());
|
2008-02-04 21:59:22 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
assert ("SetValue for given LValue type not yet implemented.");
|
|
|
|
return St;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-05 07:17:49 +00:00
|
|
|
ValueStateManager::StateTy
|
2008-02-08 20:29:23 +00:00
|
|
|
ValueStateManager::Remove(StateTy St, ExprBindKey K) {
|
2008-02-05 07:17:49 +00:00
|
|
|
|
|
|
|
// Create a new state with the old binding removed.
|
|
|
|
ValueStateImpl NewStateImpl = *St.getImpl();
|
2008-02-08 03:02:48 +00:00
|
|
|
NewStateImpl.VarBindings =
|
|
|
|
VBFactory.Remove(NewStateImpl.VarBindings, K);
|
2008-02-05 07:17:49 +00:00
|
|
|
|
|
|
|
// Get the persistent copy.
|
|
|
|
return getPersistentState(NewStateImpl);
|
2008-02-04 21:59:22 +00:00
|
|
|
}
|
2008-02-05 07:17:49 +00:00
|
|
|
|
|
|
|
ValueStateManager::StateTy
|
2008-02-08 20:29:23 +00:00
|
|
|
ValueStateManager::Add(StateTy St, ExprBindKey K, const RValue& V) {
|
2008-02-05 07:17:49 +00:00
|
|
|
|
|
|
|
// Create a new state with the old binding removed.
|
|
|
|
ValueStateImpl NewStateImpl = *St.getImpl();
|
2008-02-08 03:02:48 +00:00
|
|
|
NewStateImpl.VarBindings =
|
|
|
|
VBFactory.Add(NewStateImpl.VarBindings, K, V);
|
2008-02-04 21:59:22 +00:00
|
|
|
|
2008-02-05 07:17:49 +00:00
|
|
|
// Get the persistent copy.
|
|
|
|
return getPersistentState(NewStateImpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ValueStateManager::StateTy
|
|
|
|
ValueStateManager::getInitialState() {
|
|
|
|
|
|
|
|
// Create a state with empty variable bindings.
|
2008-02-05 18:51:06 +00:00
|
|
|
ValueStateImpl StateImpl(VBFactory.GetEmptyMap(),
|
2008-02-06 00:54:14 +00:00
|
|
|
CNEFactory.GetEmptyMap(),
|
|
|
|
CEFactory.GetEmptyMap());
|
2008-02-05 07:17:49 +00:00
|
|
|
|
|
|
|
return getPersistentState(StateImpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
ValueStateManager::StateTy
|
|
|
|
ValueStateManager::getPersistentState(const ValueStateImpl &State) {
|
|
|
|
|
|
|
|
llvm::FoldingSetNodeID ID;
|
|
|
|
State.Profile(ID);
|
|
|
|
void* InsertPos;
|
|
|
|
|
|
|
|
if (ValueStateImpl* I = StateSet.FindNodeOrInsertPos(ID, InsertPos))
|
|
|
|
return I;
|
|
|
|
|
2008-02-06 02:45:20 +00:00
|
|
|
ValueStateImpl* I = (ValueStateImpl*) Alloc.Allocate<ValueStateImpl>();
|
2008-02-05 07:17:49 +00:00
|
|
|
new (I) ValueStateImpl(State);
|
|
|
|
StateSet.InsertNode(I, InsertPos);
|
|
|
|
return I;
|
|
|
|
}
|