mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-05 14:34:55 +00:00
Fix Transforms/IndVarsSimplify/2006-03-31-NegativeStride.ll and
PR726 by performing consistent signed division, not consistent unsigned division when evaluating scev's. Do not touch udivs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27326 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b076783e7d
commit
60a05cc118
@ -136,7 +136,7 @@ namespace llvm {
|
|||||||
|
|
||||||
Value *visitMulExpr(SCEVMulExpr *S);
|
Value *visitMulExpr(SCEVMulExpr *S);
|
||||||
|
|
||||||
Value *visitUDivExpr(SCEVUDivExpr *S) {
|
Value *visitSDivExpr(SCEVSDivExpr *S) {
|
||||||
const Type *Ty = S->getType();
|
const Type *Ty = S->getType();
|
||||||
Value *LHS = expandInTy(S->getLHS(), Ty);
|
Value *LHS = expandInTy(S->getLHS(), Ty);
|
||||||
Value *RHS = expandInTy(S->getRHS(), Ty);
|
Value *RHS = expandInTy(S->getRHS(), Ty);
|
||||||
|
@ -23,7 +23,7 @@ namespace llvm {
|
|||||||
enum SCEVTypes {
|
enum SCEVTypes {
|
||||||
// These should be ordered in terms of increasing complexity to make the
|
// These should be ordered in terms of increasing complexity to make the
|
||||||
// folders simpler.
|
// folders simpler.
|
||||||
scConstant, scTruncate, scZeroExtend, scAddExpr, scMulExpr, scUDivExpr,
|
scConstant, scTruncate, scZeroExtend, scAddExpr, scMulExpr, scSDivExpr,
|
||||||
scAddRecExpr, scUnknown, scCouldNotCompute
|
scAddRecExpr, scUnknown, scCouldNotCompute
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -293,16 +293,16 @@ namespace llvm {
|
|||||||
|
|
||||||
|
|
||||||
//===--------------------------------------------------------------------===//
|
//===--------------------------------------------------------------------===//
|
||||||
/// SCEVUDivExpr - This class represents a binary unsigned division operation.
|
/// SCEVSDivExpr - This class represents a binary unsigned division operation.
|
||||||
///
|
///
|
||||||
class SCEVUDivExpr : public SCEV {
|
class SCEVSDivExpr : public SCEV {
|
||||||
SCEVHandle LHS, RHS;
|
SCEVHandle LHS, RHS;
|
||||||
SCEVUDivExpr(const SCEVHandle &lhs, const SCEVHandle &rhs)
|
SCEVSDivExpr(const SCEVHandle &lhs, const SCEVHandle &rhs)
|
||||||
: SCEV(scUDivExpr), LHS(lhs), RHS(rhs) {}
|
: SCEV(scSDivExpr), LHS(lhs), RHS(rhs) {}
|
||||||
|
|
||||||
virtual ~SCEVUDivExpr();
|
virtual ~SCEVSDivExpr();
|
||||||
public:
|
public:
|
||||||
/// get method - This just gets and returns a new SCEVUDiv object.
|
/// get method - This just gets and returns a new SCEVSDiv object.
|
||||||
///
|
///
|
||||||
static SCEVHandle get(const SCEVHandle &LHS, const SCEVHandle &RHS);
|
static SCEVHandle get(const SCEVHandle &LHS, const SCEVHandle &RHS);
|
||||||
|
|
||||||
@ -334,9 +334,9 @@ namespace llvm {
|
|||||||
void print(std::ostream &OS) const;
|
void print(std::ostream &OS) const;
|
||||||
|
|
||||||
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
||||||
static inline bool classof(const SCEVUDivExpr *S) { return true; }
|
static inline bool classof(const SCEVSDivExpr *S) { return true; }
|
||||||
static inline bool classof(const SCEV *S) {
|
static inline bool classof(const SCEV *S) {
|
||||||
return S->getSCEVType() == scUDivExpr;
|
return S->getSCEVType() == scSDivExpr;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -496,8 +496,8 @@ namespace llvm {
|
|||||||
return ((SC*)this)->visitAddExpr((SCEVAddExpr*)S);
|
return ((SC*)this)->visitAddExpr((SCEVAddExpr*)S);
|
||||||
case scMulExpr:
|
case scMulExpr:
|
||||||
return ((SC*)this)->visitMulExpr((SCEVMulExpr*)S);
|
return ((SC*)this)->visitMulExpr((SCEVMulExpr*)S);
|
||||||
case scUDivExpr:
|
case scSDivExpr:
|
||||||
return ((SC*)this)->visitUDivExpr((SCEVUDivExpr*)S);
|
return ((SC*)this)->visitSDivExpr((SCEVSDivExpr*)S);
|
||||||
case scAddRecExpr:
|
case scAddRecExpr:
|
||||||
return ((SC*)this)->visitAddRecExpr((SCEVAddRecExpr*)S);
|
return ((SC*)this)->visitAddRecExpr((SCEVAddRecExpr*)S);
|
||||||
case scUnknown:
|
case scUnknown:
|
||||||
|
@ -294,22 +294,22 @@ replaceSymbolicValuesWithConcrete(const SCEVHandle &Sym,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// SCEVUDivs - Only allow the creation of one SCEVUDivExpr for any particular
|
// SCEVSDivs - Only allow the creation of one SCEVSDivExpr for any particular
|
||||||
// input. Don't use a SCEVHandle here, or else the object will never be
|
// input. Don't use a SCEVHandle here, or else the object will never be
|
||||||
// deleted!
|
// deleted!
|
||||||
static std::map<std::pair<SCEV*, SCEV*>, SCEVUDivExpr*> SCEVUDivs;
|
static std::map<std::pair<SCEV*, SCEV*>, SCEVSDivExpr*> SCEVSDivs;
|
||||||
|
|
||||||
SCEVUDivExpr::~SCEVUDivExpr() {
|
SCEVSDivExpr::~SCEVSDivExpr() {
|
||||||
SCEVUDivs.erase(std::make_pair(LHS, RHS));
|
SCEVSDivs.erase(std::make_pair(LHS, RHS));
|
||||||
}
|
}
|
||||||
|
|
||||||
void SCEVUDivExpr::print(std::ostream &OS) const {
|
void SCEVSDivExpr::print(std::ostream &OS) const {
|
||||||
OS << "(" << *LHS << " /u " << *RHS << ")";
|
OS << "(" << *LHS << " /s " << *RHS << ")";
|
||||||
}
|
}
|
||||||
|
|
||||||
const Type *SCEVUDivExpr::getType() const {
|
const Type *SCEVSDivExpr::getType() const {
|
||||||
const Type *Ty = LHS->getType();
|
const Type *Ty = LHS->getType();
|
||||||
if (Ty->isSigned()) Ty = Ty->getUnsignedVersion();
|
if (Ty->isUnsigned()) Ty = Ty->getSignedVersion();
|
||||||
return Ty;
|
return Ty;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -540,7 +540,7 @@ SCEVHandle SCEVAddRecExpr::evaluateAtIteration(SCEVHandle It) const {
|
|||||||
for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
|
for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
|
||||||
SCEVHandle BC = PartialFact(It, i);
|
SCEVHandle BC = PartialFact(It, i);
|
||||||
Divisor *= i;
|
Divisor *= i;
|
||||||
SCEVHandle Val = SCEVUDivExpr::get(SCEVMulExpr::get(BC, getOperand(i)),
|
SCEVHandle Val = SCEVSDivExpr::get(SCEVMulExpr::get(BC, getOperand(i)),
|
||||||
SCEVUnknown::getIntegerSCEV(Divisor,Ty));
|
SCEVUnknown::getIntegerSCEV(Divisor,Ty));
|
||||||
Result = SCEVAddExpr::get(Result, Val);
|
Result = SCEVAddExpr::get(Result, Val);
|
||||||
}
|
}
|
||||||
@ -982,20 +982,20 @@ SCEVHandle SCEVMulExpr::get(std::vector<SCEVHandle> &Ops) {
|
|||||||
return Result;
|
return Result;
|
||||||
}
|
}
|
||||||
|
|
||||||
SCEVHandle SCEVUDivExpr::get(const SCEVHandle &LHS, const SCEVHandle &RHS) {
|
SCEVHandle SCEVSDivExpr::get(const SCEVHandle &LHS, const SCEVHandle &RHS) {
|
||||||
if (SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
|
if (SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
|
||||||
if (RHSC->getValue()->equalsInt(1))
|
if (RHSC->getValue()->equalsInt(1))
|
||||||
return LHS; // X /u 1 --> x
|
return LHS; // X /s 1 --> x
|
||||||
if (RHSC->getValue()->isAllOnesValue())
|
if (RHSC->getValue()->isAllOnesValue())
|
||||||
return SCEV::getNegativeSCEV(LHS); // X /u -1 --> -x
|
return SCEV::getNegativeSCEV(LHS); // X /s -1 --> -x
|
||||||
|
|
||||||
if (SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) {
|
if (SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) {
|
||||||
Constant *LHSCV = LHSC->getValue();
|
Constant *LHSCV = LHSC->getValue();
|
||||||
Constant *RHSCV = RHSC->getValue();
|
Constant *RHSCV = RHSC->getValue();
|
||||||
if (LHSCV->getType()->isSigned())
|
if (LHSCV->getType()->isUnsigned())
|
||||||
LHSCV = ConstantExpr::getCast(LHSCV,
|
LHSCV = ConstantExpr::getCast(LHSCV,
|
||||||
LHSCV->getType()->getUnsignedVersion());
|
LHSCV->getType()->getSignedVersion());
|
||||||
if (RHSCV->getType()->isSigned())
|
if (RHSCV->getType()->isUnsigned())
|
||||||
RHSCV = ConstantExpr::getCast(RHSCV, LHSCV->getType());
|
RHSCV = ConstantExpr::getCast(RHSCV, LHSCV->getType());
|
||||||
return SCEVUnknown::get(ConstantExpr::getDiv(LHSCV, RHSCV));
|
return SCEVUnknown::get(ConstantExpr::getDiv(LHSCV, RHSCV));
|
||||||
}
|
}
|
||||||
@ -1003,8 +1003,8 @@ SCEVHandle SCEVUDivExpr::get(const SCEVHandle &LHS, const SCEVHandle &RHS) {
|
|||||||
|
|
||||||
// FIXME: implement folding of (X*4)/4 when we know X*4 doesn't overflow.
|
// FIXME: implement folding of (X*4)/4 when we know X*4 doesn't overflow.
|
||||||
|
|
||||||
SCEVUDivExpr *&Result = SCEVUDivs[std::make_pair(LHS, RHS)];
|
SCEVSDivExpr *&Result = SCEVSDivs[std::make_pair(LHS, RHS)];
|
||||||
if (Result == 0) Result = new SCEVUDivExpr(LHS, RHS);
|
if (Result == 0) Result = new SCEVSDivExpr(LHS, RHS);
|
||||||
return Result;
|
return Result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1356,8 +1356,8 @@ SCEVHandle ScalarEvolutionsImpl::createSCEV(Value *V) {
|
|||||||
return SCEVMulExpr::get(getSCEV(I->getOperand(0)),
|
return SCEVMulExpr::get(getSCEV(I->getOperand(0)),
|
||||||
getSCEV(I->getOperand(1)));
|
getSCEV(I->getOperand(1)));
|
||||||
case Instruction::Div:
|
case Instruction::Div:
|
||||||
if (V->getType()->isInteger() && V->getType()->isUnsigned())
|
if (V->getType()->isInteger() && V->getType()->isSigned())
|
||||||
return SCEVUDivExpr::get(getSCEV(I->getOperand(0)),
|
return SCEVSDivExpr::get(getSCEV(I->getOperand(0)),
|
||||||
getSCEV(I->getOperand(1)));
|
getSCEV(I->getOperand(1)));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -1376,10 +1376,10 @@ SCEVHandle ScalarEvolutionsImpl::createSCEV(Value *V) {
|
|||||||
|
|
||||||
case Instruction::Shr:
|
case Instruction::Shr:
|
||||||
if (ConstantUInt *SA = dyn_cast<ConstantUInt>(I->getOperand(1)))
|
if (ConstantUInt *SA = dyn_cast<ConstantUInt>(I->getOperand(1)))
|
||||||
if (V->getType()->isUnsigned()) {
|
if (V->getType()->isSigned()) {
|
||||||
Constant *X = ConstantInt::get(V->getType(), 1);
|
Constant *X = ConstantInt::get(V->getType(), 1);
|
||||||
X = ConstantExpr::getShl(X, SA);
|
X = ConstantExpr::getShl(X, SA);
|
||||||
return SCEVUDivExpr::get(getSCEV(I->getOperand(0)), getSCEV(X));
|
return SCEVSDivExpr::get(getSCEV(I->getOperand(0)), getSCEV(X));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -1982,14 +1982,14 @@ SCEVHandle ScalarEvolutionsImpl::getSCEVAtScope(SCEV *V, const Loop *L) {
|
|||||||
return Comm;
|
return Comm;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (SCEVUDivExpr *UDiv = dyn_cast<SCEVUDivExpr>(V)) {
|
if (SCEVSDivExpr *Div = dyn_cast<SCEVSDivExpr>(V)) {
|
||||||
SCEVHandle LHS = getSCEVAtScope(UDiv->getLHS(), L);
|
SCEVHandle LHS = getSCEVAtScope(Div->getLHS(), L);
|
||||||
if (LHS == UnknownValue) return LHS;
|
if (LHS == UnknownValue) return LHS;
|
||||||
SCEVHandle RHS = getSCEVAtScope(UDiv->getRHS(), L);
|
SCEVHandle RHS = getSCEVAtScope(Div->getRHS(), L);
|
||||||
if (RHS == UnknownValue) return RHS;
|
if (RHS == UnknownValue) return RHS;
|
||||||
if (LHS == UDiv->getLHS() && RHS == UDiv->getRHS())
|
if (LHS == Div->getLHS() && RHS == Div->getRHS())
|
||||||
return UDiv; // must be loop invariant
|
return Div; // must be loop invariant
|
||||||
return SCEVUDivExpr::get(LHS, RHS);
|
return SCEVSDivExpr::get(LHS, RHS);
|
||||||
}
|
}
|
||||||
|
|
||||||
// If this is a loop recurrence for a loop that does not contain L, then we
|
// If this is a loop recurrence for a loop that does not contain L, then we
|
||||||
|
Loading…
x
Reference in New Issue
Block a user