VirtualBox

Changeset 17327 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Mar 4, 2009 8:46:40 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
43701
Message:

Take code locality into account when deal with io block emulation

Location:
trunk/src/VBox/VMM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/HWACCM.cpp

    r17303 r17327  
    12081208        Log(("HWACCMR3EmulateIoBlock -> enabled\n"));
    12091209        pVCpu->hwaccm.s.EmulateIoBlock.fEnabled         = true;
    1210         pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionEsp = pCtx->rsp;
     1210        pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionEip = pCtx->rip;
    12111211        pVCpu->hwaccm.s.EmulateIoBlock.cr0              = pCtx->cr0;
    12121212        return VINF_EM_RESCHEDULE_REM;
     
    12301230    /* If we're still executing the IO code, then return false. */
    12311231    if (    RT_UNLIKELY(pVCpu->hwaccm.s.EmulateIoBlock.fEnabled)
    1232         &&  pCtx->rsp <= pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionEsp
     1232        &&  pCtx->rip <  pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionEip + 0x200
     1233        &&  pCtx->rip >  pVCpu->hwaccm.s.EmulateIoBlock.GCPtrFunctionEip - 0x200
    12331234        &&  pCtx->cr0 == pVCpu->hwaccm.s.EmulateIoBlock.cr0)
    12341235        return false;
  • trunk/src/VBox/VMM/HWACCMInternal.h

    r17295 r17327  
    556556        uint8_t                 u8Align[7];
    557557
    558         /** Esp at the start of the io code we wish to emulate in the recompiler. */
    559         RTGCPTR                 GCPtrFunctionEsp;
     558        /** RIP at the start of the io code we wish to emulate in the recompiler. */
     559        RTGCPTR                 GCPtrFunctionEip;
    560560
    561561        uint64_t                cr0;
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