Skip to content

Commit 6ba58f7

Browse files
committedNov 7, 2019
8233299: Implementation: JEP 365: ZGC on Windows
Reviewed-by: pliden, eosterlund
1 parent 802580b commit 6ba58f7

15 files changed

+1200
-2
lines changed
 

‎make/autoconf/hotspot.m4

+2-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,8 @@ AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_FEATURES],
347347
# Only enable ZGC on supported platforms
348348
AC_MSG_CHECKING([if zgc can be built])
349349
if (test "x$OPENJDK_TARGET_OS" = "xlinux" && test "x$OPENJDK_TARGET_CPU" = "xx86_64") || \
350-
(test "x$OPENJDK_TARGET_OS" = "xlinux" && test "x$OPENJDK_TARGET_CPU" = "xaarch64") ||
350+
(test "x$OPENJDK_TARGET_OS" = "xlinux" && test "x$OPENJDK_TARGET_CPU" = "xaarch64") || \
351+
(test "x$OPENJDK_TARGET_OS" = "xwindows" && test "x$OPENJDK_TARGET_CPU" = "xx86_64") || \
351352
(test "x$OPENJDK_TARGET_OS" = "xmacosx" && test "x$OPENJDK_TARGET_CPU" = "xx86_64"); then
352353
AC_MSG_RESULT([yes])
353354
else

‎src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -517,8 +517,11 @@ class ZSaveLiveRegisters {
517517
// Sort by size, largest first
518518
_xmm_registers.sort(xmm_compare_register_size);
519519

520+
// On Windows, the caller reserves stack space for spilling register arguments
521+
const int arg_spill_size = frame::arg_reg_save_area_bytes;
522+
520523
// Stack pointer must be 16 bytes aligned for the call
521-
_spill_offset = _spill_size = align_up(xmm_spill_size + gp_spill_size, 16);
524+
_spill_offset = _spill_size = align_up(xmm_spill_size + gp_spill_size + arg_spill_size, 16);
522525
}
523526

