ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 * Copyright (C) 2016 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 
//
// Test on loop unrolling. Removes loop control overhead (including suspend
// checks) and exposes more opportunities for constant folding.
//
public class Main {
 
  static int sA = 0;
 
  /// CHECK-START: void Main.unroll() loop_optimization (before)
  /// CHECK-DAG: Phi            loop:<<Loop:B\d+>>
  /// CHECK-DAG: StaticFieldSet loop:<<Loop>>
  //
  /// CHECK-START: void Main.unroll() loop_optimization (after)
  /// CHECK-DAG: StaticFieldSet loop:none
  //
  /// CHECK-START: void Main.unroll() instruction_simplifier$after_bce (after)
  /// CHECK-DAG: <<Int:i\d+>> IntConstant    68                  loop:none
  /// CHECK-DAG:              StaticFieldSet [{{l\d+}},<<Int>>]  loop:none
  //
  /// CHECK-START: void Main.unroll() loop_optimization (after)
  /// CHECK-NOT: Phi
  public static void unroll() {
    for (int i = 4; i < 5; i++) {
      sA = 17 * i;
    }
  }
 
  /// CHECK-START: int Main.unrollLV() loop_optimization (before)
  /// CHECK-DAG: <<Phi:i\d+>> Phi              loop:<<Loop:B\d+>>
  /// CHECK-DAG:              StaticFieldSet   loop:<<Loop>>
  /// CHECK-DAG:              Return [<<Phi>>] loop:none
  //
  /// CHECK-START: int Main.unrollLV() loop_optimization (after)
  /// CHECK-DAG: StaticFieldSet loop:none
  //
  /// CHECK-START: int Main.unrollLV() instruction_simplifier$after_bce (after)
  /// CHECK-DAG: <<Int1:i\d+>> IntConstant    187                 loop:none
  /// CHECK-DAG: <<Int2:i\d+>> IntConstant    12                  loop:none
  /// CHECK-DAG:               StaticFieldSet [{{l\d+}},<<Int1>>] loop:none
  /// CHECK-DAG:               Return [<<Int2>>]                  loop:none
  //
  /// CHECK-START: int Main.unrollLV() loop_optimization (after)
  /// CHECK-NOT: Phi
  public static int unrollLV() {
    int i;
    for (i = 11; i < 12; i++) {
      sA = 17 * i;
    }
    return i;
  }
 
  /// CHECK-START: void Main.unrollNest() loop_optimization (before)
  /// CHECK-DAG:               SuspendCheck    loop:none
  /// CHECK-DAG: <<Phi1:i\d+>> Phi             loop:<<Loop1:B\d+>> outer_loop:none
  /// CHECK-DAG:               SuspendCheck    loop:<<Loop1>>      outer_loop:none
  /// CHECK-DAG: <<Phi2:i\d+>> Phi             loop:<<Loop2:B\d+>> outer_loop:<<Loop1>>
  /// CHECK-DAG:               SuspendCheck    loop:<<Loop2>>      outer_loop:<<Loop1>>
  /// CHECK-DAG: <<Phi3:i\d+>> Phi             loop:<<Loop3:B\d+>> outer_loop:<<Loop2>>
  /// CHECK-DAG:               SuspendCheck    loop:<<Loop3>>      outer_loop:<<Loop2>>
  /// CHECK-DAG:               StaticFieldSet  loop:<<Loop3>>      outer_loop:<<Loop2>>
  //
  /// CHECK-START: void Main.unrollNest() loop_optimization (after)
  /// CHECK-DAG: StaticFieldSet loop:none
  /// CHECK-DAG: SuspendCheck   loop:none
  /// CHECK-NOT: SuspendCheck
  //
  /// CHECK-START: void Main.unrollNest() instruction_simplifier$after_bce (after)
  /// CHECK-DAG: <<Int:i\d+>> IntConstant    6                   loop:none
  /// CHECK-DAG:              StaticFieldSet [{{l\d+}},<<Int>>]  loop:none
  //
  /// CHECK-START: void Main.unrollNest() loop_optimization (after)
  /// CHECK-NOT: Phi
  public static void unrollNest() {
    // Unrolling each loop in turn ultimately removes the complete nest!
    for (int i = 4; i < 5; i++) {
      for (int j = 5; j < 6; j++) {
        for (int k = 6; k < 7; k++) {
          sA = k;
        }
      }
    }
  }
 
  //
  // Verifier.
  //
 
  public static void main(String[] args) {
    unroll();
    expectEquals(68, sA);
    expectEquals(12, unrollLV());
    expectEquals(187, sA);
    unrollNest();
    expectEquals(6, sA);
    System.out.println("passed");
  }
 
  private static void expectEquals(int expected, int result) {
    if (expected != result) {
      throw new Error("Expected: " + expected + ", found: " + result);
    }
  }
}