VirtualBox

Changeset 4615 in vbox for trunk/src/recompiler


Ignore:
Timestamp:
Sep 7, 2007 7:25:16 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
24260
Message:

REM(R3)NotifyHandlerPhysicalModify no longer needs a pvHC pointer, made it a flag instead.

Location:
trunk/src/recompiler
Files:
2 edited

Legend:

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

    r4407 r4615  
    339339static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysReserve)(PVM, RTGCPHYS, RTUINT);
    340340static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysRomRegister)(PVM, RTGCPHYS, RTUINT, void *, bool);
    341 static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalModify)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, RTGCPHYS, bool, void *);
     341static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalModify)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, RTGCPHYS, bool, bool);
    342342static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalRegister)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, bool);
    343343static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalDeregister)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, bool, void *);
     
    421421    { REMPARMDESC_FLAGS_GCPHYS,     sizeof(RTGCPHYS), NULL },
    422422    { REMPARMDESC_FLAGS_INT,        sizeof(bool), NULL },
    423     { REMPARMDESC_FLAGS_INT,        sizeof(void *), NULL }
     423    { REMPARMDESC_FLAGS_INT,        sizeof(bool), NULL }
    424424};
    425425static const REMPARMDESC g_aArgsNotifyHandlerPhysicalRegister[] =
     
    20162016}
    20172017
    2018 REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, void *pvHCPtr)
     2018REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM)
    20192019{
    20202020#ifndef USE_REM_STUBS
    20212021    Assert(VALID_PTR(pfnREMR3NotifyHandlerPhysicalModify));
    2022     pfnREMR3NotifyHandlerPhysicalModify(pVM, enmType, GCPhysOld, GCPhysNew, cb, fHasHCHandler, pvHCPtr);
     2022    pfnREMR3NotifyHandlerPhysicalModify(pVM, enmType, GCPhysOld, GCPhysNew, cb, fHasHCHandler, fRestoreAsRAM);
    20232023#endif
    20242024}
  • trunk/src/recompiler/VBoxRecompiler.c

    r4535 r4615  
    23782378                                                 pRec->u.PhysicalModify.cb,
    23792379                                                 pRec->u.PhysicalModify.fHasHCHandler,
    2380                                                  pRec->u.PhysicalModify.pvHCPtr);
     2380                                                 pRec->u.PhysicalModify.fRestoreAsRAM);
    23812381                break;
    23822382
     
    27052705 * @param   cb              Size of the handler range.
    27062706 * @param   fHasHCHandler   Set if the handler has a HC callback function.
    2707  * @param   pvHCPtr         The HC virtual address corresponding to GCPhys if available.
    2708  */
    2709 REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, void *pvHCPtr)
    2710 {
    2711     Log(("REMR3NotifyHandlerPhysicalModify: enmType=%d GCPhysOld=%VGp GCPhysNew=%VGp cb=%d fHasHCHandler=%d pvHCPtr=%p\n",
    2712           enmType, GCPhysOld, GCPhysNew, cb, fHasHCHandler, pvHCPtr));
     2707 * @param   fRestoreAsRAM   Whether the to restore it as normal RAM or as unassigned memory.
     2708 */
     2709REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM)
     2710{
     2711    Log(("REMR3NotifyHandlerPhysicalModify: enmType=%d GCPhysOld=%VGp GCPhysNew=%VGp cb=%d fHasHCHandler=%RTbool fRestoreAsRAM=%RTbool\n",
     2712          enmType, GCPhysOld, GCPhysNew, cb, fHasHCHandler, fRestoreAsRAM));
    27132713    VM_ASSERT_EMT(pVM);
    27142714    AssertReleaseMsg(enmType != PGMPHYSHANDLERTYPE_MMIO, ("enmType=%d\n", enmType));
     
    27252725         * Reset the old page.
    27262726         */
    2727         if (!pvHCPtr)
     2727        if (!fRestoreAsRAM)
    27282728            cpu_register_physical_memory(GCPhysOld, cb, IO_MEM_UNASSIGNED);
    27292729        else
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