src/os/linux/vm/os_linux.inline.hpp

Tue, 08 Aug 2017 15:57:29 +0800

author
aoqi
date
Tue, 08 Aug 2017 15:57:29 +0800
changeset 6876
710a3c8b516e
parent 5237
f2110083203d
parent 0
f90c822e73f8
child 7535
7ae4e26cb1e0
permissions
-rw-r--r--

merge

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #ifndef OS_LINUX_VM_OS_LINUX_INLINE_HPP
aoqi@0 26 #define OS_LINUX_VM_OS_LINUX_INLINE_HPP
aoqi@0 27
aoqi@0 28 #include "runtime/atomic.inline.hpp"
aoqi@0 29 #include "runtime/os.hpp"
aoqi@0 30
aoqi@0 31 #ifdef TARGET_OS_ARCH_linux_x86
aoqi@0 32 # include "orderAccess_linux_x86.inline.hpp"
aoqi@0 33 #endif
aoqi@0 34 #ifdef TARGET_OS_ARCH_linux_sparc
aoqi@0 35 # include "orderAccess_linux_sparc.inline.hpp"
aoqi@0 36 #endif
aoqi@0 37 #ifdef TARGET_OS_ARCH_linux_zero
aoqi@0 38 # include "orderAccess_linux_zero.inline.hpp"
aoqi@0 39 #endif
aoqi@0 40 #ifdef TARGET_OS_ARCH_linux_arm
aoqi@0 41 # include "orderAccess_linux_arm.inline.hpp"
aoqi@0 42 #endif
aoqi@0 43 #ifdef TARGET_OS_ARCH_linux_ppc
aoqi@0 44 # include "orderAccess_linux_ppc.inline.hpp"
aoqi@0 45 #endif
aoqi@0 46
aoqi@0 47 // System includes
aoqi@0 48
aoqi@0 49 #include <unistd.h>
aoqi@0 50 #include <sys/socket.h>
aoqi@0 51 #include <sys/poll.h>
aoqi@0 52 #include <netdb.h>
aoqi@0 53
aoqi@0 54 inline void* os::thread_local_storage_at(int index) {
aoqi@0 55 return pthread_getspecific((pthread_key_t)index);
aoqi@0 56 }
aoqi@0 57
aoqi@0 58 inline const char* os::file_separator() {
aoqi@0 59 return "/";
aoqi@0 60 }
aoqi@0 61
aoqi@0 62 inline const char* os::line_separator() {
aoqi@0 63 return "\n";
aoqi@0 64 }
aoqi@0 65
aoqi@0 66 inline const char* os::path_separator() {
aoqi@0 67 return ":";
aoqi@0 68 }
aoqi@0 69
aoqi@0 70 // File names are case-sensitive on windows only
aoqi@0 71 inline int os::file_name_strcmp(const char* s1, const char* s2) {
aoqi@0 72 return strcmp(s1, s2);
aoqi@0 73 }
aoqi@0 74
aoqi@0 75 inline bool os::obsolete_option(const JavaVMOption *option) {
aoqi@0 76 return false;
aoqi@0 77 }
aoqi@0 78
aoqi@0 79 inline bool os::uses_stack_guard_pages() {
aoqi@0 80 return true;
aoqi@0 81 }
aoqi@0 82
aoqi@0 83 inline bool os::allocate_stack_guard_pages() {
aoqi@0 84 assert(uses_stack_guard_pages(), "sanity check");
aoqi@0 85 return true;
aoqi@0 86 }
aoqi@0 87
aoqi@0 88
aoqi@0 89 // On Linux, reservations are made on a page by page basis, nothing to do.
aoqi@0 90 inline void os::pd_split_reserved_memory(char *base, size_t size,
aoqi@0 91 size_t split, bool realloc) {
aoqi@0 92 }
aoqi@0 93
aoqi@0 94
aoqi@0 95 // Bang the shadow pages if they need to be touched to be mapped.
aoqi@0 96 inline void os::bang_stack_shadow_pages() {
aoqi@0 97 }
aoqi@0 98
aoqi@0 99 inline void os::dll_unload(void *lib) {
aoqi@0 100 ::dlclose(lib);
aoqi@0 101 }
aoqi@0 102
aoqi@0 103 inline const int os::default_file_open_flags() { return 0;}
aoqi@0 104
aoqi@0 105 inline DIR* os::opendir(const char* dirname)
aoqi@0 106 {
aoqi@0 107 assert(dirname != NULL, "just checking");
aoqi@0 108 return ::opendir(dirname);
aoqi@0 109 }
aoqi@0 110
aoqi@0 111 inline int os::readdir_buf_size(const char *path)
aoqi@0 112 {
aoqi@0 113 return NAME_MAX + sizeof(dirent) + 1;
aoqi@0 114 }
aoqi@0 115
aoqi@0 116 inline jlong os::lseek(int fd, jlong offset, int whence) {
aoqi@0 117 return (jlong) ::lseek64(fd, offset, whence);
aoqi@0 118 }
aoqi@0 119
aoqi@0 120 inline int os::fsync(int fd) {
aoqi@0 121 return ::fsync(fd);
aoqi@0 122 }
aoqi@0 123
aoqi@0 124 inline char* os::native_path(char *path) {
aoqi@0 125 return path;
aoqi@0 126 }
aoqi@0 127
aoqi@0 128 inline int os::ftruncate(int fd, jlong length) {
aoqi@0 129 return ::ftruncate64(fd, length);
aoqi@0 130 }
aoqi@0 131
aoqi@0 132 inline struct dirent* os::readdir(DIR* dirp, dirent *dbuf)
aoqi@0 133 {
aoqi@0 134 dirent* p;
aoqi@0 135 int status;
aoqi@0 136 assert(dirp != NULL, "just checking");
aoqi@0 137
aoqi@0 138 // NOTE: Linux readdir_r (on RH 6.2 and 7.2 at least) is NOT like the POSIX
aoqi@0 139 // version. Here is the doc for this function:
aoqi@0 140 // http://www.gnu.org/manual/glibc-2.2.3/html_node/libc_262.html
aoqi@0 141
aoqi@0 142 if((status = ::readdir_r(dirp, dbuf, &p)) != 0) {
aoqi@0 143 errno = status;
aoqi@0 144 return NULL;
aoqi@0 145 } else
aoqi@0 146 return p;
aoqi@0 147 }
aoqi@0 148
aoqi@0 149 inline int os::closedir(DIR *dirp) {
aoqi@0 150 assert(dirp != NULL, "argument is NULL");
aoqi@0 151 return ::closedir(dirp);
aoqi@0 152 }
aoqi@0 153
aoqi@0 154 // macros for restartable system calls
aoqi@0 155
aoqi@0 156 #define RESTARTABLE(_cmd, _result) do { \
aoqi@0 157 _result = _cmd; \
aoqi@0 158 } while(((int)_result == OS_ERR) && (errno == EINTR))
aoqi@0 159
aoqi@0 160 #define RESTARTABLE_RETURN_INT(_cmd) do { \
aoqi@0 161 int _result; \
aoqi@0 162 RESTARTABLE(_cmd, _result); \
aoqi@0 163 return _result; \
aoqi@0 164 } while(false)
aoqi@0 165
aoqi@0 166 inline bool os::numa_has_static_binding() { return true; }
aoqi@0 167 inline bool os::numa_has_group_homing() { return false; }
aoqi@0 168
aoqi@0 169 inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) {
aoqi@0 170 size_t res;
aoqi@0 171 RESTARTABLE( (size_t) ::read(fd, buf, (size_t) nBytes), res);
aoqi@0 172 return res;
aoqi@0 173 }
aoqi@0 174
aoqi@0 175 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
aoqi@0 176 size_t res;
aoqi@0 177 RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
aoqi@0 178 return res;
aoqi@0 179 }
aoqi@0 180
aoqi@0 181 inline int os::close(int fd) {
aoqi@0 182 return ::close(fd);
aoqi@0 183 }
aoqi@0 184
aoqi@0 185 inline int os::socket_close(int fd) {
aoqi@0 186 return ::close(fd);
aoqi@0 187 }
aoqi@0 188
aoqi@0 189 inline int os::socket(int domain, int type, int protocol) {
aoqi@0 190 return ::socket(domain, type, protocol);
aoqi@0 191 }
aoqi@0 192
aoqi@0 193 inline int os::recv(int fd, char* buf, size_t nBytes, uint flags) {
aoqi@0 194 RESTARTABLE_RETURN_INT(::recv(fd, buf, nBytes, flags));
aoqi@0 195 }
aoqi@0 196
aoqi@0 197 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) {
aoqi@0 198 RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, flags));
aoqi@0 199 }
aoqi@0 200
aoqi@0 201 inline int os::raw_send(int fd, char* buf, size_t nBytes, uint flags) {
aoqi@0 202 return os::send(fd, buf, nBytes, flags);
aoqi@0 203 }
aoqi@0 204
aoqi@0 205 inline int os::timeout(int fd, long timeout) {
aoqi@0 206 julong prevtime,newtime;
aoqi@0 207 struct timeval t;
aoqi@0 208
aoqi@0 209 gettimeofday(&t, NULL);
aoqi@0 210 prevtime = ((julong)t.tv_sec * 1000) + t.tv_usec / 1000;
aoqi@0 211
aoqi@0 212 for(;;) {
aoqi@0 213 struct pollfd pfd;
aoqi@0 214
aoqi@0 215 pfd.fd = fd;
aoqi@0 216 pfd.events = POLLIN | POLLERR;
aoqi@0 217
aoqi@0 218 int res = ::poll(&pfd, 1, timeout);
aoqi@0 219
aoqi@0 220 if (res == OS_ERR && errno == EINTR) {
aoqi@0 221
aoqi@0 222 // On Linux any value < 0 means "forever"
aoqi@0 223
aoqi@0 224 if(timeout >= 0) {
aoqi@0 225 gettimeofday(&t, NULL);
aoqi@0 226 newtime = ((julong)t.tv_sec * 1000) + t.tv_usec / 1000;
aoqi@0 227 timeout -= newtime - prevtime;
aoqi@0 228 if(timeout <= 0)
aoqi@0 229 return OS_OK;
aoqi@0 230 prevtime = newtime;
aoqi@0 231 }
aoqi@0 232 } else
aoqi@0 233 return res;
aoqi@0 234 }
aoqi@0 235 }
aoqi@0 236
aoqi@0 237 inline int os::listen(int fd, int count) {
aoqi@0 238 return ::listen(fd, count);
aoqi@0 239 }
aoqi@0 240
aoqi@0 241 inline int os::connect(int fd, struct sockaddr* him, socklen_t len) {
aoqi@0 242 RESTARTABLE_RETURN_INT(::connect(fd, him, len));
aoqi@0 243 }
aoqi@0 244
aoqi@0 245 inline int os::accept(int fd, struct sockaddr* him, socklen_t* len) {
aoqi@0 246 // Linux doc says this can't return EINTR, unlike accept() on Solaris.
aoqi@0 247 // But see attachListener_linux.cpp, LinuxAttachListener::dequeue().
aoqi@0 248 return (int)::accept(fd, him, len);
aoqi@0 249 }
aoqi@0 250
aoqi@0 251 inline int os::recvfrom(int fd, char* buf, size_t nBytes, uint flags,
aoqi@0 252 sockaddr* from, socklen_t* fromlen) {
aoqi@0 253 RESTARTABLE_RETURN_INT((int)::recvfrom(fd, buf, nBytes, flags, from, fromlen));
aoqi@0 254 }
aoqi@0 255
aoqi@0 256 inline int os::sendto(int fd, char* buf, size_t len, uint flags,
aoqi@0 257 struct sockaddr* to, socklen_t tolen) {
aoqi@0 258 RESTARTABLE_RETURN_INT((int)::sendto(fd, buf, len, flags, to, tolen));
aoqi@0 259 }
aoqi@0 260
aoqi@0 261 inline int os::socket_shutdown(int fd, int howto) {
aoqi@0 262 return ::shutdown(fd, howto);
aoqi@0 263 }
aoqi@0 264
aoqi@0 265 inline int os::bind(int fd, struct sockaddr* him, socklen_t len) {
aoqi@0 266 return ::bind(fd, him, len);
aoqi@0 267 }
aoqi@0 268
aoqi@0 269 inline int os::get_sock_name(int fd, struct sockaddr* him, socklen_t* len) {
aoqi@0 270 return ::getsockname(fd, him, len);
aoqi@0 271 }
aoqi@0 272
aoqi@0 273 inline int os::get_host_name(char* name, int namelen) {
aoqi@0 274 return ::gethostname(name, namelen);
aoqi@0 275 }
aoqi@0 276
aoqi@0 277 inline struct hostent* os::get_host_by_name(char* name) {
aoqi@0 278 return ::gethostbyname(name);
aoqi@0 279 }
aoqi@0 280
aoqi@0 281 inline int os::get_sock_opt(int fd, int level, int optname,
aoqi@0 282 char* optval, socklen_t* optlen) {
aoqi@0 283 return ::getsockopt(fd, level, optname, optval, optlen);
aoqi@0 284 }
aoqi@0 285
aoqi@0 286 inline int os::set_sock_opt(int fd, int level, int optname,
aoqi@0 287 const char* optval, socklen_t optlen) {
aoqi@0 288 return ::setsockopt(fd, level, optname, optval, optlen);
aoqi@0 289 }
aoqi@0 290
aoqi@0 291 #endif // OS_LINUX_VM_OS_LINUX_INLINE_HPP

mercurial