VirtualBox

source: vbox/trunk/src/VBox/VMM/include/CPUMInternal.mac@ 51338

Last change on this file since 51338 was 51301, checked in by vboxsync, 11 years ago

VMM: Retire aGuestCpuIdHyper legacy array.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 16.0 KB
Line 
1; $Id: CPUMInternal.mac 51301 2014-05-20 04:47:59Z vboxsync $
2;; @file
3; CPUM - Internal header file (asm).
4;
5
6;
7; Copyright (C) 2006-2012 Oracle Corporation
8;
9; This file is part of VirtualBox Open Source Edition (OSE), as
10; available from http://www.virtualbox.org. This file is free software;
11; you can redistribute it and/or modify it under the terms of the GNU
12; General Public License (GPL) as published by the Free Software
13; Foundation, in version 2 as it comes in the "COPYING" file of the
14; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16;
17
18%include "VBox/asmdefs.mac"
19
20
21%define CPUM_USED_FPU RT_BIT(0)
22%define CPUM_USED_FPU_SINCE_REM RT_BIT(1)
23%define CPUM_USED_MANUAL_XMM_RESTORE RT_BIT(2)
24%define CPUM_USE_SYSENTER RT_BIT(3)
25%define CPUM_USE_SYSCALL RT_BIT(4)
26%define CPUM_USE_DEBUG_REGS_HOST RT_BIT(5)
27%define CPUM_USED_DEBUG_REGS_HOST RT_BIT(6)
28%define CPUM_USE_DEBUG_REGS_HYPER RT_BIT(7)
29%define CPUM_USED_DEBUG_REGS_HYPER RT_BIT(8)
30%define CPUM_USED_DEBUG_REGS_GUEST RT_BIT(9)
31%define CPUM_SYNC_FPU_STATE RT_BIT(16)
32%define CPUM_SYNC_DEBUG_REGS_GUEST RT_BIT(17)
33%define CPUM_SYNC_DEBUG_REGS_HYPER RT_BIT(18)
34%define CPUM_USE_FFXSR_LEAKY RT_BIT(19)
35
36%define CPUM_HANDLER_DS 1
37%define CPUM_HANDLER_ES 2
38%define CPUM_HANDLER_FS 3
39%define CPUM_HANDLER_GS 4
40%define CPUM_HANDLER_IRET 5
41%define CPUM_HANDLER_TYPEMASK 0ffh
42%define CPUM_HANDLER_CTXCORE_IN_EBP RT_BIT(31)
43
44%define VMMGCRET_USED_FPU 040000000h
45
46%define FPUSTATE_SIZE 512
47
48;; if anyone figures how to do %if HC_ARCH_BITS == 64 || defined(VBOX_WITH_HYBRID_32BIT_KERNEL) in
49; nasm please tell / fix this hack.
50%ifdef VBOX_WITH_HYBRID_32BIT_KERNEL
51 %define fVBOX_WITH_HYBRID_32BIT_KERNEL 1
52%else
53 %define fVBOX_WITH_HYBRID_32BIT_KERNEL 0
54%endif
55
56struc CPUM
57 ;...
58 .offCPUMCPU0 resd 1
59 .fHostUseFlags resd 1
60
61 ; CPUID eax=1
62 .CPUFeatures.edx resd 1
63 .CPUFeatures.ecx resd 1
64
65 ; CPUID eax=0x80000001
66 .CPUFeaturesExt.edx resd 1
67 .CPUFeaturesExt.ecx resd 1
68
69 ; CR4 masks
70 .CR4.AndMask resd 1
71 .CR4.OrMask resd 1
72 ; entered rawmode?
73 .u8PortableCpuIdLevel resb 1
74 .fPendingRestore resb 1
75%if RTHCPTR_CB == 8
76 .abPadding resb 6
77%else
78 .abPadding resb 2
79%endif
80
81 ; CPUID leafs
82 .aGuestCpuIdStd resb 16*6
83 .aGuestCpuIdExt resb 16*10
84 .aGuestCpuIdCentaur resb 16*4
85 .GuestCpuIdDef resb 16
86
87%if HC_ARCH_BITS == 32
88 .abPadding2 resb 4
89%endif
90
91 .GuestInfo resb RTHCPTR_CB*4 + RTRCPTR_CB*2 + 4*12
92 .GuestFeatures resb 32
93 .HostFeatures resb 32
94
95 .cMsrWrites resq 1
96 .cMsrWritesToIgnoredBits resq 1
97 .cMsrWritesRaiseGp resq 1
98 .cMsrWritesUnknown resq 1
99 .cMsrReads resq 1
100 .cMsrReadsRaiseGp resq 1
101 .cMsrReadsUnknown resq 1
102endstruc
103
104struc CPUMCPU
105 ;
106 ; Hypervisor Context.
107 ;
108 .Hyper.fpu resb 512
109 .Hyper.eax resq 1
110 .Hyper.ecx resq 1
111 .Hyper.edx resq 1
112 .Hyper.ebx resq 1
113 .Hyper.esp resq 1
114 .Hyper.ebp resq 1
115 .Hyper.esi resq 1
116 .Hyper.edi resq 1
117 .Hyper.r8 resq 1
118 .Hyper.r9 resq 1
119 .Hyper.r10 resq 1
120 .Hyper.r11 resq 1
121 .Hyper.r12 resq 1
122 .Hyper.r13 resq 1
123 .Hyper.r14 resq 1
124 .Hyper.r15 resq 1
125 .Hyper.es.Sel resw 1
126 .Hyper.es.PaddingSel resw 1
127 .Hyper.es.ValidSel resw 1
128 .Hyper.es.fFlags resw 1
129 .Hyper.es.u64Base resq 1
130 .Hyper.es.u32Limit resd 1
131 .Hyper.es.Attr resd 1
132 .Hyper.cs.Sel resw 1
133 .Hyper.cs.PaddingSel resw 1
134 .Hyper.cs.ValidSel resw 1
135 .Hyper.cs.fFlags resw 1
136 .Hyper.cs.u64Base resq 1
137 .Hyper.cs.u32Limit resd 1
138 .Hyper.cs.Attr resd 1
139 .Hyper.ss.Sel resw 1
140 .Hyper.ss.PaddingSel resw 1
141 .Hyper.ss.ValidSel resw 1
142 .Hyper.ss.fFlags resw 1
143 .Hyper.ss.u64Base resq 1
144 .Hyper.ss.u32Limit resd 1
145 .Hyper.ss.Attr resd 1
146 .Hyper.ds.Sel resw 1
147 .Hyper.ds.PaddingSel resw 1
148 .Hyper.ds.ValidSel resw 1
149 .Hyper.ds.fFlags resw 1
150 .Hyper.ds.u64Base resq 1
151 .Hyper.ds.u32Limit resd 1
152 .Hyper.ds.Attr resd 1
153 .Hyper.fs.Sel resw 1
154 .Hyper.fs.PaddingSel resw 1
155 .Hyper.fs.ValidSel resw 1
156 .Hyper.fs.fFlags resw 1
157 .Hyper.fs.u64Base resq 1
158 .Hyper.fs.u32Limit resd 1
159 .Hyper.fs.Attr resd 1
160 .Hyper.gs.Sel resw 1
161 .Hyper.gs.PaddingSel resw 1
162 .Hyper.gs.ValidSel resw 1
163 .Hyper.gs.fFlags resw 1
164 .Hyper.gs.u64Base resq 1
165 .Hyper.gs.u32Limit resd 1
166 .Hyper.gs.Attr resd 1
167 .Hyper.eip resq 1
168 .Hyper.eflags resq 1
169 .Hyper.cr0 resq 1
170 .Hyper.cr2 resq 1
171 .Hyper.cr3 resq 1
172 .Hyper.cr4 resq 1
173 .Hyper.dr resq 8
174 .Hyper.gdtrPadding resw 3
175 .Hyper.gdtr resw 0
176 .Hyper.gdtr.cbGdt resw 1
177 .Hyper.gdtr.pGdt resq 1
178 .Hyper.idtrPadding resw 3
179 .Hyper.idtr resw 0
180 .Hyper.idtr.cbIdt resw 1
181 .Hyper.idtr.pIdt resq 1
182 .Hyper.ldtr.Sel resw 1
183 .Hyper.ldtr.PaddingSel resw 1
184 .Hyper.ldtr.ValidSel resw 1
185 .Hyper.ldtr.fFlags resw 1
186 .Hyper.ldtr.u64Base resq 1
187 .Hyper.ldtr.u32Limit resd 1
188 .Hyper.ldtr.Attr resd 1
189 .Hyper.tr.Sel resw 1
190 .Hyper.tr.PaddingSel resw 1
191 .Hyper.tr.ValidSel resw 1
192 .Hyper.tr.fFlags resw 1
193 .Hyper.tr.u64Base resq 1
194 .Hyper.tr.u32Limit resd 1
195 .Hyper.tr.Attr resd 1
196 .Hyper.SysEnter.cs resb 8
197 .Hyper.SysEnter.eip resb 8
198 .Hyper.SysEnter.esp resb 8
199 .Hyper.msrEFER resb 8
200 .Hyper.msrSTAR resb 8
201 .Hyper.msrPAT resb 8
202 .Hyper.msrLSTAR resb 8
203 .Hyper.msrCSTAR resb 8
204 .Hyper.msrSFMASK resb 8
205 .Hyper.msrKERNELGSBASE resb 8
206 .Hyper.msrApicBase resb 8
207
208 ;
209 ; Host context state
210 ;
211 alignb 64
212 .Host.fpu resb FPUSTATE_SIZE
213
214%if HC_ARCH_BITS == 64 || fVBOX_WITH_HYBRID_32BIT_KERNEL
215 ;.Host.rax resq 1 - scratch
216 .Host.rbx resq 1
217 ;.Host.rcx resq 1 - scratch
218 ;.Host.rdx resq 1 - scratch
219 .Host.rdi resq 1
220 .Host.rsi resq 1
221 .Host.rbp resq 1
222 .Host.rsp resq 1
223 ;.Host.r8 resq 1 - scratch
224 ;.Host.r9 resq 1 - scratch
225 .Host.r10 resq 1
226 .Host.r11 resq 1
227 .Host.r12 resq 1
228 .Host.r13 resq 1
229 .Host.r14 resq 1
230 .Host.r15 resq 1
231 ;.Host.rip resd 1 - scratch
232 .Host.rflags resq 1
233%endif
234%if HC_ARCH_BITS == 32
235 ;.Host.eax resd 1 - scratch
236 .Host.ebx resd 1
237 ;.Host.edx resd 1 - scratch
238 ;.Host.ecx resd 1 - scratch
239 .Host.edi resd 1
240 .Host.esi resd 1
241 .Host.ebp resd 1
242 .Host.eflags resd 1
243 ;.Host.eip resd 1 - scratch
244 ; lss pair!
245 .Host.esp resd 1
246%endif
247 .Host.ss resw 1
248 .Host.ssPadding resw 1
249 .Host.gs resw 1
250 .Host.gsPadding resw 1
251 .Host.fs resw 1
252 .Host.fsPadding resw 1
253 .Host.es resw 1
254 .Host.esPadding resw 1
255 .Host.ds resw 1
256 .Host.dsPadding resw 1
257 .Host.cs resw 1
258 .Host.csPadding resw 1
259
260%if HC_ARCH_BITS == 32 && fVBOX_WITH_HYBRID_32BIT_KERNEL == 0
261 .Host.cr0 resd 1
262 ;.Host.cr2 resd 1 - scratch
263 .Host.cr3 resd 1
264 .Host.cr4 resd 1
265
266 .Host.dr0 resd 1
267 .Host.dr1 resd 1
268 .Host.dr2 resd 1
269 .Host.dr3 resd 1
270 .Host.dr6 resd 1
271 .Host.dr7 resd 1
272
273 .Host.gdtr resb 6 ; GDT limit + linear address
274 .Host.gdtrPadding resw 1
275 .Host.idtr resb 6 ; IDT limit + linear address
276 .Host.idtrPadding resw 1
277 .Host.ldtr resw 1
278 .Host.ldtrPadding resw 1
279 .Host.tr resw 1
280 .Host.trPadding resw 1
281
282 .Host.SysEnterPadding resd 1
283 .Host.SysEnter.cs resq 1
284 .Host.SysEnter.eip resq 1
285 .Host.SysEnter.esp resq 1
286 .Host.efer resq 1
287
288%else ; 64-bit
289
290 .Host.cr0 resq 1
291 ;.Host.cr2 resq 1 - scratch
292 .Host.cr3 resq 1
293 .Host.cr4 resq 1
294 .Host.cr8 resq 1
295
296 .Host.dr0 resq 1
297 .Host.dr1 resq 1
298 .Host.dr2 resq 1
299 .Host.dr3 resq 1
300 .Host.dr6 resq 1
301 .Host.dr7 resq 1
302
303 .Host.gdtr resb 10 ; GDT limit + linear address
304 .Host.gdtrPadding resw 1
305 .Host.idtr resb 10 ; IDT limit + linear address
306 .Host.idtrPadding resw 1
307 .Host.ldtr resw 1
308 .Host.ldtrPadding resw 1
309 .Host.tr resw 1
310 .Host.trPadding resw 1
311
312 .Host.SysEnter.cs resq 1
313 .Host.SysEnter.eip resq 1
314 .Host.SysEnter.esp resq 1
315 .Host.FSbase resq 1
316 .Host.GSbase resq 1
317 .Host.efer resq 1
318%endif ; 64-bit
319
320%ifdef VBOX_WITH_CRASHDUMP_MAGIC
321 .aMagic resb 56
322 .uMagic resq 1
323%endif
324 ;
325 ; Guest context state
326 ; (Identical to the .Hyper chunk above.)
327 ;
328 alignb 64
329 .Guest.fpu resb 512
330 .Guest.eax resq 1
331 .Guest.ecx resq 1
332 .Guest.edx resq 1
333 .Guest.ebx resq 1
334 .Guest.esp resq 1
335 .Guest.ebp resq 1
336 .Guest.esi resq 1
337 .Guest.edi resq 1
338 .Guest.r8 resq 1
339 .Guest.r9 resq 1
340 .Guest.r10 resq 1
341 .Guest.r11 resq 1
342 .Guest.r12 resq 1
343 .Guest.r13 resq 1
344 .Guest.r14 resq 1
345 .Guest.r15 resq 1
346 .Guest.es.Sel resw 1
347 .Guest.es.PaddingSel resw 1
348 .Guest.es.ValidSel resw 1
349 .Guest.es.fFlags resw 1
350 .Guest.es.u64Base resq 1
351 .Guest.es.u32Limit resd 1
352 .Guest.es.Attr resd 1
353 .Guest.cs.Sel resw 1
354 .Guest.cs.PaddingSel resw 1
355 .Guest.cs.ValidSel resw 1
356 .Guest.cs.fFlags resw 1
357 .Guest.cs.u64Base resq 1
358 .Guest.cs.u32Limit resd 1
359 .Guest.cs.Attr resd 1
360 .Guest.ss.Sel resw 1
361 .Guest.ss.PaddingSel resw 1
362 .Guest.ss.ValidSel resw 1
363 .Guest.ss.fFlags resw 1
364 .Guest.ss.u64Base resq 1
365 .Guest.ss.u32Limit resd 1
366 .Guest.ss.Attr resd 1
367 .Guest.ds.Sel resw 1
368 .Guest.ds.PaddingSel resw 1
369 .Guest.ds.ValidSel resw 1
370 .Guest.ds.fFlags resw 1
371 .Guest.ds.u64Base resq 1
372 .Guest.ds.u32Limit resd 1
373 .Guest.ds.Attr resd 1
374 .Guest.fs.Sel resw 1
375 .Guest.fs.PaddingSel resw 1
376 .Guest.fs.ValidSel resw 1
377 .Guest.fs.fFlags resw 1
378 .Guest.fs.u64Base resq 1
379 .Guest.fs.u32Limit resd 1
380 .Guest.fs.Attr resd 1
381 .Guest.gs.Sel resw 1
382 .Guest.gs.PaddingSel resw 1
383 .Guest.gs.ValidSel resw 1
384 .Guest.gs.fFlags resw 1
385 .Guest.gs.u64Base resq 1
386 .Guest.gs.u32Limit resd 1
387 .Guest.gs.Attr resd 1
388 .Guest.eip resq 1
389 .Guest.eflags resq 1
390 .Guest.cr0 resq 1
391 .Guest.cr2 resq 1
392 .Guest.cr3 resq 1
393 .Guest.cr4 resq 1
394 .Guest.dr resq 8
395 .Guest.gdtrPadding resw 3
396 .Guest.gdtr resw 0
397 .Guest.gdtr.cbGdt resw 1
398 .Guest.gdtr.pGdt resq 1
399 .Guest.idtrPadding resw 3
400 .Guest.idtr resw 0
401 .Guest.idtr.cbIdt resw 1
402 .Guest.idtr.pIdt resq 1
403 .Guest.ldtr.Sel resw 1
404 .Guest.ldtr.PaddingSel resw 1
405 .Guest.ldtr.ValidSel resw 1
406 .Guest.ldtr.fFlags resw 1
407 .Guest.ldtr.u64Base resq 1
408 .Guest.ldtr.u32Limit resd 1
409 .Guest.ldtr.Attr resd 1
410 .Guest.tr.Sel resw 1
411 .Guest.tr.PaddingSel resw 1
412 .Guest.tr.ValidSel resw 1
413 .Guest.tr.fFlags resw 1
414 .Guest.tr.u64Base resq 1
415 .Guest.tr.u32Limit resd 1
416 .Guest.tr.Attr resd 1
417 .Guest.SysEnter.cs resb 8
418 .Guest.SysEnter.eip resb 8
419 .Guest.SysEnter.esp resb 8
420 .Guest.msrEFER resb 8
421 .Guest.msrSTAR resb 8
422 .Guest.msrPAT resb 8
423 .Guest.msrLSTAR resb 8
424 .Guest.msrCSTAR resb 8
425 .Guest.msrSFMASK resb 8
426 .Guest.msrKERNELGSBASE resb 8
427 .Guest.msrApicBase resb 8
428
429
430 alignb 64
431 .GuestMsrs.au64 resq 64
432
433 ;
434 ; Other stuff.
435 ;
436 .fUseFlags resd 1
437 .fChanged resd 1
438 .offCPUM resd 1
439 .u32RetCode resd 1
440
441%ifdef VBOX_WITH_VMMR0_DISABLE_LAPIC_NMI
442 .pvApicBase RTR0PTR_RES 1
443 .fApicDisVectors resd 1
444 .fX2Apic resb 1
445%else
446 .abPadding3 resb (RTR0PTR_CB + 4 + 1)
447%endif
448
449 .fRawEntered resb 1
450 .fRemEntered resb 1
451
452 .abPadding2 resb (64 - 16 - RTR0PTR_CB - 4 - 1 - 2)
453endstruc
454
455
456;;
457; Converts the CPUM pointer to CPUMCPU
458; @param %1 register name
459%macro CPUMCPU_FROM_CPUM 1
460 add %1, dword [%1 + CPUM.offCPUMCPU0]
461%endmacro
462
463;;
464; Converts the CPUM pointer to CPUMCPU
465; @param %1 register name (CPUM)
466; @param %2 register name (CPUMCPU offset)
467%macro CPUMCPU_FROM_CPUM_WITH_OFFSET 2
468 add %1, %2
469%endmacro
470
471;;
472; Converts the CPUMCPU pointer to CPUM
473; @param %1 register name
474%macro CPUM_FROM_CPUMCPU 1
475 sub %1, dword [%1 + CPUMCPU.offCPUM]
476%endmacro
477
478;;
479; Converts the CPUMCPU pointer to CPUM
480; @param %1 register name (CPUM)
481; @param %2 register name (CPUMCPU offset)
482%macro CPUM_FROM_CPUMCPU_WITH_OFFSET 2
483 sub %1, %2
484%endmacro
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