Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/compiler/loopopts/TestDivWithTopDivisor.java
41149 views
1
/*
2
* Copyright (c) 2021, 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
/*
26
* @test
27
* @bug 8260284
28
* @summary Fix "assert(_base == Int) failed: Not an Int" due to a top divisor not handled correctly in no_dependent_zero_check().
29
* @requires vm.compiler2.enabled
30
* @run main/othervm -Xcomp -XX:-TieredCompilation -XX:CompileOnly=compiler/loopopts/TestDivWithTopDivisor compiler.loopopts.TestDivWithTopDivisor
31
*/
32
33
package compiler.loopopts;
34
35
public class TestDivWithTopDivisor {
36
static boolean bFld;
37
38
static int test(int d, long e, long f) {
39
float g = 1;
40
int a, b = 4, c = 4;
41
int iArr[] = new int[400];
42
init(iArr, 8);
43
if (bFld) {
44
} else if (bFld) {
45
if (bFld) {
46
if (bFld) {
47
for (a = 7; a > 1; --a) {
48
if (bFld) {
49
try {
50
c = b / a;
51
b = 9 / a;
52
} catch (ArithmeticException k) {
53
}
54
}
55
}
56
}
57
g = 0;
58
}
59
} else {
60
iArr[d] <<= b;
61
}
62
long l = f + c + checkSum(iArr);
63
return (int) l;
64
}
65
66
public static void init(int[] a, int seed) {
67
for (int j = 0; j < a.length; j++) {
68
a[j] = (j % 2 == 0) ? seed + j : seed - j;
69
}
70
}
71
72
public static long checkSum(int[] a) {
73
long sum = 0;
74
for (int j = 0; j < a.length; j++) {
75
sum += (a[j] / (j + 1) + a[j] % (j + 1));
76
}
77
return sum;
78
}
79
80
public static void main(String[] s) {
81
for (int i = 0; i < 10; i++) {
82
test(3, 0, 0);
83
}
84
}
85
}
86
87
88