Changeset 87556 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Feb 3, 2021 11:02:09 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142583
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/HMInternal.h ¶
r87552 r87556 503 503 /** The shift mask employed by the VMX-Preemption timer (set by ring-0). */ 504 504 uint8_t cPreemptTimerShift; 505 /** Padding. */ 506 bool afPadding0[1]; 505 bool fAlignment1; 507 506 508 507 /** Pause-loop exiting (PLE) gap in ticks. */ … … 517 516 /** Host EFER value (set by ring-0 VMX init, for logging and guest NX). */ 518 517 uint64_t u64HostMsrEfer; 519 /** Whether the CPU supports VMCS fields for swapping EFER. */ 520 bool fSupportsVmcsEfer; 518 /** Whether the CPU supports VMCS fields for swapping EFER (set by ring-0 VMX 519 * init, for logging). */ 520 bool fSupportsVmcsEferForRing3; 521 521 /** Whether to use VMCS shadowing. */ 522 522 bool fUseVmcsShadowing; 523 523 /** Set if Last Branch Record (LBR) is enabled. */ 524 524 bool fLbr; 525 uint8_t u8Alignment2[5]; 525 bool fAlignment2; 526 527 /** The host LBR TOS (top-of-stack) MSR id. */ 528 uint32_t idLbrTosMsr; 526 529 527 530 /** The first valid host LBR branch-from-IP stack range. */ … … 534 537 /** The last valid host LBR branch-to-IP stack range. */ 535 538 uint32_t idLbrToIpMsrLast; 536 537 /** The host LBR TOS (top-of-stack) MSR id. */538 uint32_t idLbrTosMsr;539 /** Padding. */540 uint32_t u32Alignment1;541 539 542 540 /** Host-physical address for a failing VMXON instruction (for diagnostics, ring-3). */ … … 1456 1454 extern bool g_fHmVmxUsePreemptTimer; 1457 1455 extern uint8_t g_cHmVmxPreemptTimerShift; 1456 extern bool g_fHmVmxSupportsVmcsEfer; 1458 1457 extern uint64_t g_uHmVmxHostCr4; 1459 1458 extern uint64_t g_uHmVmxHostMsrEfer;
Note:
See TracChangeset
for help on using the changeset viewer.