Changeset 1591 in vbox for trunk/src/recompiler/new
- Timestamp:
- Mar 21, 2007 3:07:01 AM (18 years ago)
- Location:
- trunk/src/recompiler/new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/new/VBoxRecompiler.c
r1590 r1591 3074 3074 /** Validate the physical address passed to the read functions. 3075 3075 * Useful for finding non-guest-ram reads/writes. */ 3076 #if 1 3076 #if 1 /* disable if it becomes bothersome... */ 3077 3077 # define VBOX_CHECK_ADDR(GCPhys) AssertMsg(PGMPhysIsGCPhysValid(cpu_single_env->pVM, (GCPhys)), ("%VGp\n", (GCPhys))) 3078 3078 #else -
trunk/src/recompiler/new/cpu-all.h
r1590 r1591 220 220 void remR3GrowDynRange(unsigned long physaddr); 221 221 #endif 222 #if defined(__AMD64__)222 #if 0 /*defined(__AMD64__) && defined(VBOX_STRICT)*/ 223 223 # define VBOX_CHECK_ADDR(ptr) do { if ((uintptr_t)(ptr) >= _4G) __asm__("int3"); } while (0) 224 224 #else
Note:
See TracChangeset
for help on using the changeset viewer.