Changeset 1146 in vbox
- Timestamp:
- Mar 2, 2007 9:38:56 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r1140 r1146 2586 2586 if (off < pVM->rem.s.aPhysReg[i].cb) 2587 2587 { 2588 Log (("remR3GCPhys2HCVirt: %x -> %x\n", addr, pVM->rem.s.aPhysReg[i].HCVirt + off));2588 Log2(("remR3GCPhys2HCVirt: %x -> %x\n", addr, pVM->rem.s.aPhysReg[i].HCVirt + off)); 2589 2589 return (void *)(pVM->rem.s.aPhysReg[i].HCVirt + off); 2590 2590 } 2591 2591 } 2592 2592 AssertMsg(addr < phys_ram_size, ("remR3GCPhys2HCVirt: unknown physical address %x\n", addr)); 2593 Log (("remR3GCPhys2HCVirt: %x -> %x\n", addr, pVM->rem.s.paGCPhysToHCVirt[addr >> PGM_DYNAMIC_CHUNK_SHIFT] + (addr & PGM_DYNAMIC_CHUNK_OFFSET_MASK)));2593 Log2(("remR3GCPhys2HCVirt: %x -> %x\n", addr, pVM->rem.s.paGCPhysToHCVirt[addr >> PGM_DYNAMIC_CHUNK_SHIFT] + (addr & PGM_DYNAMIC_CHUNK_OFFSET_MASK))); 2594 2594 return (void *)(pVM->rem.s.paGCPhysToHCVirt[addr >> PGM_DYNAMIC_CHUNK_SHIFT] + (addr & PGM_DYNAMIC_CHUNK_OFFSET_MASK)); 2595 2595 #else … … 2619 2619 && off < PGM_DYNAMIC_CHUNK_SIZE) 2620 2620 { 2621 Log (("remR3HCVirt2GCPhys %x -> %x\n", addr, pVM->rem.s.paHCVirtToGCPhys[idx].GCPhys1 + off));2621 Log2(("remR3HCVirt2GCPhys %x -> %x\n", addr, pVM->rem.s.paHCVirtToGCPhys[idx].GCPhys1 + off)); 2622 2622 return pVM->rem.s.paHCVirtToGCPhys[idx].GCPhys1 + off; 2623 2623 } … … 2627 2627 && off < PGM_DYNAMIC_CHUNK_SIZE) 2628 2628 { 2629 Log (("remR3HCVirt2GCPhys %x -> %x\n", addr, pVM->rem.s.paHCVirtToGCPhys[idx].GCPhys2 + off));2629 Log2(("remR3HCVirt2GCPhys %x -> %x\n", addr, pVM->rem.s.paHCVirtToGCPhys[idx].GCPhys2 + off)); 2630 2630 return pVM->rem.s.paHCVirtToGCPhys[idx].GCPhys2 + off; 2631 2631 } … … 2637 2637 if (off < pVM->rem.s.aPhysReg[i].cb) 2638 2638 { 2639 Log (("remR3HCVirt2GCPhys %x -> %x\n", addr, pVM->rem.s.aPhysReg[i].GCPhys + off));2639 Log2(("remR3HCVirt2GCPhys %x -> %x\n", addr, pVM->rem.s.aPhysReg[i].GCPhys + off)); 2640 2640 return pVM->rem.s.aPhysReg[i].GCPhys + off; 2641 2641 }
Note:
See TracChangeset
for help on using the changeset viewer.