Changeset 105179 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jul 8, 2024 10:38:14 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r105177 r105179 1490 1490 * See iemTbAllocatorFreeupNativeSpace for details. */ 1491 1491 uint32_t iPruneNativeFrom; 1492 uint32_t uPadding; 1492 /** Index into IEMTBALLOCATOR::aFreeCache were the next freed TB can be stored 1493 * (0 means the cache is empty, 32 the cache is full). */ 1494 uint32_t idxTbCacheFree; 1493 1495 1494 1496 /** Statistics: Number of TB allocation calls. */ … … 1503 1505 /** The delayed free list (see iemTbAlloctorScheduleForFree). */ 1504 1506 PIEMTB pDelayedFreeHead; 1507 /* Cache of recently freed TBs for immediate consumption by the allocator. */ 1508 PIEMTB apTbFreeCache[32]; 1505 1509 1506 1510 /** Allocation chunks. */
Note:
See TracChangeset
for help on using the changeset viewer.