Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/gc/metaspace/TestMetaspaceMemoryPool.java
40942 views
1
/*
2
* Copyright (c) 2013, 2019, 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
package gc.metaspace;
25
26
import java.util.List;
27
import java.lang.management.*;
28
import jdk.test.lib.Platform;
29
import static jdk.test.lib.Asserts.*;
30
31
/* @test TestMetaspaceMemoryPool
32
* @bug 8000754
33
* @summary Tests that a MemoryPoolMXBeans is created for metaspace and that a
34
* MemoryManagerMXBean is created.
35
* @requires vm.bits == 64 & vm.opt.final.UseCompressedOops == true
36
* @library /test/lib
37
* @library /
38
* @modules java.base/jdk.internal.misc
39
* java.management
40
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops gc.metaspace.TestMetaspaceMemoryPool
41
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops -XX:MaxMetaspaceSize=60m gc.metaspace.TestMetaspaceMemoryPool
42
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers gc.metaspace.TestMetaspaceMemoryPool
43
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+UseCompressedOops -XX:+UseCompressedClassPointers -XX:CompressedClassSpaceSize=60m gc.metaspace.TestMetaspaceMemoryPool
44
*/
45
public class TestMetaspaceMemoryPool {
46
public static void main(String[] args) {
47
verifyThatMetaspaceMemoryManagerExists();
48
49
boolean isMetaspaceMaxDefined = InputArguments.containsPrefix("-XX:MaxMetaspaceSize");
50
verifyMemoryPool(getMemoryPool("Metaspace"), isMetaspaceMaxDefined);
51
52
if (Platform.is64bit()) {
53
if (InputArguments.contains("-XX:+UseCompressedOops")) {
54
MemoryPoolMXBean cksPool = getMemoryPool("Compressed Class Space");
55
verifyMemoryPool(cksPool, true);
56
}
57
}
58
}
59
60
private static void verifyThatMetaspaceMemoryManagerExists() {
61
List<MemoryManagerMXBean> managers = ManagementFactory.getMemoryManagerMXBeans();
62
for (MemoryManagerMXBean manager : managers) {
63
if (manager.getName().equals("Metaspace Manager")) {
64
return;
65
}
66
}
67
68
throw new RuntimeException("Expected to find a metaspace memory manager");
69
}
70
71
private static MemoryPoolMXBean getMemoryPool(String name) {
72
List<MemoryPoolMXBean> pools = ManagementFactory.getMemoryPoolMXBeans();
73
for (MemoryPoolMXBean pool : pools) {
74
if (pool.getName().equals(name)) {
75
return pool;
76
}
77
}
78
79
throw new RuntimeException("Expected to find a memory pool with name " + name);
80
}
81
82
private static void verifyMemoryPool(MemoryPoolMXBean pool, boolean isMaxDefined) {
83
MemoryUsage mu = pool.getUsage();
84
long init = mu.getInit();
85
long used = mu.getUsed();
86
long committed = mu.getCommitted();
87
long max = mu.getMax();
88
89
assertGTE(init, 0L);
90
assertGTE(used, init);
91
assertGTE(committed, used);
92
93
if (isMaxDefined) {
94
assertGTE(max, committed);
95
} else {
96
assertEQ(max, -1L);
97
}
98
}
99
}
100
101