blob: 995fc1f2c3dd5ba9cf6ff1c7822d5e67350ecb09 [file] [log] [blame]
Michael Zolotukhincd2255e2017-07-25 10:35:16 +00001; RUN: opt < %s -O2 -force-vector-interleave=2 -force-vector-width=4 -debug-only=loop-vectorize -S 2>&1 | FileCheck %s
NAKAMURA Takumi0ec19182014-04-15 10:12:47 +00002; REQUIRES: asserts
Alexey Bataevb97f9e82014-04-15 09:37:30 +00003
Michael Zolotukhincd2255e2017-07-25 10:35:16 +00004; CHECK: LV: Checking a loop in "foo"
Alexey Bataevb97f9e82014-04-15 09:37:30 +00005; CHECK: LV: Loop hints: force=enabled
Alexey Bataevb97f9e82014-04-15 09:37:30 +00006
7target 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"
Alexey Bataevb97f9e82014-04-15 09:37:30 +00008
Eli Bendersky5d5e18d2014-06-25 15:41:00 +00009; Ensure that "llvm.loop.vectorize.enable" metadata was not lost even
Michael Zolotukhincd2255e2017-07-25 10:35:16 +000010; if loop was not rotated.
Alexey Bataevb97f9e82014-04-15 09:37:30 +000011;
Michael Zolotukhincd2255e2017-07-25 10:35:16 +000012; See http://reviews.llvm.org/D3348 for details.
13;
14; CHECK-LABEL: @foo
15; CHECK: !llvm.loop !0
16; CHECK: !0 = distinct !{!0, !1}
17; CHECK: !1 = !{!"llvm.loop.vectorize.enable", i1 true}
18define i32 @foo(i32 %a) {
Alexey Bataevb97f9e82014-04-15 09:37:30 +000019entry:
20 br label %loop_cond
Michael Zolotukhincd2255e2017-07-25 10:35:16 +000021
Alexey Bataevb97f9e82014-04-15 09:37:30 +000022loop_cond:
23 %indx = phi i32 [ 1, %entry ], [ %inc, %loop_inc ]
24 %cmp = icmp ne i32 %indx, %a
25 br i1 %cmp, label %return, label %loop_inc
Michael Zolotukhincd2255e2017-07-25 10:35:16 +000026
Alexey Bataevb97f9e82014-04-15 09:37:30 +000027loop_inc:
28 %inc = add i32 %indx, 1
Michael Zolotukhincd2255e2017-07-25 10:35:16 +000029 br label %loop_cond, !llvm.loop !0
30
Alexey Bataevb97f9e82014-04-15 09:37:30 +000031return:
32 ret i32 0
33}
34
Michael Zolotukhincd2255e2017-07-25 10:35:16 +000035!0 = !{!0, !1}
36!1 = !{!"llvm.loop.vectorize.enable", i1 true}