VirtualBox

Changeset 12305 in vbox


Ignore:
Timestamp:
Sep 9, 2008 3:50:15 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
36314
Message:

Flush the recompiler's TB cache each time we detect writes to PATM/CSAM monitored pages.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/em.h

    r11508 r12305  
    324324EMDECL(int) EMInterpretPortIO(PVM pVM, PCPUMCTXCORE pCtxCore, PDISCPUSTATE pCpu, uint32_t cbOp);
    325325
     326/**
     327 * Flushes the REM translation blocks the next time we execute code there.
     328 *
     329 * @param   pVM         The VM handle.
     330 */
     331EMDECL(void) EMFlushREMTBs(PVM pVM);
     332
    326333EMDECL(uint32_t) EMEmulateCmp(uint32_t u32Param1, uint64_t u64Param2, size_t cb);
    327334EMDECL(uint32_t) EMEmulateAnd(void *pvParam1, uint64_t u64Param2, size_t cb);
  • trunk/src/VBox/VMM/EM.cpp

    r12299 r12305  
    723723     * Switch to REM, step instruction, switch back.
    724724     */
    725     int rc = REMR3State(pVM, true /* flush the TBs */);
     725    int rc = REMR3State(pVM, pVM->em.s.fREMFlushTBs);
    726726    if (VBOX_SUCCESS(rc))
    727727    {
    728728        rc = REMR3Step(pVM);
    729729        REMR3StateBack(pVM);
     730        pVM->em.s.fREMFlushTBs = false;
    730731    }
    731732    LogFlow(("emR3RemStep: returns %Vrc cs:eip=%04x:%08x\n", rc, CPUMGetGuestCS(pVM),  CPUMGetGuestEIP(pVM)));
     
    781782        {
    782783            STAM_PROFILE_START(&pVM->em.s.StatREMSync, b);
    783             rc = REMR3State(pVM, true /* flush TBs */);
     784            rc = REMR3State(pVM, pVM->em.s.fREMFlushTBs);
    784785            STAM_PROFILE_STOP(&pVM->em.s.StatREMSync, b);
    785786            if (VBOX_FAILURE(rc))
    786787                break;
    787788            fInREMState = true;
     789            pVM->em.s.fREMFlushTBs = false;
    788790
    789791            /*
  • trunk/src/VBox/VMM/EMInternal.h

    r11424 r12305  
    277277#endif
    278278
    279     uint8_t                 u8Padding[GC_ARCH_BITS == 64 ? 6 : 2];
     279    /* Set when the translation blocks in the recompiler cache need to be flushed. */
     280    bool                    fREMFlushTBs;
     281
     282    uint8_t                 u8Padding[GC_ARCH_BITS == 64 ? 5 : 1];
    280283
    281284    /** Inhibit interrupts for this instruction. Valid only when VM_FF_INHIBIT_INTERRUPTS is set. */
  • trunk/src/VBox/VMM/PATM/VMMGC/CSAMGC.cpp

    r9300 r12305  
    7171    Assert(pVM->csam.s.cDirtyPages < CSAM_MAX_DIRTY_PAGES);
    7272
     73    /* Flush the recompilers translation block cache as the guest seems to be modifying instructions. */
     74    EMFlushREMTBs(pVM);
     75
    7376    pPATMGCState = PATMQueryGCState(pVM);
    7477    Assert(pPATMGCState);
  • trunk/src/VBox/VMM/VMMAll/EMAll.cpp

    r12121 r12305  
    6969}
    7070
     71/**
     72 * Flushes the REM translation blocks the next time we execute code there.
     73 *
     74 * @param   pVM         The VM handle.
     75 */
     76EMDECL(void) EMFlushREMTBs(PVM pVM)
     77{
     78    pVM->em.s.fREMFlushTBs = true;
     79}
    7180
    7281#ifndef IN_GC
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