mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-29 22:52:18 +00:00
add a vector variant of each test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277598 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
41fc0ec959
commit
1345035f71
@ -1,6 +1,8 @@
|
||||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
||||
; RUN: opt -instcombine -S < %s | FileCheck %s
|
||||
|
||||
; FIXME: Vectors should get the same folds as scalars for all tests.
|
||||
|
||||
define i1 @test1(i32 %n, i32 %d) {
|
||||
; CHECK-LABEL: @test1(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ugt i32 %d, %n
|
||||
@ -11,6 +13,17 @@ define i1 @test1(i32 %n, i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test1vec(<2 x i32> %n, <2 x i32> %d) {
|
||||
; CHECK-LABEL: @test1vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> %n, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp eq <2 x i32> [[DIV]], zeroinitializer
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> %n, %d
|
||||
%cmp1 = icmp eq <2 x i32> %div, zeroinitializer
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test2(i32 %d) {
|
||||
; CHECK-LABEL: @test2(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ugt i32 %d, 64
|
||||
@ -21,6 +34,17 @@ define i1 @test2(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test2vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test2vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 64, i32 63>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp eq <2 x i32> [[DIV]], zeroinitializer
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 64, i32 63>, %d
|
||||
%cmp1 = icmp eq <2 x i32> %div, zeroinitializer
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test3(i32 %n, i32 %d) {
|
||||
; CHECK-LABEL: @test3(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ule i32 %d, %n
|
||||
@ -31,6 +55,17 @@ define i1 @test3(i32 %n, i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test3vec(<2 x i32> %n, <2 x i32> %d) {
|
||||
; CHECK-LABEL: @test3vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> %n, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ne <2 x i32> [[DIV]], zeroinitializer
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> %n, %d
|
||||
%cmp1 = icmp ne <2 x i32> %div, zeroinitializer
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test4(i32 %d) {
|
||||
; CHECK-LABEL: @test4(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ult i32 %d, 65
|
||||
@ -41,6 +76,17 @@ define i1 @test4(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test4vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test4vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 64, i32 65>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ne <2 x i32> [[DIV]], zeroinitializer
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 64, i32 65>, %d
|
||||
%cmp1 = icmp ne <2 x i32> %div, zeroinitializer
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test5(i32 %d) {
|
||||
; CHECK-LABEL: @test5(
|
||||
; CHECK-NEXT: ret i1 true
|
||||
@ -50,6 +96,17 @@ define i1 @test5(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test5vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test5vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 -1, i32 -1>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ne <2 x i32> [[DIV]], zeroinitializer
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 -1, i32 -1>, %d
|
||||
%cmp1 = icmp ne <2 x i32> %div, zeroinitializer
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test6(i32 %d) {
|
||||
; CHECK-LABEL: @test6(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ult i32 %d, 6
|
||||
@ -60,6 +117,17 @@ define i1 @test6(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test6vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test6vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 5, i32 5>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ne <2 x i32> [[DIV]], zeroinitializer
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 5, i32 5>, %d
|
||||
%cmp1 = icmp ugt <2 x i32> %div, zeroinitializer
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
; (icmp ugt (udiv C1, X), C1) -> false.
|
||||
define i1 @test7(i32 %d) {
|
||||
; CHECK-LABEL: @test7(
|
||||
@ -70,6 +138,15 @@ define i1 @test7(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test7vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test7vec(
|
||||
; CHECK-NEXT: ret <2 x i1> zeroinitializer
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 8, i32 8>, %d
|
||||
%cmp1 = icmp ugt <2 x i32> %div, <i32 8, i32 8>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test8(i32 %d) {
|
||||
; CHECK-LABEL: @test8(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ult i32 %d, 2
|
||||
@ -80,6 +157,17 @@ define i1 @test8(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test8vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test8vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ugt <2 x i32> [[DIV]], <i32 3, i32 3>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
%cmp1 = icmp ugt <2 x i32> %div, <i32 3, i32 3>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test9(i32 %d) {
|
||||
; CHECK-LABEL: @test9(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ult i32 %d, 2
|
||||
@ -90,6 +178,17 @@ define i1 @test9(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test9vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test9vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ugt <2 x i32> [[DIV]], <i32 2, i32 2>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
%cmp1 = icmp ugt <2 x i32> %div, <i32 2, i32 2>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test10(i32 %d) {
|
||||
; CHECK-LABEL: @test10(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ult i32 %d, 3
|
||||
@ -100,6 +199,17 @@ define i1 @test10(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test10vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test10vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ugt <2 x i32> [[DIV]], <i32 1, i32 1>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
%cmp1 = icmp ugt <2 x i32> %div, <i32 1, i32 1>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test11(i32 %d) {
|
||||
; CHECK-LABEL: @test11(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ugt i32 %d, 4
|
||||
@ -110,6 +220,17 @@ define i1 @test11(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test11vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test11vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ult <2 x i32> [[DIV]], <i32 1, i32 1>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
%cmp1 = icmp ult <2 x i32> %div, <i32 1, i32 1>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test12(i32 %d) {
|
||||
; CHECK-LABEL: @test12(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ugt i32 %d, 2
|
||||
@ -120,6 +241,17 @@ define i1 @test12(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test12vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test12vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ult <2 x i32> [[DIV]], <i32 2, i32 2>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
%cmp1 = icmp ult <2 x i32> %div, <i32 2, i32 2>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test13(i32 %d) {
|
||||
; CHECK-LABEL: @test13(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ugt i32 %d, 1
|
||||
@ -130,6 +262,17 @@ define i1 @test13(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test13vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test13vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ult <2 x i32> [[DIV]], <i32 3, i32 3>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
%cmp1 = icmp ult <2 x i32> %div, <i32 3, i32 3>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
define i1 @test14(i32 %d) {
|
||||
; CHECK-LABEL: @test14(
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ugt i32 %d, 1
|
||||
@ -140,6 +283,17 @@ define i1 @test14(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test14vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test14vec(
|
||||
; CHECK-NEXT: [[DIV:%.*]] = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
; CHECK-NEXT: [[CMP1:%.*]] = icmp ult <2 x i32> [[DIV]], <i32 4, i32 4>
|
||||
; CHECK-NEXT: ret <2 x i1> [[CMP1]]
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
%cmp1 = icmp ult <2 x i32> %div, <i32 4, i32 4>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
; icmp ugt X, UINT_MAX -> false.
|
||||
define i1 @test15(i32 %d) {
|
||||
; CHECK-LABEL: @test15(
|
||||
@ -150,6 +304,15 @@ define i1 @test15(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test15vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test15vec(
|
||||
; CHECK-NEXT: ret <2 x i1> zeroinitializer
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
%cmp1 = icmp ugt <2 x i32> %div, <i32 -1, i32 -1>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
; icmp ult X, UINT_MAX -> true.
|
||||
define i1 @test16(i32 %d) {
|
||||
; CHECK-LABEL: @test16(
|
||||
@ -160,3 +323,12 @@ define i1 @test16(i32 %d) {
|
||||
ret i1 %cmp1
|
||||
}
|
||||
|
||||
define <2 x i1> @test16vec(<2 x i32> %d) {
|
||||
; CHECK-LABEL: @test16vec(
|
||||
; CHECK-NEXT: ret <2 x i1> <i1 true, i1 true>
|
||||
;
|
||||
%div = udiv <2 x i32> <i32 4, i32 4>, %d
|
||||
%cmp1 = icmp ult <2 x i32> %div, <i32 -1, i32 -1>
|
||||
ret <2 x i1> %cmp1
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user