hotspot/src/os/solaris/vm/os_solaris.inline.hpp
author iveresov
Tue, 29 Apr 2008 13:51:26 +0400
changeset 388 bcc631c5bbec
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
permissions -rw-r--r--
6684395: Port NUMA-aware allocator to linux Summary: NUMA-aware allocator port to Linux Reviewed-by: jmasa, apetrusenko
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
inline const char* os::file_separator() { return "/"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
inline const char* os::line_separator() { return "\n"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
inline const char* os::path_separator() { return ":"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
inline const char* os::jlong_format_specifier()   { return "%lld"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
inline const char* os::julong_format_specifier()  { return "%llu"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// File names are case-sensitive on windows only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
inline int os::file_name_strcmp(const char* s1, const char* s2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  return strcmp(s1, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
inline bool os::uses_stack_guard_pages() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
inline bool os::allocate_stack_guard_pages() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  assert(uses_stack_guard_pages(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  int r = thr_main() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  guarantee (r == 0 || r == 1, "CR6501650 or CR6493689") ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  return r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// On Solaris, reservations are made on a page by page basis, nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
inline void os::split_reserved_memory(char *base, size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
                                      size_t split, bool realloc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// Bang the shadow pages if they need to be touched to be mapped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
inline void os::bang_stack_shadow_pages() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
inline DIR* os::opendir(const char* dirname)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  assert(dirname != NULL, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  return ::opendir(dirname);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
inline int os::readdir_buf_size(const char *path)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  int size = pathconf(path, _PC_NAME_MAX);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  return (size < 0 ? MAXPATHLEN : size) + sizeof(dirent) + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
inline struct dirent* os::readdir(DIR* dirp, dirent* dbuf)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  assert(dirp != NULL, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
#if defined(_LP64) || defined(_GNU_SOURCE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  dirent* p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  int status;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  if((status = ::readdir_r(dirp, dbuf, &p)) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    errno = status;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  } else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    return p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
#else  // defined(_LP64) || defined(_GNU_SOURCE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  return ::readdir_r(dirp, dbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#endif // defined(_LP64) || defined(_GNU_SOURCE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
inline int os::closedir(DIR *dirp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  assert(dirp != NULL, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  return ::closedir(dirp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
//////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
////////////////////////////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// macros for interruptible io and system calls and system call restarting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
#define _INTERRUPTIBLE(_setup, _cmd, _result, _thread, _clear, _before, _after, _int_enable) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  _setup; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  _before; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  OSThread* _osthread = _thread->osthread(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  if (_int_enable && _thread->has_last_Java_frame()) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    /* this is java interruptible io stuff */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    if (os::is_interrupted(_thread, _clear))  { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      os::Solaris::bump_interrupted_before_count(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      _result = OS_INTRPT; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    } else { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      /* _cmd always expands to an assignment to _result */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      if ((_cmd) < 0 && errno == EINTR  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
       && os::is_interrupted(_thread, _clear)) { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
        os::Solaris::bump_interrupted_during_count(); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
        _result = OS_INTRPT; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  } else { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    /* this is normal blocking io stuff */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    _cmd; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  } \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  _after; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
// Interruptible io support + restarting of interrupted system calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
#ifndef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
#define INTERRUPTIBLE(_cmd, _result, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  _INTERRUPTIBLE( JavaThread* _thread = (JavaThread*)ThreadLocalStorage::thread(),_result = _cmd, _result, _thread, _clear, , , UseVMInterruptibleIO); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
} while((_result == OS_ERR) && (errno == EINTR))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// This adds an assertion that it is only called from thread_in_native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
// The call overhead is skipped for performance in product mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
#define INTERRUPTIBLE(_cmd, _result, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  _INTERRUPTIBLE(JavaThread* _thread = os::Solaris::setup_interruptible_native(), _result = _cmd, _result, _thread, _clear, , os::Solaris::cleanup_interruptible_native(_thread), UseVMInterruptibleIO ); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
} while((_result == OS_ERR) && (errno == EINTR))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
// Used for calls from _thread_in_vm, not from _thread_in_native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
#define INTERRUPTIBLE_VM(_cmd, _result, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  _INTERRUPTIBLE(JavaThread* _thread = os::Solaris::setup_interruptible(), _result = _cmd, _result, _thread, _clear, , os::Solaris::cleanup_interruptible(_thread), UseVMInterruptibleIO ); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
} while((_result == OS_ERR) && (errno == EINTR))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
/* Use NORESTART when the system call cannot return EINTR, when something other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
   than a system call is being invoked, or when the caller must do EINTR
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
   handling. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
#ifndef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
#define INTERRUPTIBLE_NORESTART(_cmd, _result, _clear) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  _INTERRUPTIBLE( JavaThread* _thread = (JavaThread*)ThreadLocalStorage::thread(),_result = _cmd, _result, _thread, _clear, , , UseVMInterruptibleIO)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
// This adds an assertion that it is only called from thread_in_native
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
// The call overhead is skipped for performance in product mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
#define INTERRUPTIBLE_NORESTART(_cmd, _result, _clear) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  _INTERRUPTIBLE(JavaThread* _thread = os::Solaris::setup_interruptible_native(), _result = _cmd, _result, _thread, _clear, , os::Solaris::cleanup_interruptible_native(_thread), UseVMInterruptibleIO )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// Don't attend to UseVMInterruptibleIO. Always allow interruption.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// Also assumes that it is called from the _thread_blocked state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// Used by os_sleep().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
#define INTERRUPTIBLE_NORESTART_VM_ALWAYS(_cmd, _result, _thread, _clear) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  _INTERRUPTIBLE(os::Solaris::setup_interruptible_already_blocked(_thread), _result = _cmd, _result, _thread, _clear, , , true )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
#define INTERRUPTIBLE_RETURN_INT(_cmd, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  int _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    INTERRUPTIBLE(_cmd, _result, _clear); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  } while((_result == OS_ERR) && (errno == EINTR)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  return _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
#define INTERRUPTIBLE_RETURN_INT_VM(_cmd, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  int _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    INTERRUPTIBLE_VM(_cmd, _result, _clear); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  } while((_result == OS_ERR) && (errno == EINTR)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  return _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
#define INTERRUPTIBLE_RETURN_INT_NORESTART(_cmd, _clear) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  int _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  INTERRUPTIBLE_NORESTART(_cmd, _result, _clear); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  return _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
/* Use the RESTARTABLE macros when interruptible io is not needed */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
#define RESTARTABLE(_cmd, _result) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    _result = _cmd; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  } while((_result == OS_ERR) && (errno == EINTR)); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
} while(false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
#define RESTARTABLE_RETURN_INT(_cmd) do { \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  int _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  RESTARTABLE(_cmd, _result); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  return _result; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
} while(false)
388
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 1
diff changeset
   207
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 1
diff changeset
   208
inline bool os::numa_has_static_binding()   { return false; }
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 1
diff changeset
   209
inline bool os::numa_has_group_homing()     { return true;  }