[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / SLPVectorizer / X86 / barriercall.ll
blobc0f453f2966410d7b4ca33820cacee64fbabdb87
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -basic-aa -slp-vectorizer -dce -S -mtriple=x86_64-apple-macosx10.8.0 -mcpu=corei7-avx | FileCheck %s
4 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
5 target triple = "x86_64-apple-macosx10.8.0"
7 define i32 @foo(i32* nocapture %A, i32 %n) {
8 ; CHECK-LABEL: @foo(
9 ; CHECK-NEXT:  entry:
10 ; CHECK-NEXT:    [[CALL:%.*]] = tail call i32 (...) @bar()
11 ; CHECK-NEXT:    [[TMP0:%.*]] = insertelement <4 x i32> poison, i32 [[N:%.*]], i32 0
12 ; CHECK-NEXT:    [[SHUFFLE:%.*]] = shufflevector <4 x i32> [[TMP0]], <4 x i32> poison, <4 x i32> zeroinitializer
13 ; CHECK-NEXT:    [[TMP1:%.*]] = mul nsw <4 x i32> [[SHUFFLE]], <i32 5, i32 9, i32 3, i32 10>
14 ; CHECK-NEXT:    [[TMP2:%.*]] = shl <4 x i32> [[SHUFFLE]], <i32 5, i32 9, i32 3, i32 10>
15 ; CHECK-NEXT:    [[TMP3:%.*]] = shufflevector <4 x i32> [[TMP1]], <4 x i32> [[TMP2]], <4 x i32> <i32 0, i32 1, i32 6, i32 3>
16 ; CHECK-NEXT:    [[TMP4:%.*]] = add nsw <4 x i32> [[TMP3]], <i32 9, i32 9, i32 9, i32 9>
17 ; CHECK-NEXT:    [[TMP5:%.*]] = bitcast i32* [[A:%.*]] to <4 x i32>*
18 ; CHECK-NEXT:    store <4 x i32> [[TMP4]], <4 x i32>* [[TMP5]], align 4
19 ; CHECK-NEXT:    ret i32 undef
21 entry:
22   %call = tail call i32 (...) @bar() #2
23   %mul = mul nsw i32 %n, 5
24   %add = add nsw i32 %mul, 9
25   store i32 %add, i32* %A, align 4
26   %mul1 = mul nsw i32 %n, 9
27   %add2 = add nsw i32 %mul1, 9
28   %arrayidx3 = getelementptr inbounds i32, i32* %A, i64 1
29   store i32 %add2, i32* %arrayidx3, align 4
30   %mul4 = shl i32 %n, 3
31   %add5 = add nsw i32 %mul4, 9
32   %arrayidx6 = getelementptr inbounds i32, i32* %A, i64 2
33   store i32 %add5, i32* %arrayidx6, align 4
34   %mul7 = mul nsw i32 %n, 10
35   %add8 = add nsw i32 %mul7, 9
36   %arrayidx9 = getelementptr inbounds i32, i32* %A, i64 3
37   store i32 %add8, i32* %arrayidx9, align 4
38   ret i32 undef
41   ; We can still vectorize the stores below.
43 declare i32 @bar(...)