Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[llvm-project.git] / polly / test / MaximalStaticExpansion / too_many_writes.ll
blob7e33de17a1749fcd768f51c650c73d4d3d7d7111
1 ; RUN: opt %loadNPMPolly "-passes=scop(print<polly-mse>)" -disable-output < %s | FileCheck %s
2 ; RUN: opt %loadNPMPolly "-passes=scop(print<polly-mse>)" -pass-remarks-analysis="polly-mse" -disable-output < %s 2>&1 | FileCheck %s --check-prefix=MSE
4 ; Verify that Polly detects problems and does not expand the array
6 ; Original source code :
8 ; #define Ni 2000
9 ; #define Nj 2000
11 ; double mse(double A[Ni], double B[Nj]) {
12 ;   int i;
13 ;   double tmp = 6;
14 ;   for (i = 0; i < Ni; i++) {
15 ;     B[i] = 2;
16 ;     for (int j = 0; j<Nj; j++) {
17 ;       B[j] = j;
18 ;     }
19 ;     A[i] = B[i];
20 ;   }
21 ;   return tmp;
22 ; }
24 ; Check that the pass detects that there are more than 1 write access per array.
26 ; MSE: MemRef_B has more than 1 write access.
28 ; Check that the SAI is not expanded
30 ; CHECK-NOT: double MemRef_B2_expanded[2000][3000]; // Element size 8
32 ; Check that the  memory accesses are not modified
34 ; CHECK-NOT: new: { Stmt_for_body3[i0, i1] -> MemRef_B_Stmt_for_body3_expanded[i0, i1] };
35 ; CHECK-NOT: new: { Stmt_for_end[i0] -> MemRef_B_Stmt_for_body3_expanded
37 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
38 target triple = "x86_64-unknown-linux-gnu"
40 define double @mse(ptr %A, ptr %B) {
41 entry:
42   br label %entry.split
44 entry.split:                                      ; preds = %entry
45   br label %for.body
47 for.body:                                         ; preds = %entry.split, %for.end
48   %indvars.iv3 = phi i64 [ 0, %entry.split ], [ %indvars.iv.next4, %for.end ]
49   %arrayidx = getelementptr inbounds double, ptr %B, i64 %indvars.iv3
50   store double 2.000000e+00, ptr %arrayidx, align 8
51   br label %for.body3
53 for.body3:                                        ; preds = %for.body, %for.body3
54   %indvars.iv = phi i64 [ 0, %for.body ], [ %indvars.iv.next, %for.body3 ]
55   %0 = trunc i64 %indvars.iv to i32
56   %conv = sitofp i32 %0 to double
57   %arrayidx5 = getelementptr inbounds double, ptr %B, i64 %indvars.iv
58   store double %conv, ptr %arrayidx5, align 8
59   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
60   %exitcond = icmp ne i64 %indvars.iv.next, 2000
61   br i1 %exitcond, label %for.body3, label %for.end
63 for.end:                                          ; preds = %for.body3
64   %arrayidx7 = getelementptr inbounds double, ptr %B, i64 %indvars.iv3
65   %1 = load i64, ptr %arrayidx7, align 8
66   %arrayidx9 = getelementptr inbounds double, ptr %A, i64 %indvars.iv3
67   store i64 %1, ptr %arrayidx9, align 8
68   %indvars.iv.next4 = add nuw nsw i64 %indvars.iv3, 1
69   %exitcond5 = icmp ne i64 %indvars.iv.next4, 2000
70   br i1 %exitcond5, label %for.body, label %for.end12
72 for.end12:                                        ; preds = %for.end
73   ret double 6.000000e+00