0N/A/*
1879N/A * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
1472N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A * or visit www.oracle.com if you need additional information or have any
1472N/A * questions.
0N/A *
0N/A */
0N/A
1879N/A#ifndef OS_WINDOWS_VM_OS_WINDOWS_INLINE_HPP
1879N/A#define OS_WINDOWS_VM_OS_WINDOWS_INLINE_HPP
1879N/A
1879N/A#include "runtime/atomic.hpp"
1879N/A#include "runtime/os.hpp"
1879N/A#ifdef TARGET_OS_ARCH_windows_x86
1879N/A# include "atomic_windows_x86.inline.hpp"
1879N/A# include "orderAccess_windows_x86.inline.hpp"
1879N/A#endif
1879N/A
0N/Ainline const char* os::file_separator() { return "\\"; }
0N/Ainline const char* os::line_separator() { return "\r\n"; }
0N/Ainline const char* os::path_separator() { return ";"; }
1887N/Ainline const char* os::dll_file_extension() { return ".dll"; }
0N/A
0N/Ainline const char* os::jlong_format_specifier() { return "%I64d"; }
0N/Ainline const char* os::julong_format_specifier() { return "%I64u"; }
0N/A
1887N/Ainline const int os::default_file_open_flags() { return O_BINARY | O_NOINHERIT;}
1887N/A
0N/A// File names are case-insensitive on windows only
0N/Ainline int os::file_name_strcmp(const char* s, const char* t) {
0N/A return _stricmp(s, t);
0N/A}
0N/A
1887N/Ainline void os::dll_unload(void *lib) {
1887N/A ::FreeLibrary((HMODULE)lib);
1887N/A}
1887N/A
1887N/Ainline void* os::dll_lookup(void *lib, const char *name) {
1887N/A return (void*)::GetProcAddress((HMODULE)lib, name);
1887N/A}
1887N/A
0N/A// Used to improve time-sharing on some systems
0N/Ainline void os::loop_breaker(int attempts) {}
0N/A
0N/Ainline bool os::obsolete_option(const JavaVMOption *option) {
0N/A return false;
0N/A}
0N/A
0N/Ainline bool os::uses_stack_guard_pages() {
0N/A return os::win32::is_nt();
0N/A}
0N/A
0N/Ainline bool os::allocate_stack_guard_pages() {
0N/A assert(uses_stack_guard_pages(), "sanity check");
0N/A return true;
0N/A}
0N/A
0N/Ainline int os::readdir_buf_size(const char *path)
0N/A{
0N/A /* As Windows doesn't use the directory entry buffer passed to
0N/A os::readdir() this can be as short as possible */
0N/A
0N/A return 1;
0N/A}
0N/A
0N/A// Bang the shadow pages if they need to be touched to be mapped.
0N/Ainline void os::bang_stack_shadow_pages() {
0N/A // Write to each page of our new frame to force OS mapping.
0N/A // If we decrement stack pointer more than one page
0N/A // the OS may not map an intervening page into our space
0N/A // and may fault on a memory access to interior of our frame.
0N/A address sp = current_stack_pointer();
0N/A for (int pages = 1; pages <= StackShadowPages; pages++) {
0N/A *((int *)(sp - (pages * vm_page_size()))) = 0;
0N/A }
0N/A}
141N/A
141N/Ainline bool os::numa_has_static_binding() { return true; }
141N/Ainline bool os::numa_has_group_homing() { return false; }
1879N/A
1887N/Ainline size_t os::read(int fd, void *buf, unsigned int nBytes) {
1887N/A return ::read(fd, buf, nBytes);
1887N/A}
1887N/A
1887N/Ainline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) {
1887N/A return ::read(fd, buf, nBytes);
1887N/A}
1887N/A
1887N/Ainline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
1887N/A return ::write(fd, buf, nBytes);
1887N/A}
1887N/A
1887N/Ainline int os::close(int fd) {
1887N/A return ::close(fd);
1887N/A}
1879N/A#endif // OS_WINDOWS_VM_OS_WINDOWS_INLINE_HPP