[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / polly / test / ScheduleOptimizer / GreedyFuse / fuse-simple.ll
blob49d008ba2cfa0a60278da3dab215617725920009
1 ; RUN: opt %loadPolly -polly-reschedule=0 -polly-loopfusion-greedy=1 -polly-postopts=0 -polly-print-opt-isl -disable-output < %s | FileCheck %s
2 ; RUN: opt %loadPolly -polly-reschedule=1 -polly-loopfusion-greedy=1 -polly-postopts=0 -polly-print-opt-isl -disable-output < %s | FileCheck %s
4 define void @func(i32 %n, ptr noalias nonnull %A) {
5 entry:
6   br label %for1
8 for1:
9   %j1 = phi i32 [0, %entry], [%j1.inc, %inc1]
10   %j1.cmp = icmp slt i32 %j1, %n
11   br i1 %j1.cmp, label %body1, label %exit1
13     body1:
14       %arrayidx1 = getelementptr inbounds double, ptr %A, i32 %j1
15       store double 21.0, ptr %arrayidx1
16       br label %inc1
18 inc1:
19   %j1.inc = add nuw nsw i32 %j1, 1
20   br label %for1
22 exit1:
23   br label %for2
25 for2:
26   %j2 = phi i32 [0, %exit1], [%j2.inc, %inc2]
27   %j2.cmp = icmp slt i32 %j2, %n
28   br i1 %j2.cmp, label %body2, label %exit2
30     body2:
31       %arrayidx2 = getelementptr inbounds double, ptr %A, i32 %j2
32       store double 42.0, ptr %arrayidx2
33       br label %inc2
35 inc2:
36   %j2.inc = add nuw nsw i32 %j2, 1
37   br label %for2
39 exit2:
40   br label %return
42 return:
43   ret void
47 ; CHECK:      Calculated schedule:
48 ; CHECK-NEXT: domain: "[n] -> { Stmt_body2[i0] : 0 <= i0 < n; Stmt_body1[i0] : 0 <= i0 < n }"
49 ; CHECK-NEXT: child:
50 ; CHECK-NEXT:   schedule: "[n] -> [{ Stmt_body2[i0] -> [(i0)]; Stmt_body1[i0] -> [(i0)] }]"
51 ; CHECK-NEXT:   child:
52 ; CHECK-NEXT:     sequence:
53 ; CHECK-NEXT:     - filter: "[n] -> { Stmt_body1[i0] }"
54 ; CHECK-NEXT:     - filter: "[n] -> { Stmt_body2[i0] }"