Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/test/runtime/ClassUnload/SuperDependsTest.java
32284 views
1
/*
2
* Copyright (c) 2018, 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 SuperDependsTest
26
* @bug 8210094
27
* @summary Create ClassLoader dependency from initiating loader to class loader through subclassing
28
* @modules java.base/jdk.internal.misc
29
* java.compiler
30
* @library /testlibrary /testlibrary/whitebox /runtime/testlibrary
31
* @build sun.hotspot.WhiteBox
32
* @compile p2/c2.java MyDiffClassLoader.java
33
* @run main ClassFileInstaller sun.hotspot.WhiteBox
34
* sun.hotspot.WhiteBox$WhiteBoxPermission
35
* @run main/othervm -Xbootclasspath/a:. -Xmn8m -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI SuperDependsTest
36
*/
37
import sun.hotspot.WhiteBox;
38
import p2.*;
39
40
public class SuperDependsTest {
41
public static WhiteBox wb = WhiteBox.getWhiteBox();
42
public static final String MY_TEST = "SuperDependsTest$c1s";
43
44
45
// p2.c2 loads through super class and creates dependency
46
public static class c1s extends p2.c2 {
47
48
private void test() throws Exception {
49
method2();
50
}
51
52
public c1s () throws Exception {
53
test();
54
ClassUnloadCommon.triggerUnloading(); // should not unload anything
55
test();
56
}
57
}
58
59
public void test() throws Throwable {
60
61
// now use the same loader to load class MyTest
62
Class MyTest_class = new MyDiffClassLoader(MY_TEST).loadClass(MY_TEST);
63
64
// Call MyTest to load p2.c2 twice and call p2.c2.method2
65
MyTest_class.newInstance();
66
ClassUnloadCommon.triggerUnloading(); // should not unload anything
67
ClassUnloadCommon.failIf(!wb.isClassAlive(MY_TEST), "should not be unloaded");
68
ClassUnloadCommon.failIf(!wb.isClassAlive("p2.c2"), "should not be unloaded");
69
// Unless MyTest_class is referenced here, the compiler can unload it.
70
System.out.println("Should not unload anything before here because " + MyTest_class + " is still alive.");
71
}
72
73
public static void main(String args[]) throws Throwable {
74
SuperDependsTest d = new SuperDependsTest();
75
d.test();
76
ClassUnloadCommon.triggerUnloading(); // should not unload anything
77
System.out.println("Should unload MyTest and p2.c2 just now");
78
ClassUnloadCommon.failIf(wb.isClassAlive(MY_TEST), "should be unloaded");
79
ClassUnloadCommon.failIf(wb.isClassAlive("p2.c2"), "should be unloaded");
80
}
81
}
82
83