diff options
author | Roman Lebedev <lebedev.ri@gmail.com> | 2018-09-12 14:11:37 +0000 |
---|---|---|
committer | Roman Lebedev <lebedev.ri@gmail.com> | 2018-09-12 14:11:37 +0000 |
commit | 99359f391e98b8c31e1ebe1f6dde29b01150e008 (patch) | |
tree | 1ada46ba98110cc826306b610877d3caed7a0faa /llvm/test | |
parent | be0c5b6d3c415ae2b778c7c641e3f451652718f7 (diff) | |
download | bcm5719-llvm-99359f391e98b8c31e1ebe1f6dde29b01150e008.tar.gz bcm5719-llvm-99359f391e98b8c31e1ebe1f6dde29b01150e008.zip |
[NFC][InstCombine] R38708 - inefficient pattern for high-bits checking.
The simplest pattern for now:
https://rise4fun.com/Alive/LYjY
https://godbolt.org/z/o4RB8D
https://bugs.llvm.org/show_bug.cgi?id=38708
llvm-svn: 342054
Diffstat (limited to 'llvm/test')
2 files changed, 276 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InstCombine/icmp-ugt-of-shl-1-by-bits-and-val-to-icmp-eq-of-lshr-val-by-bits-and-0.ll b/llvm/test/Transforms/InstCombine/icmp-ugt-of-shl-1-by-bits-and-val-to-icmp-eq-of-lshr-val-by-bits-and-0.ll new file mode 100644 index 00000000000..3ac385f269a --- /dev/null +++ b/llvm/test/Transforms/InstCombine/icmp-ugt-of-shl-1-by-bits-and-val-to-icmp-eq-of-lshr-val-by-bits-and-0.ll @@ -0,0 +1,138 @@ +; NOTE: Assertions have been autogenerated by utils/update_test_checks.py +; RUN: opt < %s -instcombine -S | FileCheck %s + +; https://bugs.llvm.org/show_bug.cgi?id=38708 + +; Pattern: +; (1 << bits) u> val +; Should be transformed into: +; (val l>> bits) == 0 + +; ============================================================================ ; +; Basic positive tests +; ============================================================================ ; + +define i1 @p0(i8 %val, i8 %bits) { +; CHECK-LABEL: @p0( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ugt i8 [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + %r = icmp ugt i8 %t0, %val + ret i1 %r +} + +; ============================================================================ ; +; Vector tests +; ============================================================================ ; + +define <2 x i1> @p1_vec(<2 x i8> %val, <2 x i8> %bits) { +; CHECK-LABEL: @p1_vec( +; CHECK-NEXT: [[T0:%.*]] = shl <2 x i8> <i8 1, i8 1>, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ugt <2 x i8> [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret <2 x i1> [[R]] +; + %t0 = shl <2 x i8> <i8 1, i8 1>, %bits + %r = icmp ugt <2 x i8> %t0, %val + ret <2 x i1> %r +} + +define <3 x i1> @p2_vec_undef(<3 x i8> %val, <3 x i8> %bits) { +; CHECK-LABEL: @p2_vec_undef( +; CHECK-NEXT: [[T0:%.*]] = shl <3 x i8> <i8 1, i8 undef, i8 1>, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ugt <3 x i8> [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret <3 x i1> [[R]] +; + %t0 = shl <3 x i8> <i8 1, i8 undef, i8 1>, %bits + %r = icmp ugt <3 x i8> %t0, %val + ret <3 x i1> %r +} + +; ============================================================================ ; +; Commutativity tests. +; ============================================================================ ; + +declare i8 @gen8() + +define i1 @c0(i8 %bits) { +; CHECK-LABEL: @c0( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: [[VAL:%.*]] = call i8 @gen8() +; CHECK-NEXT: [[R:%.*]] = icmp ult i8 [[VAL]], [[T0]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + %val = call i8 @gen8() + %r = icmp ult i8 %val, %t0 ; swapped order and predicate + ret i1 %r +} + +; ============================================================================ ; +; One-use tests. +; ============================================================================ ; + +declare void @use8(i8) + +define i1 @oneuse0(i8 %val, i8 %bits) { +; CHECK-LABEL: @oneuse0( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: call void @use8(i8 [[T0]]) +; CHECK-NEXT: [[R:%.*]] = icmp ugt i8 [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + call void @use8(i8 %t0) + %r = icmp ugt i8 %t0, %val + ret i1 %r +} + +; ============================================================================ ; +; Negative tests +; ============================================================================ ; + +define i1 @n0(i8 %val, i8 %bits) { +; CHECK-LABEL: @n0( +; CHECK-NEXT: [[T0:%.*]] = shl i8 2, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ugt i8 [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 2, %bits ; constant is not 1 + %r = icmp ugt i8 %t0, %val + ret i1 %r +} + +define <2 x i1> @n1_vec_nonsplat(<2 x i8> %val, <2 x i8> %bits) { +; CHECK-LABEL: @n1_vec_nonsplat( +; CHECK-NEXT: [[T0:%.*]] = shl <2 x i8> <i8 1, i8 2>, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ugt <2 x i8> [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret <2 x i1> [[R]] +; + %t0 = shl <2 x i8> <i8 1, i8 2>, %bits ; again, wrong constant + %r = icmp ugt <2 x i8> %t0, %val + ret <2 x i1> %r +} + +define i1 @n2(i8 %val, i8 %bits) { +; CHECK-LABEL: @n2( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp uge i8 [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + %r = icmp uge i8 %t0, %val ; wrong predicate + ret i1 %r +} + +define i1 @n3(i8 %bits) { +; CHECK-LABEL: @n3( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: [[VAL:%.*]] = call i8 @gen8() +; CHECK-NEXT: [[R:%.*]] = icmp ule i8 [[VAL]], [[T0]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + %val = call i8 @gen8() + %r = icmp ule i8 %val, %t0 ; swapped order and [wrong] predicate + ret i1 %r +} diff --git a/llvm/test/Transforms/InstCombine/icmp-ule-of-shl-1-by-bits-and-val-to-icmp-ne-of-lshr-val-by-bits-and-0.ll b/llvm/test/Transforms/InstCombine/icmp-ule-of-shl-1-by-bits-and-val-to-icmp-ne-of-lshr-val-by-bits-and-0.ll new file mode 100644 index 00000000000..0f2065e01ea --- /dev/null +++ b/llvm/test/Transforms/InstCombine/icmp-ule-of-shl-1-by-bits-and-val-to-icmp-ne-of-lshr-val-by-bits-and-0.ll @@ -0,0 +1,138 @@ +; NOTE: Assertions have been autogenerated by utils/update_test_checks.py +; RUN: opt < %s -instcombine -S | FileCheck %s + +; https://bugs.llvm.org/show_bug.cgi?id=38708 + +; Pattern: +; (1 << bits) u<= val +; Should be transformed into: +; (val l>> bits) != 0 + +; ============================================================================ ; +; Basic positive tests +; ============================================================================ ; + +define i1 @p0(i8 %val, i8 %bits) { +; CHECK-LABEL: @p0( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ule i8 [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + %r = icmp ule i8 %t0, %val + ret i1 %r +} + +; ============================================================================ ; +; Vector tests +; ============================================================================ ; + +define <2 x i1> @p1_vec(<2 x i8> %val, <2 x i8> %bits) { +; CHECK-LABEL: @p1_vec( +; CHECK-NEXT: [[T0:%.*]] = shl <2 x i8> <i8 1, i8 1>, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ule <2 x i8> [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret <2 x i1> [[R]] +; + %t0 = shl <2 x i8> <i8 1, i8 1>, %bits + %r = icmp ule <2 x i8> %t0, %val + ret <2 x i1> %r +} + +define <3 x i1> @p2_vec_undef(<3 x i8> %val, <3 x i8> %bits) { +; CHECK-LABEL: @p2_vec_undef( +; CHECK-NEXT: [[T0:%.*]] = shl <3 x i8> <i8 1, i8 undef, i8 1>, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ule <3 x i8> [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret <3 x i1> [[R]] +; + %t0 = shl <3 x i8> <i8 1, i8 undef, i8 1>, %bits + %r = icmp ule <3 x i8> %t0, %val + ret <3 x i1> %r +} + +; ============================================================================ ; +; Commutativity tests. +; ============================================================================ ; + +declare i8 @gen8() + +define i1 @c0(i8 %bits) { +; CHECK-LABEL: @c0( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: [[VAL:%.*]] = call i8 @gen8() +; CHECK-NEXT: [[R:%.*]] = icmp uge i8 [[VAL]], [[T0]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + %val = call i8 @gen8() + %r = icmp uge i8 %val, %t0 ; swapped order and predicate + ret i1 %r +} + +; ============================================================================ ; +; One-use tests. +; ============================================================================ ; + +declare void @use8(i8) + +define i1 @oneuse0(i8 %val, i8 %bits) { +; CHECK-LABEL: @oneuse0( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: call void @use8(i8 [[T0]]) +; CHECK-NEXT: [[R:%.*]] = icmp ule i8 [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + call void @use8(i8 %t0) + %r = icmp ule i8 %t0, %val + ret i1 %r +} + +; ============================================================================ ; +; Negative tests +; ============================================================================ ; + +define i1 @n0(i8 %val, i8 %bits) { +; CHECK-LABEL: @n0( +; CHECK-NEXT: [[T0:%.*]] = shl i8 2, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ule i8 [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 2, %bits ; constant is not 1 + %r = icmp ule i8 %t0, %val + ret i1 %r +} + +define <2 x i1> @n1_vec_nonsplat(<2 x i8> %val, <2 x i8> %bits) { +; CHECK-LABEL: @n1_vec_nonsplat( +; CHECK-NEXT: [[T0:%.*]] = shl <2 x i8> <i8 1, i8 2>, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ule <2 x i8> [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret <2 x i1> [[R]] +; + %t0 = shl <2 x i8> <i8 1, i8 2>, %bits ; again, wrong constant + %r = icmp ule <2 x i8> %t0, %val + ret <2 x i1> %r +} + +define i1 @n2(i8 %val, i8 %bits) { +; CHECK-LABEL: @n2( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: [[R:%.*]] = icmp ult i8 [[T0]], [[VAL:%.*]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + %r = icmp ult i8 %t0, %val ; wrong predicate + ret i1 %r +} + +define i1 @n3(i8 %bits) { +; CHECK-LABEL: @n3( +; CHECK-NEXT: [[T0:%.*]] = shl i8 1, [[BITS:%.*]] +; CHECK-NEXT: [[VAL:%.*]] = call i8 @gen8() +; CHECK-NEXT: [[R:%.*]] = icmp ugt i8 [[VAL]], [[T0]] +; CHECK-NEXT: ret i1 [[R]] +; + %t0 = shl i8 1, %bits + %val = call i8 @gen8() + %r = icmp ugt i8 %val, %t0 ; swapped order and [wrong] predicate + ret i1 %r +} |