blob: e4b1972d8a55c768859828ad8c49e70fc437ec62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _SYS_MACHPCB_H
#define _SYS_MACHPCB_H
#include <sys/stack.h>
#include <sys/regset.h>
#include <v9/sys/privregs.h>
#if defined(__lint)
#include <sys/thread.h>
#endif /* __lint */
#ifdef __cplusplus
extern "C" {
#endif
/*
* This file is machine dependent.
*/
/*
* Machine dependent per-thread data.
*/
#define MAXWIN 8 /* max # of windows currently supported */
/*
* The system actually supports one more than the above number.
* There is always one window reserved for trap handlers that
* never has to be saved into the pcb struct.
*/
/*
* Distance from beginning of thread stack (t_stk) to saved regs struct.
*/
#define REGOFF SA(MINFRAME)
#ifndef _ASM
/*
* The struct machpcb is always allocated stack aligned.
*/
typedef struct machpcb {
char mpcb_frame[REGOFF];
struct regs mpcb_regs; /* user's saved registers */
caddr_t mpcb_wbuf; /* pointer to wbuf */
caddr_t mpcb_spbuf[MAXWIN]; /* sp's for each wbuf */
struct rwindow mpcb_rwin[2]; /* windows used while doing watchpoints */
caddr_t mpcb_rsp[2]; /* sp's for pcb_rwin[] */
int mpcb_wbcnt; /* number of saved windows in pcb_wbuf */
uint_t mpcb_wstate; /* per-lwp %wstate */
kfpu_t *mpcb_fpu; /* fpu state */
struct _fq mpcb_fpu_q[_MAXFPQ]; /* fpu exception queue */
caddr_t mpcb_illexcaddr; /* address of last illegal instruction */
uint_t mpcb_illexcinsn; /* last illegal instruction */
uint_t mpcb_illexccnt; /* count of illegal instruction attempts */
int mpcb_flags; /* various state flags */
int mpcb_wocnt; /* window overflow count */
int mpcb_wucnt; /* window underflow count */
kthread_t *mpcb_thread; /* associated thread */
uint64_t mpcb_pa; /* pcb physical */
uint64_t mpcb_wbuf_pa; /* pointer to wbuf - physical */
} machpcb_t;
#endif /* ! _ASM */
/* mpcb_flags */
#define FP_TRAPPED 0x04 /* fp_traps call caused by fp queue */
/*
* We can use lwp_regs to find the mpcb base.
*/
#ifndef _ASM
#define lwptompcb(lwp) ((struct machpcb *) \
((caddr_t)(lwp)->lwp_regs - REGOFF))
#endif
#ifndef _ASM
struct kmem_cache;
extern struct kmem_cache *wbuf32_cache;
extern struct kmem_cache *wbuf64_cache;
#endif
#ifdef __cplusplus
}
#endif
#endif /* _SYS_MACHPCB_H */
|