Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/gc/parallel/TestDynShrinkHeap.java
40942 views
1
/*
2
* Copyright (c) 2014, 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.parallel;
25
26
/**
27
* @test TestDynShrinkHeap
28
* @bug 8016479
29
* @requires vm.gc.Parallel & os.maxMemory > 1G
30
* @summary Verify that the heap shrinks after full GC according to the current values of the Min/MaxHeapFreeRatio flags
31
* @modules java.base/jdk.internal.misc
32
* @modules jdk.management
33
* @library /test/lib /
34
* @run main/othervm -XX:+UseAdaptiveSizePolicyWithSystemGC -XX:+UseParallelGC -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 -Xmx1g -verbose:gc gc.parallel.TestDynShrinkHeap
35
*/
36
import jdk.test.lib.management.DynamicVMOption;
37
import java.lang.management.ManagementFactory;
38
import java.lang.management.MemoryUsage;
39
import java.util.ArrayList;
40
import java.text.NumberFormat;
41
import static jdk.test.lib.Asserts.assertLessThan;
42
import com.sun.management.HotSpotDiagnosticMXBean;
43
import gc.testlibrary.Helpers;
44
45
public class TestDynShrinkHeap {
46
47
public static final String MIN_FREE_RATIO_FLAG_NAME = "MinHeapFreeRatio";
48
public static final String MAX_FREE_RATIO_FLAG_NAME = "MaxHeapFreeRatio";
49
50
private static ArrayList<byte[]> list = new ArrayList<>(0);
51
private static final int LEN = 512 * 1024 + 1;
52
53
public TestDynShrinkHeap() {
54
}
55
56
private final void test() {
57
System.gc();
58
MemoryUsagePrinter.printMemoryUsage("init");
59
60
eat();
61
MemoryUsagePrinter.printMemoryUsage("eaten");
62
MemoryUsage muFull = ManagementFactory.getMemoryMXBean().getHeapMemoryUsage();
63
64
free();
65
MemoryUsagePrinter.printMemoryUsage("free");
66
MemoryUsage muFree = ManagementFactory.getMemoryMXBean().getHeapMemoryUsage();
67
68
assertLessThan(muFree.getCommitted(), muFull.getCommitted(), String.format(
69
"committed free heap size is not less than committed full heap size, heap hasn't been shrunk?%n"
70
+ "%s = %s%n%s = %s",
71
MIN_FREE_RATIO_FLAG_NAME,
72
ManagementFactory.getPlatformMXBean(HotSpotDiagnosticMXBean.class)
73
.getVMOption(MIN_FREE_RATIO_FLAG_NAME).getValue(),
74
MAX_FREE_RATIO_FLAG_NAME,
75
ManagementFactory.getPlatformMXBean(HotSpotDiagnosticMXBean.class)
76
.getVMOption(MAX_FREE_RATIO_FLAG_NAME).getValue()
77
));
78
}
79
80
private void eat() {
81
for (int i = 0; i < LEN; i++) {
82
list.add(new byte[1024]);
83
}
84
MemoryUsagePrinter.printMemoryUsage("allocated " + LEN + " arrays");
85
86
list.subList(0, LEN / 2).clear();
87
System.gc();
88
MemoryUsagePrinter.printMemoryUsage("array halved");
89
}
90
91
private void free() {
92
int min = DynamicVMOption.getInt(MIN_FREE_RATIO_FLAG_NAME);
93
DynamicVMOption.setInt(MAX_FREE_RATIO_FLAG_NAME, min);
94
System.gc();
95
MemoryUsagePrinter.printMemoryUsage("under pressure");
96
}
97
98
public static void main(String[] args) {
99
new TestDynShrinkHeap().test();
100
}
101
}
102
103
/**
104
* Prints memory usage to standard output
105
*/
106
class MemoryUsagePrinter {
107
108
public static final NumberFormat NF = Helpers.numberFormatter();
109
110
public static void printMemoryUsage(String label) {
111
MemoryUsage memusage = ManagementFactory.getMemoryMXBean().getHeapMemoryUsage();
112
float freeratio = 1f - (float) memusage.getUsed() / memusage.getCommitted();
113
System.out.format("[%-24s] init: %-7s, used: %-7s, comm: %-7s, freeRatio ~= %.1f%%%n",
114
label,
115
NF.format(memusage.getInit()),
116
NF.format(memusage.getUsed()),
117
NF.format(memusage.getCommitted()),
118
freeratio * 100
119
);
120
}
121
}
122
123