os_solaris_sparc.cpp revision 9867:3125c4a60cc9
1/*
2 * Copyright (c) 1999, 2014, 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// no precompiled headers
26#include "asm/macroAssembler.hpp"
27#include "macroAssembler_sparc.hpp"
28#include "classfile/classLoader.hpp"
29#include "classfile/systemDictionary.hpp"
30#include "classfile/vmSymbols.hpp"
31#include "code/codeCache.hpp"
32#include "code/icBuffer.hpp"
33#include "code/vtableStubs.hpp"
34#include "interpreter/interpreter.hpp"
35#include "jvm_solaris.h"
36#include "memory/allocation.inline.hpp"
37#include "mutex_solaris.inline.hpp"
38#include "nativeInst_sparc.hpp"
39#include "os_share_solaris.hpp"
40#include "prims/jniFastGetField.hpp"
41#include "prims/jvm.h"
42#include "prims/jvm_misc.hpp"
43#include "runtime/arguments.hpp"
44#include "runtime/extendedPC.hpp"
45#include "runtime/frame.inline.hpp"
46#include "runtime/interfaceSupport.hpp"
47#include "runtime/java.hpp"
48#include "runtime/javaCalls.hpp"
49#include "runtime/mutexLocker.hpp"
50#include "runtime/osThread.hpp"
51#include "runtime/sharedRuntime.hpp"
52#include "runtime/stubRoutines.hpp"
53#include "runtime/thread.inline.hpp"
54#include "runtime/timer.hpp"
55#include "utilities/events.hpp"
56#include "utilities/vmError.hpp"
57
58# include <signal.h>        // needed first to avoid name collision for "std" with SC 5.0
59
60// put OS-includes here
61# include <sys/types.h>
62# include <sys/mman.h>
63# include <pthread.h>
64# include <errno.h>
65# include <dlfcn.h>
66# include <stdio.h>
67# include <unistd.h>
68# include <sys/resource.h>
69# include <thread.h>
70# include <sys/stat.h>
71# include <sys/time.h>
72# include <sys/filio.h>
73# include <sys/utsname.h>
74# include <sys/systeminfo.h>
75# include <sys/socket.h>
76# include <sys/lwp.h>
77# include <pwd.h>
78# include <poll.h>
79# include <sys/lwp.h>
80
81# define _STRUCTURED_PROC 1  //  this gets us the new structured proc interfaces of 5.6 & later
82# include <sys/procfs.h>     //  see comment in <sys/procfs.h>
83
84#define MAX_PATH (2 * K)
85
86// Minimum stack size for the VM.  It's easier to document a constant
87// but it's different for x86 and sparc because the page sizes are different.
88#ifdef _LP64
89size_t os::Solaris::min_stack_allowed = 128*K;
90#else
91size_t os::Solaris::min_stack_allowed = 96*K;
92#endif
93
94int os::Solaris::max_register_window_saves_before_flushing() {
95  // We should detect this at run time. For now, filling
96  // in with a constant.
97  return 8;
98}
99
100static void handle_unflushed_register_windows(gwindows_t *win) {
101  int restore_count = win->wbcnt;
102  int i;
103
104  for(i=0; i<restore_count; i++) {
105    address sp = ((address)win->spbuf[i]) + STACK_BIAS;
106    address reg_win = (address)&win->wbuf[i];
107    memcpy(sp,reg_win,sizeof(struct rwindow));
108  }
109}
110
111char* os::non_memory_address_word() {
112  // Must never look like an address returned by reserve_memory,
113  // even in its subfields (as defined by the CPU immediate fields,
114  // if the CPU splits constants across multiple instructions).
115  // On SPARC, 0 != %hi(any real address), because there is no
116  // allocation in the first 1Kb of the virtual address space.
117  return (char*) 0;
118}
119
120// Validate a ucontext retrieved from walking a uc_link of a ucontext.
121// There are issues with libthread giving out uc_links for different threads
122// on the same uc_link chain and bad or circular links.
123//
124bool os::Solaris::valid_ucontext(Thread* thread, const ucontext_t* valid, const ucontext_t* suspect) {
125  if (valid >= suspect ||
126      valid->uc_stack.ss_flags != suspect->uc_stack.ss_flags ||
127      valid->uc_stack.ss_sp    != suspect->uc_stack.ss_sp    ||
128      valid->uc_stack.ss_size  != suspect->uc_stack.ss_size) {
129    DEBUG_ONLY(tty->print_cr("valid_ucontext: failed test 1");)
130    return false;
131  }
132
133  if (thread->is_Java_thread()) {
134    if (!valid_stack_address(thread, (address)suspect)) {
135      DEBUG_ONLY(tty->print_cr("valid_ucontext: uc_link not in thread stack");)
136      return false;
137    }
138    address _sp   = (address)((intptr_t)suspect->uc_mcontext.gregs[REG_SP] + STACK_BIAS);
139    if (!valid_stack_address(thread, _sp) ||
140        !frame::is_valid_stack_pointer(((JavaThread*)thread)->base_of_stack_pointer(), (intptr_t*)_sp)) {
141      DEBUG_ONLY(tty->print_cr("valid_ucontext: stackpointer not in thread stack");)
142      return false;
143    }
144  }
145  return true;
146}
147
148// We will only follow one level of uc_link since there are libthread
149// issues with ucontext linking and it is better to be safe and just
150// let caller retry later.
151const ucontext_t* os::Solaris::get_valid_uc_in_signal_handler(Thread *thread,
152  const ucontext_t *uc) {
153
154  const ucontext_t *retuc = NULL;
155
156  // Sometimes the topmost register windows are not properly flushed.
157  // i.e., if the kernel would have needed to take a page fault
158  if (uc != NULL && uc->uc_mcontext.gwins != NULL) {
159    ::handle_unflushed_register_windows(uc->uc_mcontext.gwins);
160  }
161
162  if (uc != NULL) {
163    if (uc->uc_link == NULL) {
164      // cannot validate without uc_link so accept current ucontext
165      retuc = uc;
166    } else if (os::Solaris::valid_ucontext(thread, uc, uc->uc_link)) {
167      // first ucontext is valid so try the next one
168      uc = uc->uc_link;
169      if (uc->uc_link == NULL) {
170        // cannot validate without uc_link so accept current ucontext
171        retuc = uc;
172      } else if (os::Solaris::valid_ucontext(thread, uc, uc->uc_link)) {
173        // the ucontext one level down is also valid so return it
174        retuc = uc;
175      }
176    }
177  }
178  return retuc;
179}
180
181// Assumes ucontext is valid
182ExtendedPC os::Solaris::ucontext_get_ExtendedPC(const ucontext_t *uc) {
183  address pc = (address)uc->uc_mcontext.gregs[REG_PC];
184  // set npc to zero to avoid using it for safepoint, good for profiling only
185  return ExtendedPC(pc);
186}
187
188void os::Solaris::ucontext_set_pc(ucontext_t* uc, address pc) {
189  uc->uc_mcontext.gregs [REG_PC]  = (greg_t) pc;
190  uc->uc_mcontext.gregs [REG_nPC] = (greg_t) (pc + 4);
191}
192
193// Assumes ucontext is valid
194intptr_t* os::Solaris::ucontext_get_sp(const ucontext_t *uc) {
195  return (intptr_t*)((intptr_t)uc->uc_mcontext.gregs[REG_SP] + STACK_BIAS);
196}
197
198// Solaris X86 only
199intptr_t* os::Solaris::ucontext_get_fp(const ucontext_t *uc) {
200  ShouldNotReachHere();
201  return NULL;
202}
203
204address os::Solaris::ucontext_get_pc(const ucontext_t *uc) {
205  return (address) uc->uc_mcontext.gregs[REG_PC];
206}
207
208
209// For Forte Analyzer AsyncGetCallTrace profiling support - thread
210// is currently interrupted by SIGPROF.
211//
212// ret_fp parameter is only used by Solaris X86.
213//
214// The difference between this and os::fetch_frame_from_context() is that
215// here we try to skip nested signal frames.
216// This method is also used for stack overflow signal handling.
217ExtendedPC os::Solaris::fetch_frame_from_ucontext(Thread* thread,
218  const ucontext_t* uc, intptr_t** ret_sp, intptr_t** ret_fp) {
219
220  assert(thread != NULL, "just checking");
221  assert(ret_sp != NULL, "just checking");
222  assert(ret_fp == NULL, "just checking");
223
224  const ucontext_t *luc = os::Solaris::get_valid_uc_in_signal_handler(thread, uc);
225
226  return os::fetch_frame_from_context(luc, ret_sp, ret_fp);
227}
228
229
230// ret_fp parameter is only used by Solaris X86.
231ExtendedPC os::fetch_frame_from_context(const void* ucVoid,
232                    intptr_t** ret_sp, intptr_t** ret_fp) {
233
234  ExtendedPC  epc;
235  const ucontext_t *uc = (const ucontext_t*)ucVoid;
236
237  if (uc != NULL) {
238    epc = os::Solaris::ucontext_get_ExtendedPC(uc);
239    if (ret_sp) *ret_sp = os::Solaris::ucontext_get_sp(uc);
240  } else {
241    // construct empty ExtendedPC for return value checking
242    epc = ExtendedPC(NULL);
243    if (ret_sp) *ret_sp = (intptr_t *)NULL;
244  }
245
246  return epc;
247}
248
249frame os::fetch_frame_from_context(const void* ucVoid) {
250  intptr_t* sp;
251  intptr_t* fp;
252  ExtendedPC epc = fetch_frame_from_context(ucVoid, &sp, &fp);
253  return frame(sp, frame::unpatchable, epc.pc());
254}
255
256frame os::fetch_frame_from_ucontext(Thread* thread, void* ucVoid) {
257  intptr_t* sp;
258  ExtendedPC epc = os::Solaris::fetch_frame_from_ucontext(thread, (ucontext_t*)ucVoid, &sp, NULL);
259  return frame(sp, frame::unpatchable, epc.pc());
260}
261
262bool os::Solaris::get_frame_at_stack_banging_point(JavaThread* thread, ucontext_t* uc, frame* fr) {
263  address pc = (address) os::Solaris::ucontext_get_pc(uc);
264  if (Interpreter::contains(pc)) {
265    *fr = os::fetch_frame_from_ucontext(thread, uc);
266    if (!fr->is_first_java_frame()) {
267      assert(fr->safe_for_sender(thread), "Safety check");
268      *fr = fr->java_sender();
269    }
270  } else {
271    // more complex code with compiled code
272    assert(!Interpreter::contains(pc), "Interpreted methods should have been handled above");
273    CodeBlob* cb = CodeCache::find_blob(pc);
274    if (cb == NULL || !cb->is_nmethod() || cb->is_frame_complete_at(pc)) {
275      // Not sure where the pc points to, fallback to default
276      // stack overflow handling
277      return false;
278    } else {
279      *fr = os::fetch_frame_from_ucontext(thread, uc);
280      *fr = frame(fr->sender_sp(), frame::unpatchable, fr->sender_pc());
281      if (!fr->is_java_frame()) {
282        assert(fr->safe_for_sender(thread), "Safety check");
283        *fr = fr->java_sender();
284      }
285    }
286  }
287  assert(fr->is_java_frame(), "Safety check");
288  return true;
289}
290
291frame os::get_sender_for_C_frame(frame* fr) {
292  return frame(fr->sender_sp(), frame::unpatchable, fr->sender_pc());
293}
294
295// Returns an estimate of the current stack pointer. Result must be guaranteed to
296// point into the calling threads stack, and be no lower than the current stack
297// pointer.
298address os::current_stack_pointer() {
299  volatile int dummy;
300  address sp = (address)&dummy + 8;     // %%%% need to confirm if this is right
301  return sp;
302}
303
304frame os::current_frame() {
305  intptr_t* sp = StubRoutines::Sparc::flush_callers_register_windows_func()();
306  frame myframe(sp, frame::unpatchable,
307                CAST_FROM_FN_PTR(address, os::current_frame));
308  if (os::is_first_C_frame(&myframe)) {
309    // stack is not walkable
310    return frame(NULL, NULL, false);
311  } else {
312    return os::get_sender_for_C_frame(&myframe);
313  }
314}
315
316bool os::is_allocatable(size_t bytes) {
317#ifdef _LP64
318   return true;
319#else
320   return (bytes <= (size_t)3835*M);
321#endif
322}
323
324extern "C" JNIEXPORT int
325JVM_handle_solaris_signal(int sig, siginfo_t* info, void* ucVoid,
326                          int abort_if_unrecognized) {
327  ucontext_t* uc = (ucontext_t*) ucVoid;
328
329  Thread* t = Thread::current_or_null_safe();
330
331  // Must do this before SignalHandlerMark, if crash protection installed we will longjmp away
332  // (no destructors can be run)
333  os::WatcherThreadCrashProtection::check_crash_protection(sig, t);
334
335  SignalHandlerMark shm(t);
336
337  if(sig == SIGPIPE || sig == SIGXFSZ) {
338    if (os::Solaris::chained_handler(sig, info, ucVoid)) {
339      return true;
340    } else {
341      if (PrintMiscellaneous && (WizardMode || Verbose)) {
342        char buf[64];
343        warning("Ignoring %s - see 4229104 or 6499219",
344                os::exception_name(sig, buf, sizeof(buf)));
345
346      }
347      return true;
348    }
349  }
350
351  JavaThread* thread = NULL;
352  VMThread* vmthread = NULL;
353  if (os::Solaris::signal_handlers_are_installed) {
354    if (t != NULL ){
355      if(t->is_Java_thread()) {
356        thread = (JavaThread*)t;
357      }
358      else if(t->is_VM_thread()){
359        vmthread = (VMThread *)t;
360      }
361    }
362  }
363
364  if (sig == os::Solaris::SIGasync()) {
365    if (thread || vmthread) {
366      OSThread::SR_handler(t, uc);
367      return true;
368    } else if (os::Solaris::chained_handler(sig, info, ucVoid)) {
369      return true;
370    } else {
371      // If os::Solaris::SIGasync not chained, and this is a non-vm and
372      // non-java thread
373      return true;
374    }
375  }
376
377  if (info == NULL || info->si_code <= 0 || info->si_code == SI_NOINFO) {
378    // can't decode this kind of signal
379    info = NULL;
380  } else {
381    assert(sig == info->si_signo, "bad siginfo");
382  }
383
384  // decide if this trap can be handled by a stub
385  address stub = NULL;
386
387  address pc          = NULL;
388  address npc         = NULL;
389
390  //%note os_trap_1
391  if (info != NULL && uc != NULL && thread != NULL) {
392    // factor me: getPCfromContext
393    pc  = (address) uc->uc_mcontext.gregs[REG_PC];
394    npc = (address) uc->uc_mcontext.gregs[REG_nPC];
395
396    // SafeFetch() support
397    if (StubRoutines::is_safefetch_fault(pc)) {
398      os::Solaris::ucontext_set_pc(uc, StubRoutines::continuation_for_safefetch_fault(pc));
399      return 1;
400    }
401
402    // Handle ALL stack overflow variations here
403    if (sig == SIGSEGV && info->si_code == SEGV_ACCERR) {
404      address addr = (address) info->si_addr;
405      if (thread->in_stack_yellow_reserved_zone(addr)) {
406        // Sometimes the register windows are not properly flushed.
407        if(uc->uc_mcontext.gwins != NULL) {
408          ::handle_unflushed_register_windows(uc->uc_mcontext.gwins);
409        }
410        if (thread->thread_state() == _thread_in_Java) {
411          if (thread->in_stack_reserved_zone(addr)) {
412            frame fr;
413            if (os::Solaris::get_frame_at_stack_banging_point(thread, uc, &fr)) {
414              assert(fr.is_java_frame(), "Must be a Java frame");
415              frame activation = SharedRuntime::look_for_reserved_stack_annotated_method(thread, fr);
416              if (activation.sp() != NULL) {
417                thread->disable_stack_reserved_zone();
418                RegisterMap map(thread);
419                int frame_size = activation.frame_size(&map);
420                thread->set_reserved_stack_activation((address)(((address)activation.sp()) - STACK_BIAS));
421                return true;
422              }
423            }
424          }
425          // Throw a stack overflow exception.  Guard pages will be reenabled
426          // while unwinding the stack.
427          thread->disable_stack_yellow_reserved_zone();
428          stub = SharedRuntime::continuation_for_implicit_exception(thread, pc, SharedRuntime::STACK_OVERFLOW);
429        } else {
430          // Thread was in the vm or native code.  Return and try to finish.
431          thread->disable_stack_yellow_reserved_zone();
432          return true;
433        }
434      } else if (thread->in_stack_red_zone(addr)) {
435        // Fatal red zone violation.  Disable the guard pages and fall through
436        // to handle_unexpected_exception way down below.
437        thread->disable_stack_red_zone();
438        tty->print_raw_cr("An irrecoverable stack overflow has occurred.");
439        // Sometimes the register windows are not properly flushed.
440        if(uc->uc_mcontext.gwins != NULL) {
441          ::handle_unflushed_register_windows(uc->uc_mcontext.gwins);
442        }
443      }
444    }
445
446
447    if (thread->thread_state() == _thread_in_vm) {
448      if (sig == SIGBUS && info->si_code == BUS_OBJERR && thread->doing_unsafe_access()) {
449        stub = StubRoutines::handler_for_unsafe_access();
450      }
451    }
452
453    else if (thread->thread_state() == _thread_in_Java) {
454      // Java thread running in Java code => find exception handler if any
455      // a fault inside compiled code, the interpreter, or a stub
456
457      // Support Safepoint Polling
458      if ( sig == SIGSEGV && (address)info->si_addr == os::get_polling_page() ) {
459        stub = SharedRuntime::get_poll_stub(pc);
460      }
461
462      // Not needed on x86 solaris because verify_oops doesn't generate
463      // SEGV/BUS like sparc does.
464      if ( (sig == SIGSEGV || sig == SIGBUS)
465           && pc >= MacroAssembler::_verify_oop_implicit_branch[0]
466           && pc <  MacroAssembler::_verify_oop_implicit_branch[1] ) {
467        stub     =  MacroAssembler::_verify_oop_implicit_branch[2];
468        warning("fixed up memory fault in +VerifyOops at address " INTPTR_FORMAT, info->si_addr);
469      }
470
471      // This is not factored because on x86 solaris the patching for
472      // zombies does not generate a SEGV.
473      else if (sig == SIGSEGV && nativeInstruction_at(pc)->is_zombie()) {
474        // zombie method (ld [%g0],%o7 instruction)
475        stub = SharedRuntime::get_handle_wrong_method_stub();
476
477        // At the stub it needs to look like a call from the caller of this
478        // method (not a call from the segv site).
479        pc = (address)uc->uc_mcontext.gregs[REG_O7];
480      }
481      else if (sig == SIGBUS && info->si_code == BUS_OBJERR) {
482        // BugId 4454115: A read from a MappedByteBuffer can fault
483        // here if the underlying file has been truncated.
484        // Do not crash the VM in such a case.
485        CodeBlob* cb = CodeCache::find_blob_unsafe(pc);
486        nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL;
487        if (nm != NULL && nm->has_unsafe_access()) {
488          stub = StubRoutines::handler_for_unsafe_access();
489        }
490      }
491
492      else if (sig == SIGFPE && info->si_code == FPE_INTDIV) {
493        // integer divide by zero
494        stub = SharedRuntime::continuation_for_implicit_exception(thread, pc, SharedRuntime::IMPLICIT_DIVIDE_BY_ZERO);
495      }
496      else if (sig == SIGFPE && info->si_code == FPE_FLTDIV) {
497        // floating-point divide by zero
498        stub = SharedRuntime::continuation_for_implicit_exception(thread, pc, SharedRuntime::IMPLICIT_DIVIDE_BY_ZERO);
499      }
500#ifdef COMPILER2
501      else if (sig == SIGILL && nativeInstruction_at(pc)->is_ic_miss_trap()) {
502#ifdef ASSERT
503  #ifdef TIERED
504        CodeBlob* cb = CodeCache::find_blob_unsafe(pc);
505        assert(cb->is_compiled_by_c2(), "Wrong compiler");
506  #endif // TIERED
507#endif // ASSERT
508        // Inline cache missed and user trap "Tne G0+ST_RESERVED_FOR_USER_0+2" taken.
509        stub = SharedRuntime::get_ic_miss_stub();
510        // At the stub it needs to look like a call from the caller of this
511        // method (not a call from the segv site).
512        pc = (address)uc->uc_mcontext.gregs[REG_O7];
513      }
514#endif  // COMPILER2
515
516      else if (sig == SIGSEGV && info->si_code > 0 && !MacroAssembler::needs_explicit_null_check((intptr_t)info->si_addr)) {
517        // Determination of interpreter/vtable stub/compiled code null exception
518        stub = SharedRuntime::continuation_for_implicit_exception(thread, pc, SharedRuntime::IMPLICIT_NULL);
519      }
520    }
521
522    // jni_fast_Get<Primitive>Field can trap at certain pc's if a GC kicks in
523    // and the heap gets shrunk before the field access.
524    if ((sig == SIGSEGV) || (sig == SIGBUS)) {
525      address addr = JNI_FastGetField::find_slowcase_pc(pc);
526      if (addr != (address)-1) {
527        stub = addr;
528      }
529    }
530
531    // Check to see if we caught the safepoint code in the
532    // process of write protecting the memory serialization page.
533    // It write enables the page immediately after protecting it
534    // so just return.
535    if ((sig == SIGSEGV) &&
536        os::is_memory_serialize_page(thread, (address)info->si_addr)) {
537      // Block current thread until the memory serialize page permission restored.
538      os::block_on_serialize_page_trap();
539      return true;
540    }
541  }
542
543  if (stub != NULL) {
544    // save all thread context in case we need to restore it
545
546    thread->set_saved_exception_pc(pc);
547    thread->set_saved_exception_npc(npc);
548
549    // simulate a branch to the stub (a "call" in the safepoint stub case)
550    // factor me: setPC
551    os::Solaris::ucontext_set_pc(uc, stub);
552
553#ifndef PRODUCT
554    if (TraceJumps) thread->record_jump(stub, NULL, __FILE__, __LINE__);
555#endif /* PRODUCT */
556
557    return true;
558  }
559
560  // signal-chaining
561  if (os::Solaris::chained_handler(sig, info, ucVoid)) {
562    return true;
563  }
564
565  if (!abort_if_unrecognized) {
566    // caller wants another chance, so give it to him
567    return false;
568  }
569
570  if (!os::Solaris::libjsig_is_loaded) {
571    struct sigaction oldAct;
572    sigaction(sig, (struct sigaction *)0, &oldAct);
573    if (oldAct.sa_sigaction != signalHandler) {
574      void* sighand = oldAct.sa_sigaction ? CAST_FROM_FN_PTR(void*, oldAct.sa_sigaction)
575                                          : CAST_FROM_FN_PTR(void*, oldAct.sa_handler);
576      warning("Unexpected Signal %d occurred under user-defined signal handler " INTPTR_FORMAT, sig, (intptr_t)sighand);
577    }
578  }
579
580  if (pc == NULL && uc != NULL) {
581    pc = (address) uc->uc_mcontext.gregs[REG_PC];
582  }
583
584  // Sometimes the register windows are not properly flushed.
585  if(uc->uc_mcontext.gwins != NULL) {
586    ::handle_unflushed_register_windows(uc->uc_mcontext.gwins);
587  }
588
589  // unmask current signal
590  sigset_t newset;
591  sigemptyset(&newset);
592  sigaddset(&newset, sig);
593  sigprocmask(SIG_UNBLOCK, &newset, NULL);
594
595  // Determine which sort of error to throw.  Out of swap may signal
596  // on the thread stack, which could get a mapping error when touched.
597  address addr = (address) info->si_addr;
598  if (sig == SIGBUS && info->si_code == BUS_OBJERR && info->si_errno == ENOMEM) {
599    vm_exit_out_of_memory(0, OOM_MMAP_ERROR, "Out of swap space to map in thread stack.");
600  }
601
602  VMError::report_and_die(t, sig, pc, info, ucVoid);
603
604  ShouldNotReachHere();
605  return false;
606}
607
608void os::print_context(outputStream *st, const void *context) {
609  if (context == NULL) return;
610
611  const ucontext_t *uc = (const ucontext_t*)context;
612  st->print_cr("Registers:");
613
614  st->print_cr(" G1=" INTPTR_FORMAT " G2=" INTPTR_FORMAT
615               " G3=" INTPTR_FORMAT " G4=" INTPTR_FORMAT,
616            uc->uc_mcontext.gregs[REG_G1],
617            uc->uc_mcontext.gregs[REG_G2],
618            uc->uc_mcontext.gregs[REG_G3],
619            uc->uc_mcontext.gregs[REG_G4]);
620  st->print_cr(" G5=" INTPTR_FORMAT " G6=" INTPTR_FORMAT
621               " G7=" INTPTR_FORMAT " Y=" INTPTR_FORMAT,
622            uc->uc_mcontext.gregs[REG_G5],
623            uc->uc_mcontext.gregs[REG_G6],
624            uc->uc_mcontext.gregs[REG_G7],
625            uc->uc_mcontext.gregs[REG_Y]);
626  st->print_cr(" O0=" INTPTR_FORMAT " O1=" INTPTR_FORMAT
627               " O2=" INTPTR_FORMAT " O3=" INTPTR_FORMAT,
628                 uc->uc_mcontext.gregs[REG_O0],
629                 uc->uc_mcontext.gregs[REG_O1],
630                 uc->uc_mcontext.gregs[REG_O2],
631                 uc->uc_mcontext.gregs[REG_O3]);
632  st->print_cr(" O4=" INTPTR_FORMAT " O5=" INTPTR_FORMAT
633               " O6=" INTPTR_FORMAT " O7=" INTPTR_FORMAT,
634            uc->uc_mcontext.gregs[REG_O4],
635            uc->uc_mcontext.gregs[REG_O5],
636            uc->uc_mcontext.gregs[REG_O6],
637            uc->uc_mcontext.gregs[REG_O7]);
638
639
640  intptr_t *sp = (intptr_t *)os::Solaris::ucontext_get_sp(uc);
641  st->print_cr(" L0=" INTPTR_FORMAT " L1=" INTPTR_FORMAT
642               " L2=" INTPTR_FORMAT " L3=" INTPTR_FORMAT,
643               sp[L0->sp_offset_in_saved_window()],
644               sp[L1->sp_offset_in_saved_window()],
645               sp[L2->sp_offset_in_saved_window()],
646               sp[L3->sp_offset_in_saved_window()]);
647  st->print_cr(" L4=" INTPTR_FORMAT " L5=" INTPTR_FORMAT
648               " L6=" INTPTR_FORMAT " L7=" INTPTR_FORMAT,
649               sp[L4->sp_offset_in_saved_window()],
650               sp[L5->sp_offset_in_saved_window()],
651               sp[L6->sp_offset_in_saved_window()],
652               sp[L7->sp_offset_in_saved_window()]);
653  st->print_cr(" I0=" INTPTR_FORMAT " I1=" INTPTR_FORMAT
654               " I2=" INTPTR_FORMAT " I3=" INTPTR_FORMAT,
655               sp[I0->sp_offset_in_saved_window()],
656               sp[I1->sp_offset_in_saved_window()],
657               sp[I2->sp_offset_in_saved_window()],
658               sp[I3->sp_offset_in_saved_window()]);
659  st->print_cr(" I4=" INTPTR_FORMAT " I5=" INTPTR_FORMAT
660               " I6=" INTPTR_FORMAT " I7=" INTPTR_FORMAT,
661               sp[I4->sp_offset_in_saved_window()],
662               sp[I5->sp_offset_in_saved_window()],
663               sp[I6->sp_offset_in_saved_window()],
664               sp[I7->sp_offset_in_saved_window()]);
665
666  st->print_cr(" PC=" INTPTR_FORMAT " nPC=" INTPTR_FORMAT,
667            uc->uc_mcontext.gregs[REG_PC],
668            uc->uc_mcontext.gregs[REG_nPC]);
669  st->cr();
670  st->cr();
671
672  st->print_cr("Top of Stack: (sp=" PTR_FORMAT ")", sp);
673  print_hex_dump(st, (address)sp, (address)(sp + 32), sizeof(intptr_t));
674  st->cr();
675
676  // Note: it may be unsafe to inspect memory near pc. For example, pc may
677  // point to garbage if entry point in an nmethod is corrupted. Leave
678  // this at the end, and hope for the best.
679  ExtendedPC epc = os::Solaris::ucontext_get_ExtendedPC(uc);
680  address pc = epc.pc();
681  st->print_cr("Instructions: (pc=" PTR_FORMAT ")", pc);
682  print_hex_dump(st, pc - 32, pc + 32, sizeof(char));
683}
684
685void os::print_register_info(outputStream *st, const void *context) {
686  if (context == NULL) return;
687
688  const ucontext_t *uc = (const ucontext_t*)context;
689  intptr_t *sp = (intptr_t *)os::Solaris::ucontext_get_sp(uc);
690
691  st->print_cr("Register to memory mapping:");
692  st->cr();
693
694  // this is only for the "general purpose" registers
695  st->print("G1="); print_location(st, uc->uc_mcontext.gregs[REG_G1]);
696  st->print("G2="); print_location(st, uc->uc_mcontext.gregs[REG_G2]);
697  st->print("G3="); print_location(st, uc->uc_mcontext.gregs[REG_G3]);
698  st->print("G4="); print_location(st, uc->uc_mcontext.gregs[REG_G4]);
699  st->print("G5="); print_location(st, uc->uc_mcontext.gregs[REG_G5]);
700  st->print("G6="); print_location(st, uc->uc_mcontext.gregs[REG_G6]);
701  st->print("G7="); print_location(st, uc->uc_mcontext.gregs[REG_G7]);
702  st->cr();
703
704  st->print("O0="); print_location(st, uc->uc_mcontext.gregs[REG_O0]);
705  st->print("O1="); print_location(st, uc->uc_mcontext.gregs[REG_O1]);
706  st->print("O2="); print_location(st, uc->uc_mcontext.gregs[REG_O2]);
707  st->print("O3="); print_location(st, uc->uc_mcontext.gregs[REG_O3]);
708  st->print("O4="); print_location(st, uc->uc_mcontext.gregs[REG_O4]);
709  st->print("O5="); print_location(st, uc->uc_mcontext.gregs[REG_O5]);
710  st->print("O6="); print_location(st, uc->uc_mcontext.gregs[REG_O6]);
711  st->print("O7="); print_location(st, uc->uc_mcontext.gregs[REG_O7]);
712  st->cr();
713
714  st->print("L0="); print_location(st, sp[L0->sp_offset_in_saved_window()]);
715  st->print("L1="); print_location(st, sp[L1->sp_offset_in_saved_window()]);
716  st->print("L2="); print_location(st, sp[L2->sp_offset_in_saved_window()]);
717  st->print("L3="); print_location(st, sp[L3->sp_offset_in_saved_window()]);
718  st->print("L4="); print_location(st, sp[L4->sp_offset_in_saved_window()]);
719  st->print("L5="); print_location(st, sp[L5->sp_offset_in_saved_window()]);
720  st->print("L6="); print_location(st, sp[L6->sp_offset_in_saved_window()]);
721  st->print("L7="); print_location(st, sp[L7->sp_offset_in_saved_window()]);
722  st->cr();
723
724  st->print("I0="); print_location(st, sp[I0->sp_offset_in_saved_window()]);
725  st->print("I1="); print_location(st, sp[I1->sp_offset_in_saved_window()]);
726  st->print("I2="); print_location(st, sp[I2->sp_offset_in_saved_window()]);
727  st->print("I3="); print_location(st, sp[I3->sp_offset_in_saved_window()]);
728  st->print("I4="); print_location(st, sp[I4->sp_offset_in_saved_window()]);
729  st->print("I5="); print_location(st, sp[I5->sp_offset_in_saved_window()]);
730  st->print("I6="); print_location(st, sp[I6->sp_offset_in_saved_window()]);
731  st->print("I7="); print_location(st, sp[I7->sp_offset_in_saved_window()]);
732  st->cr();
733}
734
735void os::Solaris::init_thread_fpu_state(void) {
736    // Nothing needed on Sparc.
737}
738
739#if !defined(COMPILER2) && !defined(_LP64)
740
741// These routines are the initial value of atomic_xchg_entry(),
742// atomic_cmpxchg_entry(), atomic_add_entry() and fence_entry()
743// until initialization is complete.
744// TODO - remove when the VM drops support for V8.
745
746typedef jint  xchg_func_t        (jint,  volatile jint*);
747typedef jint  cmpxchg_func_t     (jint,  volatile jint*,  jint);
748typedef jlong cmpxchg_long_func_t(jlong, volatile jlong*, jlong);
749typedef jint  add_func_t         (jint,  volatile jint*);
750
751jint os::atomic_xchg_bootstrap(jint exchange_value, volatile jint* dest) {
752  // try to use the stub:
753  xchg_func_t* func = CAST_TO_FN_PTR(xchg_func_t*, StubRoutines::atomic_xchg_entry());
754
755  if (func != NULL) {
756    os::atomic_xchg_func = func;
757    return (*func)(exchange_value, dest);
758  }
759  assert(Threads::number_of_threads() == 0, "for bootstrap only");
760
761  jint old_value = *dest;
762  *dest = exchange_value;
763  return old_value;
764}
765
766jint os::atomic_cmpxchg_bootstrap(jint exchange_value, volatile jint* dest, jint compare_value) {
767  // try to use the stub:
768  cmpxchg_func_t* func = CAST_TO_FN_PTR(cmpxchg_func_t*, StubRoutines::atomic_cmpxchg_entry());
769
770  if (func != NULL) {
771    os::atomic_cmpxchg_func = func;
772    return (*func)(exchange_value, dest, compare_value);
773  }
774  assert(Threads::number_of_threads() == 0, "for bootstrap only");
775
776  jint old_value = *dest;
777  if (old_value == compare_value)
778    *dest = exchange_value;
779  return old_value;
780}
781
782jlong os::atomic_cmpxchg_long_bootstrap(jlong exchange_value, volatile jlong* dest, jlong compare_value) {
783  // try to use the stub:
784  cmpxchg_long_func_t* func = CAST_TO_FN_PTR(cmpxchg_long_func_t*, StubRoutines::atomic_cmpxchg_long_entry());
785
786  if (func != NULL) {
787    os::atomic_cmpxchg_long_func = func;
788    return (*func)(exchange_value, dest, compare_value);
789  }
790  assert(Threads::number_of_threads() == 0, "for bootstrap only");
791
792  jlong old_value = *dest;
793  if (old_value == compare_value)
794    *dest = exchange_value;
795  return old_value;
796}
797
798jint os::atomic_add_bootstrap(jint add_value, volatile jint* dest) {
799  // try to use the stub:
800  add_func_t* func = CAST_TO_FN_PTR(add_func_t*, StubRoutines::atomic_add_entry());
801
802  if (func != NULL) {
803    os::atomic_add_func = func;
804    return (*func)(add_value, dest);
805  }
806  assert(Threads::number_of_threads() == 0, "for bootstrap only");
807
808  return (*dest) += add_value;
809}
810
811xchg_func_t*         os::atomic_xchg_func         = os::atomic_xchg_bootstrap;
812cmpxchg_func_t*      os::atomic_cmpxchg_func      = os::atomic_cmpxchg_bootstrap;
813cmpxchg_long_func_t* os::atomic_cmpxchg_long_func = os::atomic_cmpxchg_long_bootstrap;
814add_func_t*          os::atomic_add_func          = os::atomic_add_bootstrap;
815
816#endif // !_LP64 && !COMPILER2
817
818#if defined(__sparc) && defined(COMPILER2) && defined(_GNU_SOURCE)
819 // See file build/solaris/makefiles/$compiler.make
820 // For compiler1 the architecture is v8 and frps isn't present in v8
821 extern "C"  void _mark_fpu_nosave() {
822   __asm__ __volatile__ ("wr %%g0, 0, %%fprs \n\t" : : :);
823  }
824#endif //defined(__sparc) && defined(COMPILER2)
825
826#ifndef PRODUCT
827void os::verify_stack_alignment() {
828}
829#endif
830
831int os::extra_bang_size_in_bytes() {
832  // SPARC does not require an additional stack bang.
833  return 0;
834}
835