f5cbe53fdd
Reviewed-by: kvn, thartmann, chagedorn
81 lines
2.8 KiB
Java
81 lines
2.8 KiB
Java
/*
|
|
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
|
|
* Copyright (c) 2021, Red Hat, Inc. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
/**
|
|
* @test
|
|
* @bug 8275330
|
|
* @summary C2: assert(n->is_Root() || n->is_Region() || n->is_Phi() || n->is_MachMerge() || def_block->dominates(block)) failed: uses must be dominated by definitions
|
|
*
|
|
* @run main/othervm -Xmx512m -XX:+UnlockDiagnosticVMOptions -Xcomp -XX:CompileOnly=TestDeadPostLoopBecausePredicate::* TestDeadPostLoopBecausePredicate
|
|
*
|
|
*/
|
|
|
|
|
|
public class TestDeadPostLoopBecausePredicate {
|
|
|
|
public static final int N = 400;
|
|
|
|
public static int iFld=54270;
|
|
public static int iFld1=-4;
|
|
public int iFld2=201;
|
|
|
|
public int mainTest(String[] strArr1) {
|
|
|
|
int i=0, i17=8052, i19=22380, i20=60894, iArr[]=new int[N];
|
|
init(iArr, 4);
|
|
|
|
i = 1;
|
|
do {
|
|
for (i17 = 5; i17 < 114; i17++) {
|
|
switch ((i17 % 7) + 126) {
|
|
case 126:
|
|
for (i19 = 2; i19 > i; i19 -= 3) {
|
|
try {
|
|
i20 = (iFld2 % TestDeadPostLoopBecausePredicate.iFld1);
|
|
i20 = (iArr[i19 - 1] % TestDeadPostLoopBecausePredicate.iFld);
|
|
TestDeadPostLoopBecausePredicate.iFld = (TestDeadPostLoopBecausePredicate.iFld1 % iArr[i19]);
|
|
} catch (ArithmeticException a_e) {}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
} while (++i < 220);
|
|
|
|
return i20;
|
|
}
|
|
|
|
public static void init(int[] a, int seed) {
|
|
for (int j = 0; j < a.length; j++) {
|
|
a[j] = (j % 2 == 0) ? seed + j : seed - j;
|
|
}
|
|
}
|
|
|
|
public static void main(String[] strArr) {
|
|
TestDeadPostLoopBecausePredicate _instance = new TestDeadPostLoopBecausePredicate();
|
|
for (int i = 0; i < 10; i++ ) {
|
|
_instance.mainTest(strArr);
|
|
}
|
|
}
|
|
}
|