1 // dwarf2-signal.h - Catch runtime signals and turn them into exceptions.
3 /* Copyright (C) 2000, 2001 Free Software Foundation
5 This file is part of libgcj.
7 Use this file for a target for which the dwarf2 unwinder in libgcc
8 can unwind through signal handlers.
10 This software is copyrighted work licensed under the terms of the
11 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
15 #define JAVA_SIGNAL_H 1
18 #include <sys/syscall.h>
23 #define SIGNAL_HANDLER(_name) \
24 static void _Jv_##_name (int, siginfo_t *_sip, void *_p)
26 class java::lang::Throwable
;
28 // Unwind the stack to the point at which the signal was generated and
29 // then throw an exception. With the dwarf2 unwinder we don't usually
30 // need to do anything, with some minor exceptions.
33 #define MAKE_THROW_FRAME(_exception) \
36 /* Alpha either leaves PC pointing at a faulting instruction or the \
37 following instruction, depending on the signal. SEGV always does \
38 the former, so we adjust the saved PC to point to the following \
39 instruction; this is what the handler in libgcc expects. */ \
40 struct sigcontext *_sc = (struct sigcontext *)_p; \
45 #elif defined(__ia64__)
47 #define MAKE_THROW_FRAME(_exception) \
50 /* IA-64 either leaves PC pointing at a faulting instruction or the \
51 following instruction, depending on the signal. SEGV always does \
52 the former, so we adjust the saved PC to point to the following \
53 instruction; this is what the handler in libgcc expects. */ \
54 /* Note that we are lying to the unwinder here, which expects the \
55 faulting pc, not pc+1. But we claim the unwind information can't \
56 be changed by such a ld or st instruction, so it doesn't matter. */ \
57 struct sigcontext *_sc = (struct sigcontext *)_p; \
61 #elif defined(__sparc__)
62 /* We could do the unwind of the signal frame quickly by hand here like
63 sparc-signal.h does under Solaris, but that makes debugging unwind
64 failures almost impossible. */
65 #if !defined(__arch64__)
66 #define MAKE_THROW_FRAME(_exception) \
69 /* Sparc-32 leaves PC pointing at a faulting instruction \
70 always. So we adjust the saved PC to point to the following \
71 instruction; this is what the handler in libgcc expects. */ \
72 /* Note that we are lying to the unwinder here, which expects the \
73 faulting pc, not pc+1. But we claim the unwind information can't \
74 be changed by such a ld or st instruction, so it doesn't matter. */ \
76 unsigned int psr, pc, npc, y, u_regs[16]; \
79 __asm__ __volatile__("ld [%%i7 + 8], %0" : "=r" (insn)); \
80 /* mov __NR_sigaction, %g1; Old signal stack layout */ \
81 if (insn == 0x821020d8) \
82 regp = (struct sig_regs *) _sip; \
84 /* mov __NR_rt_sigaction, %g1; New signal stack layout */ \
85 regp = (struct sig_regs *) (_sip + 1); \
86 regp->pc = regp->npc; \
91 #define MAKE_THROW_FRAME(_exception) \
94 /* Sparc-64 leaves PC pointing at a faulting instruction \
95 always. So we adjust the saved PC to point to the following \
96 instruction; this is what the handler in libgcc expects. */ \
97 /* Note that we are lying to the unwinder here, which expects the \
98 faulting pc, not pc+1. But we claim the unwind information can't \
99 be changed by such a ld or st instruction, so it doesn't matter. */ \
101 unsigned long u_regs[16]; \
102 unsigned long tstate, tpc, tnpc; \
103 unsigned int y, fprs; \
104 } *regp = (struct pt_regs *) (_sip + 1); \
105 regp->tpc = regp->tnpc; \
111 #define MAKE_THROW_FRAME(_exception) \
119 #if !(defined(__ia64__) || defined(__sparc__))
123 nullp = new java::lang::NullPointerException (); \
124 struct sigaction act; \
125 act.sa_sigaction = _Jv_catch_segv; \
126 sigemptyset (&act.sa_mask); \
127 act.sa_flags = SA_SIGINFO; \
128 syscall (SYS_sigaction, SIGSEGV, &act, NULL); \
135 arithexception = new java::lang::ArithmeticException \
136 (JvNewStringLatin1 ("/ by zero")); \
137 struct sigaction act; \
138 act.sa_sigaction = _Jv_catch_fpe; \
139 sigemptyset (&act.sa_mask); \
140 act.sa_flags = SA_SIGINFO; \
141 syscall (SYS_sigaction, SIGFPE, &act, NULL); \
145 /* We use syscall(SYS_sigaction) in INIT_SEGV and INIT_FPE instead of
146 * sigaction() because on some systems the pthreads wrappers for
147 * signal handlers are not compiled with unwind information, so it's
148 * not possible to unwind through them. This is a problem that will
149 * go away once all systems have pthreads libraries that are
150 * compiled with full unwind info. */
152 #else /* __ia64__ || __sparc__ */
154 // FIXME: We shouldn't be using libc_sigaction here, since it should
155 // be glibc private. But using syscall here would mean translating to
156 // the kernel's struct sigaction and argument sequence, which we
157 // shouldn't either. The right solution is to call sigaction and to
158 // make sure that we can unwind correctly through the pthread signal
160 extern "C" int __libc_sigaction (int __sig
,
161 __const
struct sigaction
*__restrict __act
,
162 struct sigaction
*__restrict __oact
) throw ();
167 nullp = new java::lang::NullPointerException (); \
168 struct sigaction act; \
169 act.sa_sigaction = _Jv_catch_segv; \
170 sigemptyset (&act.sa_mask); \
171 act.sa_flags = SA_SIGINFO; \
172 __libc_sigaction (SIGSEGV, &act, NULL); \
179 arithexception = new java::lang::ArithmeticException \
180 (JvNewStringLatin1 ("/ by zero")); \
181 struct sigaction act; \
182 act.sa_sigaction = _Jv_catch_fpe; \
183 sigemptyset (&act.sa_mask); \
184 act.sa_flags = SA_SIGINFO; \
185 __libc_sigaction (SIGFPE, &act, NULL); \
188 #endif /* __ia64__ || __sparc__ */
189 #endif /* JAVA_SIGNAL_H */