33160
|
1 |
/*
|
|
2 |
* Copyright (c) 2015, 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 8136421
|
|
28 |
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
|
29 |
* @library /testlibrary /
|
|
30 |
* @run main/othervm -XX:+UnlockExperimentalVMOptions
|
|
31 |
* -Dcompiler.jvmci.JVM_GetJVMCIRuntimeTest.positive=true
|
|
32 |
* -XX:+EnableJVMCI
|
|
33 |
* compiler.jvmci.JVM_GetJVMCIRuntimeTest
|
|
34 |
* @run main/othervm -XX:+UnlockExperimentalVMOptions
|
|
35 |
* -Dcompiler.jvmci.JVM_GetJVMCIRuntimeTest.positive=false
|
|
36 |
* -XX:-EnableJVMCI
|
|
37 |
* compiler.jvmci.JVM_GetJVMCIRuntimeTest
|
|
38 |
|
|
39 |
*/
|
|
40 |
|
|
41 |
package compiler.jvmci;
|
|
42 |
|
|
43 |
import jdk.vm.ci.runtime.JVMCI;
|
|
44 |
import jdk.test.lib.Asserts;
|
|
45 |
|
|
46 |
import java.lang.reflect.Method;
|
|
47 |
|
|
48 |
public class JVM_GetJVMCIRuntimeTest {
|
|
49 |
private static final boolean IS_POSITIVE = Boolean.getBoolean(
|
|
50 |
"compiler.jvmci.JVM_GetJVMCIRuntimeTest.positive");
|
|
51 |
|
|
52 |
private final Method initializeRuntime;
|
|
53 |
|
|
54 |
public static void main(String[] args) {
|
|
55 |
new JVM_GetJVMCIRuntimeTest().runTest();
|
|
56 |
}
|
|
57 |
|
|
58 |
private void runTest() {
|
|
59 |
Object result;
|
|
60 |
try {
|
|
61 |
result = invoke();
|
|
62 |
} catch (InternalError e) {
|
|
63 |
if (IS_POSITIVE) {
|
|
64 |
throw new AssertionError("unexpected exception", e);
|
|
65 |
}
|
|
66 |
return;
|
|
67 |
}
|
|
68 |
if (!IS_POSITIVE) {
|
|
69 |
throw new AssertionError("didn't get expected exception");
|
|
70 |
}
|
|
71 |
Asserts.assertNotNull(result,
|
|
72 |
"initializeRuntime returned null");
|
|
73 |
Asserts.assertEQ(result, invoke(),
|
|
74 |
"initializeRuntime returns different results");
|
|
75 |
|
|
76 |
}
|
|
77 |
private Object invoke() {
|
|
78 |
Object result;
|
|
79 |
try {
|
|
80 |
result = initializeRuntime.invoke(JVMCI.class);
|
|
81 |
} catch (ReflectiveOperationException e) {
|
|
82 |
throw new Error("can't invoke initializeRuntime", e);
|
|
83 |
}
|
|
84 |
return result;
|
|
85 |
}
|
|
86 |
|
|
87 |
private JVM_GetJVMCIRuntimeTest() {
|
|
88 |
Method method;
|
|
89 |
try {
|
|
90 |
method = JVMCI.class.getDeclaredMethod("initializeRuntime");
|
|
91 |
method.setAccessible(true);
|
|
92 |
} catch (NoSuchMethodException e) {
|
|
93 |
throw new Error("can't find JVMCI::initializeRuntime", e);
|
|
94 |
}
|
|
95 |
initializeRuntime = method;
|
|
96 |
}
|
|
97 |
}
|