2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / include / sparc-signal.h
blob1676d26396b5134a46cbdba7b6575f0de8d6d035
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
9 details. */
11 #ifndef JAVA_SIGNAL_H
12 #define JAVA_SIGNAL_H 1
14 #include <signal.h>
15 #include <ucontext.h>
17 #define HANDLE_SEGV 1
18 #define HANDLE_FPE 1
20 #define SIGNAL_HANDLER(_name) \
21 static void _name (int _dummy, siginfo_t *_info, void *arg)
23 #ifdef __arch64__
24 #define FLUSH_REGISTER_WINDOWS \
25 asm volatile ("flushw");
26 #else
27 #define FLUSH_REGISTER_WINDOWS \
28 asm volatile ("ta 3");
29 #endif
31 #define MAKE_THROW_FRAME(_exception) \
32 do \
33 { \
34 ucontext_t *_context = (ucontext_t *) arg; \
35 (void)_dummy; \
36 (void)_info; \
37 register long sp = _context->uc_mcontext.gregs[REG_SP]; \
38 register long retaddr = _context->uc_mcontext.gregs[REG_O7]; \
39 FLUSH_REGISTER_WINDOWS; \
40 asm volatile ("mov %0, %%i6; mov %1, %%i7" \
41 : : "r"(sp), "r"(retaddr)); \
42 } \
43 while (0)
45 #define INIT_SEGV \
46 do \
47 { \
48 struct sigaction act; \
49 act.sa_sigaction = catch_segv; \
50 act.sa_flags = SA_SIGINFO | SA_NODEFER; \
51 sigemptyset (&act.sa_mask); \
52 sigaction (SIGSEGV, &act, NULL); \
53 } \
54 while (0)
56 #define INIT_FPE \
57 do \
58 { \
59 struct sigaction act; \
60 act.sa_flags = SA_SIGINFO | SA_NODEFER; \
61 act.sa_sigaction = catch_fpe; \
62 sigemptyset (&act.sa_mask); \
63 sigaction (SIGFPE, &act, NULL); \
64 } \
65 while (0)
67 #endif /* JAVA_SIGNAL_H */