Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / LoopLoadElim / unknown-dep.ll
blob9a8f479f10ae024231edc7ac72f1d84450dddf37
1 ; RUN: opt -passes=loop-load-elim -S < %s | FileCheck %s
3 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
5 ; Give up in the presence of unknown deps. Here, the different strides result
6 ; in unknown dependence:
8 ;   for (unsigned i = 0; i < 100; i++) {
9 ;     A[i+1] = B[i] + 2;
10 ;     A[2*i] = C[i] + 2;
11 ;     D[i] = A[i] + 2;
12 ;   }
14 define void @f(ptr noalias %A, ptr noalias %B, ptr noalias %C,
15                ptr noalias %D, i64 %N) {
17 entry:
18 ; for.body.ph:
19 ; CHECK-NOT: %load_initial =
20   br label %for.body
22 for.body:                                         ; preds = %for.body, %entry
23 ; CHECK-NOT: %store_forwarded =
24   %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
25   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
27   %Aidx_next = getelementptr inbounds i32, ptr %A, i64 %indvars.iv.next
28   %Bidx = getelementptr inbounds i32, ptr %B, i64 %indvars.iv
29   %Cidx = getelementptr inbounds i32, ptr %C, i64 %indvars.iv
30   %Didx = getelementptr inbounds i32, ptr %D, i64 %indvars.iv
31   %Aidx = getelementptr inbounds i32, ptr %A, i64 %indvars.iv
32   %indvars.m2 = mul nuw nsw i64 %indvars.iv, 2
33   %A2idx = getelementptr inbounds i32, ptr %A, i64 %indvars.m2
35   %b = load i32, ptr %Bidx, align 4
36   %a_p1 = add i32 %b, 2
37   store i32 %a_p1, ptr %Aidx_next, align 4
39   %c = load i32, ptr %Cidx, align 4
40   %a_m2 = add i32 %c, 2
41   store i32 %a_m2, ptr %A2idx, align 4
43   %a = load i32, ptr %Aidx, align 4
44 ; CHECK-NOT: %d = add i32 %store_forwarded, 2
45 ; CHECK: %d = add i32 %a, 2
46   %d = add i32 %a, 2
47   store i32 %d, ptr %Didx, align 4
49   %exitcond = icmp eq i64 %indvars.iv.next, %N
50   br i1 %exitcond, label %for.end, label %for.body
52 for.end:                                          ; preds = %for.body
53   ret void