Changeset 15431 in vbox
- Timestamp:
- Dec 13, 2008 10:47:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r15430 r15431 1325 1325 int32_t iCpu; 1326 1326 /** The entries. */ 1327 PGMMAPSETENTRY aEntries[ 64];1327 PGMMAPSETENTRY aEntries[32]; 1328 1328 /** HCPhys -> iEntry fast lookup table. 1329 1329 * Use PGMMAPSET_HASH for hashing. 1330 1330 * The entries may or may not be valid, check against cEntries. */ 1331 uint8_t aiHashTable[ 128];1331 uint8_t aiHashTable[64]; 1332 1332 } PGMMAPSET; 1333 1333 /** Pointer to the mapping cache set. */ … … 1338 1338 1339 1339 /** Hash function for aiHashTable. */ 1340 #define PGMMAPSET_HASH(HCPhys) (((HCPhys) >> PAGE_SHIFT) & 127)1340 #define PGMMAPSET_HASH(HCPhys) (((HCPhys) >> PAGE_SHIFT) & 63) 1341 1341 1342 1342
Note:
See TracChangeset
for help on using the changeset viewer.