Changeset 77879 in vbox
- Timestamp:
- Mar 26, 2019 2:45:09 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129581
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r77746 r77879 2795 2795 Assert(pVmcs); 2796 2796 2797 /* Ensure VM-entry interruption information valid bit isn't set. */ 2798 Assert(!VMX_ENTRY_INT_INFO_IS_VALID(pVmcs->u32EntryIntInfo); 2799 2797 2800 /* Update the VM-exit reason, the other relevant data fields are expected to be updated by the caller already. */ 2798 2801 pVmcs->u32RoExitReason = uExitReason; 2799 2802 Log3(("vmexit: uExitReason=%#RX32 uExitQual=%#RX64 cs:rip=%04x:%#RX64\n", uExitReason, pVmcs->u64RoExitQual, 2800 2803 IEM_GET_CTX(pVCpu)->cs.Sel, IEM_GET_CTX(pVCpu)->rip)); 2801 2802 /*2803 * We need to clear the VM-entry interruption information field's valid bit on VM-exit.2804 * See Intel spec. 24.8.3 "VM-Entry Controls for Event Injection".2805 */2806 pVmcs->u32EntryIntInfo &= ~VMX_ENTRY_INT_INFO_VALID;2807 2804 2808 2805 /* … … 3927 3924 Assert(pVmcs->u32PinCtls & VMX_PIN_CTLS_NMI_EXIT); 3928 3925 Assert(pVCpu->cpum.GstCtx.hwvirt.vmx.fInterceptEvents); 3926 NOREF(pVmcs); 3929 3927 return iemVmxVmexitEvent(pVCpu, X86_XCPT_NMI, IEM_XCPT_FLAGS_T_CPU_XCPT, 0 /* uErrCode */, 0 /* uCr2 */, 0 /* cbInstr */); 3930 3928 } … … 4168 4166 */ 4169 4167 if ( (fFlags & IEM_XCPT_FLAGS_T_SOFT_INT) 4170 &&(fFlags & (IEM_XCPT_FLAGS_BP_INSTR | IEM_XCPT_FLAGS_OF_INSTR | IEM_XCPT_FLAGS_ICEBP_INSTR)))4168 || (fFlags & (IEM_XCPT_FLAGS_BP_INSTR | IEM_XCPT_FLAGS_OF_INSTR | IEM_XCPT_FLAGS_ICEBP_INSTR))) 4171 4169 iemVmxVmcsSetExitInstrLen(pVCpu, cbInstr); 4172 4170 else … … 7414 7412 } 7415 7413 7416 return iemVmxVmentryInjectTrpmEvent(pVCpu, uEntryIntInfo, pVmcs->u32EntryXcptErrCode, pVmcs->u32EntryInstrLen, 7417 pVCpu->cpum.GstCtx.cr2); 7414 int rc = iemVmxVmentryInjectTrpmEvent(pVCpu, uEntryIntInfo, pVmcs->u32EntryXcptErrCode, pVmcs->u32EntryInstrLen, 7415 pVCpu->cpum.GstCtx.cr2); 7416 if (RT_SUCCESS(rc)) 7417 { 7418 /* 7419 * We need to clear the VM-entry interruption information field's valid bit on VM-exit. 7420 * 7421 * However, we do it here on VM-entry because while it continues to not be visible to 7422 * guest software until VM-exit, when HM looks at the VMCS to continue nested-guest 7423 * execution using hardware-assisted VT-x, it can simply copy the VM-entry interruption 7424 * information field. 7425 * 7426 * See Intel spec. 24.8.3 "VM-Entry Controls for Event Injection". 7427 */ 7428 pVmcs->u32EntryIntInfo &= ~VMX_ENTRY_INT_INFO_VALID; 7429 } 7430 return rc; 7418 7431 } 7419 7432
Note:
See TracChangeset
for help on using the changeset viewer.