Changeset 1617 in vbox for trunk/src/recompiler/new
- Timestamp:
- Mar 21, 2007 8:54:02 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/new/VBoxRecompiler.c
r1614 r1617 88 88 static void remR3StateUpdate(PVM pVM); 89 89 90 #if def PGM_DYNAMIC_RAM_ALLOC90 #if defined(PGM_DYNAMIC_RAM_ALLOC) && !defined(REM_PHYS_ADDR_IN_TLB) 91 91 DECLINLINE(target_ulong) remR3HCVirt2GCPhysInlined(PVM pVM, void *addr); 92 92 DECLINLINE(void *) remR3GCPhys2HCVirtInlined(PVM pVM, target_ulong addr); … … 2609 2609 { 2610 2610 #ifdef PGM_DYNAMIC_RAM_ALLOC 2611 # ifndef REM_PHYS_ADDR_IN_TLB 2611 2612 uint32_t idx; 2613 #endif 2612 2614 2613 2615 Log(("REMR3NotifyPhysRamChunkRegister: GCPhys=%VGp cb=%d pvRam=%p fFlags=%d\n", GCPhys, cb, pvRam, fFlags)); … … 2847 2849 REMR3DECL(void) REMR3NotifyPhysRomRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, void *pvCopy) 2848 2850 { 2849 #if def PGM_DYNAMIC_RAM_ALLOC2851 #if defined(PGM_DYNAMIC_RAM_ALLOC) && !defined(REM_PHYS_ADDR_IN_TLB) 2850 2852 uint32_t i; 2851 2853 #endif
Note:
See TracChangeset
for help on using the changeset viewer.