Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/compiler/classUnloading/methodUnloading/TestMethodUnloading.java
41153 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 MethodUnloadingTest
26
* @bug 8029443
27
* @summary Tests the unloading of methods to to class unloading
28
* @modules java.base/jdk.internal.misc
29
* @library /test/lib /
30
*
31
* @build sun.hotspot.WhiteBox
32
* compiler.classUnloading.methodUnloading.WorkerClass
33
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
34
* @run main/othervm -Xbootclasspath/a:. -XX:+IgnoreUnrecognizedVMOptions
35
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
36
* -XX:-BackgroundCompilation -XX:-UseCompressedOops
37
* -XX:CompileCommand=compileonly,compiler.classUnloading.methodUnloading.TestMethodUnloading::doWork
38
* compiler.classUnloading.methodUnloading.TestMethodUnloading
39
*/
40
41
package compiler.classUnloading.methodUnloading;
42
43
import sun.hotspot.WhiteBox;
44
45
import java.lang.reflect.Method;
46
import java.net.URL;
47
import java.net.URLClassLoader;
48
import compiler.whitebox.CompilerWhiteBoxTest;
49
50
public class TestMethodUnloading {
51
private static final String workerClassName = "compiler.classUnloading.methodUnloading.WorkerClass";
52
private static int work = -1;
53
54
private static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox();
55
56
/**
57
* Does some work by either using the workerClass or locally producing values.
58
* @param workerClass Class performing some work (will be unloaded)
59
* @param useWorker If true the workerClass is used
60
*/
61
static private void doWork(Class<?> workerClass, boolean useWorker) throws InstantiationException, IllegalAccessException {
62
if (useWorker) {
63
// Create a new instance
64
Object worker = workerClass.newInstance();
65
// We would like to call a method of WorkerClass here but we cannot cast to WorkerClass
66
// because the class was loaded by a different class loader. One solution would be to use
67
// reflection but since we want C2 to implement the call as an optimized IC we call
68
// Object::hashCode() here which actually calls WorkerClass::hashCode().
69
// C2 will then implement this call as an optimized IC that points to a to-interpreter stub
70
// referencing the Method* for WorkerClass::hashCode().
71
work = worker.hashCode();
72
if (work != 42) {
73
new RuntimeException("Work not done");
74
}
75
} else {
76
// Do some important work here
77
work = 1;
78
}
79
}
80
81
/**
82
* Makes sure that method is compiled by forcing compilation if not yet compiled.
83
* @param m Method to be checked
84
*/
85
static private void makeSureIsCompiled(Method m) {
86
// Make sure background compilation is disabled
87
if (WHITE_BOX.getBooleanVMFlag("BackgroundCompilation")) {
88
throw new RuntimeException("Background compilation enabled");
89
}
90
91
// Check if already compiled
92
if (!WHITE_BOX.isMethodCompiled(m)) {
93
// If not, try to compile it with C2
94
if(!WHITE_BOX.enqueueMethodForCompilation(m, CompilerWhiteBoxTest.COMP_LEVEL_FULL_OPTIMIZATION)) {
95
// C2 compiler not available, try to compile with C1
96
WHITE_BOX.enqueueMethodForCompilation(m, CompilerWhiteBoxTest.COMP_LEVEL_SIMPLE);
97
}
98
// Because background compilation is disabled, method should now be compiled
99
if(!WHITE_BOX.isMethodCompiled(m)) {
100
throw new RuntimeException(m + " not compiled");
101
}
102
}
103
}
104
105
/**
106
* This test creates stale Method* metadata in a to-interpreter stub of an optimized IC.
107
*
108
* The following steps are performed:
109
* (1) A workerClass is loaded by a custom class loader
110
* (2) The method doWork that calls a method of the workerClass is compiled. The call
111
* is implemented as an optimized IC calling a to-interpreted stub. The to-interpreter
112
* stub contains a Method* to a workerClass method.
113
* (3) Unloading of the workerClass is enforced. The to-interpreter stub now contains a dead Method*.
114
* (4) Depending on the implementation of the IC, the compiled version of doWork should still be
115
* valid. We call it again without using the workerClass.
116
*/
117
static public void main(String[] args) throws Exception {
118
// (1) Create a custom class loader with no parent class loader
119
URL url = TestMethodUnloading.class.getProtectionDomain().getCodeSource().getLocation();
120
URLClassLoader loader = new URLClassLoader(new URL[] {url}, null);
121
122
// Load worker class with custom class loader
123
Class<?> workerClass = Class.forName(workerClassName, true, loader);
124
125
// (2) Make sure all paths of doWork are profiled and compiled
126
for (int i = 0; i < 100000; ++i) {
127
doWork(workerClass, true);
128
doWork(workerClass, false);
129
}
130
131
// Make sure doWork is compiled now
132
Method doWork = TestMethodUnloading.class.getDeclaredMethod("doWork", Class.class, boolean.class);
133
makeSureIsCompiled(doWork);
134
135
// (3) Throw away class loader and reference to workerClass to allow unloading
136
loader.close();
137
loader = null;
138
workerClass = null;
139
140
// Force garbage collection to trigger unloading of workerClass
141
// Dead reference to WorkerClass::hashCode triggers JDK-8029443
142
WHITE_BOX.fullGC();
143
144
// (4) Depending on the implementation of the IC, the compiled version of doWork
145
// may still be valid here. Execute it without a workerClass.
146
doWork(null, false);
147
if (work != 1) {
148
throw new RuntimeException("Work not done");
149
}
150
151
doWork(Object.class, false);
152
}
153
}
154
155