1 // sparc-signal.h - Catch runtime signals and turn them into exceptions.
3 /* Copyright (C) 1998, 1999, 2000 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
12 #define JAVA_SIGNAL_H 1
20 #define SIGNAL_HANDLER(_name) \
21 static void _name (int _dummy __attribute__ ((__unused__)), \
22 siginfo_t *_info __attribute__ ((__unused__)), \
23 void *arg __attribute__ ((__unused__)))
26 #define FLUSH_REGISTER_WINDOWS \
27 asm volatile ("flushw");
29 #define FLUSH_REGISTER_WINDOWS \
30 asm volatile ("ta 3");
33 #define MAKE_THROW_FRAME(_exception) \
36 ucontext_t *_context = (ucontext_t *) arg; \
39 register long sp = _context->uc_mcontext.gregs[REG_SP]; \
40 register long retaddr = _context->uc_mcontext.gregs[REG_O7]; \
41 FLUSH_REGISTER_WINDOWS; \
42 asm volatile ("mov %0, %%i6; mov %1, %%i7" \
43 : : "r"(sp), "r"(retaddr)); \
50 struct sigaction act; \
51 act.sa_sigaction = catch_segv; \
52 act.sa_flags = SA_SIGINFO | SA_NODEFER; \
53 sigemptyset (&act.sa_mask); \
54 sigaction (SIGSEGV, &act, NULL); \
61 struct sigaction act; \
62 act.sa_flags = SA_SIGINFO | SA_NODEFER; \
63 act.sa_sigaction = catch_fpe; \
64 sigemptyset (&act.sa_mask); \
65 sigaction (SIGFPE, &act, NULL); \
69 #endif /* JAVA_SIGNAL_H */