2009-11-11 01:22:30 +01:00
|
|
|
//===- LazyValueInfo.cpp - Value constraint analysis ----------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the interface for lazy computation of value constraint
|
|
|
|
// information.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-11-12 02:22:16 +01:00
|
|
|
#define DEBUG_TYPE "lazy-value-info"
|
2009-11-11 01:22:30 +01:00
|
|
|
#include "llvm/Analysis/LazyValueInfo.h"
|
2009-11-11 03:08:33 +01:00
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/Instructions.h"
|
|
|
|
#include "llvm/Analysis/ConstantFolding.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
2009-11-11 23:48:44 +01:00
|
|
|
#include "llvm/Support/CFG.h"
|
2009-11-12 02:22:16 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-11-11 23:48:44 +01:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2009-11-11 03:08:33 +01:00
|
|
|
#include "llvm/ADT/PointerIntPair.h"
|
2009-11-15 21:00:52 +01:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2009-11-11 01:22:30 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
char LazyValueInfo::ID = 0;
|
|
|
|
static RegisterPass<LazyValueInfo>
|
|
|
|
X("lazy-value-info", "Lazy Value Information Analysis", false, true);
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
FunctionPass *createLazyValueInfoPass() { return new LazyValueInfo(); }
|
|
|
|
}
|
|
|
|
|
2009-11-11 03:08:33 +01:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// LVILatticeVal
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// LVILatticeVal - This is the information tracked by LazyValueInfo for each
|
|
|
|
/// value.
|
|
|
|
///
|
|
|
|
/// FIXME: This is basically just for bringup, this can be made a lot more rich
|
|
|
|
/// in the future.
|
|
|
|
///
|
|
|
|
namespace {
|
|
|
|
class LVILatticeVal {
|
|
|
|
enum LatticeValueTy {
|
|
|
|
/// undefined - This LLVM Value has no known value yet.
|
|
|
|
undefined,
|
|
|
|
/// constant - This LLVM Value has a specific constant value.
|
|
|
|
constant,
|
2009-11-12 05:36:58 +01:00
|
|
|
|
|
|
|
/// notconstant - This LLVM value is known to not have the specified value.
|
|
|
|
notconstant,
|
|
|
|
|
2009-11-11 03:08:33 +01:00
|
|
|
/// overdefined - This instruction is not known to be constant, and we know
|
|
|
|
/// it has a value.
|
|
|
|
overdefined
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Val: This stores the current lattice value along with the Constant* for
|
2009-11-12 05:36:58 +01:00
|
|
|
/// the constant if this is a 'constant' or 'notconstant' value.
|
2009-11-11 03:08:33 +01:00
|
|
|
PointerIntPair<Constant *, 2, LatticeValueTy> Val;
|
|
|
|
|
|
|
|
public:
|
|
|
|
LVILatticeVal() : Val(0, undefined) {}
|
|
|
|
|
2009-11-11 23:48:44 +01:00
|
|
|
static LVILatticeVal get(Constant *C) {
|
|
|
|
LVILatticeVal Res;
|
|
|
|
Res.markConstant(C);
|
|
|
|
return Res;
|
|
|
|
}
|
2009-11-12 05:36:58 +01:00
|
|
|
static LVILatticeVal getNot(Constant *C) {
|
|
|
|
LVILatticeVal Res;
|
|
|
|
Res.markNotConstant(C);
|
|
|
|
return Res;
|
|
|
|
}
|
2009-11-11 23:48:44 +01:00
|
|
|
|
2009-11-11 03:08:33 +01:00
|
|
|
bool isUndefined() const { return Val.getInt() == undefined; }
|
|
|
|
bool isConstant() const { return Val.getInt() == constant; }
|
2009-11-12 05:36:58 +01:00
|
|
|
bool isNotConstant() const { return Val.getInt() == notconstant; }
|
2009-11-11 03:08:33 +01:00
|
|
|
bool isOverdefined() const { return Val.getInt() == overdefined; }
|
|
|
|
|
|
|
|
Constant *getConstant() const {
|
|
|
|
assert(isConstant() && "Cannot get the constant of a non-constant!");
|
|
|
|
return Val.getPointer();
|
|
|
|
}
|
|
|
|
|
2009-11-12 05:36:58 +01:00
|
|
|
Constant *getNotConstant() const {
|
|
|
|
assert(isNotConstant() && "Cannot get the constant of a non-notconstant!");
|
|
|
|
return Val.getPointer();
|
2009-11-11 03:08:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// markOverdefined - Return true if this is a change in status.
|
|
|
|
bool markOverdefined() {
|
|
|
|
if (isOverdefined())
|
|
|
|
return false;
|
|
|
|
Val.setInt(overdefined);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// markConstant - Return true if this is a change in status.
|
|
|
|
bool markConstant(Constant *V) {
|
|
|
|
if (isConstant()) {
|
|
|
|
assert(getConstant() == V && "Marking constant with different value");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(isUndefined());
|
|
|
|
Val.setInt(constant);
|
|
|
|
assert(V && "Marking constant with NULL");
|
|
|
|
Val.setPointer(V);
|
2009-11-11 23:48:44 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-12 05:36:58 +01:00
|
|
|
/// markNotConstant - Return true if this is a change in status.
|
|
|
|
bool markNotConstant(Constant *V) {
|
|
|
|
if (isNotConstant()) {
|
|
|
|
assert(getNotConstant() == V && "Marking !constant with different value");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isConstant())
|
|
|
|
assert(getConstant() != V && "Marking not constant with different value");
|
|
|
|
else
|
|
|
|
assert(isUndefined());
|
|
|
|
|
|
|
|
Val.setInt(notconstant);
|
|
|
|
assert(V && "Marking constant with NULL");
|
|
|
|
Val.setPointer(V);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-11 23:48:44 +01:00
|
|
|
/// mergeIn - Merge the specified lattice value into this one, updating this
|
|
|
|
/// one and returning true if anything changed.
|
|
|
|
bool mergeIn(const LVILatticeVal &RHS) {
|
|
|
|
if (RHS.isUndefined() || isOverdefined()) return false;
|
|
|
|
if (RHS.isOverdefined()) return markOverdefined();
|
|
|
|
|
2009-11-12 05:36:58 +01:00
|
|
|
if (RHS.isNotConstant()) {
|
|
|
|
if (isNotConstant()) {
|
2009-11-12 05:57:13 +01:00
|
|
|
if (getNotConstant() != RHS.getNotConstant() ||
|
|
|
|
isa<ConstantExpr>(getNotConstant()) ||
|
|
|
|
isa<ConstantExpr>(RHS.getNotConstant()))
|
2009-11-12 05:36:58 +01:00
|
|
|
return markOverdefined();
|
|
|
|
return false;
|
|
|
|
}
|
2009-11-12 05:57:13 +01:00
|
|
|
if (isConstant()) {
|
|
|
|
if (getConstant() == RHS.getNotConstant() ||
|
|
|
|
isa<ConstantExpr>(RHS.getNotConstant()) ||
|
|
|
|
isa<ConstantExpr>(getConstant()))
|
|
|
|
return markOverdefined();
|
|
|
|
return markNotConstant(RHS.getNotConstant());
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(isUndefined() && "Unexpected lattice");
|
2009-11-12 05:36:58 +01:00
|
|
|
return markNotConstant(RHS.getNotConstant());
|
|
|
|
}
|
|
|
|
|
2009-11-12 05:57:13 +01:00
|
|
|
// RHS must be a constant, we must be undef, constant, or notconstant.
|
|
|
|
if (isUndefined())
|
|
|
|
return markConstant(RHS.getConstant());
|
|
|
|
|
|
|
|
if (isConstant()) {
|
|
|
|
if (getConstant() != RHS.getConstant())
|
|
|
|
return markOverdefined();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are known "!=4" and RHS is "==5", stay at "!=4".
|
|
|
|
if (getNotConstant() == RHS.getConstant() ||
|
|
|
|
isa<ConstantExpr>(getNotConstant()) ||
|
|
|
|
isa<ConstantExpr>(RHS.getConstant()))
|
2009-11-11 23:48:44 +01:00
|
|
|
return markOverdefined();
|
2009-11-12 05:57:13 +01:00
|
|
|
return false;
|
2009-11-11 03:08:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end anonymous namespace.
|
|
|
|
|
2009-11-11 23:48:44 +01:00
|
|
|
namespace llvm {
|
|
|
|
raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
|
|
|
|
if (Val.isUndefined())
|
|
|
|
return OS << "undefined";
|
|
|
|
if (Val.isOverdefined())
|
|
|
|
return OS << "overdefined";
|
2009-11-12 05:36:58 +01:00
|
|
|
|
|
|
|
if (Val.isNotConstant())
|
|
|
|
return OS << "notconstant<" << *Val.getNotConstant() << '>';
|
2009-11-11 23:48:44 +01:00
|
|
|
return OS << "constant<" << *Val.getConstant() << '>';
|
|
|
|
}
|
|
|
|
}
|
2009-11-11 03:08:33 +01:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-11-15 20:59:49 +01:00
|
|
|
// LazyValueInfoCache Decl
|
2009-11-11 03:08:33 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-11-15 20:59:49 +01:00
|
|
|
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;
|
2009-11-11 01:22:30 +01:00
|
|
|
|
2009-11-15 20:59:49 +01:00
|
|
|
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);
|
2009-11-11 03:08:33 +01:00
|
|
|
|
2009-11-15 20:59:49 +01:00
|
|
|
/// 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
|
2009-11-11 23:48:44 +01:00
|
|
|
|
2009-11-15 21:00:52 +01:00
|
|
|
namespace {
|
|
|
|
struct BlockCacheEntryComparator {
|
|
|
|
static int Compare(const void *LHSv, const void *RHSv) {
|
|
|
|
const LazyValueInfoCache::BlockCacheEntryTy *LHS =
|
|
|
|
static_cast<const LazyValueInfoCache::BlockCacheEntryTy *>(LHSv);
|
|
|
|
const LazyValueInfoCache::BlockCacheEntryTy *RHS =
|
|
|
|
static_cast<const LazyValueInfoCache::BlockCacheEntryTy *>(RHSv);
|
|
|
|
if (LHS->first < RHS->first)
|
|
|
|
return -1;
|
|
|
|
if (LHS->first > RHS->first)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator()(const LazyValueInfoCache::BlockCacheEntryTy &LHS,
|
|
|
|
const LazyValueInfoCache::BlockCacheEntryTy &RHS) const {
|
|
|
|
return LHS.first < RHS.first;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2009-11-15 20:59:49 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// LVIQuery Impl
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// LVIQuery - This is a transient object that exists while a query is
|
|
|
|
/// being performed.
|
2009-11-15 21:00:52 +01:00
|
|
|
///
|
|
|
|
/// TODO: Reuse LVIQuery instead of recreating it for every query, this avoids
|
|
|
|
/// reallocation of the densemap on every query.
|
2009-11-15 20:59:49 +01:00
|
|
|
class LVIQuery {
|
|
|
|
typedef LazyValueInfoCache::BlockCacheEntryTy BlockCacheEntryTy;
|
|
|
|
typedef LazyValueInfoCache::ValueCacheEntryTy ValueCacheEntryTy;
|
|
|
|
|
2009-11-15 21:00:52 +01:00
|
|
|
/// This is the current value being queried for.
|
2009-11-15 20:59:49 +01:00
|
|
|
Value *Val;
|
|
|
|
|
|
|
|
/// This is all of the cached information about this value.
|
|
|
|
ValueCacheEntryTy &Cache;
|
|
|
|
|
2009-11-16 04:51:42 +01:00
|
|
|
/// NewBlocks - This is a mapping of the new BasicBlocks which have been
|
2009-11-15 21:00:52 +01:00
|
|
|
/// added to cache but that are not in sorted order.
|
|
|
|
DenseMap<BasicBlock*, LVILatticeVal> NewBlockInfo;
|
2009-11-15 20:59:49 +01:00
|
|
|
public:
|
|
|
|
|
|
|
|
LVIQuery(Value *V, ValueCacheEntryTy &VC) : Val(V), Cache(VC) {
|
2009-11-11 23:48:44 +01:00
|
|
|
}
|
|
|
|
|
2009-11-15 21:00:52 +01:00
|
|
|
~LVIQuery() {
|
|
|
|
// When the query is done, insert the newly discovered facts into the
|
|
|
|
// cache in sorted order.
|
|
|
|
if (NewBlockInfo.empty()) return;
|
|
|
|
|
|
|
|
// Grow the cache to exactly fit the new data.
|
|
|
|
Cache.reserve(Cache.size() + NewBlockInfo.size());
|
|
|
|
|
|
|
|
// If we only have one new entry, insert it instead of doing a full-on
|
|
|
|
// sort.
|
|
|
|
if (NewBlockInfo.size() == 1) {
|
|
|
|
BlockCacheEntryTy Entry = *NewBlockInfo.begin();
|
|
|
|
ValueCacheEntryTy::iterator I =
|
|
|
|
std::lower_bound(Cache.begin(), Cache.end(), Entry,
|
|
|
|
BlockCacheEntryComparator());
|
|
|
|
assert((I == Cache.end() || I->first != Entry.first) &&
|
|
|
|
"Entry already in map!");
|
|
|
|
|
|
|
|
Cache.insert(I, Entry);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: If we only have two new elements, INSERT them both.
|
|
|
|
|
|
|
|
Cache.insert(Cache.end(), NewBlockInfo.begin(), NewBlockInfo.end());
|
|
|
|
array_pod_sort(Cache.begin(), Cache.end(),
|
|
|
|
BlockCacheEntryComparator::Compare);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-11-15 20:59:49 +01:00
|
|
|
LVILatticeVal getBlockValue(BasicBlock *BB);
|
|
|
|
LVILatticeVal getEdgeValue(BasicBlock *FromBB, BasicBlock *ToBB);
|
2009-11-15 21:00:52 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
LVILatticeVal &getCachedEntryForBlock(BasicBlock *BB);
|
2009-11-15 20:59:49 +01:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2009-11-15 21:00:52 +01:00
|
|
|
/// getCachedEntryForBlock - See if we already have a value for this block. If
|
|
|
|
/// so, return it, otherwise create a new entry in the NewBlockInfo map to use.
|
|
|
|
LVILatticeVal &LVIQuery::getCachedEntryForBlock(BasicBlock *BB) {
|
|
|
|
|
|
|
|
// Do a binary search to see if we already have an entry for this block in
|
|
|
|
// the cache set. If so, find it.
|
|
|
|
if (!Cache.empty()) {
|
|
|
|
ValueCacheEntryTy::iterator Entry =
|
|
|
|
std::lower_bound(Cache.begin(), Cache.end(),
|
|
|
|
BlockCacheEntryTy(BB, LVILatticeVal()),
|
|
|
|
BlockCacheEntryComparator());
|
|
|
|
if (Entry != Cache.end() && Entry->first == BB)
|
|
|
|
return Entry->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, check to see if it's in NewBlockInfo or create a new entry if
|
|
|
|
// not.
|
|
|
|
return NewBlockInfo[BB];
|
|
|
|
}
|
2009-11-15 20:59:49 +01:00
|
|
|
|
|
|
|
LVILatticeVal LVIQuery::getBlockValue(BasicBlock *BB) {
|
2009-11-11 23:48:44 +01:00
|
|
|
// See if we already have a value for this block.
|
2009-11-15 21:00:52 +01:00
|
|
|
LVILatticeVal &BBLV = getCachedEntryForBlock(BB);
|
2009-11-15 20:59:49 +01:00
|
|
|
|
2009-11-11 23:48:44 +01:00
|
|
|
// If we've already computed this block's value, return it.
|
2009-11-15 21:00:52 +01:00
|
|
|
if (!BBLV.isUndefined()) {
|
2009-12-23 21:43:58 +01:00
|
|
|
DEBUG(dbgs() << " reuse BB '" << BB->getName() << "' val=" << BBLV <<'\n');
|
2009-11-11 23:48:44 +01:00
|
|
|
return BBLV;
|
2009-11-15 21:00:52 +01:00
|
|
|
}
|
|
|
|
|
2009-11-11 23:48:44 +01:00
|
|
|
// Otherwise, this is the first time we're seeing this block. Reset the
|
|
|
|
// lattice value to overdefined, so that cycles will terminate and be
|
|
|
|
// conservatively correct.
|
|
|
|
BBLV.markOverdefined();
|
|
|
|
|
2009-11-15 20:59:49 +01:00
|
|
|
// If V is live into BB, see if our predecessors know anything about it.
|
|
|
|
Instruction *BBI = dyn_cast<Instruction>(Val);
|
2009-11-11 23:48:44 +01:00
|
|
|
if (BBI == 0 || BBI->getParent() != BB) {
|
2009-11-15 20:59:49 +01:00
|
|
|
LVILatticeVal Result; // Start Undefined.
|
2009-11-11 23:48:44 +01:00
|
|
|
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) {
|
2009-11-15 20:59:49 +01:00
|
|
|
Result.mergeIn(getEdgeValue(*PI, BB));
|
2009-11-11 23:48:44 +01:00
|
|
|
|
|
|
|
// If we hit overdefined, exit early. The BlockVals entry is already set
|
|
|
|
// to overdefined.
|
2009-11-15 21:00:52 +01:00
|
|
|
if (Result.isOverdefined()) {
|
2009-12-23 21:43:58 +01:00
|
|
|
DEBUG(dbgs() << " compute BB '" << BB->getName()
|
2009-11-15 21:00:52 +01:00
|
|
|
<< "' - overdefined because of pred.\n");
|
2009-11-11 23:48:44 +01:00
|
|
|
return Result;
|
2009-11-15 21:00:52 +01:00
|
|
|
}
|
2009-11-11 23:48:44 +01:00
|
|
|
++NumPreds;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is the entry block, we must be asking about an argument. The
|
|
|
|
// value is overdefined.
|
|
|
|
if (NumPreds == 0 && BB == &BB->getParent()->front()) {
|
2009-11-15 20:59:49 +01:00
|
|
|
assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
|
2009-11-11 23:48:44 +01:00
|
|
|
Result.markOverdefined();
|
|
|
|
return Result;
|
|
|
|
}
|
2009-11-15 20:59:49 +01:00
|
|
|
|
2009-11-11 23:48:44 +01:00
|
|
|
// Return the merged value, which is more precise than 'overdefined'.
|
|
|
|
assert(!Result.isOverdefined());
|
2009-11-15 21:00:52 +01:00
|
|
|
return getCachedEntryForBlock(BB) = Result;
|
2009-11-11 23:48:44 +01:00
|
|
|
}
|
2009-11-15 20:59:49 +01:00
|
|
|
|
2009-11-11 23:48:44 +01:00
|
|
|
// 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)) {
|
|
|
|
(void)PN;
|
|
|
|
// TODO: PHI Translation in preds.
|
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-12-23 21:43:58 +01:00
|
|
|
DEBUG(dbgs() << " compute BB '" << BB->getName()
|
2009-11-15 21:00:52 +01:00
|
|
|
<< "' - overdefined because inst def found.\n");
|
|
|
|
|
2009-11-15 20:59:49 +01:00
|
|
|
LVILatticeVal Result;
|
2009-11-11 23:48:44 +01:00
|
|
|
Result.markOverdefined();
|
2009-11-15 21:00:52 +01:00
|
|
|
return getCachedEntryForBlock(BB) = Result;
|
2009-11-11 23:48:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-15 21:02:12 +01:00
|
|
|
/// getEdgeValue - This method attempts to infer more complex
|
2009-11-15 20:59:49 +01:00
|
|
|
LVILatticeVal LVIQuery::getEdgeValue(BasicBlock *BBFrom, BasicBlock *BBTo) {
|
2009-11-15 21:02:12 +01:00
|
|
|
// TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
|
|
|
|
// know that v != 0.
|
2009-11-15 20:59:49 +01:00
|
|
|
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)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-15 21:02:12 +01:00
|
|
|
|
|
|
|
// If the edge was formed by a switch on the value, then we may know exactly
|
|
|
|
// what it is.
|
|
|
|
if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
|
|
|
|
// If BBTo is the default destination of the switch, we don't know anything.
|
|
|
|
// Given a more powerful range analysis we could know stuff.
|
|
|
|
if (SI->getCondition() == Val && SI->getDefaultDest() != BBTo) {
|
|
|
|
// We only know something if there is exactly one value that goes from
|
|
|
|
// BBFrom to BBTo.
|
|
|
|
unsigned NumEdges = 0;
|
|
|
|
ConstantInt *EdgeVal = 0;
|
|
|
|
for (unsigned i = 1, e = SI->getNumSuccessors(); i != e; ++i) {
|
|
|
|
if (SI->getSuccessor(i) != BBTo) continue;
|
|
|
|
if (NumEdges++) break;
|
|
|
|
EdgeVal = SI->getCaseValue(i);
|
|
|
|
}
|
|
|
|
assert(EdgeVal && "Missing successor?");
|
|
|
|
if (NumEdges == 1)
|
|
|
|
return LVILatticeVal::get(EdgeVal);
|
|
|
|
}
|
|
|
|
}
|
2009-11-11 23:48:44 +01:00
|
|
|
|
2009-11-15 20:59:49 +01:00
|
|
|
// 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);
|
2009-11-11 23:48:44 +01:00
|
|
|
|
2009-12-23 21:43:58 +01:00
|
|
|
DEBUG(dbgs() << "LVI Getting block end value " << *V << " at '"
|
2009-11-15 20:59:49 +01:00
|
|
|
<< BB->getName() << "'\n");
|
|
|
|
|
|
|
|
LVILatticeVal Result = LVIQuery(V, ValueCache[V]).getBlockValue(BB);
|
|
|
|
|
2009-12-23 21:43:58 +01:00
|
|
|
DEBUG(dbgs() << " Result = " << Result << "\n");
|
2009-11-15 20:59:49 +01:00
|
|
|
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);
|
|
|
|
|
2009-12-23 21:43:58 +01:00
|
|
|
DEBUG(dbgs() << "LVI Getting edge value " << *V << " from '"
|
2009-11-15 20:59:49 +01:00
|
|
|
<< FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
|
|
|
|
LVILatticeVal Result =
|
|
|
|
LVIQuery(V, ValueCache[V]).getEdgeValue(FromBB, ToBB);
|
2009-11-11 23:48:44 +01:00
|
|
|
|
2009-12-23 21:43:58 +01:00
|
|
|
DEBUG(dbgs() << " Result = " << Result << "\n");
|
2009-11-15 20:59:49 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2009-11-11 23:48:44 +01:00
|
|
|
|
2009-11-15 20:59:49 +01:00
|
|
|
Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB) {
|
|
|
|
LVILatticeVal Result = getCache(PImpl).getValueInBlock(V, BB);
|
|
|
|
|
2009-11-11 23:48:44 +01:00
|
|
|
if (Result.isConstant())
|
|
|
|
return Result.getConstant();
|
|
|
|
return 0;
|
|
|
|
}
|
2009-11-11 03:08:33 +01:00
|
|
|
|
2009-11-12 02:29:10 +01:00
|
|
|
/// getConstantOnEdge - Determine whether the specified value is known to be a
|
|
|
|
/// constant on the specified edge. Return null if not.
|
|
|
|
Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
|
|
|
|
BasicBlock *ToBB) {
|
2009-11-15 20:59:49 +01:00
|
|
|
LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
|
2009-11-12 02:29:10 +01:00
|
|
|
|
|
|
|
if (Result.isConstant())
|
|
|
|
return Result.getConstant();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-12 05:36:58 +01:00
|
|
|
/// getPredicateOnEdge - Determine whether the specified value comparison
|
|
|
|
/// with a constant is known to be true or false on the specified CFG edge.
|
|
|
|
/// Pred is a CmpInst predicate.
|
2009-11-11 03:08:33 +01:00
|
|
|
LazyValueInfo::Tristate
|
2009-11-12 05:36:58 +01:00
|
|
|
LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
|
|
|
|
BasicBlock *FromBB, BasicBlock *ToBB) {
|
2009-11-15 20:59:49 +01:00
|
|
|
LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
|
2009-11-12 05:36:58 +01:00
|
|
|
|
|
|
|
// If we know the value is a constant, evaluate the conditional.
|
|
|
|
Constant *Res = 0;
|
|
|
|
if (Result.isConstant()) {
|
|
|
|
Res = ConstantFoldCompareInstOperands(Pred, Result.getConstant(), C, TD);
|
|
|
|
if (ConstantInt *ResCI = dyn_cast_or_null<ConstantInt>(Res))
|
|
|
|
return ResCI->isZero() ? False : True;
|
2009-11-15 20:59:49 +01:00
|
|
|
return Unknown;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Result.isNotConstant()) {
|
2009-11-12 05:36:58 +01:00
|
|
|
// If this is an equality comparison, we can try to fold it knowing that
|
|
|
|
// "V != C1".
|
|
|
|
if (Pred == ICmpInst::ICMP_EQ) {
|
|
|
|
// !C1 == C -> false iff C1 == C.
|
|
|
|
Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
|
|
|
|
Result.getNotConstant(), C, TD);
|
|
|
|
if (Res->isNullValue())
|
|
|
|
return False;
|
|
|
|
} else if (Pred == ICmpInst::ICMP_NE) {
|
|
|
|
// !C1 != C -> true iff C1 == C.
|
2009-11-15 21:01:24 +01:00
|
|
|
Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
|
2009-11-12 05:36:58 +01:00
|
|
|
Result.getNotConstant(), C, TD);
|
|
|
|
if (Res->isNullValue())
|
|
|
|
return True;
|
|
|
|
}
|
2009-11-15 20:59:49 +01:00
|
|
|
return Unknown;
|
2009-11-11 03:08:33 +01:00
|
|
|
}
|
2009-11-11 01:22:30 +01:00
|
|
|
|
2009-11-11 03:08:33 +01:00
|
|
|
return Unknown;
|
2009-11-11 01:22:30 +01:00
|
|
|
}
|
2009-11-11 03:08:33 +01:00
|
|
|
|
|
|
|
|