/* * 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:<> /// CHECK-DAG: StaticFieldSet 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: <> IntConstant 68 loop:none /// CHECK-DAG: StaticFieldSet [{{l\d+}},<>] 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 loop:<> /// CHECK-DAG: StaticFieldSet loop:<> /// CHECK-DAG: Return [<>] 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: <> IntConstant 187 loop:none /// CHECK-DAG: <> IntConstant 12 loop:none /// CHECK-DAG: StaticFieldSet [{{l\d+}},<>] loop:none /// CHECK-DAG: Return [<>] 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: <> Phi loop:<> outer_loop:none /// CHECK-DAG: SuspendCheck loop:<> outer_loop:none /// CHECK-DAG: <> Phi loop:<> outer_loop:<> /// CHECK-DAG: SuspendCheck loop:<> outer_loop:<> /// CHECK-DAG: <> Phi loop:<> outer_loop:<> /// CHECK-DAG: SuspendCheck loop:<> outer_loop:<> /// CHECK-DAG: StaticFieldSet loop:<> outer_loop:<> // /// 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: <> IntConstant 6 loop:none /// CHECK-DAG: StaticFieldSet [{{l\d+}},<>] 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); } } }