diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2016-08-24 22:22:06 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2016-08-24 22:22:06 +0000 |
| commit | d398d4a39ecef00c718e3a2cada0582fc35f46db (patch) | |
| tree | 838a2b91f16cd8c3f9e749744cc76afccfc12dc9 /llvm/test/Transforms | |
| parent | f1b20c52251af54413ca5b990db2b29d9418e256 (diff) | |
| download | bcm5719-llvm-d398d4a39ecef00c718e3a2cada0582fc35f46db.tar.gz bcm5719-llvm-d398d4a39ecef00c718e3a2cada0582fc35f46db.zip | |
[InstCombine] use m_APInt to allow icmp eq/ne (shr X, C2), C folds for splat constant vectors
llvm-svn: 279677
Diffstat (limited to 'llvm/test/Transforms')
| -rw-r--r-- | llvm/test/Transforms/InstCombine/apint-shift.ll | 13 | ||||
| -rw-r--r-- | llvm/test/Transforms/InstCombine/cast.ll | 4 | ||||
| -rw-r--r-- | llvm/test/Transforms/InstCombine/icmp.ll | 20 | ||||
| -rw-r--r-- | llvm/test/Transforms/InstCombine/shift.ll | 17 |
4 files changed, 32 insertions, 22 deletions
diff --git a/llvm/test/Transforms/InstCombine/apint-shift.ll b/llvm/test/Transforms/InstCombine/apint-shift.ll index 01d83f35af3..3e1699ab158 100644 --- a/llvm/test/Transforms/InstCombine/apint-shift.ll +++ b/llvm/test/Transforms/InstCombine/apint-shift.ll @@ -230,11 +230,10 @@ define i1 @test17(i106 %A) { ret i1 %C } -; FIXME: Vectors should fold too. define <2 x i1> @test17vec(<2 x i106> %A) { ; CHECK-LABEL: @test17vec( -; CHECK-NEXT: [[B:%.*]] = lshr <2 x i106> %A, <i106 3, i106 3> -; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i106> [[B]], <i106 1234, i106 1234> +; CHECK-NEXT: [[B_MASK:%.*]] = and <2 x i106> %A, <i106 -8, i106 -8> +; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i106> [[B_MASK]], <i106 9872, i106 9872> ; CHECK-NEXT: ret <2 x i1> [[C]] ; %B = lshr <2 x i106> %A, <i106 3, i106 3> @@ -261,11 +260,9 @@ define i1 @test19(i37 %A) { ret i1 %C } -; FIXME: Vectors should fold too. define <2 x i1> @test19vec(<2 x i37> %A) { ; CHECK-LABEL: @test19vec( -; CHECK-NEXT: [[B:%.*]] = ashr <2 x i37> %A, <i37 2, i37 2> -; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i37> [[B]], zeroinitializer +; CHECK-NEXT: [[C:%.*]] = icmp ult <2 x i37> %A, <i37 4, i37 4> ; CHECK-NEXT: ret <2 x i1> [[C]] ; %B = ashr <2 x i37> %A, <i37 2, i37 2> @@ -286,8 +283,8 @@ define i1 @test19a(i39 %A) { ; FIXME: Vectors should fold too. define <2 x i1> @test19a_vec(<2 x i39> %A) { ; CHECK-LABEL: @test19a_vec( -; CHECK-NEXT: [[B:%.*]] = ashr <2 x i39> %A, <i39 2, i39 2> -; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i39> [[B]], <i39 -1, i39 -1> +; CHECK-NEXT: [[B_MASK:%.*]] = and <2 x i39> %A, <i39 -4, i39 -4> +; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i39> [[B_MASK]], <i39 -4, i39 -4> ; CHECK-NEXT: ret <2 x i1> [[C]] ; %B = ashr <2 x i39> %A, <i39 2, i39 2> diff --git a/llvm/test/Transforms/InstCombine/cast.ll b/llvm/test/Transforms/InstCombine/cast.ll index 9837ca9eefb..b4f14e115b6 100644 --- a/llvm/test/Transforms/InstCombine/cast.ll +++ b/llvm/test/Transforms/InstCombine/cast.ll @@ -414,11 +414,9 @@ define i1 @test36(i32 %a) { ret i1 %d } -; FIXME: The trunc is removed, but the icmp+lshr fold is missing. define <2 x i1> @test36vec(<2 x i32> %a) { ; CHECK-LABEL: @test36vec( -; CHECK-NEXT: [[B:%.*]] = lshr <2 x i32> %a, <i32 31, i32 31> -; CHECK-NEXT: [[D:%.*]] = icmp eq <2 x i32> [[B]], zeroinitializer +; CHECK-NEXT: [[D:%.*]] = icmp sgt <2 x i32> %a, <i32 -1, i32 -1> ; CHECK-NEXT: ret <2 x i1> [[D]] ; %b = lshr <2 x i32> %a, <i32 31, i32 31> diff --git a/llvm/test/Transforms/InstCombine/icmp.ll b/llvm/test/Transforms/InstCombine/icmp.ll index 780529c9de6..a8d55b13c26 100644 --- a/llvm/test/Transforms/InstCombine/icmp.ll +++ b/llvm/test/Transforms/InstCombine/icmp.ll @@ -518,6 +518,26 @@ define <2 x i1> @test40vec(<2 x i32> %X, <2 x i32> %Y) { ret <2 x i1> %B } +define i1 @shr_exact(i132 %x) { +; CHECK-LABEL: @shr_exact( +; CHECK-NEXT: [[CMP:%.*]] = icmp eq i132 %x, 32 +; CHECK-NEXT: ret i1 [[CMP]] +; + %sh = ashr exact i132 %x, 4 + %cmp = icmp eq i132 %sh, 2 + ret i1 %cmp +} + +define <2 x i1> @shr_exact_vec(<2 x i132> %x) { +; CHECK-LABEL: @shr_exact_vec( +; CHECK-NEXT: [[CMP:%.*]] = icmp ne <2 x i132> %x, <i132 32, i132 32> +; CHECK-NEXT: ret <2 x i1> [[CMP]] +; + %sh = lshr exact <2 x i132> %x, <i132 4, i132 4> + %cmp = icmp ne <2 x i132> %sh, <i132 2, i132 2> + ret <2 x i1> %cmp +} + ; PR9343 #3 define i1 @test41(i32 %X, i32 %Y) { ; CHECK-LABEL: @test41( diff --git a/llvm/test/Transforms/InstCombine/shift.ll b/llvm/test/Transforms/InstCombine/shift.ll index 537e5cd951d..a91038f9eff 100644 --- a/llvm/test/Transforms/InstCombine/shift.ll +++ b/llvm/test/Transforms/InstCombine/shift.ll @@ -320,11 +320,10 @@ define i1 @test17(i32 %A) { ret i1 %C } -; FIXME: Vectors should fold the same way. define <2 x i1> @test17vec(<2 x i32> %A) { ; CHECK-LABEL: @test17vec( -; CHECK-NEXT: [[B:%.*]] = lshr <2 x i32> %A, <i32 3, i32 3> -; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i32> [[B]], <i32 1234, i32 1234> +; CHECK-NEXT: [[B_MASK:%.*]] = and <2 x i32> %A, <i32 -8, i32 -8> +; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i32> [[B_MASK]], <i32 9872, i32 9872> ; CHECK-NEXT: ret <2 x i1> [[C]] ; %B = lshr <2 x i32> %A, <i32 3, i32 3> @@ -353,11 +352,9 @@ define i1 @test19(i32 %A) { ret i1 %C } -; FIXME: Vectors should fold the same way. define <2 x i1> @test19vec(<2 x i32> %A) { ; CHECK-LABEL: @test19vec( -; CHECK-NEXT: [[B:%.*]] = ashr <2 x i32> %A, <i32 2, i32 2> -; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i32> [[B]], zeroinitializer +; CHECK-NEXT: [[C:%.*]] = icmp ult <2 x i32> %A, <i32 4, i32 4> ; CHECK-NEXT: ret <2 x i1> [[C]] ; %B = ashr <2 x i32> %A, <i32 2, i32 2> @@ -379,8 +376,8 @@ define i1 @test19a(i32 %A) { ; FIXME: Vectors should fold the same way. define <2 x i1> @test19a_vec(<2 x i32> %A) { ; CHECK-LABEL: @test19a_vec( -; CHECK-NEXT: [[B:%.*]] = ashr <2 x i32> %A, <i32 2, i32 2> -; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i32> [[B]], <i32 -1, i32 -1> +; CHECK-NEXT: [[B_MASK:%.*]] = and <2 x i32> %A, <i32 -4, i32 -4> +; CHECK-NEXT: [[C:%.*]] = icmp eq <2 x i32> [[B_MASK]], <i32 -4, i32 -4> ; CHECK-NEXT: ret <2 x i1> [[C]] ; %B = ashr <2 x i32> %A, <i32 2, i32 2> @@ -506,11 +503,9 @@ define i1 @test28(i8 %x) { ret i1 %cmp } -; FIXME: Vectors should fold the same way. define <2 x i1> @test28vec(<2 x i8> %x) { ; CHECK-LABEL: @test28vec( -; CHECK-NEXT: [[SHR:%.*]] = lshr <2 x i8> %x, <i8 7, i8 7> -; CHECK-NEXT: [[CMP:%.*]] = icmp ne <2 x i8> [[SHR]], zeroinitializer +; CHECK-NEXT: [[CMP:%.*]] = icmp slt <2 x i8> %x, zeroinitializer ; CHECK-NEXT: ret <2 x i1> [[CMP]] ; %shr = lshr <2 x i8> %x, <i8 7, i8 7> |

