Skip to content
sparc-lispregs.h 3.74 KiB
Newer Older
Raymond Toy's avatar
Raymond Toy committed
/*

 This code was written as part of the CMU Common Lisp project at
 Carnegie Mellon University, and has been placed in the public domain.

*/
ram's avatar
ram committed

#ifndef _SPARC_LISPREGS_H_
#define _SPARC_LISPREGS_H_
wlott's avatar
wlott committed

#ifdef LANGUAGE_ASSEMBLY

ram's avatar
ram committed
#ifdef __STDC__
				/* Standard C token concatenation */
#define CAT(a,b) a ## b

#else
				/* Reisser CPP token concatenation */
#define CAT(a,b) a/**/b

#endif

/*
 * Note: concatenation to non preprocessor symbols is not defined,
 * SunPRO C 2.0.1 yields % g0, perfectly valid according to ANSI
 */
#define GREG(num) CAT(%g,num)
#define OREG(num) CAT(%o,num)
#define LREG(num) CAT(%l,num)
#define IREG(num) CAT(%i,num)
wlott's avatar
wlott committed

#else

#define GREG(num) (num)
#define OREG(num) ((num)+8)
#define LREG(num) ((num)+16)
#define IREG(num) ((num)+24)

#endif

#define GREG_NUM(num) (num)
#define OREG_NUM(num) ((num)+8)
#define LREG_NUM(num) ((num)+16)
#define IREG_NUM(num) ((num)+24)

wlott's avatar
wlott committed
#define NREGS	(32)

/*
 * Define all the Lisp registers appropriately for assembly and C.
 * The registers ending with NUM are meant for use in assembly
 * routines where we need the register number for getting SC_OFFSET
 */
wlott's avatar
wlott committed
#define reg_ZERO	GREG(0)
#define reg_ZERO_NUM	GREG_NUM(0)
wlott's avatar
wlott committed
#define reg_ALLOC	GREG(1)
#define reg_ALLOC_NUM	GREG_NUM(1)
wlott's avatar
wlott committed
#define reg_NIL		GREG(2)
#define reg_NIL_NUM	GREG_NUM(2)
wlott's avatar
wlott committed
#define reg_CSP		GREG(3)
#define reg_CSP_NUM	GREG_NUM(3)
wlott's avatar
wlott committed
#define reg_CFP		GREG(4)
#define reg_CFP_NUM	GREG_NUM(4)
wlott's avatar
wlott committed
#define reg_BSP		GREG(5)
#define reg_BSP_NUM	GREG_NUM(5)
/* %g6 and %g7 are supposed to be reserved for the system */
wlott's avatar
wlott committed

#define reg_NL0		OREG(0)
#define reg_NL0_NUM	OREG_NUM(0)
wlott's avatar
wlott committed
#define reg_NL1		OREG(1)
#define reg_NL1_NUM	OREG_NUM(1)
wlott's avatar
wlott committed
#define reg_NL2		OREG(2)
#define reg_NL2_NUM	OREG_NUM(2)
wlott's avatar
wlott committed
#define reg_NL3		OREG(3)
#define reg_NL3_NUM	OREG_NUM(3)
wlott's avatar
wlott committed
#define reg_NL4		OREG(4)
#define reg_NL4_NUM	OREG_NUM(4)
wlott's avatar
wlott committed
#define reg_NL5		OREG(5)
#define reg_NL5_NUM	OREG_NUM(5)
wlott's avatar
wlott committed
#define reg_NSP		OREG(6)
#define reg_NSP_NUM	OREG_NUM(6)
wlott's avatar
wlott committed
#define reg_NARGS	OREG(7)
#define reg_NARGS_NUM	OREG_NUM(7)
wlott's avatar
wlott committed

#define reg_A0		LREG(0)
#define reg_A0_NUM	LREG_NUM(0)
wlott's avatar
wlott committed
#define reg_A1		LREG(1)
#define reg_A1_NUM	LREG_NUM(1)
wlott's avatar
wlott committed
#define reg_A2		LREG(2)
#define reg_A2_NUM	LREG_NUM(2)
wlott's avatar
wlott committed
#define reg_A3		LREG(3)
#define reg_A3_NUM	LREG_NUM(3)
wlott's avatar
wlott committed
#define reg_A4		LREG(4)
#define reg_A4_NUM	LREG_NUM(4)
wlott's avatar
wlott committed
#define reg_A5		LREG(5)
#define reg_A5_NUM	LREG_NUM(5)
wlott's avatar
wlott committed
#define reg_OCFP	LREG(6)
#define reg_OCFP_NUM	LREG_NUM(6)
wlott's avatar
wlott committed
#define reg_LRA		LREG(7)
#define reg_LRA_NUM	LREG_NUM(7)
wlott's avatar
wlott committed

#define reg_FDEFN	IREG(0)
#define reg_FDEFN_NUM	IREG_NUM(0)
wlott's avatar
wlott committed
#define reg_LEXENV	IREG(1)
#define reg_LEXENV_NUM	IREG_NUM(1)
wlott's avatar
wlott committed
#define reg_L0		IREG(2)
#define reg_L0_NUM	IREG_NUM(2)
#define reg_NFP_NUM	IREG_NUM(3)
#define reg_CFUNC	IREG(4)
#define reg_CFUNC_NUM	IREG_NUM(4)
wlott's avatar
wlott committed
#define reg_CODE	IREG(5)
#define reg_CODE_NUM	IREG_NUM(5)
wlott's avatar
wlott committed
#define reg_LIP		IREG(7)
#define reg_LIP_NUM	IREG_NUM(7)

wlott's avatar
wlott committed
#define REGNAMES \
	"ZERO",		"ALLOC",	"NULL",		"CSP", \
	"CFP",		"BSP",		"%g6",		"%g7", \
wlott's avatar
wlott committed
        "NL0",		"NL1",		"NL2",		"NL3", \
        "NL4",		"NL5",		"NSP",		"NARGS", \
        "A0",		"A1",		"A2",		"A3", \
        "A4",		"A5",		"OCFP",		"LRA", \
        "FDEFN",	"LEXENV",	"L0",		"NFP", \
        "CFUNC",	"CODE",		"???",		"LIP"
wlott's avatar
wlott committed

#define BOXED_REGISTERS { \
    reg_A0, reg_A1, reg_A2, reg_A3, reg_A4, reg_A5, reg_FDEFN, reg_LEXENV, \
    reg_OCFP, reg_LRA, reg_CODE \
wlott's avatar
wlott committed
}

#ifndef LANGUAGE_ASSEMBLY

ram's avatar
ram committed
#ifdef SOLARIS

#include <ucontext.h>

extern int *solaris_register_address(struct ucontext *, int);
ram's avatar
ram committed

#define SC_REG(sc, reg) (*solaris_register_address(sc,reg))

/* short cuts */

#define SC_PC(sc) ((sc)->uc_mcontext.gregs[REG_PC])
#define SC_NPC(sc) ((sc)->uc_mcontext.gregs[REG_nPC])

#else

wlott's avatar
wlott committed
#define SC_REG(sc, n) (((int *)((sc)->sc_g1))[n])
#define SC_PC(sc) ((sc)->sc_pc)
#define SC_NPC(sc) ((sc)->sc_npc)

ram's avatar
ram committed
#endif /* SOLARIS */

wlott's avatar
wlott committed
#endif