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