1 ; RUN: opt -basicaa -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
9 ; A[i][j] = A[i-1][j] * B[j]
10 ; B[j+1] = 2 // backward dep between this and the previous
13 ; is transformed by Load-PRE to stash away A[i] for the next iteration of the
16 ; Curr = A[0]; // Prev_0
18 ; Prev = Curr; // Prev = PHI (Prev_0, Curr)
21 ; Curr[j] = Prev[j] * B[j]
22 ; B[j+1] = 2 // backward dep between this and the previous
26 ; Since A[i] and A[i-1] are likely to be independent, getUnderlyingObjects
27 ; should not assume that Curr and Prev share the same underlying object.
29 ; If it did we would try to dependence-analyze Curr and Prev and the analysis
30 ; would fail with non-constant distance.
32 ; To illustrate one of the negative consequences of this, if the loop has a
33 ; backward dependence we won't detect this but instead fully fall back on
34 ; memchecks (that is what LAA does after encountering a case of non-constant
37 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
38 target triple = "x86_64-apple-macosx10.10.0"
41 ; CHECK-NEXT: Report: unsafe dependent memory operations in loop
42 ; CHECK-NEXT: Dependences:
43 ; CHECK-NEXT: Backward:
44 ; CHECK-NEXT: %loadB = load i8, i8* %gepB, align 1 ->
45 ; CHECK-NEXT: store i8 2, i8* %gepB_plus_one, align 1
47 define void @f(i8** noalias %A, i8* noalias %B, i64 %N) {
49 %prev_0 = load i8*, i8** %A, align 8
53 %i = phi i64 [1, %for_i.preheader], [%i.1, %for_j.end]
54 %prev = phi i8* [%prev_0, %for_i.preheader], [%curr, %for_j.end]
55 %gep = getelementptr inbounds i8*, i8** %A, i64 %i
56 %curr = load i8*, i8** %gep, align 8
57 br label %for_j.preheader
63 %j = phi i64 [0, %for_j.preheader], [%j.1, %for_j.body]
65 %gepPrev = getelementptr inbounds i8, i8* %prev, i64 %j
66 %gepCurr = getelementptr inbounds i8, i8* %curr, i64 %j
67 %gepB = getelementptr inbounds i8, i8* %B, i64 %j
69 %loadPrev = load i8, i8* %gepPrev, align 1
70 %loadB = load i8, i8* %gepB, align 1
72 %mul = mul i8 %loadPrev, %loadB
74 store i8 %mul, i8* %gepCurr, align 1
76 %gepB_plus_one = getelementptr inbounds i8, i8* %gepB, i64 1
77 store i8 2, i8* %gepB_plus_one, align 1
79 %j.1 = add nuw i64 %j, 1
80 %exitcondj = icmp eq i64 %j.1, %N
81 br i1 %exitcondj, label %for_j.end, label %for_j.body
85 %i.1 = add nuw i64 %i, 1
86 %exitcond = icmp eq i64 %i.1, %N
87 br i1 %exitcond, label %for_i.end, label %for_i.body