VirtualBox

source: vbox/trunk/src/VBox/VMM/include/HMInternal.h@ 87500

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

VMM/HM: Drop the VMX/SVM data unions in the VM and GVM structures. Too risky and not worth saving a few bytes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 65.5 KB
Line 
1/* $Id: HMInternal.h 87500 2021-02-01 14:16:43Z 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 VMM_INCLUDED_SRC_include_HMInternal_h
19#define VMM_INCLUDED_SRC_include_HMInternal_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include <VBox/cdefs.h>
25#include <VBox/types.h>
26#include <VBox/vmm/stam.h>
27#include <VBox/dis.h>
28#include <VBox/vmm/hm.h>
29#include <VBox/vmm/hm_vmx.h>
30#include <VBox/vmm/hm_svm.h>
31#include <VBox/vmm/pgm.h>
32#include <VBox/vmm/cpum.h>
33#include <VBox/vmm/trpm.h>
34#include <iprt/memobj.h>
35#include <iprt/cpuset.h>
36#include <iprt/mp.h>
37#include <iprt/avl.h>
38#include <iprt/string.h>
39
40#if HC_ARCH_BITS == 32
41# error "32-bit hosts are no longer supported. Go back to 6.0 or earlier!"
42#endif
43
44/** @def HM_PROFILE_EXIT_DISPATCH
45 * Enables profiling of the VM exit handler dispatching. */
46#if 0 || defined(DOXYGEN_RUNNING)
47# define HM_PROFILE_EXIT_DISPATCH
48#endif
49
50RT_C_DECLS_BEGIN
51
52
53/** @defgroup grp_hm_int Internal
54 * @ingroup grp_hm
55 * @internal
56 * @{
57 */
58
59/** @name HM_CHANGED_XXX
60 * HM CPU-context changed flags.
61 *
62 * These flags are used to keep track of which registers and state has been
63 * modified since they were imported back into the guest-CPU context.
64 *
65 * @{
66 */
67#define HM_CHANGED_HOST_CONTEXT UINT64_C(0x0000000000000001)
68#define HM_CHANGED_GUEST_RIP UINT64_C(0x0000000000000004)
69#define HM_CHANGED_GUEST_RFLAGS UINT64_C(0x0000000000000008)
70
71#define HM_CHANGED_GUEST_RAX UINT64_C(0x0000000000000010)
72#define HM_CHANGED_GUEST_RCX UINT64_C(0x0000000000000020)
73#define HM_CHANGED_GUEST_RDX UINT64_C(0x0000000000000040)
74#define HM_CHANGED_GUEST_RBX UINT64_C(0x0000000000000080)
75#define HM_CHANGED_GUEST_RSP UINT64_C(0x0000000000000100)
76#define HM_CHANGED_GUEST_RBP UINT64_C(0x0000000000000200)
77#define HM_CHANGED_GUEST_RSI UINT64_C(0x0000000000000400)
78#define HM_CHANGED_GUEST_RDI UINT64_C(0x0000000000000800)
79#define HM_CHANGED_GUEST_R8_R15 UINT64_C(0x0000000000001000)
80#define HM_CHANGED_GUEST_GPRS_MASK UINT64_C(0x0000000000001ff0)
81
82#define HM_CHANGED_GUEST_ES UINT64_C(0x0000000000002000)
83#define HM_CHANGED_GUEST_CS UINT64_C(0x0000000000004000)
84#define HM_CHANGED_GUEST_SS UINT64_C(0x0000000000008000)
85#define HM_CHANGED_GUEST_DS UINT64_C(0x0000000000010000)
86#define HM_CHANGED_GUEST_FS UINT64_C(0x0000000000020000)
87#define HM_CHANGED_GUEST_GS UINT64_C(0x0000000000040000)
88#define HM_CHANGED_GUEST_SREG_MASK UINT64_C(0x000000000007e000)
89
90#define HM_CHANGED_GUEST_GDTR UINT64_C(0x0000000000080000)
91#define HM_CHANGED_GUEST_IDTR UINT64_C(0x0000000000100000)
92#define HM_CHANGED_GUEST_LDTR UINT64_C(0x0000000000200000)
93#define HM_CHANGED_GUEST_TR UINT64_C(0x0000000000400000)
94#define HM_CHANGED_GUEST_TABLE_MASK UINT64_C(0x0000000000780000)
95
96#define HM_CHANGED_GUEST_CR0 UINT64_C(0x0000000000800000)
97#define HM_CHANGED_GUEST_CR2 UINT64_C(0x0000000001000000)
98#define HM_CHANGED_GUEST_CR3 UINT64_C(0x0000000002000000)
99#define HM_CHANGED_GUEST_CR4 UINT64_C(0x0000000004000000)
100#define HM_CHANGED_GUEST_CR_MASK UINT64_C(0x0000000007800000)
101
102#define HM_CHANGED_GUEST_APIC_TPR UINT64_C(0x0000000008000000)
103#define HM_CHANGED_GUEST_EFER_MSR UINT64_C(0x0000000010000000)
104
105#define HM_CHANGED_GUEST_DR0_DR3 UINT64_C(0x0000000020000000)
106#define HM_CHANGED_GUEST_DR6 UINT64_C(0x0000000040000000)
107#define HM_CHANGED_GUEST_DR7 UINT64_C(0x0000000080000000)
108#define HM_CHANGED_GUEST_DR_MASK UINT64_C(0x00000000e0000000)
109
110#define HM_CHANGED_GUEST_X87 UINT64_C(0x0000000100000000)
111#define HM_CHANGED_GUEST_SSE_AVX UINT64_C(0x0000000200000000)
112#define HM_CHANGED_GUEST_OTHER_XSAVE UINT64_C(0x0000000400000000)
113#define HM_CHANGED_GUEST_XCRx UINT64_C(0x0000000800000000)
114
115#define HM_CHANGED_GUEST_KERNEL_GS_BASE UINT64_C(0x0000001000000000)
116#define HM_CHANGED_GUEST_SYSCALL_MSRS UINT64_C(0x0000002000000000)
117#define HM_CHANGED_GUEST_SYSENTER_CS_MSR UINT64_C(0x0000004000000000)
118#define HM_CHANGED_GUEST_SYSENTER_EIP_MSR UINT64_C(0x0000008000000000)
119#define HM_CHANGED_GUEST_SYSENTER_ESP_MSR UINT64_C(0x0000010000000000)
120#define HM_CHANGED_GUEST_SYSENTER_MSR_MASK UINT64_C(0x000001c000000000)
121#define HM_CHANGED_GUEST_TSC_AUX UINT64_C(0x0000020000000000)
122#define HM_CHANGED_GUEST_OTHER_MSRS UINT64_C(0x0000040000000000)
123#define HM_CHANGED_GUEST_ALL_MSRS ( HM_CHANGED_GUEST_EFER \
124 | HM_CHANGED_GUEST_KERNEL_GS_BASE \
125 | HM_CHANGED_GUEST_SYSCALL_MSRS \
126 | HM_CHANGED_GUEST_SYSENTER_MSR_MASK \
127 | HM_CHANGED_GUEST_TSC_AUX \
128 | HM_CHANGED_GUEST_OTHER_MSRS)
129
130#define HM_CHANGED_GUEST_HWVIRT UINT64_C(0x0000080000000000)
131#define HM_CHANGED_GUEST_MASK UINT64_C(0x00000ffffffffffc)
132
133#define HM_CHANGED_KEEPER_STATE_MASK UINT64_C(0xffff000000000000)
134
135#define HM_CHANGED_VMX_XCPT_INTERCEPTS UINT64_C(0x0001000000000000)
136#define HM_CHANGED_VMX_GUEST_AUTO_MSRS UINT64_C(0x0002000000000000)
137#define HM_CHANGED_VMX_GUEST_LAZY_MSRS UINT64_C(0x0004000000000000)
138#define HM_CHANGED_VMX_ENTRY_EXIT_CTLS UINT64_C(0x0008000000000000)
139#define HM_CHANGED_VMX_MASK UINT64_C(0x000f000000000000)
140#define HM_CHANGED_VMX_HOST_GUEST_SHARED_STATE ( HM_CHANGED_GUEST_DR_MASK \
141 | HM_CHANGED_VMX_GUEST_LAZY_MSRS)
142
143#define HM_CHANGED_SVM_XCPT_INTERCEPTS UINT64_C(0x0001000000000000)
144#define HM_CHANGED_SVM_MASK UINT64_C(0x0001000000000000)
145#define HM_CHANGED_SVM_HOST_GUEST_SHARED_STATE HM_CHANGED_GUEST_DR_MASK
146
147#define HM_CHANGED_ALL_GUEST ( HM_CHANGED_GUEST_MASK \
148 | HM_CHANGED_KEEPER_STATE_MASK)
149
150/** Mask of what state might have changed when IEM raised an exception.
151 * This is a based on IEM_CPUMCTX_EXTRN_XCPT_MASK. */
152#define HM_CHANGED_RAISED_XCPT_MASK ( HM_CHANGED_GUEST_GPRS_MASK \
153 | HM_CHANGED_GUEST_RIP \
154 | HM_CHANGED_GUEST_RFLAGS \
155 | HM_CHANGED_GUEST_SS \
156 | HM_CHANGED_GUEST_CS \
157 | HM_CHANGED_GUEST_CR0 \
158 | HM_CHANGED_GUEST_CR3 \
159 | HM_CHANGED_GUEST_CR4 \
160 | HM_CHANGED_GUEST_APIC_TPR \
161 | HM_CHANGED_GUEST_EFER_MSR \
162 | HM_CHANGED_GUEST_DR7 \
163 | HM_CHANGED_GUEST_CR2 \
164 | HM_CHANGED_GUEST_SREG_MASK \
165 | HM_CHANGED_GUEST_TABLE_MASK)
166
167#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
168/** Mask of what state might have changed when \#VMEXIT is emulated. */
169# define HM_CHANGED_SVM_VMEXIT_MASK ( HM_CHANGED_GUEST_RSP \
170 | HM_CHANGED_GUEST_RAX \
171 | HM_CHANGED_GUEST_RIP \
172 | HM_CHANGED_GUEST_RFLAGS \
173 | HM_CHANGED_GUEST_CS \
174 | HM_CHANGED_GUEST_SS \
175 | HM_CHANGED_GUEST_DS \
176 | HM_CHANGED_GUEST_ES \
177 | HM_CHANGED_GUEST_GDTR \
178 | HM_CHANGED_GUEST_IDTR \
179 | HM_CHANGED_GUEST_CR_MASK \
180 | HM_CHANGED_GUEST_EFER_MSR \
181 | HM_CHANGED_GUEST_DR6 \
182 | HM_CHANGED_GUEST_DR7 \
183 | HM_CHANGED_GUEST_OTHER_MSRS \
184 | HM_CHANGED_GUEST_HWVIRT \
185 | HM_CHANGED_SVM_MASK \
186 | HM_CHANGED_GUEST_APIC_TPR)
187
188/** Mask of what state might have changed when VMRUN is emulated. */
189# define HM_CHANGED_SVM_VMRUN_MASK HM_CHANGED_SVM_VMEXIT_MASK
190#endif
191#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
192/** Mask of what state might have changed when VM-exit is emulated.
193 *
194 * This is currently unused, but keeping it here in case we can get away a bit more
195 * fine-grained state handling.
196 *
197 * @note Update IEM_CPUMCTX_EXTRN_VMX_VMEXIT_MASK when this changes. */
198# define HM_CHANGED_VMX_VMEXIT_MASK ( HM_CHANGED_GUEST_CR0 | HM_CHANGED_GUEST_CR3 | HM_CHANGED_GUEST_CR4 \
199 | HM_CHANGED_GUEST_DR7 | HM_CHANGED_GUEST_DR6 \
200 | HM_CHANGED_GUEST_EFER_MSR \
201 | HM_CHANGED_GUEST_SYSENTER_MSR_MASK \
202 | HM_CHANGED_GUEST_OTHER_MSRS /* for PAT MSR */ \
203 | HM_CHANGED_GUEST_RIP | HM_CHANGED_GUEST_RSP | HM_CHANGED_GUEST_RFLAGS \
204 | HM_CHANGED_GUEST_SREG_MASK \
205 | HM_CHANGED_GUEST_TR \
206 | HM_CHANGED_GUEST_LDTR | HM_CHANGED_GUEST_GDTR | HM_CHANGED_GUEST_IDTR \
207 | HM_CHANGED_GUEST_HWVIRT )
208#endif
209/** @} */
210
211/** Maximum number of exit reason statistics counters. */
212#define MAX_EXITREASON_STAT 0x100
213#define MASK_EXITREASON_STAT 0xff
214#define MASK_INJECT_IRQ_STAT 0xff
215
216/** Size for the EPT identity page table (1024 4 MB pages to cover the entire address space). */
217#define HM_EPT_IDENTITY_PG_TABLE_SIZE PAGE_SIZE
218/** Size of the TSS structure + 2 pages for the IO bitmap + end byte. */
219#define HM_VTX_TSS_SIZE (sizeof(VBOXTSS) + 2 * PAGE_SIZE + 1)
220/** Total guest mapped memory needed. */
221#define HM_VTX_TOTAL_DEVHEAP_MEM (HM_EPT_IDENTITY_PG_TABLE_SIZE + HM_VTX_TSS_SIZE)
222
223
224/** @name Macros for enabling and disabling preemption.
225 * These are really just for hiding the RTTHREADPREEMPTSTATE and asserting that
226 * preemption has already been disabled when there is no context hook.
227 * @{ */
228#ifdef VBOX_STRICT
229# define HM_DISABLE_PREEMPT(a_pVCpu) \
230 RTTHREADPREEMPTSTATE PreemptStateInternal = RTTHREADPREEMPTSTATE_INITIALIZER; \
231 Assert(!RTThreadPreemptIsEnabled(NIL_RTTHREAD) || VMMR0ThreadCtxHookIsEnabled((a_pVCpu))); \
232 RTThreadPreemptDisable(&PreemptStateInternal)
233#else
234# define HM_DISABLE_PREEMPT(a_pVCpu) \
235 RTTHREADPREEMPTSTATE PreemptStateInternal = RTTHREADPREEMPTSTATE_INITIALIZER; \
236 RTThreadPreemptDisable(&PreemptStateInternal)
237#endif /* VBOX_STRICT */
238#define HM_RESTORE_PREEMPT() do { RTThreadPreemptRestore(&PreemptStateInternal); } while(0)
239/** @} */
240
241
242/** @name HM saved state versions.
243 * @{
244 */
245#define HM_SAVED_STATE_VERSION HM_SAVED_STATE_VERSION_SVM_NESTED_HWVIRT
246#define HM_SAVED_STATE_VERSION_SVM_NESTED_HWVIRT 6
247#define HM_SAVED_STATE_VERSION_TPR_PATCHING 5
248#define HM_SAVED_STATE_VERSION_NO_TPR_PATCHING 4
249#define HM_SAVED_STATE_VERSION_2_0_X 3
250/** @} */
251
252
253/**
254 * HM physical (host) CPU information.
255 */
256typedef struct HMPHYSCPU
257{
258 /** The CPU ID. */
259 RTCPUID idCpu;
260 /** The VM_HSAVE_AREA (AMD-V) / VMXON region (Intel) memory backing. */
261 RTR0MEMOBJ hMemObj;
262 /** The physical address of the first page in hMemObj (it's a
263 * physcially contigous allocation if it spans multiple pages). */
264 RTHCPHYS HCPhysMemObj;
265 /** The address of the memory (for pfnEnable). */
266 void *pvMemObj;
267 /** Current ASID (AMD-V) / VPID (Intel). */
268 uint32_t uCurrentAsid;
269 /** TLB flush count. */
270 uint32_t cTlbFlushes;
271 /** Whether to flush each new ASID/VPID before use. */
272 bool fFlushAsidBeforeUse;
273 /** Configured for VT-x or AMD-V. */
274 bool fConfigured;
275 /** Set if the VBOX_HWVIRTEX_IGNORE_SVM_IN_USE hack is active. */
276 bool fIgnoreAMDVInUseError;
277 /** Whether CR4.VMXE was already enabled prior to us enabling it. */
278 bool fVmxeAlreadyEnabled;
279 /** In use by our code. (for power suspend) */
280 bool volatile fInUse;
281#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
282 /** Nested-guest union (put data common to SVM/VMX outside the union). */
283 union
284 {
285 /** Nested-guest SVM data. */
286 struct
287 {
288 /** The active nested-guest MSR permission bitmap memory backing. */
289 RTR0MEMOBJ hNstGstMsrpm;
290 /** The physical address of the first page in hNstGstMsrpm (physcially
291 * contiguous allocation). */
292 RTHCPHYS HCPhysNstGstMsrpm;
293 /** The address of the active nested-guest MSRPM. */
294 void *pvNstGstMsrpm;
295 } svm;
296 /** @todo Nested-VMX. */
297 } n;
298#endif
299} HMPHYSCPU;
300/** Pointer to HMPHYSCPU struct. */
301typedef HMPHYSCPU *PHMPHYSCPU;
302/** Pointer to a const HMPHYSCPU struct. */
303typedef const HMPHYSCPU *PCHMPHYSCPU;
304
305/**
306 * TPR-instruction type.
307 */
308typedef enum
309{
310 HMTPRINSTR_INVALID,
311 HMTPRINSTR_READ,
312 HMTPRINSTR_READ_SHR4,
313 HMTPRINSTR_WRITE_REG,
314 HMTPRINSTR_WRITE_IMM,
315 HMTPRINSTR_JUMP_REPLACEMENT,
316 /** The usual 32-bit paranoia. */
317 HMTPRINSTR_32BIT_HACK = 0x7fffffff
318} HMTPRINSTR;
319
320/**
321 * TPR patch information.
322 */
323typedef struct
324{
325 /** The key is the address of patched instruction. (32 bits GC ptr) */
326 AVLOU32NODECORE Core;
327 /** Original opcode. */
328 uint8_t aOpcode[16];
329 /** Instruction size. */
330 uint32_t cbOp;
331 /** Replacement opcode. */
332 uint8_t aNewOpcode[16];
333 /** Replacement instruction size. */
334 uint32_t cbNewOp;
335 /** Instruction type. */
336 HMTPRINSTR enmType;
337 /** Source operand. */
338 uint32_t uSrcOperand;
339 /** Destination operand. */
340 uint32_t uDstOperand;
341 /** Number of times the instruction caused a fault. */
342 uint32_t cFaults;
343 /** Patch address of the jump replacement. */
344 RTGCPTR32 pJumpTarget;
345} HMTPRPATCH;
346/** Pointer to HMTPRPATCH. */
347typedef HMTPRPATCH *PHMTPRPATCH;
348/** Pointer to a const HMTPRPATCH. */
349typedef const HMTPRPATCH *PCHMTPRPATCH;
350
351
352/**
353 * Makes a HMEXITSTAT::uKey value from a program counter and an exit code.
354 *
355 * @returns 64-bit key
356 * @param a_uPC The RIP + CS.BASE value of the exit.
357 * @param a_uExit The exit code.
358 * @todo Add CPL?
359 */
360#define HMEXITSTAT_MAKE_KEY(a_uPC, a_uExit) (((a_uPC) & UINT64_C(0x0000ffffffffffff)) | (uint64_t)(a_uExit) << 48)
361
362typedef struct HMEXITINFO
363{
364 /** See HMEXITSTAT_MAKE_KEY(). */
365 uint64_t uKey;
366 /** Number of recent hits (depreciates with time). */
367 uint32_t volatile cHits;
368 /** The age + lock. */
369 uint16_t volatile uAge;
370 /** Action or action table index. */
371 uint16_t iAction;
372} HMEXITINFO;
373AssertCompileSize(HMEXITINFO, 16); /* Lots of these guys, so don't add any unnecessary stuff! */
374
375typedef struct HMEXITHISTORY
376{
377 /** The exit timestamp. */
378 uint64_t uTscExit;
379 /** The index of the corresponding HMEXITINFO entry.
380 * UINT32_MAX if none (too many collisions, race, whatever). */
381 uint32_t iExitInfo;
382 /** Figure out later, needed for padding now. */
383 uint32_t uSomeClueOrSomething;
384} HMEXITHISTORY;
385
386/**
387 * Switcher function, HC to the special 64-bit RC.
388 *
389 * @param pVM The cross context VM structure.
390 * @param offCpumVCpu Offset from pVM->cpum to pVM->aCpus[idCpu].cpum.
391 * @returns Return code indicating the action to take.
392 */
393typedef DECLCALLBACKTYPE(int, FNHMSWITCHERHC,(PVM pVM, uint32_t offCpumVCpu));
394/** Pointer to switcher function. */
395typedef FNHMSWITCHERHC *PFNHMSWITCHERHC;
396
397
398/**
399 * HM event.
400 *
401 * VT-x and AMD-V common event injection structure.
402 */
403typedef struct HMEVENT
404{
405 /** Whether the event is pending. */
406 uint32_t fPending;
407 /** The error-code associated with the event. */
408 uint32_t u32ErrCode;
409 /** The length of the instruction in bytes (only relevant for software
410 * interrupts or software exceptions). */
411 uint32_t cbInstr;
412 /** Alignment. */
413 uint32_t u32Padding;
414 /** The encoded event (VM-entry interruption-information for VT-x or EVENTINJ
415 * for SVM). */
416 uint64_t u64IntInfo;
417 /** Guest virtual address if this is a page-fault event. */
418 RTGCUINTPTR GCPtrFaultAddress;
419} HMEVENT;
420/** Pointer to a HMEVENT struct. */
421typedef HMEVENT *PHMEVENT;
422/** Pointer to a const HMEVENT struct. */
423typedef const HMEVENT *PCHMEVENT;
424AssertCompileSizeAlignment(HMEVENT, 8);
425
426/**
427 * HM VM Instance data.
428 * Changes to this must checked against the padding of the hm union in VM!
429 */
430typedef struct HM
431{
432 /** Set if nested paging is enabled. */
433 bool fNestedPaging;
434 /** Set when we've initialized VMX or SVM. */
435 bool fInitialized;
436 /** Set if large pages are enabled (requires nested paging). */
437 bool fLargePages;
438 /** Set if we can support 64-bit guests or not. */
439 bool fAllow64BitGuests;
440 /** Set when TPR patching is allowed. */
441 bool fTprPatchingAllowed;
442 /** Set when we initialize VT-x or AMD-V once for all CPUs. */
443 bool fGlobalInit;
444 /** Set when TPR patching is active. */
445 bool fTPRPatchingActive;
446 /** Set when the debug facility has breakpoints/events enabled that requires
447 * us to use the debug execution loop in ring-0. */
448 bool fUseDebugLoop;
449 /** Set if hardware APIC virtualization is enabled. */
450 bool fVirtApicRegs;
451 /** Set if posted interrupt processing is enabled. */
452 bool fPostedIntrs;
453 /** Set if indirect branch prediction barrier on VM exit. */
454 bool fIbpbOnVmExit;
455 /** Set if indirect branch prediction barrier on VM entry. */
456 bool fIbpbOnVmEntry;
457 /** Set if level 1 data cache should be flushed on VM entry. */
458 bool fL1dFlushOnVmEntry;
459 /** Set if level 1 data cache should be flushed on EMT scheduling. */
460 bool fL1dFlushOnSched;
461 /** Set if host manages speculation control settings. */
462 bool fSpecCtrlByHost;
463 /** Set if MDS related buffers should be cleared on VM entry. */
464 bool fMdsClearOnVmEntry;
465 /** Set if MDS related buffers should be cleared on EMT scheduling. */
466 bool fMdsClearOnSched;
467 /** Alignment padding. */
468 bool afPaddingMinus1[7];
469
470 /** Maximum ASID allowed. */
471 uint32_t uMaxAsid;
472 /** The maximum number of resumes loops allowed in ring-0 (safety precaution).
473 * This number is set much higher when RTThreadPreemptIsPending is reliable. */
474 uint32_t cMaxResumeLoops;
475
476 /** Host kernel flags that HM might need to know (SUPKERNELFEATURES_XXX). */
477 uint32_t fHostKernelFeatures;
478
479 /** Size of the guest patch memory block. */
480 uint32_t cbGuestPatchMem;
481 /** Guest allocated memory for patching purposes. */
482 RTGCPTR pGuestPatchMem;
483 /** Current free pointer inside the patch block. */
484 RTGCPTR pFreeGuestPatchMem;
485
486 struct
487 {
488 /** Set by the ring-0 side of HM to indicate VMX is supported by the
489 * CPU. */
490 bool fSupported;
491 /** Set when we've enabled VMX. */
492 bool fEnabled;
493 /** Set if VPID is supported. */
494 bool fVpid;
495 /** Set if VT-x VPID is allowed. */
496 bool fAllowVpid;
497 /** Set if unrestricted guest execution is in use (real and protected mode
498 * without paging). */
499 bool fUnrestrictedGuest;
500 /** Set if the preemption timer is in use or not. */
501 bool fUsePreemptTimer;
502 /** The shift mask employed by the VMX-Preemption timer. */
503 uint8_t cPreemptTimerShift;
504 /** Padding. */
505 bool afPadding0;
506
507 /** Virtual address of the APIC-access page. */
508 R0PTRTYPE(uint8_t *) pbApicAccess;
509 /** Pointer to the VMREAD bitmap. */
510 R0PTRTYPE(void *) pvVmreadBitmap;
511 /** Pointer to the VMWRITE bitmap. */
512 R0PTRTYPE(void *) pvVmwriteBitmap;
513
514 /** Pointer to the shadow VMCS read-only fields array. */
515 R0PTRTYPE(uint32_t *) paShadowVmcsRoFields;
516 /** Pointer to the shadow VMCS read/write fields array. */
517 R0PTRTYPE(uint32_t *) paShadowVmcsFields;
518 /** Number of elements in the shadow VMCS read-only fields array. */
519 uint32_t cShadowVmcsRoFields;
520 /** Number of elements in the shadow VMCS read-write fields array. */
521 uint32_t cShadowVmcsFields;
522
523 /** Tagged-TLB flush type. */
524 VMXTLBFLUSHTYPE enmTlbFlushType;
525 /** Flush type to use for INVEPT. */
526 VMXTLBFLUSHEPT enmTlbFlushEpt;
527 /** Flush type to use for INVVPID. */
528 VMXTLBFLUSHVPID enmTlbFlushVpid;
529
530 /** Pause-loop exiting (PLE) gap in ticks. */
531 uint32_t cPleGapTicks;
532 /** Pause-loop exiting (PLE) window in ticks. */
533 uint32_t cPleWindowTicks;
534 uint32_t u32Alignment0;
535
536 /** Host CR4 value (set by ring-0 VMX init) */
537 uint64_t u64HostCr4;
538 /** Host SMM monitor control (set by ring-0 VMX init) */
539 uint64_t u64HostSmmMonitorCtl;
540 /** Host EFER value (set by ring-0 VMX init) */
541 uint64_t u64HostMsrEfer;
542 /** Whether the CPU supports VMCS fields for swapping EFER. */
543 bool fSupportsVmcsEfer;
544 /** Whether to use VMCS shadowing. */
545 bool fUseVmcsShadowing;
546 /** Set if Last Branch Record (LBR) is enabled. */
547 bool fLbr;
548 uint8_t u8Alignment2[5];
549
550 /** The first valid host LBR branch-from-IP stack range. */
551 uint32_t idLbrFromIpMsrFirst;
552 /** The last valid host LBR branch-from-IP stack range. */
553 uint32_t idLbrFromIpMsrLast;
554
555 /** The first valid host LBR branch-to-IP stack range. */
556 uint32_t idLbrToIpMsrFirst;
557 /** The last valid host LBR branch-to-IP stack range. */
558 uint32_t idLbrToIpMsrLast;
559
560 /** The host LBR TOS (top-of-stack) MSR id. */
561 uint32_t idLbrTosMsr;
562 /** Padding. */
563 uint32_t u32Alignment1;
564
565 /** VMX MSR values. */
566 VMXMSRS Msrs;
567
568 /** Host-physical address for a failing VMXON instruction. */
569 RTHCPHYS HCPhysVmxEnableError;
570 /** Host-physical address of the APIC-access page. */
571 RTHCPHYS HCPhysApicAccess;
572 /** Host-physical address of the VMREAD bitmap. */
573 RTHCPHYS HCPhysVmreadBitmap;
574 /** Host-physical address of the VMWRITE bitmap. */
575 RTHCPHYS HCPhysVmwriteBitmap;
576#ifdef VBOX_WITH_CRASHDUMP_MAGIC
577 /** Host-physical address of the crash-dump scratch area. */
578 RTHCPHYS HCPhysScratch;
579#endif
580
581#ifdef VBOX_WITH_CRASHDUMP_MAGIC
582 /** Pointer to the crash-dump scratch bitmap. */
583 R0PTRTYPE(uint8_t *) pbScratch;
584#endif
585 /** Virtual address of the TSS page used for real mode emulation. */
586 R3PTRTYPE(PVBOXTSS) pRealModeTSS;
587 /** Virtual address of the identity page table used for real mode and protected
588 * mode without paging emulation in EPT mode. */
589 R3PTRTYPE(PX86PD) pNonPagingModeEPTPageTable;
590
591 /** Ring-0 memory object for per-VM VMX structures. */
592 RTR0MEMOBJ hMemObj;
593 } vmx;
594
595 struct
596 {
597 /** Set by the ring-0 side of HM to indicate SVM is supported by the
598 * CPU. */
599 bool fSupported;
600 /** Set when we've enabled SVM. */
601 bool fEnabled;
602 /** Set if erratum 170 affects the AMD cpu. */
603 bool fAlwaysFlushTLB;
604 /** Set when the hack to ignore VERR_SVM_IN_USE is active. */
605 bool fIgnoreInUseError;
606 /** Whether to use virtualized VMSAVE/VMLOAD feature. */
607 bool fVirtVmsaveVmload;
608 /** Whether to use virtual GIF feature. */
609 bool fVGif;
610 /** Whether to use LBR virtualization feature. */
611 bool fLbrVirt;
612 uint8_t u8Alignment0[1];
613
614 /** Physical address of the IO bitmap (12kb). */
615 RTHCPHYS HCPhysIOBitmap;
616 /** R0 memory object for the IO bitmap (12kb). */
617 RTR0MEMOBJ hMemObjIOBitmap;
618 /** Virtual address of the IO bitmap. */
619 R0PTRTYPE(void *) pvIOBitmap;
620
621 /* HWCR MSR (for diagnostics) */
622 uint64_t u64MsrHwcr;
623
624 /** SVM revision. */
625 uint32_t u32Rev;
626 /** SVM feature bits from cpuid 0x8000000a */
627 uint32_t u32Features;
628
629 /** Pause filter counter. */
630 uint16_t cPauseFilter;
631 /** Pause filter treshold in ticks. */
632 uint16_t cPauseFilterThresholdTicks;
633 uint32_t u32Alignment0;
634 } svm;
635
636 /**
637 * AVL tree with all patches (active or disabled) sorted by guest instruction
638 * address.
639 */
640 AVLOU32TREE PatchTree;
641 uint32_t cPatches;
642 HMTPRPATCH aPatches[64];
643
644 /** Last recorded error code during HM ring-0 init. */
645 int32_t rcInit;
646
647 /** HMR0Init was run */
648 bool fHMR0Init;
649 bool u8Alignment1[3];
650
651 STAMCOUNTER StatTprPatchSuccess;
652 STAMCOUNTER StatTprPatchFailure;
653 STAMCOUNTER StatTprReplaceSuccessCr8;
654 STAMCOUNTER StatTprReplaceSuccessVmc;
655 STAMCOUNTER StatTprReplaceFailure;
656} HM;
657/** Pointer to HM VM instance data. */
658typedef HM *PHM;
659AssertCompileMemberAlignment(HM, StatTprPatchSuccess, 8);
660AssertCompileMemberAlignment(HM, vmx, 8);
661AssertCompileMemberAlignment(HM, svm, 8);
662
663
664/** @addtogroup grp_hm_int_svm SVM Internal
665 * @{ */
666/** SVM VMRun function, see SVMR0VMRun(). */
667typedef DECLCALLBACKTYPE(int, FNHMSVMVMRUN,(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhysVMCB));
668/** Pointer to a SVM VMRun function. */
669typedef R0PTRTYPE(FNHMSVMVMRUN *) PFNHMSVMVMRUN;
670/** @} */
671
672
673/** @addtogroup grp_hm_int_vmx VMX Internal
674 * @{ */
675/**
676 * VMX VMCS information, shared.
677 *
678 * This structure provides information maintained for and during the executing of a
679 * guest (or nested-guest) VMCS (VM control structure) using hardware-assisted VMX.
680 *
681 * Note! The members here are ordered and aligned based on estimated frequency of
682 * usage and grouped to fit within a cache line in hot code paths. Even subtle
683 * changes here have a noticeable effect in the bootsector benchmarks. Modify with
684 * care.
685 */
686typedef struct VMXVMCSINFOSHARED
687{
688 /** @name Real-mode emulation state.
689 * @{ */
690 /** Set if guest was executing in real mode (extra checks). */
691 bool fWasInRealMode;
692 /** Set if the guest switched to 64-bit mode on a 32-bit host. */
693 bool fSwitchedTo64on32Obsolete;
694 /** Padding. */
695 bool afPadding0[6];
696 struct
697 {
698 X86DESCATTR AttrCS;
699 X86DESCATTR AttrDS;
700 X86DESCATTR AttrES;
701 X86DESCATTR AttrFS;
702 X86DESCATTR AttrGS;
703 X86DESCATTR AttrSS;
704 X86EFLAGS Eflags;
705 bool fRealOnV86Active;
706 bool afPadding1[3];
707 } RealMode;
708 /** @} */
709
710 /** @name LBR MSR data.
711 * @{ */
712 /** List of LastBranch-From-IP MSRs. */
713 uint64_t au64LbrFromIpMsr[32];
714 /** List of LastBranch-To-IP MSRs. */
715 uint64_t au64LbrToIpMsr[32];
716 /** The MSR containing the index to the most recent branch record. */
717 uint64_t u64LbrTosMsr;
718 /** @} */
719} VMXVMCSINFOSHARED;
720/** Pointer to a VMXVMCSINFOSHARED struct. */
721typedef VMXVMCSINFOSHARED *PVMXVMCSINFOSHARED;
722/** Pointer to a const VMXVMCSINFOSHARED struct. */
723typedef const VMXVMCSINFOSHARED *PCVMXVMCSINFOSHARED;
724AssertCompileSizeAlignment(VMXVMCSINFOSHARED, 8);
725
726
727/**
728 * VMX VMCS information, ring-0 only.
729 *
730 * This structure provides information maintained for and during the executing of a
731 * guest (or nested-guest) VMCS (VM control structure) using hardware-assisted VMX.
732 *
733 * Note! The members here are ordered and aligned based on estimated frequency of
734 * usage and grouped to fit within a cache line in hot code paths. Even subtle
735 * changes here have a noticeable effect in the bootsector benchmarks. Modify with
736 * care.
737 */
738typedef struct VMXVMCSINFO
739{
740 /** Pointer to the bits we share with ring-3. */
741 R0PTRTYPE(PVMXVMCSINFOSHARED) pShared;
742
743 /** @name Auxiliary information.
744 * @{ */
745 /** Host-physical address of the EPTP. */
746 RTHCPHYS HCPhysEPTP;
747 /** The VMCS launch state, see VMX_V_VMCS_LAUNCH_STATE_XXX. */
748 uint32_t fVmcsState;
749 /** The VMCS launch state of the shadow VMCS, see VMX_V_VMCS_LAUNCH_STATE_XXX. */
750 uint32_t fShadowVmcsState;
751 /** The host CPU for which its state has been exported to this VMCS. */
752 RTCPUID idHostCpuState;
753 /** The host CPU on which we last executed this VMCS. */
754 RTCPUID idHostCpuExec;
755 /** Number of guest MSRs in the VM-entry MSR-load area. */
756 uint32_t cEntryMsrLoad;
757 /** Number of guest MSRs in the VM-exit MSR-store area. */
758 uint32_t cExitMsrStore;
759 /** Number of host MSRs in the VM-exit MSR-load area. */
760 uint32_t cExitMsrLoad;
761 /** @} */
762
763 /** @name Cache of execution related VMCS fields.
764 * @{ */
765 /** Pin-based VM-execution controls. */
766 uint32_t u32PinCtls;
767 /** Processor-based VM-execution controls. */
768 uint32_t u32ProcCtls;
769 /** Secondary processor-based VM-execution controls. */
770 uint32_t u32ProcCtls2;
771 /** VM-entry controls. */
772 uint32_t u32EntryCtls;
773 /** VM-exit controls. */
774 uint32_t u32ExitCtls;
775 /** Exception bitmap. */
776 uint32_t u32XcptBitmap;
777 /** Page-fault exception error-code mask. */
778 uint32_t u32XcptPFMask;
779 /** Page-fault exception error-code match. */
780 uint32_t u32XcptPFMatch;
781 /** Padding. */
782 uint32_t u32Alignment0;
783 /** TSC offset. */
784 uint64_t u64TscOffset;
785 /** VMCS link pointer. */
786 uint64_t u64VmcsLinkPtr;
787 /** CR0 guest/host mask. */
788 uint64_t u64Cr0Mask;
789 /** CR4 guest/host mask. */
790 uint64_t u64Cr4Mask;
791 /** Current VMX_VMCS_HOST_RIP value (only used in HMR0A.asm). */
792 uint64_t uHostRip;
793 /** Current VMX_VMCS_HOST_RSP value (only used in HMR0A.asm). */
794 uint64_t uHostRsp;
795 /** @} */
796
797 /** @name Host-virtual address of VMCS and related data structures.
798 * @{ */
799 /** The VMCS. */
800 R0PTRTYPE(void *) pvVmcs;
801 /** The shadow VMCS. */
802 R0PTRTYPE(void *) pvShadowVmcs;
803 /** The virtual-APIC page. */
804 R0PTRTYPE(uint8_t *) pbVirtApic;
805 /** The MSR bitmap. */
806 R0PTRTYPE(void *) pvMsrBitmap;
807 /** The VM-entry MSR-load area. */
808 R0PTRTYPE(void *) pvGuestMsrLoad;
809 /** The VM-exit MSR-store area. */
810 R0PTRTYPE(void *) pvGuestMsrStore;
811 /** The VM-exit MSR-load area. */
812 R0PTRTYPE(void *) pvHostMsrLoad;
813 /** @} */
814
815 /** @name Host-physical address of VMCS and related data structures.
816 * @{ */
817 /** The VMCS. */
818 RTHCPHYS HCPhysVmcs;
819 /** The shadow VMCS. */
820 RTHCPHYS HCPhysShadowVmcs;
821 /** The virtual APIC page. */
822 RTHCPHYS HCPhysVirtApic;
823 /** The MSR bitmap. */
824 RTHCPHYS HCPhysMsrBitmap;
825 /** The VM-entry MSR-load area. */
826 RTHCPHYS HCPhysGuestMsrLoad;
827 /** The VM-exit MSR-store area. */
828 RTHCPHYS HCPhysGuestMsrStore;
829 /** The VM-exit MSR-load area. */
830 RTHCPHYS HCPhysHostMsrLoad;
831 /** @} */
832
833 /** @name R0-memory objects address for VMCS and related data structures.
834 * @{ */
835 /** R0-memory object for VMCS and related data structures. */
836 RTR0MEMOBJ hMemObj;
837 /** @} */
838} VMXVMCSINFO;
839/** Pointer to a VMXVMCSINFOR0 struct. */
840typedef VMXVMCSINFO *PVMXVMCSINFO;
841/** Pointer to a const VMXVMCSINFO struct. */
842typedef const VMXVMCSINFO *PCVMXVMCSINFO;
843AssertCompileSizeAlignment(VMXVMCSINFO, 8);
844AssertCompileMemberAlignment(VMXVMCSINFO, u32PinCtls, 4);
845AssertCompileMemberAlignment(VMXVMCSINFO, u64VmcsLinkPtr, 8);
846AssertCompileMemberAlignment(VMXVMCSINFO, pvVmcs, 8);
847AssertCompileMemberAlignment(VMXVMCSINFO, pvShadowVmcs, 8);
848AssertCompileMemberAlignment(VMXVMCSINFO, pbVirtApic, 8);
849AssertCompileMemberAlignment(VMXVMCSINFO, pvMsrBitmap, 8);
850AssertCompileMemberAlignment(VMXVMCSINFO, pvGuestMsrLoad, 8);
851AssertCompileMemberAlignment(VMXVMCSINFO, pvGuestMsrStore, 8);
852AssertCompileMemberAlignment(VMXVMCSINFO, pvHostMsrLoad, 8);
853AssertCompileMemberAlignment(VMXVMCSINFO, HCPhysVmcs, 8);
854AssertCompileMemberAlignment(VMXVMCSINFO, hMemObj, 8);
855
856
857/** @name Host-state restoration flags.
858 * @note If you change these values don't forget to update the assembly
859 * defines as well!
860 * @{
861 */
862#define VMX_RESTORE_HOST_SEL_DS RT_BIT(0)
863#define VMX_RESTORE_HOST_SEL_ES RT_BIT(1)
864#define VMX_RESTORE_HOST_SEL_FS RT_BIT(2)
865#define VMX_RESTORE_HOST_SEL_GS RT_BIT(3)
866#define VMX_RESTORE_HOST_SEL_TR RT_BIT(4)
867#define VMX_RESTORE_HOST_GDTR RT_BIT(5)
868#define VMX_RESTORE_HOST_IDTR RT_BIT(6)
869#define VMX_RESTORE_HOST_GDT_READ_ONLY RT_BIT(7)
870#define VMX_RESTORE_HOST_GDT_NEED_WRITABLE RT_BIT(8)
871#define VMX_RESTORE_HOST_CAN_USE_WRFSBASE_AND_WRGSBASE RT_BIT(9)
872/**
873 * This _must_ be the top most bit, so that we can easily that that it and
874 * something else is set w/o having to do two checks like this:
875 * @code
876 * if ( (pVCpu->hm.s.vmx.fRestoreHostFlags & VMX_RESTORE_HOST_REQUIRED)
877 * && (pVCpu->hm.s.vmx.fRestoreHostFlags & ~VMX_RESTORE_HOST_REQUIRED))
878 * @endcode
879 * Instead we can then do:
880 * @code
881 * if (pVCpu->hm.s.vmx.fRestoreHostFlags > VMX_RESTORE_HOST_REQUIRED)
882 * @endcode
883 */
884#define VMX_RESTORE_HOST_REQUIRED RT_BIT(10)
885/** @} */
886
887/**
888 * Host-state restoration structure.
889 *
890 * This holds host-state fields that require manual restoration.
891 * Assembly version found in HMInternal.mac (should be automatically verified).
892 */
893typedef struct VMXRESTOREHOST
894{
895 RTSEL uHostSelDS; /**< 0x00 */
896 RTSEL uHostSelES; /**< 0x02 */
897 RTSEL uHostSelFS; /**< 0x04 */
898 X86XDTR64 HostGdtr; /**< 0x06 - should be aligned by its 64-bit member. */
899 RTSEL uHostSelGS; /**< 0x10 */
900 RTSEL uHostSelTR; /**< 0x12 */
901 RTSEL uHostSelSS; /**< 0x14 - not restored, just for fetching */
902 X86XDTR64 HostGdtrRw; /**< 0x16 - should be aligned by its 64-bit member. */
903 RTSEL uHostSelCS; /**< 0x20 - not restored, just for fetching */
904 uint8_t abPadding1[4]; /**< 0x22 */
905 X86XDTR64 HostIdtr; /**< 0x26 - should be aligned by its 64-bit member. */
906 uint64_t uHostFSBase; /**< 0x30 */
907 uint64_t uHostGSBase; /**< 0x38 */
908} VMXRESTOREHOST;
909/** Pointer to VMXRESTOREHOST. */
910typedef VMXRESTOREHOST *PVMXRESTOREHOST;
911AssertCompileSize(X86XDTR64, 10);
912AssertCompileMemberOffset(VMXRESTOREHOST, HostGdtr.uAddr, 0x08);
913AssertCompileMemberOffset(VMXRESTOREHOST, HostGdtrRw.uAddr, 0x18);
914AssertCompileMemberOffset(VMXRESTOREHOST, HostIdtr.uAddr, 0x28);
915AssertCompileMemberOffset(VMXRESTOREHOST, uHostFSBase, 0x30);
916AssertCompileSize(VMXRESTOREHOST, 64);
917AssertCompileSizeAlignment(VMXRESTOREHOST, 8);
918
919/**
920 * VMX StartVM function.
921 *
922 * @returns VBox status code (no informational stuff).
923 * @param pVmcsInfo Pointer to the VMCS info (for cached host RIP and RSP).
924 * @param pVCpu Pointer to the cross context per-CPU structure.
925 * @param fResume Whether to use VMRESUME (true) or VMLAUNCH (false).
926 */
927typedef DECLCALLBACKTYPE(int, FNHMVMXSTARTVM,(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume));
928/** Pointer to a VMX StartVM function. */
929typedef R0PTRTYPE(FNHMVMXSTARTVM *) PFNHMVMXSTARTVM;
930/** @} */
931
932/**
933 * HM VMCPU Instance data.
934 *
935 * Note! If you change members of this struct, make sure to check if the
936 * assembly counterpart in HMInternal.mac needs to be updated as well.
937 *
938 * Note! The members here are ordered and aligned based on estimated frequency of
939 * usage and grouped to fit within a cache line in hot code paths. Even subtle
940 * changes here have a noticeable effect in the bootsector benchmarks. Modify with
941 * care.
942 */
943typedef struct HMCPU
944{
945 /** Set when the TLB has been checked until we return from the world switch. */
946 bool volatile fCheckedTLBFlush;
947 /** Set when we're using VT-x or AMD-V at that moment.
948 * @todo r=bird: Misleading description. For AMD-V this will be set the first
949 * time HMCanExecuteGuest() is called and only cleared again by
950 * HMR3ResetCpu(). For VT-x it will be set by HMCanExecuteGuest when we
951 * can execute something in VT-x mode, and cleared if we cannot.
952 *
953 * The field is much more about recording the last HMCanExecuteGuest
954 * return value than anything about any "moment". */
955 bool fActive;
956
957 /** Whether we should use the debug loop because of single stepping or special
958 * debug breakpoints / events are armed. */
959 bool fUseDebugLoop;
960
961 /** Whether \#UD needs to be intercepted (required by certain GIM providers). */
962 bool fGIMTrapXcptUD;
963 /** Whether \#GP needs to be intercepted for mesa driver workaround. */
964 bool fTrapXcptGpForLovelyMesaDrv;
965 /** Whether we're executing a single instruction. */
966 bool fSingleInstruction;
967
968 bool afAlignment0[2];
969
970 /** An additional error code used for some gurus. */
971 uint32_t u32HMError;
972 /** The last exit-to-ring-3 reason. */
973 int32_t rcLastExitToR3;
974 /** CPU-context changed flags (see HM_CHANGED_xxx). */
975 uint64_t fCtxChanged;
976
977 /** VT-x data. */
978 struct HMCPUVMX
979 {
980 /** @name Guest information.
981 * @{ */
982 /** Guest VMCS information shared with ring-3. */
983 VMXVMCSINFOSHARED VmcsInfo;
984 /** Nested-guest VMCS information shared with ring-3. */
985 VMXVMCSINFOSHARED VmcsInfoNstGst;
986 /** Whether the nested-guest VMCS was the last current VMCS (shadow copy for ring-3).
987 * @see HMR0PERVCPU::vmx.fSwitchedToNstGstVmcs */
988 bool fSwitchedToNstGstVmcsCopyForRing3;
989 /** Whether the static guest VMCS controls has been merged with the
990 * nested-guest VMCS controls. */
991 bool fMergedNstGstCtls;
992 /** Whether the nested-guest VMCS has been copied to the shadow VMCS. */
993 bool fCopiedNstGstToShadowVmcs;
994 /** Whether flushing the TLB is required due to switching to/from the
995 * nested-guest. */
996 bool fSwitchedNstGstFlushTlb;
997 /** Alignment. */
998 bool afAlignment0[4];
999 /** Cached guest APIC-base MSR for identifying when to map the APIC-access page. */
1000 uint64_t u64GstMsrApicBase;
1001 /** @} */
1002
1003 /** @name Error reporting and diagnostics.
1004 * @{ */
1005 /** VT-x error-reporting (mainly for ring-3 propagation). */
1006 struct
1007 {
1008 RTCPUID idCurrentCpu;
1009 RTCPUID idEnteredCpu;
1010 RTHCPHYS HCPhysCurrentVmcs;
1011 uint32_t u32VmcsRev;
1012 uint32_t u32InstrError;
1013 uint32_t u32ExitReason;
1014 uint32_t u32GuestIntrState;
1015 } LastError;
1016 /** @} */
1017 } vmx;
1018
1019 /** SVM data. */
1020 struct HMCPUSVM
1021 {
1022 /** Physical address of the host VMCB which holds additional host-state. */
1023 RTHCPHYS HCPhysVmcbHost;
1024 /** R0 memory object for the host VMCB which holds additional host-state. */
1025 RTR0MEMOBJ hMemObjVmcbHost;
1026 /** Padding.
1027 * @todo remove, pointless now */
1028 R0PTRTYPE(void *) pvPadding;
1029
1030 /** Physical address of the guest VMCB. */
1031 RTHCPHYS HCPhysVmcb;
1032 /** R0 memory object for the guest VMCB. */
1033 RTR0MEMOBJ hMemObjVmcb;
1034 /** Pointer to the guest VMCB. */
1035 R0PTRTYPE(PSVMVMCB) pVmcb;
1036
1037 /** Physical address of the MSR bitmap (8 KB). */
1038 RTHCPHYS HCPhysMsrBitmap;
1039 /** R0 memory object for the MSR bitmap (8 KB). */
1040 RTR0MEMOBJ hMemObjMsrBitmap;
1041 /** Pointer to the MSR bitmap. */
1042 R0PTRTYPE(void *) pvMsrBitmap;
1043
1044 /** Whether VTPR with V_INTR_MASKING set is in effect, indicating
1045 * we should check if the VTPR changed on every VM-exit. */
1046 bool fSyncVTpr;
1047 /** Whether to emulate long mode support for sysenter/sysexit like intel CPUs
1048 * does. This means intercepting \#UD to emulate the instructions in
1049 * long-mode and to intercept reads and writes to the SYSENTER MSRs in order to
1050 * preserve the upper 32 bits written to them (AMD will ignore and discard). */
1051 bool fEmulateLongModeSysEnterExit;
1052 uint8_t au8Alignment0[6];
1053
1054 /** Host's TSC_AUX MSR (used when RDTSCP doesn't cause VM-exits). */
1055 uint64_t u64HostTscAux;
1056
1057 /** Cache of the nested-guest's VMCB fields that we modify in order to run the
1058 * nested-guest using AMD-V. This will be restored on \#VMEXIT. */
1059 SVMNESTEDVMCBCACHE NstGstVmcbCache;
1060 } svm;
1061
1062 /** Event injection state. */
1063 HMEVENT Event;
1064
1065 /** Current shadow paging mode for updating CR4.
1066 * @todo move later (@bugref{9217}). */
1067 PGMMODE enmShadowMode;
1068 uint32_t u32TemporaryPadding;
1069
1070 /** The PAE PDPEs used with Nested Paging (only valid when
1071 * VMCPU_FF_HM_UPDATE_PAE_PDPES is set). */
1072 X86PDPE aPdpes[4];
1073
1074 /* These two comes because they are accessed from assembly and we don't
1075 want to detail all the stats in the assembly version of this structure. */
1076 STAMCOUNTER StatVmxWriteHostRip;
1077 STAMCOUNTER StatVmxWriteHostRsp;
1078 STAMCOUNTER StatVmxVmLaunch;
1079 STAMCOUNTER StatVmxVmResume;
1080
1081 STAMPROFILEADV StatEntry;
1082 STAMPROFILEADV StatPreExit;
1083 STAMPROFILEADV StatExitHandling;
1084 STAMPROFILEADV StatExitIO;
1085 STAMPROFILEADV StatExitMovCRx;
1086 STAMPROFILEADV StatExitXcptNmi;
1087 STAMPROFILEADV StatExitVmentry;
1088 STAMPROFILEADV StatImportGuestState;
1089 STAMPROFILEADV StatExportGuestState;
1090 STAMPROFILEADV StatLoadGuestFpuState;
1091 STAMPROFILEADV StatInGC;
1092 STAMPROFILEADV StatPoke;
1093 STAMPROFILEADV StatSpinPoke;
1094 STAMPROFILEADV StatSpinPokeFailed;
1095
1096 STAMCOUNTER StatInjectInterrupt;
1097 STAMCOUNTER StatInjectXcpt;
1098 STAMCOUNTER StatInjectReflect;
1099 STAMCOUNTER StatInjectConvertDF;
1100 STAMCOUNTER StatInjectInterpret;
1101 STAMCOUNTER StatInjectReflectNPF;
1102
1103 STAMCOUNTER StatExitAll;
1104 STAMCOUNTER StatNestedExitAll;
1105 STAMCOUNTER StatExitShadowNM;
1106 STAMCOUNTER StatExitGuestNM;
1107 STAMCOUNTER StatExitShadowPF; /**< Misleading, currently used for MMIO \#PFs as well. */
1108 STAMCOUNTER StatExitShadowPFEM;
1109 STAMCOUNTER StatExitGuestPF;
1110 STAMCOUNTER StatExitGuestUD;
1111 STAMCOUNTER StatExitGuestSS;
1112 STAMCOUNTER StatExitGuestNP;
1113 STAMCOUNTER StatExitGuestTS;
1114 STAMCOUNTER StatExitGuestOF;
1115 STAMCOUNTER StatExitGuestGP;
1116 STAMCOUNTER StatExitGuestDE;
1117 STAMCOUNTER StatExitGuestDF;
1118 STAMCOUNTER StatExitGuestBR;
1119 STAMCOUNTER StatExitGuestAC;
1120 STAMCOUNTER StatExitGuestDB;
1121 STAMCOUNTER StatExitGuestMF;
1122 STAMCOUNTER StatExitGuestBP;
1123 STAMCOUNTER StatExitGuestXF;
1124 STAMCOUNTER StatExitGuestXcpUnk;
1125 STAMCOUNTER StatExitDRxWrite;
1126 STAMCOUNTER StatExitDRxRead;
1127 STAMCOUNTER StatExitCR0Read;
1128 STAMCOUNTER StatExitCR2Read;
1129 STAMCOUNTER StatExitCR3Read;
1130 STAMCOUNTER StatExitCR4Read;
1131 STAMCOUNTER StatExitCR8Read;
1132 STAMCOUNTER StatExitCR0Write;
1133 STAMCOUNTER StatExitCR2Write;
1134 STAMCOUNTER StatExitCR3Write;
1135 STAMCOUNTER StatExitCR4Write;
1136 STAMCOUNTER StatExitCR8Write;
1137 STAMCOUNTER StatExitRdmsr;
1138 STAMCOUNTER StatExitWrmsr;
1139 STAMCOUNTER StatExitClts;
1140 STAMCOUNTER StatExitXdtrAccess;
1141 STAMCOUNTER StatExitLmsw;
1142 STAMCOUNTER StatExitIOWrite;
1143 STAMCOUNTER StatExitIORead;
1144 STAMCOUNTER StatExitIOStringWrite;
1145 STAMCOUNTER StatExitIOStringRead;
1146 STAMCOUNTER StatExitIntWindow;
1147 STAMCOUNTER StatExitExtInt;
1148 STAMCOUNTER StatExitHostNmiInGC;
1149 STAMCOUNTER StatExitHostNmiInGCIpi;
1150 STAMCOUNTER StatExitPreemptTimer;
1151 STAMCOUNTER StatExitTprBelowThreshold;
1152 STAMCOUNTER StatExitTaskSwitch;
1153 STAMCOUNTER StatExitApicAccess;
1154 STAMCOUNTER StatExitReasonNpf;
1155
1156 STAMCOUNTER StatNestedExitReasonNpf;
1157
1158 STAMCOUNTER StatFlushPage;
1159 STAMCOUNTER StatFlushPageManual;
1160 STAMCOUNTER StatFlushPhysPageManual;
1161 STAMCOUNTER StatFlushTlb;
1162 STAMCOUNTER StatFlushTlbNstGst;
1163 STAMCOUNTER StatFlushTlbManual;
1164 STAMCOUNTER StatFlushTlbWorldSwitch;
1165 STAMCOUNTER StatNoFlushTlbWorldSwitch;
1166 STAMCOUNTER StatFlushEntire;
1167 STAMCOUNTER StatFlushAsid;
1168 STAMCOUNTER StatFlushNestedPaging;
1169 STAMCOUNTER StatFlushTlbInvlpgVirt;
1170 STAMCOUNTER StatFlushTlbInvlpgPhys;
1171 STAMCOUNTER StatTlbShootdown;
1172 STAMCOUNTER StatTlbShootdownFlush;
1173
1174 STAMCOUNTER StatSwitchPendingHostIrq;
1175 STAMCOUNTER StatSwitchTprMaskedIrq;
1176 STAMCOUNTER StatSwitchGuestIrq;
1177 STAMCOUNTER StatSwitchHmToR3FF;
1178 STAMCOUNTER StatSwitchVmReq;
1179 STAMCOUNTER StatSwitchPgmPoolFlush;
1180 STAMCOUNTER StatSwitchDma;
1181 STAMCOUNTER StatSwitchExitToR3;
1182 STAMCOUNTER StatSwitchLongJmpToR3;
1183 STAMCOUNTER StatSwitchMaxResumeLoops;
1184 STAMCOUNTER StatSwitchHltToR3;
1185 STAMCOUNTER StatSwitchApicAccessToR3;
1186 STAMCOUNTER StatSwitchPreempt;
1187 STAMCOUNTER StatSwitchNstGstVmexit;
1188
1189 STAMCOUNTER StatTscParavirt;
1190 STAMCOUNTER StatTscOffset;
1191 STAMCOUNTER StatTscIntercept;
1192
1193 STAMCOUNTER StatDRxArmed;
1194 STAMCOUNTER StatDRxContextSwitch;
1195 STAMCOUNTER StatDRxIoCheck;
1196
1197 STAMCOUNTER StatExportMinimal;
1198 STAMCOUNTER StatExportFull;
1199 STAMCOUNTER StatLoadGuestFpu;
1200 STAMCOUNTER StatExportHostState;
1201
1202 STAMCOUNTER StatVmxCheckBadRmSelBase;
1203 STAMCOUNTER StatVmxCheckBadRmSelLimit;
1204 STAMCOUNTER StatVmxCheckBadRmSelAttr;
1205 STAMCOUNTER StatVmxCheckBadV86SelBase;
1206 STAMCOUNTER StatVmxCheckBadV86SelLimit;
1207 STAMCOUNTER StatVmxCheckBadV86SelAttr;
1208 STAMCOUNTER StatVmxCheckRmOk;
1209 STAMCOUNTER StatVmxCheckBadSel;
1210 STAMCOUNTER StatVmxCheckBadRpl;
1211 STAMCOUNTER StatVmxCheckPmOk;
1212
1213#ifdef VBOX_WITH_STATISTICS
1214 R3PTRTYPE(PSTAMCOUNTER) paStatExitReason;
1215 R0PTRTYPE(PSTAMCOUNTER) paStatExitReasonR0;
1216 R3PTRTYPE(PSTAMCOUNTER) paStatInjectedIrqs;
1217 R0PTRTYPE(PSTAMCOUNTER) paStatInjectedIrqsR0;
1218 R3PTRTYPE(PSTAMCOUNTER) paStatInjectedXcpts;
1219 R0PTRTYPE(PSTAMCOUNTER) paStatInjectedXcptsR0;
1220 R3PTRTYPE(PSTAMCOUNTER) paStatNestedExitReason;
1221 R0PTRTYPE(PSTAMCOUNTER) paStatNestedExitReasonR0;
1222#endif
1223#ifdef HM_PROFILE_EXIT_DISPATCH
1224 STAMPROFILEADV StatExitDispatch;
1225#endif
1226} HMCPU;
1227/** Pointer to HM VMCPU instance data. */
1228typedef HMCPU *PHMCPU;
1229AssertCompileMemberAlignment(HMCPU, fCheckedTLBFlush, 4);
1230AssertCompileMemberAlignment(HMCPU, fCtxChanged, 8);
1231AssertCompileMemberAlignment(HMCPU, vmx, 8);
1232AssertCompileMemberAlignment(HMCPU, vmx.VmcsInfo, 8);
1233AssertCompileMemberAlignment(HMCPU, vmx.VmcsInfoNstGst, 8);
1234AssertCompileMemberAlignment(HMCPU, svm, 8);
1235AssertCompileMemberAlignment(HMCPU, Event, 8);
1236
1237
1238/**
1239 * HM per-VCpu ring-0 only instance data.
1240 */
1241typedef struct HMR0PERVCPU
1242{
1243 /** World switch exit counter. */
1244 uint32_t volatile cWorldSwitchExits;
1245 /** TLB flush count. */
1246 uint32_t cTlbFlushes;
1247 /** The last CPU we were executing code on (NIL_RTCPUID for the first time). */
1248 RTCPUID idLastCpu;
1249 /** The CPU ID of the CPU currently owning the VMCS. Set in
1250 * HMR0Enter and cleared in HMR0Leave. */
1251 RTCPUID idEnteredCpu;
1252 /** Current ASID in use by the VM. */
1253 uint32_t uCurrentAsid;
1254
1255 /** Set if we need to flush the TLB during the world switch. */
1256 bool fForceTLBFlush;
1257 /** Whether we've completed the inner HM leave function. */
1258 bool fLeaveDone;
1259 /** Whether we're using the hyper DR7 or guest DR7. */
1260 bool fUsingHyperDR7;
1261 /** Whether we are currently executing in the debug loop.
1262 * Mainly for assertions. */
1263 bool fUsingDebugLoop;
1264 /** Set if we using the debug loop and wish to intercept RDTSC. */
1265 bool fDebugWantRdTscExit;
1266 /** Set if XCR0 needs to be saved/restored when entering/exiting guest code
1267 * execution. */
1268 bool fLoadSaveGuestXcr0;
1269 /** Set if we need to clear the trap flag because of single stepping. */
1270 bool fClearTrapFlag;
1271
1272 bool afPadding1[5];
1273
1274 /** VT-x data. */
1275 struct HMR0CPUVMX
1276 {
1277 /** Ring-0 pointer to the hardware-assisted VMX execution function. */
1278 PFNHMVMXSTARTVM pfnStartVm;
1279
1280 /** @name Guest information.
1281 * @{ */
1282 /** Guest VMCS information. */
1283 VMXVMCSINFO VmcsInfo;
1284 /** Nested-guest VMCS information. */
1285 VMXVMCSINFO VmcsInfoNstGst;
1286 /* Whether the nested-guest VMCS was the last current VMCS (authoritative copy).
1287 * @see HMCPU::vmx.fSwitchedToNstGstVmcsCopyForRing3 */
1288 bool fSwitchedToNstGstVmcs;
1289 bool afAlignment0[7];
1290 /** @} */
1291
1292 /** @name Host information.
1293 * @{ */
1294 /** Host LSTAR MSR to restore lazily while leaving VT-x. */
1295 uint64_t u64HostMsrLStar;
1296 /** Host STAR MSR to restore lazily while leaving VT-x. */
1297 uint64_t u64HostMsrStar;
1298 /** Host SF_MASK MSR to restore lazily while leaving VT-x. */
1299 uint64_t u64HostMsrSfMask;
1300 /** Host KernelGS-Base MSR to restore lazily while leaving VT-x. */
1301 uint64_t u64HostMsrKernelGsBase;
1302 /** The mask of lazy MSRs swap/restore state, see VMX_LAZY_MSRS_XXX. */
1303 uint32_t fLazyMsrs;
1304 /** Whether the host MSR values are up-to-date in the auto-load/store MSR area. */
1305 bool fUpdatedHostAutoMsrs;
1306 /** Alignment. */
1307 uint8_t au8Alignment0[3];
1308 /** Which host-state bits to restore before being preempted, see
1309 * VMX_RESTORE_HOST_XXX. */
1310 uint32_t fRestoreHostFlags;
1311 /** Alignment. */
1312 uint32_t u32Alignment0;
1313 /** The host-state restoration structure. */
1314 VMXRESTOREHOST RestoreHost;
1315 /** @} */
1316 } vmx;
1317
1318 /** SVM data. */
1319 struct HMR0CPUSVM
1320 {
1321 /** Ring 0 handlers for VT-x. */
1322 PFNHMSVMVMRUN pfnVMRun;
1323
1324 /** For saving stack space, the disassembler state is allocated here
1325 * instead of on the stack. */
1326 DISCPUSTATE DisState;
1327 } svm;
1328} HMR0PERVCPU;
1329/** Pointer to HM ring-0 VMCPU instance data. */
1330typedef HMR0PERVCPU *PHMR0PERVCPU;
1331AssertCompileMemberAlignment(HMR0PERVCPU, cWorldSwitchExits, 4);
1332AssertCompileMemberAlignment(HMR0PERVCPU, fForceTLBFlush, 4);
1333AssertCompileMemberAlignment(HMR0PERVCPU, vmx.RestoreHost, 8);
1334
1335
1336#ifdef IN_RING0
1337VMMR0_INT_DECL(PHMPHYSCPU) hmR0GetCurrentCpu(void);
1338VMMR0_INT_DECL(int) hmR0EnterCpu(PVMCPUCC pVCpu);
1339
1340# ifdef VBOX_STRICT
1341# define HM_DUMP_REG_FLAGS_GPRS RT_BIT(0)
1342# define HM_DUMP_REG_FLAGS_FPU RT_BIT(1)
1343# define HM_DUMP_REG_FLAGS_MSRS RT_BIT(2)
1344# define HM_DUMP_REG_FLAGS_ALL (HM_DUMP_REG_FLAGS_GPRS | HM_DUMP_REG_FLAGS_FPU | HM_DUMP_REG_FLAGS_MSRS)
1345
1346VMMR0_INT_DECL(void) hmR0DumpRegs(PVMCPUCC pVCpu, uint32_t fFlags);
1347VMMR0_INT_DECL(void) hmR0DumpDescriptor(PCX86DESCHC pDesc, RTSEL Sel, const char *pszMsg);
1348# endif
1349
1350DECLASM(void) hmR0MdsClear(void);
1351#endif /* IN_RING0 */
1352
1353
1354/** @addtogroup grp_hm_int_svm SVM Internal
1355 * @{ */
1356VMM_INT_DECL(int) hmEmulateSvmMovTpr(PVMCC pVM, PVMCPUCC pVCpu);
1357
1358/**
1359 * Prepares for and executes VMRUN (64-bit register context).
1360 *
1361 * @returns VBox status code (no informational stuff).
1362 * @param pVM The cross context VM structure. (Not used.)
1363 * @param pVCpu The cross context virtual CPU structure.
1364 * @param HCPhyspVMCB Physical address of the VMCB.
1365 *
1366 * @remarks With spectre mitigations and the usual need for speed (/ micro
1367 * optimizations), we have a bunch of variations of this code depending
1368 * on a few precoditions. In release builds, the code is entirely
1369 * without conditionals. Debug builds have a couple of assertions that
1370 * shouldn't ever be triggered.
1371 *
1372 * @{
1373 */
1374DECLASM(int) hmR0SvmVmRun_SansXcr0_SansIbpbEntry_SansIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1375DECLASM(int) hmR0SvmVmRun_WithXcr0_SansIbpbEntry_SansIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1376DECLASM(int) hmR0SvmVmRun_SansXcr0_WithIbpbEntry_SansIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1377DECLASM(int) hmR0SvmVmRun_WithXcr0_WithIbpbEntry_SansIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1378DECLASM(int) hmR0SvmVmRun_SansXcr0_SansIbpbEntry_WithIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1379DECLASM(int) hmR0SvmVmRun_WithXcr0_SansIbpbEntry_WithIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1380DECLASM(int) hmR0SvmVmRun_SansXcr0_WithIbpbEntry_WithIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1381DECLASM(int) hmR0SvmVmRun_WithXcr0_WithIbpbEntry_WithIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1382/** @} */
1383
1384/** @} */
1385
1386
1387/** @addtogroup grp_hm_int_vmx VMX Internal
1388 * @{ */
1389VMM_INT_DECL(PVMXVMCSINFOSHARED) hmGetVmxActiveVmcsInfoShared(PVMCPUCC pVCpu);
1390
1391/**
1392 * Used on platforms with poor inline assembly support to retrieve all the
1393 * info from the CPU and put it in the @a pRestoreHost structure.
1394 */
1395DECLASM(void) hmR0VmxExportHostSegmentRegsAsmHlp(PVMXRESTOREHOST pRestoreHost, bool fHaveFsGsBase);
1396
1397/**
1398 * Restores some host-state fields that need not be done on every VM-exit.
1399 *
1400 * @returns VBox status code.
1401 * @param fRestoreHostFlags Flags of which host registers needs to be
1402 * restored.
1403 * @param pRestoreHost Pointer to the host-restore structure.
1404 */
1405DECLASM(int) VMXRestoreHostState(uint32_t fRestoreHostFlags, PVMXRESTOREHOST pRestoreHost);
1406
1407/**
1408 * VMX StartVM functions.
1409 *
1410 * @returns VBox status code (no informational stuff).
1411 * @param pVM Pointer to the cross context VM structure.
1412 * @param pVCpu Pointer to the cross context per-CPU structure.
1413 * @param fResume Whether to use VMRESUME (true) or VMLAUNCH (false).
1414 *
1415 * @remarks With spectre mitigations and the usual need for speed (/ micro
1416 * optimizations), we have a bunch of variations of this code depending
1417 * on a few precoditions. In release builds, the code is entirely
1418 * without conditionals. Debug builds have a couple of assertions that
1419 * shouldn't ever be triggered.
1420 *
1421 * @{
1422 */
1423DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_SansL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1424DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_SansL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1425DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_SansL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1426DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_SansL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1427DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_WithL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1428DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_WithL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1429DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_WithL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1430DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_WithL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1431DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_SansL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1432DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_SansL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1433DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_SansL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1434DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_SansL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1435DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_WithL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1436DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_WithL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1437DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_WithL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1438DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_WithL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1439DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_SansL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1440DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_SansL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1441DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_SansL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1442DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_SansL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1443DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_WithL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1444DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_WithL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1445DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_WithL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1446DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_WithL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1447DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_SansL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1448DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_SansL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1449DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_SansL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1450DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_SansL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1451DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_WithL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1452DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_WithL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1453DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_WithL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1454DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_WithL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1455/** @} */
1456
1457/** @} */
1458
1459/** @} */
1460
1461RT_C_DECLS_END
1462
1463#endif /* !VMM_INCLUDED_SRC_include_HMInternal_h */
1464
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette