VirtualBox

source: vbox/trunk/include/VBox/vmm/vm.mac@ 78433

Last change on this file since 78433 was 78433, checked in by vboxsync, 6 years ago

VMM: Started refactoring GVM & VM structures for bugref:9217

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.1 KB
Line 
1;; @file
2; VM - The Virtual Machine.
3;
4
5;
6; Copyright (C) 2006-2019 Oracle Corporation
7;
8; This file is part of VirtualBox Open Source Edition (OSE), as
9; available from http://www.virtualbox.org. This file is free software;
10; you can redistribute it and/or modify it under the terms of the GNU
11; General Public License (GPL) as published by the Free Software
12; Foundation, in version 2 as it comes in the "COPYING" file of the
13; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15;
16; The contents of this file may alternatively be used under the terms
17; of the Common Development and Distribution License Version 1.0
18; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19; VirtualBox OSE distribution, in which case the provisions of the
20; CDDL are applicable instead of those of the GPL.
21;
22; You may elect to license modified versions of this file under the
23; terms and conditions of either the GPL or the CDDL or both.
24;
25
26%ifndef ___VBox_vmm_vm_mac
27%define ___VBox_vmm_vm_mac
28
29%include "VBox/vmm/stam.mac"
30
31;/** This action forces the VM to service check and pending interrups on the APIC. */
32%define VMCPU_FF_INTERRUPT_APIC (1 << 0)
33;/** This action forces the VM to service check and pending interrups on the PIC. */
34%define VMCPU_FF_INTERRUPT_PIC (1 << 1)
35;/** This action forces the VM to schedule and run pending timer (TM). */
36%define VMCPU_FF_TIMER (1 << 2)
37;/** This action forces the VM to service pending requests from other
38; * thread or requests which must be executed in another context. */
39%define VMCPU_FF_REQUEST (1 << 9)
40
41;;
42; This is part of the VMCPU structure.
43struc VMCPU
44 .fLocalForcedActions resd 1
45 alignb 8
46 .enmState resd 1
47 .idHostCpu resd 1
48 .iHostCpuSet resd 1
49
50 alignb 64
51 .iem resb 18496
52
53 alignb 64
54 .idCpu resd 1
55 .pVMRC RTRCPTR_RES 1
56 .pVMR3 RTR3PTR_RES 1
57 .pVMR0 RTR0PTR_RES 1
58 .pUVCpu RTR3PTR_RES 1
59 .hNativeThread RTR0PTR_RES 1
60 .hNativeThreadR0 RTR0PTR_RES 1
61
62 alignb 64
63 .hm resb 5888
64 .nem resb 512
65 .trpm resb 128
66 .tm resb 384
67 .vmm resb 896
68 .pdm resb 256
69 .iom resb 512
70 .dbgf resb 256
71 .gim resb 512
72 .apic resb 1792
73
74 .fTraceGroups resd 1
75 .uAdHoc resd 1
76 alignb 8
77 .aStatAdHoc resb STAMPROFILEADV_size * 8
78
79 alignb 4096
80 .pgm resb 4096
81 alignb 4096
82 .cpum resb 4096
83 alignb 4096
84 .em resb 40960
85 alignb 4096
86endstruc
87
88;;
89; This is part of the VM structure.
90struc VM
91 .enmVMState resd 1
92 .fGlobalForcedActions resd 1
93 .paVMPagesR3 RTR3PTR_RES 1
94 .pSession RTR0PTR_RES 1
95 .pUVM RTR3PTR_RES 1
96 .pVMR3 RTR3PTR_RES 1
97 .pVMR0 RTR0PTR_RES 1
98 .pVMRC RTRCPTR_RES 1
99 .hSelf resd 1
100 .cCpus resd 1
101 .uCpuExecutionCap resd 1
102 .cbSelf resd 1
103%ifdef VBOX_WITH_RAW_MODE
104 .offVMCPU resd 1
105%else
106 .u32Unused resd 1
107%endif
108 .pfnVMMRCToHostAsm resd 1
109 .pfnVMMRCToHostAsmNoReturn resd 1
110 .bMainExecutionEngine resb 1
111 .fRecompileUser resb 1
112 .fRecompileSupervisor resb 1
113 .fRawRing1Enabled resb 1
114 .fPATMEnabled resb 1
115 .fCSAMEnabled resb 1
116 .fHMEnabled resb 1
117 .fHMNeedRawModeCtx resb 1
118 .fFaultTolerantMaster resb 1
119 .fUseLargePages resb 1
120
121 .uPadding1 resb 2
122
123 .hTraceBufRC RTRCPTR_RES 1
124 .hTraceBufR3 RTR3PTR_RES 1
125 .hTraceBufR0 RTR0PTR_RES 1
126
127 alignb 8
128
129 .StatTotalQemuToGC resb STAMPROFILEADV_size
130 .StatTotalGCToQemu resb STAMPROFILEADV_size
131 .StatTotalInGC resb STAMPROFILEADV_size
132 .StatTotalInQemu resb STAMPROFILEADV_size
133 .StatSwitcherToGC resb STAMPROFILEADV_size
134 .StatSwitcherToHC resb STAMPROFILEADV_size
135 .StatSwitcherSaveRegs resb STAMPROFILEADV_size
136 .StatSwitcherSysEnter resb STAMPROFILEADV_size
137 .StatSwitcherDebug resb STAMPROFILEADV_size
138 .StatSwitcherCR0 resb STAMPROFILEADV_size
139 .StatSwitcherCR4 resb STAMPROFILEADV_size
140 .StatSwitcherJmpCR3 resb STAMPROFILEADV_size
141 .StatSwitcherRstrRegs resb STAMPROFILEADV_size
142 .StatSwitcherLgdt resb STAMPROFILEADV_size
143 .StatSwitcherLidt resb STAMPROFILEADV_size
144 .StatSwitcherLldt resb STAMPROFILEADV_size
145 .StatSwitcherTSS resb STAMPROFILEADV_size
146
147%ifndef HC_ARCH_BITS
148 %error "Missing HC_ARCH_BITS"
149%endif
150%if HC_ARCH_BITS == 32
151 .abAlignment3 resb 16
152%else
153; .abAlignment3 resb 16
154%endif
155
156 alignb 64
157 .cpum resb 1536
158 .vmm resb 1600
159 .pgm resb (4096*2+6080)
160 .hm resb 5440
161 .trpm resb 5248
162 .selm resb 768
163 .mm resb 192
164 .pdm resb 1920
165 .iom resb 896
166 .em resb 256
167 .nem resb 128
168 .tm resb 2496
169 .dbgf resb 2432
170 .ssm resb 128
171 .ftm resb 512
172%ifdef VBOX_WITH_RAW_MODE
173 .patm resb 768
174 .csam resb 1088
175%endif
176%ifdef VBOX_WITH_REM
177 .rem resb 0x11100
178%endif
179 .gim resb 448
180 .apic resb 128
181 .vm resb 32
182 .cfgm resb 8
183 alignb 4096
184 .aCpus resb VMCPU_size
185endstruc
186
187
188%endif
189
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