[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / LoopVectorize / non-const-n.ll
blobd909bc8166845fa16c9b995e142cd00483237926
1 ; RUN: opt < %s  -loop-vectorize -force-vector-interleave=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
3 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"
5 @b = common global [2048 x i32] zeroinitializer, align 16
6 @c = common global [2048 x i32] zeroinitializer, align 16
7 @a = common global [2048 x i32] zeroinitializer, align 16
9 ;CHECK-LABEL: @example1(
10 ;CHECK: shl i32
11 ;CHECK: zext i32
12 ;CHECK: load <4 x i32>
13 ;CHECK: add nsw <4 x i32>
14 ;CHECK: store <4 x i32>
15 ;CHECK: ret void
16 define void @example1(i32 %n) nounwind uwtable ssp {
17   %n4 = shl i32 %n, 2
18   br label %1
20 ; <label>:1                                       ; preds = %1, %0
21   %indvars.iv = phi i64 [ 0, %0 ], [ %indvars.iv.next, %1 ]
22   %2 = getelementptr inbounds [2048 x i32], [2048 x i32]* @b, i64 0, i64 %indvars.iv
23   %3 = load i32, i32* %2, align 4
24   %4 = getelementptr inbounds [2048 x i32], [2048 x i32]* @c, i64 0, i64 %indvars.iv
25   %5 = load i32, i32* %4, align 4
26   %6 = add nsw i32 %5, %3
27   %7 = getelementptr inbounds [2048 x i32], [2048 x i32]* @a, i64 0, i64 %indvars.iv
28   store i32 %6, i32* %7, align 4
29   %indvars.iv.next = add i64 %indvars.iv, 1
30   %lftr.wideiv = trunc i64 %indvars.iv.next to i32
31   %exitcond = icmp eq i32 %lftr.wideiv, %n4
32   br i1 %exitcond, label %8, label %1
34 ; <label>:8                                       ; preds = %1
35   ret void