blob: f8017dd110672705494134308968f8c18d6c3804 [file] [log] [blame]
Sanjay Patelb653de12014-09-10 17:58:16 +00001; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -force-vector-width=2 -S | FileCheck %s
Arnold Schwaighofer2e7a9222013-05-14 00:21:18 +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; Make sure that we can handle multiple integer induction variables.
Matt Arsenaulte64c7c72013-10-02 20:29:00 +00006; CHECK-LABEL: @multi_int_induction(
Arnold Schwaighofer2e7a9222013-05-14 00:21:18 +00007; CHECK: vector.body:
8; CHECK: %index = phi i64 [ 0, %vector.ph ], [ %index.next, %vector.body ]
James Molloyc07701b2015-09-02 10:14:54 +00009; CHECK: %[[VAR:.*]] = trunc i64 %index to i32
Arnold Schwaighofer2e7a9222013-05-14 00:21:18 +000010; CHECK: %offset.idx = add i32 190, %[[VAR]]
11define void @multi_int_induction(i32* %A, i32 %N) {
12for.body.lr.ph:
13 br label %for.body
14
15for.body:
16 %indvars.iv = phi i64 [ 0, %for.body.lr.ph ], [ %indvars.iv.next, %for.body ]
17 %count.09 = phi i32 [ 190, %for.body.lr.ph ], [ %inc, %for.body ]
David Blaikie79e6c742015-02-27 19:29:02 +000018 %arrayidx2 = getelementptr inbounds i32, i32* %A, i64 %indvars.iv
Arnold Schwaighofer2e7a9222013-05-14 00:21:18 +000019 store i32 %count.09, i32* %arrayidx2, align 4
20 %inc = add nsw i32 %count.09, 1
21 %indvars.iv.next = add i64 %indvars.iv, 1
22 %lftr.wideiv = trunc i64 %indvars.iv.next to i32
23 %exitcond = icmp ne i32 %lftr.wideiv, %N
24 br i1 %exitcond, label %for.body, label %for.end
25
26for.end:
27 ret void
28}
29
Sanjay Patelb653de12014-09-10 17:58:16 +000030; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -force-vector-width=2 -instcombine -S | FileCheck %s --check-prefix=IND
Arnold Schwaighofera846a7f2013-11-01 22:18:19 +000031
32; Make sure we remove unneeded vectorization of induction variables.
33; In order for instcombine to cleanup the vectorized induction variables that we
34; create in the loop vectorizer we need to perform some form of redundancy
35; elimination to get rid of multiple uses.
36
37; IND-LABEL: scalar_use
38
39; IND: br label %vector.body
40; IND: vector.body:
41; Vectorized induction variable.
42; IND-NOT: insertelement <2 x i64>
43; IND-NOT: shufflevector <2 x i64>
44; IND: br {{.*}}, label %vector.body
45
46define void @scalar_use(float* %a, float %b, i64 %offset, i64 %offset2, i64 %n) {
47entry:
48 br label %for.body
49
50for.body:
51 %iv = phi i64 [ 0, %entry ], [ %iv.next, %for.body ]
52 %ind.sum = add i64 %iv, %offset
David Blaikie79e6c742015-02-27 19:29:02 +000053 %arr.idx = getelementptr inbounds float, float* %a, i64 %ind.sum
David Blaikiea79ac142015-02-27 21:17:42 +000054 %l1 = load float, float* %arr.idx, align 4
Arnold Schwaighofera846a7f2013-11-01 22:18:19 +000055 %ind.sum2 = add i64 %iv, %offset2
David Blaikie79e6c742015-02-27 19:29:02 +000056 %arr.idx2 = getelementptr inbounds float, float* %a, i64 %ind.sum2
David Blaikiea79ac142015-02-27 21:17:42 +000057 %l2 = load float, float* %arr.idx2, align 4
Arnold Schwaighofera846a7f2013-11-01 22:18:19 +000058 %m = fmul fast float %b, %l2
59 %ad = fadd fast float %l1, %m
60 store float %ad, float* %arr.idx, align 4
61 %iv.next = add nuw nsw i64 %iv, 1
62 %exitcond = icmp eq i64 %iv.next, %n
63 br i1 %exitcond, label %loopexit, label %for.body
64
65loopexit:
66 ret void
67}
Arnold Schwaighoferb72cb4e2013-11-18 13:14:32 +000068
69
70; Make sure that the loop exit count computation does not overflow for i8 and
71; i16. The exit count of these loops is i8/i16 max + 1. If we don't cast the
72; induction variable to a bigger type the exit count computation will overflow
73; to 0.
74; PR17532
75
76; CHECK-LABEL: i8_loop
Benjamin Kramerc10563d2014-01-11 21:06:00 +000077; CHECK: icmp eq i32 {{.*}}, 256
Arnold Schwaighoferb72cb4e2013-11-18 13:14:32 +000078define i32 @i8_loop() nounwind readnone ssp uwtable {
79 br label %1
80
81; <label>:1 ; preds = %1, %0
82 %a.0 = phi i32 [ 1, %0 ], [ %2, %1 ]
83 %b.0 = phi i8 [ 0, %0 ], [ %3, %1 ]
84 %2 = and i32 %a.0, 4
85 %3 = add i8 %b.0, -1
86 %4 = icmp eq i8 %3, 0
87 br i1 %4, label %5, label %1
88
89; <label>:5 ; preds = %1
90 ret i32 %2
91}
92
93; CHECK-LABEL: i16_loop
Benjamin Kramerc10563d2014-01-11 21:06:00 +000094; CHECK: icmp eq i32 {{.*}}, 65536
Arnold Schwaighoferb72cb4e2013-11-18 13:14:32 +000095
96define i32 @i16_loop() nounwind readnone ssp uwtable {
97 br label %1
98
99; <label>:1 ; preds = %1, %0
100 %a.0 = phi i32 [ 1, %0 ], [ %2, %1 ]
101 %b.0 = phi i16 [ 0, %0 ], [ %3, %1 ]
102 %2 = and i32 %a.0, 4
103 %3 = add i16 %b.0, -1
104 %4 = icmp eq i16 %3, 0
105 br i1 %4, label %5, label %1
106
107; <label>:5 ; preds = %1
108 ret i32 %2
109}
Arnold Schwaighofere2067682014-05-29 22:10:01 +0000110
111; This loop has a backedge taken count of i32_max. We need to check for this
112; condition and branch directly to the scalar loop.
113
114; CHECK-LABEL: max_i32_backedgetaken
Wei Miedae87d2015-08-25 16:43:47 +0000115; CHECK: %min.iters.check = icmp ult i32 0, 2
116; CHECK: br i1 %min.iters.check, label %scalar.ph, label %min.iters.checked
Arnold Schwaighofere2067682014-05-29 22:10:01 +0000117
118; CHECK: scalar.ph:
119; CHECK: %bc.resume.val = phi i32 [ %resume.val, %middle.block ], [ 0, %0 ]
120; CHECK: %bc.merge.rdx = phi i32 [ 1, %0 ], [ %5, %middle.block ]
121
122define i32 @max_i32_backedgetaken() nounwind readnone ssp uwtable {
123
124 br label %1
125
126; <label>:1 ; preds = %1, %0
127 %a.0 = phi i32 [ 1, %0 ], [ %2, %1 ]
128 %b.0 = phi i32 [ 0, %0 ], [ %3, %1 ]
129 %2 = and i32 %a.0, 4
130 %3 = add i32 %b.0, -1
131 %4 = icmp eq i32 %3, 0
132 br i1 %4, label %5, label %1
133
134; <label>:5 ; preds = %1
135 ret i32 %2
136}
Arnold Schwaighoferc11107c2014-06-22 03:38:59 +0000137
138; When generating the overflow check we must sure that the induction start value
139; is defined before the branch to the scalar preheader.
140
141; CHECK-LABEL: testoverflowcheck
142; CHECK: entry
143; CHECK: %[[LOAD:.*]] = load i8
Arnold Schwaighoferc11107c2014-06-22 03:38:59 +0000144; CHECK: br
145
146; CHECK: scalar.ph
James Molloyc07701b2015-09-02 10:14:54 +0000147; CHECK: phi i8 [ %{{.*}}, %middle.block ], [ %[[LOAD]], %entry ]
Arnold Schwaighoferc11107c2014-06-22 03:38:59 +0000148
149@e = global i8 1, align 1
150@d = common global i32 0, align 4
151@c = common global i32 0, align 4
152define i32 @testoverflowcheck() {
153entry:
David Blaikiea79ac142015-02-27 21:17:42 +0000154 %.pr.i = load i8, i8* @e, align 1
155 %0 = load i32, i32* @d, align 4
156 %c.promoted.i = load i32, i32* @c, align 4
Arnold Schwaighoferc11107c2014-06-22 03:38:59 +0000157 br label %cond.end.i
158
159cond.end.i:
160 %inc4.i = phi i8 [ %.pr.i, %entry ], [ %inc.i, %cond.end.i ]
161 %and3.i = phi i32 [ %c.promoted.i, %entry ], [ %and.i, %cond.end.i ]
162 %and.i = and i32 %0, %and3.i
163 %inc.i = add i8 %inc4.i, 1
164 %tobool.i = icmp eq i8 %inc.i, 0
165 br i1 %tobool.i, label %loopexit, label %cond.end.i
166
167loopexit:
168 ret i32 %and.i
169}