Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/os/windows/os_windows.inline.hpp
40930 views
1
/*
2
* Copyright (c) 1997, 2021, 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
25
#ifndef OS_WINDOWS_OS_WINDOWS_INLINE_HPP
26
#define OS_WINDOWS_OS_WINDOWS_INLINE_HPP
27
28
// os_windows.hpp included by os.hpp
29
30
#include "runtime/os.hpp"
31
#include "runtime/thread.hpp"
32
33
inline bool os::uses_stack_guard_pages() {
34
return true;
35
}
36
37
inline bool os::must_commit_stack_guard_pages() {
38
return true;
39
}
40
41
// Bang the shadow pages if they need to be touched to be mapped.
42
inline void os::map_stack_shadow_pages(address sp) {
43
// Write to each page of our new frame to force OS mapping.
44
// If we decrement stack pointer more than one page
45
// the OS may not map an intervening page into our space
46
// and may fault on a memory access to interior of our frame.
47
const int page_size = os::win32::vm_page_size();
48
const size_t n_pages = StackOverflow::stack_shadow_zone_size() / page_size;
49
for (size_t pages = 1; pages <= n_pages; pages++) {
50
sp -= page_size;
51
*sp = 0;
52
}
53
}
54
55
inline bool os::numa_has_static_binding() { return true; }
56
inline bool os::numa_has_group_homing() { return false; }
57
58
// Platform Mutex/Monitor implementation
59
60
inline os::PlatformMutex::PlatformMutex() {
61
InitializeCriticalSection(&_mutex);
62
}
63
64
inline os::PlatformMutex::~PlatformMutex() {
65
DeleteCriticalSection(&_mutex);
66
}
67
68
inline os::PlatformMonitor::PlatformMonitor() {
69
InitializeConditionVariable(&_cond);
70
}
71
72
inline os::PlatformMonitor::~PlatformMonitor() {
73
// There is no DeleteConditionVariable API
74
}
75
76
inline void os::PlatformMutex::lock() {
77
EnterCriticalSection(&_mutex);
78
}
79
80
inline void os::PlatformMutex::unlock() {
81
LeaveCriticalSection(&_mutex);
82
}
83
84
inline bool os::PlatformMutex::try_lock() {
85
return TryEnterCriticalSection(&_mutex);
86
}
87
88
inline void os::PlatformMonitor::notify() {
89
WakeConditionVariable(&_cond);
90
}
91
92
inline void os::PlatformMonitor::notify_all() {
93
WakeAllConditionVariable(&_cond);
94
}
95
96
#endif // OS_WINDOWS_OS_WINDOWS_INLINE_HPP
97
98