forked from OSchip/llvm-project
[InstCombine] use m_APInt to allow icmp eq (sub C1, X), C2 folds for splat constant vectors
llvm-svn: 277731
This commit is contained in:
parent
d1f4b8f6e8
commit
9d591d15ec
|
@ -2265,11 +2265,11 @@ Instruction *InstCombiner::foldICmpEqualityWithConstant(ICmpInst &ICI) {
|
||||||
break;
|
break;
|
||||||
case Instruction::Sub:
|
case Instruction::Sub:
|
||||||
if (BO->hasOneUse()) {
|
if (BO->hasOneUse()) {
|
||||||
// FIXME: Vectors are excluded by ConstantInt.
|
const APInt *BOC;
|
||||||
if (ConstantInt *BOp0C = dyn_cast<ConstantInt>(BOp0)) {
|
if (match(BOp0, m_APInt(BOC))) {
|
||||||
// Replace ((sub A, B) != C) with (B != A-C) if A & C are constants.
|
// Replace ((sub A, B) != C) with (B != A-C) if A & C are constants.
|
||||||
return new ICmpInst(ICI.getPredicate(), BOp1,
|
Constant *SubC = ConstantExpr::getSub(cast<Constant>(BOp0), RHS);
|
||||||
ConstantExpr::getSub(BOp0C, RHS));
|
return new ICmpInst(ICI.getPredicate(), BOp1, SubC);
|
||||||
} else if (*RHSV == 0) {
|
} else if (*RHSV == 0) {
|
||||||
// Replace ((sub A, B) != 0) with (A != B)
|
// Replace ((sub A, B) != 0) with (A != B)
|
||||||
return new ICmpInst(ICI.getPredicate(), BOp0, BOp1);
|
return new ICmpInst(ICI.getPredicate(), BOp0, BOp1);
|
||||||
|
|
|
@ -660,11 +660,9 @@ define i1 @test55(i32 %a) {
|
||||||
ret i1 %cmp
|
ret i1 %cmp
|
||||||
}
|
}
|
||||||
|
|
||||||
; FIXME: Vectors should fold the same way.
|
|
||||||
define <2 x i1> @test55vec(<2 x i32> %a) {
|
define <2 x i1> @test55vec(<2 x i32> %a) {
|
||||||
; CHECK-LABEL: @test55vec(
|
; CHECK-LABEL: @test55vec(
|
||||||
; CHECK-NEXT: [[SUB:%.*]] = sub <2 x i32> zeroinitializer, %a
|
; CHECK-NEXT: [[CMP:%.*]] = icmp eq <2 x i32> %a, <i32 -123, i32 -123>
|
||||||
; CHECK-NEXT: [[CMP:%.*]] = icmp eq <2 x i32> [[SUB]], <i32 123, i32 123>
|
|
||||||
; CHECK-NEXT: ret <2 x i1> [[CMP]]
|
; CHECK-NEXT: ret <2 x i1> [[CMP]]
|
||||||
;
|
;
|
||||||
%sub = sub <2 x i32> zeroinitializer, %a
|
%sub = sub <2 x i32> zeroinitializer, %a
|
||||||
|
@ -682,11 +680,9 @@ define i1 @test56(i32 %a) {
|
||||||
ret i1 %cmp
|
ret i1 %cmp
|
||||||
}
|
}
|
||||||
|
|
||||||
; FIXME: Vectors should fold the same way.
|
|
||||||
define <2 x i1> @test56vec(<2 x i32> %a) {
|
define <2 x i1> @test56vec(<2 x i32> %a) {
|
||||||
; CHECK-LABEL: @test56vec(
|
; CHECK-LABEL: @test56vec(
|
||||||
; CHECK-NEXT: [[SUB:%.*]] = sub <2 x i32> <i32 10, i32 10>, %a
|
; CHECK-NEXT: [[CMP:%.*]] = icmp eq <2 x i32> %a, <i32 -113, i32 -113>
|
||||||
; CHECK-NEXT: [[CMP:%.*]] = icmp eq <2 x i32> [[SUB]], <i32 123, i32 123>
|
|
||||||
; CHECK-NEXT: ret <2 x i1> [[CMP]]
|
; CHECK-NEXT: ret <2 x i1> [[CMP]]
|
||||||
;
|
;
|
||||||
%sub = sub <2 x i32> <i32 10, i32 10>, %a
|
%sub = sub <2 x i32> <i32 10, i32 10>, %a
|
||||||
|
|
Loading…
Reference in New Issue