|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +/* |
| 25 | + * @test |
| 26 | + * @bug 8298176 |
| 27 | + * @summary Must remove OpaqueZeroTripGuardPostLoop after main loop disappears else |
| 28 | + * the zero-trip-guard of the post loop cannot die and leaves an inconsistent |
| 29 | + * graph behind. |
| 30 | + * @run main/othervm -Xcomp -XX:-TieredCompilation |
| 31 | + * -XX:CompileCommand=compileonly,TestOpaqueZeroTripGuardPostLoopRemoval::test* |
| 32 | + * -XX:CompileCommand=dontinline,TestOpaqueZeroTripGuardPostLoopRemoval::* |
| 33 | + * TestOpaqueZeroTripGuardPostLoopRemoval |
| 34 | + */ |
| 35 | + |
| 36 | +public class TestOpaqueZeroTripGuardPostLoopRemoval { |
| 37 | + static long x; |
| 38 | + |
| 39 | + public static void main(String[] strArr) { |
| 40 | + test_001(); |
| 41 | + test_002(); |
| 42 | + try { |
| 43 | + test_003(); |
| 44 | + } catch (Exception e) { |
| 45 | + // Expected |
| 46 | + } |
| 47 | + test_004(); |
| 48 | + test_005(); |
| 49 | + } |
| 50 | + |
| 51 | + static void test_001() { |
| 52 | + int b = 6; |
| 53 | + for (long l = 1; l < 9; l++) { |
| 54 | + b++; |
| 55 | + } |
| 56 | + for (int i = 1; i < 1000; i*=2) { |
| 57 | + for (int j = 1; j < 2; j++) { |
| 58 | + x = b + 1; |
| 59 | + } |
| 60 | + } |
| 61 | + } |
| 62 | + |
| 63 | + static void test_002() { |
| 64 | + int b = 6; |
| 65 | + for (long l = 60; l < 3000; l+=3) { |
| 66 | + // bounds of loop: no work for post loop |
| 67 | + b += 33; // any multiple of iv step |
| 68 | + } |
| 69 | + for (int i = 1; i < 1000; i*=2) { |
| 70 | + for (int j = 1; j < 2; j++) { |
| 71 | + x = b + 1; |
| 72 | + } |
| 73 | + } |
| 74 | + } |
| 75 | + |
| 76 | + static void dontInline() { |
| 77 | + throw new RuntimeException(); |
| 78 | + } |
| 79 | + |
| 80 | + static int test_003() { |
| 81 | + int y = 3; |
| 82 | + for (int i = 0; i < 9; ) { |
| 83 | + for (long l = 1; l < 5; l++) { |
| 84 | + y *= 2; |
| 85 | + } |
| 86 | + while (true) { |
| 87 | + dontInline(); |
| 88 | + } |
| 89 | + } |
| 90 | + return y; |
| 91 | + } |
| 92 | + |
| 93 | + static void test_004() { |
| 94 | + for (int i2 = 4; i2 < 13; i2++) { |
| 95 | + double d = 56; |
| 96 | + for (long l = 1; l < 5; l++) { |
| 97 | + d = d + 3; |
| 98 | + } |
| 99 | + for (int i = 0; i < 10; i++) { |
| 100 | + for (int d2 = i2; d2 < 2; d2 = 3) { |
| 101 | + } |
| 102 | + } |
| 103 | + } |
| 104 | + } |
| 105 | + |
| 106 | + public static int test_005() { |
| 107 | + long arr[]=new long[400]; |
| 108 | + for (int i = 3; i < 177; i++) { |
| 109 | + for (int j = 0; j < 10; j++){} |
| 110 | + } |
| 111 | + int y = 0; |
| 112 | + for (int i = 15; i < 356; i++) { |
| 113 | + // Inner loop prevents strip-mining of outer loop |
| 114 | + // later, inner loop is removed, so outer does pre-main-post without strip-mining |
| 115 | + for (int j = 0; j < 10; j++){ |
| 116 | + y |= 1; |
| 117 | + } |
| 118 | + } |
| 119 | + return y; |
| 120 | + } |
| 121 | +} |
| 122 | + |
0 commit comments