2 * x86_64 signal definitions
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #ifndef TARGET_ARCH_SIGNAL_H
20 #define TARGET_ARCH_SIGNAL_H
24 /* Size of the signal trampolin code placed on the stack. */
25 #define TARGET_SZSIGCODE 0
27 /* compare to x86/include/_limits.h */
28 #define TARGET_MINSIGSTKSZ (512 * 4) /* min sig stack size */
29 #define TARGET_SIGSTKSZ (MINSIGSTKSZ + 32768) /* recommended size */
31 typedef struct target_mcontext
{
32 abi_ulong mc_onstack
; /* XXX - sigcontext compat. */
33 abi_ulong mc_rdi
; /* machine state (struct trapframe) */
62 abi_long mc_len
; /* sizeof(mcontext_t) */
64 #define _MC_FPFMT_NODEV 0x10000 /* device not present or configured */
65 #define _MC_FPFMT_XMM 0x10002
67 #define _MC_FPOWNED_NONE 0x20000 /* FP state not used */
68 #define _MC_FPOWNED_FPU 0x20001 /* FP state came from FPU */
69 #define _MC_FPOWNED_PCB 0x20002 /* FP state came from PCB */
72 * See <machine/fpu.h> for the internals of mc_fpstate[].
74 abi_long mc_fpstate
[64] __aligned(16);
79 abi_ulong mc_xfpustate
;
80 abi_ulong mc_xfpustate_len
;
85 #define TARGET_MCONTEXT_SIZE 800
86 #define TARGET_UCONTEXT_SIZE 880
88 #include "target_os_ucontext.h"
90 struct target_sigframe
{
92 abi_ulong sf_siginfo
; /* code or pointer to sf_si */
93 abi_ulong sf_ucontext
; /* points to sf_uc */
94 abi_ulong sf_addr
; /* undocumented 4th arg */
95 target_ucontext_t sf_uc
; /* = *sf_uncontext */
96 target_siginfo_t sf_si
; /* = *sf_siginfo (SA_SIGINFO case)*/
97 uint32_t __spare__
[2];
100 #endif /* TARGET_ARCH_SIGNAL_H */