Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/runtime/Metaspace/elastic/MetaspaceTestArena.java
41155 views
1
/*
2
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3
* Copyright (c) 2020 SAP SE. All rights reserved.
4
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5
*
6
* This code is free software; you can redistribute it and/or modify it
7
* under the terms of the GNU General Public License version 2 only, as
8
* published by the Free Software Foundation.
9
*
10
* This code is distributed in the hope that it will be useful, but WITHOUT
11
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13
* version 2 for more details (a copy is included in the LICENSE file that
14
* accompanied this code).
15
*
16
* You should have received a copy of the GNU General Public License version
17
* 2 along with this work; if not, write to the Free Software Foundation,
18
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19
*
20
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21
* or visit www.oracle.com if you need additional information or have any
22
* questions.
23
*
24
*/
25
26
import sun.hotspot.WhiteBox;
27
28
import java.util.concurrent.atomic.AtomicLong;
29
30
public class MetaspaceTestArena {
31
32
long arena;
33
34
final long allocationCeiling;
35
36
// Number and word size of allocations
37
long allocatedWords = 0;
38
long numAllocated = 0;
39
long deallocatedWords = 0;
40
long numDeallocated = 0;
41
long numAllocationFailures = 0;
42
43
private synchronized boolean reachedCeiling() {
44
return (allocatedWords - deallocatedWords) > allocationCeiling;
45
}
46
47
private synchronized void accountAllocation(long words) {
48
numAllocated ++;
49
allocatedWords += words;
50
}
51
52
private synchronized void accountDeallocation(long words) {
53
numDeallocated ++;
54
deallocatedWords += words;
55
}
56
57
MetaspaceTestArena(long arena0, long allocationCeiling) {
58
this.allocationCeiling = allocationCeiling;
59
this.arena = arena0;
60
}
61
62
public Allocation allocate(long words) {
63
if (reachedCeiling()) {
64
numAllocationFailures ++;
65
return null;
66
}
67
WhiteBox wb = WhiteBox.getWhiteBox();
68
long p = wb.allocateFromMetaspaceTestArena(arena, words);
69
if (p == 0) {
70
numAllocationFailures ++;
71
return null;
72
} else {
73
accountAllocation(words);
74
}
75
return new Allocation(p, words);
76
}
77
78
public void deallocate(Allocation a) {
79
WhiteBox wb = WhiteBox.getWhiteBox();
80
wb.deallocateToMetaspaceTestArena(arena, a.p, a.word_size);
81
accountDeallocation(a.word_size);
82
}
83
84
//// Convenience functions ////
85
86
public Allocation allocate_expect_success(long words) {
87
Allocation a = allocate(words);
88
if (a.isNull()) {
89
throw new RuntimeException("Allocation failed (" + words + ")");
90
}
91
return a;
92
}
93
94
public void allocate_expect_failure(long words) {
95
Allocation a = allocate(words);
96
if (!a.isNull()) {
97
throw new RuntimeException("Allocation failed (" + words + ")");
98
}
99
}
100
101
boolean isLive() {
102
return arena != 0;
103
}
104
105
@Override
106
public String toString() {
107
return "arena=" + arena +
108
", ceiling=" + allocationCeiling +
109
", allocatedWords=" + allocatedWords +
110
", numAllocated=" + numAllocated +
111
", deallocatedWords=" + deallocatedWords +
112
", numDeallocated=" + numDeallocated +
113
", numAllocationFailures=" + numAllocationFailures +
114
'}';
115
}
116
117
}
118
119