VirtualBox

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

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

CPUM: build fix

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 15.7 KB
Line 
1; $Id: CPUMInternal.mac 47845 2013-08-19 14:10:34Z 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
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 .enmHostCpuVendor resd 1
70 .enmGuestCpuVendor resd 1
71
72 ; CR4 masks
73 .CR4.AndMask resd 1
74 .CR4.OrMask resd 1
75 ; entered rawmode?
76 .fSyntheticCpu resb 1
77 .u8PortableCpuIdLevel resb 1
78 .fPendingRestore resb 1
79%if RTHCPTR_CB == 8
80 .abPadding resb 5
81%else
82 .abPadding resb 1
83%endif
84
85 ; CPUID leafs
86 .aGuestCpuIdStd resb 16*6
87 .aGuestCpuIdExt resb 16*10
88 .aGuestCpuIdCentaur resb 16*4
89 .aGuestCpuIdHyper resb 16*4
90 .GuestCpuIdDef resb 16
91
92%if HC_ARCH_BITS == 32
93 .abPadding2 resb 4
94%endif
95endstruc
96
97struc CPUMCPU
98 ;
99 ; Hypervisor Context.
100 ;
101 .Hyper.fpu resb 512
102 .Hyper.eax resq 1
103 .Hyper.ecx resq 1
104 .Hyper.edx resq 1
105 .Hyper.ebx resq 1
106 .Hyper.esp resq 1
107 .Hyper.ebp resq 1
108 .Hyper.esi resq 1
109 .Hyper.edi resq 1
110 .Hyper.r8 resq 1
111 .Hyper.r9 resq 1
112 .Hyper.r10 resq 1
113 .Hyper.r11 resq 1
114 .Hyper.r12 resq 1
115 .Hyper.r13 resq 1
116 .Hyper.r14 resq 1
117 .Hyper.r15 resq 1
118 .Hyper.es.Sel resw 1
119 .Hyper.es.PaddingSel resw 1
120 .Hyper.es.ValidSel resw 1
121 .Hyper.es.fFlags resw 1
122 .Hyper.es.u64Base resq 1
123 .Hyper.es.u32Limit resd 1
124 .Hyper.es.Attr resd 1
125 .Hyper.cs.Sel resw 1
126 .Hyper.cs.PaddingSel resw 1
127 .Hyper.cs.ValidSel resw 1
128 .Hyper.cs.fFlags resw 1
129 .Hyper.cs.u64Base resq 1
130 .Hyper.cs.u32Limit resd 1
131 .Hyper.cs.Attr resd 1
132 .Hyper.ss.Sel resw 1
133 .Hyper.ss.PaddingSel resw 1
134 .Hyper.ss.ValidSel resw 1
135 .Hyper.ss.fFlags resw 1
136 .Hyper.ss.u64Base resq 1
137 .Hyper.ss.u32Limit resd 1
138 .Hyper.ss.Attr resd 1
139 .Hyper.ds.Sel resw 1
140 .Hyper.ds.PaddingSel resw 1
141 .Hyper.ds.ValidSel resw 1
142 .Hyper.ds.fFlags resw 1
143 .Hyper.ds.u64Base resq 1
144 .Hyper.ds.u32Limit resd 1
145 .Hyper.ds.Attr resd 1
146 .Hyper.fs.Sel resw 1
147 .Hyper.fs.PaddingSel resw 1
148 .Hyper.fs.ValidSel resw 1
149 .Hyper.fs.fFlags resw 1
150 .Hyper.fs.u64Base resq 1
151 .Hyper.fs.u32Limit resd 1
152 .Hyper.fs.Attr resd 1
153 .Hyper.gs.Sel resw 1
154 .Hyper.gs.PaddingSel resw 1
155 .Hyper.gs.ValidSel resw 1
156 .Hyper.gs.fFlags resw 1
157 .Hyper.gs.u64Base resq 1
158 .Hyper.gs.u32Limit resd 1
159 .Hyper.gs.Attr resd 1
160 .Hyper.eip resq 1
161 .Hyper.eflags resq 1
162 .Hyper.cr0 resq 1
163 .Hyper.cr2 resq 1
164 .Hyper.cr3 resq 1
165 .Hyper.cr4 resq 1
166 .Hyper.dr resq 8
167 .Hyper.gdtrPadding resw 3
168 .Hyper.gdtr resw 0
169 .Hyper.gdtr.cbGdt resw 1
170 .Hyper.gdtr.pGdt resq 1
171 .Hyper.idtrPadding resw 3
172 .Hyper.idtr resw 0
173 .Hyper.idtr.cbIdt resw 1
174 .Hyper.idtr.pIdt resq 1
175 .Hyper.ldtr.Sel resw 1
176 .Hyper.ldtr.PaddingSel resw 1
177 .Hyper.ldtr.ValidSel resw 1
178 .Hyper.ldtr.fFlags resw 1
179 .Hyper.ldtr.u64Base resq 1
180 .Hyper.ldtr.u32Limit resd 1
181 .Hyper.ldtr.Attr resd 1
182 .Hyper.tr.Sel resw 1
183 .Hyper.tr.PaddingSel resw 1
184 .Hyper.tr.ValidSel resw 1
185 .Hyper.tr.fFlags resw 1
186 .Hyper.tr.u64Base resq 1
187 .Hyper.tr.u32Limit resd 1
188 .Hyper.tr.Attr resd 1
189 .Hyper.SysEnter.cs resb 8
190 .Hyper.SysEnter.eip resb 8
191 .Hyper.SysEnter.esp resb 8
192 .Hyper.msrEFER resb 8
193 .Hyper.msrSTAR resb 8
194 .Hyper.msrPAT resb 8
195 .Hyper.msrLSTAR resb 8
196 .Hyper.msrCSTAR resb 8
197 .Hyper.msrSFMASK resb 8
198 .Hyper.msrKERNELGSBASE resb 8
199 .Hyper.msrApicBase resb 8
200
201 ;
202 ; Host context state
203 ;
204 alignb 64
205 .Host.fpu resb FPUSTATE_SIZE
206
207%if HC_ARCH_BITS == 64 || fVBOX_WITH_HYBRID_32BIT_KERNEL
208 ;.Host.rax resq 1 - scratch
209 .Host.rbx resq 1
210 ;.Host.rcx resq 1 - scratch
211 ;.Host.rdx resq 1 - scratch
212 .Host.rdi resq 1
213 .Host.rsi resq 1
214 .Host.rbp resq 1
215 .Host.rsp resq 1
216 ;.Host.r8 resq 1 - scratch
217 ;.Host.r9 resq 1 - scratch
218 .Host.r10 resq 1
219 .Host.r11 resq 1
220 .Host.r12 resq 1
221 .Host.r13 resq 1
222 .Host.r14 resq 1
223 .Host.r15 resq 1
224 ;.Host.rip resd 1 - scratch
225 .Host.rflags resq 1
226%endif
227%if HC_ARCH_BITS == 32
228 ;.Host.eax resd 1 - scratch
229 .Host.ebx resd 1
230 ;.Host.edx resd 1 - scratch
231 ;.Host.ecx resd 1 - scratch
232 .Host.edi resd 1
233 .Host.esi resd 1
234 .Host.ebp resd 1
235 .Host.eflags resd 1
236 ;.Host.eip resd 1 - scratch
237 ; lss pair!
238 .Host.esp resd 1
239%endif
240 .Host.ss resw 1
241 .Host.ssPadding resw 1
242 .Host.gs resw 1
243 .Host.gsPadding resw 1
244 .Host.fs resw 1
245 .Host.fsPadding resw 1
246 .Host.es resw 1
247 .Host.esPadding resw 1
248 .Host.ds resw 1
249 .Host.dsPadding resw 1
250 .Host.cs resw 1
251 .Host.csPadding resw 1
252
253%if HC_ARCH_BITS == 32 && fVBOX_WITH_HYBRID_32BIT_KERNEL == 0
254 .Host.cr0 resd 1
255 ;.Host.cr2 resd 1 - scratch
256 .Host.cr3 resd 1
257 .Host.cr4 resd 1
258
259 .Host.dr0 resd 1
260 .Host.dr1 resd 1
261 .Host.dr2 resd 1
262 .Host.dr3 resd 1
263 .Host.dr6 resd 1
264 .Host.dr7 resd 1
265
266 .Host.gdtr resb 6 ; GDT limit + linear address
267 .Host.gdtrPadding resw 1
268 .Host.idtr resb 6 ; IDT limit + linear address
269 .Host.idtrPadding resw 1
270 .Host.ldtr resw 1
271 .Host.ldtrPadding resw 1
272 .Host.tr resw 1
273 .Host.trPadding resw 1
274
275 .Host.SysEnterPadding resd 1
276 .Host.SysEnter.cs resq 1
277 .Host.SysEnter.eip resq 1
278 .Host.SysEnter.esp resq 1
279 .Host.efer resq 1
280
281%else ; 64-bit
282
283 .Host.cr0 resq 1
284 ;.Host.cr2 resq 1 - scratch
285 .Host.cr3 resq 1
286 .Host.cr4 resq 1
287 .Host.cr8 resq 1
288
289 .Host.dr0 resq 1
290 .Host.dr1 resq 1
291 .Host.dr2 resq 1
292 .Host.dr3 resq 1
293 .Host.dr6 resq 1
294 .Host.dr7 resq 1
295
296 .Host.gdtr resb 10 ; GDT limit + linear address
297 .Host.gdtrPadding resw 1
298 .Host.idtr resb 10 ; IDT limit + linear address
299 .Host.idtrPadding resw 1
300 .Host.ldtr resw 1
301 .Host.ldtrPadding resw 1
302 .Host.tr resw 1
303 .Host.trPadding resw 1
304
305 .Host.SysEnter.cs resq 1
306 .Host.SysEnter.eip resq 1
307 .Host.SysEnter.esp resq 1
308 .Host.FSbase resq 1
309 .Host.GSbase resq 1
310 .Host.efer resq 1
311%endif ; 64-bit
312
313%ifdef VBOX_WITH_CRASHDUMP_MAGIC
314 .aMagic resb 56
315 .uMagic resq 1
316%endif
317 ;
318 ; Guest context state
319 ; (Identical to the .Hyper chunk above.)
320 ;
321 alignb 64
322 .Guest.fpu resb 512
323 .Guest.eax resq 1
324 .Guest.ecx resq 1
325 .Guest.edx resq 1
326 .Guest.ebx resq 1
327 .Guest.esp resq 1
328 .Guest.ebp resq 1
329 .Guest.esi resq 1
330 .Guest.edi resq 1
331 .Guest.r8 resq 1
332 .Guest.r9 resq 1
333 .Guest.r10 resq 1
334 .Guest.r11 resq 1
335 .Guest.r12 resq 1
336 .Guest.r13 resq 1
337 .Guest.r14 resq 1
338 .Guest.r15 resq 1
339 .Guest.es.Sel resw 1
340 .Guest.es.PaddingSel resw 1
341 .Guest.es.ValidSel resw 1
342 .Guest.es.fFlags resw 1
343 .Guest.es.u64Base resq 1
344 .Guest.es.u32Limit resd 1
345 .Guest.es.Attr resd 1
346 .Guest.cs.Sel resw 1
347 .Guest.cs.PaddingSel resw 1
348 .Guest.cs.ValidSel resw 1
349 .Guest.cs.fFlags resw 1
350 .Guest.cs.u64Base resq 1
351 .Guest.cs.u32Limit resd 1
352 .Guest.cs.Attr resd 1
353 .Guest.ss.Sel resw 1
354 .Guest.ss.PaddingSel resw 1
355 .Guest.ss.ValidSel resw 1
356 .Guest.ss.fFlags resw 1
357 .Guest.ss.u64Base resq 1
358 .Guest.ss.u32Limit resd 1
359 .Guest.ss.Attr resd 1
360 .Guest.ds.Sel resw 1
361 .Guest.ds.PaddingSel resw 1
362 .Guest.ds.ValidSel resw 1
363 .Guest.ds.fFlags resw 1
364 .Guest.ds.u64Base resq 1
365 .Guest.ds.u32Limit resd 1
366 .Guest.ds.Attr resd 1
367 .Guest.fs.Sel resw 1
368 .Guest.fs.PaddingSel resw 1
369 .Guest.fs.ValidSel resw 1
370 .Guest.fs.fFlags resw 1
371 .Guest.fs.u64Base resq 1
372 .Guest.fs.u32Limit resd 1
373 .Guest.fs.Attr resd 1
374 .Guest.gs.Sel resw 1
375 .Guest.gs.PaddingSel resw 1
376 .Guest.gs.ValidSel resw 1
377 .Guest.gs.fFlags resw 1
378 .Guest.gs.u64Base resq 1
379 .Guest.gs.u32Limit resd 1
380 .Guest.gs.Attr resd 1
381 .Guest.eip resq 1
382 .Guest.eflags resq 1
383 .Guest.cr0 resq 1
384 .Guest.cr2 resq 1
385 .Guest.cr3 resq 1
386 .Guest.cr4 resq 1
387 .Guest.dr resq 8
388 .Guest.gdtrPadding resw 3
389 .Guest.gdtr resw 0
390 .Guest.gdtr.cbGdt resw 1
391 .Guest.gdtr.pGdt resq 1
392 .Guest.idtrPadding resw 3
393 .Guest.idtr resw 0
394 .Guest.idtr.cbIdt resw 1
395 .Guest.idtr.pIdt resq 1
396 .Guest.ldtr.Sel resw 1
397 .Guest.ldtr.PaddingSel resw 1
398 .Guest.ldtr.ValidSel resw 1
399 .Guest.ldtr.fFlags resw 1
400 .Guest.ldtr.u64Base resq 1
401 .Guest.ldtr.u32Limit resd 1
402 .Guest.ldtr.Attr resd 1
403 .Guest.tr.Sel resw 1
404 .Guest.tr.PaddingSel resw 1
405 .Guest.tr.ValidSel resw 1
406 .Guest.tr.fFlags resw 1
407 .Guest.tr.u64Base resq 1
408 .Guest.tr.u32Limit resd 1
409 .Guest.tr.Attr resd 1
410 .Guest.SysEnter.cs resb 8
411 .Guest.SysEnter.eip resb 8
412 .Guest.SysEnter.esp resb 8
413 .Guest.msrEFER resb 8
414 .Guest.msrSTAR resb 8
415 .Guest.msrPAT resb 8
416 .Guest.msrLSTAR resb 8
417 .Guest.msrCSTAR resb 8
418 .Guest.msrSFMASK resb 8
419 .Guest.msrKERNELGSBASE resb 8
420 .Guest.msrApicBase resb 8
421
422
423 alignb 64
424 .GuestMsrs.au64 resq 64
425
426 ;
427 ; Other stuff.
428 ;
429 .fUseFlags resd 1
430 .fChanged resd 1
431 .offCPUM resd 1
432 .u32RetCode resd 1
433
434%ifdef VBOX_WITH_VMMR0_DISABLE_LAPIC_NMI
435 .pvApicBase RTR0PTR_RES 1
436 .fApicDisVectors resd 1
437 .fX2Apic resb 1
438%else
439 .abPadding3 resb (RTR0PTR_CB + 4 + 1)
440%endif
441
442 .fRawEntered resb 1
443 .fRemEntered resb 1
444
445 .abPadding2 resb (64 - 16 - RTR0PTR_CB - 4 - 1 - 2)
446endstruc
447
448
449;;
450; Converts the CPUM pointer to CPUMCPU
451; @param %1 register name
452%macro CPUMCPU_FROM_CPUM 1
453 add %1, dword [%1 + CPUM.offCPUMCPU0]
454%endmacro
455
456;;
457; Converts the CPUM pointer to CPUMCPU
458; @param %1 register name (PVM)
459; @param %2 register name (CPUMCPU offset)
460%macro CPUMCPU_FROM_CPUM_WITH_OFFSET 2
461 add %1, %2
462%endmacro
463
464;;
465; Converts the CPUMCPU pointer to CPUM
466; @param %1 register name
467%macro CPUM_FROM_CPUMCPU 1
468 sub %1, dword [%1 + CPUMCPU.offCPUM]
469%endmacro
470
471;;
472; Converts the CPUMCPU pointer to CPUM
473; @param %1 register name (PVM)
474; @param %2 register name (CPUMCPU offset)
475%macro CPUM_FROM_CPUMCPU_WITH_OFFSET 2
476 sub %1, %2
477%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