Changeset 4615 in vbox for trunk/src/recompiler
- Timestamp:
- Sep 7, 2007 7:25:16 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24260
- Location:
- trunk/src/recompiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxREMWrapper.cpp
r4407 r4615 339 339 static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysReserve)(PVM, RTGCPHYS, RTUINT); 340 340 static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysRomRegister)(PVM, RTGCPHYS, RTUINT, void *, bool); 341 static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalModify)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, RTGCPHYS, bool, void *);341 static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalModify)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, RTGCPHYS, bool, bool); 342 342 static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalRegister)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, bool); 343 343 static DECLCALLBACKPTR(void, pfnREMR3NotifyHandlerPhysicalDeregister)(PVM, PGMPHYSHANDLERTYPE, RTGCPHYS, RTGCPHYS, bool, void *); … … 421 421 { REMPARMDESC_FLAGS_GCPHYS, sizeof(RTGCPHYS), NULL }, 422 422 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL }, 423 { REMPARMDESC_FLAGS_INT, sizeof( void *), NULL }423 { REMPARMDESC_FLAGS_INT, sizeof(bool), NULL } 424 424 }; 425 425 static const REMPARMDESC g_aArgsNotifyHandlerPhysicalRegister[] = … … 2016 2016 } 2017 2017 2018 REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, void *pvHCPtr)2018 REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM) 2019 2019 { 2020 2020 #ifndef USE_REM_STUBS 2021 2021 Assert(VALID_PTR(pfnREMR3NotifyHandlerPhysicalModify)); 2022 pfnREMR3NotifyHandlerPhysicalModify(pVM, enmType, GCPhysOld, GCPhysNew, cb, fHasHCHandler, pvHCPtr);2022 pfnREMR3NotifyHandlerPhysicalModify(pVM, enmType, GCPhysOld, GCPhysNew, cb, fHasHCHandler, fRestoreAsRAM); 2023 2023 #endif 2024 2024 } -
trunk/src/recompiler/VBoxRecompiler.c
r4535 r4615 2378 2378 pRec->u.PhysicalModify.cb, 2379 2379 pRec->u.PhysicalModify.fHasHCHandler, 2380 pRec->u.PhysicalModify. pvHCPtr);2380 pRec->u.PhysicalModify.fRestoreAsRAM); 2381 2381 break; 2382 2382 … … 2705 2705 * @param cb Size of the handler range. 2706 2706 * @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 */ 2709 REMR3DECL(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)); 2713 2713 VM_ASSERT_EMT(pVM); 2714 2714 AssertReleaseMsg(enmType != PGMPHYSHANDLERTYPE_MMIO, ("enmType=%d\n", enmType)); … … 2725 2725 * Reset the old page. 2726 2726 */ 2727 if (! pvHCPtr)2727 if (!fRestoreAsRAM) 2728 2728 cpu_register_physical_memory(GCPhysOld, cb, IO_MEM_UNASSIGNED); 2729 2729 else
Note:
See TracChangeset
for help on using the changeset viewer.