Changeset 106309 in vbox
- Timestamp:
- Oct 14, 2024 2:58:19 PM (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllN8veExecMem.cpp
r106307 r106309 852 852 } 853 853 854 pExecMemAllocator->cFruitlessChunkScans += 1;855 854 return NULL; 856 855 } … … 889 888 void *pvRet = iemExecMemAllocatorAllocInChunkInt(pExecMemAllocator, pbmAlloc, 0, 890 889 RT_MIN(pExecMemAllocator->cUnitsPerChunk, 891 RT_ALIGN_32(idxHint + cReqUnits, 64)),890 RT_ALIGN_32(idxHint + cReqUnits, 64*4)), 892 891 cReqUnits, idxChunk, pTb, (void **)ppaExec, ppChunkCtx); 892 if (!pvRet) 893 pExecMemAllocator->cFruitlessChunkScans += 1; 893 894 #ifdef VBOX_WITH_STATISTICS 894 if (pvRet)895 else 895 896 pExecMemAllocator->cbUnusable += (cReqUnits << IEMEXECMEM_ALT_SUB_ALLOC_UNIT_SHIFT) - cbReq; 896 897 #endif
Note:
See TracChangeset
for help on using the changeset viewer.