1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2; RUN: opt < %s -basic-aa -slp-vectorizer -slp-threshold=-100 -dce -S -mtriple=i386-apple-macosx10.8.0 -mcpu=corei7-avx | FileCheck %s
3
4target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32-S128"
5target triple = "i386-apple-macosx10.9.0"
6
7;int foo(double *A, int k) {
8;  double A0;
9;  double A1;
10;  if (k) {
11;    A0 = 3;
12;    A1 = 5;
13;  } else {
14;    A0 = A[10];
15;    A1 = A[11];
16;  }
17;  A[0] = A0;
18;  A[1] = A1;
19;}
20
21
22define i32 @foo(double* nocapture %A, i32 %k) {
23; CHECK-LABEL: @foo(
24; CHECK-NEXT:  entry:
25; CHECK-NEXT:    [[TOBOOL:%.*]] = icmp eq i32 [[K:%.*]], 0
26; CHECK-NEXT:    br i1 [[TOBOOL]], label [[IF_ELSE:%.*]], label [[IF_END:%.*]]
27; CHECK:       if.else:
28; CHECK-NEXT:    [[ARRAYIDX:%.*]] = getelementptr inbounds double, double* [[A:%.*]], i64 10
29; CHECK-NEXT:    [[TMP0:%.*]] = bitcast double* [[ARRAYIDX]] to <2 x double>*
30; CHECK-NEXT:    [[TMP1:%.*]] = load <2 x double>, <2 x double>* [[TMP0]], align 8
31; CHECK-NEXT:    br label [[IF_END]]
32; CHECK:       if.end:
33; CHECK-NEXT:    [[TMP2:%.*]] = phi <2 x double> [ [[TMP1]], [[IF_ELSE]] ], [ <double 3.000000e+00, double 5.000000e+00>, [[ENTRY:%.*]] ]
34; CHECK-NEXT:    [[TMP3:%.*]] = bitcast double* [[A]] to <2 x double>*
35; CHECK-NEXT:    store <2 x double> [[TMP2]], <2 x double>* [[TMP3]], align 8
36; CHECK-NEXT:    ret i32 undef
37;
38entry:
39  %tobool = icmp eq i32 %k, 0
40  br i1 %tobool, label %if.else, label %if.end
41
42if.else:                                          ; preds = %entry
43  %arrayidx = getelementptr inbounds double, double* %A, i64 10
44  %0 = load double, double* %arrayidx, align 8
45  %arrayidx1 = getelementptr inbounds double, double* %A, i64 11
46  %1 = load double, double* %arrayidx1, align 8
47  br label %if.end
48
49if.end:                                           ; preds = %entry, %if.else
50  %A0.0 = phi double [ %0, %if.else ], [ 3.000000e+00, %entry ]
51  %A1.0 = phi double [ %1, %if.else ], [ 5.000000e+00, %entry ]
52  store double %A0.0, double* %A, align 8
53  %arrayidx3 = getelementptr inbounds double, double* %A, i64 1
54  store double %A1.0, double* %arrayidx3, align 8
55  ret i32 undef
56}
57
58
59;int foo(double * restrict B,  double * restrict A, int n, int m) {
60;  double R=A[1];
61;  double G=A[0];
62;  for (int i=0; i < 100; i++) {
63;    R += 10;
64;    G += 10;
65;    R *= 4;
66;    G *= 4;
67;    R += 4;
68;    G += 4;
69;  }
70;  B[0] = G;
71;  B[1] = R;
72;  return 0;
73;}
74
75define i32 @foo2(double* noalias nocapture %B, double* noalias nocapture %A, i32 %n, i32 %m) #0 {
76; CHECK-LABEL: @foo2(
77; CHECK-NEXT:  entry:
78; CHECK-NEXT:    [[TMP0:%.*]] = bitcast double* [[A:%.*]] to <2 x double>*
79; CHECK-NEXT:    [[TMP1:%.*]] = load <2 x double>, <2 x double>* [[TMP0]], align 8
80; CHECK-NEXT:    br label [[FOR_BODY:%.*]]
81; CHECK:       for.body:
82; CHECK-NEXT:    [[I_019:%.*]] = phi i32 [ 0, [[ENTRY:%.*]] ], [ [[INC:%.*]], [[FOR_BODY]] ]
83; CHECK-NEXT:    [[TMP2:%.*]] = phi <2 x double> [ [[TMP1]], [[ENTRY]] ], [ [[TMP5:%.*]], [[FOR_BODY]] ]
84; CHECK-NEXT:    [[TMP3:%.*]] = fadd <2 x double> [[TMP2]], <double 1.000000e+01, double 1.000000e+01>
85; CHECK-NEXT:    [[TMP4:%.*]] = fmul <2 x double> [[TMP3]], <double 4.000000e+00, double 4.000000e+00>
86; CHECK-NEXT:    [[TMP5]] = fadd <2 x double> [[TMP4]], <double 4.000000e+00, double 4.000000e+00>
87; CHECK-NEXT:    [[INC]] = add nsw i32 [[I_019]], 1
88; CHECK-NEXT:    [[EXITCOND:%.*]] = icmp eq i32 [[INC]], 100
89; CHECK-NEXT:    br i1 [[EXITCOND]], label [[FOR_END:%.*]], label [[FOR_BODY]]
90; CHECK:       for.end:
91; CHECK-NEXT:    [[TMP6:%.*]] = bitcast double* [[B:%.*]] to <2 x double>*
92; CHECK-NEXT:    store <2 x double> [[TMP5]], <2 x double>* [[TMP6]], align 8
93; CHECK-NEXT:    ret i32 0
94;
95entry:
96  %arrayidx = getelementptr inbounds double, double* %A, i64 1
97  %0 = load double, double* %arrayidx, align 8
98  %1 = load double, double* %A, align 8
99  br label %for.body
100
101for.body:                                         ; preds = %for.body, %entry
102  %i.019 = phi i32 [ 0, %entry ], [ %inc, %for.body ]
103  %G.018 = phi double [ %1, %entry ], [ %add5, %for.body ]
104  %R.017 = phi double [ %0, %entry ], [ %add4, %for.body ]
105  %add = fadd double %R.017, 1.000000e+01
106  %add2 = fadd double %G.018, 1.000000e+01
107  %mul = fmul double %add, 4.000000e+00
108  %mul3 = fmul double %add2, 4.000000e+00
109  %add4 = fadd double %mul, 4.000000e+00
110  %add5 = fadd double %mul3, 4.000000e+00
111  %inc = add nsw i32 %i.019, 1
112  %exitcond = icmp eq i32 %inc, 100
113  br i1 %exitcond, label %for.end, label %for.body
114
115for.end:                                          ; preds = %for.body
116  store double %add5, double* %B, align 8
117  %arrayidx7 = getelementptr inbounds double, double* %B, i64 1
118  store double %add4, double* %arrayidx7, align 8
119  ret i32 0
120}
121
122; float foo3(float *A) {
123;
124;   float R = A[0];
125;   float G = A[1];
126;   float B = A[2];
127;   float Y = A[3];
128;   float P = A[4];
129;   for (int i=0; i < 121; i+=3) {
130;     R+=A[i+0]*7;
131;     G+=A[i+1]*8;
132;     B+=A[i+2]*9;
133;     Y+=A[i+3]*10;
134;     P+=A[i+4]*11;
135;   }
136;
137;   return R+G+B+Y+P;
138; }
139
140define float @foo3(float* nocapture readonly %A) #0 {
141; CHECK-LABEL: @foo3(
142; CHECK-NEXT:  entry:
143; CHECK-NEXT:    [[TMP0:%.*]] = load float, float* [[A:%.*]], align 4
144; CHECK-NEXT:    [[ARRAYIDX1:%.*]] = getelementptr inbounds float, float* [[A]], i64 1
145; CHECK-NEXT:    [[TMP1:%.*]] = bitcast float* [[ARRAYIDX1]] to <4 x float>*
146; CHECK-NEXT:    [[TMP2:%.*]] = load <4 x float>, <4 x float>* [[TMP1]], align 4
147; CHECK-NEXT:    [[TMP3:%.*]] = extractelement <4 x float> [[TMP2]], i32 0
148; CHECK-NEXT:    [[TMP4:%.*]] = insertelement <2 x float> poison, float [[TMP0]], i32 0
149; CHECK-NEXT:    [[TMP5:%.*]] = insertelement <2 x float> [[TMP4]], float [[TMP3]], i32 1
150; CHECK-NEXT:    br label [[FOR_BODY:%.*]]
151; CHECK:       for.body:
152; CHECK-NEXT:    [[INDVARS_IV:%.*]] = phi i64 [ 0, [[ENTRY:%.*]] ], [ [[INDVARS_IV_NEXT:%.*]], [[FOR_BODY]] ]
153; CHECK-NEXT:    [[R_052:%.*]] = phi float [ [[TMP0]], [[ENTRY]] ], [ [[ADD6:%.*]], [[FOR_BODY]] ]
154; CHECK-NEXT:    [[TMP6:%.*]] = phi <4 x float> [ [[TMP2]], [[ENTRY]] ], [ [[TMP16:%.*]], [[FOR_BODY]] ]
155; CHECK-NEXT:    [[TMP7:%.*]] = phi <2 x float> [ [[TMP5]], [[ENTRY]] ], [ [[TMP12:%.*]], [[FOR_BODY]] ]
156; CHECK-NEXT:    [[TMP8:%.*]] = extractelement <2 x float> [[TMP7]], i32 0
157; CHECK-NEXT:    [[MUL:%.*]] = fmul float [[TMP8]], 7.000000e+00
158; CHECK-NEXT:    [[ADD6]] = fadd float [[R_052]], [[MUL]]
159; CHECK-NEXT:    [[TMP9:%.*]] = add nsw i64 [[INDVARS_IV]], 2
160; CHECK-NEXT:    [[ARRAYIDX14:%.*]] = getelementptr inbounds float, float* [[A]], i64 [[TMP9]]
161; CHECK-NEXT:    [[TMP10:%.*]] = load float, float* [[ARRAYIDX14]], align 4
162; CHECK-NEXT:    [[INDVARS_IV_NEXT]] = add nuw nsw i64 [[INDVARS_IV]], 3
163; CHECK-NEXT:    [[ARRAYIDX19:%.*]] = getelementptr inbounds float, float* [[A]], i64 [[INDVARS_IV_NEXT]]
164; CHECK-NEXT:    [[TMP11:%.*]] = bitcast float* [[ARRAYIDX19]] to <2 x float>*
165; CHECK-NEXT:    [[TMP12]] = load <2 x float>, <2 x float>* [[TMP11]], align 4
166; CHECK-NEXT:    [[TMP13:%.*]] = shufflevector <2 x float> [[TMP7]], <2 x float> [[TMP12]], <4 x i32> <i32 1, i32 undef, i32 2, i32 3>
167; CHECK-NEXT:    [[TMP14:%.*]] = insertelement <4 x float> [[TMP13]], float [[TMP10]], i32 1
168; CHECK-NEXT:    [[TMP15:%.*]] = fmul <4 x float> [[TMP14]], <float 8.000000e+00, float 9.000000e+00, float 1.000000e+01, float 1.100000e+01>
169; CHECK-NEXT:    [[TMP16]] = fadd <4 x float> [[TMP6]], [[TMP15]]
170; CHECK-NEXT:    [[TMP17:%.*]] = trunc i64 [[INDVARS_IV_NEXT]] to i32
171; CHECK-NEXT:    [[CMP:%.*]] = icmp slt i32 [[TMP17]], 121
172; CHECK-NEXT:    br i1 [[CMP]], label [[FOR_BODY]], label [[FOR_END:%.*]]
173; CHECK:       for.end:
174; CHECK-NEXT:    [[TMP18:%.*]] = extractelement <4 x float> [[TMP16]], i32 0
175; CHECK-NEXT:    [[ADD28:%.*]] = fadd float [[ADD6]], [[TMP18]]
176; CHECK-NEXT:    [[TMP19:%.*]] = extractelement <4 x float> [[TMP16]], i32 1
177; CHECK-NEXT:    [[ADD29:%.*]] = fadd float [[ADD28]], [[TMP19]]
178; CHECK-NEXT:    [[TMP20:%.*]] = extractelement <4 x float> [[TMP16]], i32 2
179; CHECK-NEXT:    [[ADD30:%.*]] = fadd float [[ADD29]], [[TMP20]]
180; CHECK-NEXT:    [[TMP21:%.*]] = extractelement <4 x float> [[TMP16]], i32 3
181; CHECK-NEXT:    [[ADD31:%.*]] = fadd float [[ADD30]], [[TMP21]]
182; CHECK-NEXT:    ret float [[ADD31]]
183;
184entry:
185  %0 = load float, float* %A, align 4
186  %arrayidx1 = getelementptr inbounds float, float* %A, i64 1
187  %1 = load float, float* %arrayidx1, align 4
188  %arrayidx2 = getelementptr inbounds float, float* %A, i64 2
189  %2 = load float, float* %arrayidx2, align 4
190  %arrayidx3 = getelementptr inbounds float, float* %A, i64 3
191  %3 = load float, float* %arrayidx3, align 4
192  %arrayidx4 = getelementptr inbounds float, float* %A, i64 4
193  %4 = load float, float* %arrayidx4, align 4
194  br label %for.body
195
196for.body:                                         ; preds = %for.body, %entry
197  %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
198  %P.056 = phi float [ %4, %entry ], [ %add26, %for.body ]
199  %Y.055 = phi float [ %3, %entry ], [ %add21, %for.body ]
200  %B.054 = phi float [ %2, %entry ], [ %add16, %for.body ]
201  %G.053 = phi float [ %1, %entry ], [ %add11, %for.body ]
202  %R.052 = phi float [ %0, %entry ], [ %add6, %for.body ]
203  %5 = phi float [ %1, %entry ], [ %11, %for.body ]
204  %6 = phi float [ %0, %entry ], [ %9, %for.body ]
205  %mul = fmul float %6, 7.000000e+00
206  %add6 = fadd float %R.052, %mul
207  %mul10 = fmul float %5, 8.000000e+00
208  %add11 = fadd float %G.053, %mul10
209  %7 = add nsw i64 %indvars.iv, 2
210  %arrayidx14 = getelementptr inbounds float, float* %A, i64 %7
211  %8 = load float, float* %arrayidx14, align 4
212  %mul15 = fmul float %8, 9.000000e+00
213  %add16 = fadd float %B.054, %mul15
214  %indvars.iv.next = add nuw nsw i64 %indvars.iv, 3
215  %arrayidx19 = getelementptr inbounds float, float* %A, i64 %indvars.iv.next
216  %9 = load float, float* %arrayidx19, align 4
217  %mul20 = fmul float %9, 1.000000e+01
218  %add21 = fadd float %Y.055, %mul20
219  %10 = add nsw i64 %indvars.iv, 4
220  %arrayidx24 = getelementptr inbounds float, float* %A, i64 %10
221  %11 = load float, float* %arrayidx24, align 4
222  %mul25 = fmul float %11, 1.100000e+01
223  %add26 = fadd float %P.056, %mul25
224  %12 = trunc i64 %indvars.iv.next to i32
225  %cmp = icmp slt i32 %12, 121
226  br i1 %cmp, label %for.body, label %for.end
227
228for.end:                                          ; preds = %for.body
229  %add28 = fadd float %add6, %add11
230  %add29 = fadd float %add28, %add16
231  %add30 = fadd float %add29, %add21
232  %add31 = fadd float %add30, %add26
233  ret float %add31
234}
235
236; Make sure the order of phi nodes of different types does not prevent
237; vectorization of same typed phi nodes.
238define float @sort_phi_type(float* nocapture readonly %A) {
239; CHECK-LABEL: @sort_phi_type(
240; CHECK-NEXT:  entry:
241; CHECK-NEXT:    br label [[FOR_BODY:%.*]]
242; CHECK:       for.body:
243; CHECK-NEXT:    [[INDVARS_IV:%.*]] = phi i64 [ 0, [[ENTRY:%.*]] ], [ [[INDVARS_IV_NEXT:%.*]], [[FOR_BODY]] ]
244; CHECK-NEXT:    [[TMP0:%.*]] = phi <4 x float> [ <float 1.000000e+01, float 1.000000e+01, float 1.000000e+01, float 1.000000e+01>, [[ENTRY]] ], [ [[TMP2:%.*]], [[FOR_BODY]] ]
245; CHECK-NEXT:    [[TMP1:%.*]] = shufflevector <4 x float> [[TMP0]], <4 x float> poison, <4 x i32> <i32 0, i32 1, i32 3, i32 2>
246; CHECK-NEXT:    [[TMP2]] = fmul <4 x float> [[TMP1]], <float 8.000000e+00, float 9.000000e+00, float 1.000000e+02, float 1.110000e+02>
247; CHECK-NEXT:    [[INDVARS_IV_NEXT]] = add nsw i64 [[INDVARS_IV]], 4
248; CHECK-NEXT:    [[CMP:%.*]] = icmp slt i64 [[INDVARS_IV_NEXT]], 128
249; CHECK-NEXT:    br i1 [[CMP]], label [[FOR_BODY]], label [[FOR_END:%.*]]
250; CHECK:       for.end:
251; CHECK-NEXT:    [[TMP3:%.*]] = extractelement <4 x float> [[TMP2]], i32 0
252; CHECK-NEXT:    [[TMP4:%.*]] = extractelement <4 x float> [[TMP2]], i32 1
253; CHECK-NEXT:    [[ADD29:%.*]] = fadd float [[TMP3]], [[TMP4]]
254; CHECK-NEXT:    [[TMP5:%.*]] = extractelement <4 x float> [[TMP2]], i32 2
255; CHECK-NEXT:    [[ADD30:%.*]] = fadd float [[ADD29]], [[TMP5]]
256; CHECK-NEXT:    [[TMP6:%.*]] = extractelement <4 x float> [[TMP2]], i32 3
257; CHECK-NEXT:    [[ADD31:%.*]] = fadd float [[ADD30]], [[TMP6]]
258; CHECK-NEXT:    ret float [[ADD31]]
259;
260entry:
261  br label %for.body
262
263for.body:                                         ; preds = %for.body, %entry
264  %Y = phi float [ 1.000000e+01, %entry ], [ %mul10, %for.body ]
265  %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
266  %B = phi float [ 1.000000e+01, %entry ], [ %mul15, %for.body ]
267  %G = phi float [ 1.000000e+01, %entry ], [ %mul20, %for.body ]
268  %R = phi float [ 1.000000e+01, %entry ], [ %mul25, %for.body ]
269  %mul10 = fmul float %Y, 8.000000e+00
270  %mul15 = fmul float %B, 9.000000e+00
271  %mul20 = fmul float %R, 10.000000e+01
272  %mul25 = fmul float %G, 11.100000e+01
273  %indvars.iv.next = add nsw i64 %indvars.iv, 4
274  %cmp = icmp slt i64 %indvars.iv.next, 128
275  br i1 %cmp, label %for.body, label %for.end
276
277for.end:                                          ; preds = %for.body
278  %add28 = fadd float 1.000000e+01, %mul10
279  %add29 = fadd float %mul10, %mul15
280  %add30 = fadd float %add29, %mul20
281  %add31 = fadd float %add30, %mul25
282  ret float %add31
283}
284
285define void @test(x86_fp80* %i1, x86_fp80* %i2, x86_fp80* %o) {
286; CHECK-LABEL: @test(
287; CHECK-NEXT:  entry:
288; CHECK-NEXT:    [[I1_0:%.*]] = load x86_fp80, x86_fp80* [[I1:%.*]], align 16
289; CHECK-NEXT:    [[I1_GEP1:%.*]] = getelementptr x86_fp80, x86_fp80* [[I1]], i64 1
290; CHECK-NEXT:    [[I1_1:%.*]] = load x86_fp80, x86_fp80* [[I1_GEP1]], align 16
291; CHECK-NEXT:    br i1 undef, label [[THEN:%.*]], label [[END:%.*]]
292; CHECK:       then:
293; CHECK-NEXT:    [[I2_GEP0:%.*]] = getelementptr inbounds x86_fp80, x86_fp80* [[I2:%.*]], i64 0
294; CHECK-NEXT:    [[I2_0:%.*]] = load x86_fp80, x86_fp80* [[I2_GEP0]], align 16
295; CHECK-NEXT:    [[I2_GEP1:%.*]] = getelementptr inbounds x86_fp80, x86_fp80* [[I2]], i64 1
296; CHECK-NEXT:    [[I2_1:%.*]] = load x86_fp80, x86_fp80* [[I2_GEP1]], align 16
297; CHECK-NEXT:    br label [[END]]
298; CHECK:       end:
299; CHECK-NEXT:    [[PHI0:%.*]] = phi x86_fp80 [ [[I1_0]], [[ENTRY:%.*]] ], [ [[I2_0]], [[THEN]] ]
300; CHECK-NEXT:    [[PHI1:%.*]] = phi x86_fp80 [ [[I1_1]], [[ENTRY]] ], [ [[I2_1]], [[THEN]] ]
301; CHECK-NEXT:    store x86_fp80 [[PHI0]], x86_fp80* [[O:%.*]], align 16
302; CHECK-NEXT:    [[O_GEP1:%.*]] = getelementptr inbounds x86_fp80, x86_fp80* [[O]], i64 1
303; CHECK-NEXT:    store x86_fp80 [[PHI1]], x86_fp80* [[O_GEP1]], align 16
304; CHECK-NEXT:    ret void
305;
306; Test that we correctly recognize the discontiguous memory in arrays where the
307; size is less than the alignment, and through various different GEP formations.
308; We disable the vectorization of x86_fp80 for now.
309
310entry:
311  %i1.0 = load x86_fp80, x86_fp80* %i1, align 16
312  %i1.gep1 = getelementptr x86_fp80, x86_fp80* %i1, i64 1
313  %i1.1 = load x86_fp80, x86_fp80* %i1.gep1, align 16
314  br i1 undef, label %then, label %end
315
316then:
317  %i2.gep0 = getelementptr inbounds x86_fp80, x86_fp80* %i2, i64 0
318  %i2.0 = load x86_fp80, x86_fp80* %i2.gep0, align 16
319  %i2.gep1 = getelementptr inbounds x86_fp80, x86_fp80* %i2, i64 1
320  %i2.1 = load x86_fp80, x86_fp80* %i2.gep1, align 16
321  br label %end
322
323end:
324  %phi0 = phi x86_fp80 [ %i1.0, %entry ], [ %i2.0, %then ]
325  %phi1 = phi x86_fp80 [ %i1.1, %entry ], [ %i2.1, %then ]
326  store x86_fp80 %phi0, x86_fp80* %o, align 16
327  %o.gep1 = getelementptr inbounds x86_fp80, x86_fp80* %o, i64 1
328  store x86_fp80 %phi1, x86_fp80* %o.gep1, align 16
329  ret void
330}
331