mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-09 13:41:47 +00:00
[InstCombine] add tests for missing vector icmp folds
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@278634 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9e679db4f1
commit
411c4dba0b
@ -963,6 +963,18 @@ define i1 @test67(i32 %x) {
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; FIXME: Vectors should fold the same way.
|
||||
define <2 x i1> @test67vec(<2 x i32> %x) {
|
||||
; CHECK-LABEL: @test67vec(
|
||||
; CHECK-NEXT: [[AND:%.*]] = and <2 x i32> %x, <i32 127, i32 127>
|
||||
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt <2 x i32> [[AND]], <i32 31, i32 31>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP]]
|
||||
;
|
||||
%and = and <2 x i32> %x, <i32 127, i32 127>
|
||||
%cmp = icmp sgt <2 x i32> %and, <i32 31, i32 31>
|
||||
ret <2 x i1> %cmp
|
||||
}
|
||||
|
||||
define i1 @test68(i32 %x) {
|
||||
; CHECK-LABEL: @test68(
|
||||
; CHECK-NEXT: [[AND:%.*]] = and i32 %x, 127
|
||||
@ -1541,6 +1553,18 @@ define i1 @icmp_and_X_-16_eq-16(i32 %X) {
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; FIXME: Vectors should fold the same way.
|
||||
define <2 x i1> @icmp_and_X_-16_eq-16_vec(<2 x i32> %X) {
|
||||
; CHECK-LABEL: @icmp_and_X_-16_eq-16_vec(
|
||||
; CHECK-NEXT: [[AND:%.*]] = and <2 x i32> %X, <i32 -16, i32 -16>
|
||||
; CHECK-NEXT: [[CMP:%.*]] = icmp eq <2 x i32> [[AND]], <i32 -16, i32 -16>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP]]
|
||||
;
|
||||
%and = and <2 x i32> %X, <i32 -16, i32 -16>
|
||||
%cmp = icmp eq <2 x i32> %and, <i32 -16, i32 -16>
|
||||
ret <2 x i1> %cmp
|
||||
}
|
||||
|
||||
define i1 @icmp_and_X_-16_ne-16(i32 %X) {
|
||||
; CHECK-LABEL: @icmp_and_X_-16_ne-16(
|
||||
; CHECK-NEXT: [[CMP:%.*]] = icmp ult i32 %X, -16
|
||||
@ -1551,6 +1575,18 @@ define i1 @icmp_and_X_-16_ne-16(i32 %X) {
|
||||
ret i1 %cmp
|
||||
}
|
||||
|
||||
; FIXME: Vectors should fold the same way.
|
||||
define <2 x i1> @icmp_and_X_-16_ne-16_vec(<2 x i32> %X) {
|
||||
; CHECK-LABEL: @icmp_and_X_-16_ne-16_vec(
|
||||
; CHECK-NEXT: [[AND:%.*]] = and <2 x i32> %X, <i32 -16, i32 -16>
|
||||
; CHECK-NEXT: [[CMP:%.*]] = icmp ne <2 x i32> [[AND]], <i32 -16, i32 -16>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP]]
|
||||
;
|
||||
%and = and <2 x i32> %X, <i32 -16, i32 -16>
|
||||
%cmp = icmp ne <2 x i32> %and, <i32 -16, i32 -16>
|
||||
ret <2 x i1> %cmp
|
||||
}
|
||||
|
||||
define i1 @icmp_sub_-1_X_ult_4(i32 %X) {
|
||||
; CHECK-LABEL: @icmp_sub_-1_X_ult_4(
|
||||
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i32 %X, -5
|
||||
|
Loading…
Reference in New Issue
Block a user