Home | History | Annotate | Line # | Download | only in include
mcontext.h revision 1.10
      1  1.10      mrg /*	$NetBSD: mcontext.h,v 1.10 2008/10/26 06:58:02 mrg Exp $	*/
      2   1.2  thorpej 
      3   1.2  thorpej /*-
      4   1.2  thorpej  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5   1.2  thorpej  * All rights reserved.
      6   1.2  thorpej  *
      7   1.2  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.2  thorpej  * by Klaus Klein.
      9   1.2  thorpej  *
     10   1.2  thorpej  * Redistribution and use in source and binary forms, with or without
     11   1.2  thorpej  * modification, are permitted provided that the following conditions
     12   1.2  thorpej  * are met:
     13   1.2  thorpej  * 1. Redistributions of source code must retain the above copyright
     14   1.2  thorpej  *    notice, this list of conditions and the following disclaimer.
     15   1.2  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.2  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17   1.2  thorpej  *    documentation and/or other materials provided with the distribution.
     18   1.2  thorpej  *
     19   1.2  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.2  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.2  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.2  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.2  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.2  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.2  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.2  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.2  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.2  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.2  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30   1.2  thorpej  */
     31   1.2  thorpej 
     32   1.2  thorpej #ifndef _SPARC_MCONTEXT_H_
     33   1.2  thorpej #define _SPARC_MCONTEXT_H_
     34   1.2  thorpej 
     35   1.5       pk #define _UC_SETSTACK	0x00010000
     36   1.5       pk #define _UC_CLRSTACK	0x00020000
     37   1.5       pk 
     38   1.2  thorpej /*
     39   1.2  thorpej  * Layout of mcontext_t according the System V Application Binary Interface,
     40   1.2  thorpej  * Edition 4.1, SPARC Processor ABI Supplement and updated for SPARC v9.
     41   1.2  thorpej  */
     42   1.2  thorpej 
     43   1.2  thorpej #ifdef __arch64__
     44   1.2  thorpej #define	_NGREG	21	/* %ccr, pc, npc, %g1-7, %o0-7, %asi, %fprs */
     45   1.2  thorpej #else
     46   1.2  thorpej #define	_NGREG	19	/* %psr, pc, npc, %g1-7, %o0-7 */
     47   1.2  thorpej #endif
     48   1.2  thorpej typedef	long int	__greg_t;
     49   1.2  thorpej typedef	__greg_t	__gregset_t[_NGREG];
     50   1.2  thorpej 
     51   1.2  thorpej /* Offsets into gregset_t, for convenience. */
     52  1.10      mrg #define	_REG_CCR	0	/* 64 bit only */
     53  1.10      mrg #define	_REG_PSR	0	/* 32 bit only */
     54   1.2  thorpej #define	_REG_PC		1
     55   1.2  thorpej #define	_REG_nPC	2
     56   1.2  thorpej #define	_REG_Y		3
     57   1.2  thorpej #define	_REG_G1		4
     58   1.2  thorpej #define	_REG_G2		5
     59   1.2  thorpej #define	_REG_G3		6
     60   1.2  thorpej #define	_REG_G4		7
     61   1.2  thorpej #define	_REG_G5		8
     62   1.2  thorpej #define	_REG_G6		9
     63   1.2  thorpej #define	_REG_G7		10
     64   1.2  thorpej #define	_REG_O0		11
     65   1.2  thorpej #define	_REG_O1		12
     66   1.2  thorpej #define	_REG_O2		13
     67   1.2  thorpej #define	_REG_O3		14
     68   1.2  thorpej #define	_REG_O4		15
     69   1.2  thorpej #define	_REG_O5		16
     70   1.2  thorpej #define	_REG_O6		17
     71   1.2  thorpej #define	_REG_O7		18
     72  1.10      mrg #define	_REG_ASI	19	/* 64 bit only */
     73  1.10      mrg #define	_REG_FPRS	20	/* 64 bit only */
     74   1.2  thorpej 
     75   1.2  thorpej 
     76   1.2  thorpej #define	_SPARC_MAXREGWINDOW	31
     77   1.2  thorpej 
     78   1.2  thorpej /* Layout of a register window. */
     79   1.2  thorpej typedef struct {
     80   1.2  thorpej 	__greg_t	__rw_local[8];	/* %l0-7 */
     81   1.2  thorpej 	__greg_t	__rw_in[8];	/* %i0-7 */
     82   1.2  thorpej } __rwindow_t;
     83   1.2  thorpej 
     84   1.2  thorpej /* Description of available register windows. */
     85   1.2  thorpej typedef struct {
     86   1.2  thorpej 	int		__wbcnt;
     87   1.2  thorpej 	__greg_t *	__spbuf[_SPARC_MAXREGWINDOW];
     88   1.2  thorpej 	__rwindow_t	__wbuf[_SPARC_MAXREGWINDOW];
     89   1.2  thorpej } __gwindows_t;
     90   1.2  thorpej 
     91   1.2  thorpej /* FPU address queue */
     92   1.2  thorpej struct __fpq {
     93   1.2  thorpej 	unsigned int *	__fpq_addr;	/* address */
     94   1.2  thorpej 	unsigned int	__fpq_instr;	/* instruction */
     95   1.2  thorpej };
     96   1.2  thorpej 
     97   1.2  thorpej struct __fq {
     98   1.2  thorpej 	union {
     99   1.2  thorpej 		double		__whole;
    100   1.2  thorpej 		struct __fpq	__fpq;
    101   1.2  thorpej 	} _FQu;
    102   1.2  thorpej };
    103   1.2  thorpej 
    104   1.2  thorpej /* FPU state description */
    105   1.2  thorpej typedef struct {
    106   1.2  thorpej 	union {
    107   1.2  thorpej 		unsigned int	__fpu_regs[32];
    108   1.2  thorpej #ifdef __arch64__
    109   1.2  thorpej 		double		__fpu_dregs[32];
    110   1.2  thorpej 		long double	__fpu_qregs[16];
    111   1.2  thorpej #else
    112   1.2  thorpej 		double		__fpu_dregs[16];
    113   1.2  thorpej #endif
    114   1.2  thorpej 	} __fpu_fr;				/* FPR contents */
    115   1.2  thorpej 	struct __fq *	__fpu_q;		/* pointer to FPU insn queue */
    116   1.2  thorpej 	unsigned long	__fpu_fsr;		/* %fsr */
    117   1.2  thorpej 	unsigned char	__fpu_qcnt;		/* # entries in __fpu_q */
    118   1.2  thorpej 	unsigned char	__fpu_q_entrysize; 	/* size of a __fpu_q entry */
    119   1.2  thorpej 	unsigned char	__fpu_en;		/* this context valid? */
    120   1.2  thorpej } __fpregset_t;
    121   1.2  thorpej 
    122   1.2  thorpej /* `Extra Register State'(?) */
    123   1.2  thorpej typedef struct {
    124   1.2  thorpej 	unsigned int	__xrs_id;	/* See below */
    125   1.2  thorpej 	char *		__xrs_ptr;	/* points into filler area */
    126   1.2  thorpej } __xrs_t;
    127   1.2  thorpej 
    128   1.2  thorpej #define	_XRS_ID		0x78727300	/* 'xrs\0' */
    129   1.2  thorpej 
    130   1.2  thorpej #ifdef __arch64__
    131   1.2  thorpej /* Ancillary State Registers, 16-31 are available to user programs */
    132   1.2  thorpej typedef	long		__asrset_t[16];	/* %asr16-31 */
    133   1.2  thorpej #endif
    134   1.2  thorpej 
    135   1.2  thorpej typedef struct {
    136   1.2  thorpej 	__gregset_t	__gregs;	/* GPR state */
    137   1.2  thorpej 	__gwindows_t *	__gwins;	/* may point to register windows */
    138   1.2  thorpej 	__fpregset_t	__fpregs;	/* FPU state, if any */
    139   1.2  thorpej 	__xrs_t		__xrs;		/* may indicate extra reg state */
    140   1.2  thorpej #ifdef __arch64__
    141   1.2  thorpej 	__asrset_t	__asrs;		/* ASR state */
    142   1.2  thorpej #endif
    143   1.4       pk } mcontext_t;
    144   1.2  thorpej 
    145   1.2  thorpej #ifdef __arch64__
    146   1.4       pk #define _UC_MACHINE_PAD	8		/* Padding appended to ucontext_t */
    147   1.2  thorpej #define	_UC_MACHINE_SP(uc)	(((uc)->uc_mcontext.__gregs[_REG_O6])+0x7ff)
    148   1.6   martin #define _UC_MACHINE32_PAD	43	/* compat_netbsd32 variant */
    149   1.8     cube #define	_UC_MACHINE32_SP(uc)	((uc)->uc_mcontext.__gregs[_REG_O6])
    150   1.2  thorpej #else
    151   1.4       pk #define _UC_MACHINE_PAD	43		/* Padding appended to ucontext_t */
    152   1.2  thorpej #define	_UC_MACHINE_SP(uc)	((uc)->uc_mcontext.__gregs[_REG_O6])
    153   1.2  thorpej #endif
    154   1.3  thorpej #define	_UC_MACHINE_PC(uc)	((uc)->uc_mcontext.__gregs[_REG_PC])
    155   1.3  thorpej #define	_UC_MACHINE_INTRV(uc)	((uc)->uc_mcontext.__gregs[_REG_O0])
    156   1.3  thorpej 
    157   1.3  thorpej #define	_UC_MACHINE_SET_PC(uc, pc)					\
    158   1.3  thorpej do {									\
    159   1.3  thorpej 	(uc)->uc_mcontext.__gregs[_REG_PC] = (pc);			\
    160   1.3  thorpej 	(uc)->uc_mcontext.__gregs[_REG_nPC] = (pc) + 4;			\
    161   1.3  thorpej } while (/*CONSTCOND*/0)
    162   1.2  thorpej 
    163   1.2  thorpej #endif	/* !_SPARC_MCONTEXT_H_ */
    164