Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / SLPVectorizer / X86 / shrink_after_reorder2.ll
blob8d1d257820f0ce550c5583254bc218cd4ec9fc04
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -S -o - -passes=slp-vectorizer -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck %s
4 %class.e = type { i32, i32 }
5 %struct.a = type { i32, i32, i32, i32 }
7 define void @foo(ptr %this, ptr %p, i32 %add7) {
8 ; CHECK-LABEL: @foo(
9 ; CHECK-NEXT:  entry:
10 ; CHECK-NEXT:    [[TMP0:%.*]] = insertelement <2 x i32> <i32 poison, i32 undef>, i32 [[ADD7:%.*]], i32 0
11 ; CHECK-NEXT:    [[TMP1:%.*]] = sdiv <2 x i32> [[TMP0]], <i32 2, i32 2>
12 ; CHECK-NEXT:    [[TMP2:%.*]] = shufflevector <2 x i32> [[TMP1]], <2 x i32> poison, <4 x i32> <i32 1, i32 1, i32 0, i32 0>
13 ; CHECK-NEXT:    switch i32 undef, label [[SW_EPILOG:%.*]] [
14 ; CHECK-NEXT:    i32 0, label [[SW_BB:%.*]]
15 ; CHECK-NEXT:    i32 2, label [[SW_BB]]
16 ; CHECK-NEXT:    ]
17 ; CHECK:       sw.bb:
18 ; CHECK-NEXT:    [[TMP3:%.*]] = xor <2 x i32> [[TMP1]], <i32 -1, i32 -1>
19 ; CHECK-NEXT:    [[TMP4:%.*]] = load <2 x i32>, ptr [[THIS:%.*]], align 4
20 ; CHECK-NEXT:    [[TMP5:%.*]] = add <2 x i32> [[TMP4]], [[TMP3]]
21 ; CHECK-NEXT:    br label [[SW_EPILOG]]
22 ; CHECK:       sw.epilog:
23 ; CHECK-NEXT:    [[TMP6:%.*]] = phi <2 x i32> [ undef, [[ENTRY:%.*]] ], [ [[TMP5]], [[SW_BB]] ]
24 ; CHECK-NEXT:    [[TMP7:%.*]] = shufflevector <2 x i32> [[TMP6]], <2 x i32> poison, <4 x i32> <i32 1, i32 1, i32 0, i32 0>
25 ; CHECK-NEXT:    [[TMP8:%.*]] = sub <4 x i32> undef, [[TMP2]]
26 ; CHECK-NEXT:    [[TMP9:%.*]] = add <4 x i32> [[TMP8]], [[TMP7]]
27 ; CHECK-NEXT:    store <4 x i32> [[TMP9]], ptr [[P:%.*]], align 4
28 ; CHECK-NEXT:    ret void
30 entry:
31   %c = getelementptr inbounds %struct.a, ptr %p, i64 0, i32 1
32   %o = getelementptr inbounds %struct.a, ptr %p, i64 0, i32 2
33   %d = getelementptr inbounds %struct.a, ptr %p, i64 0, i32 3
34   %h = getelementptr inbounds %class.e, ptr %this, i64 0, i32 1
35   %div = sdiv i32 undef, 2
36   %div8 = sdiv i32 %add7, 2
37   switch i32 undef, label %sw.epilog [
38   i32 0, label %sw.bb
39   i32 2, label %sw.bb
40   ]
42 sw.bb:
43   %0 = load i32, ptr %h, align 4
44   %1 = xor i32 %div, -1
45   %sub10 = add i32 %0, %1
46   %2 = load i32, ptr %this, align 4
47   %3 = xor i32 %div8, -1
48   %sub13 = add i32 %2, %3
49   br label %sw.epilog
51 sw.epilog:
52   %l.0 = phi i32 [ undef, %entry ], [ %sub10, %sw.bb ]
53   %m.0 = phi i32 [ undef, %entry ], [ %sub13, %sw.bb ]
54   %add15 = sub i32 undef, %div
55   %sub16 = add i32 %add15, %l.0
56   store i32 %sub16, ptr %p, align 4
57   %add19 = sub i32 undef, %div
58   %sub20 = add i32 %add19, %l.0
59   store i32 %sub20, ptr %c, align 4
60   %add23 = sub i32 undef, %div8
61   %sub24 = add i32 %add23, %m.0
62   store i32 %sub24, ptr %o, align 4
63   %add27 = sub i32 undef, %div8
64   %sub28 = add i32 %add27, %m.0
65   store i32 %sub28, ptr %d, align 4
66   ret void