Sanjay Patel | b653de1 | 2014-09-10 17:58:16 +0000 | [diff] [blame] | 1 | ; RUN: opt < %s -loop-vectorize -force-vector-interleave=4 -force-vector-width=4 -debug-only=loop-vectorize -stats -S 2>&1 | FileCheck %s |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 2 | ; REQUIRES: asserts |
| 3 | |
| 4 | ; |
| 5 | ; We have 2 loops, one of them is vectorizable and the second one is not. |
| 6 | ; |
| 7 | |
| 8 | ; CHECK: 2 loop-vectorize - Number of loops analyzed for vectorization |
| 9 | ; CHECK: 1 loop-vectorize - Number of loops vectorized |
| 10 | |
| 11 | 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" |
| 12 | target triple = "x86_64-unknown-linux-gnu" |
| 13 | |
| 14 | define void @vectorized(float* nocapture %a, i64 %size) { |
| 15 | entry: |
Michael Zolotukhin | 540580c | 2014-12-02 22:59:02 +0000 | [diff] [blame] | 16 | %cmp1 = icmp sle i64 %size, 0 |
| 17 | %cmp21 = icmp sgt i64 0, %size |
| 18 | %or.cond = or i1 %cmp1, %cmp21 |
| 19 | br i1 %or.cond, label %for.end, label %for.body |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 20 | |
Michael Zolotukhin | 540580c | 2014-12-02 22:59:02 +0000 | [diff] [blame] | 21 | for.body: ; preds = %entry, %for.body |
| 22 | %indvars.iv2 = phi i64 [ %indvars.iv.next, %for.body ], [ 0, %entry ] |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 23 | %arrayidx = getelementptr inbounds float, float* %a, i64 %indvars.iv2 |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 24 | %0 = load float, float* %arrayidx, align 4 |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 25 | %mul = fmul float %0, %0 |
| 26 | store float %mul, float* %arrayidx, align 4 |
Michael Zolotukhin | 540580c | 2014-12-02 22:59:02 +0000 | [diff] [blame] | 27 | %indvars.iv.next = add nuw nsw i64 %indvars.iv2, 1 |
| 28 | %cmp2 = icmp sgt i64 %indvars.iv.next, %size |
| 29 | br i1 %cmp2, label %for.end, label %for.body |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 30 | |
Michael Zolotukhin | 540580c | 2014-12-02 22:59:02 +0000 | [diff] [blame] | 31 | for.end: ; preds = %entry, %for.body |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 32 | ret void |
| 33 | } |
| 34 | |
| 35 | define void @not_vectorized(float* nocapture %a, i64 %size) { |
| 36 | entry: |
Michael Zolotukhin | 540580c | 2014-12-02 22:59:02 +0000 | [diff] [blame] | 37 | %cmp1 = icmp sle i64 %size, 0 |
| 38 | %cmp21 = icmp sgt i64 0, %size |
| 39 | %or.cond = or i1 %cmp1, %cmp21 |
| 40 | br i1 %or.cond, label %for.end, label %for.body |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 41 | |
Michael Zolotukhin | 540580c | 2014-12-02 22:59:02 +0000 | [diff] [blame] | 42 | for.body: ; preds = %entry, %for.body |
| 43 | %indvars.iv2 = phi i64 [ %indvars.iv.next, %for.body ], [ 0, %entry ] |
| 44 | %0 = add nsw i64 %indvars.iv2, -5 |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 45 | %arrayidx = getelementptr inbounds float, float* %a, i64 %0 |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 46 | %1 = load float, float* %arrayidx, align 4 |
Michael Zolotukhin | 540580c | 2014-12-02 22:59:02 +0000 | [diff] [blame] | 47 | %2 = add nsw i64 %indvars.iv2, 2 |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 48 | %arrayidx2 = getelementptr inbounds float, float* %a, i64 %2 |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 49 | %3 = load float, float* %arrayidx2, align 4 |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 50 | %mul = fmul float %1, %3 |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 51 | %arrayidx4 = getelementptr inbounds float, float* %a, i64 %indvars.iv2 |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 52 | store float %mul, float* %arrayidx4, align 4 |
Michael Zolotukhin | 540580c | 2014-12-02 22:59:02 +0000 | [diff] [blame] | 53 | %indvars.iv.next = add nuw nsw i64 %indvars.iv2, 1 |
| 54 | %cmp2 = icmp sgt i64 %indvars.iv.next, %size |
| 55 | br i1 %cmp2, label %for.end, label %for.body |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 56 | |
Michael Zolotukhin | 540580c | 2014-12-02 22:59:02 +0000 | [diff] [blame] | 57 | for.end: ; preds = %entry, %for.body |
Alexander Musman | f0785f4 | 2014-04-23 08:40:37 +0000 | [diff] [blame] | 58 | ret void |
Sanjay Patel | b653de1 | 2014-09-10 17:58:16 +0000 | [diff] [blame] | 59 | } |