Skip to content

Instantly share code, notes, and snippets.

@rofirrim
Last active March 7, 2022 10:14
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save rofirrim/eed6b9ef43d362c186534cac5f46baf7 to your computer and use it in GitHub Desktop.
Save rofirrim/eed6b9ef43d362c186534cac5f46baf7 to your computer and use it in GitHub Desktop.
Very simple memory pool
#ifndef MINIPOOL_H
#define MINIPOOL_H
#include <cassert>
#include <cstddef>
#include <memory>
#include <new>
#include <utility>
/*
MIT License
Copyright (c) 2017, Roger Ferrer Ibanez
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/*
* Very simple memory pool.
*
* This memory pool allocates arenas where each arena holds up to arena_size
* elements. All the arenas of the pool are singly-linked.
*
* Each element in an arena has a pointer to the next free item, except the last
* one which is set to null. This forms another singly-linked list of available
* storage called free_list. The free_list points to the first free storage
* item, or null if the current arena is full.
*
* When an object is allocated, if the arena is not full, the storage pointed
* by free_list is returned. Before returning, free_list is updated to point
* to the next free item. If the arena is full, free_list is null so an arena is
* created first which will point to the currently (full) arena. Then the
* free_list
* is updated to point the new storage of the arena.
*
* When a pointer is freed, we recover the element of the arena (using pointer
* arithmetic) and then we put this item at the beginning of the free list.
*
*/
template <typename T> struct minipool {
private:
// Represents an element in the arena. This is a union so this element either
// stores a T or just is a free item which points to the next free item (if
// any).
union minipool_item {
private:
using StorageType = char[sizeof(T)];
// Points to the next freely available item.
minipool_item *next;
// Storage of the item. Note that this is a union
// so it is shared with the pointer "next" above.
StorageType datum alignas(alignof(T));
public:
// Methods for the list of free items.
minipool_item *get_next_item() const { return next; }
void set_next_item(minipool_item *n) { next = n; }
// Methods for the storage of the item.
T *get_storage() { return reinterpret_cast<T *>(datum); }
// Given a T* cast it to a minipool_item*
static minipool_item *storage_to_item(T *t) {
minipool_item *current_item = reinterpret_cast<minipool_item *>(t);
return current_item;
}
};
// Arena of items. This is just an array of items and a pointer
// to another arena. All arenas are singly linked between them.
struct minipool_arena {
private:
// Storage of this arena.
std::unique_ptr<minipool_item[]> storage;
// Pointer to the next arena.
std::unique_ptr<minipool_arena> next;
public:
// Creates an arena with arena_size items.
minipool_arena(size_t arena_size) : storage(new minipool_item[arena_size]) {
for (size_t i = 1; i < arena_size; i++) {
storage[i - 1].set_next_item(&storage[i]);
}
storage[arena_size - 1].set_next_item(nullptr);
}
// Returns a pointer to the array of items. This is used by the arena
// itself. This is only used to update free_list during initialization
// or when creating a new arena when the current one is full.
minipool_item *get_storage() const { return storage.get(); }
// Sets the next arena. Used when the current arena is full and
// we have created this one to get more storage.
void set_next_arena(std::unique_ptr<minipool_arena> &&n) {
assert(!next);
next.reset(n.release());
}
};
// Size of the arenas created by the pool.
size_t arena_size;
// Current arena. Changes when it becomes full and we want to allocate one
// more object.
std::unique_ptr<minipool_arena> arena;
// List of free elements. The list can be threaded between different arenas
// depending on the deallocation pattern.
minipool_item *free_list;
public:
// Creates a new pool that will use arenas of arena_size.
minipool(size_t arena_size)
: arena_size(arena_size), arena(new minipool_arena(arena_size)),
free_list(arena->get_storage()) {}
// Allocates an object in the current arena.
template <typename... Args> T *alloc(Args &&... args) {
if (free_list == nullptr) {
// If the current arena is full, create a new one.
std::unique_ptr<minipool_arena> new_arena(new minipool_arena(arena_size));
// Link the new arena to the current one.
new_arena->set_next_arena(std::move(arena));
// Make the new arena the current one.
arena.reset(new_arena.release());
// Update the free_list with the storage of the just created arena.
free_list = arena->get_storage();
}
// Get the first free item.
minipool_item *current_item = free_list;
// Update the free list to the next free item.
free_list = current_item->get_next_item();
// Get the storage for T.
T *result = current_item->get_storage();
// Construct the object in the obtained storage.
new (result) T(std::forward<Args>(args)...);
return result;
}
void free(T *t) {
// Destroy the object.
t->T::~T();
// Convert this pointer to T to its enclosing pointer of an item of the
// arena.
minipool_item *current_item = minipool_item::storage_to_item(t);
// Add the item at the beginning of the free list.
current_item->set_next_item(free_list);
free_list = current_item;
}
};
#endif // MINIPOOL_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment