foonathan / memory

STL compatible C++ memory allocator library using a new RawAllocator concept that is similar to an Allocator but easier to use and write.
https://memory.foonathan.net
zlib License
1.5k stars 195 forks source link

Can a vector use a memory pool with a small_node_pool ? #168

Closed chrisics closed 1 year ago

chrisics commented 1 year ago

Hello, The following throws when the list is constructed. Somewhere a proxy to a std::container is allocated with the allocator passed to it and the proxy has size 16 and 16 is larger than sizeof(Item).
The goal is to speed up vectors with lots of small items, single threaded. Or should I use another allocator for that?
Thanks,

struct Item
{
    int16_t a = 0;
    int16_t b = 0;
};

using MemoryPoolType = memory::memory_pool<memory::small_node_pool>;
using ListType = memory::vector<Item, MemoryPoolType>;

void test()
{
    MemoryPoolType pool(sizeof(Item), 1024);
    ListType list(pool);
    list.push_back(Item());
}