Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/StressHierarchy2.java
41161 views
1
/*
2
* Copyright (c) 2013, 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
package metaspace.stressHierarchy.common;
24
25
import metaspace.stressHierarchy.common.classloader.tree.Tree;
26
import metaspace.stressHierarchy.common.exceptions.ClassNotUnloadedException;
27
import nsk.share.test.ExecutionController;
28
import nsk.share.test.Tests;
29
30
/**
31
* Test case checks that presence of ancestors does not prevent descenders of being reclaimed.
32
* We create hierarchy of classes, each loaded by dedicated classloader. Then we start the following
33
* routine in loop: release references to classes in bottom level, provoke unloading and check
34
* 1) that classes in bottom level were unloaded and
35
* 2) that next to bottom level was NOT unloaded.
36
*/
37
public class StressHierarchy2 extends StressHierarchyBaseClass {
38
39
public static void main(String[] args) {
40
try {
41
StressHierarchyBaseClass.args = args;
42
Tests.runTest(new StressHierarchy2(), args);
43
} catch (OutOfMemoryError error) {
44
System.out.print("Got OOME: " + error.getMessage());
45
}
46
}
47
48
@Override
49
protected void runTestLogic(Tree tree, ExecutionController stresser)
50
throws Throwable {
51
52
for (int cleanupLevel = tree.getMaxLevel(); cleanupLevel >= 0; cleanupLevel-- ) {
53
tree.cleanupLevel(cleanupLevel);
54
log.info("cleanupLevel=" + cleanupLevel);
55
triggerUnloadingHelper.triggerUnloading(stresser);
56
if (!stresser.continueExecution()) {
57
return;
58
}
59
if (cleanupLevel > 0) {
60
performChecksHelper.checkLevelAlive(tree, cleanupLevel - 1);
61
}
62
if (!stresser.continueExecution()) {
63
return;
64
}
65
66
try {
67
performChecksHelper.checkLevelReclaimed(tree, cleanupLevel);
68
} catch (ClassNotUnloadedException exception) {
69
log.error("Class was not unloaded." + exception.toString());
70
setFailed(true);
71
throw exception;
72
}
73
}
74
}
75
76
}
77
78