- Timestamp:
- Apr 5, 2007 12:31:11 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/new/VBoxRecompiler.c
r1944 r1950 1592 1592 } 1593 1593 #endif 1594 Log(("remR3NotifyTrap: uTrap=%x error=%x next_eip=%VGv eip=%VGv cr2=%08x\n", uTrap, uErrorCode, pvNextEIP, env->eip, env->cr[2]));1594 RTLogPrintf("remR3NotifyTrap: uTrap=%x error=%x next_eip=%VGv eip=%VGv cr2=%08x\n", uTrap, uErrorCode, pvNextEIP, env->eip, env->cr[2]); 1595 1595 if(uTrap < 0x20) 1596 1596 { … … 2720 2720 { 2721 2721 pv = (void *)(pVM->rem.s.aPhysReg[i].HCVirt + off); 2722 Log (("remR3GCPhys2HCVirt: %x -> %x\n", addr, pv));2722 Log2(("remR3GCPhys2HCVirt: %x -> %x\n", addr, pv)); 2723 2723 STAM_PROFILE_STOP(&gStatGCPhys2HCVirt, a); 2724 2724 return pv; … … 2727 2727 AssertMsg(addr < phys_ram_size, ("remR3GCPhys2HCVirt: unknown physical address %x\n", addr)); 2728 2728 pv = (void *)(pVM->rem.s.paGCPhysToHCVirt[addr >> PGM_DYNAMIC_CHUNK_SHIFT] + (addr & PGM_DYNAMIC_CHUNK_OFFSET_MASK)); 2729 Log (("remR3GCPhys2HCVirt: %x -> %x\n", addr, pv));2729 Log2(("remR3GCPhys2HCVirt: %x -> %x\n", addr, pv)); 2730 2730 #else 2731 2731 /** @todo figure out why this is faster than the above code. */ … … 4127 4127 Log(("%s", szOutput)); 4128 4128 } 4129 remR3StateUpdate(pVM); 4130 DBGFR3InfoLog(pVM, "cpumguest", pszPrefix); 4131 4129 4132 return true; 4130 4133
Note:
See TracChangeset
for help on using the changeset viewer.