Changeset 12305 in vbox
- Timestamp:
- Sep 9, 2008 3:50:15 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36314
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/em.h
r11508 r12305 324 324 EMDECL(int) EMInterpretPortIO(PVM pVM, PCPUMCTXCORE pCtxCore, PDISCPUSTATE pCpu, uint32_t cbOp); 325 325 326 /** 327 * Flushes the REM translation blocks the next time we execute code there. 328 * 329 * @param pVM The VM handle. 330 */ 331 EMDECL(void) EMFlushREMTBs(PVM pVM); 332 326 333 EMDECL(uint32_t) EMEmulateCmp(uint32_t u32Param1, uint64_t u64Param2, size_t cb); 327 334 EMDECL(uint32_t) EMEmulateAnd(void *pvParam1, uint64_t u64Param2, size_t cb); -
trunk/src/VBox/VMM/EM.cpp
r12299 r12305 723 723 * Switch to REM, step instruction, switch back. 724 724 */ 725 int rc = REMR3State(pVM, true /* flush the TBs */);725 int rc = REMR3State(pVM, pVM->em.s.fREMFlushTBs); 726 726 if (VBOX_SUCCESS(rc)) 727 727 { 728 728 rc = REMR3Step(pVM); 729 729 REMR3StateBack(pVM); 730 pVM->em.s.fREMFlushTBs = false; 730 731 } 731 732 LogFlow(("emR3RemStep: returns %Vrc cs:eip=%04x:%08x\n", rc, CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM))); … … 781 782 { 782 783 STAM_PROFILE_START(&pVM->em.s.StatREMSync, b); 783 rc = REMR3State(pVM, true /* flush TBs */);784 rc = REMR3State(pVM, pVM->em.s.fREMFlushTBs); 784 785 STAM_PROFILE_STOP(&pVM->em.s.StatREMSync, b); 785 786 if (VBOX_FAILURE(rc)) 786 787 break; 787 788 fInREMState = true; 789 pVM->em.s.fREMFlushTBs = false; 788 790 789 791 /* -
trunk/src/VBox/VMM/EMInternal.h
r11424 r12305 277 277 #endif 278 278 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]; 280 283 281 284 /** Inhibit interrupts for this instruction. Valid only when VM_FF_INHIBIT_INTERRUPTS is set. */ -
trunk/src/VBox/VMM/PATM/VMMGC/CSAMGC.cpp
r9300 r12305 71 71 Assert(pVM->csam.s.cDirtyPages < CSAM_MAX_DIRTY_PAGES); 72 72 73 /* Flush the recompilers translation block cache as the guest seems to be modifying instructions. */ 74 EMFlushREMTBs(pVM); 75 73 76 pPATMGCState = PATMQueryGCState(pVM); 74 77 Assert(pPATMGCState); -
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r12121 r12305 69 69 } 70 70 71 /** 72 * Flushes the REM translation blocks the next time we execute code there. 73 * 74 * @param pVM The VM handle. 75 */ 76 EMDECL(void) EMFlushREMTBs(PVM pVM) 77 { 78 pVM->em.s.fREMFlushTBs = true; 79 } 71 80 72 81 #ifndef IN_GC
Note:
See TracChangeset
for help on using the changeset viewer.