[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / SLPVectorizer / X86 / cross_block_slp.ll
blob407cfbc2090e0b25e0e221c1149f296811ae8a72
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 ; int foo(double *A, float *B, int g) {
8 ;   float B0 = B[0];
9 ;   float B1 = B[1]; <----- BasicBlock #1
10 ;   B0 += 5;
11 ;   B1 += 8;
13 ;   if (g) bar();
15 ;   A[0] += B0;     <------- BasicBlock #3
16 ;   A[1] += B1;
17 ; }
20 define i32 @foo(double* nocapture %A, float* nocapture %B, i32 %g) {
21 ; CHECK-LABEL: @foo(
22 ; CHECK-NEXT:  entry:
23 ; CHECK-NEXT:    [[TMP0:%.*]] = bitcast float* [[B:%.*]] to <2 x float>*
24 ; CHECK-NEXT:    [[TMP1:%.*]] = load <2 x float>, <2 x float>* [[TMP0]], align 4
25 ; CHECK-NEXT:    [[TMP2:%.*]] = fadd <2 x float> [[TMP1]], <float 5.000000e+00, float 8.000000e+00>
26 ; CHECK-NEXT:    [[TOBOOL:%.*]] = icmp eq i32 [[G:%.*]], 0
27 ; CHECK-NEXT:    br i1 [[TOBOOL]], label [[IF_END:%.*]], label [[IF_THEN:%.*]]
28 ; CHECK:       if.then:
29 ; CHECK-NEXT:    [[CALL:%.*]] = tail call i32 (...) @bar()
30 ; CHECK-NEXT:    br label [[IF_END]]
31 ; CHECK:       if.end:
32 ; CHECK-NEXT:    [[TMP3:%.*]] = fpext <2 x float> [[TMP2]] to <2 x double>
33 ; CHECK-NEXT:    [[TMP4:%.*]] = bitcast double* [[A:%.*]] to <2 x double>*
34 ; CHECK-NEXT:    [[TMP5:%.*]] = load <2 x double>, <2 x double>* [[TMP4]], align 8
35 ; CHECK-NEXT:    [[TMP6:%.*]] = fadd <2 x double> [[TMP3]], [[TMP5]]
36 ; CHECK-NEXT:    [[TMP7:%.*]] = bitcast double* [[A]] to <2 x double>*
37 ; CHECK-NEXT:    store <2 x double> [[TMP6]], <2 x double>* [[TMP7]], align 8
38 ; CHECK-NEXT:    ret i32 undef
40 entry:
41   %0 = load float, float* %B, align 4
42   %arrayidx1 = getelementptr inbounds float, float* %B, i64 1
43   %1 = load float, float* %arrayidx1, align 4
44   %add = fadd float %0, 5.000000e+00
45   %add2 = fadd float %1, 8.000000e+00
46   %tobool = icmp eq i32 %g, 0
47   br i1 %tobool, label %if.end, label %if.then
49 if.then:
50   %call = tail call i32 (...) @bar()
51   br label %if.end
53 if.end:
54   %conv = fpext float %add to double
55   %2 = load double, double* %A, align 8
56   %add4 = fadd double %conv, %2
57   store double %add4, double* %A, align 8
58   %conv5 = fpext float %add2 to double
59   %arrayidx6 = getelementptr inbounds double, double* %A, i64 1
60   %3 = load double, double* %arrayidx6, align 8
61   %add7 = fadd double %conv5, %3
62   store double %add7, double* %arrayidx6, align 8
63   ret i32 undef
66 declare i32 @bar(...)