LoopVectorizer: Pass OperandValueKind information to the cost model
[oota-llvm.git] / test / Transforms / LoopVectorize / X86 / constant-vector-operand.ll
1 ; RUN: opt -mtriple=x86_64-apple-darwin -mcpu=core2 -loop-vectorize -dce -instcombine -S < %s | FileCheck %s
2
3 @B = common global [1024 x i32] zeroinitializer, align 16
4 @A = common global [1024 x i32] zeroinitializer, align 16
5
6 ; We use to not vectorize this loop because the shift was deemed to expensive.
7 ; Now that we differentiate shift cost base on the operand value kind, we will
8 ; vectorize this loop.
9 ; CHECK: ashr <4 x i32>
10 define void @f() {
11 entry:
12   br label %for.body
13
14 for.body:
15   %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
16   %arrayidx = getelementptr inbounds [1024 x i32]* @B, i64 0, i64 %indvars.iv
17   %0 = load i32* %arrayidx, align 4
18   %shl = ashr i32 %0, 3
19   %arrayidx2 = getelementptr inbounds [1024 x i32]* @A, i64 0, i64 %indvars.iv
20   store i32 %shl, i32* %arrayidx2, align 4
21   %indvars.iv.next = add i64 %indvars.iv, 1
22   %lftr.wideiv = trunc i64 %indvars.iv.next to i32
23   %exitcond = icmp eq i32 %lftr.wideiv, 1024
24   br i1 %exitcond, label %for.end, label %for.body
25
26 for.end:
27   ret void
28 }