From f9e69902fbe143f72251721a305bd1f2466154e8 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Fri, 22 Apr 2016 20:11:00 -0700 Subject: make chunk size flexible in arenas --- src/mixed_arena.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/mixed_arena.h') diff --git a/src/mixed_arena.h b/src/mixed_arena.h index 3258a2d31..d8b487e4d 100644 --- a/src/mixed_arena.h +++ b/src/mixed_arena.h @@ -58,7 +58,8 @@ struct MixedArena { // fast bump allocation std::vector chunks; - int index; // in last chunk + size_t chunkSize = 32768; + size_t index; // in last chunk // multithreaded allocation - each arena is valid on a specific thread. // if we are on the wrong thread, we safely look in the linked @@ -88,11 +89,14 @@ struct MixedArena { } return curr->allocSpace(size); } - const size_t CHUNK = 10000; size = (size + 7) & (-8); // same alignment as malloc TODO optimize? - assert(size < CHUNK); - if (chunks.size() == 0 || index + size >= CHUNK) { - chunks.push_back(new char[CHUNK]); + bool mustAllocate = false; + while (chunkSize <= size) { + chunkSize *= 2; + mustAllocate = true; + } + if (chunks.size() == 0 || index + size >= chunkSize || mustAllocate) { + chunks.push_back(new char[chunkSize]); index = 0; } auto* ret = chunks.back() + index; -- cgit v1.2.3