1 | ;; @file
|
---|
2 | ;
|
---|
3 | ; VM - The Virtual Machine.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2007 innotek GmbH
|
---|
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 | ; The contents of this file may alternatively be used under the terms
|
---|
18 | ; of the Common Development and Distribution License Version 1.0
|
---|
19 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | ; CDDL are applicable instead of those of the GPL.
|
---|
22 | ;
|
---|
23 | ; You may elect to license modified versions of this file under the
|
---|
24 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | ;
|
---|
26 |
|
---|
27 | %ifndef __VBox_vm_mac__
|
---|
28 | %define __VBox_vm_mac__
|
---|
29 |
|
---|
30 | %include "VBox/stam.mac"
|
---|
31 |
|
---|
32 | ;/** This action forces the VM to service check and pending interrups on the APIC. */
|
---|
33 | %define VM_FF_INTERRUPT_APIC (1 << 0)
|
---|
34 | ;/** This action forces the VM to service check and pending interrups on the PIC. */
|
---|
35 | %define VM_FF_INTERRUPT_PIC (1 << 1)
|
---|
36 | ;/** This action forces the VM to schedule and run pending timer (TM). */
|
---|
37 | %define VM_FF_TIMER (1 << 2)
|
---|
38 | ;/** This action forces the VM to service pending requests from other
|
---|
39 | ; * thread or requests which must be executed in another context. */
|
---|
40 | %define VM_FF_REQUEST (1 << 9)
|
---|
41 |
|
---|
42 | ;;
|
---|
43 | ; This is part of the VM structure.
|
---|
44 | struc VM
|
---|
45 | .enmVMState resd 1
|
---|
46 | .fForcedActions resd 1
|
---|
47 | .paVMPagesR3 RTR3PTR_RES 1
|
---|
48 | .pSession RTR0PTR_RES 1
|
---|
49 | .pUVM RTR3PTR_RES 1
|
---|
50 | .pVMR3 RTR3PTR_RES 1
|
---|
51 | .pVMR0 RTR0PTR_RES 1
|
---|
52 | .pVMGC RTGCPTR_RES 1
|
---|
53 | .hSelf resd 1
|
---|
54 | .u32Reserved resd 1
|
---|
55 |
|
---|
56 | .pfnVMMGCGuestToHostAsmGuestCtx RTGCPTR_RES 1
|
---|
57 | .pfnVMMGCGuestToHostAsmHyperCtx RTGCPTR_RES 1
|
---|
58 | .pfnVMMGCGuestToHostAsm RTGCPTR_RES 1
|
---|
59 |
|
---|
60 | .ThreadEMT RTHCPTR_RES 1
|
---|
61 | .NativeThreadEMT RTHCPTR_RES 1
|
---|
62 |
|
---|
63 | .fRawR3Enabled resb 1
|
---|
64 | .fRawR0Enabled resb 1
|
---|
65 | .fPATMEnabled resb 1
|
---|
66 | .fCSAMEnabled resb 1
|
---|
67 | .fHWACCMEnabled resb 3
|
---|
68 |
|
---|
69 | alignb 8
|
---|
70 |
|
---|
71 | .StatTotalQemuToGC resb STAMPROFILEADV_size
|
---|
72 | .StatTotalGCToQemu resb STAMPROFILEADV_size
|
---|
73 | .StatTotalInGC resb STAMPROFILEADV_size
|
---|
74 | .StatTotalInQemu resb STAMPROFILEADV_size
|
---|
75 | .StatSwitcherToGC resb STAMPROFILEADV_size
|
---|
76 | .StatSwitcherToHC resb STAMPROFILEADV_size
|
---|
77 | .StatSwitcherSaveRegs resb STAMPROFILEADV_size
|
---|
78 | .StatSwitcherSysEnter resb STAMPROFILEADV_size
|
---|
79 | .StatSwitcherDebug resb STAMPROFILEADV_size
|
---|
80 | .StatSwitcherCR0 resb STAMPROFILEADV_size
|
---|
81 | .StatSwitcherCR4 resb STAMPROFILEADV_size
|
---|
82 | .StatSwitcherJmpCR3 resb STAMPROFILEADV_size
|
---|
83 | .StatSwitcherRstrRegs resb STAMPROFILEADV_size
|
---|
84 | .StatSwitcherLgdt resb STAMPROFILEADV_size
|
---|
85 | .StatSwitcherLidt resb STAMPROFILEADV_size
|
---|
86 | .StatSwitcherLldt resb STAMPROFILEADV_size
|
---|
87 | .StatSwitcherTSS resb STAMPROFILEADV_size
|
---|
88 |
|
---|
89 | alignb 32
|
---|
90 | .cpum resb 4108
|
---|
91 | .vmm resb 1024
|
---|
92 |
|
---|
93 | endstruc
|
---|
94 |
|
---|
95 |
|
---|
96 | %endif
|
---|