VirtualBox

Changeset 13565 in vbox for trunk/src/recompiler


Ignore:
Timestamp:
Oct 24, 2008 5:48:59 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38439
Message:

#1865: REM (VMM bits) - moved EMFlushREMTBs to REMFlushTBs, deleted dead REMGC.cpp.

Location:
trunk/src/recompiler
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/VBoxREMWrapper.cpp

    r13532 r13565  
    337337static DECLCALLBACKPTR(int, pfnREMR3EmulateInstruction)(PVM);
    338338static DECLCALLBACKPTR(int, pfnREMR3Run)(PVM);
    339 static DECLCALLBACKPTR(int, pfnREMR3State)(PVM, bool fFlushTBs);
     339static DECLCALLBACKPTR(int, pfnREMR3State)(PVM);
    340340static DECLCALLBACKPTR(int, pfnREMR3StateBack)(PVM);
    341341static DECLCALLBACKPTR(void, pfnREMR3StateUpdate)(PVM);
     
    988988    { REMPARMDESC_FLAGS_INT,        sizeof(size_t), NULL }
    989989};
    990 static const REMPARMDESC g_aArgsState[] =
    991 {
    992     { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
    993     { REMPARMDESC_FLAGS_INT,        sizeof(bool), NULL }
    994 };
    995990
    996991/** @} */
     
    10091004    { "REMR3EmulateInstruction",                (void *)&pfnREMR3EmulateInstruction,                &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_INT,    sizeof(int),    NULL },
    10101005    { "REMR3Run",                               (void *)&pfnREMR3Run,                               &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_INT,    sizeof(int),    NULL },
    1011     { "REMR3State",                             (void *)&pfnREMR3State,                             &g_aArgsState[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 },
    10121007    { "REMR3StateBack",                         (void *)&pfnREMR3StateBack,                         &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_INT,    sizeof(int),    NULL },
    10131008    { "REMR3StateUpdate",                       (void *)&pfnREMR3StateUpdate,                       &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
     
    19911986}
    19921987
    1993 REMR3DECL(int) REMR3State(PVM pVM, bool fFlushTBs)
     1988REMR3DECL(int) REMR3State(PVM pVM)
    19941989{
    19951990#ifdef USE_REM_STUBS
     
    19971992#else
    19981993    Assert(VALID_PTR(pfnREMR3State));
    1999     return pfnREMR3State(pVM, fFlushTBs);
     1994    return pfnREMR3State(pVM);
    20001995#endif
    20011996}
  • trunk/src/recompiler/VBoxRecompiler.c

    r13532 r13565  
    741741     * Sync the state and enable single instruction / single stepping.
    742742     */
    743     int rc = REMR3State(pVM, false /* no need to flush the TBs; we always compile. */);
     743    int rc = REMR3State(pVM);
    744744    if (VBOX_SUCCESS(rc))
    745745    {
     
    16321632 *
    16331633 * @param   pVM         VM Handle.
    1634  * @param   fFlushTBs   Flush all translation blocks before executing code
    16351634 *
    16361635 * @remark  The caller has to check for important FFs before calling REMR3Run. REMR3State will
     
    16381637 *          pending that would immediatly interrupt execution.
    16391638 */
    1640 REMR3DECL(int)  REMR3State(PVM pVM, bool fFlushTBs)
     1639REMR3DECL(int)  REMR3State(PVM pVM)
    16411640{
    16421641    Log2(("REMR3State:\n"));
     
    16501649    pVM->rem.s.fInStateSync = true;
    16511650
    1652     if (fFlushTBs)
     1651    /*
     1652     * If we have to flush TBs, do that immediately.
     1653     */
     1654    if (pVM->rem.s.fFlushTBs)
    16531655    {
    16541656        STAM_COUNTER_INC(&gStatFlushTBs);
    16551657        tb_flush(&pVM->rem.s.Env);
     1658        pVM->rem.s.fFlushTBs = false;
    16561659    }
    16571660
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