InstCombine: Fix miscompile in X % -Y -> X % Y transform

We assumed that negation operations of the form (0 - %Z) resulted in a
negative number.  This isn't true if %Z was originally negative.
Substituting the negative number into the remainder operation may result
in undefined behavior because the dividend might be INT_MIN.

This fixes PR21256.

llvm-svn: 219639
This commit is contained in:
David Majnemer 2014-10-13 22:37:51 +00:00
parent b75d8f300c
commit db0773089f
3 changed files with 9 additions and 14 deletions

View File

@ -1324,15 +1324,15 @@ Instruction *InstCombiner::visitSRem(BinaryOperator &I) {
if (Instruction *Common = commonIRemTransforms(I))
return Common;
if (Value *RHSNeg = dyn_castNegVal(Op1))
if (!isa<Constant>(RHSNeg) ||
(isa<ConstantInt>(RHSNeg) &&
cast<ConstantInt>(RHSNeg)->getValue().isStrictlyPositive())) {
// X % -Y -> X % Y
{
const APInt *Y;
// X % -Y -> X % Y
if (match(Op1, m_APInt(Y)) && Y->isNegative() && !Y->isMinSignedValue()) {
Worklist.AddValue(I.getOperand(1));
I.setOperand(1, RHSNeg);
I.setOperand(1, ConstantInt::get(I.getType(), -*Y));
return &I;
}
}
// If the sign bits of both operands are zero (i.e. we can prove they are
// unsigned inputs), turn this into a urem.

View File

@ -95,12 +95,6 @@ define i1024 @test14(i1024 %A) {
ret i1024 %D
}
define i14 @test15(i14 %A, i14 %B) {
%C = sub i14 0, %A ; <i14> [#uses=1]
%D = srem i14 %B, %C ; <i14> [#uses=1]
ret i14 %D
}
define i51 @test16(i51 %A) {
%X = sdiv i51 %A, 1123 ; <i51> [#uses=1]
%Y = sub i51 0, %X ; <i51> [#uses=1]

View File

@ -142,8 +142,9 @@ define i32 @test15(i32 %A, i32 %B) {
%D = srem i32 %B, %C
ret i32 %D
; CHECK-LABEL: @test15(
; CHECK: %D = srem i32 %B, %A
; CHECK: ret i32 %D
; CHECK: %[[sub:.*]] = sub i32 0, %A
; CHECK-NEXT: %[[rem:.*]] = srem i32 %B, %[[sub]]
; CHECK: ret i32 %[[rem]]
}
define i32 @test16(i32 %A) {