VirtualBox

Changeset 105714 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Aug 17, 2024 12:10:53 AM (5 months ago)
Author:
vboxsync
Message:

VMM/IEM: Used the new iemPollTimers in iemNativeHlpReturnBreakViaLookup and iemNativeHlpReturnBreakViaLookupWithTlb. bugref:10656

File:
1 edited

Legend:

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

    r105673 r105714  
    212212                    /* Do polling. */
    213213                    uint64_t const cTbExecNative = pVCpu->iem.s.cTbExecNative;
    214                     if (   RT_LIKELY(cTbExecNative & 511)
    215                         || !TMTimerPollBoolWith32BitMilliTS(pVCpu->CTX_SUFF(pVM), pVCpu, &pVCpu->iem.s.msRecompilerPollNow) )
     214                    if (   RT_LIKELY((int32_t)--pVCpu->iem.s.cTbsTillNextTimerPoll > 0)
     215                        || iemPollTimers(pVCpu->CTX_SUFF(pVM), pVCpu) == VINF_SUCCESS)
    216216                    {
    217217                        /*
    218218                         * Success. Update statistics and switch to the next TB.
    219219                         */
    220                         pVCpu->iem.s.cTbExecNative = cTbExecNative + 1;
    221220                        if (a_fWithIrqCheck)
    222221                            STAM_REL_COUNTER_INC(&pVCpu->iem.s.StatNativeTbExitDirectLinking1Irq);
     
    228227                        pVCpu->iem.s.pCurTbR3          = pNewTb;
    229228                        pVCpu->iem.s.ppTbLookupEntryR3 = IEMTB_GET_TB_LOOKUP_TAB_ENTRY(pNewTb, 0);
     229                        pVCpu->iem.s.cTbExecNative    += 1;
    230230                        Log10(("iemNativeHlpReturnBreakViaLookupWithPc: match at %04x:%08RX64 (%RGp): pTb=%p[%#x]-> %p\n",
    231231                               pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.rip, GCPhysPc, pTb, idxTbLookup, pNewTb));
     
    342342                {
    343343                    /* Do polling. */
    344                     uint64_t const cTbExecNative = pVCpu->iem.s.cTbExecNative;
    345                     if (   RT_LIKELY(cTbExecNative & 511)
    346                         || !TMTimerPollBoolWith32BitMilliTS(pVCpu->CTX_SUFF(pVM), pVCpu, &pVCpu->iem.s.msRecompilerPollNow) )
     344                    if (   RT_LIKELY((int32_t)--pVCpu->iem.s.cTbsTillNextTimerPoll > 0)
     345                        || iemPollTimers(pVCpu->CTX_SUFF(pVM), pVCpu) == VINF_SUCCESS)
    347346                    {
    348347                        /*
    349348                         * Success. Update statistics and switch to the next TB.
    350349                         */
    351                         pVCpu->iem.s.cTbExecNative = cTbExecNative + 1;
    352350                        if (a_fWithIrqCheck)
    353351                            STAM_REL_COUNTER_INC(&pVCpu->iem.s.StatNativeTbExitDirectLinking2Irq);
     
    359357                        pVCpu->iem.s.pCurTbR3          = pNewTb;
    360358                        pVCpu->iem.s.ppTbLookupEntryR3 = IEMTB_GET_TB_LOOKUP_TAB_ENTRY(pNewTb, 0);
     359                        pVCpu->iem.s.cTbExecNative    += 1;
    361360                        Log10(("iemNativeHlpReturnBreakViaLookupWithTlb: match at %04x:%08RX64 (%RGp): pTb=%p[%#x]-> %p\n",
    362361                               pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.rip, GCPhysPc, pTb, idxTbLookup, pNewTb));
Note: See TracChangeset for help on using the changeset viewer.

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