VirtualBox

source: vbox/trunk/src/VBox/VMM/include/HMInternal.mac@ 87388

Last change on this file since 87388 was 87388, checked in by vboxsync, 4 years ago

VMM/HMVMX: Moved VMXRESTOREHOST and VMXRestoreHostState from public header to HMInternal.h.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.2 KB
Line 
1;$Id: HMInternal.mac 87388 2021-01-22 23:26:29Z vboxsync $
2;; @file
3; HM - Internal header file.
4;
5
6;
7; Copyright (C) 2006-2020 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%ifndef VMX_VMCS_GUEST_FIELD_ES
19 %include "VBox/vmm/hm_vmx.mac" ; For VMXRESTOREHOST
20%endif
21
22
23struc VMXVMCSINFO
24 .pfnStartVM RTR0PTR_RES 1
25 .HCPhysEPTP RTHCPHYS_RES 1
26 .fVmcsState resd 1
27 .fShadowVmcsState resd 1
28 .idHostCpuState resd 1
29 .idHostCpuExec resd 1
30 .cEntryMsrLoad resd 1
31 .cExitMsrStore resd 1
32 .cExitMsrLoad resd 1
33
34 .u32PinCtls resd 1
35 .u32ProcCtls resd 1
36 .u32ProcCtls2 resd 1
37 .u32EntryCtls resd 1
38 .u32ExitCtls resd 1
39 .u32XcptBitmap resd 1
40 .u32XcptPFMask resd 1
41 .u32XcptPFMatch resd 1
42
43 alignb 8
44 .u64TscOffset resq 1
45 .u64VmcsLinkPtr resq 1
46 .u64Cr0Mask resq 1
47 .u64Cr4Mask resq 1
48
49 .pvVmcs RTR0PTR_RES 1
50 .pvShadowVmcs RTR0PTR_RES 1
51 .pbVirtApic RTR0PTR_RES 1
52 .pvMsrBitmap RTR0PTR_RES 1
53 .pvGuestMsrLoad RTR0PTR_RES 1
54 .pvGuestMsrStore RTR0PTR_RES 1
55 .pvHostMsrLoad RTR0PTR_RES 1
56
57 .fWasInRealMode resb 1
58 .fSwitchedTo64on32Obsolete resb 1
59 alignb 8
60 .RealMode.AttrCS resd 1
61 .RealMode.AttrDS resd 1
62 .RealMode.AttrES resd 1
63 .RealMode.AttrFS resd 1
64 .RealMode.AttrGS resd 1
65 .RealMode.AttrSS resd 1
66 .RealMode.Eflags resd 1 ; should be EFlags?
67 .RealMode.fRealOnV86Active resb 1
68
69 alignb 8
70 .HCPhysVmcs RTHCPHYS_RES 1
71 .HCPhysShadowVmcs RTHCPHYS_RES 1
72 .HCPhysVirtApic RTHCPHYS_RES 1
73 .HCPhysMsrBitmap RTHCPHYS_RES 1
74 .HCPhysGuestMsrLoad RTHCPHYS_RES 1
75 .HCPhysGuestMsrStore RTHCPHYS_RES 1
76 .HCPhysHostMsrLoad RTHCPHYS_RES 1
77
78 .hMemObj RTR0PTR_RES 1
79
80 alignb 8
81 .au64LbrFromIpMsr resq 32
82 .au64LbrToIpMsr resq 32
83 .u64LbrTosMsr resq 1
84endstruc
85
86%define VMX_RESTORE_HOST_SEL_DS 0001h ;RT_BIT(0)
87%define VMX_RESTORE_HOST_SEL_ES 0002h ;RT_BIT(1)
88%define VMX_RESTORE_HOST_SEL_FS 0004h ;RT_BIT(2)
89%define VMX_RESTORE_HOST_SEL_GS 0008h ;RT_BIT(3)
90%define VMX_RESTORE_HOST_SEL_TR 0010h ;RT_BIT(4)
91%define VMX_RESTORE_HOST_GDTR 0020h ;RT_BIT(5)
92%define VMX_RESTORE_HOST_IDTR 0040h ;RT_BIT(6)
93%define VMX_RESTORE_HOST_GDT_READ_ONLY 0080h ;RT_BIT(7)
94%define VMX_RESTORE_HOST_GDT_NEED_WRITABLE 0100h ;RT_BIT(8)
95%define VMX_RESTORE_HOST_REQUIRED 0200h ;RT_BIT(9) - must be the highest bit!
96struc VMXRESTOREHOST
97 .uHostSelDS resw 1
98 .uHostSelES resw 1
99 .uHostSelFS resw 1
100 .uHostSelGS resw 1
101 .uHostSelTR resw 1
102 .abPadding0 resb 4
103 .HostGdtr resb 10
104 .abPadding1 resb 6
105 .HostGdtrRw resb 10
106 .abPadding2 resb 6
107 .HostIdtr resb 10
108 .uHostFSBase resq 1
109 .uHostGSBase resq 1
110endstruc
111AssertCompileMemberOffset(VMXRESTOREHOST, HostGdtr, 16-2)
112AssertCompileMemberOffset(VMXRESTOREHOST, HostGdtrRw, 32-2)
113AssertCompileMemberOffset(VMXRESTOREHOST, HostIdtr, 48-2)
114AssertCompileMemberOffset(VMXRESTOREHOST, uHostFSBase, 56)
115AssertCompileSize(VMXRESTOREHOST, 72)
116
117struc HMCPUVMX
118 .VmcsInfo resb VMXVMCSINFO_size
119 .VmcsInfoNstGst resb VMXVMCSINFO_size
120 .fSwitchedToNstGstVmcs resb 1
121 .fMergedNstGstCtls resb 1
122 .fCopiedNstGstToShadowVmcs resb 1
123 .fSwitchedNstGstFlushTlb resb 1
124
125 alignb 8
126 .u64GstMsrApicBase resq 1
127
128 .u64HostMsrLStar resq 1
129 .u64HostMsrStar resq 1
130 .u64HostMsrSfMask resq 1
131 .u64HostMsrKernelGsBase resq 1
132 .fLazyMsrs resd 1
133 .fUpdatedHostAutoMsrs resb 1
134 alignb 4
135 .fRestoreHostFlags resd 1
136 alignb 8
137 .RestoreHost resb VMXRESTOREHOST_size
138
139 .LastError.idCurrentCpu resd 1
140 .LastError.idEnteredCpu resd 1
141 .LastError.HCPhysCurrentVmcs resq 1
142 .LastError.u32VmcsRev resd 1
143 .LastError.u32InstrError resd 1
144 .LastError.u32ExitReason resd 1
145 .LastError.u32GuestIntrState resd 1
146endstruc
147
148struc HMCPUSVM
149 .pfnVMRun RTR0PTR_RES 1
150 .HCPhysVmcbHost RTHCPHYS_RES 1
151
152 .hMemObjVmcbHost RTR0PTR_RES 1
153 .pvPadding RTR0PTR_RES 1 ; pointless padding
154
155 .HCPhysVmcb RTHCPHYS_RES 1
156 .hMemObjVmcb RTR0PTR_RES 1
157 .pVmcb RTR0PTR_RES 1
158
159 .HCPhysMsrBitmap RTHCPHYS_RES 1
160 .hMemObjMsrBitmap RTR0PTR_RES 1
161 .pvMsrBitmap RTR0PTR_RES 1
162
163 .fSyncVTpr resb 1
164 .fEmulateLongModeSysEnterExit resb 1
165
166 alignb 8
167 .u64HostTscAux resq 1
168
169 .NstGstVmcbCache resb 40
170endstruc
171
172struc HMCPU
173 .fCheckedTLBFlush resb 1
174 .fActive resb 1
175 .fLeaveDone resb 1
176 .fUsingHyperDR7 resb 1
177 .fForceTLBFlush resb 1
178 .fUseDebugLoop resb 1
179 .fUsingDebugLoop resb 1
180 .fDebugWantRdTscExit resb 1
181
182 .fLoadSaveGuestXcr0 resb 1
183 .fGIMTrapXcptUD resb 1
184 .fTrapXcptGpForLovelyMesaDrv resb 1
185 .fSingleInstruction resb 1
186 .fClearTrapFlag resb 1
187 alignb 8
188
189 .cWorldSwitchExits resd 1
190 .idLastCpu resd 1
191 .cTlbFlushes resd 1
192 .uCurrentAsid resd 1
193 .u32HMError resd 1
194 .rcLastExitToR3 resd 1
195 alignb 8
196 .fCtxChanged resq 1
197
198 alignb 8
199;%if HMCPUVMX_size > HMCPUSVM_size
200 .u resb HMCPUVMX_size
201;%else
202; .u resb HMCPUSVM_size
203;%endif
204
205 .Event.fPending resd 1
206 .Event.u32ErrCode resd 1
207 .Event.cbInstr resd 1
208 alignb 8
209 .Event.u64IntInfo resq 1
210 .Event.GCPtrFaultAddress RTGCPTR_RES 1
211
212 .idEnteredCpu resd 1
213 .enmShadowMode resd 1
214 alignb 8
215 .aPdpes resq 4
216
217 ; The remainer is disassembly state and statistics.
218endstruc
219
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