Changeset 93214 in vbox
- Timestamp:
- Jan 13, 2022 6:39:47 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149266
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r93211 r93214 2500 2500 Assert(pVmcs->u64RoIoRip.u == 0); 2501 2501 2502 /* We should not cause an NMI-window/interrupt-window VM-exit when injecting events as part of VM-entry. */2503 if (!CPUMIsGuestVmxInterceptEvents(&pVCpu->cpum.GstCtx))2504 {2505 Assert(uExitReason != VMX_EXIT_NMI_WINDOW);2506 Assert(uExitReason != VMX_EXIT_INT_WINDOW);2507 }2508 2509 /* For exception or NMI VM-exits the VM-exit interruption info. field must be valid. */2510 Assert(uExitReason != VMX_EXIT_XCPT_OR_NMI || VMX_EXIT_INT_INFO_IS_VALID(pVmcs->u32RoExitIntInfo));2511 2512 2502 /* 2513 2503 * Save the guest state back into the VMCS. … … 2517 2507 if (!fVmentryFailed) 2518 2508 { 2509 /* We should not cause an NMI-window/interrupt-window VM-exit when injecting events as part of VM-entry. */ 2510 if (!CPUMIsGuestVmxInterceptEvents(&pVCpu->cpum.GstCtx)) 2511 { 2512 Assert(uExitReason != VMX_EXIT_NMI_WINDOW); 2513 Assert(uExitReason != VMX_EXIT_INT_WINDOW); 2514 } 2515 2516 /* For exception or NMI VM-exits the VM-exit interruption info. field must be valid. */ 2517 Assert(uExitReason != VMX_EXIT_XCPT_OR_NMI || VMX_EXIT_INT_INFO_IS_VALID(pVmcs->u32RoExitIntInfo)); 2518 2519 2519 /* 2520 2520 * If we support storing EFER.LMA into IA32e-mode guest field on VM-exit, we need to do that now.
Note:
See TracChangeset
for help on using the changeset viewer.