Changeset 13882 in vbox
- Timestamp:
- Nov 5, 2008 5:04:00 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 38881
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/VBoxRecompiler.c
r13870 r13882 3082 3082 PGMPhysRead(cpu_single_env->pVM, SrcGCPhys, pvDst, cb); 3083 3083 #ifdef VBOX_DEBUG_PHYS 3084 LogRel(("read(%d): % p\n", cb,SrcGCPhys));3084 LogRel(("read(%d): %08x\n", cb, (uint32_t)SrcGCPhys)); 3085 3085 #endif 3086 3086 STAM_PROFILE_ADV_STOP(&gStatMemRead, a); … … 3101 3101 STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 3102 3102 #ifdef VBOX_DEBUG_PHYS 3103 LogRel(("readu8: %x <- % p\n", val,SrcGCPhys));3103 LogRel(("readu8: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 3104 3104 #endif 3105 3105 return val; … … 3120 3120 STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 3121 3121 #ifdef VBOX_DEBUG_PHYS 3122 LogRel(("reads8: %x <- % p\n", val,SrcGCPhys));3122 LogRel(("reads8: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 3123 3123 #endif 3124 3124 return val; … … 3139 3139 STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 3140 3140 #ifdef VBOX_DEBUG_PHYS 3141 LogRel(("readu16: %x <- % p\n", val,SrcGCPhys));3141 LogRel(("readu16: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 3142 3142 #endif 3143 3143 return val; … … 3158 3158 STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 3159 3159 #ifdef VBOX_DEBUG_PHYS 3160 LogRel(("reads16: %x <- % p\n", val,SrcGCPhys));3160 LogRel(("reads16: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 3161 3161 #endif 3162 3162 return val; … … 3177 3177 STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 3178 3178 #ifdef VBOX_DEBUG_PHYS 3179 LogRel(("readu32: %x <- % p\n", val,SrcGCPhys));3179 LogRel(("readu32: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 3180 3180 #endif 3181 3181 return val; … … 3196 3196 STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 3197 3197 #ifdef VBOX_DEBUG_PHYS 3198 LogRel(("reads32: %x <- % p\n", val,SrcGCPhys));3198 LogRel(("reads32: %x <- %08x\n", val, (uint32_t)SrcGCPhys)); 3199 3199 #endif 3200 3200 return val; … … 3214 3214 val = PGMR3PhysReadU64(cpu_single_env->pVM, SrcGCPhys); 3215 3215 STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 3216 #ifdef VBOX_DEBUG_PHYS 3217 LogRel(("readu64: %llx <- %08x\n", val, (uint32_t)SrcGCPhys)); 3218 #endif 3216 3219 return val; 3217 3220 } … … 3229 3232 val = PGMR3PhysReadU64(cpu_single_env->pVM, SrcGCPhys); 3230 3233 STAM_PROFILE_ADV_STOP(&gStatMemRead, a); 3234 #ifdef VBOX_DEBUG_PHYS 3235 LogRel(("reads64: %llx <- %08x\n", val, (uint32_t)SrcGCPhys)); 3236 #endif 3231 3237 return val; 3232 3238 } … … 3247 3253 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 3248 3254 #ifdef VBOX_DEBUG_PHYS 3249 LogRel(("write(%d): % p\n", cb,DstGCPhys));3255 LogRel(("write(%d): %08x\n", cb, (uint32_t)DstGCPhys)); 3250 3256 #endif 3251 3257 } … … 3265 3271 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 3266 3272 #ifdef VBOX_DEBUG_PHYS 3267 LogRel(("writeu8: %x -> % p\n", val,DstGCPhys));3273 LogRel(("writeu8: %x -> %08x\n", val, (uint32_t)DstGCPhys)); 3268 3274 #endif 3269 3275 } … … 3283 3289 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 3284 3290 #ifdef VBOX_DEBUG_PHYS 3285 LogRel(("writeu16: %x -> % p\n", val,DstGCPhys));3291 LogRel(("writeu16: %x -> %08x\n", val, (uint32_t)DstGCPhys)); 3286 3292 #endif 3287 3293 } … … 3301 3307 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 3302 3308 #ifdef VBOX_DEBUG_PHYS 3303 LogRel(("writeu32: %x -> % p\n", val,DstGCPhys));3309 LogRel(("writeu32: %x -> %08x\n", val, (uint32_t)DstGCPhys)); 3304 3310 #endif 3305 3311 } … … 3318 3324 PGMR3PhysWriteU64(cpu_single_env->pVM, DstGCPhys, val); 3319 3325 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 3326 #ifdef VBOX_DEBUG_PHYS 3327 LogRel(("writeu64: %llx -> %08x\n", val, (uint32_t)SrcGCPhys)); 3328 #endif 3320 3329 } 3321 3330
Note:
See TracChangeset
for help on using the changeset viewer.