mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-04 22:49:32 +03:00
revert a2a9230
(remove empty page removal on search): this is not generally valid when concurrent frees do not always add to thread_delayed_free.
This commit is contained in:
parent
59fa286294
commit
45582d1fb5
1 changed files with 24 additions and 1 deletions
25
src/page.c
25
src/page.c
|
@ -659,7 +659,9 @@ static void mi_page_init(mi_heap_t* heap, mi_page_t* page, size_t block_size, mi
|
||||||
static mi_page_t* mi_page_queue_find_free_ex(mi_heap_t* heap, mi_page_queue_t* pq)
|
static mi_page_t* mi_page_queue_find_free_ex(mi_heap_t* heap, mi_page_queue_t* pq)
|
||||||
{
|
{
|
||||||
// search through the pages in "next fit" order
|
// search through the pages in "next fit" order
|
||||||
|
mi_page_t* rpage = NULL;
|
||||||
size_t count = 0;
|
size_t count = 0;
|
||||||
|
size_t page_free_count = 0;
|
||||||
mi_page_t* page = pq->first;
|
mi_page_t* page = pq->first;
|
||||||
while( page != NULL)
|
while( page != NULL)
|
||||||
{
|
{
|
||||||
|
@ -671,7 +673,20 @@ static mi_page_t* mi_page_queue_find_free_ex(mi_heap_t* heap, mi_page_queue_t* p
|
||||||
|
|
||||||
// 1. if the page contains free blocks, we are done
|
// 1. if the page contains free blocks, we are done
|
||||||
if (mi_page_immediate_available(page)) {
|
if (mi_page_immediate_available(page)) {
|
||||||
break; // pick this one
|
// If all blocks are free, we might retire this page instead.
|
||||||
|
// do this at most 8 times to bound allocation time.
|
||||||
|
// (note: this can happen if a page was earlier not retired due
|
||||||
|
// to having neighbours that were mostly full or due to concurrent frees)
|
||||||
|
if (page_free_count < 8 && mi_page_all_free(page)) {
|
||||||
|
page_free_count++;
|
||||||
|
if (rpage != NULL) _mi_page_free(rpage,pq,false);
|
||||||
|
rpage = page;
|
||||||
|
page = next;
|
||||||
|
continue; // and keep looking
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
break; // pick this one
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 2. Try to extend
|
// 2. Try to extend
|
||||||
|
@ -691,6 +706,14 @@ static mi_page_t* mi_page_queue_find_free_ex(mi_heap_t* heap, mi_page_queue_t* p
|
||||||
|
|
||||||
mi_stat_counter_increase(heap->tld->stats.searches,count);
|
mi_stat_counter_increase(heap->tld->stats.searches,count);
|
||||||
|
|
||||||
|
if (page == NULL) {
|
||||||
|
page = rpage;
|
||||||
|
rpage = NULL;
|
||||||
|
}
|
||||||
|
if (rpage != NULL) {
|
||||||
|
_mi_page_free(rpage,pq,false);
|
||||||
|
}
|
||||||
|
|
||||||
if (page == NULL) {
|
if (page == NULL) {
|
||||||
page = mi_page_fresh(heap, pq);
|
page = mi_page_fresh(heap, pq);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue