Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/compiler/floatingpoint/TestPow2.java
41149 views
1
/*
2
* Copyright (c) 2014, 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
* @test
26
* @bug 8063086
27
* @summary X^2 special case for C2 yields different result than interpreter
28
* @library /test/lib /
29
* @modules java.base/jdk.internal.misc
30
* java.management
31
*
32
* @build sun.hotspot.WhiteBox
33
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
34
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
35
* -XX:-BackgroundCompilation -XX:-UseOnStackReplacement
36
* compiler.floatingpoint.TestPow2
37
*/
38
39
package compiler.floatingpoint;
40
41
import compiler.whitebox.CompilerWhiteBoxTest;
42
import sun.hotspot.WhiteBox;
43
44
import java.lang.reflect.Method;
45
46
public class TestPow2 {
47
48
private static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox();
49
50
private static final double base = 5350.456329377186;
51
private static final double exp = 2.0;
52
53
static double m() {
54
return Math.pow(base, exp);
55
}
56
57
static public void main(String[] args) throws NoSuchMethodException {
58
Method test_method = TestPow2.class.getDeclaredMethod("m");
59
60
double interpreter_result = m();
61
62
// Compile with C1 if possible
63
WHITE_BOX.enqueueMethodForCompilation(test_method, CompilerWhiteBoxTest.COMP_LEVEL_SIMPLE);
64
65
double c1_result = m();
66
67
WHITE_BOX.deoptimizeMethod(test_method);
68
69
// Compile it with C2 if possible
70
WHITE_BOX.enqueueMethodForCompilation(test_method, CompilerWhiteBoxTest.COMP_LEVEL_FULL_OPTIMIZATION);
71
72
double c2_result = m();
73
74
if (interpreter_result != c1_result || interpreter_result != c2_result ||
75
c1_result != c2_result) {
76
System.out.println("interpreter = " + interpreter_result + " c1 = " + c1_result + " c2 = " + c2_result);
77
throw new RuntimeException("Test Failed");
78
}
79
}
80
}
81
82