mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
teach instsimplify to transform (X / Y) * Y to X
when the div is an exact udiv. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124994 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -735,9 +735,11 @@ static Value *SimplifyMulInst(Value *Op0, Value *Op1, const TargetData *TD,
|
||||
// (X / Y) * Y -> X if the division is exact.
|
||||
Value *X = 0, *Y = 0;
|
||||
if ((match(Op0, m_SDiv(m_Value(X), m_Value(Y))) && Y == Op1) || // (X / Y) * Y
|
||||
(match(Op1, m_SDiv(m_Value(X), m_Value(Y))) && Y == Op0)) { // Y * (X / Y)
|
||||
BinaryOperator *SDiv = cast<BinaryOperator>(Y == Op1 ? Op0 : Op1);
|
||||
if (SDiv->isExact())
|
||||
(match(Op0, m_UDiv(m_Value(X), m_Value(Y))) && Y == Op1) ||
|
||||
(match(Op1, m_SDiv(m_Value(X), m_Value(Y))) && Y == Op0) || // Y * (X / Y)
|
||||
(match(Op1, m_UDiv(m_Value(X), m_Value(Y))) && Y == Op0)) {
|
||||
BinaryOperator *Div = cast<BinaryOperator>(Y == Op1 ? Op0 : Op1);
|
||||
if (Div->isExact())
|
||||
return X;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user