blob: db4774d8ba935a28d52fa607d98e9b962501f877 [file] [log] [blame]
Sanjay Patelb653de12014-09-10 17:58:16 +00001; RUN: opt -loop-vectorize -force-vector-width=2 -force-vector-interleave=1 -S < %s | FileCheck %s
Arnold Schwaighofer2d920472013-05-15 01:44:30 +00002
3target 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"
4
5@A = common global [1024 x float] zeroinitializer, align 16
6@B = common global [1024 x float] zeroinitializer, align 16
7
8; Make sure we can vectorize in the presence of hoistable conditional loads.
Matt Arsenaulte64c7c72013-10-02 20:29:00 +00009; CHECK-LABEL: @hoist_cond_load(
Arnold Schwaighofer2d920472013-05-15 01:44:30 +000010; CHECK: load <2 x float>
11
12define void @hoist_cond_load() {
13entry:
14 br label %for.body
15for.body:
16 %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %if.end9 ]
David Blaikie79e6c742015-02-27 19:29:02 +000017 %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
David Blaikiea79ac142015-02-27 21:17:42 +000019 %0 = load float, float* %arrayidx2, align 4
Arnold Schwaighofer2d920472013-05-15 01:44:30 +000020 %cmp3 = fcmp oeq float %0, 0.000000e+00
21 br i1 %cmp3, label %if.end9, label %if.else
22
23if.else:
David Blaikiea79ac142015-02-27 21:17:42 +000024 %1 = load float, float* %arrayidx, align 4
Arnold Schwaighofer2d920472013-05-15 01:44:30 +000025 br label %if.end9
26
27if.end9:
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
34
35for.end:
36 ret void
37}
38
39; However, we can't hoist loads whose address we have not seen unconditionally
Renato Golin9d1b2ac2018-02-26 11:06:36 +000040; accessed. One wide load is fine, but not the second.
Matt Arsenaulte64c7c72013-10-02 20:29:00 +000041; CHECK-LABEL: @dont_hoist_cond_load(
Renato Golin9d1b2ac2018-02-26 11:06:36 +000042; CHECK: load <2 x float>
Arnold Schwaighofer2d920472013-05-15 01:44:30 +000043; CHECK-NOT: load <2 x float>
44
45define void @dont_hoist_cond_load() {
46entry:
47 br label %for.body
48for.body:
49 %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %if.end9 ]
David Blaikie79e6c742015-02-27 19:29:02 +000050 %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
David Blaikiea79ac142015-02-27 21:17:42 +000052 %0 = load float, float* %arrayidx2, align 4
Arnold Schwaighofer2d920472013-05-15 01:44:30 +000053 %cmp3 = fcmp oeq float %0, 0.000000e+00
54 br i1 %cmp3, label %if.end9, label %if.else
55
56if.else:
David Blaikiea79ac142015-02-27 21:17:42 +000057 %1 = load float, float* %arrayidx, align 4
Arnold Schwaighofer2d920472013-05-15 01:44:30 +000058 br label %if.end9
59
60if.end9:
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
67
68for.end:
69 ret void
70}