Commit 481ecc2d authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

ntdll: Cleanup HEAP_ShrinkBlock and rename it to shrink_used_block.

parent c662992d
...@@ -808,26 +808,18 @@ static void HEAP_MakeInUseBlockFree( SUBHEAP *subheap, ARENA_INUSE *pArena ) ...@@ -808,26 +808,18 @@ static void HEAP_MakeInUseBlockFree( SUBHEAP *subheap, ARENA_INUSE *pArena )
} }
/*********************************************************************** static void shrink_used_block( SUBHEAP *subheap, struct block *block, SIZE_T data_size )
* HEAP_ShrinkBlock
*
* Shrink an in-use block.
*/
static void HEAP_ShrinkBlock(SUBHEAP *subheap, ARENA_INUSE *pArena, SIZE_T size)
{ {
SIZE_T old_data_size = pArena->size & ARENA_SIZE_MASK; SIZE_T old_data_size = block_get_size( block ) - sizeof(*block);
if (old_data_size >= size + HEAP_MIN_SHRINK_SIZE) if (old_data_size >= data_size + HEAP_MIN_SHRINK_SIZE)
{ {
/* assign size plus previous arena flags */ block->size = data_size | block_get_flags( block );
pArena->size = size | (pArena->size & ~ARENA_SIZE_MASK); HEAP_CreateFreeBlock( subheap, next_block( subheap, block ), old_data_size - data_size );
HEAP_CreateFreeBlock( subheap, (char *)(pArena + 1) + size, old_data_size - size );
} }
else else
{ {
/* Turn off PREV_FREE flag in next block */ struct block *next;
char *pNext = (char *)(pArena + 1) + old_data_size; if ((next = next_block( subheap, block ))) next->size &= ~ARENA_FLAG_PREV_FREE;
if (pNext < (char *)subheap->base + subheap->size)
*(DWORD *)pNext &= ~ARENA_FLAG_PREV_FREE;
} }
} }
...@@ -1118,7 +1110,7 @@ static ARENA_FREE *HEAP_FindFreeBlock( HEAP *heap, SIZE_T size, ...@@ -1118,7 +1110,7 @@ static ARENA_FREE *HEAP_FindFreeBlock( HEAP *heap, SIZE_T size,
* last free arena in ! * last free arena in !
* So just one heap struct, one first free arena which will eventually * So just one heap struct, one first free arena which will eventually
* get used, and a second free arena that might get assigned all remaining * get used, and a second free arena that might get assigned all remaining
* free space in HEAP_ShrinkBlock() */ * free space in shrink_used_block() */
total_size = size + ROUND_SIZE(sizeof(SUBHEAP)) + sizeof(ARENA_INUSE) + sizeof(ARENA_FREE); total_size = size + ROUND_SIZE(sizeof(SUBHEAP)) + sizeof(ARENA_INUSE) + sizeof(ARENA_FREE);
if (total_size < size) return NULL; /* overflow */ if (total_size < size) return NULL; /* overflow */
...@@ -1587,7 +1579,7 @@ static NTSTATUS heap_allocate( HEAP *heap, ULONG flags, SIZE_T size, void **ret ...@@ -1587,7 +1579,7 @@ static NTSTATUS heap_allocate( HEAP *heap, ULONG flags, SIZE_T size, void **ret
/* Shrink the block */ /* Shrink the block */
HEAP_ShrinkBlock( subheap, pInUse, rounded_size ); shrink_used_block( subheap, pInUse, rounded_size );
pInUse->unused_bytes = (pInUse->size & ARENA_SIZE_MASK) - size; pInUse->unused_bytes = (pInUse->size & ARENA_SIZE_MASK) - size;
notify_alloc( pInUse + 1, size, flags & HEAP_ZERO_MEMORY ); notify_alloc( pInUse + 1, size, flags & HEAP_ZERO_MEMORY );
...@@ -1695,7 +1687,7 @@ static NTSTATUS heap_reallocate( HEAP *heap, ULONG flags, void *ptr, SIZE_T size ...@@ -1695,7 +1687,7 @@ static NTSTATUS heap_reallocate( HEAP *heap, ULONG flags, void *ptr, SIZE_T size
pArena->size += block_get_size( next ); pArena->size += block_get_size( next );
if (!HEAP_Commit( subheap, pArena, rounded_size )) return STATUS_NO_MEMORY; if (!HEAP_Commit( subheap, pArena, rounded_size )) return STATUS_NO_MEMORY;
notify_realloc( pArena + 1, oldActualSize, size ); notify_realloc( pArena + 1, oldActualSize, size );
HEAP_ShrinkBlock( subheap, pArena, rounded_size ); shrink_used_block( subheap, pArena, rounded_size );
} }
else else
{ {
...@@ -1711,7 +1703,7 @@ static NTSTATUS heap_reallocate( HEAP *heap, ULONG flags, void *ptr, SIZE_T size ...@@ -1711,7 +1703,7 @@ static NTSTATUS heap_reallocate( HEAP *heap, ULONG flags, void *ptr, SIZE_T size
else else
{ {
notify_realloc( pArena + 1, oldActualSize, size ); notify_realloc( pArena + 1, oldActualSize, size );
HEAP_ShrinkBlock( subheap, pArena, rounded_size ); shrink_used_block( subheap, pArena, rounded_size );
} }
pArena->unused_bytes = (pArena->size & ARENA_SIZE_MASK) - size; pArena->unused_bytes = (pArena->size & ARENA_SIZE_MASK) - size;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment