aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/LazyValueInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-11-15 19:59:49 +0000
committerChris Lattner <sabre@nondot.org>2009-11-15 19:59:49 +0000
commit2c5adf832aa40240adb7c3e673b4d4ac902c9ad7 (patch)
tree182896ba3ea54abcd1db6e26ae53badc6ca37c45 /lib/Analysis/LazyValueInfo.cpp
parent4e447ebc5897a466c37bd2e9f5514d3fc5135789 (diff)
refactor a bunch of code forming the new LazyValueInfoCache
and LVIQuery classes, no functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88866 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LazyValueInfo.cpp')
-rw-r--r--lib/Analysis/LazyValueInfo.cpp266
1 files changed, 172 insertions, 94 deletions
diff --git a/lib/Analysis/LazyValueInfo.cpp b/lib/Analysis/LazyValueInfo.cpp
index d569b8595d..9644c9deef 100644
--- a/lib/Analysis/LazyValueInfo.cpp
+++ b/lib/Analysis/LazyValueInfo.cpp
@@ -195,69 +195,75 @@ raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
}
//===----------------------------------------------------------------------===//
-// LazyValueInfo Impl
+// LazyValueInfoCache Decl
//===----------------------------------------------------------------------===//
-bool LazyValueInfo::runOnFunction(Function &F) {
- TD = getAnalysisIfAvailable<TargetData>();
- // Fully lazy.
- return false;
-}
+namespace {
+ /// LazyValueInfoCache - This is the cache kept by LazyValueInfo which
+ /// maintains information about queries across the clients' queries.
+ class LazyValueInfoCache {
+ public:
+ /// BlockCacheEntryTy - This is a computed lattice value at the end of the
+ /// specified basic block for a Value* that depends on context.
+ typedef std::pair<BasicBlock*, LVILatticeVal> BlockCacheEntryTy;
+
+ /// ValueCacheEntryTy - This is all of the cached block information for
+ /// exactly one Value*. The entries are sorted by the BasicBlock* of the
+ /// entries, allowing us to do a lookup with a binary search.
+ typedef std::vector<BlockCacheEntryTy> ValueCacheEntryTy;
-void LazyValueInfo::releaseMemory() {
- // No caching yet.
-}
+ private:
+ /// ValueCache - This is all of the cached information for all values,
+ /// mapped from Value* to key information.
+ DenseMap<Value*, ValueCacheEntryTy> ValueCache;
+ public:
+
+ /// getValueInBlock - This is the query interface to determine the lattice
+ /// value for the specified Value* at the end of the specified block.
+ LVILatticeVal getValueInBlock(Value *V, BasicBlock *BB);
-static LVILatticeVal GetValueInBlock(Value *V, BasicBlock *BB,
- DenseMap<BasicBlock*, LVILatticeVal> &);
+ /// getValueOnEdge - This is the query interface to determine the lattice
+ /// value for the specified Value* that is true on the specified edge.
+ LVILatticeVal getValueOnEdge(Value *V, BasicBlock *FromBB,BasicBlock *ToBB);
+ };
+} // end anonymous namespace
-static LVILatticeVal GetValueOnEdge(Value *V, BasicBlock *BBFrom,
- BasicBlock *BBTo,
- DenseMap<BasicBlock*, LVILatticeVal> &BlockVals) {
- // FIXME: Pull edge logic out of jump threading.
-
-
- if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
- // If this is a conditional branch and only one successor goes to BBTo, then
- // we maybe able to infer something from the condition.
- if (BI->isConditional() &&
- BI->getSuccessor(0) != BI->getSuccessor(1)) {
- bool isTrueDest = BI->getSuccessor(0) == BBTo;
- assert(BI->getSuccessor(!isTrueDest) == BBTo &&
- "BBTo isn't a successor of BBFrom");
-
- // If V is the condition of the branch itself, then we know exactly what
- // it is.
- if (BI->getCondition() == V)
- return LVILatticeVal::get(ConstantInt::get(
- Type::getInt1Ty(V->getContext()), isTrueDest));
-
- // If the condition of the branch is an equality comparison, we may be
- // able to infer the value.
- if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
- if (ICI->isEquality() && ICI->getOperand(0) == V &&
- isa<Constant>(ICI->getOperand(1))) {
- // We know that V has the RHS constant if this is a true SETEQ or
- // false SETNE.
- if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
- return LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
- return LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
- }
+//===----------------------------------------------------------------------===//
+// LVIQuery Impl
+//===----------------------------------------------------------------------===//
+
+namespace {
+ /// LVIQuery - This is a transient object that exists while a query is
+ /// being performed.
+ class LVIQuery {
+ typedef LazyValueInfoCache::BlockCacheEntryTy BlockCacheEntryTy;
+ typedef LazyValueInfoCache::ValueCacheEntryTy ValueCacheEntryTy;
+
+ /// This is the current value being queried.
+ Value *Val;
+
+ /// This is all of the cached information about this value.
+ ValueCacheEntryTy &Cache;
+
+ /// BlockVals Temporary Cache used while processing a query.
+ DenseMap<BasicBlock*, LVILatticeVal> BlockVals;
+
+ public:
+
+ LVIQuery(Value *V, ValueCacheEntryTy &VC) : Val(V), Cache(VC) {
}
- }
-
- // TODO: Info from switch.
-
-
- // Otherwise see if the value is known in the block.
- return GetValueInBlock(V, BBFrom, BlockVals);
-}
-static LVILatticeVal GetValueInBlock(Value *V, BasicBlock *BB,
- DenseMap<BasicBlock*, LVILatticeVal> &BlockVals) {
+ LVILatticeVal getBlockValue(BasicBlock *BB);
+
+ LVILatticeVal getEdgeValue(BasicBlock *FromBB, BasicBlock *ToBB);
+ };
+} // end anonymous namespace
+
+
+LVILatticeVal LVIQuery::getBlockValue(BasicBlock *BB) {
// See if we already have a value for this block.
LVILatticeVal &BBLV = BlockVals[BB];
-
+
// If we've already computed this block's value, return it.
if (!BBLV.isUndefined())
return BBLV;
@@ -266,18 +272,17 @@ static LVILatticeVal GetValueInBlock(Value *V, BasicBlock *BB,
// lattice value to overdefined, so that cycles will terminate and be
// conservatively correct.
BBLV.markOverdefined();
-
- LVILatticeVal Result; // Start Undefined.
- // If V is live in to BB, see if our predecessors know anything about it.
- Instruction *BBI = dyn_cast<Instruction>(V);
+ // If V is live into BB, see if our predecessors know anything about it.
+ Instruction *BBI = dyn_cast<Instruction>(Val);
if (BBI == 0 || BBI->getParent() != BB) {
+ LVILatticeVal Result; // Start Undefined.
unsigned NumPreds = 0;
// Loop over all of our predecessors, merging what we know from them into
// result.
for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
- Result.mergeIn(GetValueOnEdge(V, *PI, BB, BlockVals));
+ Result.mergeIn(getEdgeValue(*PI, BB));
// If we hit overdefined, exit early. The BlockVals entry is already set
// to overdefined.
@@ -289,16 +294,16 @@ static LVILatticeVal GetValueInBlock(Value *V, BasicBlock *BB,
// If this is the entry block, we must be asking about an argument. The
// value is overdefined.
if (NumPreds == 0 && BB == &BB->getParent()->front()) {
- assert(isa<Argument>(V) && "Unknown live-in to the entry block");
+ assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
Result.markOverdefined();
return Result;
}
-
+
// Return the merged value, which is more precise than 'overdefined'.
assert(!Result.isOverdefined());
return BlockVals[BB] = Result;
}
-
+
// If this value is defined by an instruction in this block, we have to
// process it here somehow or return overdefined.
if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
@@ -308,24 +313,115 @@ static LVILatticeVal GetValueInBlock(Value *V, BasicBlock *BB,
}
+ LVILatticeVal Result;
Result.markOverdefined();
return BlockVals[BB] = Result;
}
-Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB) {
- // If already a constant, return it.
- if (Constant *VC = dyn_cast<Constant>(V))
- return VC;
+/// getEdgeValue - This method
+LVILatticeVal LVIQuery::getEdgeValue(BasicBlock *BBFrom, BasicBlock *BBTo) {
+ if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
+ // If this is a conditional branch and only one successor goes to BBTo, then
+ // we maybe able to infer something from the condition.
+ if (BI->isConditional() &&
+ BI->getSuccessor(0) != BI->getSuccessor(1)) {
+ bool isTrueDest = BI->getSuccessor(0) == BBTo;
+ assert(BI->getSuccessor(!isTrueDest) == BBTo &&
+ "BBTo isn't a successor of BBFrom");
+
+ // If V is the condition of the branch itself, then we know exactly what
+ // it is.
+ if (BI->getCondition() == Val)
+ return LVILatticeVal::get(ConstantInt::get(
+ Type::getInt1Ty(Val->getContext()), isTrueDest));
+
+ // If the condition of the branch is an equality comparison, we may be
+ // able to infer the value.
+ if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
+ if (ICI->isEquality() && ICI->getOperand(0) == Val &&
+ isa<Constant>(ICI->getOperand(1))) {
+ // We know that V has the RHS constant if this is a true SETEQ or
+ // false SETNE.
+ if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
+ return LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
+ return LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
+ }
+ }
+ }
+
+ // TODO: Info from switch.
+
+ // TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
+ // know that v != 0.
- DenseMap<BasicBlock*, LVILatticeVal> BlockValues;
+ // Otherwise see if the value is known in the block.
+ return getBlockValue(BBFrom);
+}
+
+
+//===----------------------------------------------------------------------===//
+// LazyValueInfoCache Impl
+//===----------------------------------------------------------------------===//
+
+LVILatticeVal LazyValueInfoCache::getValueInBlock(Value *V, BasicBlock *BB) {
+ // If already a constant, there is nothing to compute.
+ if (Constant *VC = dyn_cast<Constant>(V))
+ return LVILatticeVal::get(VC);
DEBUG(errs() << "Getting value " << *V << " at end of block '"
- << BB->getName() << "'\n");
- LVILatticeVal Result = GetValueInBlock(V, BB, BlockValues);
+ << BB->getName() << "'\n");
+
+ LVILatticeVal Result = LVIQuery(V, ValueCache[V]).getBlockValue(BB);
+
+ DEBUG(errs() << " Result = " << Result << "\n");
+ return Result;
+}
+
+LVILatticeVal LazyValueInfoCache::
+getValueOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB) {
+ // If already a constant, there is nothing to compute.
+ if (Constant *VC = dyn_cast<Constant>(V))
+ return LVILatticeVal::get(VC);
+
+ DEBUG(errs() << "Getting value " << *V << " on edge from '"
+ << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
+ LVILatticeVal Result =
+ LVIQuery(V, ValueCache[V]).getEdgeValue(FromBB, ToBB);
DEBUG(errs() << " Result = " << Result << "\n");
+
+ return Result;
+}
+
+//===----------------------------------------------------------------------===//
+// LazyValueInfo Impl
+//===----------------------------------------------------------------------===//
+
+bool LazyValueInfo::runOnFunction(Function &F) {
+ TD = getAnalysisIfAvailable<TargetData>();
+ // Fully lazy.
+ return false;
+}
+
+/// getCache - This lazily constructs the LazyValueInfoCache.
+static LazyValueInfoCache &getCache(void *&PImpl) {
+ if (!PImpl)
+ PImpl = new LazyValueInfoCache();
+ return *static_cast<LazyValueInfoCache*>(PImpl);
+}
+
+void LazyValueInfo::releaseMemory() {
+ // If the cache was allocated, free it.
+ if (PImpl) {
+ delete &getCache(PImpl);
+ PImpl = 0;
+ }
+}
+Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB) {
+ LVILatticeVal Result = getCache(PImpl).getValueInBlock(V, BB);
+
if (Result.isConstant())
return Result.getConstant();
return 0;
@@ -335,17 +431,7 @@ Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB) {
/// constant on the specified edge. Return null if not.
Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
BasicBlock *ToBB) {
- // If already a constant, return it.
- if (Constant *VC = dyn_cast<Constant>(V))
- return VC;
-
- DenseMap<BasicBlock*, LVILatticeVal> BlockValues;
-
- DEBUG(errs() << "Getting value " << *V << " on edge from '"
- << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
- LVILatticeVal Result = GetValueOnEdge(V, FromBB, ToBB, BlockValues);
-
- DEBUG(errs() << " Result = " << Result << "\n");
+ LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
if (Result.isConstant())
return Result.getConstant();
@@ -358,19 +444,7 @@ Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
LazyValueInfo::Tristate
LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
BasicBlock *FromBB, BasicBlock *ToBB) {
- LVILatticeVal Result;
-
- // If already a constant, we can use constant folding.
- if (Constant *VC = dyn_cast<Constant>(V)) {
- Result = LVILatticeVal::get(VC);
- } else {
- DenseMap<BasicBlock*, LVILatticeVal> BlockValues;
-
- DEBUG(errs() << "Getting value " << *V << " on edge from '"
- << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
- Result = GetValueOnEdge(V, FromBB, ToBB, BlockValues);
- DEBUG(errs() << " Result = " << Result << "\n");
- }
+ LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
// If we know the value is a constant, evaluate the conditional.
Constant *Res = 0;
@@ -378,7 +452,10 @@ LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
Res = ConstantFoldCompareInstOperands(Pred, Result.getConstant(), C, TD);
if (ConstantInt *ResCI = dyn_cast_or_null<ConstantInt>(Res))
return ResCI->isZero() ? False : True;
- } else if (Result.isNotConstant()) {
+ return Unknown;
+ }
+
+ if (Result.isNotConstant()) {
// If this is an equality comparison, we can try to fold it knowing that
// "V != C1".
if (Pred == ICmpInst::ICMP_EQ) {
@@ -394,6 +471,7 @@ LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
if (Res->isNullValue())
return True;
}
+ return Unknown;
}
return Unknown;