1 ; RUN: opt -loop-vectorize -force-vector-width=2 -force-vector-interleave=1 -S < %s | FileCheck %s
3 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 @A = common global [1024 x float] zeroinitializer, align 16
6 @B = common global [1024 x float] zeroinitializer, align 16
8 ; Make sure we can vectorize in the presence of hoistable conditional loads.
9 ; CHECK-LABEL: @hoist_cond_load(
10 ; CHECK: load <2 x float>
12 define void @hoist_cond_load() {
16 %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %if.end9 ]
17 %arrayidx = getelementptr inbounds [1024 x float], [1024 x float]* @A, i64 0, i64 %indvars.iv
18 %arrayidx2 = getelementptr inbounds [1024 x float], [1024 x float]* @B, i64 0, i64 %indvars.iv
19 %0 = load float, float* %arrayidx2, align 4
20 %cmp3 = fcmp oeq float %0, 0.000000e+00
21 br i1 %cmp3, label %if.end9, label %if.else
24 %1 = load float, float* %arrayidx, align 4
28 %tmp.0 = phi float [ %1, %if.else ], [ 0.000000e+00, %for.body ]
29 store float %tmp.0, float* %arrayidx, align 4
30 %indvars.iv.next = add i64 %indvars.iv, 1
31 %lftr.wideiv = trunc i64 %indvars.iv.next to i32
32 %exitcond = icmp ne i32 %lftr.wideiv, 1024
33 br i1 %exitcond, label %for.body, label %for.end
39 ; However, we can't hoist loads whose address we have not seen unconditionally
40 ; accessed. One wide load is fine, but not the second.
41 ; CHECK-LABEL: @dont_hoist_cond_load(
42 ; CHECK: load <2 x float>
43 ; CHECK-NOT: load <2 x float>
45 define void @dont_hoist_cond_load([1024 x float]* %a) {
49 %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %if.end9 ]
50 %arrayidx = getelementptr inbounds [1024 x float], [1024 x float]* %a, i64 0, i64 %indvars.iv
51 %arrayidx2 = getelementptr inbounds [1024 x float], [1024 x float]* @B, i64 0, i64 %indvars.iv
52 %0 = load float, float* %arrayidx2, align 4
53 %cmp3 = fcmp oeq float %0, 0.000000e+00
54 br i1 %cmp3, label %if.end9, label %if.else
57 %1 = load float, float* %arrayidx, align 4
61 %tmp.0 = phi float [ %1, %if.else ], [ 0.000000e+00, %for.body ]
62 store float %tmp.0, float* %arrayidx2, align 4
63 %indvars.iv.next = add i64 %indvars.iv, 1
64 %lftr.wideiv = trunc i64 %indvars.iv.next to i32
65 %exitcond = icmp ne i32 %lftr.wideiv, 1024
66 br i1 %exitcond, label %for.body, label %for.end