524527
public:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "gc/z/zBackingFile_windows.hpp"
26+
#include "gc/z/zGlobals.hpp"
27+
#include "gc/z/zGranuleMap.inline.hpp"
28+
#include "gc/z/zMapper_windows.hpp"
29+
#include "logging/log.hpp"
30+
#include "runtime/globals.hpp"
31+
#include "utilities/debug.hpp"
32+
33+
// The backing file commits and uncommits physical memory, that can be
34+
// multi-mapped into the virtual address space. To support fine-graned
35+
// committing and uncommitting, each ZGranuleSize chunked is mapped to
36+
// a separate paging file mapping.
37+
38+
ZBackingFile::ZBackingFile() :
39+
_handles(MaxHeapSize),
40+
_size(0) {}
41+
42+
size_t ZBackingFile::size() const {
43+
return _size;
44+
}
45+
46+
HANDLE ZBackingFile::get_handle(uintptr_t offset) const {
47+
HANDLE const handle = _handles.get(offset);
48+
assert(handle != 0, "Should be set");
49+
return handle;
50+
}
51+
52+
void ZBackingFile::put_handle(uintptr_t offset, HANDLE handle) {
53+
assert(handle != INVALID_HANDLE_VALUE, "Invalid handle");
54+
assert(_handles.get(offset) == 0, "Should be cleared");
55+
_handles.put(offset, handle);
56+
}
57+
58+
void ZBackingFile::clear_handle(uintptr_t offset) {
59+
assert(_handles.get(offset) != 0, "Should be set");
60+
_handles.put(offset, 0);
61+
}
62+
63+
size_t ZBackingFile::commit_from_paging_file(size_t offset, size_t size) {
64+
for (size_t i = 0; i < size; i += ZGranuleSize) {
65+
HANDLE const handle = ZMapper::create_and_commit_paging_file_mapping(ZGranuleSize);
66+
if (handle == 0) {
67+
return i;
68+
}
69+
70+
put_handle(offset + i, handle);
71+
}
72+
73+
return size;
74+
}
75+
76+
size_t ZBackingFile::uncommit_from_paging_file(size_t offset, size_t size) {
77+
for (size_t i = 0; i < size; i += ZGranuleSize) {
78+
HANDLE const handle = get_handle(offset + i);
79+
clear_handle(offset + i);
80+
ZMapper::close_paging_file_mapping(handle);
81+
}
82+
83+
return size;
84+
}
85+
86+
size_t ZBackingFile::commit(size_t offset, size_t length) {
87+
log_trace(gc, heap)("Committing memory: " SIZE_FORMAT "M-" SIZE_FORMAT "M (" SIZE_FORMAT "M)",
88+
offset / M, (offset + length) / M, length / M);
89+
90+
const size_t committed = commit_from_paging_file(offset, length);
91+
92+
const size_t end = offset + committed;
93+
if (end > _size) {
94+
// Update size
95+
_size = end;
96+
}
97+
98+
return committed;
99+
}
100+
101+
size_t ZBackingFile::uncommit(size_t offset, size_t length) {
102+
log_trace(gc, heap)("Uncommitting memory: " SIZE_FORMAT "M-" SIZE_FORMAT "M (" SIZE_FORMAT "M)",
103+
offset / M, (offset + length) / M, length / M);
104+
105+
return uncommit_from_paging_file(offset, length);
106+
}
107+
108+
void ZBackingFile::map(uintptr_t addr, size_t size, size_t offset) const {
109+
assert(is_aligned(offset, ZGranuleSize), "Misaligned");
110+
assert(is_aligned(addr, ZGranuleSize), "Misaligned");
111+
assert(is_aligned(size, ZGranuleSize), "Misaligned");
112+
113+
for (size_t i = 0; i < size; i += ZGranuleSize) {
114+
HANDLE const handle = get_handle(offset + i);
115+
ZMapper::map_view_replace_placeholder(handle, 0 /* offset */, addr + i, ZGranuleSize);
116+
}
117+
}
118+
119+
void ZBackingFile::unmap(uintptr_t addr, size_t size) const {
120+
assert(is_aligned(addr, ZGranuleSize), "Misaligned");
121+
assert(is_aligned(size, ZGranuleSize), "Misaligned");
122+
123+
for (size_t i = 0; i < size; i += ZGranuleSize) {
124+
ZMapper::unmap_view_preserve_placeholder(addr + i, ZGranuleSize);
125+
}
126+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#ifndef OS_WINDOWS_GC_Z_ZBACKINGFILE_WINDOWS_HPP
25+
#define OS_WINDOWS_GC_Z_ZBACKINGFILE_WINDOWS_HPP
26+
27+
#include "gc/z/zGranuleMap.hpp"
28+
#include "memory/allocation.hpp"
29+
30+
#include <Windows.h>
31+
32+
class ZBackingFile {
33+
private:
34+
ZGranuleMap<HANDLE> _handles;
35+
size_t _size;
36+
37+
HANDLE get_handle(uintptr_t offset) const;
38+
void put_handle(uintptr_t offset, HANDLE handle);
39+
void clear_handle(uintptr_t offset);
40+
41+
size_t commit_from_paging_file(size_t offset, size_t size);
42+
size_t uncommit_from_paging_file(size_t offset, size_t size);
43+
44+
public:
45+
ZBackingFile();
46+
47+
size_t size() const;
48+
49+
size_t commit(size_t offset, size_t length);
50+
size_t uncommit(size_t offset, size_t length);
51+
52+
void map(uintptr_t addr, size_t size, size_t offset) const;
53+
void unmap(uintptr_t addr, size_t size) const;
54+
};
55+
56+
#endif // OS_WINDOWS_GC_Z_ZBACKINGFILE_WINDOWS_HPP
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "gc/z/zInitialize.hpp"
26+
#include "gc/z/zSyscall_windows.hpp"
27+
28+
void ZInitialize::initialize_os() {
29+
ZSyscall::initialize();
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "gc/z/zLargePages.hpp"
26+
27+
void ZLargePages::initialize_platform() {
28+
_state = Disabled;
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,254 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "gc/z/zMapper_windows.hpp"
26+
#include "gc/z/zSyscall_windows.hpp"
27+
#include "logging/log.hpp"
28+
#include "utilities/debug.hpp"
29+
30+
#include <Windows.h>
31+
32+
// Memory reservation, commit, views, and placeholders.
33+
//
34+
// To be able to up-front reserve address space for the heap views, and later
35+
// multi-map the heap views to the same physical memory, without ever losing the
36+
// reservation of the reserved address space, we use "placeholders".
37+
//
38+
// These placeholders block out the address space from being used by other parts
39+
// of the process. To commit memory in this address space, the placeholder must
40+
// be replaced by anonymous memory, or replaced by mapping a view against a
41+
// paging file mapping. We use the later to support multi-mapping.
42+
//
43+
// We want to be able to dynamically commit and uncommit the physical memory of
44+
// the heap (and also unmap ZPages), in granules of ZGranuleSize bytes. There is
45+
// no way to grow and shrink the committed memory of a paging file mapping.
46+
// Therefore, we create multiple granule-sized page file mappings. The memory is
47+
// committed by creating a page file mapping, map a view against it, commit the
48+
// memory, unmap the view. The memory will stay committed until all views are
49+
// unmapped, and the paging file mapping handle is closed.
50+
//
51+
// When replacing a placeholder address space reservation with a mapped view
52+
// against a paging file mapping, the virtual address space must exactly match
53+
// an existing placeholder's address and size. Therefore we only deal with
54+
// granule-sized placeholders at this layer. Higher layers that keep track of
55+
// reserved available address space can (and will) coalesce placeholders, but
56+
// they will be split before being used.
57+
58+
#define fatal_error(msg, addr, size) \
59+
fatal(msg ": " PTR_FORMAT " " SIZE_FORMAT "M (%d)", \
60+
(addr), (size) / M, GetLastError())
61+
62+
uintptr_t ZMapper::reserve(uintptr_t addr, size_t size) {
63+
void* const res = ZSyscall::VirtualAlloc2(
64+
GetCurrentProcess(), // Process
65+
(void*)addr, // BaseAddress
66+
size, // Size
67+
MEM_RESERVE | MEM_RESERVE_PLACEHOLDER, // AllocationType
68+
PAGE_NOACCESS, // PageProtection
69+
NULL, // ExtendedParameters
70+
0 // ParameterCount
71+
);
72+
73+
// Caller responsible for error handling
74+
return (uintptr_t)res;
75+
}
76+
77+
void ZMapper::unreserve(uintptr_t addr, size_t size) {
78+
const bool res = ZSyscall::VirtualFreeEx(
79+
GetCurrentProcess(), // hProcess
80+
(void*)addr, // lpAddress
81+
size, // dwSize
82+
MEM_RELEASE // dwFreeType
83+
);
84+
85+
if (!res) {
86+
fatal_error("Failed to unreserve memory", addr, size);
87+
}
88+
}
89+
90+
HANDLE ZMapper::create_paging_file_mapping(size_t size) {
91+
// Create mapping with SEC_RESERVE instead of SEC_COMMIT.
92+
//
93+
// We use MapViewOfFile3 for two different reasons:
94+
// 1) When commiting memory for the created paging file
95+
// 2) When mapping a view of the memory created in (2)
96+
//
97+
// The non-platform code is only setup to deal with out-of-memory
98+
// errors in (1). By using SEC_RESERVE, we prevent MapViewOfFile3
99+
// from failing because of "commit limit" checks. To actually commit
100+
// memory in (1), a call to VirtualAlloc2 is done.
101+
102+
HANDLE const res = ZSyscall::CreateFileMappingW(
103+
INVALID_HANDLE_VALUE, // hFile
104+
NULL, // lpFileMappingAttribute
105+
PAGE_READWRITE | SEC_RESERVE, // flProtect
106+
size >> 32, // dwMaximumSizeHigh
107+
size & 0xFFFFFFFF, // dwMaximumSizeLow
108+
NULL // lpName
109+
);
110+
111+
// Caller responsible for error handling
112+
return res;
113+
}
114+
115+
bool ZMapper::commit_paging_file_mapping(HANDLE file_handle, uintptr_t file_offset, size_t size) {
116+
const uintptr_t addr = map_view_no_placeholder(file_handle, file_offset, size);
117+
if (addr == 0) {
118+
log_error(gc)("Failed to map view of paging file mapping (%d)", GetLastError());
119+
return false;
120+
}
121+
122+
const uintptr_t res = commit(addr, size);
123+
if (res != addr) {
124+
log_error(gc)("Failed to commit memory (%d)", GetLastError());
125+
}
126+
127+
unmap_view_no_placeholder(addr, size);
128+
129+
return res == addr;
130+
}
131+
132+
uintptr_t ZMapper::map_view_no_placeholder(HANDLE file_handle, uintptr_t file_offset, size_t size) {
133+
void* const res = ZSyscall::MapViewOfFile3(
134+
file_handle, // FileMapping
135+
GetCurrentProcess(), // ProcessHandle
136+
NULL, // BaseAddress
137+
file_offset, // Offset
138+
size, // ViewSize
139+
0, // AllocationType
140+
PAGE_NOACCESS, // PageProtection
141+
NULL, // ExtendedParameters
142+
0 // ParameterCount
143+
);
144+
145+
// Caller responsible for error handling
146+
return (uintptr_t)res;
147+
}
148+
149+
void ZMapper::unmap_view_no_placeholder(uintptr_t addr, size_t size) {
150+
const bool res = ZSyscall::UnmapViewOfFile2(
151+
GetCurrentProcess(), // ProcessHandle
152+
(void*)addr, // BaseAddress
153+
0 // UnmapFlags
154+
);
155+
156+
if (!res) {
157+
fatal_error("Failed to unmap memory", addr, size);
158+
}
159+
}
160+
161+
uintptr_t ZMapper::commit(uintptr_t addr, size_t size) {
162+
void* const res = ZSyscall::VirtualAlloc2(
163+
GetCurrentProcess(), // Process
164+
(void*)addr, // BaseAddress
165+
size, // Size
166+
MEM_COMMIT, // AllocationType
167+
PAGE_NOACCESS, // PageProtection
168+
NULL, // ExtendedParameters
169+
0 // ParameterCount
170+
);
171+
172+
// Caller responsible for error handling
173+
return (uintptr_t)res;
174+
}
175+
176+
HANDLE ZMapper::create_and_commit_paging_file_mapping(size_t size) {
177+
HANDLE const file_handle = create_paging_file_mapping(size);
178+
if (file_handle == 0) {
179+
log_error(gc)("Failed to create paging file mapping (%d)", GetLastError());
180+
return 0;
181+
}
182+
183+
const bool res = commit_paging_file_mapping(file_handle, 0 /* file_offset */, size);
184+
if (!res) {
185+
close_paging_file_mapping(file_handle);
186+
return 0;
187+
}
188+
189+
return file_handle;
190+
}
191+
192+
void ZMapper::close_paging_file_mapping(HANDLE file_handle) {
193+
const bool res = CloseHandle(
194+
file_handle // hObject
195+
);
196+
197+
if (!res) {
198+
fatal("Failed to close paging file handle (%d)", GetLastError());
199+
}
200+
}
201+
202+
void ZMapper::split_placeholder(uintptr_t addr, size_t size) {
203+
const bool res = VirtualFree(
204+
(void*)addr, // lpAddress
205+
size, // dwSize
206+
MEM_RELEASE | MEM_PRESERVE_PLACEHOLDER // dwFreeType
207+
);
208+
209+
if (!res) {
210+
fatal_error("Failed to split placeholder", addr, size);
211+
}
212+
}
213+
214+
void ZMapper::coalesce_placeholders(uintptr_t addr, size_t size) {
215+
const bool res = VirtualFree(
216+
(void*)addr, // lpAddress
217+
size, // dwSize
218+
MEM_RELEASE | MEM_COALESCE_PLACEHOLDERS // dwFreeType
219+
);
220+
221+
if (!res) {
222+
fatal_error("Failed to coalesce placeholders", addr, size);
223+
}
224+
}
225+
226+
void ZMapper::map_view_replace_placeholder(HANDLE file_handle, uintptr_t file_offset, uintptr_t addr, size_t size) {
227+
void* const res = ZSyscall::MapViewOfFile3(
228+
file_handle, // FileMapping
229+
GetCurrentProcess(), // ProcessHandle
230+
(void*)addr, // BaseAddress
231+
file_offset, // Offset
232+
size, // ViewSize
233+
MEM_REPLACE_PLACEHOLDER, // AllocationType
234+
PAGE_READWRITE, // PageProtection
235+
NULL, // ExtendedParameters
236+
0 // ParameterCount
237+
);
238+
239+
if (res == NULL) {
240+
fatal_error("Failed to map memory", addr, size);
241+
}
242+
}
243+
244+
void ZMapper::unmap_view_preserve_placeholder(uintptr_t addr, size_t size) {
245+
const bool res = ZSyscall::UnmapViewOfFile2(
246+
GetCurrentProcess(), // ProcessHandle
247+
(void*)addr, // BaseAddress
248+
MEM_PRESERVE_PLACEHOLDER // UnmapFlags
249+
);
250+
251+
if (!res) {
252+
fatal_error("Failed to unmap memory", addr, size);
253+
}
254+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#ifndef OS_WINDOWS_GC_Z_ZMAPPER_WINDOWS_HPP
25+
#define OS_WINDOWS_GC_Z_ZMAPPER_WINDOWS_HPP
26+
27+
#include "memory/allocation.hpp"
28+
#include "utilities/globalDefinitions.hpp"
29+
30+
#include <Windows.h>
31+
32+
class ZMapper : public AllStatic {
33+
private:
34+
// Create paging file mapping
35+
static HANDLE create_paging_file_mapping(size_t size);
36+
37+
// Commit paging file mapping
38+
static bool commit_paging_file_mapping(HANDLE file_handle, uintptr_t file_offset, size_t size);
39+
40+
// Map a view anywhere without a placeholder
41+
static uintptr_t map_view_no_placeholder(HANDLE file_handle, uintptr_t file_offset, size_t size);
42+
43+
// Unmap a view without preserving a placeholder
44+
static void unmap_view_no_placeholder(uintptr_t addr, size_t size);
45+
46+
// Commit memory covering the given virtual address range
47+
static uintptr_t commit(uintptr_t addr, size_t size);
48+
49+
public:
50+
// Reserve memory with a placeholder
51+
static uintptr_t reserve(uintptr_t addr, size_t size);
52+
53+
// Unreserve memory
54+
static void unreserve(uintptr_t addr, size_t size);
55+
56+
// Create and commit paging file mapping
57+
static HANDLE create_and_commit_paging_file_mapping(size_t size);
58+
59+
// Close paging file mapping
60+
static void close_paging_file_mapping(HANDLE file_handle);
61+
62+
// Split a placeholder
63+
//
64+
// A view can only replace an entire placeholder, so placeholders need to be
65+
// split and coalesced to be the exact size of the new views.
66+
// [addr, addr + size) needs to be a proper sub-placeholder of an existing
67+
// placeholder.
68+
static void split_placeholder(uintptr_t addr, size_t size);
69+
70+
// Coalesce a placeholder
71+
//
72+
// [addr, addr + size) is the new placeholder. A sub-placeholder needs to
73+
// exist within that range.
74+
static void coalesce_placeholders(uintptr_t addr, size_t size);
75+
76+
// Map a view of the file handle and replace the placeholder covering the
77+
// given virtual address range
78+
static void map_view_replace_placeholder(HANDLE file_handle, uintptr_t file_offset, uintptr_t addr, size_t size);
79+
80+
// Unmap the view and reinstate a placeholder covering the given virtual
81+
// address range
82+
static void unmap_view_preserve_placeholder(uintptr_t addr, size_t size);
83+
};
84+
85+
#endif // OS_WINDOWS_GC_Z_ZMAPPER_WINDOWS_HPP
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "gc/z/zNUMA.hpp"
26+
27+
void ZNUMA::initialize_platform() {
28+
_enabled = false;
29+
}
30+
31+
uint32_t ZNUMA::count() {
32+
return 1;
33+
}
34+
35+
uint32_t ZNUMA::id() {
36+
return 0;
37+
}
38+
39+
uint32_t ZNUMA::memory_id(uintptr_t addr) {
40+
// NUMA support not enabled, assume everything belongs to node zero
41+
return 0;
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "gc/z/zAddress.inline.hpp"
26+
#include "gc/z/zGlobals.hpp"
27+
#include "gc/z/zLargePages.inline.hpp"
28+
#include "gc/z/zMapper_windows.hpp"
29+
#include "gc/z/zPhysicalMemory.inline.hpp"
30+
#include "gc/z/zPhysicalMemoryBacking_windows.hpp"
31+
#include "runtime/globals.hpp"
32+
#include "runtime/init.hpp"
33+
#include "runtime/os.hpp"
34+
#include "utilities/align.hpp"
35+
#include "utilities/debug.hpp"
36+
37+
bool ZPhysicalMemoryBacking::is_initialized() const {
38+
return true;
39+
}
40+
41+
void ZPhysicalMemoryBacking::warn_commit_limits(size_t max) const {
42+
// Does nothing
43+
}
44+
45+
bool ZPhysicalMemoryBacking::supports_uncommit() {
46+
assert(!is_init_completed(), "Invalid state");
47+
assert(_file.size() >= ZGranuleSize, "Invalid size");
48+
49+
// Test if uncommit is supported by uncommitting and then re-committing a granule
50+
return commit(uncommit(ZGranuleSize)) == ZGranuleSize;
51+
}
52+
53+
size_t ZPhysicalMemoryBacking::commit(size_t size) {
54+
size_t committed = 0;
55+
56+
// Fill holes in the backing file
57+
while (committed < size) {
58+
size_t allocated = 0;
59+
const size_t remaining = size - committed;
60+
const uintptr_t start = _uncommitted.alloc_from_front_at_most(remaining, &allocated);
61+
if (start == UINTPTR_MAX) {
62+
// No holes to commit
63+
break;
64+
}
65+
66+
// Try commit hole
67+
const size_t filled = _file.commit(start, allocated);
68+
if (filled > 0) {
69+
// Successful or partialy successful
70+
_committed.free(start, filled);
71+
committed += filled;
72+
}
73+
if (filled < allocated) {
74+
// Failed or partialy failed
75+
_uncommitted.free(start + filled, allocated - filled);
76+
return committed;
77+
}
78+
}
79+
80+
// Expand backing file
81+
if (committed < size) {
82+
const size_t remaining = size - committed;
83+
const uintptr_t start = _file.size();
84+
const size_t expanded = _file.commit(start, remaining);
85+
if (expanded > 0) {
86+
// Successful or partialy successful
87+
_committed.free(start, expanded);
88+
committed += expanded;
89+
}
90+
}
91+
92+
return committed;
93+
}
94+
95+
size_t ZPhysicalMemoryBacking::uncommit(size_t size) {
96+
size_t uncommitted = 0;
97+
98+
// Punch holes in backing file
99+
while (uncommitted < size) {
100+
size_t allocated = 0;
101+
const size_t remaining = size - uncommitted;
102+
const uintptr_t start = _committed.alloc_from_back_at_most(remaining, &allocated);
103+
assert(start != UINTPTR_MAX, "Allocation should never fail");
104+
105+
// Try punch hole
106+
const size_t punched = _file.uncommit(start, allocated);
107+
if (punched > 0) {
108+
// Successful or partialy successful
109+
_uncommitted.free(start, punched);
110+
uncommitted += punched;
111+
}
112+
if (punched < allocated) {
113+
// Failed or partialy failed
114+
_committed.free(start + punched, allocated - punched);
115+
return uncommitted;
116+
}
117+
}
118+
119+
return uncommitted;
120+
}
121+
122+
ZPhysicalMemory ZPhysicalMemoryBacking::alloc(size_t size) {
123+
assert(is_aligned(size, ZGranuleSize), "Invalid size");
124+
125+
ZPhysicalMemory pmem;
126+
127+
// Allocate segments
128+
for (size_t allocated = 0; allocated < size; allocated += ZGranuleSize) {
129+
const uintptr_t start = _committed.alloc_from_front(ZGranuleSize);
130+
assert(start != UINTPTR_MAX, "Allocation should never fail");
131+
pmem.add_segment(ZPhysicalMemorySegment(start, ZGranuleSize));
132+
}
133+
134+
return pmem;
135+
}
136+
137+
void ZPhysicalMemoryBacking::free(const ZPhysicalMemory& pmem) {
138+
const size_t nsegments = pmem.nsegments();
139+
140+
// Free segments
141+
for (size_t i = 0; i < nsegments; i++) {
142+
const ZPhysicalMemorySegment& segment = pmem.segment(i);
143+
_committed.free(segment.start(), segment.size());
144+
}
145+
}
146+
147+
void ZPhysicalMemoryBacking::pretouch_view(uintptr_t addr, size_t size) const {
148+
const size_t page_size = ZLargePages::is_explicit() ? os::large_page_size() : os::vm_page_size();
149+
os::pretouch_memory((void*)addr, (void*)(addr + size), page_size);
150+
}
151+
152+
void ZPhysicalMemoryBacking::map_view(const ZPhysicalMemory& pmem, uintptr_t addr, bool pretouch) const {
153+
const size_t nsegments = pmem.nsegments();
154+
size_t size = 0;
155+
156+
// Map segments
157+
for (size_t i = 0; i < nsegments; i++) {
158+
const ZPhysicalMemorySegment& segment = pmem.segment(i);
159+
_file.map(addr + size, segment.size(), segment.start());
160+
size += segment.size();
161+
}
162+
163+
// Pre-touch memory
164+
if (pretouch) {
165+
pretouch_view(addr, size);
166+
}
167+
}
168+
169+
void ZPhysicalMemoryBacking::unmap_view(const ZPhysicalMemory& pmem, uintptr_t addr) const {
170+
_file.unmap(addr, pmem.size());
171+
}
172+
173+
uintptr_t ZPhysicalMemoryBacking::nmt_address(uintptr_t offset) const {
174+
// From an NMT point of view we treat the first heap view (marked0) as committed
175+
return ZAddress::marked0(offset);
176+
}
177+
178+
void ZPhysicalMemoryBacking::map(const ZPhysicalMemory& pmem, uintptr_t offset) const {
179+
if (ZVerifyViews) {
180+
// Map good view
181+
map_view(pmem, ZAddress::good(offset), AlwaysPreTouch);
182+
} else {
183+
// Map all views
184+
map_view(pmem, ZAddress::marked0(offset), AlwaysPreTouch);
185+
map_view(pmem, ZAddress::marked1(offset), AlwaysPreTouch);
186+
map_view(pmem, ZAddress::remapped(offset), AlwaysPreTouch);
187+
}
188+
}
189+
190+
void ZPhysicalMemoryBacking::unmap(const ZPhysicalMemory& pmem, uintptr_t offset) const {
191+
if (ZVerifyViews) {
192+
// Unmap good view
193+
unmap_view(pmem, ZAddress::good(offset));
194+
} else {
195+
// Unmap all views
196+
unmap_view(pmem, ZAddress::marked0(offset));
197+
unmap_view(pmem, ZAddress::marked1(offset));
198+
unmap_view(pmem, ZAddress::remapped(offset));
199+
}
200+
}
201+
202+
void ZPhysicalMemoryBacking::debug_map(const ZPhysicalMemory& pmem, uintptr_t offset) const {
203+
// Map good view
204+
assert(ZVerifyViews, "Should be enabled");
205+
map_view(pmem, ZAddress::good(offset), false /* pretouch */);
206+
}
207+
208+
void ZPhysicalMemoryBacking::debug_unmap(const ZPhysicalMemory& pmem, uintptr_t offset) const {
209+
// Unmap good view
210+
assert(ZVerifyViews, "Should be enabled");
211+
unmap_view(pmem, ZAddress::good(offset));
212+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#ifndef OS_WINDOWS_GC_Z_ZPHYSICALMEMORYBACKING_WINDOWS_HPP
25+
#define OS_WINDOWS_GC_Z_ZPHYSICALMEMORYBACKING_WINDOWS_HPP
26+
27+
#include "gc/z/zBackingFile_windows.hpp"
28+
#include "gc/z/zMemory.hpp"
29+
30+
class ZPhysicalMemory;
31+
32+
class ZPhysicalMemoryBacking {
33+
private:
34+
ZBackingFile _file;
35+
ZMemoryManager _committed;
36+
ZMemoryManager _uncommitted;
37+
38+
void pretouch_view(uintptr_t addr, size_t size) const;
39+
void map_view(const ZPhysicalMemory& pmem, uintptr_t addr, bool pretouch) const;
40+
void unmap_view(const ZPhysicalMemory& pmem, uintptr_t addr) const;
41+
42+
public:
43+
bool is_initialized() const;
44+
45+
void warn_commit_limits(size_t max) const;
46+
bool supports_uncommit();
47+
48+
size_t commit(size_t size);
49+
size_t uncommit(size_t size);
50+
51+
ZPhysicalMemory alloc(size_t size);
52+
void free(const ZPhysicalMemory& pmem);
53+
54+
uintptr_t nmt_address(uintptr_t offset) const;
55+
56+
void map(const ZPhysicalMemory& pmem, uintptr_t offset) const;
57+
void unmap(const ZPhysicalMemory& pmem, uintptr_t offset) const;
58+
59+
void debug_map(const ZPhysicalMemory& pmem, uintptr_t offset) const;
60+
void debug_unmap(const ZPhysicalMemory& pmem, uintptr_t offset) const;
61+
};
62+
63+
#endif // OS_WINDOWS_GC_Z_ZPHYSICALMEMORYBACKING_WINDOWS_HPP
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "gc/z/zSyscall_windows.hpp"
26+
#include "logging/log.hpp"
27+
#include "runtime/java.hpp"
28+
#include "runtime/os.hpp"
29+
30+
ZSyscall::CreateFileMappingWFn ZSyscall::CreateFileMappingW;
31+
ZSyscall::VirtualAlloc2Fn ZSyscall::VirtualAlloc2;
32+
ZSyscall::VirtualFreeExFn ZSyscall::VirtualFreeEx;
33+
ZSyscall::MapViewOfFile3Fn ZSyscall::MapViewOfFile3;
34+
ZSyscall::UnmapViewOfFile2Fn ZSyscall::UnmapViewOfFile2;
35+
36+
template <typename Fn>
37+
static void lookup_symbol(Fn*& fn, const char* library, const char* symbol) {
38+
char ebuf[1024];
39+
void* const handle = os::dll_load(library, ebuf, sizeof(ebuf));
40+
if (handle == NULL) {
41+
log_error(gc)("Failed to load library: %s", library);
42+
vm_exit_during_initialization("ZGC requires Windows version 1803 or later");
43+
}
44+
45+
fn = reinterpret_cast<Fn*>(os::dll_lookup(handle, symbol));
46+
if (fn == NULL) {
47+
log_error(gc)("Failed to lookup symbol: %s", symbol);
48+
vm_exit_during_initialization("ZGC requires Windows version 1803 or later");
49+
}
50+
}
51+
52+
void ZSyscall::initialize() {
53+
lookup_symbol(CreateFileMappingW, "KernelBase", "CreateFileMappingW");
54+
lookup_symbol(VirtualAlloc2, "KernelBase", "VirtualAlloc2");
55+
lookup_symbol(VirtualFreeEx, "KernelBase", "VirtualFreeEx");
56+
lookup_symbol(MapViewOfFile3, "KernelBase", "MapViewOfFile3");
57+
lookup_symbol(UnmapViewOfFile2, "KernelBase", "UnmapViewOfFile2");
58+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#ifndef OS_WINDOWS_GC_Z_ZSYSCALL_WINDOWS_HPP
25+
#define OS_WINDOWS_GC_Z_ZSYSCALL_WINDOWS_HPP
26+
27+
#include "utilities/globalDefinitions.hpp"
28+
29+
#include <Windows.h>
30+
#include <Memoryapi.h>
31+
32+
class ZSyscall {
33+
private:
34+
typedef HANDLE (*CreateFileMappingWFn)(HANDLE, LPSECURITY_ATTRIBUTES, DWORD, DWORD, DWORD, LPCWSTR);
35+
typedef PVOID (*VirtualAlloc2Fn)(HANDLE, PVOID, SIZE_T, ULONG, ULONG, MEM_EXTENDED_PARAMETER*, ULONG);
36+
typedef BOOL (*VirtualFreeExFn)(HANDLE, LPVOID, SIZE_T, DWORD);
37+
typedef PVOID (*MapViewOfFile3Fn)(HANDLE, HANDLE, PVOID, ULONG64, SIZE_T, ULONG, ULONG, MEM_EXTENDED_PARAMETER*, ULONG);
38+
typedef BOOL (*UnmapViewOfFile2Fn)(HANDLE, PVOID, ULONG);
39+
40+
public:
41+
static CreateFileMappingWFn CreateFileMappingW;
42+
static VirtualAlloc2Fn VirtualAlloc2;
43+
static VirtualFreeExFn VirtualFreeEx;
44+
static MapViewOfFile3Fn MapViewOfFile3;
45+
static UnmapViewOfFile2Fn UnmapViewOfFile2;
46+
47+
static void initialize();
48+
};
49+
50+
#endif // OS_WINDOWS_GC_Z_ZSYSCALL_WINDOWS_HPP
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "gc/z/zUtils.hpp"
26+
#include "utilities/debug.hpp"
27+
28+
#include <malloc.h>
29+
30+
uintptr_t ZUtils::alloc_aligned(size_t alignment, size_t size) {
31+
void* const res = _aligned_malloc(size, alignment);
32+
33+
if (res == NULL) {
34+
fatal("_aligned_malloc failed");
35+
}
36+
37+
memset(res, 0, size);
38+
39+
return (uintptr_t)res;
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
/*
2+
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "gc/z/zAddress.inline.hpp"
26+
#include "gc/z/zGlobals.hpp"
27+
#include "gc/z/zMapper_windows.hpp"
28+
#include "gc/z/zVirtualMemory.hpp"
29+
#include "utilities/align.hpp"
30+
#include "utilities/debug.hpp"
31+
32+
static void split_placeholder(uintptr_t start, size_t size) {
33+
ZMapper::split_placeholder(ZAddress::marked0(start), size);
34+
ZMapper::split_placeholder(ZAddress::marked1(start), size);
35+
ZMapper::split_placeholder(ZAddress::remapped(start), size);
36+
}
37+
38+
static void coalesce_placeholders(uintptr_t start, size_t size) {
39+
ZMapper::coalesce_placeholders(ZAddress::marked0(start), size);
40+
ZMapper::coalesce_placeholders(ZAddress::marked1(start), size);
41+
ZMapper::coalesce_placeholders(ZAddress::remapped(start), size);
42+
}
43+
44+
static void split_into_placeholder_granules(uintptr_t start, size_t size) {
45+
for (uintptr_t addr = start; addr < start + size; addr += ZGranuleSize) {
46+
split_placeholder(addr, ZGranuleSize);
47+
}
48+
}
49+
50+
static void coalesce_into_one_placeholder(uintptr_t start, size_t size) {
51+
assert(is_aligned(size, ZGranuleSize), "Must be granule aligned");
52+
53+
if (size > ZGranuleSize) {
54+
coalesce_placeholders(start, size);
55+
}
56+
}
57+
58+
static void create_callback(const ZMemory* area) {
59+
assert(is_aligned(area->size(), ZGranuleSize), "Must be granule aligned");
60+
coalesce_into_one_placeholder(area->start(), area->size());
61+
}
62+
63+
static void destroy_callback(const ZMemory* area) {
64+
assert(is_aligned(area->size(), ZGranuleSize), "Must be granule aligned");
65+
// Don't try split the last granule - VirtualFree will fail
66+
split_into_placeholder_granules(area->start(), area->size() - ZGranuleSize);
67+
}
68+
69+
static void shrink_from_front_callback(const ZMemory* area, size_t size) {
70+
assert(is_aligned(size, ZGranuleSize), "Must be granule aligned");
71+
split_into_placeholder_granules(area->start(), size);
72+
}
73+
74+
static void shrink_from_back_callback(const ZMemory* area, size_t size) {
75+
assert(is_aligned(size, ZGranuleSize), "Must be granule aligned");
76+
// Don't try split the last granule - VirtualFree will fail
77+
split_into_placeholder_granules(area->end() - size, size - ZGranuleSize);
78+
}
79+
80+
static void grow_from_front_callback(const ZMemory* area, size_t size) {
81+
assert(is_aligned(area->size(), ZGranuleSize), "Must be granule aligned");
82+
coalesce_into_one_placeholder(area->start() - size, area->size() + size);
83+
}
84+
85+
static void grow_from_back_callback(const ZMemory* area, size_t size) {
86+
assert(is_aligned(area->size(), ZGranuleSize), "Must be granule aligned");
87+
coalesce_into_one_placeholder(area->start(), area->size() + size);
88+
}
89+
90+
void ZVirtualMemoryManager::initialize_os() {
91+
// Each reserved virtual memory address area registered in _manager is
92+
// exactly covered by a single placeholder. Callbacks are installed so
93+
// that whenever a memory area changes, the corresponding placeholder
94+
// is adjusted.
95+
//
96+
// The create and grow callbacks are called when virtual memory is
97+
// returned to the memory manager. The new memory area is then covered
98+
// by a new single placeholder.
99+
//
100+
// The destroy and shrink callbacks are called when virtual memory is
101+
// allocated from the memory manager. The memory area is then is split
102+
// into granule-sized placeholders.
103+
//
104+
// See comment in zMapper_windows.cpp explaining why placeholders are
105+
// split into ZGranuleSize sized placeholders.
106+
107+
ZMemoryManager::Callbacks callbacks;
108+
109+
callbacks._create = &create_callback;
110+
callbacks._destroy = &destroy_callback;
111+
callbacks._shrink_from_front = &shrink_from_front_callback;
112+
callbacks._shrink_from_back = &shrink_from_back_callback;
113+
callbacks._grow_from_front = &grow_from_front_callback;
114+
callbacks._grow_from_back = &grow_from_back_callback;
115+
116+
_manager.register_callbacks(callbacks);
117+
}
118+
119+
bool ZVirtualMemoryManager::reserve_contiguous_platform(uintptr_t start, size_t size) {
120+
assert(is_aligned(size, ZGranuleSize), "Must be granule aligned");
121+
122+
// Reserve address views
123+
const uintptr_t marked0 = ZAddress::marked0(start);
124+
const uintptr_t marked1 = ZAddress::marked1(start);
125+
const uintptr_t remapped = ZAddress::remapped(start);
126+
127+
// Reserve address space
128+
if (ZMapper::reserve(marked0, size) != marked0) {
129+
return false;
130+
}
131+
132+
if (ZMapper::reserve(marked1, size) != marked1) {
133+
ZMapper::unreserve(marked0, size);
134+
return false;
135+
}
136+
137+
if (ZMapper::reserve(remapped, size) != remapped) {
138+
ZMapper::unreserve(marked0, size);
139+
ZMapper::unreserve(marked1, size);
140+
return false;
141+
}
142+
143+
// Register address views with native memory tracker
144+
nmt_reserve(marked0, size);
145+
nmt_reserve(marked1, size);
146+
nmt_reserve(remapped, size);
147+
148+
return true;
149+
}

0 commit comments

Comments
 (0)
Please sign in to comment.