Changeset 80263 in vbox
- Timestamp:
- Aug 14, 2019 5:23:40 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132714
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r80259 r80263 6075 6075 IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryInstrLen); 6076 6076 6077 /* Instruction length of 0 is allowed only when its CPU feature is present. */ 6078 if ( pVmcs->u32EntryInstrLen == 0 6079 && !IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxEntryInjectSoftInt) 6077 /* However, instruction length of 0 is allowed only when its CPU feature is present. */ 6078 if ( pVmcs->u32EntryInstrLen != 0 6079 || IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxEntryInjectSoftInt) 6080 { /* likely */ } 6081 else 6080 6082 IEM_VMX_VMENTRY_FAILED_RET(pVCpu, pszInstr, pszFailure, kVmxVDiag_Vmentry_EntryInstrLenZero); 6081 6083 }
Note:
See TracChangeset
for help on using the changeset viewer.