1999-04-20 08:27:11 +02:00
|
|
|
// sparc-signal.h - Catch runtime signals and turn them into exceptions.
|
|
|
|
|
2000-06-16 17:52:24 +02:00
|
|
|
/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
|
1999-04-20 08:27:11 +02:00
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#ifndef JAVA_SIGNAL_H
|
|
|
|
#define JAVA_SIGNAL_H 1
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
#include <ucontext.h>
|
|
|
|
|
|
|
|
#define HANDLE_SEGV 1
|
|
|
|
#define HANDLE_FPE 1
|
|
|
|
|
|
|
|
#define SIGNAL_HANDLER(_name) \
|
1999-09-27 23:16:40 +02:00
|
|
|
static void _name (int _dummy, siginfo_t *_info, void *arg)
|
1999-04-20 08:27:11 +02:00
|
|
|
|
2002-04-21 11:37:49 +02:00
|
|
|
#ifdef __arch64__
|
|
|
|
#define FLUSH_REGISTER_WINDOWS \
|
|
|
|
asm volatile ("flushw");
|
|
|
|
#else
|
1999-04-20 08:27:11 +02:00
|
|
|
#define FLUSH_REGISTER_WINDOWS \
|
|
|
|
asm volatile ("ta 3");
|
2002-04-21 11:37:49 +02:00
|
|
|
#endif
|
1999-04-20 08:27:11 +02:00
|
|
|
|
2000-06-16 17:52:24 +02:00
|
|
|
#define MAKE_THROW_FRAME(_exception) \
|
1999-04-20 08:27:11 +02:00
|
|
|
do \
|
|
|
|
{ \
|
1999-09-27 23:16:40 +02:00
|
|
|
ucontext_t *_context = (ucontext_t *) arg; \
|
1999-04-20 08:27:11 +02:00
|
|
|
(void)_dummy; \
|
|
|
|
(void)_info; \
|
2002-04-21 11:37:49 +02:00
|
|
|
register long sp = _context->uc_mcontext.gregs[REG_SP]; \
|
|
|
|
register long retaddr = _context->uc_mcontext.gregs[REG_O7]; \
|
1999-04-20 08:27:11 +02:00
|
|
|
FLUSH_REGISTER_WINDOWS; \
|
|
|
|
asm volatile ("mov %0, %%i6; mov %1, %%i7" \
|
|
|
|
: : "r"(sp), "r"(retaddr)); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define INIT_SEGV \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
struct sigaction act; \
|
|
|
|
act.sa_sigaction = catch_segv; \
|
1999-05-21 08:03:30 +02:00
|
|
|
act.sa_flags = SA_SIGINFO | SA_NODEFER; \
|
1999-04-20 08:27:11 +02:00
|
|
|
sigemptyset (&act.sa_mask); \
|
|
|
|
sigaction (SIGSEGV, &act, NULL); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define INIT_FPE \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
struct sigaction act; \
|
1999-05-21 08:03:30 +02:00
|
|
|
act.sa_flags = SA_SIGINFO | SA_NODEFER; \
|
1999-04-20 08:27:11 +02:00
|
|
|
act.sa_sigaction = catch_fpe; \
|
|
|
|
sigemptyset (&act.sa_mask); \
|
|
|
|
sigaction (SIGFPE, &act, NULL); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#endif /* JAVA_SIGNAL_H */
|