- Timestamp:
- Apr 1, 2009 2:39:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/exec.c
r18598 r18599 467 467 #endif 468 468 #else /* VBOX */ 469 /* level 0 lookup and lazy allocation . */469 /* level 0 lookup and lazy allocation of level 1 map. */ 470 470 if (RT_UNLIKELY(index >= (target_ulong)L2_SIZE * L1_SIZE * L0_SIZE)) 471 471 return NULL; … … 479 479 } 480 480 481 /* level 1 lookup and lazy allocation . */481 /* level 1 lookup and lazy allocation of level 2 map. */ 482 482 #endif /* VBOX */ 483 483 lp = p + ((index >> L2_BITS) & (L1_SIZE - 1));
Note:
See TracChangeset
for help on using the changeset viewer.