VirtualBox

Changeset 18992 in vbox for trunk/src/recompiler_new


Ignore:
Timestamp:
Apr 17, 2009 1:51:56 PM (16 years ago)
Author:
vboxsync
Message:

More PGM api changes

Location:
trunk/src/recompiler_new
Files:
2 edited

Legend:

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

    r18988 r18992  
    727727static const REMPARMDESC g_aArgsPGMInvalidatePage[] =
    728728{
    729     { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
    730729    { REMPARMDESC_FLAGS_INT,        sizeof(PVMCPU), NULL },
    731730    { REMPARMDESC_FLAGS_GCPTR,      sizeof(RTGCPTR), NULL }
     
    771770static const REMPARMDESC g_aArgsPGMChangeMode[] =
    772771{
    773     { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
    774772    { REMPARMDESC_FLAGS_INT,        sizeof(PVMCPU), NULL },
    775773    { REMPARMDESC_FLAGS_INT,        sizeof(uint64_t), NULL },
     
    779777static const REMPARMDESC g_aArgsPGMFlushTLB[] =
    780778{
    781     { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
    782779    { REMPARMDESC_FLAGS_INT,        sizeof(PVMCPU), NULL },
    783780    { REMPARMDESC_FLAGS_INT,        sizeof(uint64_t), NULL },
  • trunk/src/recompiler_new/VBoxRecompiler.c

    r18927 r18992  
    14551455     */
    14561456    Assert(env->pVCpu);
    1457     rc = PGMInvalidatePage(pVM, env->pVCpu, GCPtr);
     1457    rc = PGMInvalidatePage(env->pVCpu, GCPtr);
    14581458    if (RT_FAILURE(rc))
    14591459    {
     
    15711571     */
    15721572    Assert(env->pVCpu);
    1573     PGMFlushTLB(pVM, env->pVCpu, env->cr[3], fGlobal);
     1573    PGMFlushTLB(env->pVCpu, env->cr[3], fGlobal);
    15741574}
    15751575
     
    16131613#endif
    16141614    Assert(env->pVCpu);
    1615     rc = PGMChangeMode(pVM, env->pVCpu, env->cr[0], env->cr[4], efer);
     1615    rc = PGMChangeMode(env->pVCpu, env->cr[0], env->cr[4], efer);
    16161616    if (rc != VINF_SUCCESS)
    16171617    {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette