|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, Red Hat, Inc. 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 | +package compiler.c2.irTests; |
| 25 | + |
| 26 | +import compiler.lib.ir_framework.*; |
| 27 | +import jdk.test.lib.Utils; |
| 28 | +import java.util.Random; |
| 29 | + |
| 30 | +/* |
| 31 | + * @test |
| 32 | + * @bug 8278228 |
| 33 | + * @summary C2: Improve identical back-to-back if elimination |
| 34 | + * @library /test/lib / |
| 35 | + * @run driver compiler.c2.irTests.TestSkeletonPredicates |
| 36 | + */ |
| 37 | + |
| 38 | +public class TestSkeletonPredicates { |
| 39 | + public static void main(String[] args) { |
| 40 | + TestFramework.runWithFlags("-XX:-UseLoopPredicate", "-XX:LoopUnrollLimit=240", "-XX:+StressIGVN", "-XX:StressSeed=255527877"); |
| 41 | + TestFramework.runWithFlags("-XX:-UseLoopPredicate", "-XX:LoopUnrollLimit=240", "-XX:+StressIGVN"); |
| 42 | + } |
| 43 | + |
| 44 | + static volatile int barrier; |
| 45 | + |
| 46 | + @ForceInline |
| 47 | + static boolean test1_helper(int start, int stop, double[] array1, double[] array2) { |
| 48 | + for (int i = start; i < stop; i++) { |
| 49 | + if ((i % 2) == 0) { |
| 50 | + array1[i] = 42.42; |
| 51 | + } else { |
| 52 | + barrier = 0x42; |
| 53 | + } |
| 54 | + } |
| 55 | + return false; |
| 56 | + } |
| 57 | + |
| 58 | + @Test |
| 59 | + @IR(counts = { IRNode.COUNTEDLOOP, "3" }) |
| 60 | + static double[] test1(int stop, double[] array2) { |
| 61 | + double[] array1 = null; |
| 62 | + array1 = new double[10]; |
| 63 | + for (int j = 0; j < stop; j++) { |
| 64 | + if (test1_helper(8, j, array1, array2)) { |
| 65 | + return null; |
| 66 | + } |
| 67 | + } |
| 68 | + return array1; |
| 69 | + } |
| 70 | + |
| 71 | + @Run(test = "test1") |
| 72 | + void test1_runner() { |
| 73 | + double[] array2 = new double[10]; |
| 74 | + double[] array3 = new double[1000]; |
| 75 | + test1_helper(1, 1000, array3, array3); |
| 76 | + test1(11, array3); |
| 77 | + } |
| 78 | +} |
1 commit comments
openjdk-notifier[bot] commentedon Mar 22, 2022
Review
Issues