mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-12 01:25:10 +00:00
Fold icmp ugt (udiv X, Y), X to false. Spotted by my super-optimizer
in 186.crafty. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143209 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1574,6 +1574,9 @@ static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
|
||||
// 'srem x, CI2' produces (-|CI2|, |CI2|).
|
||||
Upper = CI2->getValue().abs();
|
||||
Lower = (-Upper) + 1;
|
||||
} else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
|
||||
// 'udiv CI2, x' produces [0, CI2].
|
||||
Upper = CI2->getValue();
|
||||
} else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
|
||||
// 'udiv x, CI2' produces [0, UINT_MAX / CI2].
|
||||
APInt NegOne = APInt::getAllOnesValue(Width);
|
||||
@@ -1880,6 +1883,15 @@ static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
|
||||
}
|
||||
}
|
||||
|
||||
// x udiv y <=u x.
|
||||
if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) {
|
||||
// icmp pred (X /u Y), X
|
||||
if (Pred == ICmpInst::ICMP_UGT)
|
||||
return getFalse(ITy);
|
||||
if (Pred == ICmpInst::ICMP_ULE)
|
||||
return getTrue(ITy);
|
||||
}
|
||||
|
||||
if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
|
||||
LBO->getOperand(1) == RBO->getOperand(1)) {
|
||||
switch (LBO->getOpcode()) {
|
||||
|
Reference in New Issue
Block a user