VirtualBox

Changeset 93214 in vbox


Ignore:
Timestamp:
Jan 13, 2022 6:39:47 AM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
149266
Message:

VMM/IEM: Nested VMX: bugref:10092 Push the NMI/INT window assertions into the successful VM-exit block.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h

    r93211 r93214  
    25002500    Assert(pVmcs->u64RoIoRip.u == 0);
    25012501
    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 
    25122502    /*
    25132503     * Save the guest state back into the VMCS.
     
    25172507    if (!fVmentryFailed)
    25182508    {
     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
    25192519        /*
    25202520         * 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.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette