- Timestamp:
- Feb 1, 2021 2:29:19 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142526
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r87501 r87502 2048 2048 pVCpu->hm.s.Event.fPending = false; 2049 2049 pVCpu->hm.s.vmx.u64GstMsrApicBase = 0; 2050 pVCpu->hm.s.vmx.VmcsInfo.fSwitchedTo64on32Obsolete = false;2051 2050 pVCpu->hm.s.vmx.VmcsInfo.fWasInRealMode = true; 2052 2051 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX 2053 2052 if (pVCpu->CTX_SUFF(pVM)->cpum.ro.GuestFeatures.fVmx) 2054 {2055 pVCpu->hm.s.vmx.VmcsInfoNstGst.fSwitchedTo64on32Obsolete = false;2056 2053 pVCpu->hm.s.vmx.VmcsInfoNstGst.fWasInRealMode = true; 2057 }2058 2054 #endif 2059 2055 } -
trunk/src/VBox/VMM/include/HMInternal.h
r87500 r87502 690 690 /** Set if guest was executing in real mode (extra checks). */ 691 691 bool fWasInRealMode; 692 /** Set if the guest switched to 64-bit mode on a 32-bit host. */693 bool fSwitchedTo64on32Obsolete;694 692 /** Padding. */ 695 bool afPadding0[ 6];693 bool afPadding0[7]; 696 694 struct 697 695 { -
trunk/src/VBox/VMM/include/HMInternal.mac
r87500 r87502 22 22 struc VMXVMCSINFOSHARED 23 23 .fWasInRealMode resb 1 24 .fSwitchedTo64on32Obsolete resb 125 24 alignb 8 26 25 .RealMode.AttrCS resd 1
Note:
See TracChangeset
for help on using the changeset viewer.