Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/os/windows/vm/os_windows.inline.hpp
32284 views
1
/*
2
* Copyright (c) 1997, 2013, 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_VM_OS_WINDOWS_INLINE_HPP
26
#define OS_WINDOWS_VM_OS_WINDOWS_INLINE_HPP
27
28
#include "runtime/atomic.inline.hpp"
29
#include "runtime/orderAccess.inline.hpp"
30
#include "runtime/os.hpp"
31
32
inline const char* os::file_separator() { return "\\"; }
33
inline const char* os::line_separator() { return "\r\n"; }
34
inline const char* os::path_separator() { return ";"; }
35
inline const char* os::dll_file_extension() { return ".dll"; }
36
37
inline const int os::default_file_open_flags() { return O_BINARY | O_NOINHERIT;}
38
39
// File names are case-insensitive on windows only
40
inline int os::file_name_strcmp(const char* s, const char* t) {
41
return _stricmp(s, t);
42
}
43
44
inline void os::dll_unload(void *lib) {
45
::FreeLibrary((HMODULE)lib);
46
}
47
48
inline void* os::dll_lookup(void *lib, const char *name) {
49
return (void*)::GetProcAddress((HMODULE)lib, name);
50
}
51
52
// Used to improve time-sharing on some systems
53
inline void os::loop_breaker(int attempts) {}
54
55
inline bool os::obsolete_option(const JavaVMOption *option) {
56
return false;
57
}
58
59
inline bool os::uses_stack_guard_pages() {
60
return os::win32::is_nt();
61
}
62
63
inline bool os::allocate_stack_guard_pages() {
64
assert(uses_stack_guard_pages(), "sanity check");
65
return true;
66
}
67
68
// Bang the shadow pages if they need to be touched to be mapped.
69
inline void os::bang_stack_shadow_pages() {
70
// Write to each page of our new frame to force OS mapping.
71
// If we decrement stack pointer more than one page
72
// the OS may not map an intervening page into our space
73
// and may fault on a memory access to interior of our frame.
74
address sp = current_stack_pointer();
75
for (int pages = 1; pages <= StackShadowPages; pages++) {
76
*((int *)(sp - (pages * vm_page_size()))) = 0;
77
}
78
}
79
80
inline bool os::numa_has_static_binding() { return true; }
81
inline bool os::numa_has_group_homing() { return false; }
82
83
inline size_t os::read(int fd, void *buf, unsigned int nBytes) {
84
return ::read(fd, buf, nBytes);
85
}
86
87
inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) {
88
return ::read(fd, buf, nBytes);
89
}
90
91
inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
92
return ::write(fd, buf, nBytes);
93
}
94
95
inline int os::close(int fd) {
96
return ::close(fd);
97
}
98
99
#define CALL_TEST_FUNC_WITH_WRAPPER_IF_NEEDED(f) \
100
os::win32::call_test_func_with_wrapper(f)
101
102
#endif // OS_WINDOWS_VM_OS_WINDOWS_INLINE_HPP
103
104