Changeset 79220 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jun 19, 2019 5:28:37 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131398
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r79203 r79220 8207 8207 * different current VMCS. 8208 8208 */ 8209 bool fLoadVmcsFromMem; 8210 if (IEM_VMX_HAS_CURRENT_VMCS(pVCpu)) 8211 { 8212 if (IEM_VMX_GET_CURRENT_VMCS(pVCpu) != GCPhysVmcs) 8209 if (IEM_VMX_GET_CURRENT_VMCS(pVCpu) != GCPhysVmcs) 8210 { 8211 if (IEM_VMX_HAS_CURRENT_VMCS(pVCpu)) 8213 8212 { 8214 8213 iemVmxCommitCurrentVmcsToMemory(pVCpu); 8215 8214 Assert(!IEM_VMX_HAS_CURRENT_VMCS(pVCpu)); 8216 fLoadVmcsFromMem = true; 8217 } 8218 else 8219 fLoadVmcsFromMem = false; 8220 } 8221 else 8222 fLoadVmcsFromMem = true; 8223 8224 if (fLoadVmcsFromMem) 8225 { 8215 } 8216 8226 8217 /* Finally, cache the new VMCS from guest memory and mark it as the current VMCS. */ 8227 8218 rc = PGMPhysSimpleReadGCPhys(pVCpu->CTX_SUFF(pVM), (void *)pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs), GCPhysVmcs,
Note:
See TracChangeset
for help on using the changeset viewer.