Michael Zolotukhin | cd2255e | 2017-07-25 10:35:16 +0000 | [diff] [blame] | 1 | ; RUN: opt < %s -O2 -force-vector-interleave=2 -force-vector-width=4 -debug-only=loop-vectorize -S 2>&1 | FileCheck %s |
NAKAMURA Takumi | 0ec1918 | 2014-04-15 10:12:47 +0000 | [diff] [blame] | 2 | ; REQUIRES: asserts |
Alexey Bataev | b97f9e8 | 2014-04-15 09:37:30 +0000 | [diff] [blame] | 3 | |
Michael Zolotukhin | cd2255e | 2017-07-25 10:35:16 +0000 | [diff] [blame] | 4 | ; CHECK: LV: Checking a loop in "foo" |
Alexey Bataev | b97f9e8 | 2014-04-15 09:37:30 +0000 | [diff] [blame] | 5 | ; CHECK: LV: Loop hints: force=enabled |
Alexey Bataev | b97f9e8 | 2014-04-15 09:37:30 +0000 | [diff] [blame] | 6 | |
| 7 | 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" |
Alexey Bataev | b97f9e8 | 2014-04-15 09:37:30 +0000 | [diff] [blame] | 8 | |
Eli Bendersky | 5d5e18d | 2014-06-25 15:41:00 +0000 | [diff] [blame] | 9 | ; Ensure that "llvm.loop.vectorize.enable" metadata was not lost even |
Michael Zolotukhin | cd2255e | 2017-07-25 10:35:16 +0000 | [diff] [blame] | 10 | ; if loop was not rotated. |
Alexey Bataev | b97f9e8 | 2014-04-15 09:37:30 +0000 | [diff] [blame] | 11 | ; |
Michael Zolotukhin | cd2255e | 2017-07-25 10:35:16 +0000 | [diff] [blame] | 12 | ; 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} |
| 18 | define i32 @foo(i32 %a) { |
Alexey Bataev | b97f9e8 | 2014-04-15 09:37:30 +0000 | [diff] [blame] | 19 | entry: |
| 20 | br label %loop_cond |
Michael Zolotukhin | cd2255e | 2017-07-25 10:35:16 +0000 | [diff] [blame] | 21 | |
Alexey Bataev | b97f9e8 | 2014-04-15 09:37:30 +0000 | [diff] [blame] | 22 | loop_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 Zolotukhin | cd2255e | 2017-07-25 10:35:16 +0000 | [diff] [blame] | 26 | |
Alexey Bataev | b97f9e8 | 2014-04-15 09:37:30 +0000 | [diff] [blame] | 27 | loop_inc: |
| 28 | %inc = add i32 %indx, 1 |
Michael Zolotukhin | cd2255e | 2017-07-25 10:35:16 +0000 | [diff] [blame] | 29 | br label %loop_cond, !llvm.loop !0 |
| 30 | |
Alexey Bataev | b97f9e8 | 2014-04-15 09:37:30 +0000 | [diff] [blame] | 31 | return: |
| 32 | ret i32 0 |
| 33 | } |
| 34 | |
Michael Zolotukhin | cd2255e | 2017-07-25 10:35:16 +0000 | [diff] [blame] | 35 | !0 = !{!0, !1} |
| 36 | !1 = !{!"llvm.loop.vectorize.enable", i1 true} |