Changeset 91971 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Oct 21, 2021 3:58:30 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147777
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/HMVMXAll.cpp
r91580 r91971 926 926 LogRel((" %sPosted-intr desc addr = %#RX64\n", pszPrefix, pVmcs->u64AddrPostedIntDesc.u)); 927 927 LogRel((" %sVM-functions control = %#RX64\n", pszPrefix, pVmcs->u64VmFuncCtls.u)); 928 LogRel((" %sEPTP ptr = %#RX64\n", pszPrefix, pVmcs->u64Ept pPtr.u));928 LogRel((" %sEPTP ptr = %#RX64\n", pszPrefix, pVmcs->u64EptPtr.u)); 929 929 LogRel((" %sEOI-exit bitmap 0 = %#RX64\n", pszPrefix, pVmcs->u64EoiExitBitmap0.u)); 930 930 LogRel((" %sEOI-exit bitmap 1 = %#RX64\n", pszPrefix, pVmcs->u64EoiExitBitmap1.u)); -
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r91580 r91971 254 254 /* 11 */ RT_UOFFSETOF(VMXVVMCS, u64AddrPostedIntDesc), 255 255 /* 12 */ RT_UOFFSETOF(VMXVVMCS, u64VmFuncCtls), 256 /* 13 */ RT_UOFFSETOF(VMXVVMCS, u64Ept pPtr),256 /* 13 */ RT_UOFFSETOF(VMXVVMCS, u64EptPtr), 257 257 /* 14 */ RT_UOFFSETOF(VMXVVMCS, u64EoiExitBitmap0), 258 258 /* 15 */ RT_UOFFSETOF(VMXVVMCS, u64EoiExitBitmap1), … … 6100 6100 uint8_t const cMaxPhysAddrWidth = IEM_GET_GUEST_CPU_FEATURES(pVCpu)->cMaxPhysAddrWidth; 6101 6101 uint64_t const fValidMask = VMX_EPTP_VALID_MASK & ~(UINT64_MAX << cMaxPhysAddrWidth); 6102 if (pVmcs->u64Ept pPtr.u & fValidMask)6102 if (pVmcs->u64EptPtr.u & fValidMask) 6103 6103 { /* likely */ } 6104 6104 else … … 6107 6107 /* Memory Type. */ 6108 6108 uint64_t const fCaps = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64EptVpidCaps; 6109 uint8_t const fMemType = RT_BF_GET(pVmcs->u64Ept pPtr.u, VMX_BF_EPTP_MEMTYPE);6109 uint8_t const fMemType = RT_BF_GET(pVmcs->u64EptPtr.u, VMX_BF_EPTP_MEMTYPE); 6110 6110 if ( ( fMemType == VMX_EPTP_MEMTYPE_WB 6111 6111 && RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_MEMTYPE_WB)) … … 6123 6123 */ 6124 6124 Assert(RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_PAGE_WALK_LENGTH_4)); 6125 if (RT_BF_GET(pVmcs->u64Ept pPtr.u, VMX_BF_EPTP_PAGE_WALK_LENGTH) == 3)6125 if (RT_BF_GET(pVmcs->u64EptPtr.u, VMX_BF_EPTP_PAGE_WALK_LENGTH) == 3) 6126 6126 { /* likely */ } 6127 6127 else … … 6129 6129 6130 6130 /* Access and dirty bits support in EPT structures. */ 6131 if ( !RT_BF_GET(pVmcs->u64Ept pPtr.u, VMX_BF_EPTP_ACCESS_DIRTY)6131 if ( !RT_BF_GET(pVmcs->u64EptPtr.u, VMX_BF_EPTP_ACCESS_DIRTY) 6132 6132 || RT_BF_GET(fCaps, VMX_BF_EPT_VPID_CAP_ACCESS_DIRTY)) 6133 6133 { /* likely */ }
Note:
See TracChangeset
for help on using the changeset viewer.