src/os_cpu/solaris_x86/vm/os_solaris_x86.cpp

Mon, 27 Feb 2012 09:17:44 +0100

author
roland
date
Mon, 27 Feb 2012 09:17:44 +0100
changeset 3606
da4be62fb889
parent 2708
1d1603768966
child 4136
bf2edd3c9b0f
permissions
-rw-r--r--

7147740: add assertions to check stack alignment on VM entry from generated code (x64)
Summary: check stack alignment on VM entry on x64.
Reviewed-by: kvn, never

duke@435 1 /*
trims@2708 2 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 // no precompiled headers
stefank@2314 26 #include "assembler_x86.inline.hpp"
stefank@2314 27 #include "classfile/classLoader.hpp"
stefank@2314 28 #include "classfile/systemDictionary.hpp"
stefank@2314 29 #include "classfile/vmSymbols.hpp"
stefank@2314 30 #include "code/icBuffer.hpp"
stefank@2314 31 #include "code/vtableStubs.hpp"
stefank@2314 32 #include "interpreter/interpreter.hpp"
stefank@2314 33 #include "jvm_solaris.h"
stefank@2314 34 #include "memory/allocation.inline.hpp"
stefank@2314 35 #include "mutex_solaris.inline.hpp"
stefank@2314 36 #include "nativeInst_x86.hpp"
stefank@2314 37 #include "os_share_solaris.hpp"
stefank@2314 38 #include "prims/jniFastGetField.hpp"
stefank@2314 39 #include "prims/jvm.h"
stefank@2314 40 #include "prims/jvm_misc.hpp"
stefank@2314 41 #include "runtime/arguments.hpp"
stefank@2314 42 #include "runtime/extendedPC.hpp"
stefank@2314 43 #include "runtime/frame.inline.hpp"
stefank@2314 44 #include "runtime/interfaceSupport.hpp"
stefank@2314 45 #include "runtime/java.hpp"
stefank@2314 46 #include "runtime/javaCalls.hpp"
stefank@2314 47 #include "runtime/mutexLocker.hpp"
stefank@2314 48 #include "runtime/osThread.hpp"
stefank@2314 49 #include "runtime/sharedRuntime.hpp"
stefank@2314 50 #include "runtime/stubRoutines.hpp"
stefank@2314 51 #include "runtime/timer.hpp"
stefank@2314 52 #include "thread_solaris.inline.hpp"
stefank@2314 53 #include "utilities/events.hpp"
stefank@2314 54 #include "utilities/vmError.hpp"
stefank@2314 55 #ifdef COMPILER1
stefank@2314 56 #include "c1/c1_Runtime1.hpp"
stefank@2314 57 #endif
stefank@2314 58 #ifdef COMPILER2
stefank@2314 59 #include "opto/runtime.hpp"
stefank@2314 60 #endif
duke@435 61
duke@435 62 // put OS-includes here
duke@435 63 # include <sys/types.h>
duke@435 64 # include <sys/mman.h>
duke@435 65 # include <pthread.h>
duke@435 66 # include <signal.h>
duke@435 67 # include <setjmp.h>
duke@435 68 # include <errno.h>
duke@435 69 # include <dlfcn.h>
duke@435 70 # include <stdio.h>
duke@435 71 # include <unistd.h>
duke@435 72 # include <sys/resource.h>
duke@435 73 # include <thread.h>
duke@435 74 # include <sys/stat.h>
duke@435 75 # include <sys/time.h>
duke@435 76 # include <sys/filio.h>
duke@435 77 # include <sys/utsname.h>
duke@435 78 # include <sys/systeminfo.h>
duke@435 79 # include <sys/socket.h>
duke@435 80 # include <sys/trap.h>
duke@435 81 # include <sys/lwp.h>
duke@435 82 # include <pwd.h>
duke@435 83 # include <poll.h>
duke@435 84 # include <sys/lwp.h>
duke@435 85 # include <procfs.h> // see comment in <sys/procfs.h>
duke@435 86
duke@435 87 #ifndef AMD64
duke@435 88 // QQQ seems useless at this point
duke@435 89 # define _STRUCTURED_PROC 1 // this gets us the new structured proc interfaces of 5.6 & later
duke@435 90 #endif // AMD64
duke@435 91 # include <sys/procfs.h> // see comment in <sys/procfs.h>
duke@435 92
duke@435 93
duke@435 94 #define MAX_PATH (2 * K)
duke@435 95
duke@435 96 // Minimum stack size for the VM. It's easier to document a constant value
duke@435 97 // but it's different for x86 and sparc because the page sizes are different.
duke@435 98 #ifdef AMD64
duke@435 99 size_t os::Solaris::min_stack_allowed = 224*K;
duke@435 100 #define REG_SP REG_RSP
duke@435 101 #define REG_PC REG_RIP
duke@435 102 #define REG_FP REG_RBP
duke@435 103 #else
duke@435 104 size_t os::Solaris::min_stack_allowed = 64*K;
duke@435 105 #define REG_SP UESP
duke@435 106 #define REG_PC EIP
duke@435 107 #define REG_FP EBP
duke@435 108 // 4900493 counter to prevent runaway LDTR refresh attempt
duke@435 109
duke@435 110 static volatile int ldtr_refresh = 0;
duke@435 111 // the libthread instruction that faults because of the stale LDTR
duke@435 112
duke@435 113 static const unsigned char movlfs[] = { 0x8e, 0xe0 // movl %eax,%fs
duke@435 114 };
duke@435 115 #endif // AMD64
duke@435 116
duke@435 117 char* os::non_memory_address_word() {
duke@435 118 // Must never look like an address returned by reserve_memory,
duke@435 119 // even in its subfields (as defined by the CPU immediate fields,
duke@435 120 // if the CPU splits constants across multiple instructions).
duke@435 121 return (char*) -1;
duke@435 122 }
duke@435 123
duke@435 124 //
duke@435 125 // Validate a ucontext retrieved from walking a uc_link of a ucontext.
duke@435 126 // There are issues with libthread giving out uc_links for different threads
duke@435 127 // on the same uc_link chain and bad or circular links.
duke@435 128 //
duke@435 129 bool os::Solaris::valid_ucontext(Thread* thread, ucontext_t* valid, ucontext_t* suspect) {
duke@435 130 if (valid >= suspect ||
duke@435 131 valid->uc_stack.ss_flags != suspect->uc_stack.ss_flags ||
duke@435 132 valid->uc_stack.ss_sp != suspect->uc_stack.ss_sp ||
duke@435 133 valid->uc_stack.ss_size != suspect->uc_stack.ss_size) {
duke@435 134 DEBUG_ONLY(tty->print_cr("valid_ucontext: failed test 1");)
duke@435 135 return false;
duke@435 136 }
duke@435 137
duke@435 138 if (thread->is_Java_thread()) {
duke@435 139 if (!valid_stack_address(thread, (address)suspect)) {
duke@435 140 DEBUG_ONLY(tty->print_cr("valid_ucontext: uc_link not in thread stack");)
duke@435 141 return false;
duke@435 142 }
duke@435 143 if (!valid_stack_address(thread, (address) suspect->uc_mcontext.gregs[REG_SP])) {
duke@435 144 DEBUG_ONLY(tty->print_cr("valid_ucontext: stackpointer not in thread stack");)
duke@435 145 return false;
duke@435 146 }
duke@435 147 }
duke@435 148 return true;
duke@435 149 }
duke@435 150
duke@435 151 // We will only follow one level of uc_link since there are libthread
duke@435 152 // issues with ucontext linking and it is better to be safe and just
duke@435 153 // let caller retry later.
duke@435 154 ucontext_t* os::Solaris::get_valid_uc_in_signal_handler(Thread *thread,
duke@435 155 ucontext_t *uc) {
duke@435 156
duke@435 157 ucontext_t *retuc = NULL;
duke@435 158
duke@435 159 if (uc != NULL) {
duke@435 160 if (uc->uc_link == NULL) {
duke@435 161 // cannot validate without uc_link so accept current ucontext
duke@435 162 retuc = uc;
duke@435 163 } else if (os::Solaris::valid_ucontext(thread, uc, uc->uc_link)) {
duke@435 164 // first ucontext is valid so try the next one
duke@435 165 uc = uc->uc_link;
duke@435 166 if (uc->uc_link == NULL) {
duke@435 167 // cannot validate without uc_link so accept current ucontext
duke@435 168 retuc = uc;
duke@435 169 } else if (os::Solaris::valid_ucontext(thread, uc, uc->uc_link)) {
duke@435 170 // the ucontext one level down is also valid so return it
duke@435 171 retuc = uc;
duke@435 172 }
duke@435 173 }
duke@435 174 }
duke@435 175 return retuc;
duke@435 176 }
duke@435 177
duke@435 178 // Assumes ucontext is valid
duke@435 179 ExtendedPC os::Solaris::ucontext_get_ExtendedPC(ucontext_t *uc) {
duke@435 180 return ExtendedPC((address)uc->uc_mcontext.gregs[REG_PC]);
duke@435 181 }
duke@435 182
duke@435 183 // Assumes ucontext is valid
duke@435 184 intptr_t* os::Solaris::ucontext_get_sp(ucontext_t *uc) {
duke@435 185 return (intptr_t*)uc->uc_mcontext.gregs[REG_SP];
duke@435 186 }
duke@435 187
duke@435 188 // Assumes ucontext is valid
duke@435 189 intptr_t* os::Solaris::ucontext_get_fp(ucontext_t *uc) {
duke@435 190 return (intptr_t*)uc->uc_mcontext.gregs[REG_FP];
duke@435 191 }
duke@435 192
duke@435 193 // For Forte Analyzer AsyncGetCallTrace profiling support - thread
duke@435 194 // is currently interrupted by SIGPROF.
duke@435 195 //
duke@435 196 // The difference between this and os::fetch_frame_from_context() is that
duke@435 197 // here we try to skip nested signal frames.
duke@435 198 ExtendedPC os::Solaris::fetch_frame_from_ucontext(Thread* thread,
duke@435 199 ucontext_t* uc, intptr_t** ret_sp, intptr_t** ret_fp) {
duke@435 200
duke@435 201 assert(thread != NULL, "just checking");
duke@435 202 assert(ret_sp != NULL, "just checking");
duke@435 203 assert(ret_fp != NULL, "just checking");
duke@435 204
duke@435 205 ucontext_t *luc = os::Solaris::get_valid_uc_in_signal_handler(thread, uc);
duke@435 206 return os::fetch_frame_from_context(luc, ret_sp, ret_fp);
duke@435 207 }
duke@435 208
duke@435 209 ExtendedPC os::fetch_frame_from_context(void* ucVoid,
duke@435 210 intptr_t** ret_sp, intptr_t** ret_fp) {
duke@435 211
duke@435 212 ExtendedPC epc;
duke@435 213 ucontext_t *uc = (ucontext_t*)ucVoid;
duke@435 214
duke@435 215 if (uc != NULL) {
duke@435 216 epc = os::Solaris::ucontext_get_ExtendedPC(uc);
duke@435 217 if (ret_sp) *ret_sp = os::Solaris::ucontext_get_sp(uc);
duke@435 218 if (ret_fp) *ret_fp = os::Solaris::ucontext_get_fp(uc);
duke@435 219 } else {
duke@435 220 // construct empty ExtendedPC for return value checking
duke@435 221 epc = ExtendedPC(NULL);
duke@435 222 if (ret_sp) *ret_sp = (intptr_t *)NULL;
duke@435 223 if (ret_fp) *ret_fp = (intptr_t *)NULL;
duke@435 224 }
duke@435 225
duke@435 226 return epc;
duke@435 227 }
duke@435 228
duke@435 229 frame os::fetch_frame_from_context(void* ucVoid) {
duke@435 230 intptr_t* sp;
duke@435 231 intptr_t* fp;
duke@435 232 ExtendedPC epc = fetch_frame_from_context(ucVoid, &sp, &fp);
duke@435 233 return frame(sp, fp, epc.pc());
duke@435 234 }
duke@435 235
duke@435 236 frame os::get_sender_for_C_frame(frame* fr) {
duke@435 237 return frame(fr->sender_sp(), fr->link(), fr->sender_pc());
duke@435 238 }
duke@435 239
roland@3606 240 extern "C" intptr_t *_get_current_sp(); // in .il file
roland@3606 241
roland@3606 242 address os::current_stack_pointer() {
roland@3606 243 return (address)_get_current_sp();
roland@3606 244 }
roland@3606 245
coleenp@907 246 extern "C" intptr_t *_get_current_fp(); // in .il file
duke@435 247
duke@435 248 frame os::current_frame() {
coleenp@907 249 intptr_t* fp = _get_current_fp(); // it's inlined so want current fp
duke@435 250 frame myframe((intptr_t*)os::current_stack_pointer(),
duke@435 251 (intptr_t*)fp,
duke@435 252 CAST_FROM_FN_PTR(address, os::current_frame));
duke@435 253 if (os::is_first_C_frame(&myframe)) {
duke@435 254 // stack is not walkable
sgoldman@542 255 frame ret; // This will be a null useless frame
sgoldman@542 256 return ret;
duke@435 257 } else {
duke@435 258 return os::get_sender_for_C_frame(&myframe);
duke@435 259 }
duke@435 260 }
duke@435 261
duke@435 262 // This is a simple callback that just fetches a PC for an interrupted thread.
duke@435 263 // The thread need not be suspended and the fetched PC is just a hint.
duke@435 264 // This one is currently used for profiling the VMThread ONLY!
duke@435 265
duke@435 266 // Must be synchronous
duke@435 267 void GetThreadPC_Callback::execute(OSThread::InterruptArguments *args) {
duke@435 268 Thread* thread = args->thread();
duke@435 269 ucontext_t* uc = args->ucontext();
duke@435 270 intptr_t* sp;
duke@435 271
duke@435 272 assert(ProfileVM && thread->is_VM_thread(), "just checking");
duke@435 273
duke@435 274 ExtendedPC new_addr((address)uc->uc_mcontext.gregs[REG_PC]);
duke@435 275 _addr = new_addr;
duke@435 276 }
duke@435 277
duke@435 278 static int threadgetstate(thread_t tid, int *flags, lwpid_t *lwp, stack_t *ss, gregset_t rs, lwpstatus_t *lwpstatus) {
duke@435 279 char lwpstatusfile[PROCFILE_LENGTH];
duke@435 280 int lwpfd, err;
duke@435 281
duke@435 282 if (err = os::Solaris::thr_getstate(tid, flags, lwp, ss, rs))
duke@435 283 return (err);
duke@435 284 if (*flags == TRS_LWPID) {
duke@435 285 sprintf(lwpstatusfile, "/proc/%d/lwp/%d/lwpstatus", getpid(),
duke@435 286 *lwp);
duke@435 287 if ((lwpfd = open(lwpstatusfile, O_RDONLY)) < 0) {
duke@435 288 perror("thr_mutator_status: open lwpstatus");
duke@435 289 return (EINVAL);
duke@435 290 }
duke@435 291 if (pread(lwpfd, lwpstatus, sizeof (lwpstatus_t), (off_t)0) !=
duke@435 292 sizeof (lwpstatus_t)) {
duke@435 293 perror("thr_mutator_status: read lwpstatus");
duke@435 294 (void) close(lwpfd);
duke@435 295 return (EINVAL);
duke@435 296 }
duke@435 297 (void) close(lwpfd);
duke@435 298 }
duke@435 299 return (0);
duke@435 300 }
duke@435 301
duke@435 302 #ifndef AMD64
duke@435 303
duke@435 304 // Detecting SSE support by OS
duke@435 305 // From solaris_i486.s
duke@435 306 extern "C" bool sse_check();
duke@435 307 extern "C" bool sse_unavailable();
duke@435 308
duke@435 309 enum { SSE_UNKNOWN, SSE_NOT_SUPPORTED, SSE_SUPPORTED};
duke@435 310 static int sse_status = SSE_UNKNOWN;
duke@435 311
duke@435 312
duke@435 313 static void check_for_sse_support() {
duke@435 314 if (!VM_Version::supports_sse()) {
duke@435 315 sse_status = SSE_NOT_SUPPORTED;
duke@435 316 return;
duke@435 317 }
duke@435 318 // looking for _sse_hw in libc.so, if it does not exist or
duke@435 319 // the value (int) is 0, OS has no support for SSE
duke@435 320 int *sse_hwp;
duke@435 321 void *h;
duke@435 322
duke@435 323 if ((h=dlopen("/usr/lib/libc.so", RTLD_LAZY)) == NULL) {
duke@435 324 //open failed, presume no support for SSE
duke@435 325 sse_status = SSE_NOT_SUPPORTED;
duke@435 326 return;
duke@435 327 }
duke@435 328 if ((sse_hwp = (int *)dlsym(h, "_sse_hw")) == NULL) {
duke@435 329 sse_status = SSE_NOT_SUPPORTED;
duke@435 330 } else if (*sse_hwp == 0) {
duke@435 331 sse_status = SSE_NOT_SUPPORTED;
duke@435 332 }
duke@435 333 dlclose(h);
duke@435 334
duke@435 335 if (sse_status == SSE_UNKNOWN) {
duke@435 336 bool (*try_sse)() = (bool (*)())sse_check;
duke@435 337 sse_status = (*try_sse)() ? SSE_SUPPORTED : SSE_NOT_SUPPORTED;
duke@435 338 }
duke@435 339
duke@435 340 }
duke@435 341
twisti@1020 342 #endif // AMD64
twisti@1020 343
duke@435 344 bool os::supports_sse() {
twisti@1020 345 #ifdef AMD64
twisti@1020 346 return true;
twisti@1020 347 #else
duke@435 348 if (sse_status == SSE_UNKNOWN)
duke@435 349 check_for_sse_support();
duke@435 350 return sse_status == SSE_SUPPORTED;
twisti@1020 351 #endif // AMD64
duke@435 352 }
duke@435 353
duke@435 354 bool os::is_allocatable(size_t bytes) {
duke@435 355 #ifdef AMD64
duke@435 356 return true;
duke@435 357 #else
duke@435 358
duke@435 359 if (bytes < 2 * G) {
duke@435 360 return true;
duke@435 361 }
duke@435 362
duke@435 363 char* addr = reserve_memory(bytes, NULL);
duke@435 364
duke@435 365 if (addr != NULL) {
duke@435 366 release_memory(addr, bytes);
duke@435 367 }
duke@435 368
duke@435 369 return addr != NULL;
duke@435 370 #endif // AMD64
duke@435 371
duke@435 372 }
duke@435 373
duke@435 374 extern "C" void Fetch32PFI () ;
duke@435 375 extern "C" void Fetch32Resume () ;
duke@435 376 #ifdef AMD64
duke@435 377 extern "C" void FetchNPFI () ;
duke@435 378 extern "C" void FetchNResume () ;
duke@435 379 #endif // AMD64
duke@435 380
coleenp@2507 381 extern "C" JNIEXPORT int
coleenp@2507 382 JVM_handle_solaris_signal(int sig, siginfo_t* info, void* ucVoid,
coleenp@2507 383 int abort_if_unrecognized) {
duke@435 384 ucontext_t* uc = (ucontext_t*) ucVoid;
duke@435 385
duke@435 386 #ifndef AMD64
duke@435 387 if (sig == SIGILL && info->si_addr == (caddr_t)sse_check) {
duke@435 388 // the SSE instruction faulted. supports_sse() need return false.
duke@435 389 uc->uc_mcontext.gregs[EIP] = (greg_t)sse_unavailable;
duke@435 390 return true;
duke@435 391 }
duke@435 392 #endif // !AMD64
duke@435 393
duke@435 394 Thread* t = ThreadLocalStorage::get_thread_slow(); // slow & steady
duke@435 395
duke@435 396 SignalHandlerMark shm(t);
duke@435 397
duke@435 398 if(sig == SIGPIPE || sig == SIGXFSZ) {
duke@435 399 if (os::Solaris::chained_handler(sig, info, ucVoid)) {
duke@435 400 return true;
duke@435 401 } else {
duke@435 402 if (PrintMiscellaneous && (WizardMode || Verbose)) {
duke@435 403 char buf[64];
duke@435 404 warning("Ignoring %s - see 4229104 or 6499219",
duke@435 405 os::exception_name(sig, buf, sizeof(buf)));
duke@435 406
duke@435 407 }
duke@435 408 return true;
duke@435 409 }
duke@435 410 }
duke@435 411
duke@435 412 JavaThread* thread = NULL;
duke@435 413 VMThread* vmthread = NULL;
duke@435 414
duke@435 415 if (os::Solaris::signal_handlers_are_installed) {
duke@435 416 if (t != NULL ){
duke@435 417 if(t->is_Java_thread()) {
duke@435 418 thread = (JavaThread*)t;
duke@435 419 }
duke@435 420 else if(t->is_VM_thread()){
duke@435 421 vmthread = (VMThread *)t;
duke@435 422 }
duke@435 423 }
duke@435 424 }
duke@435 425
duke@435 426 guarantee(sig != os::Solaris::SIGinterrupt(), "Can not chain VM interrupt signal, try -XX:+UseAltSigs");
duke@435 427
duke@435 428 if (sig == os::Solaris::SIGasync()) {
duke@435 429 if(thread){
duke@435 430 OSThread::InterruptArguments args(thread, uc);
duke@435 431 thread->osthread()->do_interrupt_callbacks_at_interrupt(&args);
duke@435 432 return true;
duke@435 433 }
duke@435 434 else if(vmthread){
duke@435 435 OSThread::InterruptArguments args(vmthread, uc);
duke@435 436 vmthread->osthread()->do_interrupt_callbacks_at_interrupt(&args);
duke@435 437 return true;
duke@435 438 } else if (os::Solaris::chained_handler(sig, info, ucVoid)) {
duke@435 439 return true;
duke@435 440 } else {
duke@435 441 // If os::Solaris::SIGasync not chained, and this is a non-vm and
duke@435 442 // non-java thread
duke@435 443 return true;
duke@435 444 }
duke@435 445 }
duke@435 446
duke@435 447 if (info == NULL || info->si_code <= 0 || info->si_code == SI_NOINFO) {
duke@435 448 // can't decode this kind of signal
duke@435 449 info = NULL;
duke@435 450 } else {
duke@435 451 assert(sig == info->si_signo, "bad siginfo");
duke@435 452 }
duke@435 453
duke@435 454 // decide if this trap can be handled by a stub
duke@435 455 address stub = NULL;
duke@435 456
duke@435 457 address pc = NULL;
duke@435 458
duke@435 459 //%note os_trap_1
duke@435 460 if (info != NULL && uc != NULL && thread != NULL) {
duke@435 461 // factor me: getPCfromContext
duke@435 462 pc = (address) uc->uc_mcontext.gregs[REG_PC];
duke@435 463
duke@435 464 // SafeFetch32() support
duke@435 465 if (pc == (address) Fetch32PFI) {
duke@435 466 uc->uc_mcontext.gregs[REG_PC] = intptr_t(Fetch32Resume) ;
duke@435 467 return true ;
duke@435 468 }
duke@435 469 #ifdef AMD64
duke@435 470 if (pc == (address) FetchNPFI) {
duke@435 471 uc->uc_mcontext.gregs [REG_PC] = intptr_t(FetchNResume) ;
duke@435 472 return true ;
duke@435 473 }
duke@435 474 #endif // AMD64
duke@435 475
duke@435 476 // Handle ALL stack overflow variations here
duke@435 477 if (sig == SIGSEGV && info->si_code == SEGV_ACCERR) {
duke@435 478 address addr = (address) info->si_addr;
duke@435 479 if (thread->in_stack_yellow_zone(addr)) {
duke@435 480 thread->disable_stack_yellow_zone();
duke@435 481 if (thread->thread_state() == _thread_in_Java) {
duke@435 482 // Throw a stack overflow exception. Guard pages will be reenabled
duke@435 483 // while unwinding the stack.
duke@435 484 stub = SharedRuntime::continuation_for_implicit_exception(thread, pc, SharedRuntime::STACK_OVERFLOW);
duke@435 485 } else {
duke@435 486 // Thread was in the vm or native code. Return and try to finish.
duke@435 487 return true;
duke@435 488 }
duke@435 489 } else if (thread->in_stack_red_zone(addr)) {
duke@435 490 // Fatal red zone violation. Disable the guard pages and fall through
duke@435 491 // to handle_unexpected_exception way down below.
duke@435 492 thread->disable_stack_red_zone();
duke@435 493 tty->print_raw_cr("An irrecoverable stack overflow has occurred.");
duke@435 494 }
duke@435 495 }
duke@435 496
duke@435 497 if (thread->thread_state() == _thread_in_vm) {
duke@435 498 if (sig == SIGBUS && info->si_code == BUS_OBJERR && thread->doing_unsafe_access()) {
duke@435 499 stub = StubRoutines::handler_for_unsafe_access();
duke@435 500 }
duke@435 501 }
duke@435 502
duke@435 503 if (thread->thread_state() == _thread_in_Java) {
duke@435 504 // Support Safepoint Polling
duke@435 505 if ( sig == SIGSEGV && os::is_poll_address((address)info->si_addr)) {
duke@435 506 stub = SharedRuntime::get_poll_stub(pc);
duke@435 507 }
duke@435 508 else if (sig == SIGBUS && info->si_code == BUS_OBJERR) {
duke@435 509 // BugId 4454115: A read from a MappedByteBuffer can fault
duke@435 510 // here if the underlying file has been truncated.
duke@435 511 // Do not crash the VM in such a case.
duke@435 512 CodeBlob* cb = CodeCache::find_blob_unsafe(pc);
duke@435 513 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL;
duke@435 514 if (nm != NULL && nm->has_unsafe_access()) {
duke@435 515 stub = StubRoutines::handler_for_unsafe_access();
duke@435 516 }
duke@435 517 }
duke@435 518 else
duke@435 519 if (sig == SIGFPE && info->si_code == FPE_INTDIV) {
duke@435 520 // integer divide by zero
duke@435 521 stub = SharedRuntime::continuation_for_implicit_exception(thread, pc, SharedRuntime::IMPLICIT_DIVIDE_BY_ZERO);
duke@435 522 }
duke@435 523 #ifndef AMD64
duke@435 524 else if (sig == SIGFPE && info->si_code == FPE_FLTDIV) {
duke@435 525 // floating-point divide by zero
duke@435 526 stub = SharedRuntime::continuation_for_implicit_exception(thread, pc, SharedRuntime::IMPLICIT_DIVIDE_BY_ZERO);
duke@435 527 }
duke@435 528 else if (sig == SIGFPE && info->si_code == FPE_FLTINV) {
duke@435 529 // The encoding of D2I in i486.ad can cause an exception prior
duke@435 530 // to the fist instruction if there was an invalid operation
duke@435 531 // pending. We want to dismiss that exception. From the win_32
duke@435 532 // side it also seems that if it really was the fist causing
duke@435 533 // the exception that we do the d2i by hand with different
duke@435 534 // rounding. Seems kind of weird. QQQ TODO
duke@435 535 // Note that we take the exception at the NEXT floating point instruction.
duke@435 536 if (pc[0] == 0xDB) {
duke@435 537 assert(pc[0] == 0xDB, "not a FIST opcode");
duke@435 538 assert(pc[1] == 0x14, "not a FIST opcode");
duke@435 539 assert(pc[2] == 0x24, "not a FIST opcode");
duke@435 540 return true;
duke@435 541 } else {
duke@435 542 assert(pc[-3] == 0xDB, "not an flt invalid opcode");
duke@435 543 assert(pc[-2] == 0x14, "not an flt invalid opcode");
duke@435 544 assert(pc[-1] == 0x24, "not an flt invalid opcode");
duke@435 545 }
duke@435 546 }
duke@435 547 else if (sig == SIGFPE ) {
duke@435 548 tty->print_cr("caught SIGFPE, info 0x%x.", info->si_code);
duke@435 549 }
duke@435 550 #endif // !AMD64
duke@435 551
duke@435 552 // QQQ It doesn't seem that we need to do this on x86 because we should be able
duke@435 553 // to return properly from the handler without this extra stuff on the back side.
duke@435 554
duke@435 555 else if (sig == SIGSEGV && info->si_code > 0 && !MacroAssembler::needs_explicit_null_check((intptr_t)info->si_addr)) {
duke@435 556 // Determination of interpreter/vtable stub/compiled code null exception
duke@435 557 stub = SharedRuntime::continuation_for_implicit_exception(thread, pc, SharedRuntime::IMPLICIT_NULL);
duke@435 558 }
duke@435 559 }
duke@435 560
duke@435 561 // jni_fast_Get<Primitive>Field can trap at certain pc's if a GC kicks in
duke@435 562 // and the heap gets shrunk before the field access.
duke@435 563 if ((sig == SIGSEGV) || (sig == SIGBUS)) {
duke@435 564 address addr = JNI_FastGetField::find_slowcase_pc(pc);
duke@435 565 if (addr != (address)-1) {
duke@435 566 stub = addr;
duke@435 567 }
duke@435 568 }
duke@435 569
duke@435 570 // Check to see if we caught the safepoint code in the
duke@435 571 // process of write protecting the memory serialization page.
duke@435 572 // It write enables the page immediately after protecting it
duke@435 573 // so we can just return to retry the write.
duke@435 574 if ((sig == SIGSEGV) &&
duke@435 575 os::is_memory_serialize_page(thread, (address)info->si_addr)) {
duke@435 576 // Block current thread until the memory serialize page permission restored.
duke@435 577 os::block_on_serialize_page_trap();
duke@435 578 return true;
duke@435 579 }
duke@435 580 }
duke@435 581
duke@435 582 // Execution protection violation
duke@435 583 //
duke@435 584 // Preventative code for future versions of Solaris which may
duke@435 585 // enable execution protection when running the 32-bit VM on AMD64.
duke@435 586 //
duke@435 587 // This should be kept as the last step in the triage. We don't
duke@435 588 // have a dedicated trap number for a no-execute fault, so be
duke@435 589 // conservative and allow other handlers the first shot.
duke@435 590 //
duke@435 591 // Note: We don't test that info->si_code == SEGV_ACCERR here.
duke@435 592 // this si_code is so generic that it is almost meaningless; and
duke@435 593 // the si_code for this condition may change in the future.
duke@435 594 // Furthermore, a false-positive should be harmless.
duke@435 595 if (UnguardOnExecutionViolation > 0 &&
duke@435 596 (sig == SIGSEGV || sig == SIGBUS) &&
duke@435 597 uc->uc_mcontext.gregs[TRAPNO] == T_PGFLT) { // page fault
duke@435 598 int page_size = os::vm_page_size();
duke@435 599 address addr = (address) info->si_addr;
duke@435 600 address pc = (address) uc->uc_mcontext.gregs[REG_PC];
duke@435 601 // Make sure the pc and the faulting address are sane.
duke@435 602 //
duke@435 603 // If an instruction spans a page boundary, and the page containing
duke@435 604 // the beginning of the instruction is executable but the following
duke@435 605 // page is not, the pc and the faulting address might be slightly
duke@435 606 // different - we still want to unguard the 2nd page in this case.
duke@435 607 //
duke@435 608 // 15 bytes seems to be a (very) safe value for max instruction size.
duke@435 609 bool pc_is_near_addr =
duke@435 610 (pointer_delta((void*) addr, (void*) pc, sizeof(char)) < 15);
duke@435 611 bool instr_spans_page_boundary =
duke@435 612 (align_size_down((intptr_t) pc ^ (intptr_t) addr,
duke@435 613 (intptr_t) page_size) > 0);
duke@435 614
duke@435 615 if (pc == addr || (pc_is_near_addr && instr_spans_page_boundary)) {
duke@435 616 static volatile address last_addr =
duke@435 617 (address) os::non_memory_address_word();
duke@435 618
duke@435 619 // In conservative mode, don't unguard unless the address is in the VM
duke@435 620 if (addr != last_addr &&
duke@435 621 (UnguardOnExecutionViolation > 1 || os::address_is_in_vm(addr))) {
duke@435 622
coleenp@912 623 // Make memory rwx and retry
duke@435 624 address page_start =
duke@435 625 (address) align_size_down((intptr_t) addr, (intptr_t) page_size);
coleenp@912 626 bool res = os::protect_memory((char*) page_start, page_size,
coleenp@912 627 os::MEM_PROT_RWX);
duke@435 628
duke@435 629 if (PrintMiscellaneous && Verbose) {
duke@435 630 char buf[256];
duke@435 631 jio_snprintf(buf, sizeof(buf), "Execution protection violation "
duke@435 632 "at " INTPTR_FORMAT
duke@435 633 ", unguarding " INTPTR_FORMAT ": %s, errno=%d", addr,
duke@435 634 page_start, (res ? "success" : "failed"), errno);
duke@435 635 tty->print_raw_cr(buf);
duke@435 636 }
duke@435 637 stub = pc;
duke@435 638
duke@435 639 // Set last_addr so if we fault again at the same address, we don't end
duke@435 640 // up in an endless loop.
duke@435 641 //
duke@435 642 // There are two potential complications here. Two threads trapping at
duke@435 643 // the same address at the same time could cause one of the threads to
duke@435 644 // think it already unguarded, and abort the VM. Likely very rare.
duke@435 645 //
duke@435 646 // The other race involves two threads alternately trapping at
duke@435 647 // different addresses and failing to unguard the page, resulting in
duke@435 648 // an endless loop. This condition is probably even more unlikely than
duke@435 649 // the first.
duke@435 650 //
duke@435 651 // Although both cases could be avoided by using locks or thread local
duke@435 652 // last_addr, these solutions are unnecessary complication: this
duke@435 653 // handler is a best-effort safety net, not a complete solution. It is
duke@435 654 // disabled by default and should only be used as a workaround in case
duke@435 655 // we missed any no-execute-unsafe VM code.
duke@435 656
duke@435 657 last_addr = addr;
duke@435 658 }
duke@435 659 }
duke@435 660 }
duke@435 661
duke@435 662 if (stub != NULL) {
duke@435 663 // save all thread context in case we need to restore it
duke@435 664
duke@435 665 if (thread != NULL) thread->set_saved_exception_pc(pc);
duke@435 666 // 12/02/99: On Sparc it appears that the full context is also saved
duke@435 667 // but as yet, no one looks at or restores that saved context
duke@435 668 // factor me: setPC
duke@435 669 uc->uc_mcontext.gregs[REG_PC] = (greg_t)stub;
duke@435 670 return true;
duke@435 671 }
duke@435 672
duke@435 673 // signal-chaining
duke@435 674 if (os::Solaris::chained_handler(sig, info, ucVoid)) {
duke@435 675 return true;
duke@435 676 }
duke@435 677
duke@435 678 #ifndef AMD64
duke@435 679 // Workaround (bug 4900493) for Solaris kernel bug 4966651.
duke@435 680 // Handle an undefined selector caused by an attempt to assign
duke@435 681 // fs in libthread getipriptr(). With the current libthread design every 512
duke@435 682 // thread creations the LDT for a private thread data structure is extended
duke@435 683 // and thre is a hazard that and another thread attempting a thread creation
duke@435 684 // will use a stale LDTR that doesn't reflect the structure's growth,
duke@435 685 // causing a GP fault.
duke@435 686 // Enforce the probable limit of passes through here to guard against an
duke@435 687 // infinite loop if some other move to fs caused the GP fault. Note that
duke@435 688 // this loop counter is ultimately a heuristic as it is possible for
duke@435 689 // more than one thread to generate this fault at a time in an MP system.
duke@435 690 // In the case of the loop count being exceeded or if the poll fails
duke@435 691 // just fall through to a fatal error.
duke@435 692 // If there is some other source of T_GPFLT traps and the text at EIP is
duke@435 693 // unreadable this code will loop infinitely until the stack is exausted.
duke@435 694 // The key to diagnosis in this case is to look for the bottom signal handler
duke@435 695 // frame.
duke@435 696
duke@435 697 if(! IgnoreLibthreadGPFault) {
duke@435 698 if (sig == SIGSEGV && uc->uc_mcontext.gregs[TRAPNO] == T_GPFLT) {
duke@435 699 const unsigned char *p =
duke@435 700 (unsigned const char *) uc->uc_mcontext.gregs[EIP];
duke@435 701
duke@435 702 // Expected instruction?
duke@435 703
duke@435 704 if(p[0] == movlfs[0] && p[1] == movlfs[1]) {
duke@435 705
duke@435 706 Atomic::inc(&ldtr_refresh);
duke@435 707
duke@435 708 // Infinite loop?
duke@435 709
duke@435 710 if(ldtr_refresh < ((2 << 16) / PAGESIZE)) {
duke@435 711
duke@435 712 // No, force scheduling to get a fresh view of the LDTR
duke@435 713
duke@435 714 if(poll(NULL, 0, 10) == 0) {
duke@435 715
duke@435 716 // Retry the move
duke@435 717
duke@435 718 return false;
duke@435 719 }
duke@435 720 }
duke@435 721 }
duke@435 722 }
duke@435 723 }
duke@435 724 #endif // !AMD64
duke@435 725
duke@435 726 if (!abort_if_unrecognized) {
duke@435 727 // caller wants another chance, so give it to him
duke@435 728 return false;
duke@435 729 }
duke@435 730
duke@435 731 if (!os::Solaris::libjsig_is_loaded) {
duke@435 732 struct sigaction oldAct;
duke@435 733 sigaction(sig, (struct sigaction *)0, &oldAct);
duke@435 734 if (oldAct.sa_sigaction != signalHandler) {
duke@435 735 void* sighand = oldAct.sa_sigaction ? CAST_FROM_FN_PTR(void*, oldAct.sa_sigaction)
duke@435 736 : CAST_FROM_FN_PTR(void*, oldAct.sa_handler);
twisti@1040 737 warning("Unexpected Signal %d occurred under user-defined signal handler %#lx", sig, (long)sighand);
duke@435 738 }
duke@435 739 }
duke@435 740
duke@435 741 if (pc == NULL && uc != NULL) {
duke@435 742 pc = (address) uc->uc_mcontext.gregs[REG_PC];
duke@435 743 }
duke@435 744
duke@435 745 // unmask current signal
duke@435 746 sigset_t newset;
duke@435 747 sigemptyset(&newset);
duke@435 748 sigaddset(&newset, sig);
duke@435 749 sigprocmask(SIG_UNBLOCK, &newset, NULL);
duke@435 750
coleenp@2418 751 // Determine which sort of error to throw. Out of swap may signal
coleenp@2418 752 // on the thread stack, which could get a mapping error when touched.
coleenp@2418 753 address addr = (address) info->si_addr;
coleenp@2418 754 if (sig == SIGBUS && info->si_code == BUS_OBJERR && info->si_errno == ENOMEM) {
coleenp@2418 755 vm_exit_out_of_memory(0, "Out of swap space to map in thread stack.");
coleenp@2418 756 }
coleenp@2418 757
duke@435 758 VMError err(t, sig, pc, info, ucVoid);
duke@435 759 err.report_and_die();
duke@435 760
duke@435 761 ShouldNotReachHere();
duke@435 762 }
duke@435 763
duke@435 764 void os::print_context(outputStream *st, void *context) {
duke@435 765 if (context == NULL) return;
duke@435 766
duke@435 767 ucontext_t *uc = (ucontext_t*)context;
duke@435 768 st->print_cr("Registers:");
duke@435 769 #ifdef AMD64
duke@435 770 st->print( "RAX=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RAX]);
duke@435 771 st->print(", RBX=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RBX]);
duke@435 772 st->print(", RCX=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RCX]);
duke@435 773 st->print(", RDX=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RDX]);
duke@435 774 st->cr();
duke@435 775 st->print( "RSP=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RSP]);
duke@435 776 st->print(", RBP=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RBP]);
duke@435 777 st->print(", RSI=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RSI]);
duke@435 778 st->print(", RDI=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RDI]);
duke@435 779 st->cr();
never@2262 780 st->print( "R8 =" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_R8]);
never@2262 781 st->print(", R9 =" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_R9]);
duke@435 782 st->print(", R10=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_R10]);
duke@435 783 st->print(", R11=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_R11]);
never@1685 784 st->cr();
never@1685 785 st->print( "R12=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_R12]);
duke@435 786 st->print(", R13=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_R13]);
duke@435 787 st->print(", R14=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_R14]);
duke@435 788 st->print(", R15=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_R15]);
duke@435 789 st->cr();
duke@435 790 st->print( "RIP=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RIP]);
duke@435 791 st->print(", RFLAGS=" INTPTR_FORMAT, uc->uc_mcontext.gregs[REG_RFL]);
duke@435 792 #else
duke@435 793 st->print( "EAX=" INTPTR_FORMAT, uc->uc_mcontext.gregs[EAX]);
duke@435 794 st->print(", EBX=" INTPTR_FORMAT, uc->uc_mcontext.gregs[EBX]);
duke@435 795 st->print(", ECX=" INTPTR_FORMAT, uc->uc_mcontext.gregs[ECX]);
duke@435 796 st->print(", EDX=" INTPTR_FORMAT, uc->uc_mcontext.gregs[EDX]);
duke@435 797 st->cr();
duke@435 798 st->print( "ESP=" INTPTR_FORMAT, uc->uc_mcontext.gregs[UESP]);
duke@435 799 st->print(", EBP=" INTPTR_FORMAT, uc->uc_mcontext.gregs[EBP]);
duke@435 800 st->print(", ESI=" INTPTR_FORMAT, uc->uc_mcontext.gregs[ESI]);
duke@435 801 st->print(", EDI=" INTPTR_FORMAT, uc->uc_mcontext.gregs[EDI]);
duke@435 802 st->cr();
duke@435 803 st->print( "EIP=" INTPTR_FORMAT, uc->uc_mcontext.gregs[EIP]);
duke@435 804 st->print(", EFLAGS=" INTPTR_FORMAT, uc->uc_mcontext.gregs[EFL]);
duke@435 805 #endif // AMD64
duke@435 806 st->cr();
duke@435 807 st->cr();
duke@435 808
duke@435 809 intptr_t *sp = (intptr_t *)os::Solaris::ucontext_get_sp(uc);
duke@435 810 st->print_cr("Top of Stack: (sp=" PTR_FORMAT ")", sp);
duke@435 811 print_hex_dump(st, (address)sp, (address)(sp + 8*sizeof(intptr_t)), sizeof(intptr_t));
duke@435 812 st->cr();
duke@435 813
duke@435 814 // Note: it may be unsafe to inspect memory near pc. For example, pc may
duke@435 815 // point to garbage if entry point in an nmethod is corrupted. Leave
duke@435 816 // this at the end, and hope for the best.
duke@435 817 ExtendedPC epc = os::Solaris::ucontext_get_ExtendedPC(uc);
duke@435 818 address pc = epc.pc();
duke@435 819 st->print_cr("Instructions: (pc=" PTR_FORMAT ")", pc);
never@2262 820 print_hex_dump(st, pc - 32, pc + 32, sizeof(char));
never@2262 821 }
never@2262 822
never@2262 823 void os::print_register_info(outputStream *st, void *context) {
never@2262 824 if (context == NULL) return;
never@2262 825
never@2262 826 ucontext_t *uc = (ucontext_t*)context;
never@2262 827
never@2262 828 st->print_cr("Register to memory mapping:");
never@2262 829 st->cr();
never@2262 830
never@2262 831 // this is horrendously verbose but the layout of the registers in the
never@2262 832 // context does not match how we defined our abstract Register set, so
never@2262 833 // we can't just iterate through the gregs area
never@2262 834
never@2262 835 // this is only for the "general purpose" registers
never@2262 836
never@2262 837 #ifdef AMD64
never@2262 838 st->print("RAX="); print_location(st, uc->uc_mcontext.gregs[REG_RAX]);
never@2262 839 st->print("RBX="); print_location(st, uc->uc_mcontext.gregs[REG_RBX]);
never@2262 840 st->print("RCX="); print_location(st, uc->uc_mcontext.gregs[REG_RCX]);
never@2262 841 st->print("RDX="); print_location(st, uc->uc_mcontext.gregs[REG_RDX]);
never@2262 842 st->print("RSP="); print_location(st, uc->uc_mcontext.gregs[REG_RSP]);
never@2262 843 st->print("RBP="); print_location(st, uc->uc_mcontext.gregs[REG_RBP]);
never@2262 844 st->print("RSI="); print_location(st, uc->uc_mcontext.gregs[REG_RSI]);
never@2262 845 st->print("RDI="); print_location(st, uc->uc_mcontext.gregs[REG_RDI]);
never@2262 846 st->print("R8 ="); print_location(st, uc->uc_mcontext.gregs[REG_R8]);
never@2262 847 st->print("R9 ="); print_location(st, uc->uc_mcontext.gregs[REG_R9]);
never@2262 848 st->print("R10="); print_location(st, uc->uc_mcontext.gregs[REG_R10]);
never@2262 849 st->print("R11="); print_location(st, uc->uc_mcontext.gregs[REG_R11]);
never@2262 850 st->print("R12="); print_location(st, uc->uc_mcontext.gregs[REG_R12]);
never@2262 851 st->print("R13="); print_location(st, uc->uc_mcontext.gregs[REG_R13]);
never@2262 852 st->print("R14="); print_location(st, uc->uc_mcontext.gregs[REG_R14]);
never@2262 853 st->print("R15="); print_location(st, uc->uc_mcontext.gregs[REG_R15]);
never@2262 854 #else
never@2262 855 st->print("EAX="); print_location(st, uc->uc_mcontext.gregs[EAX]);
never@2262 856 st->print("EBX="); print_location(st, uc->uc_mcontext.gregs[EBX]);
never@2262 857 st->print("ECX="); print_location(st, uc->uc_mcontext.gregs[ECX]);
never@2262 858 st->print("EDX="); print_location(st, uc->uc_mcontext.gregs[EDX]);
never@2262 859 st->print("ESP="); print_location(st, uc->uc_mcontext.gregs[UESP]);
never@2262 860 st->print("EBP="); print_location(st, uc->uc_mcontext.gregs[EBP]);
never@2262 861 st->print("ESI="); print_location(st, uc->uc_mcontext.gregs[ESI]);
never@2262 862 st->print("EDI="); print_location(st, uc->uc_mcontext.gregs[EDI]);
never@2262 863 #endif
never@2262 864
never@2262 865 st->cr();
duke@435 866 }
duke@435 867
bobv@2036 868
duke@435 869 #ifdef AMD64
duke@435 870 void os::Solaris::init_thread_fpu_state(void) {
duke@435 871 // Nothing to do
duke@435 872 }
duke@435 873 #else
duke@435 874 // From solaris_i486.s
duke@435 875 extern "C" void fixcw();
duke@435 876
duke@435 877 void os::Solaris::init_thread_fpu_state(void) {
duke@435 878 // Set fpu to 53 bit precision. This happens too early to use a stub.
duke@435 879 fixcw();
duke@435 880 }
duke@435 881
duke@435 882 // These routines are the initial value of atomic_xchg_entry(),
duke@435 883 // atomic_cmpxchg_entry(), atomic_inc_entry() and fence_entry()
duke@435 884 // until initialization is complete.
duke@435 885 // TODO - replace with .il implementation when compiler supports it.
duke@435 886
duke@435 887 typedef jint xchg_func_t (jint, volatile jint*);
duke@435 888 typedef jint cmpxchg_func_t (jint, volatile jint*, jint);
duke@435 889 typedef jlong cmpxchg_long_func_t(jlong, volatile jlong*, jlong);
duke@435 890 typedef jint add_func_t (jint, volatile jint*);
duke@435 891
duke@435 892 jint os::atomic_xchg_bootstrap(jint exchange_value, volatile jint* dest) {
duke@435 893 // try to use the stub:
duke@435 894 xchg_func_t* func = CAST_TO_FN_PTR(xchg_func_t*, StubRoutines::atomic_xchg_entry());
duke@435 895
duke@435 896 if (func != NULL) {
duke@435 897 os::atomic_xchg_func = func;
duke@435 898 return (*func)(exchange_value, dest);
duke@435 899 }
duke@435 900 assert(Threads::number_of_threads() == 0, "for bootstrap only");
duke@435 901
duke@435 902 jint old_value = *dest;
duke@435 903 *dest = exchange_value;
duke@435 904 return old_value;
duke@435 905 }
duke@435 906
duke@435 907 jint os::atomic_cmpxchg_bootstrap(jint exchange_value, volatile jint* dest, jint compare_value) {
duke@435 908 // try to use the stub:
duke@435 909 cmpxchg_func_t* func = CAST_TO_FN_PTR(cmpxchg_func_t*, StubRoutines::atomic_cmpxchg_entry());
duke@435 910
duke@435 911 if (func != NULL) {
duke@435 912 os::atomic_cmpxchg_func = func;
duke@435 913 return (*func)(exchange_value, dest, compare_value);
duke@435 914 }
duke@435 915 assert(Threads::number_of_threads() == 0, "for bootstrap only");
duke@435 916
duke@435 917 jint old_value = *dest;
duke@435 918 if (old_value == compare_value)
duke@435 919 *dest = exchange_value;
duke@435 920 return old_value;
duke@435 921 }
duke@435 922
duke@435 923 jlong os::atomic_cmpxchg_long_bootstrap(jlong exchange_value, volatile jlong* dest, jlong compare_value) {
duke@435 924 // try to use the stub:
duke@435 925 cmpxchg_long_func_t* func = CAST_TO_FN_PTR(cmpxchg_long_func_t*, StubRoutines::atomic_cmpxchg_long_entry());
duke@435 926
duke@435 927 if (func != NULL) {
duke@435 928 os::atomic_cmpxchg_long_func = func;
duke@435 929 return (*func)(exchange_value, dest, compare_value);
duke@435 930 }
duke@435 931 assert(Threads::number_of_threads() == 0, "for bootstrap only");
duke@435 932
duke@435 933 jlong old_value = *dest;
duke@435 934 if (old_value == compare_value)
duke@435 935 *dest = exchange_value;
duke@435 936 return old_value;
duke@435 937 }
duke@435 938
duke@435 939 jint os::atomic_add_bootstrap(jint add_value, volatile jint* dest) {
duke@435 940 // try to use the stub:
duke@435 941 add_func_t* func = CAST_TO_FN_PTR(add_func_t*, StubRoutines::atomic_add_entry());
duke@435 942
duke@435 943 if (func != NULL) {
duke@435 944 os::atomic_add_func = func;
duke@435 945 return (*func)(add_value, dest);
duke@435 946 }
duke@435 947 assert(Threads::number_of_threads() == 0, "for bootstrap only");
duke@435 948
duke@435 949 return (*dest) += add_value;
duke@435 950 }
duke@435 951
duke@435 952 xchg_func_t* os::atomic_xchg_func = os::atomic_xchg_bootstrap;
duke@435 953 cmpxchg_func_t* os::atomic_cmpxchg_func = os::atomic_cmpxchg_bootstrap;
duke@435 954 cmpxchg_long_func_t* os::atomic_cmpxchg_long_func = os::atomic_cmpxchg_long_bootstrap;
duke@435 955 add_func_t* os::atomic_add_func = os::atomic_add_bootstrap;
duke@435 956
zgu@1979 957 extern "C" void _solaris_raw_setup_fpu(address ptr);
duke@435 958 void os::setup_fpu() {
duke@435 959 address fpu_cntrl = StubRoutines::addr_fpu_cntrl_wrd_std();
duke@435 960 _solaris_raw_setup_fpu(fpu_cntrl);
duke@435 961 }
duke@435 962 #endif // AMD64
roland@3606 963
roland@3606 964 #ifndef PRODUCT
roland@3606 965 void os::verify_stack_alignment() {
roland@3606 966 #ifdef AMD64
roland@3606 967 assert(((intptr_t)os::current_stack_pointer() & (StackAlignmentInBytes-1)) == 0, "incorrect stack alignment");
roland@3606 968 #endif
roland@3606 969 }
roland@3606 970 #endif

mercurial