Changeset 13565 in vbox for trunk/src/recompiler
- Timestamp:
- Oct 24, 2008 5:48:59 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38439
- Location:
- trunk/src/recompiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxREMWrapper.cpp
r13532 r13565 337 337 static DECLCALLBACKPTR(int, pfnREMR3EmulateInstruction)(PVM); 338 338 static DECLCALLBACKPTR(int, pfnREMR3Run)(PVM); 339 static DECLCALLBACKPTR(int, pfnREMR3State)(PVM , bool fFlushTBs);339 static DECLCALLBACKPTR(int, pfnREMR3State)(PVM); 340 340 static DECLCALLBACKPTR(int, pfnREMR3StateBack)(PVM); 341 341 static DECLCALLBACKPTR(void, pfnREMR3StateUpdate)(PVM); … … 988 988 { REMPARMDESC_FLAGS_INT, sizeof(size_t), NULL } 989 989 }; 990 static const REMPARMDESC g_aArgsState[] =991 {992 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL },993 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL }994 };995 990 996 991 /** @} */ … … 1009 1004 { "REMR3EmulateInstruction", (void *)&pfnREMR3EmulateInstruction, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1010 1005 { "REMR3Run", (void *)&pfnREMR3Run, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1011 { "REMR3State", (void *)&pfnREMR3State, &g_aArgs State[0], RT_ELEMENTS(g_aArgsState),REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },1006 { "REMR3State", (void *)&pfnREMR3State, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1012 1007 { "REMR3StateBack", (void *)&pfnREMR3StateBack, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1013 1008 { "REMR3StateUpdate", (void *)&pfnREMR3StateUpdate, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, … … 1991 1986 } 1992 1987 1993 REMR3DECL(int) REMR3State(PVM pVM , bool fFlushTBs)1988 REMR3DECL(int) REMR3State(PVM pVM) 1994 1989 { 1995 1990 #ifdef USE_REM_STUBS … … 1997 1992 #else 1998 1993 Assert(VALID_PTR(pfnREMR3State)); 1999 return pfnREMR3State(pVM , fFlushTBs);1994 return pfnREMR3State(pVM); 2000 1995 #endif 2001 1996 } -
trunk/src/recompiler/VBoxRecompiler.c
r13532 r13565 741 741 * Sync the state and enable single instruction / single stepping. 742 742 */ 743 int rc = REMR3State(pVM , false /* no need to flush the TBs; we always compile. */);743 int rc = REMR3State(pVM); 744 744 if (VBOX_SUCCESS(rc)) 745 745 { … … 1632 1632 * 1633 1633 * @param pVM VM Handle. 1634 * @param fFlushTBs Flush all translation blocks before executing code1635 1634 * 1636 1635 * @remark The caller has to check for important FFs before calling REMR3Run. REMR3State will … … 1638 1637 * pending that would immediatly interrupt execution. 1639 1638 */ 1640 REMR3DECL(int) REMR3State(PVM pVM , bool fFlushTBs)1639 REMR3DECL(int) REMR3State(PVM pVM) 1641 1640 { 1642 1641 Log2(("REMR3State:\n")); … … 1650 1649 pVM->rem.s.fInStateSync = true; 1651 1650 1652 if (fFlushTBs) 1651 /* 1652 * If we have to flush TBs, do that immediately. 1653 */ 1654 if (pVM->rem.s.fFlushTBs) 1653 1655 { 1654 1656 STAM_COUNTER_INC(&gStatFlushTBs); 1655 1657 tb_flush(&pVM->rem.s.Env); 1658 pVM->rem.s.fFlushTBs = false; 1656 1659 } 1657 1660
Note:
See TracChangeset
for help on using the changeset viewer.