#include #include namespace DB { /// Allocator which proxies all allocations to Arena. Used in aggregate functions. class ArenaAllocator { public: static void * alloc(size_t size, Arena * arena) { return arena->alloc(size); } static void * realloc(void * buf, size_t old_size, size_t new_size, Arena * arena) { char const * data = reinterpret_cast(buf); // Invariant should be maintained: new_size > old_size if (data + old_size == arena->head->pos) { // Consecutive optimization arena->allocContinue(new_size - old_size, data); return reinterpret_cast(const_cast(data)); } else { return arena->realloc(data, old_size, new_size); } } static void free(void * /*buf*/, size_t /*size*/) { // Do nothing, trash in arena remains. } }; /// Allocates in Arena with proper alignment. template class AlignedArenaAllocator { public: static void * alloc(size_t size, Arena * arena) { return arena->alignedAlloc(size, alignment); } static void * realloc(void * buf, size_t old_size, size_t new_size, Arena * arena) { char const * data = reinterpret_cast(buf); if (data + old_size == arena->head->pos) { arena->allocContinue(new_size - old_size, data, alignment); return reinterpret_cast(const_cast(data)); } else { return arena->alignedRealloc(data, old_size, new_size, alignment); } } static void free(void * /*buf*/, size_t /*size*/) { } }; /// Switches to ordinary Allocator after REAL_ALLOCATION_TRESHOLD bytes to avoid fragmentation and trash in Arena. template , typename TArenaAllocator = ArenaAllocator, size_t alignment = 0> class MixedArenaAllocator : private TRealAllocator { public: void * alloc(size_t size, Arena * arena) { return (size < REAL_ALLOCATION_TRESHOLD) ? TArenaAllocator::alloc(size, arena) : TRealAllocator::alloc(size, alignment); } void * realloc(void * buf, size_t old_size, size_t new_size, Arena * arena) { // Invariant should be maintained: new_size > old_size if (new_size < REAL_ALLOCATION_TRESHOLD) return TArenaAllocator::realloc(buf, old_size, new_size, arena); if (old_size >= REAL_ALLOCATION_TRESHOLD) return TRealAllocator::realloc(buf, old_size, new_size, alignment); void * new_buf = TRealAllocator::alloc(new_size, alignment); memcpy(new_buf, buf, old_size); return new_buf; } void free(void * buf, size_t size) { if (size >= REAL_ALLOCATION_TRESHOLD) TRealAllocator::free(buf, size); } }; template using MixedAlignedArenaAllocator = MixedArenaAllocator, AlignedArenaAllocator, alignment>; template class ArenaAllocatorWithStackMemory : public Base { char stack_memory[N]; public: void * alloc(size_t size, Arena * arena) { return (size > N) ? Base::alloc(size, arena) : stack_memory; } void * realloc(void * buf, size_t old_size, size_t new_size, Arena * arena) { /// Was in stack_memory, will remain there. if (new_size <= N) return buf; /// Already was big enough to not fit in stack_memory. if (old_size > N) return Base::realloc(buf, old_size, new_size, arena); /// Was in stack memory, but now will not fit there. void * new_buf = Base::alloc(new_size, arena); memcpy(new_buf, buf, old_size); return new_buf; } void free(void * /*buf*/, size_t /*size*/) {} }; }