workflows/scorecard: Run this job once per day instead of for every push
[llvm-project.git] / polly / test / ScopInfo / granularity_scalar-indep_noepilogue.ll
blob9a0d207c0c2a1ebfb5a9faf8036214570ba9f150
1 ; RUN: opt %loadPolly -polly-stmt-granularity=scalar-indep -polly-print-instructions -polly-print-scops -disable-output < %s | FileCheck %s -match-full-lines
3 ; This case has no explicit epilogue for PHI writes because it would
4 ; have a scalar dependency to the previous statement.
6 ; for (int j = 0; j < n; j += 1) {
7 ; bodyA:
8 ;   double valA = A[0];
9 ;   A[0] = valA;
11 ; bodyB:
12 ;   phi = valA;
13 ; }
15 define void @func(i32 %n, ptr noalias nonnull %A) {
16 entry:
17   br label %for
19 for:
20   %j = phi i32 [0, %entry], [%j.inc, %inc]
21   %j.cmp = icmp slt i32 %j, %n
22   br i1 %j.cmp, label %bodyA, label %exit
24     bodyA:
25       %valA = load double, ptr %A
26       store double %valA, ptr %A
27       br label %bodyB
29     bodyB:
30       %phi = phi double [%valA, %bodyA]
31       br label %inc
33 inc:
34   %j.inc = add nuw nsw i32 %j, 1
35   br label %for
37 exit:
38   br label %return
40 return:
41   ret void
45 ; CHECK:      Statements {
46 ; CHECK-NEXT:     Stmt_bodyA
47 ; CHECK-NEXT:         Domain :=
48 ; CHECK-NEXT:             [n] -> { Stmt_bodyA[i0] : 0 <= i0 < n };
49 ; CHECK-NEXT:         Schedule :=
50 ; CHECK-NEXT:             [n] -> { Stmt_bodyA[i0] -> [i0] };
51 ; CHECK-NEXT:         ReadAccess :=       [Reduction Type: NONE] [Scalar: 0]
52 ; CHECK-NEXT:             [n] -> { Stmt_bodyA[i0] -> MemRef_A[0] };
53 ; CHECK-NEXT:         MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 0]
54 ; CHECK-NEXT:             [n] -> { Stmt_bodyA[i0] -> MemRef_A[0] };
55 ; CHECK-NEXT:         MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 1]
56 ; CHECK-NEXT:             [n] -> { Stmt_bodyA[i0] -> MemRef_phi__phi[] };
57 ; CHECK-NEXT:         Instructions {
58 ; CHECK-NEXT:               %valA = load double, ptr %A, align 8
59 ; CHECK-NEXT:               store double %valA, ptr %A, align 8
60 ; CHECK-NEXT:         }
61 ; CHECK-NEXT: }