author | eosterlund |
Thu, 05 Sep 2019 08:26:49 +0200 | |
changeset 58015 | dd84de796f2c |
parent 57811 | 947252a54b98 |
child 58679 | 9c3209ff7550 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53547 | 2 |
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
37428
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
26 |
#include "logging/log.hpp" |
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
27 |
#include "memory/resourceArea.hpp" |
30291
54cdc5c1a9cb
8068352: Move virtualspace.* out of src/share/vm/runtime to memory directory
coleenp
parents:
30166
diff
changeset
|
28 |
#include "memory/virtualspace.hpp" |
54780
f8d182aedc92
8223136: Move compressed oops functions to CompressedOops class
stefank
parents:
53547
diff
changeset
|
29 |
#include "oops/compressedOops.hpp" |
57811 | 30 |
#include "oops/markWord.hpp" |
7397 | 31 |
#include "oops/oop.inline.hpp" |
49593
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
48153
diff
changeset
|
32 |
#include "runtime/os.inline.hpp" |
13195 | 33 |
#include "services/memTracker.hpp" |
46625 | 34 |
#include "utilities/align.hpp" |
1 | 35 |
|
36 |
// ReservedSpace |
|
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
37 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
38 |
// Dummy constructor |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
39 |
ReservedSpace::ReservedSpace() : _base(NULL), _size(0), _noaccess_prefix(0), |
51334
cc2c79d22508
8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents:
51070
diff
changeset
|
40 |
_alignment(0), _special(false), _fd_for_heap(-1), _executable(false) { |
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
41 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
42 |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
43 |
ReservedSpace::ReservedSpace(size_t size, size_t preferred_page_size) : _fd_for_heap(-1) { |
30166
a85188117643
8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents:
30158
diff
changeset
|
44 |
bool has_preferred_page_size = preferred_page_size != 0; |
28631 | 45 |
// Want to use large pages where possible and pad with small pages. |
30166
a85188117643
8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents:
30158
diff
changeset
|
46 |
size_t page_size = has_preferred_page_size ? preferred_page_size : os::page_size_for_region_unaligned(size, 1); |
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
47 |
bool large_pages = page_size != (size_t)os::vm_page_size(); |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29580
diff
changeset
|
48 |
size_t alignment; |
30166
a85188117643
8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents:
30158
diff
changeset
|
49 |
if (large_pages && has_preferred_page_size) { |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29580
diff
changeset
|
50 |
alignment = MAX2(page_size, (size_t)os::vm_allocation_granularity()); |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29580
diff
changeset
|
51 |
// ReservedSpace initialization requires size to be aligned to the given |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29580
diff
changeset
|
52 |
// alignment. Align the size up. |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
53 |
size = align_up(size, alignment); |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29580
diff
changeset
|
54 |
} else { |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29580
diff
changeset
|
55 |
// Don't force the alignment to be large page aligned, |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29580
diff
changeset
|
56 |
// since that will waste memory. |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29580
diff
changeset
|
57 |
alignment = os::vm_allocation_granularity(); |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29580
diff
changeset
|
58 |
} |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
59 |
initialize(size, alignment, large_pages, NULL, false); |
1 | 60 |
} |
61 |
||
62 |
ReservedSpace::ReservedSpace(size_t size, size_t alignment, |
|
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
63 |
bool large, |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
64 |
char* requested_address) : _fd_for_heap(-1) { |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
65 |
initialize(size, alignment, large, requested_address, false); |
2268 | 66 |
} |
67 |
||
68 |
ReservedSpace::ReservedSpace(size_t size, size_t alignment, |
|
69 |
bool large, |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
70 |
bool executable) : _fd_for_heap(-1) { |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
71 |
initialize(size, alignment, large, NULL, executable); |
1 | 72 |
} |
73 |
||
51070 | 74 |
ReservedSpace::ReservedSpace(char* base, size_t size, size_t alignment, |
75 |
bool special, bool executable) : _fd_for_heap(-1) { |
|
76 |
assert((size % os::vm_allocation_granularity()) == 0, |
|
77 |
"size not allocation aligned"); |
|
78 |
_base = base; |
|
79 |
_size = size; |
|
80 |
_alignment = alignment; |
|
81 |
_noaccess_prefix = 0; |
|
82 |
_special = special; |
|
83 |
_executable = executable; |
|
84 |
} |
|
85 |
||
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
86 |
// Helper method |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
87 |
static void unmap_or_release_memory(char* base, size_t size, bool is_file_mapped) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
88 |
if (is_file_mapped) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
89 |
if (!os::unmap_memory(base, size)) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
90 |
fatal("os::unmap_memory failed"); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
91 |
} |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
92 |
} else if (!os::release_memory(base, size)) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
93 |
fatal("os::release_memory failed"); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
94 |
} |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
95 |
} |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
96 |
|
5898 | 97 |
// Helper method. |
98 |
static bool failed_to_reserve_as_requested(char* base, char* requested_address, |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
99 |
const size_t size, bool special, bool is_file_mapped = false) |
5898 | 100 |
{ |
101 |
if (base == requested_address || requested_address == NULL) |
|
102 |
return false; // did not fail |
|
103 |
||
104 |
if (base != NULL) { |
|
105 |
// Different reserve address may be acceptable in other cases |
|
106 |
// but for compressed oops heap should be at requested address. |
|
107 |
assert(UseCompressedOops, "currently requested address used only for compressed oops"); |
|
37428
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
108 |
log_debug(gc, heap, coops)("Reserved memory not at requested address: " PTR_FORMAT " vs " PTR_FORMAT, p2i(base), p2i(requested_address)); |
5898 | 109 |
// OS ignored requested address. Try different address. |
110 |
if (special) { |
|
111 |
if (!os::release_memory_special(base, size)) { |
|
112 |
fatal("os::release_memory_special failed"); |
|
113 |
} |
|
114 |
} else { |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
115 |
unmap_or_release_memory(base, size, is_file_mapped); |
5898 | 116 |
} |
117 |
} |
|
118 |
return true; |
|
119 |
} |
|
120 |
||
1 | 121 |
void ReservedSpace::initialize(size_t size, size_t alignment, bool large, |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
122 |
char* requested_address, |
2268 | 123 |
bool executable) { |
1 | 124 |
const size_t granularity = os::vm_allocation_granularity(); |
10237
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
125 |
assert((size & (granularity - 1)) == 0, |
1 | 126 |
"size not aligned to os::vm_allocation_granularity()"); |
10237
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
127 |
assert((alignment & (granularity - 1)) == 0, |
1 | 128 |
"alignment not aligned to os::vm_allocation_granularity()"); |
129 |
assert(alignment == 0 || is_power_of_2((intptr_t)alignment), |
|
130 |
"not a power of 2"); |
|
131 |
||
10237
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
132 |
alignment = MAX2(alignment, (size_t)os::vm_page_size()); |
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
133 |
|
1 | 134 |
_base = NULL; |
135 |
_size = 0; |
|
136 |
_special = false; |
|
2268 | 137 |
_executable = executable; |
1 | 138 |
_alignment = 0; |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
139 |
_noaccess_prefix = 0; |
1 | 140 |
if (size == 0) { |
141 |
return; |
|
142 |
} |
|
143 |
||
144 |
// If OS doesn't support demand paging for large page memory, we need |
|
145 |
// to use reserve_memory_special() to reserve and pin the entire region. |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
146 |
// If there is a backing file directory for this space then whether |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
147 |
// large pages are allocated is up to the filesystem of the backing file. |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
148 |
// So we ignore the UseLargePages flag in this case. |
1 | 149 |
bool special = large && !os::can_commit_large_page_memory(); |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
150 |
if (special && _fd_for_heap != -1) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
151 |
special = false; |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
152 |
if (UseLargePages && (!FLAG_IS_DEFAULT(UseLargePages) || |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
153 |
!FLAG_IS_DEFAULT(LargePageSizeInBytes))) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
154 |
log_debug(gc, heap)("Ignoring UseLargePages since large page support is up to the file system of the backing file for Java heap"); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
155 |
} |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
156 |
} |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
157 |
|
1 | 158 |
char* base = NULL; |
159 |
||
160 |
if (special) { |
|
161 |
||
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
162 |
base = os::reserve_memory_special(size, alignment, requested_address, executable); |
1 | 163 |
|
164 |
if (base != NULL) { |
|
5898 | 165 |
if (failed_to_reserve_as_requested(base, requested_address, size, true)) { |
166 |
// OS ignored requested address. Try different address. |
|
167 |
return; |
|
168 |
} |
|
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
169 |
// Check alignment constraints. |
10237
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
170 |
assert((uintptr_t) base % alignment == 0, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
171 |
"Large pages returned a non-aligned address, base: " |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
172 |
PTR_FORMAT " alignment: " SIZE_FORMAT_HEX, |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
173 |
p2i(base), alignment); |
1 | 174 |
_special = true; |
175 |
} else { |
|
176 |
// failed; try to reserve regular memory below |
|
5898 | 177 |
if (UseLargePages && (!FLAG_IS_DEFAULT(UseLargePages) || |
178 |
!FLAG_IS_DEFAULT(LargePageSizeInBytes))) { |
|
37428
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
179 |
log_debug(gc, heap, coops)("Reserve regular memory without large pages"); |
5898 | 180 |
} |
1 | 181 |
} |
182 |
} |
|
183 |
||
184 |
if (base == NULL) { |
|
185 |
// Optimistically assume that the OSes returns an aligned base pointer. |
|
186 |
// When reserving a large address range, most OSes seem to align to at |
|
187 |
// least 64K. |
|
188 |
||
189 |
// If the memory was requested at a particular address, use |
|
190 |
// os::attempt_reserve_memory_at() to avoid over mapping something |
|
191 |
// important. If available space is not detected, return NULL. |
|
192 |
||
193 |
if (requested_address != 0) { |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
194 |
base = os::attempt_reserve_memory_at(size, requested_address, _fd_for_heap); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
195 |
if (failed_to_reserve_as_requested(base, requested_address, size, false, _fd_for_heap != -1)) { |
5898 | 196 |
// OS ignored requested address. Try different address. |
197 |
base = NULL; |
|
198 |
} |
|
1 | 199 |
} else { |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
200 |
base = os::reserve_memory(size, NULL, alignment, _fd_for_heap); |
1 | 201 |
} |
202 |
||
203 |
if (base == NULL) return; |
|
204 |
||
205 |
// Check alignment constraints |
|
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
206 |
if ((((size_t)base) & (alignment - 1)) != 0) { |
1 | 207 |
// Base not aligned, retry |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
208 |
unmap_or_release_memory(base, size, _fd_for_heap != -1 /*is_file_mapped*/); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
209 |
|
14840
8994c2377547
7173959: Jvm crashed during coherence exabus (tmb) testing
brutisso
parents:
13728
diff
changeset
|
210 |
// Make sure that size is aligned |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
211 |
size = align_up(size, alignment); |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
212 |
base = os::reserve_memory_aligned(size, alignment, _fd_for_heap); |
10237
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
213 |
|
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
214 |
if (requested_address != 0 && |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
215 |
failed_to_reserve_as_requested(base, requested_address, size, false, _fd_for_heap != -1)) { |
10237
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
216 |
// As a result of the alignment constraints, the allocated base differs |
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
217 |
// from the requested address. Return back to the caller who can |
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
218 |
// take remedial action (like try again without a requested address). |
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
219 |
assert(_base == NULL, "should be"); |
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
220 |
return; |
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
221 |
} |
1 | 222 |
} |
223 |
} |
|
224 |
// Done |
|
225 |
_base = base; |
|
226 |
_size = size; |
|
10237
df347ffafa0d
7069863: G1: SIGSEGV running SPECjbb2011 and -UseBiasedLocking
johnc
parents:
7397
diff
changeset
|
227 |
_alignment = alignment; |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
228 |
// If heap is reserved with a backing file, the entire space has been committed. So set the _special flag to true |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
229 |
if (_fd_for_heap != -1) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
230 |
_special = true; |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
231 |
} |
1 | 232 |
} |
233 |
||
234 |
ReservedSpace ReservedSpace::first_part(size_t partition_size, size_t alignment, |
|
235 |
bool split, bool realloc) { |
|
236 |
assert(partition_size <= size(), "partition failed"); |
|
237 |
if (split) { |
|
2268 | 238 |
os::split_reserved_memory(base(), size(), partition_size, realloc); |
1 | 239 |
} |
2268 | 240 |
ReservedSpace result(base(), partition_size, alignment, special(), |
241 |
executable()); |
|
1 | 242 |
return result; |
243 |
} |
|
244 |
||
245 |
||
246 |
ReservedSpace |
|
247 |
ReservedSpace::last_part(size_t partition_size, size_t alignment) { |
|
248 |
assert(partition_size <= size(), "partition failed"); |
|
249 |
ReservedSpace result(base() + partition_size, size() - partition_size, |
|
2268 | 250 |
alignment, special(), executable()); |
1 | 251 |
return result; |
252 |
} |
|
253 |
||
254 |
||
255 |
size_t ReservedSpace::page_align_size_up(size_t size) { |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
256 |
return align_up(size, os::vm_page_size()); |
1 | 257 |
} |
258 |
||
259 |
||
260 |
size_t ReservedSpace::page_align_size_down(size_t size) { |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
261 |
return align_down(size, os::vm_page_size()); |
1 | 262 |
} |
263 |
||
264 |
||
265 |
size_t ReservedSpace::allocation_align_size_up(size_t size) { |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
266 |
return align_up(size, os::vm_allocation_granularity()); |
1 | 267 |
} |
268 |
||
269 |
||
270 |
void ReservedSpace::release() { |
|
271 |
if (is_reserved()) { |
|
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
272 |
char *real_base = _base - _noaccess_prefix; |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
273 |
const size_t real_size = _size + _noaccess_prefix; |
1 | 274 |
if (special()) { |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
275 |
if (_fd_for_heap != -1) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
276 |
os::unmap_memory(real_base, real_size); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
277 |
} else { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
278 |
os::release_memory_special(real_base, real_size); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
279 |
} |
1 | 280 |
} else{ |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
281 |
os::release_memory(real_base, real_size); |
1 | 282 |
} |
283 |
_base = NULL; |
|
284 |
_size = 0; |
|
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
285 |
_noaccess_prefix = 0; |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
286 |
_alignment = 0; |
1 | 287 |
_special = false; |
2268 | 288 |
_executable = false; |
1 | 289 |
} |
290 |
} |
|
291 |
||
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
292 |
static size_t noaccess_prefix_size(size_t alignment) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
293 |
return lcm(os::vm_page_size(), alignment); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
294 |
} |
5898 | 295 |
|
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
296 |
void ReservedHeapSpace::establish_noaccess_prefix() { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
297 |
assert(_alignment >= (size_t)os::vm_page_size(), "must be at least page size big"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
298 |
_noaccess_prefix = noaccess_prefix_size(_alignment); |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
299 |
|
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
300 |
if (base() && base() + _size > (char *)OopEncodingHeapMax) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
301 |
if (true |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
302 |
WIN64_ONLY(&& !UseLargePages) |
42061
67176803a846
8168490: Use the LL/ULL suffixes to define 64-bit integer literals on Windows
simonis
parents:
39966
diff
changeset
|
303 |
AIX_ONLY(&& os::vm_page_size() != 64*K)) { |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
304 |
// Protect memory at the base of the allocated region. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
305 |
// If special, the page was committed (only matters on windows) |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
306 |
if (!os::protect_memory(_base, _noaccess_prefix, os::MEM_PROT_NONE, _special)) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
307 |
fatal("cannot protect protection page"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
308 |
} |
37428
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
309 |
log_debug(gc, heap, coops)("Protected page at the reserved heap base: " |
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
310 |
PTR_FORMAT " / " INTX_FORMAT " bytes", |
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
311 |
p2i(_base), |
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
312 |
_noaccess_prefix); |
54780
f8d182aedc92
8223136: Move compressed oops functions to CompressedOops class
stefank
parents:
53547
diff
changeset
|
313 |
assert(CompressedOops::use_implicit_null_checks() == true, "not initialized?"); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
314 |
} else { |
54780
f8d182aedc92
8223136: Move compressed oops functions to CompressedOops class
stefank
parents:
53547
diff
changeset
|
315 |
CompressedOops::set_use_implicit_null_checks(false); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
316 |
} |
5898 | 317 |
} |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
318 |
|
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
319 |
_base += _noaccess_prefix; |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
320 |
_size -= _noaccess_prefix; |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
321 |
assert(((uintptr_t)_base % _alignment == 0), "must be exactly of required alignment"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
322 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
323 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
324 |
// Tries to allocate memory of size 'size' at address requested_address with alignment 'alignment'. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
325 |
// Does not check whether the reserved memory actually is at requested_address, as the memory returned |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
326 |
// might still fulfill the wishes of the caller. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
327 |
// Assures the memory is aligned to 'alignment'. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
328 |
// NOTE: If ReservedHeapSpace already points to some reserved memory this is freed, first. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
329 |
void ReservedHeapSpace::try_reserve_heap(size_t size, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
330 |
size_t alignment, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
331 |
bool large, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
332 |
char* requested_address) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
333 |
if (_base != NULL) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
334 |
// We tried before, but we didn't like the address delivered. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
335 |
release(); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
336 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
337 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
338 |
// If OS doesn't support demand paging for large page memory, we need |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
339 |
// to use reserve_memory_special() to reserve and pin the entire region. |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
340 |
// If there is a backing file directory for this space then whether |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
341 |
// large pages are allocated is up to the filesystem of the backing file. |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
342 |
// So we ignore the UseLargePages flag in this case. |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
343 |
bool special = large && !os::can_commit_large_page_memory(); |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
344 |
if (special && _fd_for_heap != -1) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
345 |
special = false; |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
346 |
if (UseLargePages && (!FLAG_IS_DEFAULT(UseLargePages) || |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
347 |
!FLAG_IS_DEFAULT(LargePageSizeInBytes))) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
348 |
log_debug(gc, heap)("Cannot allocate large pages for Java Heap when AllocateHeapAt option is set."); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
349 |
} |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
350 |
} |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
351 |
char* base = NULL; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
352 |
|
37428
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
353 |
log_trace(gc, heap, coops)("Trying to allocate at address " PTR_FORMAT |
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
354 |
" heap of size " SIZE_FORMAT_HEX, |
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
355 |
p2i(requested_address), |
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
356 |
size); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
357 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
358 |
if (special) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
359 |
base = os::reserve_memory_special(size, alignment, requested_address, false); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
360 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
361 |
if (base != NULL) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
362 |
// Check alignment constraints. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
363 |
assert((uintptr_t) base % alignment == 0, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
364 |
"Large pages returned a non-aligned address, base: " |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
365 |
PTR_FORMAT " alignment: " SIZE_FORMAT_HEX, |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
366 |
p2i(base), alignment); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
367 |
_special = true; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
368 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
369 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
370 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
371 |
if (base == NULL) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
372 |
// Failed; try to reserve regular memory below |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
373 |
if (UseLargePages && (!FLAG_IS_DEFAULT(UseLargePages) || |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
374 |
!FLAG_IS_DEFAULT(LargePageSizeInBytes))) { |
37428
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
375 |
log_debug(gc, heap, coops)("Reserve regular memory without large pages"); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
376 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
377 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
378 |
// Optimistically assume that the OSes returns an aligned base pointer. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
379 |
// When reserving a large address range, most OSes seem to align to at |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
380 |
// least 64K. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
381 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
382 |
// If the memory was requested at a particular address, use |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
383 |
// os::attempt_reserve_memory_at() to avoid over mapping something |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
384 |
// important. If available space is not detected, return NULL. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
385 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
386 |
if (requested_address != 0) { |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
387 |
base = os::attempt_reserve_memory_at(size, requested_address, _fd_for_heap); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
388 |
} else { |
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
389 |
base = os::reserve_memory(size, NULL, alignment, _fd_for_heap); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
390 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
391 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
392 |
if (base == NULL) { return; } |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
393 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
394 |
// Done |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
395 |
_base = base; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
396 |
_size = size; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
397 |
_alignment = alignment; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
398 |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
399 |
// If heap is reserved with a backing file, the entire space has been committed. So set the _special flag to true |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
400 |
if (_fd_for_heap != -1) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
401 |
_special = true; |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
402 |
} |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
403 |
|
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
404 |
// Check alignment constraints |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
405 |
if ((((size_t)base) & (alignment - 1)) != 0) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
406 |
// Base not aligned, retry. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
407 |
release(); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
408 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
409 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
410 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
411 |
void ReservedHeapSpace::try_reserve_range(char *highest_start, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
412 |
char *lowest_start, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
413 |
size_t attach_point_alignment, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
414 |
char *aligned_heap_base_min_address, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
415 |
char *upper_bound, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
416 |
size_t size, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
417 |
size_t alignment, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
418 |
bool large) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
419 |
const size_t attach_range = highest_start - lowest_start; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
420 |
// Cap num_attempts at possible number. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
421 |
// At least one is possible even for 0 sized attach range. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
422 |
const uint64_t num_attempts_possible = (attach_range / attach_point_alignment) + 1; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
423 |
const uint64_t num_attempts_to_try = MIN2((uint64_t)HeapSearchSteps, num_attempts_possible); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
424 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
425 |
const size_t stepsize = (attach_range == 0) ? // Only one try. |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
426 |
(size_t) highest_start : align_up(attach_range / num_attempts_to_try, attach_point_alignment); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
427 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
428 |
// Try attach points from top to bottom. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
429 |
char* attach_point = highest_start; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
430 |
while (attach_point >= lowest_start && |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
431 |
attach_point <= highest_start && // Avoid wrap around. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
432 |
((_base == NULL) || |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
433 |
(_base < aligned_heap_base_min_address || _base + size > upper_bound))) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
434 |
try_reserve_heap(size, alignment, large, attach_point); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
435 |
attach_point -= stepsize; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
436 |
} |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
437 |
} |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
438 |
|
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
439 |
#define SIZE_64K ((uint64_t) UCONST64( 0x10000)) |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
440 |
#define SIZE_256M ((uint64_t) UCONST64( 0x10000000)) |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
441 |
#define SIZE_32G ((uint64_t) UCONST64( 0x800000000)) |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
442 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
443 |
// Helper for heap allocation. Returns an array with addresses |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
444 |
// (OS-specific) which are suited for disjoint base mode. Array is |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
445 |
// NULL terminated. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
446 |
static char** get_attach_addresses_for_disjoint_mode() { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
447 |
static uint64_t addresses[] = { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
448 |
2 * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
449 |
3 * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
450 |
4 * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
451 |
8 * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
452 |
10 * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
453 |
1 * SIZE_64K * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
454 |
2 * SIZE_64K * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
455 |
3 * SIZE_64K * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
456 |
4 * SIZE_64K * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
457 |
16 * SIZE_64K * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
458 |
32 * SIZE_64K * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
459 |
34 * SIZE_64K * SIZE_32G, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
460 |
0 |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
461 |
}; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
462 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
463 |
// Sort out addresses smaller than HeapBaseMinAddress. This assumes |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
464 |
// the array is sorted. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
465 |
uint i = 0; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
466 |
while (addresses[i] != 0 && |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
467 |
(addresses[i] < OopEncodingHeapMax || addresses[i] < HeapBaseMinAddress)) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
468 |
i++; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
469 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
470 |
uint start = i; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
471 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
472 |
// Avoid more steps than requested. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
473 |
i = 0; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
474 |
while (addresses[start+i] != 0) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
475 |
if (i == HeapSearchSteps) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
476 |
addresses[start+i] = 0; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
477 |
break; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
478 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
479 |
i++; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
480 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
481 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
482 |
return (char**) &addresses[start]; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
483 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
484 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
485 |
void ReservedHeapSpace::initialize_compressed_heap(const size_t size, size_t alignment, bool large) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
486 |
guarantee(size + noaccess_prefix_size(alignment) <= OopEncodingHeapMax, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
487 |
"can not allocate compressed oop heap for this size"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
488 |
guarantee(alignment == MAX2(alignment, (size_t)os::vm_page_size()), "alignment too small"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
489 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
490 |
const size_t granularity = os::vm_allocation_granularity(); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
491 |
assert((size & (granularity - 1)) == 0, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
492 |
"size not aligned to os::vm_allocation_granularity()"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
493 |
assert((alignment & (granularity - 1)) == 0, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
494 |
"alignment not aligned to os::vm_allocation_granularity()"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
495 |
assert(alignment == 0 || is_power_of_2((intptr_t)alignment), |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
496 |
"not a power of 2"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
497 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
498 |
// The necessary attach point alignment for generated wish addresses. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
499 |
// This is needed to increase the chance of attaching for mmap and shmat. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
500 |
const size_t os_attach_point_alignment = |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
501 |
AIX_ONLY(SIZE_256M) // Known shm boundary alignment. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
502 |
NOT_AIX(os::vm_allocation_granularity()); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
503 |
const size_t attach_point_alignment = lcm(alignment, os_attach_point_alignment); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
504 |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
505 |
char *aligned_heap_base_min_address = (char *)align_up((void *)HeapBaseMinAddress, alignment); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
506 |
size_t noaccess_prefix = ((aligned_heap_base_min_address + size) > (char*)OopEncodingHeapMax) ? |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
507 |
noaccess_prefix_size(alignment) : 0; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
508 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
509 |
// Attempt to alloc at user-given address. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
510 |
if (!FLAG_IS_DEFAULT(HeapBaseMinAddress)) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
511 |
try_reserve_heap(size + noaccess_prefix, alignment, large, aligned_heap_base_min_address); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
512 |
if (_base != aligned_heap_base_min_address) { // Enforce this exact address. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
513 |
release(); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
514 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
515 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
516 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
517 |
// Keep heap at HeapBaseMinAddress. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
518 |
if (_base == NULL) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
519 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
520 |
// Try to allocate the heap at addresses that allow efficient oop compression. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
521 |
// Different schemes are tried, in order of decreasing optimization potential. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
522 |
// |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
523 |
// For this, try_reserve_heap() is called with the desired heap base addresses. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
524 |
// A call into the os layer to allocate at a given address can return memory |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
525 |
// at a different address than requested. Still, this might be memory at a useful |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
526 |
// address. try_reserve_heap() always returns this allocated memory, as only here |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
527 |
// the criteria for a good heap are checked. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
528 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
529 |
// Attempt to allocate so that we can run without base and scale (32-Bit unscaled compressed oops). |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
530 |
// Give it several tries from top of range to bottom. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
531 |
if (aligned_heap_base_min_address + size <= (char *)UnscaledOopHeapMax) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
532 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
533 |
// Calc address range within we try to attach (range of possible start addresses). |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
534 |
char* const highest_start = align_down((char *)UnscaledOopHeapMax - size, attach_point_alignment); |
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
535 |
char* const lowest_start = align_up(aligned_heap_base_min_address, attach_point_alignment); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
536 |
try_reserve_range(highest_start, lowest_start, attach_point_alignment, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
537 |
aligned_heap_base_min_address, (char *)UnscaledOopHeapMax, size, alignment, large); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
538 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
539 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
540 |
// zerobased: Attempt to allocate in the lower 32G. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
541 |
// But leave room for the compressed class pointers, which is allocated above |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
542 |
// the heap. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
543 |
char *zerobased_max = (char *)OopEncodingHeapMax; |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
544 |
const size_t class_space = align_up(CompressedClassSpaceSize, alignment); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
545 |
// For small heaps, save some space for compressed class pointer |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
546 |
// space so it can be decoded with no base. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
547 |
if (UseCompressedClassPointers && !UseSharedSpaces && |
28946
24261e03ba4c
8072434: 8064457: introduces performance regressions in 9-b47
goetz
parents:
28631
diff
changeset
|
548 |
OopEncodingHeapMax <= KlassEncodingMetaspaceMax && |
24261e03ba4c
8072434: 8064457: introduces performance regressions in 9-b47
goetz
parents:
28631
diff
changeset
|
549 |
(uint64_t)(aligned_heap_base_min_address + size + class_space) <= KlassEncodingMetaspaceMax) { |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
550 |
zerobased_max = (char *)OopEncodingHeapMax - class_space; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
551 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
552 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
553 |
// Give it several tries from top of range to bottom. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
554 |
if (aligned_heap_base_min_address + size <= zerobased_max && // Zerobased theoretical possible. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
555 |
((_base == NULL) || // No previous try succeeded. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
556 |
(_base + size > zerobased_max))) { // Unscaled delivered an arbitrary address. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
557 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
558 |
// Calc address range within we try to attach (range of possible start addresses). |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
559 |
char *const highest_start = align_down(zerobased_max - size, attach_point_alignment); |
29580
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
28946
diff
changeset
|
560 |
// Need to be careful about size being guaranteed to be less |
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
28946
diff
changeset
|
561 |
// than UnscaledOopHeapMax due to type constraints. |
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
28946
diff
changeset
|
562 |
char *lowest_start = aligned_heap_base_min_address; |
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
28946
diff
changeset
|
563 |
uint64_t unscaled_end = UnscaledOopHeapMax - size; |
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
28946
diff
changeset
|
564 |
if (unscaled_end < UnscaledOopHeapMax) { // unscaled_end wrapped if size is large |
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
28946
diff
changeset
|
565 |
lowest_start = MAX2(lowest_start, (char*)unscaled_end); |
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
28946
diff
changeset
|
566 |
} |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
567 |
lowest_start = align_up(lowest_start, attach_point_alignment); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
568 |
try_reserve_range(highest_start, lowest_start, attach_point_alignment, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
569 |
aligned_heap_base_min_address, zerobased_max, size, alignment, large); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
570 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
571 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
572 |
// Now we go for heaps with base != 0. We need a noaccess prefix to efficiently |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
573 |
// implement null checks. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
574 |
noaccess_prefix = noaccess_prefix_size(alignment); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
575 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
576 |
// Try to attach at addresses that are aligned to OopEncodingHeapMax. Disjointbase mode. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
577 |
char** addresses = get_attach_addresses_for_disjoint_mode(); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
578 |
int i = 0; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
579 |
while (addresses[i] && // End of array not yet reached. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
580 |
((_base == NULL) || // No previous try succeeded. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
581 |
(_base + size > (char *)OopEncodingHeapMax && // Not zerobased or unscaled address. |
54780
f8d182aedc92
8223136: Move compressed oops functions to CompressedOops class
stefank
parents:
53547
diff
changeset
|
582 |
!CompressedOops::is_disjoint_heap_base_address((address)_base)))) { // Not disjoint address. |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
583 |
char* const attach_point = addresses[i]; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
584 |
assert(attach_point >= aligned_heap_base_min_address, "Flag support broken"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
585 |
try_reserve_heap(size + noaccess_prefix, alignment, large, attach_point); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
586 |
i++; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
587 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
588 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
589 |
// Last, desperate try without any placement. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
590 |
if (_base == NULL) { |
37428
6e724f3d488b
8152896: Convert PrintCompressedOopsMode to Unified Logging
rprotacio
parents:
35898
diff
changeset
|
591 |
log_trace(gc, heap, coops)("Trying to allocate at address NULL heap of size " SIZE_FORMAT_HEX, size + noaccess_prefix); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
592 |
initialize(size + noaccess_prefix, alignment, large, NULL, false); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
593 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
594 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
595 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
596 |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
597 |
ReservedHeapSpace::ReservedHeapSpace(size_t size, size_t alignment, bool large, const char* heap_allocation_directory) : ReservedSpace() { |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
598 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
599 |
if (size == 0) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
600 |
return; |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
601 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
602 |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
603 |
if (heap_allocation_directory != NULL) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
604 |
_fd_for_heap = os::create_file_for_heap(heap_allocation_directory); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
605 |
if (_fd_for_heap == -1) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
606 |
vm_exit_during_initialization( |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
607 |
err_msg("Could not create file for Heap at location %s", heap_allocation_directory)); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
608 |
} |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
609 |
} |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
610 |
|
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
611 |
// Heap size should be aligned to alignment, too. |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
612 |
guarantee(is_aligned(size, alignment), "set by caller"); |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
613 |
|
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
614 |
if (UseCompressedOops) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
615 |
initialize_compressed_heap(size, alignment, large); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
616 |
if (_size > size) { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
617 |
// We allocated heap with noaccess prefix. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
618 |
// It can happen we get a zerobased/unscaled heap with noaccess prefix, |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
619 |
// if we had to try at arbitrary address. |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
620 |
establish_noaccess_prefix(); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
621 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
622 |
} else { |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
623 |
initialize(size, alignment, large, NULL, false); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
624 |
} |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
625 |
|
57777
90ead0febf56
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents:
54780
diff
changeset
|
626 |
assert(markWord::encode_pointer_as_mark(_base).decode_pointer() == _base, |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
627 |
"area must be distinguishable from marks for mark-sweep"); |
57777
90ead0febf56
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents:
54780
diff
changeset
|
628 |
assert(markWord::encode_pointer_as_mark(&_base[size]).decode_pointer() == &_base[size], |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
629 |
"area must be distinguishable from marks for mark-sweep"); |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
630 |
|
46983 | 631 |
if (base() != NULL) { |
13195 | 632 |
MemTracker::record_virtual_memory_type((address)base(), mtJavaHeap); |
633 |
} |
|
48153
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
634 |
|
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
635 |
if (_fd_for_heap != -1) { |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
636 |
os::close(_fd_for_heap); |
cfa2c43e58c2
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices
kkharbas
parents:
47216
diff
changeset
|
637 |
} |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
638 |
} |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
639 |
|
58015
dd84de796f2c
8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents:
57811
diff
changeset
|
640 |
MemRegion ReservedHeapSpace::region() const { |
dd84de796f2c
8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents:
57811
diff
changeset
|
641 |
return MemRegion((HeapWord*)base(), (HeapWord*)end()); |
dd84de796f2c
8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents:
57811
diff
changeset
|
642 |
} |
dd84de796f2c
8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents:
57811
diff
changeset
|
643 |
|
2268 | 644 |
// Reserve space for code segment. Same as Java heap only we mark this as |
645 |
// executable. |
|
646 |
ReservedCodeSpace::ReservedCodeSpace(size_t r_size, |
|
647 |
size_t rs_align, |
|
648 |
bool large) : |
|
42664 | 649 |
ReservedSpace(r_size, rs_align, large, /*executable*/ true) { |
13195 | 650 |
MemTracker::record_virtual_memory_type((address)base(), mtCode); |
2268 | 651 |
} |
652 |
||
1 | 653 |
// VirtualSpace |
654 |
||
655 |
VirtualSpace::VirtualSpace() { |
|
656 |
_low_boundary = NULL; |
|
657 |
_high_boundary = NULL; |
|
658 |
_low = NULL; |
|
659 |
_high = NULL; |
|
660 |
_lower_high = NULL; |
|
661 |
_middle_high = NULL; |
|
662 |
_upper_high = NULL; |
|
663 |
_lower_high_boundary = NULL; |
|
664 |
_middle_high_boundary = NULL; |
|
665 |
_upper_high_boundary = NULL; |
|
666 |
_lower_alignment = 0; |
|
667 |
_middle_alignment = 0; |
|
668 |
_upper_alignment = 0; |
|
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
669 |
_special = false; |
2268 | 670 |
_executable = false; |
1 | 671 |
} |
672 |
||
673 |
||
674 |
bool VirtualSpace::initialize(ReservedSpace rs, size_t committed_size) { |
|
28631 | 675 |
const size_t max_commit_granularity = os::page_size_for_region_unaligned(rs.size(), 1); |
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
676 |
return initialize_with_granularity(rs, committed_size, max_commit_granularity); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
677 |
} |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
678 |
|
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
679 |
bool VirtualSpace::initialize_with_granularity(ReservedSpace rs, size_t committed_size, size_t max_commit_granularity) { |
1 | 680 |
if(!rs.is_reserved()) return false; // allocation failed. |
681 |
assert(_low_boundary == NULL, "VirtualSpace already initialized"); |
|
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
682 |
assert(max_commit_granularity > 0, "Granularity must be non-zero."); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
683 |
|
1 | 684 |
_low_boundary = rs.base(); |
685 |
_high_boundary = low_boundary() + rs.size(); |
|
686 |
||
687 |
_low = low_boundary(); |
|
688 |
_high = low(); |
|
689 |
||
690 |
_special = rs.special(); |
|
2268 | 691 |
_executable = rs.executable(); |
1 | 692 |
|
693 |
// When a VirtualSpace begins life at a large size, make all future expansion |
|
694 |
// and shrinking occur aligned to a granularity of large pages. This avoids |
|
695 |
// fragmentation of physical addresses that inhibits the use of large pages |
|
696 |
// by the OS virtual memory system. Empirically, we see that with a 4MB |
|
697 |
// page size, the only spaces that get handled this way are codecache and |
|
698 |
// the heap itself, both of which provide a substantial performance |
|
699 |
// boost in many benchmarks when covered by large pages. |
|
700 |
// |
|
701 |
// No attempt is made to force large page alignment at the very top and |
|
702 |
// bottom of the space if they are not aligned so already. |
|
703 |
_lower_alignment = os::vm_page_size(); |
|
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
704 |
_middle_alignment = max_commit_granularity; |
1 | 705 |
_upper_alignment = os::vm_page_size(); |
706 |
||
707 |
// End of each region |
|
46620
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46619
diff
changeset
|
708 |
_lower_high_boundary = align_up(low_boundary(), middle_alignment()); |
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46619
diff
changeset
|
709 |
_middle_high_boundary = align_down(high_boundary(), middle_alignment()); |
1 | 710 |
_upper_high_boundary = high_boundary(); |
711 |
||
712 |
// High address of each region |
|
713 |
_lower_high = low_boundary(); |
|
714 |
_middle_high = lower_high_boundary(); |
|
715 |
_upper_high = middle_high_boundary(); |
|
716 |
||
717 |
// commit to initial size |
|
718 |
if (committed_size > 0) { |
|
719 |
if (!expand_by(committed_size)) { |
|
720 |
return false; |
|
721 |
} |
|
722 |
} |
|
723 |
return true; |
|
724 |
} |
|
725 |
||
726 |
||
727 |
VirtualSpace::~VirtualSpace() { |
|
728 |
release(); |
|
729 |
} |
|
730 |
||
731 |
||
732 |
void VirtualSpace::release() { |
|
39966
43c7f35b800e
8160897: Concurrent mark mark stack memory allocation leaks memory
tschatzl
parents:
38009
diff
changeset
|
733 |
// This does not release memory it reserved. |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
734 |
// Caller must release via rs.release(); |
1 | 735 |
_low_boundary = NULL; |
736 |
_high_boundary = NULL; |
|
737 |
_low = NULL; |
|
738 |
_high = NULL; |
|
739 |
_lower_high = NULL; |
|
740 |
_middle_high = NULL; |
|
741 |
_upper_high = NULL; |
|
742 |
_lower_high_boundary = NULL; |
|
743 |
_middle_high_boundary = NULL; |
|
744 |
_upper_high_boundary = NULL; |
|
745 |
_lower_alignment = 0; |
|
746 |
_middle_alignment = 0; |
|
747 |
_upper_alignment = 0; |
|
748 |
_special = false; |
|
2268 | 749 |
_executable = false; |
1 | 750 |
} |
751 |
||
752 |
||
753 |
size_t VirtualSpace::committed_size() const { |
|
754 |
return pointer_delta(high(), low(), sizeof(char)); |
|
755 |
} |
|
756 |
||
757 |
||
758 |
size_t VirtualSpace::reserved_size() const { |
|
759 |
return pointer_delta(high_boundary(), low_boundary(), sizeof(char)); |
|
760 |
} |
|
761 |
||
762 |
||
763 |
size_t VirtualSpace::uncommitted_size() const { |
|
764 |
return reserved_size() - committed_size(); |
|
765 |
} |
|
766 |
||
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
767 |
size_t VirtualSpace::actual_committed_size() const { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
768 |
// Special VirtualSpaces commit all reserved space up front. |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
769 |
if (special()) { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
770 |
return reserved_size(); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
771 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
772 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
773 |
size_t committed_low = pointer_delta(_lower_high, _low_boundary, sizeof(char)); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
774 |
size_t committed_middle = pointer_delta(_middle_high, _lower_high_boundary, sizeof(char)); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
775 |
size_t committed_high = pointer_delta(_upper_high, _middle_high_boundary, sizeof(char)); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
776 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
777 |
#ifdef ASSERT |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
778 |
size_t lower = pointer_delta(_lower_high_boundary, _low_boundary, sizeof(char)); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
779 |
size_t middle = pointer_delta(_middle_high_boundary, _lower_high_boundary, sizeof(char)); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
780 |
size_t upper = pointer_delta(_upper_high_boundary, _middle_high_boundary, sizeof(char)); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
781 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
782 |
if (committed_high > 0) { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
783 |
assert(committed_low == lower, "Must be"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
784 |
assert(committed_middle == middle, "Must be"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
785 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
786 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
787 |
if (committed_middle > 0) { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
788 |
assert(committed_low == lower, "Must be"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
789 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
790 |
if (committed_middle < middle) { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
791 |
assert(committed_high == 0, "Must be"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
792 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
793 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
794 |
if (committed_low < lower) { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
795 |
assert(committed_high == 0, "Must be"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
796 |
assert(committed_middle == 0, "Must be"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
797 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
798 |
#endif |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
799 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
800 |
return committed_low + committed_middle + committed_high; |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
801 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
802 |
|
1 | 803 |
|
804 |
bool VirtualSpace::contains(const void* p) const { |
|
805 |
return low() <= (const char*) p && (const char*) p < high(); |
|
806 |
} |
|
807 |
||
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
808 |
static void pretouch_expanded_memory(void* start, void* end) { |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
809 |
assert(is_aligned(start, os::vm_page_size()), "Unexpected alignment"); |
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
810 |
assert(is_aligned(end, os::vm_page_size()), "Unexpected alignment"); |
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
811 |
|
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
812 |
os::pretouch_memory(start, end); |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
813 |
} |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
814 |
|
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
815 |
static bool commit_expanded(char* start, size_t size, size_t alignment, bool pre_touch, bool executable) { |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
816 |
if (os::commit_memory(start, size, alignment, executable)) { |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
817 |
if (pre_touch || AlwaysPreTouch) { |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
818 |
pretouch_expanded_memory(start, start + size); |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
819 |
} |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
820 |
return true; |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
821 |
} |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
822 |
|
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
823 |
debug_only(warning( |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
824 |
"INFO: os::commit_memory(" PTR_FORMAT ", " PTR_FORMAT |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
825 |
" size=" SIZE_FORMAT ", executable=%d) failed", |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
826 |
p2i(start), p2i(start + size), size, executable);) |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
827 |
|
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
828 |
return false; |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
829 |
} |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
830 |
|
1 | 831 |
/* |
832 |
First we need to determine if a particular virtual space is using large |
|
833 |
pages. This is done at the initialize function and only virtual spaces |
|
834 |
that are larger than LargePageSizeInBytes use large pages. Once we |
|
835 |
have determined this, all expand_by and shrink_by calls must grow and |
|
836 |
shrink by large page size chunks. If a particular request |
|
837 |
is within the current large page, the call to commit and uncommit memory |
|
838 |
can be ignored. In the case that the low and high boundaries of this |
|
839 |
space is not large page aligned, the pages leading to the first large |
|
840 |
page address and the pages after the last large page address must be |
|
841 |
allocated with default pages. |
|
842 |
*/ |
|
843 |
bool VirtualSpace::expand_by(size_t bytes, bool pre_touch) { |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
844 |
if (uncommitted_size() < bytes) { |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
845 |
return false; |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
846 |
} |
1 | 847 |
|
848 |
if (special()) { |
|
849 |
// don't commit memory if the entire space is pinned in memory |
|
850 |
_high += bytes; |
|
851 |
return true; |
|
852 |
} |
|
853 |
||
854 |
char* previous_high = high(); |
|
855 |
char* unaligned_new_high = high() + bytes; |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
856 |
assert(unaligned_new_high <= high_boundary(), "cannot expand by more than upper boundary"); |
1 | 857 |
|
858 |
// Calculate where the new high for each of the regions should be. If |
|
859 |
// the low_boundary() and high_boundary() are LargePageSizeInBytes aligned |
|
860 |
// then the unaligned lower and upper new highs would be the |
|
861 |
// lower_high() and upper_high() respectively. |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
862 |
char* unaligned_lower_new_high = MIN2(unaligned_new_high, lower_high_boundary()); |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
863 |
char* unaligned_middle_new_high = MIN2(unaligned_new_high, middle_high_boundary()); |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
864 |
char* unaligned_upper_new_high = MIN2(unaligned_new_high, upper_high_boundary()); |
1 | 865 |
|
866 |
// Align the new highs based on the regions alignment. lower and upper |
|
867 |
// alignment will always be default page size. middle alignment will be |
|
868 |
// LargePageSizeInBytes if the actual size of the virtual space is in |
|
869 |
// fact larger than LargePageSizeInBytes. |
|
46620
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46619
diff
changeset
|
870 |
char* aligned_lower_new_high = align_up(unaligned_lower_new_high, lower_alignment()); |
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46619
diff
changeset
|
871 |
char* aligned_middle_new_high = align_up(unaligned_middle_new_high, middle_alignment()); |
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46619
diff
changeset
|
872 |
char* aligned_upper_new_high = align_up(unaligned_upper_new_high, upper_alignment()); |
1 | 873 |
|
874 |
// Determine which regions need to grow in this expand_by call. |
|
875 |
// If you are growing in the lower region, high() must be in that |
|
22551 | 876 |
// region so calculate the size based on high(). For the middle and |
1 | 877 |
// upper regions, determine the starting point of growth based on the |
878 |
// location of high(). By getting the MAX of the region's low address |
|
22551 | 879 |
// (or the previous region's high address) and high(), we can tell if it |
1 | 880 |
// is an intra or inter region growth. |
881 |
size_t lower_needs = 0; |
|
882 |
if (aligned_lower_new_high > lower_high()) { |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
883 |
lower_needs = pointer_delta(aligned_lower_new_high, lower_high(), sizeof(char)); |
1 | 884 |
} |
885 |
size_t middle_needs = 0; |
|
886 |
if (aligned_middle_new_high > middle_high()) { |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
887 |
middle_needs = pointer_delta(aligned_middle_new_high, middle_high(), sizeof(char)); |
1 | 888 |
} |
889 |
size_t upper_needs = 0; |
|
890 |
if (aligned_upper_new_high > upper_high()) { |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
891 |
upper_needs = pointer_delta(aligned_upper_new_high, upper_high(), sizeof(char)); |
1 | 892 |
} |
893 |
||
894 |
// Check contiguity. |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
895 |
assert(low_boundary() <= lower_high() && lower_high() <= lower_high_boundary(), |
1 | 896 |
"high address must be contained within the region"); |
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
897 |
assert(lower_high_boundary() <= middle_high() && middle_high() <= middle_high_boundary(), |
1 | 898 |
"high address must be contained within the region"); |
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
899 |
assert(middle_high_boundary() <= upper_high() && upper_high() <= upper_high_boundary(), |
1 | 900 |
"high address must be contained within the region"); |
901 |
||
902 |
// Commit regions |
|
903 |
if (lower_needs > 0) { |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
904 |
assert(lower_high() + lower_needs <= lower_high_boundary(), "must not expand beyond region"); |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
905 |
if (!commit_expanded(lower_high(), lower_needs, _lower_alignment, pre_touch, _executable)) { |
1 | 906 |
return false; |
18069
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
17113
diff
changeset
|
907 |
} |
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
908 |
_lower_high += lower_needs; |
1 | 909 |
} |
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
910 |
|
1 | 911 |
if (middle_needs > 0) { |
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
912 |
assert(middle_high() + middle_needs <= middle_high_boundary(), "must not expand beyond region"); |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
913 |
if (!commit_expanded(middle_high(), middle_needs, _middle_alignment, pre_touch, _executable)) { |
1 | 914 |
return false; |
915 |
} |
|
916 |
_middle_high += middle_needs; |
|
917 |
} |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
918 |
|
1 | 919 |
if (upper_needs > 0) { |
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
920 |
assert(upper_high() + upper_needs <= upper_high_boundary(), "must not expand beyond region"); |
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
921 |
if (!commit_expanded(upper_high(), upper_needs, _upper_alignment, pre_touch, _executable)) { |
1 | 922 |
return false; |
923 |
} |
|
37984
5e9b81de0fce
8067785: Using AlwaysPreTouch does not always touch all pages
stefank
parents:
37428
diff
changeset
|
924 |
_upper_high += upper_needs; |
1 | 925 |
} |
926 |
||
927 |
_high += bytes; |
|
928 |
return true; |
|
929 |
} |
|
930 |
||
931 |
// A page is uncommitted if the contents of the entire page is deemed unusable. |
|
932 |
// Continue to decrement the high() pointer until it reaches a page boundary |
|
933 |
// in which case that particular page can now be uncommitted. |
|
934 |
void VirtualSpace::shrink_by(size_t size) { |
|
935 |
if (committed_size() < size) |
|
936 |
fatal("Cannot shrink virtual space to negative size"); |
|
937 |
||
938 |
if (special()) { |
|
939 |
// don't uncommit if the entire space is pinned in memory |
|
940 |
_high -= size; |
|
941 |
return; |
|
942 |
} |
|
943 |
||
944 |
char* unaligned_new_high = high() - size; |
|
945 |
assert(unaligned_new_high >= low_boundary(), "cannot shrink past lower boundary"); |
|
946 |
||
947 |
// Calculate new unaligned address |
|
948 |
char* unaligned_upper_new_high = |
|
949 |
MAX2(unaligned_new_high, middle_high_boundary()); |
|
950 |
char* unaligned_middle_new_high = |
|
951 |
MAX2(unaligned_new_high, lower_high_boundary()); |
|
952 |
char* unaligned_lower_new_high = |
|
953 |
MAX2(unaligned_new_high, low_boundary()); |
|
954 |
||
955 |
// Align address to region's alignment |
|
46620
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46619
diff
changeset
|
956 |
char* aligned_upper_new_high = align_up(unaligned_upper_new_high, upper_alignment()); |
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46619
diff
changeset
|
957 |
char* aligned_middle_new_high = align_up(unaligned_middle_new_high, middle_alignment()); |
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46619
diff
changeset
|
958 |
char* aligned_lower_new_high = align_up(unaligned_lower_new_high, lower_alignment()); |
1 | 959 |
|
960 |
// Determine which regions need to shrink |
|
961 |
size_t upper_needs = 0; |
|
962 |
if (aligned_upper_new_high < upper_high()) { |
|
963 |
upper_needs = |
|
964 |
pointer_delta(upper_high(), aligned_upper_new_high, sizeof(char)); |
|
965 |
} |
|
966 |
size_t middle_needs = 0; |
|
967 |
if (aligned_middle_new_high < middle_high()) { |
|
968 |
middle_needs = |
|
969 |
pointer_delta(middle_high(), aligned_middle_new_high, sizeof(char)); |
|
970 |
} |
|
971 |
size_t lower_needs = 0; |
|
972 |
if (aligned_lower_new_high < lower_high()) { |
|
973 |
lower_needs = |
|
974 |
pointer_delta(lower_high(), aligned_lower_new_high, sizeof(char)); |
|
975 |
} |
|
976 |
||
977 |
// Check contiguity. |
|
978 |
assert(middle_high_boundary() <= upper_high() && |
|
979 |
upper_high() <= upper_high_boundary(), |
|
980 |
"high address must be contained within the region"); |
|
981 |
assert(lower_high_boundary() <= middle_high() && |
|
982 |
middle_high() <= middle_high_boundary(), |
|
983 |
"high address must be contained within the region"); |
|
984 |
assert(low_boundary() <= lower_high() && |
|
985 |
lower_high() <= lower_high_boundary(), |
|
986 |
"high address must be contained within the region"); |
|
987 |
||
988 |
// Uncommit |
|
989 |
if (upper_needs > 0) { |
|
990 |
assert(middle_high_boundary() <= aligned_upper_new_high && |
|
991 |
aligned_upper_new_high + upper_needs <= upper_high_boundary(), |
|
992 |
"must not shrink beyond region"); |
|
993 |
if (!os::uncommit_memory(aligned_upper_new_high, upper_needs)) { |
|
994 |
debug_only(warning("os::uncommit_memory failed")); |
|
995 |
return; |
|
996 |
} else { |
|
997 |
_upper_high -= upper_needs; |
|
998 |
} |
|
999 |
} |
|
1000 |
if (middle_needs > 0) { |
|
1001 |
assert(lower_high_boundary() <= aligned_middle_new_high && |
|
1002 |
aligned_middle_new_high + middle_needs <= middle_high_boundary(), |
|
1003 |
"must not shrink beyond region"); |
|
1004 |
if (!os::uncommit_memory(aligned_middle_new_high, middle_needs)) { |
|
1005 |
debug_only(warning("os::uncommit_memory failed")); |
|
1006 |
return; |
|
1007 |
} else { |
|
1008 |
_middle_high -= middle_needs; |
|
1009 |
} |
|
1010 |
} |
|
1011 |
if (lower_needs > 0) { |
|
1012 |
assert(low_boundary() <= aligned_lower_new_high && |
|
1013 |
aligned_lower_new_high + lower_needs <= lower_high_boundary(), |
|
1014 |
"must not shrink beyond region"); |
|
1015 |
if (!os::uncommit_memory(aligned_lower_new_high, lower_needs)) { |
|
1016 |
debug_only(warning("os::uncommit_memory failed")); |
|
1017 |
return; |
|
1018 |
} else { |
|
1019 |
_lower_high -= lower_needs; |
|
1020 |
} |
|
1021 |
} |
|
1022 |
||
1023 |
_high -= size; |
|
1024 |
} |
|
1025 |
||
1026 |
#ifndef PRODUCT |
|
1027 |
void VirtualSpace::check_for_contiguity() { |
|
1028 |
// Check contiguity. |
|
1029 |
assert(low_boundary() <= lower_high() && |
|
1030 |
lower_high() <= lower_high_boundary(), |
|
1031 |
"high address must be contained within the region"); |
|
1032 |
assert(lower_high_boundary() <= middle_high() && |
|
1033 |
middle_high() <= middle_high_boundary(), |
|
1034 |
"high address must be contained within the region"); |
|
1035 |
assert(middle_high_boundary() <= upper_high() && |
|
1036 |
upper_high() <= upper_high_boundary(), |
|
1037 |
"high address must be contained within the region"); |
|
1038 |
assert(low() >= low_boundary(), "low"); |
|
1039 |
assert(low_boundary() <= lower_high_boundary(), "lower high boundary"); |
|
1040 |
assert(upper_high_boundary() <= high_boundary(), "upper high boundary"); |
|
1041 |
assert(high() <= upper_high(), "upper high"); |
|
1042 |
} |
|
1043 |
||
19993
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
1044 |
void VirtualSpace::print_on(outputStream* out) { |
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
1045 |
out->print ("Virtual space:"); |
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
1046 |
if (special()) out->print(" (pinned in memory)"); |
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
1047 |
out->cr(); |
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
1048 |
out->print_cr(" - committed: " SIZE_FORMAT, committed_size()); |
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
1049 |
out->print_cr(" - reserved: " SIZE_FORMAT, reserved_size()); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1050 |
out->print_cr(" - [low, high]: [" INTPTR_FORMAT ", " INTPTR_FORMAT "]", p2i(low()), p2i(high())); |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1051 |
out->print_cr(" - [low_b, high_b]: [" INTPTR_FORMAT ", " INTPTR_FORMAT "]", p2i(low_boundary()), p2i(high_boundary())); |
1 | 1052 |
} |
1053 |
||
19993
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
1054 |
void VirtualSpace::print() { |
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
1055 |
print_on(tty); |
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
1056 |
} |
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1057 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1058 |
/////////////// Unit tests /////////////// |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1059 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1060 |
#ifndef PRODUCT |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1061 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1062 |
class TestReservedSpace : AllStatic { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1063 |
public: |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1064 |
static void small_page_write(void* addr, size_t size) { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1065 |
size_t page_size = os::vm_page_size(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1066 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1067 |
char* end = (char*)addr + size; |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1068 |
for (char* p = (char*)addr; p < end; p += page_size) { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1069 |
*p = 1; |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1070 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1071 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1072 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1073 |
static void release_memory_for_test(ReservedSpace rs) { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1074 |
if (rs.special()) { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1075 |
guarantee(os::release_memory_special(rs.base(), rs.size()), "Shouldn't fail"); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1076 |
} else { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1077 |
guarantee(os::release_memory(rs.base(), rs.size()), "Shouldn't fail"); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1078 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1079 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1080 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1081 |
static void test_reserved_space1(size_t size, size_t alignment) { |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
1082 |
assert(is_aligned(size, alignment), "Incorrect input parameters"); |
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1083 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1084 |
ReservedSpace rs(size, // size |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1085 |
alignment, // alignment |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1086 |
UseLargePages, // large |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28208
diff
changeset
|
1087 |
(char *)NULL); // requested_address |
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1088 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1089 |
assert(rs.base() != NULL, "Must be"); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1090 |
assert(rs.size() == size, "Must be"); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1091 |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
1092 |
assert(is_aligned(rs.base(), alignment), "aligned sizes should always give aligned addresses"); |
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
1093 |
assert(is_aligned(rs.size(), alignment), "aligned sizes should always give aligned addresses"); |
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1094 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1095 |
if (rs.special()) { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1096 |
small_page_write(rs.base(), size); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1097 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1098 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1099 |
release_memory_for_test(rs); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1100 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1101 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1102 |
static void test_reserved_space2(size_t size) { |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
1103 |
assert(is_aligned(size, os::vm_allocation_granularity()), "Must be at least AG aligned"); |
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1104 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1105 |
ReservedSpace rs(size); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1106 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1107 |
assert(rs.base() != NULL, "Must be"); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1108 |
assert(rs.size() == size, "Must be"); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1109 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1110 |
if (rs.special()) { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1111 |
small_page_write(rs.base(), size); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1112 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1113 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1114 |
release_memory_for_test(rs); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1115 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1116 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1117 |
static void test_reserved_space3(size_t size, size_t alignment, bool maybe_large) { |
38009
290ae73980f7
8053885: test/runtime/memory/RunUnitTestsConcurrently.java fails on solaris with largepage options
stefank
parents:
37984
diff
changeset
|
1118 |
if (size < alignment) { |
290ae73980f7
8053885: test/runtime/memory/RunUnitTestsConcurrently.java fails on solaris with largepage options
stefank
parents:
37984
diff
changeset
|
1119 |
// Tests might set -XX:LargePageSizeInBytes=<small pages> and cause unexpected input arguments for this test. |
290ae73980f7
8053885: test/runtime/memory/RunUnitTestsConcurrently.java fails on solaris with largepage options
stefank
parents:
37984
diff
changeset
|
1120 |
assert((size_t)os::vm_page_size() == os::large_page_size(), "Test needs further refinement"); |
290ae73980f7
8053885: test/runtime/memory/RunUnitTestsConcurrently.java fails on solaris with largepage options
stefank
parents:
37984
diff
changeset
|
1121 |
return; |
290ae73980f7
8053885: test/runtime/memory/RunUnitTestsConcurrently.java fails on solaris with largepage options
stefank
parents:
37984
diff
changeset
|
1122 |
} |
290ae73980f7
8053885: test/runtime/memory/RunUnitTestsConcurrently.java fails on solaris with largepage options
stefank
parents:
37984
diff
changeset
|
1123 |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
1124 |
assert(is_aligned(size, os::vm_allocation_granularity()), "Must be at least AG aligned"); |
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
1125 |
assert(is_aligned(size, alignment), "Must be at least aligned against alignment"); |
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1126 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1127 |
bool large = maybe_large && UseLargePages && size >= os::large_page_size(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1128 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1129 |
ReservedSpace rs(size, alignment, large, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1130 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1131 |
assert(rs.base() != NULL, "Must be"); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1132 |
assert(rs.size() == size, "Must be"); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1133 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1134 |
if (rs.special()) { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1135 |
small_page_write(rs.base(), size); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1136 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1137 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1138 |
release_memory_for_test(rs); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1139 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1140 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1141 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1142 |
static void test_reserved_space1() { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1143 |
size_t size = 2 * 1024 * 1024; |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1144 |
size_t ag = os::vm_allocation_granularity(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1145 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1146 |
test_reserved_space1(size, ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1147 |
test_reserved_space1(size * 2, ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1148 |
test_reserved_space1(size * 10, ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1149 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1150 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1151 |
static void test_reserved_space2() { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1152 |
size_t size = 2 * 1024 * 1024; |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1153 |
size_t ag = os::vm_allocation_granularity(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1154 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1155 |
test_reserved_space2(size * 1); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1156 |
test_reserved_space2(size * 2); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1157 |
test_reserved_space2(size * 10); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1158 |
test_reserved_space2(ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1159 |
test_reserved_space2(size - ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1160 |
test_reserved_space2(size); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1161 |
test_reserved_space2(size + ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1162 |
test_reserved_space2(size * 2); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1163 |
test_reserved_space2(size * 2 - ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1164 |
test_reserved_space2(size * 2 + ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1165 |
test_reserved_space2(size * 3); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1166 |
test_reserved_space2(size * 3 - ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1167 |
test_reserved_space2(size * 3 + ag); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1168 |
test_reserved_space2(size * 10); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1169 |
test_reserved_space2(size * 10 + size / 2); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1170 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1171 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1172 |
static void test_reserved_space3() { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1173 |
size_t ag = os::vm_allocation_granularity(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1174 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1175 |
test_reserved_space3(ag, ag , false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1176 |
test_reserved_space3(ag * 2, ag , false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1177 |
test_reserved_space3(ag * 3, ag , false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1178 |
test_reserved_space3(ag * 2, ag * 2, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1179 |
test_reserved_space3(ag * 4, ag * 2, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1180 |
test_reserved_space3(ag * 8, ag * 2, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1181 |
test_reserved_space3(ag * 4, ag * 4, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1182 |
test_reserved_space3(ag * 8, ag * 4, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1183 |
test_reserved_space3(ag * 16, ag * 4, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1184 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1185 |
if (UseLargePages) { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1186 |
size_t lp = os::large_page_size(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1187 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1188 |
// Without large pages |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1189 |
test_reserved_space3(lp, ag * 4, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1190 |
test_reserved_space3(lp * 2, ag * 4, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1191 |
test_reserved_space3(lp * 4, ag * 4, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1192 |
test_reserved_space3(lp, lp , false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1193 |
test_reserved_space3(lp * 2, lp , false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1194 |
test_reserved_space3(lp * 3, lp , false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1195 |
test_reserved_space3(lp * 2, lp * 2, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1196 |
test_reserved_space3(lp * 4, lp * 2, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1197 |
test_reserved_space3(lp * 8, lp * 2, false); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1198 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1199 |
// With large pages |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1200 |
test_reserved_space3(lp, ag * 4 , true); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1201 |
test_reserved_space3(lp * 2, ag * 4, true); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1202 |
test_reserved_space3(lp * 4, ag * 4, true); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1203 |
test_reserved_space3(lp, lp , true); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1204 |
test_reserved_space3(lp * 2, lp , true); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1205 |
test_reserved_space3(lp * 3, lp , true); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1206 |
test_reserved_space3(lp * 2, lp * 2, true); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1207 |
test_reserved_space3(lp * 4, lp * 2, true); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1208 |
test_reserved_space3(lp * 8, lp * 2, true); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1209 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1210 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1211 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1212 |
static void test_reserved_space() { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1213 |
test_reserved_space1(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1214 |
test_reserved_space2(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1215 |
test_reserved_space3(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1216 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1217 |
}; |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1218 |
|
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1219 |
void TestReservedSpace_test() { |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1220 |
TestReservedSpace::test_reserved_space(); |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1221 |
} |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1222 |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
1223 |
#define assert_equals(actual, expected) \ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
1224 |
assert(actual == expected, \ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
1225 |
"Got " SIZE_FORMAT " expected " \ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
1226 |
SIZE_FORMAT, actual, expected); |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1227 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1228 |
#define assert_ge(value1, value2) \ |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1229 |
assert(value1 >= value2, \ |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
1230 |
"'" #value1 "': " SIZE_FORMAT " '" \ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
1231 |
#value2 "': " SIZE_FORMAT, value1, value2); |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1232 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1233 |
#define assert_lt(value1, value2) \ |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1234 |
assert(value1 < value2, \ |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
1235 |
"'" #value1 "': " SIZE_FORMAT " '" \ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31620
diff
changeset
|
1236 |
#value2 "': " SIZE_FORMAT, value1, value2); |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1237 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1238 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1239 |
class TestVirtualSpace : AllStatic { |
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1240 |
enum TestLargePages { |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1241 |
Default, |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1242 |
Disable, |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1243 |
Reserve, |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1244 |
Commit |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1245 |
}; |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1246 |
|
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1247 |
static ReservedSpace reserve_memory(size_t reserve_size_aligned, TestLargePages mode) { |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1248 |
switch(mode) { |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1249 |
default: |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1250 |
case Default: |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1251 |
case Reserve: |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1252 |
return ReservedSpace(reserve_size_aligned); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1253 |
case Disable: |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1254 |
case Commit: |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1255 |
return ReservedSpace(reserve_size_aligned, |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1256 |
os::vm_allocation_granularity(), |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1257 |
/* large */ false, /* exec */ false); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1258 |
} |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1259 |
} |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1260 |
|
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1261 |
static bool initialize_virtual_space(VirtualSpace& vs, ReservedSpace rs, TestLargePages mode) { |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1262 |
switch(mode) { |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1263 |
default: |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1264 |
case Default: |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1265 |
case Reserve: |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1266 |
return vs.initialize(rs, 0); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1267 |
case Disable: |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1268 |
return vs.initialize_with_granularity(rs, 0, os::vm_page_size()); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1269 |
case Commit: |
28631 | 1270 |
return vs.initialize_with_granularity(rs, 0, os::page_size_for_region_unaligned(rs.size(), 1)); |
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1271 |
} |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1272 |
} |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1273 |
|
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1274 |
public: |
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1275 |
static void test_virtual_space_actual_committed_space(size_t reserve_size, size_t commit_size, |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1276 |
TestLargePages mode = Default) { |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1277 |
size_t granularity = os::vm_allocation_granularity(); |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
1278 |
size_t reserve_size_aligned = align_up(reserve_size, granularity); |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1279 |
|
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1280 |
ReservedSpace reserved = reserve_memory(reserve_size_aligned, mode); |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1281 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1282 |
assert(reserved.is_reserved(), "Must be"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1283 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1284 |
VirtualSpace vs; |
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1285 |
bool initialized = initialize_virtual_space(vs, reserved, mode); |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1286 |
assert(initialized, "Failed to initialize VirtualSpace"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1287 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1288 |
vs.expand_by(commit_size, false); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1289 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1290 |
if (vs.special()) { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1291 |
assert_equals(vs.actual_committed_size(), reserve_size_aligned); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1292 |
} else { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1293 |
assert_ge(vs.actual_committed_size(), commit_size); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1294 |
// Approximate the commit granularity. |
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1295 |
// Make sure that we don't commit using large pages |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1296 |
// if large pages has been disabled for this VirtualSpace. |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1297 |
size_t commit_granularity = (mode == Disable || !UseLargePages) ? |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1298 |
os::vm_page_size() : os::large_page_size(); |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1299 |
assert_lt(vs.actual_committed_size(), commit_size + commit_granularity); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1300 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1301 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1302 |
reserved.release(); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1303 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1304 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1305 |
static void test_virtual_space_actual_committed_space_one_large_page() { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1306 |
if (!UseLargePages) { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1307 |
return; |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1308 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1309 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1310 |
size_t large_page_size = os::large_page_size(); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1311 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1312 |
ReservedSpace reserved(large_page_size, large_page_size, true, false); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1313 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1314 |
assert(reserved.is_reserved(), "Must be"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1315 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1316 |
VirtualSpace vs; |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1317 |
bool initialized = vs.initialize(reserved, 0); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1318 |
assert(initialized, "Failed to initialize VirtualSpace"); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1319 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1320 |
vs.expand_by(large_page_size, false); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1321 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1322 |
assert_equals(vs.actual_committed_size(), large_page_size); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1323 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1324 |
reserved.release(); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1325 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1326 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1327 |
static void test_virtual_space_actual_committed_space() { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1328 |
test_virtual_space_actual_committed_space(4 * K, 0); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1329 |
test_virtual_space_actual_committed_space(4 * K, 4 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1330 |
test_virtual_space_actual_committed_space(8 * K, 0); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1331 |
test_virtual_space_actual_committed_space(8 * K, 4 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1332 |
test_virtual_space_actual_committed_space(8 * K, 8 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1333 |
test_virtual_space_actual_committed_space(12 * K, 0); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1334 |
test_virtual_space_actual_committed_space(12 * K, 4 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1335 |
test_virtual_space_actual_committed_space(12 * K, 8 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1336 |
test_virtual_space_actual_committed_space(12 * K, 12 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1337 |
test_virtual_space_actual_committed_space(64 * K, 0); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1338 |
test_virtual_space_actual_committed_space(64 * K, 32 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1339 |
test_virtual_space_actual_committed_space(64 * K, 64 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1340 |
test_virtual_space_actual_committed_space(2 * M, 0); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1341 |
test_virtual_space_actual_committed_space(2 * M, 4 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1342 |
test_virtual_space_actual_committed_space(2 * M, 64 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1343 |
test_virtual_space_actual_committed_space(2 * M, 1 * M); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1344 |
test_virtual_space_actual_committed_space(2 * M, 2 * M); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1345 |
test_virtual_space_actual_committed_space(10 * M, 0); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1346 |
test_virtual_space_actual_committed_space(10 * M, 4 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1347 |
test_virtual_space_actual_committed_space(10 * M, 8 * K); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1348 |
test_virtual_space_actual_committed_space(10 * M, 1 * M); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1349 |
test_virtual_space_actual_committed_space(10 * M, 2 * M); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1350 |
test_virtual_space_actual_committed_space(10 * M, 5 * M); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1351 |
test_virtual_space_actual_committed_space(10 * M, 10 * M); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1352 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1353 |
|
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1354 |
static void test_virtual_space_disable_large_pages() { |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1355 |
if (!UseLargePages) { |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1356 |
return; |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1357 |
} |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1358 |
// These test cases verify that if we force VirtualSpace to disable large pages |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1359 |
test_virtual_space_actual_committed_space(10 * M, 0, Disable); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1360 |
test_virtual_space_actual_committed_space(10 * M, 4 * K, Disable); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1361 |
test_virtual_space_actual_committed_space(10 * M, 8 * K, Disable); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1362 |
test_virtual_space_actual_committed_space(10 * M, 1 * M, Disable); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1363 |
test_virtual_space_actual_committed_space(10 * M, 2 * M, Disable); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1364 |
test_virtual_space_actual_committed_space(10 * M, 5 * M, Disable); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1365 |
test_virtual_space_actual_committed_space(10 * M, 10 * M, Disable); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1366 |
|
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1367 |
test_virtual_space_actual_committed_space(10 * M, 0, Reserve); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1368 |
test_virtual_space_actual_committed_space(10 * M, 4 * K, Reserve); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1369 |
test_virtual_space_actual_committed_space(10 * M, 8 * K, Reserve); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1370 |
test_virtual_space_actual_committed_space(10 * M, 1 * M, Reserve); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1371 |
test_virtual_space_actual_committed_space(10 * M, 2 * M, Reserve); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1372 |
test_virtual_space_actual_committed_space(10 * M, 5 * M, Reserve); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1373 |
test_virtual_space_actual_committed_space(10 * M, 10 * M, Reserve); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1374 |
|
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1375 |
test_virtual_space_actual_committed_space(10 * M, 0, Commit); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1376 |
test_virtual_space_actual_committed_space(10 * M, 4 * K, Commit); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1377 |
test_virtual_space_actual_committed_space(10 * M, 8 * K, Commit); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1378 |
test_virtual_space_actual_committed_space(10 * M, 1 * M, Commit); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1379 |
test_virtual_space_actual_committed_space(10 * M, 2 * M, Commit); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1380 |
test_virtual_space_actual_committed_space(10 * M, 5 * M, Commit); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1381 |
test_virtual_space_actual_committed_space(10 * M, 10 * M, Commit); |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1382 |
} |
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1383 |
|
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1384 |
static void test_virtual_space() { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1385 |
test_virtual_space_actual_committed_space(); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1386 |
test_virtual_space_actual_committed_space_one_large_page(); |
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
1387 |
test_virtual_space_disable_large_pages(); |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1388 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1389 |
}; |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1390 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1391 |
void TestVirtualSpace_test() { |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1392 |
TestVirtualSpace::test_virtual_space(); |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1393 |
} |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
1394 |
|
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1395 |
#endif // PRODUCT |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
18069
diff
changeset
|
1396 |
|
1 | 1397 |
#endif |