summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstCombine/zext.ll
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test/Transforms/InstCombine/zext.ll')
-rw-r--r--llvm/test/Transforms/InstCombine/zext.ll174
1 files changed, 0 insertions, 174 deletions
diff --git a/llvm/test/Transforms/InstCombine/zext.ll b/llvm/test/Transforms/InstCombine/zext.ll
deleted file mode 100644
index a53bf6cc028..00000000000
--- a/llvm/test/Transforms/InstCombine/zext.ll
+++ /dev/null
@@ -1,174 +0,0 @@
-; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
-; RUN: opt < %s -instcombine -S | FileCheck %s
-
-define i64 @test_sext_zext(i16 %A) {
-; CHECK-LABEL: @test_sext_zext(
-; CHECK-NEXT: [[C2:%.*]] = zext i16 %A to i64
-; CHECK-NEXT: ret i64 [[C2]]
-;
- %c1 = zext i16 %A to i32
- %c2 = sext i32 %c1 to i64
- ret i64 %c2
-}
-
-define <2 x i64> @test2(<2 x i1> %A) {
-; CHECK-LABEL: @test2(
-; CHECK-NEXT: [[XOR:%.*]] = xor <2 x i1> %A, <i1 true, i1 true>
-; CHECK-NEXT: [[ZEXT:%.*]] = zext <2 x i1> [[XOR]] to <2 x i64>
-; CHECK-NEXT: ret <2 x i64> [[ZEXT]]
-;
- %xor = xor <2 x i1> %A, <i1 true, i1 true>
- %zext = zext <2 x i1> %xor to <2 x i64>
- ret <2 x i64> %zext
-}
-
-define <2 x i64> @test3(<2 x i64> %A) {
-; CHECK-LABEL: @test3(
-; CHECK-NEXT: [[AND:%.*]] = and <2 x i64> %A, <i64 23, i64 42>
-; CHECK-NEXT: ret <2 x i64> [[AND]]
-;
- %trunc = trunc <2 x i64> %A to <2 x i32>
- %and = and <2 x i32> %trunc, <i32 23, i32 42>
- %zext = zext <2 x i32> %and to <2 x i64>
- ret <2 x i64> %zext
-}
-
-define <2 x i64> @test4(<2 x i64> %A) {
-; CHECK-LABEL: @test4(
-; CHECK-NEXT: [[AND:%.*]] = and <2 x i64> [[A:%.*]], <i64 23, i64 42>
-; CHECK-NEXT: [[XOR:%.*]] = xor <2 x i64> [[AND]], <i64 23, i64 42>
-; CHECK-NEXT: ret <2 x i64> [[XOR]]
-;
- %trunc = trunc <2 x i64> %A to <2 x i32>
- %and = and <2 x i32> %trunc, <i32 23, i32 42>
- %xor = xor <2 x i32> %and, <i32 23, i32 42>
- %zext = zext <2 x i32> %xor to <2 x i64>
- ret <2 x i64> %zext
-}
-
-define i64 @fold_xor_zext_sandwich(i1 %a) {
-; CHECK-LABEL: @fold_xor_zext_sandwich(
-; CHECK-NEXT: [[TMP1:%.*]] = xor i1 %a, true
-; CHECK-NEXT: [[ZEXT2:%.*]] = zext i1 [[TMP1]] to i64
-; CHECK-NEXT: ret i64 [[ZEXT2]]
-;
- %zext1 = zext i1 %a to i32
- %xor = xor i32 %zext1, 1
- %zext2 = zext i32 %xor to i64
- ret i64 %zext2
-}
-
-define <2 x i64> @fold_xor_zext_sandwich_vec(<2 x i1> %a) {
-; CHECK-LABEL: @fold_xor_zext_sandwich_vec(
-; CHECK-NEXT: [[TMP1:%.*]] = xor <2 x i1> %a, <i1 true, i1 true>
-; CHECK-NEXT: [[ZEXT2:%.*]] = zext <2 x i1> [[TMP1]] to <2 x i64>
-; CHECK-NEXT: ret <2 x i64> [[ZEXT2]]
-;
- %zext1 = zext <2 x i1> %a to <2 x i32>
- %xor = xor <2 x i32> %zext1, <i32 1, i32 1>
- %zext2 = zext <2 x i32> %xor to <2 x i64>
- ret <2 x i64> %zext2
-}
-
-; Assert that zexts in and(zext(icmp), zext(icmp)) can be folded.
-
-define i8 @fold_and_zext_icmp(i64 %a, i64 %b, i64 %c) {
-; CHECK-LABEL: @fold_and_zext_icmp(
-; CHECK-NEXT: [[TMP1:%.*]] = icmp sgt i64 %a, %b
-; CHECK-NEXT: [[TMP2:%.*]] = icmp slt i64 %a, %c
-; CHECK-NEXT: [[TMP3:%.*]] = and i1 [[TMP1]], [[TMP2]]
-; CHECK-NEXT: [[TMP4:%.*]] = zext i1 [[TMP3]] to i8
-; CHECK-NEXT: ret i8 [[TMP4]]
-;
- %1 = icmp sgt i64 %a, %b
- %2 = zext i1 %1 to i8
- %3 = icmp slt i64 %a, %c
- %4 = zext i1 %3 to i8
- %5 = and i8 %2, %4
- ret i8 %5
-}
-
-; Assert that zexts in or(zext(icmp), zext(icmp)) can be folded.
-
-define i8 @fold_or_zext_icmp(i64 %a, i64 %b, i64 %c) {
-; CHECK-LABEL: @fold_or_zext_icmp(
-; CHECK-NEXT: [[TMP1:%.*]] = icmp sgt i64 %a, %b
-; CHECK-NEXT: [[TMP2:%.*]] = icmp slt i64 %a, %c
-; CHECK-NEXT: [[TMP3:%.*]] = or i1 [[TMP1]], [[TMP2]]
-; CHECK-NEXT: [[TMP4:%.*]] = zext i1 [[TMP3]] to i8
-; CHECK-NEXT: ret i8 [[TMP4]]
-;
- %1 = icmp sgt i64 %a, %b
- %2 = zext i1 %1 to i8
- %3 = icmp slt i64 %a, %c
- %4 = zext i1 %3 to i8
- %5 = or i8 %2, %4
- ret i8 %5
-}
-
-; Assert that zexts in xor(zext(icmp), zext(icmp)) can be folded.
-
-define i8 @fold_xor_zext_icmp(i64 %a, i64 %b, i64 %c) {
-; CHECK-LABEL: @fold_xor_zext_icmp(
-; CHECK-NEXT: [[TMP1:%.*]] = icmp sgt i64 %a, %b
-; CHECK-NEXT: [[TMP2:%.*]] = icmp slt i64 %a, %c
-; CHECK-NEXT: [[TMP3:%.*]] = xor i1 [[TMP1]], [[TMP2]]
-; CHECK-NEXT: [[TMP4:%.*]] = zext i1 [[TMP3]] to i8
-; CHECK-NEXT: ret i8 [[TMP4]]
-;
- %1 = icmp sgt i64 %a, %b
- %2 = zext i1 %1 to i8
- %3 = icmp slt i64 %a, %c
- %4 = zext i1 %3 to i8
- %5 = xor i8 %2, %4
- ret i8 %5
-}
-
-; Assert that zexts in logic(zext(icmp), zext(icmp)) are also folded accross
-; nested logical operators.
-
-define i8 @fold_nested_logic_zext_icmp(i64 %a, i64 %b, i64 %c, i64 %d) {
-; CHECK-LABEL: @fold_nested_logic_zext_icmp(
-; CHECK-NEXT: [[TMP1:%.*]] = icmp sgt i64 %a, %b
-; CHECK-NEXT: [[TMP2:%.*]] = icmp slt i64 %a, %c
-; CHECK-NEXT: [[TMP3:%.*]] = and i1 [[TMP1]], [[TMP2]]
-; CHECK-NEXT: [[TMP4:%.*]] = icmp eq i64 %a, %d
-; CHECK-NEXT: [[TMP5:%.*]] = or i1 [[TMP3]], [[TMP4]]
-; CHECK-NEXT: [[TMP6:%.*]] = zext i1 [[TMP5]] to i8
-; CHECK-NEXT: ret i8 [[TMP6]]
-;
- %1 = icmp sgt i64 %a, %b
- %2 = zext i1 %1 to i8
- %3 = icmp slt i64 %a, %c
- %4 = zext i1 %3 to i8
- %5 = and i8 %2, %4
- %6 = icmp eq i64 %a, %d
- %7 = zext i1 %6 to i8
- %8 = or i8 %5, %7
- ret i8 %8
-}
-
-; This test is for Integer BitWidth > 64 && BitWidth <= 1024.
-
-define i1024 @sext_zext_apint1(i77 %A) {
-; CHECK-LABEL: @sext_zext_apint1(
-; CHECK-NEXT: [[C2:%.*]] = zext i77 %A to i1024
-; CHECK-NEXT: ret i1024 [[C2]]
-;
- %c1 = zext i77 %A to i533
- %c2 = sext i533 %c1 to i1024
- ret i1024 %c2
-}
-
-; This test is for Integer BitWidth <= 64 && BitWidth % 2 != 0.
-
-define i47 @sext_zext_apint2(i11 %A) {
-; CHECK-LABEL: @sext_zext_apint2(
-; CHECK-NEXT: [[C2:%.*]] = zext i11 %A to i47
-; CHECK-NEXT: ret i47 [[C2]]
-;
- %c1 = zext i11 %A to i39
- %c2 = sext i39 %c1 to i47
- ret i47 %c2
-}
-
OpenPOWER on IntegriCloud