[InstCombine] Signed saturation tests. NFC
[llvm-core.git] / test / Analysis / LoopAccessAnalysis / pointer-with-unknown-bounds.ll
bloba10b851bcd1a24e6baf09caf944b2c97560e885b
1 ; RUN: opt -loop-accesses -analyze < %s | FileCheck %s
2 ; RUN: opt -passes='require<scalar-evolution>,require<aa>,loop(print-access-info)' -disable-output  < %s 2>&1 | FileCheck %s
4 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
6 ; We shouldn't quit the analysis if we encounter a pointer without known
7 ; bounds *unless* we actually need to emit a memcheck for it.  (We only
8 ; compute bounds for SCEVAddRecs so A[i*i] is deemed not having known bounds.)
10 ; for (i = 0; i < 20; ++i)
11 ;   A[i*i] *= 2;
13 ; CHECK: for.body:
14 ; CHECK:     Report: unsafe dependent memory operations in loop
15 ; CHECK-NOT: Report: cannot identify array bounds
16 ; CHECK:     Dependences:
17 ; CHECK:       Unknown:
18 ; CHECK:           %loadA = load i16, i16* %arrayidxA, align 2 ->
19 ; CHECK:           store i16 %mul, i16* %arrayidxA, align 2
21 define void @f(i16* %a) {
22 entry:
23   br label %for.body
25 for.body:                                         ; preds = %for.body, %entry
26   %ind = phi i64 [ 0, %entry ], [ %add, %for.body ]
28   %access_ind = mul i64 %ind, %ind
30   %arrayidxA = getelementptr inbounds i16, i16* %a, i64 %access_ind
31   %loadA = load i16, i16* %arrayidxA, align 2
33   %mul = mul i16 %loadA, 2
35   store i16 %mul, i16* %arrayidxA, align 2
37   %add = add nuw nsw i64 %ind, 1
38   %exitcond = icmp eq i64 %add, 20
39   br i1 %exitcond, label %for.end, label %for.body
41 for.end:                                          ; preds = %for.body
42   ret void