VirtualBox

source: vbox/trunk/include/iprt/x86.h@ 47303

Last change on this file since 47303 was 47267, checked in by vboxsync, 12 years ago

Regenerate assembly headers, added TSSes to x86extra.mac.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 114.7 KB
Line 
1/** @file
2 * IPRT - X86 and AMD64 Structures and Definitions.
3 *
4 * @note x86.mac is generated from this file by running 'kmk incs' in the root.
5 */
6
7/*
8 * Copyright (C) 2006-2012 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * The contents of this file may alternatively be used under the terms
19 * of the Common Development and Distribution License Version 1.0
20 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
21 * VirtualBox OSE distribution, in which case the provisions of the
22 * CDDL are applicable instead of those of the GPL.
23 *
24 * You may elect to license modified versions of this file under the
25 * terms and conditions of either the GPL or the CDDL or both.
26 */
27
28#ifndef ___iprt_x86_h
29#define ___iprt_x86_h
30
31#ifndef VBOX_FOR_DTRACE_LIB
32# include <iprt/types.h>
33# include <iprt/assert.h>
34#else
35# pragma D depends_on library vbox-types.d
36#endif
37
38/* Workaround for Solaris sys/regset.h defining CS, DS */
39#ifdef RT_OS_SOLARIS
40# undef CS
41# undef DS
42#endif
43
44/** @defgroup grp_rt_x86 x86 Types and Definitions
45 * @ingroup grp_rt
46 * @{
47 */
48
49#ifndef VBOX_FOR_DTRACE_LIB
50/**
51 * EFLAGS Bits.
52 */
53typedef struct X86EFLAGSBITS
54{
55 /** Bit 0 - CF - Carry flag - Status flag. */
56 unsigned u1CF : 1;
57 /** Bit 1 - 1 - Reserved flag. */
58 unsigned u1Reserved0 : 1;
59 /** Bit 2 - PF - Parity flag - Status flag. */
60 unsigned u1PF : 1;
61 /** Bit 3 - 0 - Reserved flag. */
62 unsigned u1Reserved1 : 1;
63 /** Bit 4 - AF - Auxiliary carry flag - Status flag. */
64 unsigned u1AF : 1;
65 /** Bit 5 - 0 - Reserved flag. */
66 unsigned u1Reserved2 : 1;
67 /** Bit 6 - ZF - Zero flag - Status flag. */
68 unsigned u1ZF : 1;
69 /** Bit 7 - SF - Signed flag - Status flag. */
70 unsigned u1SF : 1;
71 /** Bit 8 - TF - Trap flag - System flag. */
72 unsigned u1TF : 1;
73 /** Bit 9 - IF - Interrupt flag - System flag. */
74 unsigned u1IF : 1;
75 /** Bit 10 - DF - Direction flag - Control flag. */
76 unsigned u1DF : 1;
77 /** Bit 11 - OF - Overflow flag - Status flag. */
78 unsigned u1OF : 1;
79 /** Bit 12-13 - IOPL - I/O prvilege level flag - System flag. */
80 unsigned u2IOPL : 2;
81 /** Bit 14 - NT - Nested task flag - System flag. */
82 unsigned u1NT : 1;
83 /** Bit 15 - 0 - Reserved flag. */
84 unsigned u1Reserved3 : 1;
85 /** Bit 16 - RF - Resume flag - System flag. */
86 unsigned u1RF : 1;
87 /** Bit 17 - VM - Virtual 8086 mode - System flag. */
88 unsigned u1VM : 1;
89 /** Bit 18 - AC - Alignment check flag - System flag. Works with CR0.AM. */
90 unsigned u1AC : 1;
91 /** Bit 19 - VIF - Virtual interrupt flag - System flag. */
92 unsigned u1VIF : 1;
93 /** Bit 20 - VIP - Virtual interrupt pending flag - System flag. */
94 unsigned u1VIP : 1;
95 /** Bit 21 - ID - CPUID flag - System flag. If this responds to flipping CPUID is supported. */
96 unsigned u1ID : 1;
97 /** Bit 22-31 - 0 - Reserved flag. */
98 unsigned u10Reserved4 : 10;
99} X86EFLAGSBITS;
100/** Pointer to EFLAGS bits. */
101typedef X86EFLAGSBITS *PX86EFLAGSBITS;
102/** Pointer to const EFLAGS bits. */
103typedef const X86EFLAGSBITS *PCX86EFLAGSBITS;
104#endif /* !VBOX_FOR_DTRACE_LIB */
105
106/**
107 * EFLAGS.
108 */
109typedef union X86EFLAGS
110{
111 /** The plain unsigned view. */
112 uint32_t u;
113#ifndef VBOX_FOR_DTRACE_LIB
114 /** The bitfield view. */
115 X86EFLAGSBITS Bits;
116#endif
117 /** The 8-bit view. */
118 uint8_t au8[4];
119 /** The 16-bit view. */
120 uint16_t au16[2];
121 /** The 32-bit view. */
122 uint32_t au32[1];
123 /** The 32-bit view. */
124 uint32_t u32;
125} X86EFLAGS;
126/** Pointer to EFLAGS. */
127typedef X86EFLAGS *PX86EFLAGS;
128/** Pointer to const EFLAGS. */
129typedef const X86EFLAGS *PCX86EFLAGS;
130
131/**
132 * RFLAGS (32 upper bits are reserved).
133 */
134typedef union X86RFLAGS
135{
136 /** The plain unsigned view. */
137 uint64_t u;
138#ifndef VBOX_FOR_DTRACE_LIB
139 /** The bitfield view. */
140 X86EFLAGSBITS Bits;
141#endif
142 /** The 8-bit view. */
143 uint8_t au8[8];
144 /** The 16-bit view. */
145 uint16_t au16[4];
146 /** The 32-bit view. */
147 uint32_t au32[2];
148 /** The 64-bit view. */
149 uint64_t au64[1];
150 /** The 64-bit view. */
151 uint64_t u64;
152} X86RFLAGS;
153/** Pointer to RFLAGS. */
154typedef X86RFLAGS *PX86RFLAGS;
155/** Pointer to const RFLAGS. */
156typedef const X86RFLAGS *PCX86RFLAGS;
157
158
159/** @name EFLAGS
160 * @{
161 */
162/** Bit 0 - CF - Carry flag - Status flag. */
163#define X86_EFL_CF RT_BIT(0)
164/** Bit 1 - Reserved, reads as 1. */
165#define X86_EFL_1 RT_BIT(1)
166/** Bit 2 - PF - Parity flag - Status flag. */
167#define X86_EFL_PF RT_BIT(2)
168/** Bit 4 - AF - Auxiliary carry flag - Status flag. */
169#define X86_EFL_AF RT_BIT(4)
170/** Bit 6 - ZF - Zero flag - Status flag. */
171#define X86_EFL_ZF RT_BIT(6)
172/** Bit 7 - SF - Signed flag - Status flag. */
173#define X86_EFL_SF RT_BIT(7)
174/** Bit 8 - TF - Trap flag - System flag. */
175#define X86_EFL_TF RT_BIT(8)
176/** Bit 9 - IF - Interrupt flag - System flag. */
177#define X86_EFL_IF RT_BIT(9)
178/** Bit 10 - DF - Direction flag - Control flag. */
179#define X86_EFL_DF RT_BIT(10)
180/** Bit 11 - OF - Overflow flag - Status flag. */
181#define X86_EFL_OF RT_BIT(11)
182/** Bit 12-13 - IOPL - I/O prvilege level flag - System flag. */
183#define X86_EFL_IOPL (RT_BIT(12) | RT_BIT(13))
184/** Bit 14 - NT - Nested task flag - System flag. */
185#define X86_EFL_NT RT_BIT(14)
186/** Bit 16 - RF - Resume flag - System flag. */
187#define X86_EFL_RF RT_BIT(16)
188/** Bit 17 - VM - Virtual 8086 mode - System flag. */
189#define X86_EFL_VM RT_BIT(17)
190/** Bit 18 - AC - Alignment check flag - System flag. Works with CR0.AM. */
191#define X86_EFL_AC RT_BIT(18)
192/** Bit 19 - VIF - Virtual interrupt flag - System flag. */
193#define X86_EFL_VIF RT_BIT(19)
194/** Bit 20 - VIP - Virtual interrupt pending flag - System flag. */
195#define X86_EFL_VIP RT_BIT(20)
196/** Bit 21 - ID - CPUID flag - System flag. If this responds to flipping CPUID is supported. */
197#define X86_EFL_ID RT_BIT(21)
198/** IOPL shift. */
199#define X86_EFL_IOPL_SHIFT 12
200/** The the IOPL level from the flags. */
201#define X86_EFL_GET_IOPL(efl) (((efl) >> X86_EFL_IOPL_SHIFT) & 3)
202/** Bits restored by popf */
203#define X86_EFL_POPF_BITS (X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF | X86_EFL_TF | X86_EFL_IF | X86_EFL_DF | X86_EFL_OF | X86_EFL_IOPL | X86_EFL_NT | X86_EFL_AC | X86_EFL_ID)
204/** @} */
205
206
207/** CPUID Feature information - ECX.
208 * CPUID query with EAX=1.
209 */
210#ifndef VBOX_FOR_DTRACE_LIB
211typedef struct X86CPUIDFEATECX
212{
213 /** Bit 0 - SSE3 - Supports SSE3 or not. */
214 unsigned u1SSE3 : 1;
215 /** Bit 1 - PCLMULQDQ. */
216 unsigned u1PCLMULQDQ : 1;
217 /** Bit 2 - DS Area 64-bit layout. */
218 unsigned u1DTE64 : 1;
219 /** Bit 3 - MONITOR - Supports MONITOR/MWAIT. */
220 unsigned u1Monitor : 1;
221 /** Bit 4 - CPL-DS - CPL Qualified Debug Store. */
222 unsigned u1CPLDS : 1;
223 /** Bit 5 - VMX - Virtual Machine Technology. */
224 unsigned u1VMX : 1;
225 /** Bit 6 - SMX: Safer Mode Extensions. */
226 unsigned u1SMX : 1;
227 /** Bit 7 - EST - Enh. SpeedStep Tech. */
228 unsigned u1EST : 1;
229 /** Bit 8 - TM2 - Terminal Monitor 2. */
230 unsigned u1TM2 : 1;
231 /** Bit 9 - SSSE3 - Supplemental Streaming SIMD Extensions 3. */
232 unsigned u1SSSE3 : 1;
233 /** Bit 10 - CNTX-ID - L1 Context ID. */
234 unsigned u1CNTXID : 1;
235 /** Bit 11 - Reserved. */
236 unsigned u1Reserved1 : 1;
237 /** Bit 12 - FMA. */
238 unsigned u1FMA : 1;
239 /** Bit 13 - CX16 - CMPXCHG16B. */
240 unsigned u1CX16 : 1;
241 /** Bit 14 - xTPR Update Control. Processor supports changing IA32_MISC_ENABLES[bit 23]. */
242 unsigned u1TPRUpdate : 1;
243 /** Bit 15 - PDCM - Perf/Debug Capability MSR. */
244 unsigned u1PDCM : 1;
245 /** Bit 16 - Reserved. */
246 unsigned u1Reserved2 : 1;
247 /** Bit 17 - PCID - Process-context identifiers. */
248 unsigned u1PCID : 1;
249 /** Bit 18 - Direct Cache Access. */
250 unsigned u1DCA : 1;
251 /** Bit 19 - SSE4_1 - Supports SSE4_1 or not. */
252 unsigned u1SSE4_1 : 1;
253 /** Bit 20 - SSE4_2 - Supports SSE4_2 or not. */
254 unsigned u1SSE4_2 : 1;
255 /** Bit 21 - x2APIC. */
256 unsigned u1x2APIC : 1;
257 /** Bit 22 - MOVBE - Supports MOVBE. */
258 unsigned u1MOVBE : 1;
259 /** Bit 23 - POPCNT - Supports POPCNT. */
260 unsigned u1POPCNT : 1;
261 /** Bit 24 - TSC-Deadline. */
262 unsigned u1TSCDEADLINE : 1;
263 /** Bit 25 - AES. */
264 unsigned u1AES : 1;
265 /** Bit 26 - XSAVE - Supports XSAVE. */
266 unsigned u1XSAVE : 1;
267 /** Bit 27 - OSXSAVE - Supports OSXSAVE. */
268 unsigned u1OSXSAVE : 1;
269 /** Bit 28 - AVX - Supports AVX instruction extensions. */
270 unsigned u1AVX : 1;
271 /** Bit 29 - 30 - Reserved */
272 unsigned u2Reserved3 : 2;
273 /** Bit 31 - Hypervisor present (we're a guest). */
274 unsigned u1HVP : 1;
275} X86CPUIDFEATECX;
276#else /* VBOX_FOR_DTRACE_LIB */
277typedef uint32_t X86CPUIDFEATECX;
278#endif /* VBOX_FOR_DTRACE_LIB */
279/** Pointer to CPUID Feature Information - ECX. */
280typedef X86CPUIDFEATECX *PX86CPUIDFEATECX;
281/** Pointer to const CPUID Feature Information - ECX. */
282typedef const X86CPUIDFEATECX *PCX86CPUIDFEATECX;
283
284
285/** CPUID Feature Information - EDX.
286 * CPUID query with EAX=1.
287 */
288#ifndef VBOX_FOR_DTRACE_LIB /* DTrace different (brain-dead from a C pov) bitfield implementation */
289typedef struct X86CPUIDFEATEDX
290{
291 /** Bit 0 - FPU - x87 FPU on Chip. */
292 unsigned u1FPU : 1;
293 /** Bit 1 - VME - Virtual 8086 Mode Enhancements. */
294 unsigned u1VME : 1;
295 /** Bit 2 - DE - Debugging extensions. */
296 unsigned u1DE : 1;
297 /** Bit 3 - PSE - Page Size Extension. */
298 unsigned u1PSE : 1;
299 /** Bit 4 - TSC - Time Stamp Counter. */
300 unsigned u1TSC : 1;
301 /** Bit 5 - MSR - Model Specific Registers RDMSR and WRMSR Instructions. */
302 unsigned u1MSR : 1;
303 /** Bit 6 - PAE - Physical Address Extension. */
304 unsigned u1PAE : 1;
305 /** Bit 7 - MCE - Machine Check Exception. */
306 unsigned u1MCE : 1;
307 /** Bit 8 - CX8 - CMPXCHG8B instruction. */
308 unsigned u1CX8 : 1;
309 /** Bit 9 - APIC - APIC On-Chip. */
310 unsigned u1APIC : 1;
311 /** Bit 10 - Reserved. */
312 unsigned u1Reserved1 : 1;
313 /** Bit 11 - SEP - SYSENTER and SYSEXIT. */
314 unsigned u1SEP : 1;
315 /** Bit 12 - MTRR - Memory Type Range Registers. */
316 unsigned u1MTRR : 1;
317 /** Bit 13 - PGE - PTE Global Bit. */
318 unsigned u1PGE : 1;
319 /** Bit 14 - MCA - Machine Check Architecture. */
320 unsigned u1MCA : 1;
321 /** Bit 15 - CMOV - Conditional Move Instructions. */
322 unsigned u1CMOV : 1;
323 /** Bit 16 - PAT - Page Attribute Table. */
324 unsigned u1PAT : 1;
325 /** Bit 17 - PSE-36 - 36-bit Page Size Extention. */
326 unsigned u1PSE36 : 1;
327 /** Bit 18 - PSN - Processor Serial Number. */
328 unsigned u1PSN : 1;
329 /** Bit 19 - CLFSH - CLFLUSH Instruction. */
330 unsigned u1CLFSH : 1;
331 /** Bit 20 - Reserved. */
332 unsigned u1Reserved2 : 1;
333 /** Bit 21 - DS - Debug Store. */
334 unsigned u1DS : 1;
335 /** Bit 22 - ACPI - Thermal Monitor and Software Controlled Clock Facilities. */
336 unsigned u1ACPI : 1;
337 /** Bit 23 - MMX - Intel MMX 'Technology'. */
338 unsigned u1MMX : 1;
339 /** Bit 24 - FXSR - FXSAVE and FXRSTOR Instructions. */
340 unsigned u1FXSR : 1;
341 /** Bit 25 - SSE - SSE Support. */
342 unsigned u1SSE : 1;
343 /** Bit 26 - SSE2 - SSE2 Support. */
344 unsigned u1SSE2 : 1;
345 /** Bit 27 - SS - Self Snoop. */
346 unsigned u1SS : 1;
347 /** Bit 28 - HTT - Hyper-Threading Technology. */
348 unsigned u1HTT : 1;
349 /** Bit 29 - TM - Thermal Monitor. */
350 unsigned u1TM : 1;
351 /** Bit 30 - Reserved - . */
352 unsigned u1Reserved3 : 1;
353 /** Bit 31 - PBE - Pending Break Enabled. */
354 unsigned u1PBE : 1;
355} X86CPUIDFEATEDX;
356#else /* VBOX_FOR_DTRACE_LIB */
357typedef uint32_t X86CPUIDFEATEDX;
358#endif /* VBOX_FOR_DTRACE_LIB */
359/** Pointer to CPUID Feature Information - EDX. */
360typedef X86CPUIDFEATEDX *PX86CPUIDFEATEDX;
361/** Pointer to const CPUID Feature Information - EDX. */
362typedef const X86CPUIDFEATEDX *PCX86CPUIDFEATEDX;
363
364/** @name CPUID Vendor information.
365 * CPUID query with EAX=0.
366 * @{
367 */
368#define X86_CPUID_VENDOR_INTEL_EBX 0x756e6547 /* Genu */
369#define X86_CPUID_VENDOR_INTEL_ECX 0x6c65746e /* ntel */
370#define X86_CPUID_VENDOR_INTEL_EDX 0x49656e69 /* ineI */
371
372#define X86_CPUID_VENDOR_AMD_EBX 0x68747541 /* Auth */
373#define X86_CPUID_VENDOR_AMD_ECX 0x444d4163 /* cAMD */
374#define X86_CPUID_VENDOR_AMD_EDX 0x69746e65 /* enti */
375
376#define X86_CPUID_VENDOR_VIA_EBX 0x746e6543 /* Cent */
377#define X86_CPUID_VENDOR_VIA_ECX 0x736c7561 /* auls */
378#define X86_CPUID_VENDOR_VIA_EDX 0x48727561 /* aurH */
379/** @} */
380
381
382/** @name CPUID Feature information.
383 * CPUID query with EAX=1.
384 * @{
385 */
386/** ECX Bit 0 - SSE3 - Supports SSE3 or not. */
387#define X86_CPUID_FEATURE_ECX_SSE3 RT_BIT(0)
388/** ECX Bit 1 - PCLMUL - PCLMULQDQ support (for AES-GCM). */
389#define X86_CPUID_FEATURE_ECX_PCLMUL RT_BIT(1)
390/** ECX Bit 2 - DTES64 - DS Area 64-bit Layout. */
391#define X86_CPUID_FEATURE_ECX_DTES64 RT_BIT(2)
392/** ECX Bit 3 - MONITOR - Supports MONITOR/MWAIT. */
393#define X86_CPUID_FEATURE_ECX_MONITOR RT_BIT(3)
394/** ECX Bit 4 - CPL-DS - CPL Qualified Debug Store. */
395#define X86_CPUID_FEATURE_ECX_CPLDS RT_BIT(4)
396/** ECX Bit 5 - VMX - Virtual Machine Technology. */
397#define X86_CPUID_FEATURE_ECX_VMX RT_BIT(5)
398/** ECX Bit 6 - SMX - Safer Mode Extensions. */
399#define X86_CPUID_FEATURE_ECX_SMX RT_BIT(6)
400/** ECX Bit 7 - EST - Enh. SpeedStep Tech. */
401#define X86_CPUID_FEATURE_ECX_EST RT_BIT(7)
402/** ECX Bit 8 - TM2 - Terminal Monitor 2. */
403#define X86_CPUID_FEATURE_ECX_TM2 RT_BIT(8)
404/** ECX Bit 9 - SSSE3 - Supplemental Streaming SIMD Extensions 3. */
405#define X86_CPUID_FEATURE_ECX_SSSE3 RT_BIT(9)
406/** ECX Bit 10 - CNTX-ID - L1 Context ID. */
407#define X86_CPUID_FEATURE_ECX_CNTXID RT_BIT(10)
408/** ECX Bit 12 - FMA. */
409#define X86_CPUID_FEATURE_ECX_FMA RT_BIT(12)
410/** ECX Bit 13 - CX16 - CMPXCHG16B. */
411#define X86_CPUID_FEATURE_ECX_CX16 RT_BIT(13)
412/** ECX Bit 14 - xTPR Update Control. Processor supports changing IA32_MISC_ENABLES[bit 23]. */
413#define X86_CPUID_FEATURE_ECX_TPRUPDATE RT_BIT(14)
414/** ECX Bit 15 - PDCM - Perf/Debug Capability MSR. */
415#define X86_CPUID_FEATURE_ECX_PDCM RT_BIT(15)
416/** ECX Bit 17 - PCID - Process-context identifiers. */
417#define X86_CPUID_FEATURE_ECX_PCID RT_BIT(17)
418/** ECX Bit 18 - DCA - Direct Cache Access. */
419#define X86_CPUID_FEATURE_ECX_DCA RT_BIT(18)
420/** ECX Bit 19 - SSE4_1 - Supports SSE4_1 or not. */
421#define X86_CPUID_FEATURE_ECX_SSE4_1 RT_BIT(19)
422/** ECX Bit 20 - SSE4_2 - Supports SSE4_2 or not. */
423#define X86_CPUID_FEATURE_ECX_SSE4_2 RT_BIT(20)
424/** ECX Bit 21 - x2APIC support. */
425#define X86_CPUID_FEATURE_ECX_X2APIC RT_BIT(21)
426/** ECX Bit 22 - MOVBE instruction. */
427#define X86_CPUID_FEATURE_ECX_MOVBE RT_BIT(22)
428/** ECX Bit 23 - POPCNT instruction. */
429#define X86_CPUID_FEATURE_ECX_POPCNT RT_BIT(23)
430/** ECX Bir 24 - TSC-Deadline. */
431#define X86_CPUID_FEATURE_ECX_TSCDEADL RT_BIT(24)
432/** ECX Bit 25 - AES instructions. */
433#define X86_CPUID_FEATURE_ECX_AES RT_BIT(25)
434/** ECX Bit 26 - XSAVE instruction. */
435#define X86_CPUID_FEATURE_ECX_XSAVE RT_BIT(26)
436/** ECX Bit 27 - OSXSAVE instruction. */
437#define X86_CPUID_FEATURE_ECX_OSXSAVE RT_BIT(27)
438/** ECX Bit 28 - AVX. */
439#define X86_CPUID_FEATURE_ECX_AVX RT_BIT(28)
440/** ECX Bit 31 - Hypervisor Present (software only). */
441#define X86_CPUID_FEATURE_ECX_HVP RT_BIT(31)
442
443
444/** Bit 0 - FPU - x87 FPU on Chip. */
445#define X86_CPUID_FEATURE_EDX_FPU RT_BIT(0)
446/** Bit 1 - VME - Virtual 8086 Mode Enhancements. */
447#define X86_CPUID_FEATURE_EDX_VME RT_BIT(1)
448/** Bit 2 - DE - Debugging extensions. */
449#define X86_CPUID_FEATURE_EDX_DE RT_BIT(2)
450/** Bit 3 - PSE - Page Size Extension. */
451#define X86_CPUID_FEATURE_EDX_PSE RT_BIT(3)
452/** Bit 4 - TSC - Time Stamp Counter. */
453#define X86_CPUID_FEATURE_EDX_TSC RT_BIT(4)
454/** Bit 5 - MSR - Model Specific Registers RDMSR and WRMSR Instructions. */
455#define X86_CPUID_FEATURE_EDX_MSR RT_BIT(5)
456/** Bit 6 - PAE - Physical Address Extension. */
457#define X86_CPUID_FEATURE_EDX_PAE RT_BIT(6)
458/** Bit 7 - MCE - Machine Check Exception. */
459#define X86_CPUID_FEATURE_EDX_MCE RT_BIT(7)
460/** Bit 8 - CX8 - CMPXCHG8B instruction. */
461#define X86_CPUID_FEATURE_EDX_CX8 RT_BIT(8)
462/** Bit 9 - APIC - APIC On-Chip. */
463#define X86_CPUID_FEATURE_EDX_APIC RT_BIT(9)
464/** Bit 11 - SEP - SYSENTER and SYSEXIT Present. */
465#define X86_CPUID_FEATURE_EDX_SEP RT_BIT(11)
466/** Bit 12 - MTRR - Memory Type Range Registers. */
467#define X86_CPUID_FEATURE_EDX_MTRR RT_BIT(12)
468/** Bit 13 - PGE - PTE Global Bit. */
469#define X86_CPUID_FEATURE_EDX_PGE RT_BIT(13)
470/** Bit 14 - MCA - Machine Check Architecture. */
471#define X86_CPUID_FEATURE_EDX_MCA RT_BIT(14)
472/** Bit 15 - CMOV - Conditional Move Instructions. */
473#define X86_CPUID_FEATURE_EDX_CMOV RT_BIT(15)
474/** Bit 16 - PAT - Page Attribute Table. */
475#define X86_CPUID_FEATURE_EDX_PAT RT_BIT(16)
476/** Bit 17 - PSE-36 - 36-bit Page Size Extention. */
477#define X86_CPUID_FEATURE_EDX_PSE36 RT_BIT(17)
478/** Bit 18 - PSN - Processor Serial Number. */
479#define X86_CPUID_FEATURE_EDX_PSN RT_BIT(18)
480/** Bit 19 - CLFSH - CLFLUSH Instruction. */
481#define X86_CPUID_FEATURE_EDX_CLFSH RT_BIT(19)
482/** Bit 21 - DS - Debug Store. */
483#define X86_CPUID_FEATURE_EDX_DS RT_BIT(21)
484/** Bit 22 - ACPI - Termal Monitor and Software Controlled Clock Facilities. */
485#define X86_CPUID_FEATURE_EDX_ACPI RT_BIT(22)
486/** Bit 23 - MMX - Intel MMX Technology. */
487#define X86_CPUID_FEATURE_EDX_MMX RT_BIT(23)
488/** Bit 24 - FXSR - FXSAVE and FXRSTOR Instructions. */
489#define X86_CPUID_FEATURE_EDX_FXSR RT_BIT(24)
490/** Bit 25 - SSE - SSE Support. */
491#define X86_CPUID_FEATURE_EDX_SSE RT_BIT(25)
492/** Bit 26 - SSE2 - SSE2 Support. */
493#define X86_CPUID_FEATURE_EDX_SSE2 RT_BIT(26)
494/** Bit 27 - SS - Self Snoop. */
495#define X86_CPUID_FEATURE_EDX_SS RT_BIT(27)
496/** Bit 28 - HTT - Hyper-Threading Technology. */
497#define X86_CPUID_FEATURE_EDX_HTT RT_BIT(28)
498/** Bit 29 - TM - Therm. Monitor. */
499#define X86_CPUID_FEATURE_EDX_TM RT_BIT(29)
500/** Bit 31 - PBE - Pending Break Enabled. */
501#define X86_CPUID_FEATURE_EDX_PBE RT_BIT(31)
502/** @} */
503
504/** @name CPUID mwait/monitor information.
505 * CPUID query with EAX=5.
506 * @{
507 */
508/** ECX Bit 0 - MWAITEXT - Supports mwait/monitor extensions or not. */
509#define X86_CPUID_MWAIT_ECX_EXT RT_BIT(0)
510/** ECX Bit 1 - MWAITBREAK - Break mwait for external interrupt even if EFLAGS.IF=0. */
511#define X86_CPUID_MWAIT_ECX_BREAKIRQIF0 RT_BIT(1)
512/** @} */
513
514
515/** @name CPUID Extended Feature information.
516 * CPUID query with EAX=0x80000001.
517 * @{
518 */
519/** ECX Bit 0 - LAHF/SAHF support in 64-bit mode. */
520#define X86_CPUID_EXT_FEATURE_ECX_LAHF_SAHF RT_BIT(0)
521
522/** EDX Bit 11 - SYSCALL/SYSRET. */
523#define X86_CPUID_EXT_FEATURE_EDX_SYSCALL RT_BIT(11)
524/** EDX Bit 20 - No-Execute/Execute-Disable. */
525#define X86_CPUID_EXT_FEATURE_EDX_NX RT_BIT(20)
526/** EDX Bit 26 - 1 GB large page. */
527#define X86_CPUID_EXT_FEATURE_EDX_PAGE1GB RT_BIT(26)
528/** EDX Bit 27 - RDTSCP. */
529#define X86_CPUID_EXT_FEATURE_EDX_RDTSCP RT_BIT(27)
530/** EDX Bit 29 - AMD Long Mode/Intel-64 Instructions. */
531#define X86_CPUID_EXT_FEATURE_EDX_LONG_MODE RT_BIT(29)
532/** @}*/
533
534/** @name CPUID AMD Feature information.
535 * CPUID query with EAX=0x80000001.
536 * @{
537 */
538/** Bit 0 - FPU - x87 FPU on Chip. */
539#define X86_CPUID_AMD_FEATURE_EDX_FPU RT_BIT(0)
540/** Bit 1 - VME - Virtual 8086 Mode Enhancements. */
541#define X86_CPUID_AMD_FEATURE_EDX_VME RT_BIT(1)
542/** Bit 2 - DE - Debugging extensions. */
543#define X86_CPUID_AMD_FEATURE_EDX_DE RT_BIT(2)
544/** Bit 3 - PSE - Page Size Extension. */
545#define X86_CPUID_AMD_FEATURE_EDX_PSE RT_BIT(3)
546/** Bit 4 - TSC - Time Stamp Counter. */
547#define X86_CPUID_AMD_FEATURE_EDX_TSC RT_BIT(4)
548/** Bit 5 - MSR - K86 Model Specific Registers RDMSR and WRMSR Instructions. */
549#define X86_CPUID_AMD_FEATURE_EDX_MSR RT_BIT(5)
550/** Bit 6 - PAE - Physical Address Extension. */
551#define X86_CPUID_AMD_FEATURE_EDX_PAE RT_BIT(6)
552/** Bit 7 - MCE - Machine Check Exception. */
553#define X86_CPUID_AMD_FEATURE_EDX_MCE RT_BIT(7)
554/** Bit 8 - CX8 - CMPXCHG8B instruction. */
555#define X86_CPUID_AMD_FEATURE_EDX_CX8 RT_BIT(8)
556/** Bit 9 - APIC - APIC On-Chip. */
557#define X86_CPUID_AMD_FEATURE_EDX_APIC RT_BIT(9)
558/** Bit 12 - MTRR - Memory Type Range Registers. */
559#define X86_CPUID_AMD_FEATURE_EDX_MTRR RT_BIT(12)
560/** Bit 13 - PGE - PTE Global Bit. */
561#define X86_CPUID_AMD_FEATURE_EDX_PGE RT_BIT(13)
562/** Bit 14 - MCA - Machine Check Architecture. */
563#define X86_CPUID_AMD_FEATURE_EDX_MCA RT_BIT(14)
564/** Bit 15 - CMOV - Conditional Move Instructions. */
565#define X86_CPUID_AMD_FEATURE_EDX_CMOV RT_BIT(15)
566/** Bit 16 - PAT - Page Attribute Table. */
567#define X86_CPUID_AMD_FEATURE_EDX_PAT RT_BIT(16)
568/** Bit 17 - PSE-36 - 36-bit Page Size Extention. */
569#define X86_CPUID_AMD_FEATURE_EDX_PSE36 RT_BIT(17)
570/** Bit 22 - AXMMX - AMD Extensions to MMX Instructions. */
571#define X86_CPUID_AMD_FEATURE_EDX_AXMMX RT_BIT(22)
572/** Bit 23 - MMX - Intel MMX Technology. */
573#define X86_CPUID_AMD_FEATURE_EDX_MMX RT_BIT(23)
574/** Bit 24 - FXSR - FXSAVE and FXRSTOR Instructions. */
575#define X86_CPUID_AMD_FEATURE_EDX_FXSR RT_BIT(24)
576/** Bit 25 - FFXSR - AMD fast FXSAVE and FXRSTOR Instructions. */
577#define X86_CPUID_AMD_FEATURE_EDX_FFXSR RT_BIT(25)
578/** Bit 30 - 3DNOWEXT - AMD Extensions to 3DNow. */
579#define X86_CPUID_AMD_FEATURE_EDX_3DNOW_EX RT_BIT(30)
580/** Bit 31 - 3DNOW - AMD 3DNow. */
581#define X86_CPUID_AMD_FEATURE_EDX_3DNOW RT_BIT(31)
582
583/** Bit 1 - CMPL - Core multi-processing legacy mode. */
584#define X86_CPUID_AMD_FEATURE_ECX_CMPL RT_BIT(1)
585/** Bit 2 - SVM - AMD VM extensions. */
586#define X86_CPUID_AMD_FEATURE_ECX_SVM RT_BIT(2)
587/** Bit 3 - EXTAPIC - AMD extended APIC registers starting at 0x400. */
588#define X86_CPUID_AMD_FEATURE_ECX_EXT_APIC RT_BIT(3)
589/** Bit 4 - CR8L - AMD LOCK MOV CR0 means MOV CR8. */
590#define X86_CPUID_AMD_FEATURE_ECX_CR8L RT_BIT(4)
591/** Bit 5 - ABM - AMD Advanced bit manipulation. LZCNT instruction support. */
592#define X86_CPUID_AMD_FEATURE_ECX_ABM RT_BIT(5)
593/** Bit 6 - SSE4A - AMD EXTRQ, INSERTQ, MOVNTSS, and MOVNTSD instruction support. */
594#define X86_CPUID_AMD_FEATURE_ECX_SSE4A RT_BIT(6)
595/** Bit 7 - MISALIGNSSE - AMD Misaligned SSE mode. */
596#define X86_CPUID_AMD_FEATURE_ECX_MISALNSSE RT_BIT(7)
597/** Bit 8 - 3DNOWPRF - AMD PREFETCH and PREFETCHW instruction support. */
598#define X86_CPUID_AMD_FEATURE_ECX_3DNOWPRF RT_BIT(8)
599/** Bit 9 - OSVW - AMD OS visible workaround. */
600#define X86_CPUID_AMD_FEATURE_ECX_OSVW RT_BIT(9)
601/** Bit 10 - IBS - Instruct based sampling. */
602#define X86_CPUID_AMD_FEATURE_ECX_IBS RT_BIT(10)
603/** Bit 11 - SSE5 - SSE5 instruction support. */
604#define X86_CPUID_AMD_FEATURE_ECX_SSE5 RT_BIT(11)
605/** Bit 12 - SKINIT - AMD SKINIT: SKINIT, STGI, and DEV support. */
606#define X86_CPUID_AMD_FEATURE_ECX_SKINIT RT_BIT(12)
607/** Bit 13 - WDT - AMD Watchdog timer support. */
608#define X86_CPUID_AMD_FEATURE_ECX_WDT RT_BIT(13)
609
610/** @} */
611
612
613/** @name CPUID AMD Feature information.
614 * CPUID query with EAX=0x80000007.
615 * @{
616 */
617/** Bit 0 - TS - Temperature Sensor. */
618#define X86_CPUID_AMD_ADVPOWER_EDX_TS RT_BIT(0)
619/** Bit 1 - FID - Frequency ID Control. */
620#define X86_CPUID_AMD_ADVPOWER_EDX_FID RT_BIT(1)
621/** Bit 2 - VID - Voltage ID Control. */
622#define X86_CPUID_AMD_ADVPOWER_EDX_VID RT_BIT(2)
623/** Bit 3 - TTP - THERMTRIP. */
624#define X86_CPUID_AMD_ADVPOWER_EDX_TTP RT_BIT(3)
625/** Bit 4 - TM - Hardware Thermal Control. */
626#define X86_CPUID_AMD_ADVPOWER_EDX_TM RT_BIT(4)
627/** Bit 5 - STC - Software Thermal Control. */
628#define X86_CPUID_AMD_ADVPOWER_EDX_STC RT_BIT(5)
629/** Bit 6 - MC - 100 Mhz Multiplier Control. */
630#define X86_CPUID_AMD_ADVPOWER_EDX_MC RT_BIT(6)
631/** Bit 7 - HWPSTATE - Hardware P-State Control. */
632#define X86_CPUID_AMD_ADVPOWER_EDX_HWPSTATE RT_BIT(7)
633/** Bit 8 - TSCINVAR - TSC Invariant. */
634#define X86_CPUID_AMD_ADVPOWER_EDX_TSCINVAR RT_BIT(8)
635/** @} */
636
637
638/** @name CR0
639 * @{ */
640/** Bit 0 - PE - Protection Enabled */
641#define X86_CR0_PE RT_BIT(0)
642#define X86_CR0_PROTECTION_ENABLE RT_BIT(0)
643/** Bit 1 - MP - Monitor Coprocessor */
644#define X86_CR0_MP RT_BIT(1)
645#define X86_CR0_MONITOR_COPROCESSOR RT_BIT(1)
646/** Bit 2 - EM - Emulation. */
647#define X86_CR0_EM RT_BIT(2)
648#define X86_CR0_EMULATE_FPU RT_BIT(2)
649/** Bit 3 - TS - Task Switch. */
650#define X86_CR0_TS RT_BIT(3)
651#define X86_CR0_TASK_SWITCH RT_BIT(3)
652/** Bit 4 - ET - Extension flag. ('hardcoded' to 1) */
653#define X86_CR0_ET RT_BIT(4)
654#define X86_CR0_EXTENSION_TYPE RT_BIT(4)
655/** Bit 5 - NE - Numeric error. */
656#define X86_CR0_NE RT_BIT(5)
657#define X86_CR0_NUMERIC_ERROR RT_BIT(5)
658/** Bit 16 - WP - Write Protect. */
659#define X86_CR0_WP RT_BIT(16)
660#define X86_CR0_WRITE_PROTECT RT_BIT(16)
661/** Bit 18 - AM - Alignment Mask. */
662#define X86_CR0_AM RT_BIT(18)
663#define X86_CR0_ALIGMENT_MASK RT_BIT(18)
664/** Bit 29 - NW - Not Write-though. */
665#define X86_CR0_NW RT_BIT(29)
666#define X86_CR0_NOT_WRITE_THROUGH RT_BIT(29)
667/** Bit 30 - WP - Cache Disable. */
668#define X86_CR0_CD RT_BIT(30)
669#define X86_CR0_CACHE_DISABLE RT_BIT(30)
670/** Bit 31 - PG - Paging. */
671#define X86_CR0_PG RT_BIT(31)
672#define X86_CR0_PAGING RT_BIT(31)
673/** @} */
674
675
676/** @name CR3
677 * @{ */
678/** Bit 3 - PWT - Page-level Writes Transparent. */
679#define X86_CR3_PWT RT_BIT(3)
680/** Bit 4 - PCD - Page-level Cache Disable. */
681#define X86_CR3_PCD RT_BIT(4)
682/** Bits 12-31 - - Page directory page number. */
683#define X86_CR3_PAGE_MASK (0xfffff000)
684/** Bits 5-31 - - PAE Page directory page number. */
685#define X86_CR3_PAE_PAGE_MASK (0xffffffe0)
686/** Bits 12-51 - - AMD64 Page directory page number. */
687#define X86_CR3_AMD64_PAGE_MASK UINT64_C(0x000ffffffffff000)
688/** @} */
689
690
691/** @name CR4
692 * @{ */
693/** Bit 0 - VME - Virtual-8086 Mode Extensions. */
694#define X86_CR4_VME RT_BIT(0)
695/** Bit 1 - PVI - Protected-Mode Virtual Interrupts. */
696#define X86_CR4_PVI RT_BIT(1)
697/** Bit 2 - TSD - Time Stamp Disable. */
698#define X86_CR4_TSD RT_BIT(2)
699/** Bit 3 - DE - Debugging Extensions. */
700#define X86_CR4_DE RT_BIT(3)
701/** Bit 4 - PSE - Page Size Extension. */
702#define X86_CR4_PSE RT_BIT(4)
703/** Bit 5 - PAE - Physical Address Extension. */
704#define X86_CR4_PAE RT_BIT(5)
705/** Bit 6 - MCE - Machine-Check Enable. */
706#define X86_CR4_MCE RT_BIT(6)
707/** Bit 7 - PGE - Page Global Enable. */
708#define X86_CR4_PGE RT_BIT(7)
709/** Bit 8 - PCE - Performance-Monitoring Counter Enable. */
710#define X86_CR4_PCE RT_BIT(8)
711/** Bit 9 - OSFSXR - Operating System Support for FXSAVE and FXRSTORE instruction. */
712#define X86_CR4_OSFSXR RT_BIT(9)
713/** Bit 10 - OSXMMEEXCPT - Operating System Support for Unmasked SIMD Floating-Point Exceptions. */
714#define X86_CR4_OSXMMEEXCPT RT_BIT(10)
715/** Bit 13 - VMXE - VMX mode is enabled. */
716#define X86_CR4_VMXE RT_BIT(13)
717/** Bit 14 - SMXE - Safer Mode Extensions Enabled. */
718#define X86_CR4_SMXE RT_BIT(14)
719/** Bit 17 - PCIDE - Process-Context Identifiers Enabled. */
720#define X86_CR4_PCIDE RT_BIT(17)
721/** Bit 18 - OSXSAVE - Operating System Support for XSAVE and processor
722 * extended states. */
723#define X86_CR4_OSXSAVE RT_BIT(18)
724/** Bit 20 - SMEP - Supervisor-mode Execution Prevention enabled. */
725#define X86_CR4_SMEP RT_BIT(20)
726/** @} */
727
728
729/** @name DR6
730 * @{ */
731/** Bit 0 - B0 - Breakpoint 0 condition detected. */
732#define X86_DR6_B0 RT_BIT(0)
733/** Bit 1 - B1 - Breakpoint 1 condition detected. */
734#define X86_DR6_B1 RT_BIT(1)
735/** Bit 2 - B2 - Breakpoint 2 condition detected. */
736#define X86_DR6_B2 RT_BIT(2)
737/** Bit 3 - B3 - Breakpoint 3 condition detected. */
738#define X86_DR6_B3 RT_BIT(3)
739/** Bit 13 - BD - Debug register access detected. Corresponds to the X86_DR7_GD bit. */
740#define X86_DR6_BD RT_BIT(13)
741/** Bit 14 - BS - Single step */
742#define X86_DR6_BS RT_BIT(14)
743/** Bit 15 - BT - Task switch. (TSS T bit.) */
744#define X86_DR6_BT RT_BIT(15)
745/** Value of DR6 after powerup/reset. */
746#define X86_DR6_INIT_VAL UINT64_C(0xFFFF0FF0)
747/** @} */
748
749
750/** @name DR7
751 * @{ */
752/** Bit 0 - L0 - Local breakpoint enable. Cleared on task switch. */
753#define X86_DR7_L0 RT_BIT(0)
754/** Bit 1 - G0 - Global breakpoint enable. Not cleared on task switch. */
755#define X86_DR7_G0 RT_BIT(1)
756/** Bit 2 - L1 - Local breakpoint enable. Cleared on task switch. */
757#define X86_DR7_L1 RT_BIT(2)
758/** Bit 3 - G1 - Global breakpoint enable. Not cleared on task switch. */
759#define X86_DR7_G1 RT_BIT(3)
760/** Bit 4 - L2 - Local breakpoint enable. Cleared on task switch. */
761#define X86_DR7_L2 RT_BIT(4)
762/** Bit 5 - G2 - Global breakpoint enable. Not cleared on task switch. */
763#define X86_DR7_G2 RT_BIT(5)
764/** Bit 6 - L3 - Local breakpoint enable. Cleared on task switch. */
765#define X86_DR7_L3 RT_BIT(6)
766/** Bit 7 - G3 - Global breakpoint enable. Not cleared on task switch. */
767#define X86_DR7_G3 RT_BIT(7)
768/** Bit 8 - LE - Local breakpoint exact. (Not supported (read ignored) by P6 and later.) */
769#define X86_DR7_LE RT_BIT(8)
770/** Bit 9 - GE - Local breakpoint exact. (Not supported (read ignored) by P6 and later.) */
771#define X86_DR7_GE RT_BIT(9)
772
773/** Bit 13 - GD - General detect enable. Enables emulators to get exceptions when
774 * any DR register is accessed. */
775#define X86_DR7_GD RT_BIT(13)
776/** Bit 16 & 17 - R/W0 - Read write field 0. Values X86_DR7_RW_*. */
777#define X86_DR7_RW0_MASK (3 << 16)
778/** Bit 18 & 19 - LEN0 - Length field 0. Values X86_DR7_LEN_*. */
779#define X86_DR7_LEN0_MASK (3 << 18)
780/** Bit 20 & 21 - R/W1 - Read write field 0. Values X86_DR7_RW_*. */
781#define X86_DR7_RW1_MASK (3 << 20)
782/** Bit 22 & 23 - LEN1 - Length field 0. Values X86_DR7_LEN_*. */
783#define X86_DR7_LEN1_MASK (3 << 22)
784/** Bit 24 & 25 - R/W2 - Read write field 0. Values X86_DR7_RW_*. */
785#define X86_DR7_RW2_MASK (3 << 24)
786/** Bit 26 & 27 - LEN2 - Length field 0. Values X86_DR7_LEN_*. */
787#define X86_DR7_LEN2_MASK (3 << 26)
788/** Bit 28 & 29 - R/W3 - Read write field 0. Values X86_DR7_RW_*. */
789#define X86_DR7_RW3_MASK (3 << 28)
790/** Bit 30 & 31 - LEN3 - Length field 0. Values X86_DR7_LEN_*. */
791#define X86_DR7_LEN3_MASK (3 << 30)
792
793/** Bits which must be 1s. */
794#define X86_DR7_MB1_MASK (RT_BIT(10))
795
796/** Calcs the L bit of Nth breakpoint.
797 * @param iBp The breakpoint number [0..3].
798 */
799#define X86_DR7_L(iBp) ( UINT32_C(1) << (iBp * 2) )
800
801/** Calcs the G bit of Nth breakpoint.
802 * @param iBp The breakpoint number [0..3].
803 */
804#define X86_DR7_G(iBp) ( UINT32_C(1) << (iBp * 2 + 1) )
805
806/** @name Read/Write values.
807 * @{ */
808/** Break on instruction fetch only. */
809#define X86_DR7_RW_EO 0U
810/** Break on write only. */
811#define X86_DR7_RW_WO 1U
812/** Break on I/O read/write. This is only defined if CR4.DE is set. */
813#define X86_DR7_RW_IO 2U
814/** Break on read or write (but not instruction fetches). */
815#define X86_DR7_RW_RW 3U
816/** @} */
817
818/** Shifts a X86_DR7_RW_* value to its right place.
819 * @param iBp The breakpoint number [0..3].
820 * @param fRw One of the X86_DR7_RW_* value.
821 */
822#define X86_DR7_RW(iBp, fRw) ( (fRw) << ((iBp) * 4 + 16) )
823
824/** @name Length values.
825 * @{ */
826#define X86_DR7_LEN_BYTE 0U
827#define X86_DR7_LEN_WORD 1U
828#define X86_DR7_LEN_QWORD 2U /**< AMD64 long mode only. */
829#define X86_DR7_LEN_DWORD 3U
830/** @} */
831
832/** Shifts a X86_DR7_LEN_* value to its right place.
833 * @param iBp The breakpoint number [0..3].
834 * @param cb One of the X86_DR7_LEN_* values.
835 */
836#define X86_DR7_LEN(iBp, cb) ( (cb) << ((iBp) * 4 + 18) )
837
838/** Fetch the breakpoint length bits from the DR7 value.
839 * @param uDR7 DR7 value
840 * @param iBp The breakpoint number [0..3].
841 */
842#define X86_DR7_GET_LEN(uDR7, iBp) ( ( (uDR7) >> ((iBp) * 4 + 18) ) & 0x3U)
843
844/** Mask used to check if any breakpoints are enabled. */
845#define X86_DR7_ENABLED_MASK (RT_BIT(0) | RT_BIT(1) | RT_BIT(2) | RT_BIT(3) | RT_BIT(4) | RT_BIT(5) | RT_BIT(6) | RT_BIT(7))
846
847/** Mask used to check if any io breakpoints are set. */
848#define X86_DR7_IO_ENABLED_MASK (X86_DR7_RW(0, X86_DR7_RW_IO) | X86_DR7_RW(1, X86_DR7_RW_IO) | X86_DR7_RW(2, X86_DR7_RW_IO) | X86_DR7_RW(3, X86_DR7_RW_IO))
849
850/** Value of DR7 after powerup/reset. */
851#define X86_DR7_INIT_VAL 0x400
852/** @} */
853
854
855/** @name Machine Specific Registers
856 * @{
857 */
858
859/** Time Stamp Counter. */
860#define MSR_IA32_TSC 0x10
861
862#define MSR_IA32_PLATFORM_ID 0x17
863
864#ifndef MSR_IA32_APICBASE /* qemu cpu.h kludge */
865#define MSR_IA32_APICBASE 0x1b
866#endif
867
868/** CPU Feature control. */
869#define MSR_IA32_FEATURE_CONTROL 0x3A
870#define MSR_IA32_FEATURE_CONTROL_LOCK RT_BIT(0)
871#define MSR_IA32_FEATURE_CONTROL_VMXON RT_BIT(2)
872
873/** BIOS update trigger (microcode update). */
874#define MSR_IA32_BIOS_UPDT_TRIG 0x79
875
876/** BIOS update signature (microcode). */
877#define MSR_IA32_BIOS_SIGN_ID 0x8B
878
879/** General performance counter no. 0. */
880#define MSR_IA32_PMC0 0xC1
881/** General performance counter no. 1. */
882#define MSR_IA32_PMC1 0xC2
883/** General performance counter no. 2. */
884#define MSR_IA32_PMC2 0xC3
885/** General performance counter no. 3. */
886#define MSR_IA32_PMC3 0xC4
887
888/** Nehalem power control. */
889#define MSR_IA32_PLATFORM_INFO 0xCE
890
891/** Get FSB clock status (Intel-specific). */
892#define MSR_IA32_FSB_CLOCK_STS 0xCD
893
894/** MTRR Capabilities. */
895#define MSR_IA32_MTRR_CAP 0xFE
896
897
898#ifndef MSR_IA32_SYSENTER_CS /* qemu cpu.h kludge */
899/** SYSENTER_CS - the R0 CS, indirectly giving R0 SS, R3 CS and R3 DS.
900 * R0 SS == CS + 8
901 * R3 CS == CS + 16
902 * R3 SS == CS + 24
903 */
904#define MSR_IA32_SYSENTER_CS 0x174
905/** SYSENTER_ESP - the R0 ESP. */
906#define MSR_IA32_SYSENTER_ESP 0x175
907/** SYSENTER_EIP - the R0 EIP. */
908#define MSR_IA32_SYSENTER_EIP 0x176
909#endif
910
911/** Machine Check Global Capabilities Register. */
912#define MSR_IA32_MCP_CAP 0x179
913/** Machine Check Global Status Register. */
914#define MSR_IA32_MCP_STATUS 0x17A
915/** Machine Check Global Control Register. */
916#define MSR_IA32_MCP_CTRL 0x17B
917
918/** Trace/Profile Resource Control (R/W) */
919#define MSR_IA32_DEBUGCTL 0x1D9
920
921/** Page Attribute Table. */
922#define MSR_IA32_CR_PAT 0x277
923
924/** Performance counter MSRs. (Intel only) */
925#define MSR_IA32_PERFEVTSEL0 0x186
926#define MSR_IA32_PERFEVTSEL1 0x187
927#define MSR_IA32_FLEX_RATIO 0x194
928#define MSR_IA32_PERF_STATUS 0x198
929#define MSR_IA32_PERF_CTL 0x199
930#define MSR_IA32_THERM_STATUS 0x19c
931
932/** Enable misc. processor features (R/W). */
933#define MSR_IA32_MISC_ENABLE 0x1A0
934/** Enable fast-strings feature (for REP MOVS and REP STORS). */
935#define MSR_IA32_MISC_ENABLE_FAST_STRINGS RT_BIT(0)
936/** Automatic Thermal Control Circuit Enable (R/W). */
937#define MSR_IA32_MISC_ENABLE_TCC RT_BIT(3)
938/** Performance Monitoring Available (R). */
939#define MSR_IA32_MISC_ENABLE_PERF_MON RT_BIT(7)
940/** Branch Trace Storage Unavailable (R/O). */
941#define MSR_IA32_MISC_ENABLE_BTS_UNAVAIL RT_BIT(11)
942/** Precise Event Based Sampling (PEBS) Unavailable (R/O). */
943#define MSR_IA32_MISC_ENABLE_PEBS_UNAVAIL RT_BIT(12)
944/** Enhanced Intel SpeedStep Technology Enable (R/W). */
945#define MSR_IA32_MISC_ENABLE_SST_ENABLE RT_BIT(16)
946/** If MONITOR/MWAIT is supported (R/W). */
947#define MSR_IA32_MISC_ENABLE_MONITOR RT_BIT(18)
948/** Limit CPUID Maxval to 3 leafs (R/W). */
949#define MSR_IA32_MISC_ENABLE_LIMIT_CPUID RT_BIT(22)
950/** When set to 1, xTPR messages are disabled (R/W). */
951#define MSR_IA32_MISC_ENABLE_XTPR_MSG_DISABLE RT_BIT(23)
952/** When set to 1, the Execute Disable Bit feature (XD Bit) is disabled (R/W). */
953#define MSR_IA32_MISC_ENABLE_XD_DISABLE RT_BIT(34)
954
955#define IA32_MTRR_PHYSBASE0 0x200
956#define IA32_MTRR_PHYSMASK0 0x201
957#define IA32_MTRR_PHYSBASE1 0x202
958#define IA32_MTRR_PHYSMASK1 0x203
959#define IA32_MTRR_PHYSBASE2 0x204
960#define IA32_MTRR_PHYSMASK2 0x205
961#define IA32_MTRR_PHYSBASE3 0x206
962#define IA32_MTRR_PHYSMASK3 0x207
963#define IA32_MTRR_PHYSBASE4 0x208
964#define IA32_MTRR_PHYSMASK4 0x209
965#define IA32_MTRR_PHYSBASE5 0x20a
966#define IA32_MTRR_PHYSMASK5 0x20b
967#define IA32_MTRR_PHYSBASE6 0x20c
968#define IA32_MTRR_PHYSMASK6 0x20d
969#define IA32_MTRR_PHYSBASE7 0x20e
970#define IA32_MTRR_PHYSMASK7 0x20f
971#define IA32_MTRR_PHYSBASE8 0x210
972#define IA32_MTRR_PHYSMASK8 0x211
973#define IA32_MTRR_PHYSBASE9 0x212
974#define IA32_MTRR_PHYSMASK9 0x213
975
976/** Fixed range MTRRs.
977 * @{ */
978#define IA32_MTRR_FIX64K_00000 0x250
979#define IA32_MTRR_FIX16K_80000 0x258
980#define IA32_MTRR_FIX16K_A0000 0x259
981#define IA32_MTRR_FIX4K_C0000 0x268
982#define IA32_MTRR_FIX4K_C8000 0x269
983#define IA32_MTRR_FIX4K_D0000 0x26a
984#define IA32_MTRR_FIX4K_D8000 0x26b
985#define IA32_MTRR_FIX4K_E0000 0x26c
986#define IA32_MTRR_FIX4K_E8000 0x26d
987#define IA32_MTRR_FIX4K_F0000 0x26e
988#define IA32_MTRR_FIX4K_F8000 0x26f
989/** @} */
990
991/** MTRR Default Range. */
992#define MSR_IA32_MTRR_DEF_TYPE 0x2FF
993
994#define MSR_IA32_MC0_CTL 0x400
995#define MSR_IA32_MC0_STATUS 0x401
996
997/** Basic VMX information. */
998#define MSR_IA32_VMX_BASIC_INFO 0x480
999/** Allowed settings for pin-based VM execution controls */
1000#define MSR_IA32_VMX_PINBASED_CTLS 0x481
1001/** Allowed settings for proc-based VM execution controls */
1002#define MSR_IA32_VMX_PROCBASED_CTLS 0x482
1003/** Allowed settings for the VMX exit controls. */
1004#define MSR_IA32_VMX_EXIT_CTLS 0x483
1005/** Allowed settings for the VMX entry controls. */
1006#define MSR_IA32_VMX_ENTRY_CTLS 0x484
1007/** Misc VMX info. */
1008#define MSR_IA32_VMX_MISC 0x485
1009/** Fixed cleared bits in CR0. */
1010#define MSR_IA32_VMX_CR0_FIXED0 0x486
1011/** Fixed set bits in CR0. */
1012#define MSR_IA32_VMX_CR0_FIXED1 0x487
1013/** Fixed cleared bits in CR4. */
1014#define MSR_IA32_VMX_CR4_FIXED0 0x488
1015/** Fixed set bits in CR4. */
1016#define MSR_IA32_VMX_CR4_FIXED1 0x489
1017/** Information for enumerating fields in the VMCS. */
1018#define MSR_IA32_VMX_VMCS_ENUM 0x48A
1019/** Allowed settings for the VM-functions controls. */
1020#define MSR_IA32_VMX_VMFUNC 0x491
1021/** Allowed settings for secondary proc-based VM execution controls */
1022#define MSR_IA32_VMX_PROCBASED_CTLS2 0x48B
1023/** EPT capabilities. */
1024#define MSR_IA32_VMX_EPT_VPID_CAP 0x48C
1025/** DS Save Area (R/W). */
1026#define MSR_IA32_DS_AREA 0x600
1027/** X2APIC MSR ranges. */
1028#define MSR_IA32_X2APIC_START 0x800
1029#define MSR_IA32_X2APIC_TPR 0x808
1030#define MSR_IA32_X2APIC_END 0xBFF
1031
1032/** K6 EFER - Extended Feature Enable Register. */
1033#define MSR_K6_EFER 0xc0000080
1034/** @todo document EFER */
1035/** Bit 0 - SCE - System call extensions (SYSCALL / SYSRET). (R/W) */
1036#define MSR_K6_EFER_SCE RT_BIT(0)
1037/** Bit 8 - LME - Long mode enabled. (R/W) */
1038#define MSR_K6_EFER_LME RT_BIT(8)
1039/** Bit 10 - LMA - Long mode active. (R) */
1040#define MSR_K6_EFER_LMA RT_BIT(10)
1041/** Bit 11 - NXE - No-Execute Page Protection Enabled. (R/W) */
1042#define MSR_K6_EFER_NXE RT_BIT(11)
1043/** Bit 12 - SVME - Secure VM Extension Enabled. (R/W) */
1044#define MSR_K6_EFER_SVME RT_BIT(12)
1045/** Bit 13 - LMSLE - Long Mode Segment Limit Enable. (R/W?) */
1046#define MSR_K6_EFER_LMSLE RT_BIT(13)
1047/** Bit 14 - FFXSR - Fast FXSAVE / FXRSTOR (skip XMM*). (R/W) */
1048#define MSR_K6_EFER_FFXSR RT_BIT(14)
1049/** K6 STAR - SYSCALL/RET targets. */
1050#define MSR_K6_STAR 0xc0000081
1051/** Shift value for getting the SYSRET CS and SS value. */
1052#define MSR_K6_STAR_SYSRET_CS_SS_SHIFT 48
1053/** Shift value for getting the SYSCALL CS and SS value. */
1054#define MSR_K6_STAR_SYSCALL_CS_SS_SHIFT 32
1055/** Selector mask for use after shifting. */
1056#define MSR_K6_STAR_SEL_MASK 0xffff
1057/** The mask which give the SYSCALL EIP. */
1058#define MSR_K6_STAR_SYSCALL_EIP_MASK 0xffffffff
1059/** K6 WHCR - Write Handling Control Register. */
1060#define MSR_K6_WHCR 0xc0000082
1061/** K6 UWCCR - UC/WC Cacheability Control Register. */
1062#define MSR_K6_UWCCR 0xc0000085
1063/** K6 PSOR - Processor State Observability Register. */
1064#define MSR_K6_PSOR 0xc0000087
1065/** K6 PFIR - Page Flush/Invalidate Register. */
1066#define MSR_K6_PFIR 0xc0000088
1067
1068/** Performance counter MSRs. (AMD only) */
1069#define MSR_K7_EVNTSEL0 0xc0010000
1070#define MSR_K7_EVNTSEL1 0xc0010001
1071#define MSR_K7_EVNTSEL2 0xc0010002
1072#define MSR_K7_EVNTSEL3 0xc0010003
1073#define MSR_K7_PERFCTR0 0xc0010004
1074#define MSR_K7_PERFCTR1 0xc0010005
1075#define MSR_K7_PERFCTR2 0xc0010006
1076#define MSR_K7_PERFCTR3 0xc0010007
1077
1078/** K8 LSTAR - Long mode SYSCALL target (RIP). */
1079#define MSR_K8_LSTAR 0xc0000082
1080/** K8 CSTAR - Compatibility mode SYSCALL target (RIP). */
1081#define MSR_K8_CSTAR 0xc0000083
1082/** K8 SF_MASK - SYSCALL flag mask. (aka SFMASK) */
1083#define MSR_K8_SF_MASK 0xc0000084
1084/** K8 FS.base - The 64-bit base FS register. */
1085#define MSR_K8_FS_BASE 0xc0000100
1086/** K8 GS.base - The 64-bit base GS register. */
1087#define MSR_K8_GS_BASE 0xc0000101
1088/** K8 KernelGSbase - Used with SWAPGS. */
1089#define MSR_K8_KERNEL_GS_BASE 0xc0000102
1090/** K8 TSC_AUX - Used with RDTSCP. */
1091#define MSR_K8_TSC_AUX 0xc0000103
1092#define MSR_K8_SYSCFG 0xc0010010
1093#define MSR_K8_HWCR 0xc0010015
1094#define MSR_K8_IORRBASE0 0xc0010016
1095#define MSR_K8_IORRMASK0 0xc0010017
1096#define MSR_K8_IORRBASE1 0xc0010018
1097#define MSR_K8_IORRMASK1 0xc0010019
1098#define MSR_K8_TOP_MEM1 0xc001001a
1099#define MSR_K8_TOP_MEM2 0xc001001d
1100#define MSR_K8_VM_CR 0xc0010114
1101#define MSR_K8_VM_CR_SVM_DISABLE RT_BIT(4)
1102
1103#define MSR_K8_IGNNE 0xc0010115
1104#define MSR_K8_SMM_CTL 0xc0010116
1105/** SVM - VM_HSAVE_PA - Physical address for saving and restoring
1106 * host state during world switch.
1107 */
1108#define MSR_K8_VM_HSAVE_PA 0xc0010117
1109
1110/** @} */
1111
1112
1113/** @name Page Table / Directory / Directory Pointers / L4.
1114 * @{
1115 */
1116
1117/** Page table/directory entry as an unsigned integer. */
1118typedef uint32_t X86PGUINT;
1119/** Pointer to a page table/directory table entry as an unsigned integer. */
1120typedef X86PGUINT *PX86PGUINT;
1121/** Pointer to an const page table/directory table entry as an unsigned integer. */
1122typedef X86PGUINT const *PCX86PGUINT;
1123
1124/** Number of entries in a 32-bit PT/PD. */
1125#define X86_PG_ENTRIES 1024
1126
1127
1128/** PAE page table/page directory/pdpt/l4/l5 entry as an unsigned integer. */
1129typedef uint64_t X86PGPAEUINT;
1130/** Pointer to a PAE page table/page directory/pdpt/l4/l5 entry as an unsigned integer. */
1131typedef X86PGPAEUINT *PX86PGPAEUINT;
1132/** Pointer to an const PAE page table/page directory/pdpt/l4/l5 entry as an unsigned integer. */
1133typedef X86PGPAEUINT const *PCX86PGPAEUINT;
1134
1135/** Number of entries in a PAE PT/PD. */
1136#define X86_PG_PAE_ENTRIES 512
1137/** Number of entries in a PAE PDPT. */
1138#define X86_PG_PAE_PDPE_ENTRIES 4
1139
1140/** Number of entries in an AMD64 PT/PD/PDPT/L4/L5. */
1141#define X86_PG_AMD64_ENTRIES X86_PG_PAE_ENTRIES
1142/** Number of entries in an AMD64 PDPT.
1143 * Just for complementing X86_PG_PAE_PDPE_ENTRIES, using X86_PG_AMD64_ENTRIES for this is fine too. */
1144#define X86_PG_AMD64_PDPE_ENTRIES X86_PG_AMD64_ENTRIES
1145
1146/** The size of a 4KB page. */
1147#define X86_PAGE_4K_SIZE _4K
1148/** The page shift of a 4KB page. */
1149#define X86_PAGE_4K_SHIFT 12
1150/** The 4KB page offset mask. */
1151#define X86_PAGE_4K_OFFSET_MASK 0xfff
1152/** The 4KB page base mask for virtual addresses. */
1153#define X86_PAGE_4K_BASE_MASK 0xfffffffffffff000ULL
1154/** The 4KB page base mask for virtual addresses - 32bit version. */
1155#define X86_PAGE_4K_BASE_MASK_32 0xfffff000U
1156
1157/** The size of a 2MB page. */
1158#define X86_PAGE_2M_SIZE _2M
1159/** The page shift of a 2MB page. */
1160#define X86_PAGE_2M_SHIFT 21
1161/** The 2MB page offset mask. */
1162#define X86_PAGE_2M_OFFSET_MASK 0x001fffff
1163/** The 2MB page base mask for virtual addresses. */
1164#define X86_PAGE_2M_BASE_MASK 0xffffffffffe00000ULL
1165/** The 2MB page base mask for virtual addresses - 32bit version. */
1166#define X86_PAGE_2M_BASE_MASK_32 0xffe00000U
1167
1168/** The size of a 4MB page. */
1169#define X86_PAGE_4M_SIZE _4M
1170/** The page shift of a 4MB page. */
1171#define X86_PAGE_4M_SHIFT 22
1172/** The 4MB page offset mask. */
1173#define X86_PAGE_4M_OFFSET_MASK 0x003fffff
1174/** The 4MB page base mask for virtual addresses. */
1175#define X86_PAGE_4M_BASE_MASK 0xffffffffffc00000ULL
1176/** The 4MB page base mask for virtual addresses - 32bit version. */
1177#define X86_PAGE_4M_BASE_MASK_32 0xffc00000U
1178
1179
1180
1181/** @name Page Table Entry
1182 * @{
1183 */
1184/** Bit 0 - P - Present bit. */
1185#define X86_PTE_BIT_P 0
1186/** Bit 1 - R/W - Read (clear) / Write (set) bit. */
1187#define X86_PTE_BIT_RW 1
1188/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. */
1189#define X86_PTE_BIT_US 2
1190/** Bit 3 - PWT - Page level write thru bit. */
1191#define X86_PTE_BIT_PWT 3
1192/** Bit 4 - PCD - Page level cache disable bit. */
1193#define X86_PTE_BIT_PCD 4
1194/** Bit 5 - A - Access bit. */
1195#define X86_PTE_BIT_A 5
1196/** Bit 6 - D - Dirty bit. */
1197#define X86_PTE_BIT_D 6
1198/** Bit 7 - PAT - Page Attribute Table index bit. Reserved and 0 if not supported. */
1199#define X86_PTE_BIT_PAT 7
1200/** Bit 8 - G - Global flag. */
1201#define X86_PTE_BIT_G 8
1202
1203/** Bit 0 - P - Present bit mask. */
1204#define X86_PTE_P RT_BIT(0)
1205/** Bit 1 - R/W - Read (clear) / Write (set) bit mask. */
1206#define X86_PTE_RW RT_BIT(1)
1207/** Bit 2 - U/S - User (set) / Supervisor (clear) bit mask. */
1208#define X86_PTE_US RT_BIT(2)
1209/** Bit 3 - PWT - Page level write thru bit mask. */
1210#define X86_PTE_PWT RT_BIT(3)
1211/** Bit 4 - PCD - Page level cache disable bit mask. */
1212#define X86_PTE_PCD RT_BIT(4)
1213/** Bit 5 - A - Access bit mask. */
1214#define X86_PTE_A RT_BIT(5)
1215/** Bit 6 - D - Dirty bit mask. */
1216#define X86_PTE_D RT_BIT(6)
1217/** Bit 7 - PAT - Page Attribute Table index bit mask. Reserved and 0 if not supported. */
1218#define X86_PTE_PAT RT_BIT(7)
1219/** Bit 8 - G - Global bit mask. */
1220#define X86_PTE_G RT_BIT(8)
1221
1222/** Bits 9-11 - - Available for use to system software. */
1223#define X86_PTE_AVL_MASK (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
1224/** Bits 12-31 - - Physical Page number of the next level. */
1225#define X86_PTE_PG_MASK ( 0xfffff000 )
1226
1227/** Bits 12-51 - - PAE - Physical Page number of the next level. */
1228#define X86_PTE_PAE_PG_MASK UINT64_C(0x000ffffffffff000)
1229/** Bits 63 - NX - PAE/LM - No execution flag. */
1230#define X86_PTE_PAE_NX RT_BIT_64(63)
1231/** Bits 62-52 - - PAE - MBZ bits when NX is active. */
1232#define X86_PTE_PAE_MBZ_MASK_NX UINT64_C(0x7ff0000000000000)
1233/** Bits 63-52 - - PAE - MBZ bits when no NX. */
1234#define X86_PTE_PAE_MBZ_MASK_NO_NX UINT64_C(0xfff0000000000000)
1235/** No bits - - LM - MBZ bits when NX is active. */
1236#define X86_PTE_LM_MBZ_MASK_NX UINT64_C(0x0000000000000000)
1237/** Bits 63 - - LM - MBZ bits when no NX. */
1238#define X86_PTE_LM_MBZ_MASK_NO_NX UINT64_C(0x8000000000000000)
1239
1240/**
1241 * Page table entry.
1242 */
1243typedef struct X86PTEBITS
1244{
1245 /** Flags whether(=1) or not the page is present. */
1246 unsigned u1Present : 1;
1247 /** Read(=0) / Write(=1) flag. */
1248 unsigned u1Write : 1;
1249 /** User(=1) / Supervisor (=0) flag. */
1250 unsigned u1User : 1;
1251 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1252 unsigned u1WriteThru : 1;
1253 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1254 unsigned u1CacheDisable : 1;
1255 /** Accessed flag.
1256 * Indicates that the page have been read or written to. */
1257 unsigned u1Accessed : 1;
1258 /** Dirty flag.
1259 * Indicates that the page has been written to. */
1260 unsigned u1Dirty : 1;
1261 /** Reserved / If PAT enabled, bit 2 of the index. */
1262 unsigned u1PAT : 1;
1263 /** Global flag. (Ignored in all but final level.) */
1264 unsigned u1Global : 1;
1265 /** Available for use to system software. */
1266 unsigned u3Available : 3;
1267 /** Physical Page number of the next level. */
1268 unsigned u20PageNo : 20;
1269} X86PTEBITS;
1270/** Pointer to a page table entry. */
1271typedef X86PTEBITS *PX86PTEBITS;
1272/** Pointer to a const page table entry. */
1273typedef const X86PTEBITS *PCX86PTEBITS;
1274
1275/**
1276 * Page table entry.
1277 */
1278typedef union X86PTE
1279{
1280 /** Unsigned integer view */
1281 X86PGUINT u;
1282 /** Bit field view. */
1283 X86PTEBITS n;
1284 /** 32-bit view. */
1285 uint32_t au32[1];
1286 /** 16-bit view. */
1287 uint16_t au16[2];
1288 /** 8-bit view. */
1289 uint8_t au8[4];
1290} X86PTE;
1291/** Pointer to a page table entry. */
1292typedef X86PTE *PX86PTE;
1293/** Pointer to a const page table entry. */
1294typedef const X86PTE *PCX86PTE;
1295
1296
1297/**
1298 * PAE page table entry.
1299 */
1300typedef struct X86PTEPAEBITS
1301{
1302 /** Flags whether(=1) or not the page is present. */
1303 uint32_t u1Present : 1;
1304 /** Read(=0) / Write(=1) flag. */
1305 uint32_t u1Write : 1;
1306 /** User(=1) / Supervisor(=0) flag. */
1307 uint32_t u1User : 1;
1308 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1309 uint32_t u1WriteThru : 1;
1310 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1311 uint32_t u1CacheDisable : 1;
1312 /** Accessed flag.
1313 * Indicates that the page have been read or written to. */
1314 uint32_t u1Accessed : 1;
1315 /** Dirty flag.
1316 * Indicates that the page has been written to. */
1317 uint32_t u1Dirty : 1;
1318 /** Reserved / If PAT enabled, bit 2 of the index. */
1319 uint32_t u1PAT : 1;
1320 /** Global flag. (Ignored in all but final level.) */
1321 uint32_t u1Global : 1;
1322 /** Available for use to system software. */
1323 uint32_t u3Available : 3;
1324 /** Physical Page number of the next level - Low Part. Don't use this. */
1325 uint32_t u20PageNoLow : 20;
1326 /** Physical Page number of the next level - High Part. Don't use this. */
1327 uint32_t u20PageNoHigh : 20;
1328 /** MBZ bits */
1329 uint32_t u11Reserved : 11;
1330 /** No Execute flag. */
1331 uint32_t u1NoExecute : 1;
1332} X86PTEPAEBITS;
1333/** Pointer to a page table entry. */
1334typedef X86PTEPAEBITS *PX86PTEPAEBITS;
1335/** Pointer to a page table entry. */
1336typedef const X86PTEPAEBITS *PCX86PTEPAEBITS;
1337
1338/**
1339 * PAE Page table entry.
1340 */
1341typedef union X86PTEPAE
1342{
1343 /** Unsigned integer view */
1344 X86PGPAEUINT u;
1345 /** Bit field view. */
1346 X86PTEPAEBITS n;
1347 /** 32-bit view. */
1348 uint32_t au32[2];
1349 /** 16-bit view. */
1350 uint16_t au16[4];
1351 /** 8-bit view. */
1352 uint8_t au8[8];
1353} X86PTEPAE;
1354/** Pointer to a PAE page table entry. */
1355typedef X86PTEPAE *PX86PTEPAE;
1356/** Pointer to a const PAE page table entry. */
1357typedef const X86PTEPAE *PCX86PTEPAE;
1358/** @} */
1359
1360/**
1361 * Page table.
1362 */
1363typedef struct X86PT
1364{
1365 /** PTE Array. */
1366 X86PTE a[X86_PG_ENTRIES];
1367} X86PT;
1368/** Pointer to a page table. */
1369typedef X86PT *PX86PT;
1370/** Pointer to a const page table. */
1371typedef const X86PT *PCX86PT;
1372
1373/** The page shift to get the PT index. */
1374#define X86_PT_SHIFT 12
1375/** The PT index mask (apply to a shifted page address). */
1376#define X86_PT_MASK 0x3ff
1377
1378
1379/**
1380 * Page directory.
1381 */
1382typedef struct X86PTPAE
1383{
1384 /** PTE Array. */
1385 X86PTEPAE a[X86_PG_PAE_ENTRIES];
1386} X86PTPAE;
1387/** Pointer to a page table. */
1388typedef X86PTPAE *PX86PTPAE;
1389/** Pointer to a const page table. */
1390typedef const X86PTPAE *PCX86PTPAE;
1391
1392/** The page shift to get the PA PTE index. */
1393#define X86_PT_PAE_SHIFT 12
1394/** The PAE PT index mask (apply to a shifted page address). */
1395#define X86_PT_PAE_MASK 0x1ff
1396
1397
1398/** @name 4KB Page Directory Entry
1399 * @{
1400 */
1401/** Bit 0 - P - Present bit. */
1402#define X86_PDE_P RT_BIT(0)
1403/** Bit 1 - R/W - Read (clear) / Write (set) bit. */
1404#define X86_PDE_RW RT_BIT(1)
1405/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. */
1406#define X86_PDE_US RT_BIT(2)
1407/** Bit 3 - PWT - Page level write thru bit. */
1408#define X86_PDE_PWT RT_BIT(3)
1409/** Bit 4 - PCD - Page level cache disable bit. */
1410#define X86_PDE_PCD RT_BIT(4)
1411/** Bit 5 - A - Access bit. */
1412#define X86_PDE_A RT_BIT(5)
1413/** Bit 7 - PS - Page size attribute.
1414 * Clear mean 4KB pages, set means large pages (2/4MB). */
1415#define X86_PDE_PS RT_BIT(7)
1416/** Bits 9-11 - - Available for use to system software. */
1417#define X86_PDE_AVL_MASK (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
1418/** Bits 12-31 - - Physical Page number of the next level. */
1419#define X86_PDE_PG_MASK ( 0xfffff000 )
1420
1421/** Bits 12-51 - - PAE - Physical Page number of the next level. */
1422#define X86_PDE_PAE_PG_MASK UINT64_C(0x000ffffffffff000)
1423/** Bits 63 - NX - PAE/LM - No execution flag. */
1424#define X86_PDE_PAE_NX RT_BIT_64(63)
1425/** Bits 62-52, 7 - - PAE - MBZ bits when NX is active. */
1426#define X86_PDE_PAE_MBZ_MASK_NX UINT64_C(0x7ff0000000000080)
1427/** Bits 63-52, 7 - - PAE - MBZ bits when no NX. */
1428#define X86_PDE_PAE_MBZ_MASK_NO_NX UINT64_C(0xfff0000000000080)
1429/** Bit 7 - - LM - MBZ bits when NX is active. */
1430#define X86_PDE_LM_MBZ_MASK_NX UINT64_C(0x0000000000000080)
1431/** Bits 63, 7 - - LM - MBZ bits when no NX. */
1432#define X86_PDE_LM_MBZ_MASK_NO_NX UINT64_C(0x8000000000000080)
1433
1434/**
1435 * Page directory entry.
1436 */
1437typedef struct X86PDEBITS
1438{
1439 /** Flags whether(=1) or not the page is present. */
1440 unsigned u1Present : 1;
1441 /** Read(=0) / Write(=1) flag. */
1442 unsigned u1Write : 1;
1443 /** User(=1) / Supervisor (=0) flag. */
1444 unsigned u1User : 1;
1445 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1446 unsigned u1WriteThru : 1;
1447 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1448 unsigned u1CacheDisable : 1;
1449 /** Accessed flag.
1450 * Indicates that the page has been read or written to. */
1451 unsigned u1Accessed : 1;
1452 /** Reserved / Ignored (dirty bit). */
1453 unsigned u1Reserved0 : 1;
1454 /** Size bit if PSE is enabled - in any event it's 0. */
1455 unsigned u1Size : 1;
1456 /** Reserved / Ignored (global bit). */
1457 unsigned u1Reserved1 : 1;
1458 /** Available for use to system software. */
1459 unsigned u3Available : 3;
1460 /** Physical Page number of the next level. */
1461 unsigned u20PageNo : 20;
1462} X86PDEBITS;
1463/** Pointer to a page directory entry. */
1464typedef X86PDEBITS *PX86PDEBITS;
1465/** Pointer to a const page directory entry. */
1466typedef const X86PDEBITS *PCX86PDEBITS;
1467
1468
1469/**
1470 * PAE page directory entry.
1471 */
1472typedef struct X86PDEPAEBITS
1473{
1474 /** Flags whether(=1) or not the page is present. */
1475 uint32_t u1Present : 1;
1476 /** Read(=0) / Write(=1) flag. */
1477 uint32_t u1Write : 1;
1478 /** User(=1) / Supervisor (=0) flag. */
1479 uint32_t u1User : 1;
1480 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1481 uint32_t u1WriteThru : 1;
1482 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1483 uint32_t u1CacheDisable : 1;
1484 /** Accessed flag.
1485 * Indicates that the page has been read or written to. */
1486 uint32_t u1Accessed : 1;
1487 /** Reserved / Ignored (dirty bit). */
1488 uint32_t u1Reserved0 : 1;
1489 /** Size bit if PSE is enabled - in any event it's 0. */
1490 uint32_t u1Size : 1;
1491 /** Reserved / Ignored (global bit). / */
1492 uint32_t u1Reserved1 : 1;
1493 /** Available for use to system software. */
1494 uint32_t u3Available : 3;
1495 /** Physical Page number of the next level - Low Part. Don't use! */
1496 uint32_t u20PageNoLow : 20;
1497 /** Physical Page number of the next level - High Part. Don't use! */
1498 uint32_t u20PageNoHigh : 20;
1499 /** MBZ bits */
1500 uint32_t u11Reserved : 11;
1501 /** No Execute flag. */
1502 uint32_t u1NoExecute : 1;
1503} X86PDEPAEBITS;
1504/** Pointer to a page directory entry. */
1505typedef X86PDEPAEBITS *PX86PDEPAEBITS;
1506/** Pointer to a const page directory entry. */
1507typedef const X86PDEPAEBITS *PCX86PDEPAEBITS;
1508
1509/** @} */
1510
1511
1512/** @name 2/4MB Page Directory Entry
1513 * @{
1514 */
1515/** Bit 0 - P - Present bit. */
1516#define X86_PDE4M_P RT_BIT(0)
1517/** Bit 1 - R/W - Read (clear) / Write (set) bit. */
1518#define X86_PDE4M_RW RT_BIT(1)
1519/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. */
1520#define X86_PDE4M_US RT_BIT(2)
1521/** Bit 3 - PWT - Page level write thru bit. */
1522#define X86_PDE4M_PWT RT_BIT(3)
1523/** Bit 4 - PCD - Page level cache disable bit. */
1524#define X86_PDE4M_PCD RT_BIT(4)
1525/** Bit 5 - A - Access bit. */
1526#define X86_PDE4M_A RT_BIT(5)
1527/** Bit 6 - D - Dirty bit. */
1528#define X86_PDE4M_D RT_BIT(6)
1529/** Bit 7 - PS - Page size attribute. Clear mean 4KB pages, set means large pages (2/4MB). */
1530#define X86_PDE4M_PS RT_BIT(7)
1531/** Bit 8 - G - Global flag. */
1532#define X86_PDE4M_G RT_BIT(8)
1533/** Bits 9-11 - AVL - Available for use to system software. */
1534#define X86_PDE4M_AVL (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
1535/** Bit 12 - PAT - Page Attribute Table index bit. Reserved and 0 if not supported. */
1536#define X86_PDE4M_PAT RT_BIT(12)
1537/** Shift to get from X86_PTE_PAT to X86_PDE4M_PAT. */
1538#define X86_PDE4M_PAT_SHIFT (12 - 7)
1539/** Bits 22-31 - - Physical Page number. */
1540#define X86_PDE4M_PG_MASK ( 0xffc00000 )
1541/** Bits 20-13 - - Physical Page number high part (32-39 bits). AMD64 hack. */
1542#define X86_PDE4M_PG_HIGH_MASK ( 0x001fe000 )
1543/** The number of bits to the high part of the page number. */
1544#define X86_PDE4M_PG_HIGH_SHIFT 19
1545/** Bit 21 - - MBZ bits for AMD CPUs, no PSE36. */
1546#define X86_PDE4M_MBZ_MASK RT_BIT_32(21)
1547
1548/** Bits 21-51 - - PAE/LM - Physical Page number.
1549 * (Bits 40-51 (long mode) & bits 36-51 (pae legacy) are reserved according to the Intel docs; AMD allows for more.) */
1550#define X86_PDE2M_PAE_PG_MASK UINT64_C(0x000fffffffe00000)
1551/** Bits 63 - NX - PAE/LM - No execution flag. */
1552#define X86_PDE2M_PAE_NX RT_BIT_64(63)
1553/** Bits 62-52, 20-13 - - PAE - MBZ bits when NX is active. */
1554#define X86_PDE2M_PAE_MBZ_MASK_NX UINT64_C(0x7ff00000001fe000)
1555/** Bits 63-52, 20-13 - - PAE - MBZ bits when no NX. */
1556#define X86_PDE2M_PAE_MBZ_MASK_NO_NX UINT64_C(0xfff00000001fe000)
1557/** Bits 20-13 - - LM - MBZ bits when NX is active. */
1558#define X86_PDE2M_LM_MBZ_MASK_NX UINT64_C(0x00000000001fe000)
1559/** Bits 63, 20-13 - - LM - MBZ bits when no NX. */
1560#define X86_PDE2M_LM_MBZ_MASK_NO_NX UINT64_C(0x80000000001fe000)
1561
1562/**
1563 * 4MB page directory entry.
1564 */
1565typedef struct X86PDE4MBITS
1566{
1567 /** Flags whether(=1) or not the page is present. */
1568 unsigned u1Present : 1;
1569 /** Read(=0) / Write(=1) flag. */
1570 unsigned u1Write : 1;
1571 /** User(=1) / Supervisor (=0) flag. */
1572 unsigned u1User : 1;
1573 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1574 unsigned u1WriteThru : 1;
1575 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1576 unsigned u1CacheDisable : 1;
1577 /** Accessed flag.
1578 * Indicates that the page have been read or written to. */
1579 unsigned u1Accessed : 1;
1580 /** Dirty flag.
1581 * Indicates that the page has been written to. */
1582 unsigned u1Dirty : 1;
1583 /** Page size flag - always 1 for 4MB entries. */
1584 unsigned u1Size : 1;
1585 /** Global flag. */
1586 unsigned u1Global : 1;
1587 /** Available for use to system software. */
1588 unsigned u3Available : 3;
1589 /** Reserved / If PAT enabled, bit 2 of the index. */
1590 unsigned u1PAT : 1;
1591 /** Bits 32-39 of the page number on AMD64.
1592 * This AMD64 hack allows accessing 40bits of physical memory without PAE. */
1593 unsigned u8PageNoHigh : 8;
1594 /** Reserved. */
1595 unsigned u1Reserved : 1;
1596 /** Physical Page number of the page. */
1597 unsigned u10PageNo : 10;
1598} X86PDE4MBITS;
1599/** Pointer to a page table entry. */
1600typedef X86PDE4MBITS *PX86PDE4MBITS;
1601/** Pointer to a const page table entry. */
1602typedef const X86PDE4MBITS *PCX86PDE4MBITS;
1603
1604
1605/**
1606 * 2MB PAE page directory entry.
1607 */
1608typedef struct X86PDE2MPAEBITS
1609{
1610 /** Flags whether(=1) or not the page is present. */
1611 uint32_t u1Present : 1;
1612 /** Read(=0) / Write(=1) flag. */
1613 uint32_t u1Write : 1;
1614 /** User(=1) / Supervisor(=0) flag. */
1615 uint32_t u1User : 1;
1616 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1617 uint32_t u1WriteThru : 1;
1618 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1619 uint32_t u1CacheDisable : 1;
1620 /** Accessed flag.
1621 * Indicates that the page have been read or written to. */
1622 uint32_t u1Accessed : 1;
1623 /** Dirty flag.
1624 * Indicates that the page has been written to. */
1625 uint32_t u1Dirty : 1;
1626 /** Page size flag - always 1 for 2MB entries. */
1627 uint32_t u1Size : 1;
1628 /** Global flag. */
1629 uint32_t u1Global : 1;
1630 /** Available for use to system software. */
1631 uint32_t u3Available : 3;
1632 /** Reserved / If PAT enabled, bit 2 of the index. */
1633 uint32_t u1PAT : 1;
1634 /** Reserved. */
1635 uint32_t u9Reserved : 9;
1636 /** Physical Page number of the next level - Low part. Don't use! */
1637 uint32_t u10PageNoLow : 10;
1638 /** Physical Page number of the next level - High part. Don't use! */
1639 uint32_t u20PageNoHigh : 20;
1640 /** MBZ bits */
1641 uint32_t u11Reserved : 11;
1642 /** No Execute flag. */
1643 uint32_t u1NoExecute : 1;
1644} X86PDE2MPAEBITS;
1645/** Pointer to a 2MB PAE page table entry. */
1646typedef X86PDE2MPAEBITS *PX86PDE2MPAEBITS;
1647/** Pointer to a 2MB PAE page table entry. */
1648typedef const X86PDE2MPAEBITS *PCX86PDE2MPAEBITS;
1649
1650/** @} */
1651
1652/**
1653 * Page directory entry.
1654 */
1655typedef union X86PDE
1656{
1657 /** Unsigned integer view. */
1658 X86PGUINT u;
1659 /** Normal view. */
1660 X86PDEBITS n;
1661 /** 4MB view (big). */
1662 X86PDE4MBITS b;
1663 /** 8 bit unsigned integer view. */
1664 uint8_t au8[4];
1665 /** 16 bit unsigned integer view. */
1666 uint16_t au16[2];
1667 /** 32 bit unsigned integer view. */
1668 uint32_t au32[1];
1669} X86PDE;
1670/** Pointer to a page directory entry. */
1671typedef X86PDE *PX86PDE;
1672/** Pointer to a const page directory entry. */
1673typedef const X86PDE *PCX86PDE;
1674
1675/**
1676 * PAE page directory entry.
1677 */
1678typedef union X86PDEPAE
1679{
1680 /** Unsigned integer view. */
1681 X86PGPAEUINT u;
1682 /** Normal view. */
1683 X86PDEPAEBITS n;
1684 /** 2MB page view (big). */
1685 X86PDE2MPAEBITS b;
1686 /** 8 bit unsigned integer view. */
1687 uint8_t au8[8];
1688 /** 16 bit unsigned integer view. */
1689 uint16_t au16[4];
1690 /** 32 bit unsigned integer view. */
1691 uint32_t au32[2];
1692} X86PDEPAE;
1693/** Pointer to a page directory entry. */
1694typedef X86PDEPAE *PX86PDEPAE;
1695/** Pointer to a const page directory entry. */
1696typedef const X86PDEPAE *PCX86PDEPAE;
1697
1698/**
1699 * Page directory.
1700 */
1701typedef struct X86PD
1702{
1703 /** PDE Array. */
1704 X86PDE a[X86_PG_ENTRIES];
1705} X86PD;
1706/** Pointer to a page directory. */
1707typedef X86PD *PX86PD;
1708/** Pointer to a const page directory. */
1709typedef const X86PD *PCX86PD;
1710
1711/** The page shift to get the PD index. */
1712#define X86_PD_SHIFT 22
1713/** The PD index mask (apply to a shifted page address). */
1714#define X86_PD_MASK 0x3ff
1715
1716
1717/**
1718 * PAE page directory.
1719 */
1720typedef struct X86PDPAE
1721{
1722 /** PDE Array. */
1723 X86PDEPAE a[X86_PG_PAE_ENTRIES];
1724} X86PDPAE;
1725/** Pointer to a PAE page directory. */
1726typedef X86PDPAE *PX86PDPAE;
1727/** Pointer to a const PAE page directory. */
1728typedef const X86PDPAE *PCX86PDPAE;
1729
1730/** The page shift to get the PAE PD index. */
1731#define X86_PD_PAE_SHIFT 21
1732/** The PAE PD index mask (apply to a shifted page address). */
1733#define X86_PD_PAE_MASK 0x1ff
1734
1735
1736/** @name Page Directory Pointer Table Entry (PAE)
1737 * @{
1738 */
1739/** Bit 0 - P - Present bit. */
1740#define X86_PDPE_P RT_BIT(0)
1741/** Bit 1 - R/W - Read (clear) / Write (set) bit. Long Mode only. */
1742#define X86_PDPE_RW RT_BIT(1)
1743/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. Long Mode only. */
1744#define X86_PDPE_US RT_BIT(2)
1745/** Bit 3 - PWT - Page level write thru bit. */
1746#define X86_PDPE_PWT RT_BIT(3)
1747/** Bit 4 - PCD - Page level cache disable bit. */
1748#define X86_PDPE_PCD RT_BIT(4)
1749/** Bit 5 - A - Access bit. Long Mode only. */
1750#define X86_PDPE_A RT_BIT(5)
1751/** Bit 7 - PS - Page size (1GB). Long Mode only. */
1752#define X86_PDPE_LM_PS RT_BIT(7)
1753/** Bits 9-11 - - Available for use to system software. */
1754#define X86_PDPE_AVL_MASK (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
1755/** Bits 12-51 - - PAE - Physical Page number of the next level. */
1756#define X86_PDPE_PG_MASK UINT64_C(0x000ffffffffff000)
1757/** Bits 63-52, 8-5, 2-1 - - PAE - MBZ bits (NX is long mode only). */
1758#define X86_PDPE_PAE_MBZ_MASK UINT64_C(0xfff00000000001e6)
1759/** Bits 63 - NX - LM - No execution flag. Long Mode only. */
1760#define X86_PDPE_LM_NX RT_BIT_64(63)
1761/** Bits 8, 7 - - LM - MBZ bits when NX is active. */
1762#define X86_PDPE_LM_MBZ_MASK_NX UINT64_C(0x0000000000000180)
1763/** Bits 63, 8, 7 - - LM - MBZ bits when no NX. */
1764#define X86_PDPE_LM_MBZ_MASK_NO_NX UINT64_C(0x8000000000000180)
1765/** Bits 29-13 - - LM - MBZ bits for 1GB page entry when NX is active. */
1766#define X86_PDPE1G_LM_MBZ_MASK_NX UINT64_C(0x000000003fffe000)
1767/** Bits 63, 29-13 - - LM - MBZ bits for 1GB page entry when no NX. */
1768#define X86_PDPE1G_LM_MBZ_MASK_NO_NX UINT64_C(0x800000003fffe000)
1769
1770
1771/**
1772 * Page directory pointer table entry.
1773 */
1774typedef struct X86PDPEBITS
1775{
1776 /** Flags whether(=1) or not the page is present. */
1777 uint32_t u1Present : 1;
1778 /** Chunk of reserved bits. */
1779 uint32_t u2Reserved : 2;
1780 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1781 uint32_t u1WriteThru : 1;
1782 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1783 uint32_t u1CacheDisable : 1;
1784 /** Chunk of reserved bits. */
1785 uint32_t u4Reserved : 4;
1786 /** Available for use to system software. */
1787 uint32_t u3Available : 3;
1788 /** Physical Page number of the next level - Low Part. Don't use! */
1789 uint32_t u20PageNoLow : 20;
1790 /** Physical Page number of the next level - High Part. Don't use! */
1791 uint32_t u20PageNoHigh : 20;
1792 /** MBZ bits */
1793 uint32_t u12Reserved : 12;
1794} X86PDPEBITS;
1795/** Pointer to a page directory pointer table entry. */
1796typedef X86PDPEBITS *PX86PTPEBITS;
1797/** Pointer to a const page directory pointer table entry. */
1798typedef const X86PDPEBITS *PCX86PTPEBITS;
1799
1800/**
1801 * Page directory pointer table entry. AMD64 version
1802 */
1803typedef struct X86PDPEAMD64BITS
1804{
1805 /** Flags whether(=1) or not the page is present. */
1806 uint32_t u1Present : 1;
1807 /** Read(=0) / Write(=1) flag. */
1808 uint32_t u1Write : 1;
1809 /** User(=1) / Supervisor (=0) flag. */
1810 uint32_t u1User : 1;
1811 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1812 uint32_t u1WriteThru : 1;
1813 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1814 uint32_t u1CacheDisable : 1;
1815 /** Accessed flag.
1816 * Indicates that the page have been read or written to. */
1817 uint32_t u1Accessed : 1;
1818 /** Chunk of reserved bits. */
1819 uint32_t u3Reserved : 3;
1820 /** Available for use to system software. */
1821 uint32_t u3Available : 3;
1822 /** Physical Page number of the next level - Low Part. Don't use! */
1823 uint32_t u20PageNoLow : 20;
1824 /** Physical Page number of the next level - High Part. Don't use! */
1825 uint32_t u20PageNoHigh : 20;
1826 /** MBZ bits */
1827 uint32_t u11Reserved : 11;
1828 /** No Execute flag. */
1829 uint32_t u1NoExecute : 1;
1830} X86PDPEAMD64BITS;
1831/** Pointer to a page directory pointer table entry. */
1832typedef X86PDPEAMD64BITS *PX86PDPEAMD64BITS;
1833/** Pointer to a const page directory pointer table entry. */
1834typedef const X86PDPEAMD64BITS *PCX86PDPEAMD64BITS;
1835
1836/**
1837 * Page directory pointer table entry.
1838 */
1839typedef union X86PDPE
1840{
1841 /** Unsigned integer view. */
1842 X86PGPAEUINT u;
1843 /** Normal view. */
1844 X86PDPEBITS n;
1845 /** AMD64 view. */
1846 X86PDPEAMD64BITS lm;
1847 /** 8 bit unsigned integer view. */
1848 uint8_t au8[8];
1849 /** 16 bit unsigned integer view. */
1850 uint16_t au16[4];
1851 /** 32 bit unsigned integer view. */
1852 uint32_t au32[2];
1853} X86PDPE;
1854/** Pointer to a page directory pointer table entry. */
1855typedef X86PDPE *PX86PDPE;
1856/** Pointer to a const page directory pointer table entry. */
1857typedef const X86PDPE *PCX86PDPE;
1858
1859
1860/**
1861 * Page directory pointer table.
1862 */
1863typedef struct X86PDPT
1864{
1865 /** PDE Array. */
1866 X86PDPE a[X86_PG_AMD64_PDPE_ENTRIES];
1867} X86PDPT;
1868/** Pointer to a page directory pointer table. */
1869typedef X86PDPT *PX86PDPT;
1870/** Pointer to a const page directory pointer table. */
1871typedef const X86PDPT *PCX86PDPT;
1872
1873/** The page shift to get the PDPT index. */
1874#define X86_PDPT_SHIFT 30
1875/** The PDPT index mask (apply to a shifted page address). (32 bits PAE) */
1876#define X86_PDPT_MASK_PAE 0x3
1877/** The PDPT index mask (apply to a shifted page address). (64 bits PAE)*/
1878#define X86_PDPT_MASK_AMD64 0x1ff
1879
1880/** @} */
1881
1882
1883/** @name Page Map Level-4 Entry (Long Mode PAE)
1884 * @{
1885 */
1886/** Bit 0 - P - Present bit. */
1887#define X86_PML4E_P RT_BIT(0)
1888/** Bit 1 - R/W - Read (clear) / Write (set) bit. */
1889#define X86_PML4E_RW RT_BIT(1)
1890/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. */
1891#define X86_PML4E_US RT_BIT(2)
1892/** Bit 3 - PWT - Page level write thru bit. */
1893#define X86_PML4E_PWT RT_BIT(3)
1894/** Bit 4 - PCD - Page level cache disable bit. */
1895#define X86_PML4E_PCD RT_BIT(4)
1896/** Bit 5 - A - Access bit. */
1897#define X86_PML4E_A RT_BIT(5)
1898/** Bits 9-11 - - Available for use to system software. */
1899#define X86_PML4E_AVL_MASK (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
1900/** Bits 12-51 - - PAE - Physical Page number of the next level. */
1901#define X86_PML4E_PG_MASK UINT64_C(0x000ffffffffff000)
1902/** Bits 8, 7 - - MBZ bits when NX is active. */
1903#define X86_PML4E_MBZ_MASK_NX UINT64_C(0x0000000000000080)
1904/** Bits 63, 7 - - MBZ bits when no NX. */
1905#define X86_PML4E_MBZ_MASK_NO_NX UINT64_C(0x8000000000000080)
1906/** Bits 63 - NX - PAE - No execution flag. */
1907#define X86_PML4E_NX RT_BIT_64(63)
1908
1909/**
1910 * Page Map Level-4 Entry
1911 */
1912typedef struct X86PML4EBITS
1913{
1914 /** Flags whether(=1) or not the page is present. */
1915 uint32_t u1Present : 1;
1916 /** Read(=0) / Write(=1) flag. */
1917 uint32_t u1Write : 1;
1918 /** User(=1) / Supervisor (=0) flag. */
1919 uint32_t u1User : 1;
1920 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1921 uint32_t u1WriteThru : 1;
1922 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1923 uint32_t u1CacheDisable : 1;
1924 /** Accessed flag.
1925 * Indicates that the page have been read or written to. */
1926 uint32_t u1Accessed : 1;
1927 /** Chunk of reserved bits. */
1928 uint32_t u3Reserved : 3;
1929 /** Available for use to system software. */
1930 uint32_t u3Available : 3;
1931 /** Physical Page number of the next level - Low Part. Don't use! */
1932 uint32_t u20PageNoLow : 20;
1933 /** Physical Page number of the next level - High Part. Don't use! */
1934 uint32_t u20PageNoHigh : 20;
1935 /** MBZ bits */
1936 uint32_t u11Reserved : 11;
1937 /** No Execute flag. */
1938 uint32_t u1NoExecute : 1;
1939} X86PML4EBITS;
1940/** Pointer to a page map level-4 entry. */
1941typedef X86PML4EBITS *PX86PML4EBITS;
1942/** Pointer to a const page map level-4 entry. */
1943typedef const X86PML4EBITS *PCX86PML4EBITS;
1944
1945/**
1946 * Page Map Level-4 Entry.
1947 */
1948typedef union X86PML4E
1949{
1950 /** Unsigned integer view. */
1951 X86PGPAEUINT u;
1952 /** Normal view. */
1953 X86PML4EBITS n;
1954 /** 8 bit unsigned integer view. */
1955 uint8_t au8[8];
1956 /** 16 bit unsigned integer view. */
1957 uint16_t au16[4];
1958 /** 32 bit unsigned integer view. */
1959 uint32_t au32[2];
1960} X86PML4E;
1961/** Pointer to a page map level-4 entry. */
1962typedef X86PML4E *PX86PML4E;
1963/** Pointer to a const page map level-4 entry. */
1964typedef const X86PML4E *PCX86PML4E;
1965
1966
1967/**
1968 * Page Map Level-4.
1969 */
1970typedef struct X86PML4
1971{
1972 /** PDE Array. */
1973 X86PML4E a[X86_PG_PAE_ENTRIES];
1974} X86PML4;
1975/** Pointer to a page map level-4. */
1976typedef X86PML4 *PX86PML4;
1977/** Pointer to a const page map level-4. */
1978typedef const X86PML4 *PCX86PML4;
1979
1980/** The page shift to get the PML4 index. */
1981#define X86_PML4_SHIFT 39
1982/** The PML4 index mask (apply to a shifted page address). */
1983#define X86_PML4_MASK 0x1ff
1984
1985/** @} */
1986
1987/** @} */
1988
1989
1990/**
1991 * 80-bit MMX/FPU register type.
1992 */
1993typedef struct X86FPUMMX
1994{
1995 uint8_t reg[10];
1996} X86FPUMMX;
1997/** Pointer to a 80-bit MMX/FPU register type. */
1998typedef X86FPUMMX *PX86FPUMMX;
1999/** Pointer to a const 80-bit MMX/FPU register type. */
2000typedef const X86FPUMMX *PCX86FPUMMX;
2001
2002/**
2003 * 32-bit FPU state (aka FSAVE/FRSTOR Memory Region).
2004 * @todo verify this...
2005 */
2006#pragma pack(1)
2007typedef struct X86FPUSTATE
2008{
2009 /** 0x00 - Control word. */
2010 uint16_t FCW;
2011 /** 0x02 - Alignment word */
2012 uint16_t Dummy1;
2013 /** 0x04 - Status word. */
2014 uint16_t FSW;
2015 /** 0x06 - Alignment word */
2016 uint16_t Dummy2;
2017 /** 0x08 - Tag word */
2018 uint16_t FTW;
2019 /** 0x0a - Alignment word */
2020 uint16_t Dummy3;
2021
2022 /** 0x0c - Instruction pointer. */
2023 uint32_t FPUIP;
2024 /** 0x10 - Code selector. */
2025 uint16_t CS;
2026 /** 0x12 - Opcode. */
2027 uint16_t FOP;
2028 /** 0x14 - FOO. */
2029 uint32_t FPUOO;
2030 /** 0x18 - FOS. */
2031 uint32_t FPUOS;
2032 /** 0x1c */
2033 union
2034 {
2035 /** MMX view. */
2036 uint64_t mmx;
2037 /** FPU view - todo. */
2038 X86FPUMMX fpu;
2039 /** Extended precision floating point view. */
2040 RTFLOAT80U r80;
2041 /** Extended precision floating point view v2. */
2042 RTFLOAT80U2 r80Ex;
2043 /** 8-bit view. */
2044 uint8_t au8[16];
2045 /** 16-bit view. */
2046 uint16_t au16[8];
2047 /** 32-bit view. */
2048 uint32_t au32[4];
2049 /** 64-bit view. */
2050 uint64_t au64[2];
2051 /** 128-bit view. (yeah, very helpful) */
2052 uint128_t au128[1];
2053 } regs[8];
2054} X86FPUSTATE;
2055#pragma pack()
2056/** Pointer to a FPU state. */
2057typedef X86FPUSTATE *PX86FPUSTATE;
2058/** Pointer to a const FPU state. */
2059typedef const X86FPUSTATE *PCX86FPUSTATE;
2060
2061/**
2062 * FPU Extended state (aka FXSAVE/FXRSTORE Memory Region).
2063 */
2064#pragma pack(1)
2065typedef struct X86FXSTATE
2066{
2067 /** 0x00 - Control word. */
2068 uint16_t FCW;
2069 /** 0x02 - Status word. */
2070 uint16_t FSW;
2071 /** 0x04 - Tag word. (The upper byte is always zero.) */
2072 uint16_t FTW;
2073 /** 0x06 - Opcode. */
2074 uint16_t FOP;
2075 /** 0x08 - Instruction pointer. */
2076 uint32_t FPUIP;
2077 /** 0x0c - Code selector. */
2078 uint16_t CS;
2079 uint16_t Rsrvd1;
2080 /** 0x10 - Data pointer. */
2081 uint32_t FPUDP;
2082 /** 0x14 - Data segment */
2083 uint16_t DS;
2084 /** 0x16 */
2085 uint16_t Rsrvd2;
2086 /** 0x18 */
2087 uint32_t MXCSR;
2088 /** 0x1c */
2089 uint32_t MXCSR_MASK;
2090 /** 0x20 */
2091 union
2092 {
2093 /** MMX view. */
2094 uint64_t mmx;
2095 /** FPU view - todo. */
2096 X86FPUMMX fpu;
2097 /** Extended precision floating point view. */
2098 RTFLOAT80U r80;
2099 /** Extended precision floating point view v2 */
2100 RTFLOAT80U2 r80Ex;
2101 /** 8-bit view. */
2102 uint8_t au8[16];
2103 /** 16-bit view. */
2104 uint16_t au16[8];
2105 /** 32-bit view. */
2106 uint32_t au32[4];
2107 /** 64-bit view. */
2108 uint64_t au64[2];
2109 /** 128-bit view. (yeah, very helpful) */
2110 uint128_t au128[1];
2111 } aRegs[8];
2112 /* - offset 160 - */
2113 union
2114 {
2115 /** XMM Register view *. */
2116 uint128_t xmm;
2117 /** 8-bit view. */
2118 uint8_t au8[16];
2119 /** 16-bit view. */
2120 uint16_t au16[8];
2121 /** 32-bit view. */
2122 uint32_t au32[4];
2123 /** 64-bit view. */
2124 uint64_t au64[2];
2125 /** 128-bit view. (yeah, very helpful) */
2126 uint128_t au128[1];
2127 } aXMM[16]; /* 8 registers in 32 bits mode; 16 in long mode */
2128 /* - offset 416 - */
2129 uint32_t au32RsrvdRest[(512 - 416) / sizeof(uint32_t)];
2130} X86FXSTATE;
2131#pragma pack()
2132/** Pointer to a FPU Extended state. */
2133typedef X86FXSTATE *PX86FXSTATE;
2134/** Pointer to a const FPU Extended state. */
2135typedef const X86FXSTATE *PCX86FXSTATE;
2136
2137/** @name FPU status word flags.
2138 * @{ */
2139/** Exception Flag: Invalid operation. */
2140#define X86_FSW_IE RT_BIT(0)
2141/** Exception Flag: Denormalized operand. */
2142#define X86_FSW_DE RT_BIT(1)
2143/** Exception Flag: Zero divide. */
2144#define X86_FSW_ZE RT_BIT(2)
2145/** Exception Flag: Overflow. */
2146#define X86_FSW_OE RT_BIT(3)
2147/** Exception Flag: Underflow. */
2148#define X86_FSW_UE RT_BIT(4)
2149/** Exception Flag: Precision. */
2150#define X86_FSW_PE RT_BIT(5)
2151/** Stack fault. */
2152#define X86_FSW_SF RT_BIT(6)
2153/** Error summary status. */
2154#define X86_FSW_ES RT_BIT(7)
2155/** Mask of exceptions flags, excluding the summary bit. */
2156#define X86_FSW_XCPT_MASK UINT16_C(0x007f)
2157/** Mask of exceptions flags, including the summary bit. */
2158#define X86_FSW_XCPT_ES_MASK UINT16_C(0x00ff)
2159/** Condition code 0. */
2160#define X86_FSW_C0 RT_BIT(8)
2161/** Condition code 1. */
2162#define X86_FSW_C1 RT_BIT(9)
2163/** Condition code 2. */
2164#define X86_FSW_C2 RT_BIT(10)
2165/** Top of the stack mask. */
2166#define X86_FSW_TOP_MASK UINT16_C(0x3800)
2167/** TOP shift value. */
2168#define X86_FSW_TOP_SHIFT 11
2169/** Mask for getting TOP value after shifting it right. */
2170#define X86_FSW_TOP_SMASK UINT16_C(0x0007)
2171/** Get the TOP value. */
2172#define X86_FSW_TOP_GET(a_uFsw) (((a_uFsw) >> X86_FSW_TOP_SHIFT) & X86_FSW_TOP_SMASK)
2173/** Condition code 3. */
2174#define X86_FSW_C3 RT_BIT(14)
2175/** Mask of exceptions flags, including the summary bit. */
2176#define X86_FSW_C_MASK UINT16_C(0x4700)
2177/** FPU busy. */
2178#define X86_FSW_B RT_BIT(15)
2179/** @} */
2180
2181
2182/** @name FPU control word flags.
2183 * @{ */
2184/** Exception Mask: Invalid operation. */
2185#define X86_FCW_IM RT_BIT(0)
2186/** Exception Mask: Denormalized operand. */
2187#define X86_FCW_DM RT_BIT(1)
2188/** Exception Mask: Zero divide. */
2189#define X86_FCW_ZM RT_BIT(2)
2190/** Exception Mask: Overflow. */
2191#define X86_FCW_OM RT_BIT(3)
2192/** Exception Mask: Underflow. */
2193#define X86_FCW_UM RT_BIT(4)
2194/** Exception Mask: Precision. */
2195#define X86_FCW_PM RT_BIT(5)
2196/** Mask all exceptions, the value typically loaded (by for instance fninit).
2197 * @remarks This includes reserved bit 6. */
2198#define X86_FCW_MASK_ALL UINT16_C(0x007f)
2199/** Mask all exceptions. Same as X86_FSW_XCPT_MASK. */
2200#define X86_FCW_XCPT_MASK UINT16_C(0x003f)
2201/** Precision control mask. */
2202#define X86_FCW_PC_MASK UINT16_C(0x0300)
2203/** Precision control: 24-bit. */
2204#define X86_FCW_PC_24 UINT16_C(0x0000)
2205/** Precision control: Reserved. */
2206#define X86_FCW_PC_RSVD UINT16_C(0x0100)
2207/** Precision control: 53-bit. */
2208#define X86_FCW_PC_53 UINT16_C(0x0200)
2209/** Precision control: 64-bit. */
2210#define X86_FCW_PC_64 UINT16_C(0x0300)
2211/** Rounding control mask. */
2212#define X86_FCW_RC_MASK UINT16_C(0x0c00)
2213/** Rounding control: To nearest. */
2214#define X86_FCW_RC_NEAREST UINT16_C(0x0000)
2215/** Rounding control: Down. */
2216#define X86_FCW_RC_DOWN UINT16_C(0x0400)
2217/** Rounding control: Up. */
2218#define X86_FCW_RC_UP UINT16_C(0x0800)
2219/** Rounding control: Towards zero. */
2220#define X86_FCW_RC_ZERO UINT16_C(0x0c00)
2221/** Bits which should be zero, apparently. */
2222#define X86_FCW_ZERO_MASK UINT16_C(0xf080)
2223/** @} */
2224
2225
2226/** @name Selector Descriptor
2227 * @{
2228 */
2229
2230#ifndef VBOX_FOR_DTRACE_LIB
2231/**
2232 * Descriptor attributes (as seen by VT-x).
2233 */
2234typedef struct X86DESCATTRBITS
2235{
2236 /** 00 - Segment Type. */
2237 unsigned u4Type : 4;
2238 /** 04 - Descriptor Type. System(=0) or code/data selector */
2239 unsigned u1DescType : 1;
2240 /** 05 - Descriptor Privelege level. */
2241 unsigned u2Dpl : 2;
2242 /** 07 - Flags selector present(=1) or not. */
2243 unsigned u1Present : 1;
2244 /** 08 - Segment limit 16-19. */
2245 unsigned u4LimitHigh : 4;
2246 /** 0c - Available for system software. */
2247 unsigned u1Available : 1;
2248 /** 0d - 32 bits mode: Reserved - 0, long mode: Long Attribute Bit. */
2249 unsigned u1Long : 1;
2250 /** 0e - This flags meaning depends on the segment type. Try make sense out
2251 * of the intel manual yourself. */
2252 unsigned u1DefBig : 1;
2253 /** 0f - Granularity of the limit. If set 4KB granularity is used, if
2254 * clear byte. */
2255 unsigned u1Granularity : 1;
2256 /** 10 - "Unusable" selector, special Intel (VT-x only?) bit. */
2257 unsigned u1Unusable : 1;
2258} X86DESCATTRBITS;
2259#endif /* !VBOX_FOR_DTRACE_LIB */
2260
2261/** @name X86DESCATTR masks
2262 * @{ */
2263#define X86DESCATTR_TYPE UINT32_C(0x0000000f)
2264#define X86DESCATTR_DT UINT32_C(0x00000010)
2265#define X86DESCATTR_DPL UINT32_C(0x00000060)
2266#define X86DESCATTR_DPL_SHIFT 5 /**< Shift count for the DPL value. */
2267#define X86DESCATTR_P UINT32_C(0x00000800)
2268#define X86DESCATTR_LIMIT_HIGH UINT32_C(0x00000f00)
2269#define X86DESCATTR_AVL UINT32_C(0x00001000)
2270#define X86DESCATTR_L UINT32_C(0x00002000)
2271#define X86DESCATTR_D UINT32_C(0x00004000)
2272#define X86DESCATTR_G UINT32_C(0x00008000)
2273#define X86DESCATTR_UNUSABLE UINT32_C(0x00010000)
2274/** @} */
2275
2276#pragma pack(1)
2277typedef union X86DESCATTR
2278{
2279 /** Unsigned integer view. */
2280 uint32_t u;
2281#ifndef VBOX_FOR_DTRACE_LIB
2282 /** Normal view. */
2283 X86DESCATTRBITS n;
2284#endif
2285} X86DESCATTR;
2286#pragma pack()
2287/** Pointer to descriptor attributes. */
2288typedef X86DESCATTR *PX86DESCATTR;
2289/** Pointer to const descriptor attributes. */
2290typedef const X86DESCATTR *PCX86DESCATTR;
2291
2292#ifndef VBOX_FOR_DTRACE_LIB
2293
2294/**
2295 * Generic descriptor table entry
2296 */
2297#pragma pack(1)
2298typedef struct X86DESCGENERIC
2299{
2300 /** 00 - Limit - Low word. */
2301 unsigned u16LimitLow : 16;
2302 /** 10 - Base address - lowe word.
2303 * Don't try set this to 24 because MSC is doing stupid things then. */
2304 unsigned u16BaseLow : 16;
2305 /** 20 - Base address - first 8 bits of high word. */
2306 unsigned u8BaseHigh1 : 8;
2307 /** 28 - Segment Type. */
2308 unsigned u4Type : 4;
2309 /** 2c - Descriptor Type. System(=0) or code/data selector */
2310 unsigned u1DescType : 1;
2311 /** 2d - Descriptor Privelege level. */
2312 unsigned u2Dpl : 2;
2313 /** 2f - Flags selector present(=1) or not. */
2314 unsigned u1Present : 1;
2315 /** 30 - Segment limit 16-19. */
2316 unsigned u4LimitHigh : 4;
2317 /** 34 - Available for system software. */
2318 unsigned u1Available : 1;
2319 /** 35 - 32 bits mode: Reserved - 0, long mode: Long Attribute Bit. */
2320 unsigned u1Long : 1;
2321 /** 36 - This flags meaning depends on the segment type. Try make sense out
2322 * of the intel manual yourself. */
2323 unsigned u1DefBig : 1;
2324 /** 37 - Granularity of the limit. If set 4KB granularity is used, if
2325 * clear byte. */
2326 unsigned u1Granularity : 1;
2327 /** 38 - Base address - highest 8 bits. */
2328 unsigned u8BaseHigh2 : 8;
2329} X86DESCGENERIC;
2330#pragma pack()
2331/** Pointer to a generic descriptor entry. */
2332typedef X86DESCGENERIC *PX86DESCGENERIC;
2333/** Pointer to a const generic descriptor entry. */
2334typedef const X86DESCGENERIC *PCX86DESCGENERIC;
2335
2336/** @name Bit offsets of X86DESCGENERIC members.
2337 * @{*/
2338#define X86DESCGENERIC_BIT_OFF_LIMIT_LOW (0) /**< Bit offset of X86DESCGENERIC::u16LimitLow. */
2339#define X86DESCGENERIC_BIT_OFF_BASE_LOW (16) /**< Bit offset of X86DESCGENERIC::u16BaseLow. */
2340#define X86DESCGENERIC_BIT_OFF_BASE_HIGH1 (32) /**< Bit offset of X86DESCGENERIC::u8BaseHigh1. */
2341#define X86DESCGENERIC_BIT_OFF_TYPE (40) /**< Bit offset of X86DESCGENERIC::u4Type. */
2342#define X86DESCGENERIC_BIT_OFF_DESC_TYPE (44) /**< Bit offset of X86DESCGENERIC::u1DescType. */
2343#define X86DESCGENERIC_BIT_OFF_DPL (45) /**< Bit offset of X86DESCGENERIC::u2Dpl. */
2344#define X86DESCGENERIC_BIT_OFF_PRESENT (47) /**< Bit offset of X86DESCGENERIC::uu1Present. */
2345#define X86DESCGENERIC_BIT_OFF_LIMIT_HIGH (48) /**< Bit offset of X86DESCGENERIC::u4LimitHigh. */
2346#define X86DESCGENERIC_BIT_OFF_AVAILABLE (52) /**< Bit offset of X86DESCGENERIC::u1Available. */
2347#define X86DESCGENERIC_BIT_OFF_LONG (53) /**< Bit offset of X86DESCGENERIC::u1Long. */
2348#define X86DESCGENERIC_BIT_OFF_DEF_BIG (54) /**< Bit offset of X86DESCGENERIC::u1DefBig. */
2349#define X86DESCGENERIC_BIT_OFF_GRANULARITY (55) /**< Bit offset of X86DESCGENERIC::u1Granularity. */
2350#define X86DESCGENERIC_BIT_OFF_BASE_HIGH2 (56) /**< Bit offset of X86DESCGENERIC::u8BaseHigh2. */
2351/** @} */
2352
2353/**
2354 * Call-, Interrupt-, Trap- or Task-gate descriptor (legacy).
2355 */
2356typedef struct X86DESCGATE
2357{
2358 /** 00 - Target code segment offset - Low word.
2359 * Ignored if task-gate. */
2360 unsigned u16OffsetLow : 16;
2361 /** 10 - Target code segment selector for call-, interrupt- and trap-gates,
2362 * TSS selector if task-gate. */
2363 unsigned u16Sel : 16;
2364 /** 20 - Number of parameters for a call-gate.
2365 * Ignored if interrupt-, trap- or task-gate. */
2366 unsigned u4ParmCount : 4;
2367 /** 24 - Reserved / ignored. */
2368 unsigned u4Reserved : 4;
2369 /** 28 - Segment Type. */
2370 unsigned u4Type : 4;
2371 /** 2c - Descriptor Type (0 = system). */
2372 unsigned u1DescType : 1;
2373 /** 2d - Descriptor Privelege level. */
2374 unsigned u2Dpl : 2;
2375 /** 2f - Flags selector present(=1) or not. */
2376 unsigned u1Present : 1;
2377 /** 30 - Target code segment offset - High word.
2378 * Ignored if task-gate. */
2379 unsigned u16OffsetHigh : 16;
2380} X86DESCGATE;
2381/** Pointer to a Call-, Interrupt-, Trap- or Task-gate descriptor entry. */
2382typedef X86DESCGATE *PX86DESCGATE;
2383/** Pointer to a const Call-, Interrupt-, Trap- or Task-gate descriptor entry. */
2384typedef const X86DESCGATE *PCX86DESCGATE;
2385
2386#endif /* VBOX_FOR_DTRACE_LIB */
2387
2388/**
2389 * Descriptor table entry.
2390 */
2391#pragma pack(1)
2392typedef union X86DESC
2393{
2394#ifndef VBOX_FOR_DTRACE_LIB
2395 /** Generic descriptor view. */
2396 X86DESCGENERIC Gen;
2397 /** Gate descriptor view. */
2398 X86DESCGATE Gate;
2399#endif
2400
2401 /** 8 bit unsigned integer view. */
2402 uint8_t au8[8];
2403 /** 16 bit unsigned integer view. */
2404 uint16_t au16[4];
2405 /** 32 bit unsigned integer view. */
2406 uint32_t au32[2];
2407 /** 64 bit unsigned integer view. */
2408 uint64_t au64[1];
2409 /** Unsigned integer view. */
2410 uint64_t u;
2411} X86DESC;
2412#ifndef VBOX_FOR_DTRACE_LIB
2413AssertCompileSize(X86DESC, 8);
2414#endif
2415#pragma pack()
2416/** Pointer to descriptor table entry. */
2417typedef X86DESC *PX86DESC;
2418/** Pointer to const descriptor table entry. */
2419typedef const X86DESC *PCX86DESC;
2420
2421/** @def X86DESC_BASE
2422 * Return the base address of a descriptor.
2423 */
2424#define X86DESC_BASE(a_pDesc) /*ASM-NOINC*/ \
2425 ( ((uint32_t)((a_pDesc)->Gen.u8BaseHigh2) << 24) \
2426 | ( (a_pDesc)->Gen.u8BaseHigh1 << 16) \
2427 | ( (a_pDesc)->Gen.u16BaseLow ) )
2428
2429/** @def X86DESC_LIMIT
2430 * Return the limit of a descriptor.
2431 */
2432#define X86DESC_LIMIT(a_pDesc) /*ASM-NOINC*/ \
2433 ( ((uint32_t)((a_pDesc)->Gen.u4LimitHigh) << 16) \
2434 | ( (a_pDesc)->Gen.u16LimitLow ) )
2435
2436/** @def X86DESC_LIMIT_G
2437 * Return the limit of a descriptor with the granularity bit taken into account.
2438 * @returns Selector limit (uint32_t).
2439 * @param a_pDesc Pointer to the descriptor.
2440 */
2441#define X86DESC_LIMIT_G(a_pDesc) /*ASM-NOINC*/ \
2442 ( (a_pDesc)->Gen.u1Granularity \
2443 ? ( ( ((uint32_t)(a_pDesc)->Gen.u4LimitHigh << 16) | (a_pDesc)->Gen.u16LimitLow ) << 12 ) | UINT32_C(0xfff) \
2444 : ((uint32_t)(a_pDesc)->Gen.u4LimitHigh << 16) | (a_pDesc)->Gen.u16LimitLow \
2445 )
2446
2447/** @def X86DESC_GET_HID_ATTR
2448 * Get the descriptor attributes for the hidden register.
2449 */
2450#define X86DESC_GET_HID_ATTR(a_pDesc) /*ASM-NOINC*/ \
2451 ( ((a_pDesc)->u >> (16+16+8)) & UINT32_C(0xf0ff) ) /** @todo do we have a define for 0xf0ff? */
2452
2453#ifndef VBOX_FOR_DTRACE_LIB
2454
2455/**
2456 * 64 bits generic descriptor table entry
2457 * Note: most of these bits have no meaning in long mode.
2458 */
2459#pragma pack(1)
2460typedef struct X86DESC64GENERIC
2461{
2462 /** Limit - Low word - *IGNORED*. */
2463 unsigned u16LimitLow : 16;
2464 /** Base address - low word. - *IGNORED*
2465 * Don't try set this to 24 because MSC is doing stupid things then. */
2466 unsigned u16BaseLow : 16;
2467 /** Base address - first 8 bits of high word. - *IGNORED* */
2468 unsigned u8BaseHigh1 : 8;
2469 /** Segment Type. */
2470 unsigned u4Type : 4;
2471 /** Descriptor Type. System(=0) or code/data selector */
2472 unsigned u1DescType : 1;
2473 /** Descriptor Privelege level. */
2474 unsigned u2Dpl : 2;
2475 /** Flags selector present(=1) or not. */
2476 unsigned u1Present : 1;
2477 /** Segment limit 16-19. - *IGNORED* */
2478 unsigned u4LimitHigh : 4;
2479 /** Available for system software. - *IGNORED* */
2480 unsigned u1Available : 1;
2481 /** Long mode flag. */
2482 unsigned u1Long : 1;
2483 /** This flags meaning depends on the segment type. Try make sense out
2484 * of the intel manual yourself. */
2485 unsigned u1DefBig : 1;
2486 /** Granularity of the limit. If set 4KB granularity is used, if
2487 * clear byte. - *IGNORED* */
2488 unsigned u1Granularity : 1;
2489 /** Base address - highest 8 bits. - *IGNORED* */
2490 unsigned u8BaseHigh2 : 8;
2491 /** Base address - bits 63-32. */
2492 unsigned u32BaseHigh3 : 32;
2493 unsigned u8Reserved : 8;
2494 unsigned u5Zeros : 5;
2495 unsigned u19Reserved : 19;
2496} X86DESC64GENERIC;
2497#pragma pack()
2498/** Pointer to a generic descriptor entry. */
2499typedef X86DESC64GENERIC *PX86DESC64GENERIC;
2500/** Pointer to a const generic descriptor entry. */
2501typedef const X86DESC64GENERIC *PCX86DESC64GENERIC;
2502
2503/**
2504 * System descriptor table entry (64 bits)
2505 *
2506 * @remarks This is, save a couple of comments, identical to X86DESC64GENERIC...
2507 */
2508#pragma pack(1)
2509typedef struct X86DESC64SYSTEM
2510{
2511 /** Limit - Low word. */
2512 unsigned u16LimitLow : 16;
2513 /** Base address - lowe word.
2514 * Don't try set this to 24 because MSC is doing stupid things then. */
2515 unsigned u16BaseLow : 16;
2516 /** Base address - first 8 bits of high word. */
2517 unsigned u8BaseHigh1 : 8;
2518 /** Segment Type. */
2519 unsigned u4Type : 4;
2520 /** Descriptor Type. System(=0) or code/data selector */
2521 unsigned u1DescType : 1;
2522 /** Descriptor Privelege level. */
2523 unsigned u2Dpl : 2;
2524 /** Flags selector present(=1) or not. */
2525 unsigned u1Present : 1;
2526 /** Segment limit 16-19. */
2527 unsigned u4LimitHigh : 4;
2528 /** Available for system software. */
2529 unsigned u1Available : 1;
2530 /** Reserved - 0. */
2531 unsigned u1Reserved : 1;
2532 /** This flags meaning depends on the segment type. Try make sense out
2533 * of the intel manual yourself. */
2534 unsigned u1DefBig : 1;
2535 /** Granularity of the limit. If set 4KB granularity is used, if
2536 * clear byte. */
2537 unsigned u1Granularity : 1;
2538 /** Base address - bits 31-24. */
2539 unsigned u8BaseHigh2 : 8;
2540 /** Base address - bits 63-32. */
2541 unsigned u32BaseHigh3 : 32;
2542 unsigned u8Reserved : 8;
2543 unsigned u5Zeros : 5;
2544 unsigned u19Reserved : 19;
2545} X86DESC64SYSTEM;
2546#pragma pack()
2547/** Pointer to a system descriptor entry. */
2548typedef X86DESC64SYSTEM *PX86DESC64SYSTEM;
2549/** Pointer to a const system descriptor entry. */
2550typedef const X86DESC64SYSTEM *PCX86DESC64SYSTEM;
2551
2552/**
2553 * Call-, Interrupt-, Trap- or Task-gate descriptor (64-bit).
2554 */
2555typedef struct X86DESC64GATE
2556{
2557 /** Target code segment offset - Low word. */
2558 unsigned u16OffsetLow : 16;
2559 /** Target code segment selector. */
2560 unsigned u16Sel : 16;
2561 /** Interrupt stack table for interrupt- and trap-gates.
2562 * Ignored by call-gates. */
2563 unsigned u3IST : 3;
2564 /** Reserved / ignored. */
2565 unsigned u5Reserved : 5;
2566 /** Segment Type. */
2567 unsigned u4Type : 4;
2568 /** Descriptor Type (0 = system). */
2569 unsigned u1DescType : 1;
2570 /** Descriptor Privelege level. */
2571 unsigned u2Dpl : 2;
2572 /** Flags selector present(=1) or not. */
2573 unsigned u1Present : 1;
2574 /** Target code segment offset - High word.
2575 * Ignored if task-gate. */
2576 unsigned u16OffsetHigh : 16;
2577 /** Target code segment offset - Top dword.
2578 * Ignored if task-gate. */
2579 unsigned u32OffsetTop : 32;
2580 /** Reserved / ignored / must be zero.
2581 * For call-gates bits 8 thru 12 must be zero, the other gates ignores this. */
2582 unsigned u32Reserved : 32;
2583} X86DESC64GATE;
2584AssertCompileSize(X86DESC64GATE, 16);
2585/** Pointer to a Call-, Interrupt-, Trap- or Task-gate descriptor entry. */
2586typedef X86DESC64GATE *PX86DESC64GATE;
2587/** Pointer to a const Call-, Interrupt-, Trap- or Task-gate descriptor entry. */
2588typedef const X86DESC64GATE *PCX86DESC64GATE;
2589
2590#endif /* VBOX_FOR_DTRACE_LIB */
2591
2592/**
2593 * Descriptor table entry.
2594 */
2595#pragma pack(1)
2596typedef union X86DESC64
2597{
2598#ifndef VBOX_FOR_DTRACE_LIB
2599 /** Generic descriptor view. */
2600 X86DESC64GENERIC Gen;
2601 /** System descriptor view. */
2602 X86DESC64SYSTEM System;
2603 /** Gate descriptor view. */
2604 X86DESC64GATE Gate;
2605#endif
2606
2607 /** 8 bit unsigned integer view. */
2608 uint8_t au8[16];
2609 /** 16 bit unsigned integer view. */
2610 uint16_t au16[8];
2611 /** 32 bit unsigned integer view. */
2612 uint32_t au32[4];
2613 /** 64 bit unsigned integer view. */
2614 uint64_t au64[2];
2615} X86DESC64;
2616#ifndef VBOX_FOR_DTRACE_LIB
2617AssertCompileSize(X86DESC64, 16);
2618#endif
2619#pragma pack()
2620/** Pointer to descriptor table entry. */
2621typedef X86DESC64 *PX86DESC64;
2622/** Pointer to const descriptor table entry. */
2623typedef const X86DESC64 *PCX86DESC64;
2624
2625/** @def X86DESC64_BASE
2626 * Return the base of a 64-bit descriptor.
2627 */
2628#define X86DESC64_BASE(a_pDesc) /*ASM-NOINC*/ \
2629 ( ((uint64_t)((a_pDesc)->Gen.u32BaseHigh3) << 32) \
2630 | ((uint32_t)((a_pDesc)->Gen.u8BaseHigh2) << 24) \
2631 | ( (a_pDesc)->Gen.u8BaseHigh1 << 16) \
2632 | ( (a_pDesc)->Gen.u16BaseLow ) )
2633
2634
2635
2636/** @name Host system descriptor table entry - Use with care!
2637 * @{ */
2638/** Host system descriptor table entry. */
2639#if HC_ARCH_BITS == 64
2640typedef X86DESC64 X86DESCHC;
2641#else
2642typedef X86DESC X86DESCHC;
2643#endif
2644/** Pointer to a host system descriptor table entry. */
2645#if HC_ARCH_BITS == 64
2646typedef PX86DESC64 PX86DESCHC;
2647#else
2648typedef PX86DESC PX86DESCHC;
2649#endif
2650/** Pointer to a const host system descriptor table entry. */
2651#if HC_ARCH_BITS == 64
2652typedef PCX86DESC64 PCX86DESCHC;
2653#else
2654typedef PCX86DESC PCX86DESCHC;
2655#endif
2656/** @} */
2657
2658
2659/** @name Selector Descriptor Types.
2660 * @{
2661 */
2662
2663/** @name Non-System Selector Types.
2664 * @{ */
2665/** Code(=set)/Data(=clear) bit. */
2666#define X86_SEL_TYPE_CODE 8
2667/** Memory(=set)/System(=clear) bit. */
2668#define X86_SEL_TYPE_MEMORY RT_BIT(4)
2669/** Accessed bit. */
2670#define X86_SEL_TYPE_ACCESSED 1
2671/** Expand down bit (for data selectors only). */
2672#define X86_SEL_TYPE_DOWN 4
2673/** Conforming bit (for code selectors only). */
2674#define X86_SEL_TYPE_CONF 4
2675/** Write bit (for data selectors only). */
2676#define X86_SEL_TYPE_WRITE 2
2677/** Read bit (for code selectors only). */
2678#define X86_SEL_TYPE_READ 2
2679/** The bit number of the code segment read bit (relative to u4Type). */
2680#define X86_SEL_TYPE_READ_BIT 1
2681
2682/** Read only selector type. */
2683#define X86_SEL_TYPE_RO 0
2684/** Accessed read only selector type. */
2685#define X86_SEL_TYPE_RO_ACC (0 | X86_SEL_TYPE_ACCESSED)
2686/** Read write selector type. */
2687#define X86_SEL_TYPE_RW 2
2688/** Accessed read write selector type. */
2689#define X86_SEL_TYPE_RW_ACC (2 | X86_SEL_TYPE_ACCESSED)
2690/** Expand down read only selector type. */
2691#define X86_SEL_TYPE_RO_DOWN 4
2692/** Accessed expand down read only selector type. */
2693#define X86_SEL_TYPE_RO_DOWN_ACC (4 | X86_SEL_TYPE_ACCESSED)
2694/** Expand down read write selector type. */
2695#define X86_SEL_TYPE_RW_DOWN 6
2696/** Accessed expand down read write selector type. */
2697#define X86_SEL_TYPE_RW_DOWN_ACC (6 | X86_SEL_TYPE_ACCESSED)
2698/** Execute only selector type. */
2699#define X86_SEL_TYPE_EO (0 | X86_SEL_TYPE_CODE)
2700/** Accessed execute only selector type. */
2701#define X86_SEL_TYPE_EO_ACC (0 | X86_SEL_TYPE_CODE | X86_SEL_TYPE_ACCESSED)
2702/** Execute and read selector type. */
2703#define X86_SEL_TYPE_ER (2 | X86_SEL_TYPE_CODE)
2704/** Accessed execute and read selector type. */
2705#define X86_SEL_TYPE_ER_ACC (2 | X86_SEL_TYPE_CODE | X86_SEL_TYPE_ACCESSED)
2706/** Conforming execute only selector type. */
2707#define X86_SEL_TYPE_EO_CONF (4 | X86_SEL_TYPE_CODE)
2708/** Accessed Conforming execute only selector type. */
2709#define X86_SEL_TYPE_EO_CONF_ACC (4 | X86_SEL_TYPE_CODE | X86_SEL_TYPE_ACCESSED)
2710/** Conforming execute and write selector type. */
2711#define X86_SEL_TYPE_ER_CONF (6 | X86_SEL_TYPE_CODE)
2712/** Accessed Conforming execute and write selector type. */
2713#define X86_SEL_TYPE_ER_CONF_ACC (6 | X86_SEL_TYPE_CODE | X86_SEL_TYPE_ACCESSED)
2714/** @} */
2715
2716
2717/** @name System Selector Types.
2718 * @{ */
2719/** The TSS busy bit mask. */
2720#define X86_SEL_TYPE_SYS_TSS_BUSY_MASK 2
2721
2722/** Undefined system selector type. */
2723#define X86_SEL_TYPE_SYS_UNDEFINED 0
2724/** 286 TSS selector. */
2725#define X86_SEL_TYPE_SYS_286_TSS_AVAIL 1
2726/** LDT selector. */
2727#define X86_SEL_TYPE_SYS_LDT 2
2728/** 286 TSS selector - Busy. */
2729#define X86_SEL_TYPE_SYS_286_TSS_BUSY 3
2730/** 286 Callgate selector. */
2731#define X86_SEL_TYPE_SYS_286_CALL_GATE 4
2732/** Taskgate selector. */
2733#define X86_SEL_TYPE_SYS_TASK_GATE 5
2734/** 286 Interrupt gate selector. */
2735#define X86_SEL_TYPE_SYS_286_INT_GATE 6
2736/** 286 Trapgate selector. */
2737#define X86_SEL_TYPE_SYS_286_TRAP_GATE 7
2738/** Undefined system selector. */
2739#define X86_SEL_TYPE_SYS_UNDEFINED2 8
2740/** 386 TSS selector. */
2741#define X86_SEL_TYPE_SYS_386_TSS_AVAIL 9
2742/** Undefined system selector. */
2743#define X86_SEL_TYPE_SYS_UNDEFINED3 0xA
2744/** 386 TSS selector - Busy. */
2745#define X86_SEL_TYPE_SYS_386_TSS_BUSY 0xB
2746/** 386 Callgate selector. */
2747#define X86_SEL_TYPE_SYS_386_CALL_GATE 0xC
2748/** Undefined system selector. */
2749#define X86_SEL_TYPE_SYS_UNDEFINED4 0xD
2750/** 386 Interruptgate selector. */
2751#define X86_SEL_TYPE_SYS_386_INT_GATE 0xE
2752/** 386 Trapgate selector. */
2753#define X86_SEL_TYPE_SYS_386_TRAP_GATE 0xF
2754/** @} */
2755
2756/** @name AMD64 System Selector Types.
2757 * @{ */
2758/** LDT selector. */
2759#define AMD64_SEL_TYPE_SYS_LDT 2
2760/** TSS selector - Busy. */
2761#define AMD64_SEL_TYPE_SYS_TSS_AVAIL 9
2762/** TSS selector - Busy. */
2763#define AMD64_SEL_TYPE_SYS_TSS_BUSY 0xB
2764/** Callgate selector. */
2765#define AMD64_SEL_TYPE_SYS_CALL_GATE 0xC
2766/** Interruptgate selector. */
2767#define AMD64_SEL_TYPE_SYS_INT_GATE 0xE
2768/** Trapgate selector. */
2769#define AMD64_SEL_TYPE_SYS_TRAP_GATE 0xF
2770/** @} */
2771
2772/** @} */
2773
2774
2775/** @name Descriptor Table Entry Flag Masks.
2776 * These are for the 2nd 32-bit word of a descriptor.
2777 * @{ */
2778/** Bits 8-11 - TYPE - Descriptor type mask. */
2779#define X86_DESC_TYPE_MASK (RT_BIT(8) | RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
2780/** Bit 12 - S - System (=0) or Code/Data (=1). */
2781#define X86_DESC_S RT_BIT(12)
2782/** Bits 13-14 - DPL - Descriptor Privilege Level. */
2783#define X86_DESC_DPL (RT_BIT(13) | RT_BIT(14))
2784/** Bit 15 - P - Present. */
2785#define X86_DESC_P RT_BIT(15)
2786/** Bit 20 - AVL - Available for system software. */
2787#define X86_DESC_AVL RT_BIT(20)
2788/** Bit 22 - DB - Default operation size. 0 = 16 bit, 1 = 32 bit. */
2789#define X86_DESC_DB RT_BIT(22)
2790/** Bit 23 - G - Granularity of the limit. If set 4KB granularity is
2791 * used, if clear byte. */
2792#define X86_DESC_G RT_BIT(23)
2793/** @} */
2794
2795/** @} */
2796
2797
2798/** @name Task Segments.
2799 * @{
2800 */
2801
2802/**
2803 * 16-bit Task Segment (TSS).
2804 */
2805#pragma pack(1)
2806typedef struct X86TSS16
2807{
2808 /** Back link to previous task. (static) */
2809 RTSEL selPrev;
2810 /** Ring-0 stack pointer. (static) */
2811 uint16_t sp0;
2812 /** Ring-0 stack segment. (static) */
2813 RTSEL ss0;
2814 /** Ring-1 stack pointer. (static) */
2815 uint16_t sp1;
2816 /** Ring-1 stack segment. (static) */
2817 RTSEL ss1;
2818 /** Ring-2 stack pointer. (static) */
2819 uint16_t sp2;
2820 /** Ring-2 stack segment. (static) */
2821 RTSEL ss2;
2822 /** IP before task switch. */
2823 uint16_t ip;
2824 /** FLAGS before task switch. */
2825 uint16_t flags;
2826 /** AX before task switch. */
2827 uint16_t ax;
2828 /** CX before task switch. */
2829 uint16_t cx;
2830 /** DX before task switch. */
2831 uint16_t dx;
2832 /** BX before task switch. */
2833 uint16_t bx;
2834 /** SP before task switch. */
2835 uint16_t sp;
2836 /** BP before task switch. */
2837 uint16_t bp;
2838 /** SI before task switch. */
2839 uint16_t si;
2840 /** DI before task switch. */
2841 uint16_t di;
2842 /** ES before task switch. */
2843 RTSEL es;
2844 /** CS before task switch. */
2845 RTSEL cs;
2846 /** SS before task switch. */
2847 RTSEL ss;
2848 /** DS before task switch. */
2849 RTSEL ds;
2850 /** LDTR before task switch. */
2851 RTSEL selLdt;
2852} X86TSS16;
2853#ifndef VBOX_FOR_DTRACE_LIB
2854AssertCompileSize(X86TSS16, 44);
2855#endif
2856#pragma pack()
2857/** Pointer to a 16-bit task segment. */
2858typedef X86TSS16 *PX86TSS16;
2859/** Pointer to a const 16-bit task segment. */
2860typedef const X86TSS16 *PCX86TSS16;
2861
2862
2863/**
2864 * 32-bit Task Segment (TSS).
2865 */
2866#pragma pack(1)
2867typedef struct X86TSS32
2868{
2869 /** Back link to previous task. (static) */
2870 RTSEL selPrev;
2871 uint16_t padding1;
2872 /** Ring-0 stack pointer. (static) */
2873 uint32_t esp0;
2874 /** Ring-0 stack segment. (static) */
2875 RTSEL ss0;
2876 uint16_t padding_ss0;
2877 /** Ring-1 stack pointer. (static) */
2878 uint32_t esp1;
2879 /** Ring-1 stack segment. (static) */
2880 RTSEL ss1;
2881 uint16_t padding_ss1;
2882 /** Ring-2 stack pointer. (static) */
2883 uint32_t esp2;
2884 /** Ring-2 stack segment. (static) */
2885 RTSEL ss2;
2886 uint16_t padding_ss2;
2887 /** Page directory for the task. (static) */
2888 uint32_t cr3;
2889 /** EIP before task switch. */
2890 uint32_t eip;
2891 /** EFLAGS before task switch. */
2892 uint32_t eflags;
2893 /** EAX before task switch. */
2894 uint32_t eax;
2895 /** ECX before task switch. */
2896 uint32_t ecx;
2897 /** EDX before task switch. */
2898 uint32_t edx;
2899 /** EBX before task switch. */
2900 uint32_t ebx;
2901 /** ESP before task switch. */
2902 uint32_t esp;
2903 /** EBP before task switch. */
2904 uint32_t ebp;
2905 /** ESI before task switch. */
2906 uint32_t esi;
2907 /** EDI before task switch. */
2908 uint32_t edi;
2909 /** ES before task switch. */
2910 RTSEL es;
2911 uint16_t padding_es;
2912 /** CS before task switch. */
2913 RTSEL cs;
2914 uint16_t padding_cs;
2915 /** SS before task switch. */
2916 RTSEL ss;
2917 uint16_t padding_ss;
2918 /** DS before task switch. */
2919 RTSEL ds;
2920 uint16_t padding_ds;
2921 /** FS before task switch. */
2922 RTSEL fs;
2923 uint16_t padding_fs;
2924 /** GS before task switch. */
2925 RTSEL gs;
2926 uint16_t padding_gs;
2927 /** LDTR before task switch. */
2928 RTSEL selLdt;
2929 uint16_t padding_ldt;
2930 /** Debug trap flag */
2931 uint16_t fDebugTrap;
2932 /** Offset relative to the TSS of the start of the I/O Bitmap
2933 * and the end of the interrupt redirection bitmap. */
2934 uint16_t offIoBitmap;
2935 /** 32 bytes for the virtual interrupt redirection bitmap. (VME) */
2936 uint8_t IntRedirBitmap[32];
2937} X86TSS32;
2938#pragma pack()
2939/** Pointer to task segment. */
2940typedef X86TSS32 *PX86TSS32;
2941/** Pointer to const task segment. */
2942typedef const X86TSS32 *PCX86TSS32;
2943
2944
2945/**
2946 * 64-bit Task segment.
2947 */
2948#pragma pack(1)
2949typedef struct X86TSS64
2950{
2951 /** Reserved. */
2952 uint32_t u32Reserved;
2953 /** Ring-0 stack pointer. (static) */
2954 uint64_t rsp0;
2955 /** Ring-1 stack pointer. (static) */
2956 uint64_t rsp1;
2957 /** Ring-2 stack pointer. (static) */
2958 uint64_t rsp2;
2959 /** Reserved. */
2960 uint32_t u32Reserved2[2];
2961 /* IST */
2962 uint64_t ist1;
2963 uint64_t ist2;
2964 uint64_t ist3;
2965 uint64_t ist4;
2966 uint64_t ist5;
2967 uint64_t ist6;
2968 uint64_t ist7;
2969 /* Reserved. */
2970 uint16_t u16Reserved[5];
2971 /** Offset relative to the TSS of the start of the I/O Bitmap
2972 * and the end of the interrupt redirection bitmap. */
2973 uint16_t offIoBitmap;
2974 /** 32 bytes for the virtual interrupt redirection bitmap. (VME) */
2975 uint8_t IntRedirBitmap[32];
2976} X86TSS64;
2977#pragma pack()
2978/** Pointer to a 64-bit task segment. */
2979typedef X86TSS64 *PX86TSS64;
2980/** Pointer to a const 64-bit task segment. */
2981typedef const X86TSS64 *PCX86TSS64;
2982#ifndef VBOX_FOR_DTRACE_LIB
2983AssertCompileSize(X86TSS64, 136);
2984#endif
2985
2986/** @} */
2987
2988
2989/** @name Selectors.
2990 * @{
2991 */
2992
2993/**
2994 * The shift used to convert a selector from and to index an index (C).
2995 */
2996#define X86_SEL_SHIFT 3
2997
2998/**
2999 * The mask used to mask off the table indicator and RPL of an selector.
3000 */
3001#define X86_SEL_MASK 0xfff8U
3002
3003/**
3004 * The mask used to mask off the RPL of an selector.
3005 * This is suitable for checking for NULL selectors.
3006 */
3007#define X86_SEL_MASK_OFF_RPL 0xfffcU
3008
3009/**
3010 * The bit indicating that a selector is in the LDT and not in the GDT.
3011 */
3012#define X86_SEL_LDT 0x0004U
3013
3014/**
3015 * The bit mask for getting the RPL of a selector.
3016 */
3017#define X86_SEL_RPL 0x0003U
3018
3019/**
3020 * The mask covering both RPL and LDT.
3021 * This is incidentally the same as sizeof(X86DESC) - 1, so good for limit
3022 * checks.
3023 */
3024#define X86_SEL_RPL_LDT 0x0007U
3025
3026/** @} */
3027
3028
3029/**
3030 * x86 Exceptions/Faults/Traps.
3031 */
3032typedef enum X86XCPT
3033{
3034 /** \#DE - Divide error. */
3035 X86_XCPT_DE = 0x00,
3036 /** \#DB - Debug event (single step, DRx, ..) */
3037 X86_XCPT_DB = 0x01,
3038 /** NMI - Non-Maskable Interrupt */
3039 X86_XCPT_NMI = 0x02,
3040 /** \#BP - Breakpoint (INT3). */
3041 X86_XCPT_BP = 0x03,
3042 /** \#OF - Overflow (INTO). */
3043 X86_XCPT_OF = 0x04,
3044 /** \#BR - Bound range exceeded (BOUND). */
3045 X86_XCPT_BR = 0x05,
3046 /** \#UD - Undefined opcode. */
3047 X86_XCPT_UD = 0x06,
3048 /** \#NM - Device not available (math coprocessor device). */
3049 X86_XCPT_NM = 0x07,
3050 /** \#DF - Double fault. */
3051 X86_XCPT_DF = 0x08,
3052 /** ??? - Coprocessor segment overrun (obsolete). */
3053 X86_XCPT_CO_SEG_OVERRUN = 0x09,
3054 /** \#TS - Taskswitch (TSS). */
3055 X86_XCPT_TS = 0x0a,
3056 /** \#NP - Segment no present. */
3057 X86_XCPT_NP = 0x0b,
3058 /** \#SS - Stack segment fault. */
3059 X86_XCPT_SS = 0x0c,
3060 /** \#GP - General protection fault. */
3061 X86_XCPT_GP = 0x0d,
3062 /** \#PF - Page fault. */
3063 X86_XCPT_PF = 0x0e,
3064 /* 0x0f is reserved (to avoid conflict with spurious interrupts in BIOS setup). */
3065 /** \#MF - Math fault (FPU). */
3066 X86_XCPT_MF = 0x10,
3067 /** \#AC - Alignment check. */
3068 X86_XCPT_AC = 0x11,
3069 /** \#MC - Machine check. */
3070 X86_XCPT_MC = 0x12,
3071 /** \#XF - SIMD Floating-Pointer Exception. */
3072 X86_XCPT_XF = 0x13,
3073 /** \#VE - Virtualzation Exception. */
3074 X86_XCPT_VE = 0x14,
3075 /** \#SX - Security Exception. */
3076 X86_XCPT_SX = 0x1f
3077} X86XCPT;
3078/** Pointer to a x86 exception code. */
3079typedef X86XCPT *PX86XCPT;
3080/** Pointer to a const x86 exception code. */
3081typedef const X86XCPT *PCX86XCPT;
3082/** The maximum exception value. */
3083#define X86_XCPT_MAX (X86_XCPT_SX)
3084
3085
3086/** @name Trap Error Codes
3087 * @{
3088 */
3089/** External indicator. */
3090#define X86_TRAP_ERR_EXTERNAL 1
3091/** IDT indicator. */
3092#define X86_TRAP_ERR_IDT 2
3093/** Descriptor table indicator - If set LDT, if clear GDT. */
3094#define X86_TRAP_ERR_TI 4
3095/** Mask for getting the selector. */
3096#define X86_TRAP_ERR_SEL_MASK 0xfff8
3097/** Shift for getting the selector table index (C type index). */
3098#define X86_TRAP_ERR_SEL_SHIFT 3
3099/** @} */
3100
3101
3102/** @name \#PF Trap Error Codes
3103 * @{
3104 */
3105/** Bit 0 - P - Not present (clear) or page level protection (set) fault. */
3106#define X86_TRAP_PF_P RT_BIT(0)
3107/** Bit 1 - R/W - Read (clear) or write (set) access. */
3108#define X86_TRAP_PF_RW RT_BIT(1)
3109/** Bit 2 - U/S - CPU executing in user mode (set) or supervisor mode (clear). */
3110#define X86_TRAP_PF_US RT_BIT(2)
3111/** Bit 3 - RSVD- Reserved bit violation (set), i.e. reserved bit was set to 1. */
3112#define X86_TRAP_PF_RSVD RT_BIT(3)
3113/** Bit 4 - I/D - Instruction fetch (set) / Data access (clear) - PAE + NXE. */
3114#define X86_TRAP_PF_ID RT_BIT(4)
3115/** @} */
3116
3117#pragma pack(1)
3118/**
3119 * 32-bit IDTR/GDTR.
3120 */
3121typedef struct X86XDTR32
3122{
3123 /** Size of the descriptor table. */
3124 uint16_t cb;
3125 /** Address of the descriptor table. */
3126#ifndef VBOX_FOR_DTRACE_LIB
3127 uint32_t uAddr;
3128#else
3129 uint16_t au16Addr[2];
3130#endif
3131} X86XDTR32, *PX86XDTR32;
3132#pragma pack()
3133
3134#pragma pack(1)
3135/**
3136 * 64-bit IDTR/GDTR.
3137 */
3138typedef struct X86XDTR64
3139{
3140 /** Size of the descriptor table. */
3141 uint16_t cb;
3142 /** Address of the descriptor table. */
3143#ifndef VBOX_FOR_DTRACE_LIB
3144 uint64_t uAddr;
3145#else
3146 uint16_t au16Addr[4];
3147#endif
3148} X86XDTR64, *PX86XDTR64;
3149#pragma pack()
3150
3151
3152/** @name ModR/M
3153 * @{ */
3154#define X86_MODRM_RM_MASK UINT8_C(0x07)
3155#define X86_MODRM_REG_MASK UINT8_C(0x38)
3156#define X86_MODRM_REG_SMASK UINT8_C(0x07)
3157#define X86_MODRM_REG_SHIFT 3
3158#define X86_MODRM_MOD_MASK UINT8_C(0xc0)
3159#define X86_MODRM_MOD_SMASK UINT8_C(0x03)
3160#define X86_MODRM_MOD_SHIFT 6
3161#ifndef VBOX_FOR_DTRACE_LIB
3162AssertCompile((X86_MODRM_RM_MASK | X86_MODRM_REG_MASK | X86_MODRM_MOD_MASK) == 0xff);
3163AssertCompile((X86_MODRM_REG_MASK >> X86_MODRM_REG_SHIFT) == X86_MODRM_REG_SMASK);
3164AssertCompile((X86_MODRM_MOD_MASK >> X86_MODRM_MOD_SHIFT) == X86_MODRM_MOD_SMASK);
3165#endif
3166/** @} */
3167
3168/** @name SIB
3169 * @{ */
3170#define X86_SIB_BASE_MASK UINT8_C(0x07)
3171#define X86_SIB_INDEX_MASK UINT8_C(0x38)
3172#define X86_SIB_INDEX_SMASK UINT8_C(0x07)
3173#define X86_SIB_INDEX_SHIFT 3
3174#define X86_SIB_SCALE_MASK UINT8_C(0xc0)
3175#define X86_SIB_SCALE_SMASK UINT8_C(0x03)
3176#define X86_SIB_SCALE_SHIFT 6
3177#ifndef VBOX_FOR_DTRACE_LIB
3178AssertCompile((X86_SIB_BASE_MASK | X86_SIB_INDEX_MASK | X86_SIB_SCALE_MASK) == 0xff);
3179AssertCompile((X86_SIB_INDEX_MASK >> X86_SIB_INDEX_SHIFT) == X86_SIB_INDEX_SMASK);
3180AssertCompile((X86_SIB_SCALE_MASK >> X86_SIB_SCALE_SHIFT) == X86_SIB_SCALE_SMASK);
3181#endif
3182/** @} */
3183
3184/** @name General register indexes
3185 * @{ */
3186#define X86_GREG_xAX 0
3187#define X86_GREG_xCX 1
3188#define X86_GREG_xDX 2
3189#define X86_GREG_xBX 3
3190#define X86_GREG_xSP 4
3191#define X86_GREG_xBP 5
3192#define X86_GREG_xSI 6
3193#define X86_GREG_xDI 7
3194#define X86_GREG_x8 8
3195#define X86_GREG_x9 9
3196#define X86_GREG_x10 10
3197#define X86_GREG_x11 11
3198#define X86_GREG_x12 12
3199#define X86_GREG_x13 13
3200#define X86_GREG_x14 14
3201#define X86_GREG_x15 15
3202/** @} */
3203
3204/** @name X86_SREG_XXX - Segment register indexes.
3205 * @{ */
3206#define X86_SREG_ES 0
3207#define X86_SREG_CS 1
3208#define X86_SREG_SS 2
3209#define X86_SREG_DS 3
3210#define X86_SREG_FS 4
3211#define X86_SREG_GS 5
3212/** @} */
3213/** Segment register count. */
3214#define X86_SREG_COUNT 6
3215
3216
3217/** @} */
3218
3219#endif
3220
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette