This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / libjava / include / x86_64-signal.h
blobab59e5e69bc3a8ed3108355187d1c31e0bd6273c
1 // x86_64-signal.h - Catch runtime signals and turn them into exceptions
2 // on an x86_64 based GNU/Linux system.
4 /* Copyright (C) 2003 Free Software Foundation
6 This file is part of libgcj.
8 This software is copyrighted work licensed under the terms of the
9 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
10 details. */
13 #ifdef __x86_64__
15 #ifndef JAVA_SIGNAL_H
16 #define JAVA_SIGNAL_H 1
18 #include <signal.h>
19 #include <sys/syscall.h>
21 #define HANDLE_SEGV 1
23 #define SIGNAL_HANDLER(_name) \
24 static void _Jv_##_name (int, siginfo_t *, void *_p)
26 extern "C"
28 struct kernel_sigaction
30 void (*k_sa_sigaction)(int,siginfo_t *,void *);
31 unsigned long k_sa_flags;
32 void (*k_sa_restorer) (void);
33 sigset_t k_sa_mask;
37 #define MAKE_THROW_FRAME(_exception) \
38 do \
39 { \
40 /* Advance the program counter so that it is after the start of the \
41 instruction: the x86_64 exception handler expects \
42 the PC to point to the instruction after a call. */ \
43 struct ucontext *_uc = (struct ucontext *)_p; \
44 volatile struct sigcontext *_sc = (struct sigcontext *) &_uc->uc_mcontext; \
45 _sc->rip += 2; \
46 } \
47 while (0)
49 #define RESTORE(name, syscall) RESTORE2 (name, syscall)
50 #define RESTORE2(name, syscall) \
51 asm \
52 ( \
53 ".byte 0 # Yes, this really is necessary\n" \
54 ".align 16\n" \
55 "__" #name ":\n" \
56 " movq $" #syscall ", %rax\n" \
57 " syscall\n" \
60 /* The return code for realtime-signals. */
61 RESTORE (restore_rt, __NR_rt_sigreturn)
62 static void restore_rt (void) asm ("__restore_rt");
64 #define INIT_SEGV \
65 do \
66 { \
67 struct kernel_sigaction act; \
68 act.k_sa_sigaction = _Jv_catch_segv; \
69 sigemptyset (&act.k_sa_mask); \
70 act.k_sa_flags = SA_SIGINFO|0x4000000; \
71 act.k_sa_restorer = restore_rt; \
72 syscall (SYS_rt_sigaction, SIGSEGV, &act, NULL, _NSIG / 8); \
73 } \
74 while (0)
76 /* We use syscall(SYS_rt_sigaction) in INIT_SEGV instead of
77 * sigaction() because on some systems the pthreads wrappers for
78 * signal handlers are not compiled with unwind information, so it's
79 * not possible to unwind through them. This is a problem that will
80 * go away if all systems ever have pthreads libraries that are
81 * compiled with unwind info. */
83 #endif /* JAVA_SIGNAL_H */
85 #else /* __x86_64__ */
87 /* This is for the 32-bit subsystem on on x86-64. */
89 #define sigcontext_struct sigcontext
90 #include <java-signal-aux.h>
92 #endif /* __x86_64__ */