xref: /illumos-gate/usr/src/uts/sparc/v7/sys/machpcb.h (revision bc0e91320069f0bcaee43e80a7ea686d9efa2d08)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  * Copyright (c) 1990 by Sun Microsystems, Inc.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #ifndef _SYS_MACHPCB_H
277c478bd9Sstevel@tonic-gate #define	_SYS_MACHPCB_H
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #include <sys/stack.h>
307c478bd9Sstevel@tonic-gate #include <sys/regset.h>
317c478bd9Sstevel@tonic-gate #include <sys/privregs.h>
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
347c478bd9Sstevel@tonic-gate extern "C" {
357c478bd9Sstevel@tonic-gate #endif
367c478bd9Sstevel@tonic-gate 
377c478bd9Sstevel@tonic-gate /*
387c478bd9Sstevel@tonic-gate  * This file is machine dependent.
397c478bd9Sstevel@tonic-gate  */
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate /*
427c478bd9Sstevel@tonic-gate  * Machine dependent per-thread data.
437c478bd9Sstevel@tonic-gate  */
447c478bd9Sstevel@tonic-gate #define	MAXWIN	8	/* max # of windows currently supported */
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate /*
477c478bd9Sstevel@tonic-gate  * The system actually supports one more than the above number.
487c478bd9Sstevel@tonic-gate  * There is always one window reserved for trap handlers that
497c478bd9Sstevel@tonic-gate  * never has to be saved into the pcb struct.
507c478bd9Sstevel@tonic-gate  */
517c478bd9Sstevel@tonic-gate 
527c478bd9Sstevel@tonic-gate /*
537c478bd9Sstevel@tonic-gate  * Distance from beginning of thread stack (t_stk) to saved regs struct.
547c478bd9Sstevel@tonic-gate  */
557c478bd9Sstevel@tonic-gate #define	REGOFF	MINFRAME
567c478bd9Sstevel@tonic-gate 
577c478bd9Sstevel@tonic-gate #ifndef _ASM
587c478bd9Sstevel@tonic-gate 
597c478bd9Sstevel@tonic-gate /*
607c478bd9Sstevel@tonic-gate  * The struct machpcb is always allocated stack aligned.
617c478bd9Sstevel@tonic-gate  */
627c478bd9Sstevel@tonic-gate typedef struct machpcb {
637c478bd9Sstevel@tonic-gate 	char	mpcb_frame[REGOFF];
647c478bd9Sstevel@tonic-gate 	struct	regs mpcb_regs;	/* user's saved registers */
657c478bd9Sstevel@tonic-gate 	struct	rwindow mpcb_wbuf[MAXWIN]; /* user window save buffer */
667c478bd9Sstevel@tonic-gate 	caddr_t	mpcb_spbuf[MAXWIN]; /* sp's for each wbuf */
677c478bd9Sstevel@tonic-gate 	struct	rwindow mpcb_rwin[2]; /* windows used while doing watchpoints */
687c478bd9Sstevel@tonic-gate 	caddr_t	mpcb_rsp[2];	/* sp's for pcb_rwin[]  */
697c478bd9Sstevel@tonic-gate 	int	mpcb_uwm;	/* user window mask */
707c478bd9Sstevel@tonic-gate 	int	mpcb_swm;	/* shared user/kernel window mask */
717c478bd9Sstevel@tonic-gate 	int	mpcb_wbcnt;	/* number of saved windows in pcb_wbuf */
72*bc0e9132SGordon Ross 	struct	_fpu mpcb_fpu;	/* fpu state */
73*bc0e9132SGordon Ross 	struct	_fq mpcb_fpu_q[_MAXFPQ]; /* fpu exception queue */
747c478bd9Sstevel@tonic-gate 	int	mpcb_flags;	/* various state flags */
757c478bd9Sstevel@tonic-gate 	int	mpcb_wocnt;	/* window overflow count */
767c478bd9Sstevel@tonic-gate 	int	mpcb_wucnt;	/* window underflow count */
777c478bd9Sstevel@tonic-gate 	kthread_t *mpcb_thread;	/* associated thread */
787c478bd9Sstevel@tonic-gate } machpcb_t;
797c478bd9Sstevel@tonic-gate #endif /* ! _ASM */
807c478bd9Sstevel@tonic-gate 
817c478bd9Sstevel@tonic-gate /* mpcb_flags */
827c478bd9Sstevel@tonic-gate #define	CLEAN_WINDOWS	0x01	/* keep user regs clean */
837c478bd9Sstevel@tonic-gate #define	FP_TRAPPED	0x02	/* fp_traps call caused by fp queue */
847c478bd9Sstevel@tonic-gate #define	GOTO_SYS_RTT	0x04	/* return from syscall via sys_rtt */
857c478bd9Sstevel@tonic-gate 
867c478bd9Sstevel@tonic-gate 
877c478bd9Sstevel@tonic-gate /*
887c478bd9Sstevel@tonic-gate  * We can use lwp_regs to find the mpcb base.
897c478bd9Sstevel@tonic-gate  */
907c478bd9Sstevel@tonic-gate #ifndef _ASM
917c478bd9Sstevel@tonic-gate #define	lwptompcb(lwp)	((struct machpcb *) \
927c478bd9Sstevel@tonic-gate 	    ((caddr_t)(lwp)->lwp_regs - REGOFF))
937c478bd9Sstevel@tonic-gate #endif
947c478bd9Sstevel@tonic-gate 
957c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
967c478bd9Sstevel@tonic-gate }
977c478bd9Sstevel@tonic-gate #endif
987c478bd9Sstevel@tonic-gate 
997c478bd9Sstevel@tonic-gate #endif	/* _SYS_MACHPCB_H */
100