VirtualBox

Changeset 13882

Show
Ignore:
Timestamp:
11/05/08 18:04:00 (2 months ago)
Author:
vboxsync
Message:

cleanups

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/recompiler_new/VBoxRecompiler.c

    r13870 r13882  
    30823082    PGMPhysRead(cpu_single_env->pVM, SrcGCPhys, pvDst, cb); 
    30833083#ifdef VBOX_DEBUG_PHYS 
    3084     LogRel(("read(%d): %p\n", cb, SrcGCPhys)); 
     3084    LogRel(("read(%d): %08x\n", cb, (uint32_t)SrcGCPhys)); 
    30853085#endif 
    30863086    STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 
     
    31013101    STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 
    31023102#ifdef VBOX_DEBUG_PHYS 
    3103     LogRel(("readu8: %x <- %p\n", val, SrcGCPhys)); 
     3103    LogRel(("readu8: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 
    31043104#endif 
    31053105    return val; 
     
    31203120    STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 
    31213121#ifdef VBOX_DEBUG_PHYS 
    3122     LogRel(("reads8: %x <- %p\n", val, SrcGCPhys)); 
     3122    LogRel(("reads8: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 
    31233123#endif 
    31243124    return val; 
     
    31393139    STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 
    31403140#ifdef VBOX_DEBUG_PHYS 
    3141     LogRel(("readu16: %x <- %p\n", val, SrcGCPhys)); 
     3141    LogRel(("readu16: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 
    31423142#endif 
    31433143    return val; 
     
    31583158    STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 
    31593159#ifdef VBOX_DEBUG_PHYS 
    3160     LogRel(("reads16: %x <- %p\n", val, SrcGCPhys)); 
     3160    LogRel(("reads16: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 
    31613161#endif 
    31623162    return val; 
     
    31773177    STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 
    31783178#ifdef VBOX_DEBUG_PHYS 
    3179     LogRel(("readu32: %x <- %p\n", val, SrcGCPhys)); 
     3179    LogRel(("readu32: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 
    31803180#endif 
    31813181    return val; 
     
    31963196    STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 
    31973197#ifdef VBOX_DEBUG_PHYS 
    3198     LogRel(("reads32: %x <- %p\n", val, SrcGCPhys)); 
     3198    LogRel(("reads32: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 
    31993199#endif 
    32003200    return val; 
     
    32143214    val = PGMR3PhysReadU64(cpu_single_env->pVM, SrcGCPhys); 
    32153215    STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 
     3216#ifdef VBOX_DEBUG_PHYS 
     3217    LogRel(("readu64: %llx <- %08x\n", val, (uint32_t)SrcGCPhys)); 
     3218#endif 
    32163219    return val; 
    32173220} 
     
    32293232    val = PGMR3PhysReadU64(cpu_single_env->pVM, SrcGCPhys); 
    32303233    STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 
     3234#ifdef VBOX_DEBUG_PHYS 
     3235    LogRel(("reads64: %llx <- %08x\n", val, (uint32_t)SrcGCPhys)); 
     3236#endif 
    32313237    return val; 
    32323238} 
     
    32473253    STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 
    32483254#ifdef VBOX_DEBUG_PHYS 
    3249     LogRel(("write(%d): %p\n", cb, DstGCPhys)); 
     3255    LogRel(("write(%d): %08x\n", cb, (uint32_t)DstGCPhys)); 
    32503256#endif 
    32513257} 
     
    32653271    STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 
    32663272#ifdef VBOX_DEBUG_PHYS 
    3267     LogRel(("writeu8: %x -> %p\n", val, DstGCPhys)); 
     3273    LogRel(("writeu8: %x -> %08x\n", val, (uint32_t)DstGCPhys)); 
    32683274#endif 
    32693275} 
     
    32833289    STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 
    32843290#ifdef VBOX_DEBUG_PHYS 
    3285     LogRel(("writeu16: %x -> %p\n", val, DstGCPhys)); 
     3291    LogRel(("writeu16: %x -> %08x\n", val, (uint32_t)DstGCPhys)); 
    32863292#endif 
    32873293} 
     
    33013307    STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 
    33023308#ifdef VBOX_DEBUG_PHYS 
    3303     LogRel(("writeu32: %x -> %p\n", val, DstGCPhys)); 
     3309    LogRel(("writeu32: %x -> %08x\n", val, (uint32_t)DstGCPhys)); 
    33043310#endif 
    33053311} 
     
    33183324    PGMR3PhysWriteU64(cpu_single_env->pVM, DstGCPhys, val); 
    33193325    STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 
     3326#ifdef VBOX_DEBUG_PHYS 
     3327    LogRel(("writeu64: %llx -> %08x\n", val, (uint32_t)SrcGCPhys)); 
     3328#endif 
    33203329} 
    33213330 

© 2008 Sun Microsystems, Inc.
ContactPrivacy policy