10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
13 *
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
25 */
26
27 #ifndef _SYS_PROCFS_ISA_H
28 #define _SYS_PROCFS_ISA_H
29
30 #pragma ident "%Z%%M% %I% %E% SMI"
31
32 /*
33 * Instruction Set Architecture specific component of <sys/procfs.h>
34 * i386 version
35 */
36
37 #include <sys/regset.h>
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42
43 /*
44 * Possible values of pr_dmodel.
45 * This isn't isa-specific, but it needs to be defined here for other reasons.
46 */
47 #define PR_MODEL_UNKNOWN 0
48 #define PR_MODEL_ILP32 1 /* process data model is ILP32 */
49 #define PR_MODEL_LP64 2 /* process data model is LP64 */
50
51 /*
97 * The following defines are for portability (see <sys/regset.h>).
98 */
99 #define R_PC REG_RIP
100 #define R_PS REG_RFL
101 #define R_SP REG_RSP
102 #define R_FP REG_RBP
103 #define R_R0 REG_RAX
104 #define R_R1 REG_RDX
105 #elif defined(__i386)
106 /*
107 * The following defines are for portability (see <sys/regset.h>).
108 */
109 #define R_PC EIP
110 #define R_PS EFL
111 #define R_SP UESP
112 #define R_FP EBP
113 #define R_R0 EAX
114 #define R_R1 EDX
115 #endif
116
117 #ifdef __cplusplus
118 }
119 #endif
120
121 #endif /* _SYS_PROCFS_ISA_H */
|
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
13 *
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
25 */
26
27 #ifndef _SYS_PROCFS_ISA_H
28 #define _SYS_PROCFS_ISA_H
29
30 /*
31 * Instruction Set Architecture specific component of <sys/procfs.h>
32 * i386 version
33 */
34
35 #include <sys/regset.h>
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41 /*
42 * Possible values of pr_dmodel.
43 * This isn't isa-specific, but it needs to be defined here for other reasons.
44 */
45 #define PR_MODEL_UNKNOWN 0
46 #define PR_MODEL_ILP32 1 /* process data model is ILP32 */
47 #define PR_MODEL_LP64 2 /* process data model is LP64 */
48
49 /*
95 * The following defines are for portability (see <sys/regset.h>).
96 */
97 #define R_PC REG_RIP
98 #define R_PS REG_RFL
99 #define R_SP REG_RSP
100 #define R_FP REG_RBP
101 #define R_R0 REG_RAX
102 #define R_R1 REG_RDX
103 #elif defined(__i386)
104 /*
105 * The following defines are for portability (see <sys/regset.h>).
106 */
107 #define R_PC EIP
108 #define R_PS EFL
109 #define R_SP UESP
110 #define R_FP EBP
111 #define R_R0 EAX
112 #define R_R1 EDX
113 #endif
114
115 #define XR_TYPE_XSAVE 0x101
116
117 typedef struct prxregset {
118 uint32_t pr_type;
119 uint32_t pr_align;
120 uint32_t pr_xsize;
121 uint32_t pr_pad;
122 union {
123 struct pr_xsave {
124 uint16_t pr_fcw;
125 uint16_t pr_fsw;
126 uint16_t pr_fctw;
127 uint16_t pr_fop;
128 #if defined(__amd64)
129 uint64_t pr_rip;
130 uint64_t pr_rdp;
131 #else
132 uint32_t pr_eip;
133 uint16_t pr_cs;
134 uint16_t __pr_ign0;
135 uint32_t pr_dp;
136 uint16_t pr_ds;
137 uint16_t __pr_ign1;
138 #endif
139 uint32_t pr_mxcsr;
140 uint32_t pr_mxcsr_mask;
141 union {
142 uint16_t pr_fpr_16[5];
143 u_longlong_t pr_fpr_mmx;
144 uint32_t __pr_fpr_pad[4];
145 } pr_st[8];
146 #if defined(__amd64)
147 upad128_t pr_xmm[16];
148 upad128_t __pr_ign2[3];
149 #else
150 upad128_t pr_xmm[8];
151 upad128_t __pr_ign2[11];
152 #endif
153 union {
154 struct {
155 uint64_t pr_xcr0;
156 uint64_t pr_mbz[2];
157 } pr_xsave_info;
158 upad128_t __pr_pad[3];
159 } pr_sw_avail;
160 uint64_t pr_xstate_bv;
161 uint64_t pr_rsv_mbz[2];
162 uint64_t pr_reserved[5];
163 #if defined(__amd64)
164 upad128_t pr_ymm[16];
165 #else
166 upad128_t pr_ymm[8];
167 upad128_t __pr_ign3[8];
168 #endif
169 } pr_xsave;
170 } pr_un;
171 } prxregset_t;
172
173 #ifdef __cplusplus
174 }
175 #endif
176
177 #endif /* _SYS_PROCFS_ISA_H */
|