Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/gc/shenandoah/TestLotsOfCycles.java
40942 views
1
/*
2
* Copyright (c) 2017, 2018, Red Hat, Inc. 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
/*
26
* @test TestLotsOfCycles
27
* @requires vm.gc.Shenandoah
28
*
29
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
30
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=passive
31
* -XX:+ShenandoahDegeneratedGC
32
* -Dtarget=10000
33
* TestLotsOfCycles
34
*
35
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
36
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=passive
37
* -XX:-ShenandoahDegeneratedGC
38
* -Dtarget=10000
39
* TestLotsOfCycles
40
*/
41
42
/*
43
* @test TestLotsOfCycles
44
* @requires vm.gc.Shenandoah
45
*
46
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
47
* -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive
48
* -XX:+ShenandoahOOMDuringEvacALot
49
* -Dtarget=1000
50
* TestLotsOfCycles
51
*
52
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
53
* -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive
54
* -XX:+ShenandoahAllocFailureALot
55
* -Dtarget=1000
56
* TestLotsOfCycles
57
*
58
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
59
* -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive
60
* -Dtarget=1000
61
* TestLotsOfCycles
62
*/
63
64
/*
65
* @test TestLotsOfCycles
66
* @requires vm.gc.Shenandoah
67
*
68
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
69
* -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive
70
* -Dtarget=10000
71
* TestLotsOfCycles
72
*/
73
74
/*
75
* @test TestLotsOfCycles
76
* @requires vm.gc.Shenandoah
77
*
78
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
79
* -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=static
80
* -Dtarget=10000
81
* TestLotsOfCycles
82
*/
83
84
/*
85
* @test TestLotsOfCycles
86
* @requires vm.gc.Shenandoah
87
*
88
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
89
* -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact
90
* -Dtarget=1000
91
* TestLotsOfCycles
92
*/
93
94
/*
95
* @test TestLotsOfCycles
96
* @requires vm.gc.Shenandoah
97
*
98
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
99
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu -XX:ShenandoahGCHeuristics=aggressive
100
* -XX:+ShenandoahOOMDuringEvacALot
101
* -Dtarget=1000
102
* TestLotsOfCycles
103
*
104
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
105
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu -XX:ShenandoahGCHeuristics=aggressive
106
* -XX:+ShenandoahAllocFailureALot
107
* -Dtarget=1000
108
* TestLotsOfCycles
109
*
110
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
111
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu -XX:ShenandoahGCHeuristics=aggressive
112
* -Dtarget=1000
113
* TestLotsOfCycles
114
*/
115
116
/*
117
* @test TestLotsOfCycles
118
* @requires vm.gc.Shenandoah
119
*
120
* @run main/othervm/timeout=480 -Xmx16m -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
121
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu
122
* -Dtarget=10000
123
* TestLotsOfCycles
124
*/
125
126
public class TestLotsOfCycles {
127
128
static final long TARGET_MB = Long.getLong("target", 10_000); // 10 Gb allocation, around 1K cycles to handle
129
static final long STRIDE = 100_000;
130
131
static volatile Object sink;
132
133
public static void main(String[] args) throws Exception {
134
long count = TARGET_MB * 1024 * 1024 / 16;
135
for (long c = 0; c < count; c += STRIDE) {
136
for (long s = 0; s < STRIDE; s++) {
137
sink = new Object();
138
}
139
Thread.sleep(1);
140
}
141
}
142
143
}
144
145