2023-12-18 23:13:44 -05:00
|
|
|
/*
|
|
|
|
* <Short Description>
|
|
|
|
* Copyright (C) 2023 Brett Terpstra
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLT_ALLOCATOR_H
|
2024-03-07 08:06:42 -05:00
|
|
|
|
|
|
|
#include <optional>
|
|
|
|
#include <limits>
|
|
|
|
#include <vector>
|
2024-03-07 08:25:30 -05:00
|
|
|
#include <blt/std/ranges.h>
|
2024-03-07 08:06:42 -05:00
|
|
|
#include <blt/std/utility.h>
|
|
|
|
#include <blt/std/types.h>
|
2024-06-03 02:14:43 -04:00
|
|
|
#include <blt/std/assert.h>
|
2024-08-18 14:00:45 -04:00
|
|
|
#include <blt/std/mmap.h>
|
2024-03-07 08:06:42 -05:00
|
|
|
#include <blt/compatibility.h>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include "logging.h"
|
|
|
|
#include <cstdlib>
|
2023-12-18 23:13:44 -05:00
|
|
|
|
|
|
|
namespace blt
|
|
|
|
{
|
2024-02-16 18:21:13 -05:00
|
|
|
|
|
|
|
template<typename value_type, typename pointer, typename const_pointer>
|
|
|
|
class allocator_base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template<class U, class... Args>
|
|
|
|
inline void construct(U* p, Args&& ... args)
|
|
|
|
{
|
|
|
|
::new((void*) p) U(std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class U>
|
|
|
|
inline void destroy(U* p)
|
|
|
|
{
|
|
|
|
if (p != nullptr)
|
|
|
|
p->~U();
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] inline size_t max_size() const
|
|
|
|
{
|
|
|
|
return std::numeric_limits<size_t>::max();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const_pointer address(const value_type& val)
|
|
|
|
{
|
|
|
|
return std::addressof(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline pointer address(value_type& val)
|
|
|
|
{
|
|
|
|
return std::addressof(val);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-12-18 23:13:44 -05:00
|
|
|
template<typename T, size_t BLOCK_SIZE = 8192>
|
2024-02-16 18:38:12 -05:00
|
|
|
class area_allocator : public allocator_base<T, T*, const T*>
|
2023-12-18 23:13:44 -05:00
|
|
|
{
|
|
|
|
public:
|
2024-02-04 14:24:25 -05:00
|
|
|
using value = T;
|
2023-12-18 23:13:44 -05:00
|
|
|
using type = T;
|
|
|
|
using value_type = type;
|
|
|
|
using pointer = type*;
|
|
|
|
using const_pointer = const type*;
|
|
|
|
using void_pointer = void*;
|
|
|
|
using const_void_pointer = const void*;
|
|
|
|
using reference = value_type&;
|
|
|
|
using const_reference = const value_type&;
|
|
|
|
using size_type = size_t;
|
|
|
|
using difference_type = size_t;
|
|
|
|
using propagate_on_container_move_assignment = std::false_type;
|
|
|
|
template<class U>
|
|
|
|
struct rebind
|
|
|
|
{
|
2024-02-04 14:24:25 -05:00
|
|
|
typedef blt::area_allocator<U, BLOCK_SIZE> other;
|
2023-12-18 23:13:44 -05:00
|
|
|
};
|
2024-02-16 18:21:13 -05:00
|
|
|
using allocator_base<value_type, pointer, const_pointer>::allocator_base;
|
2023-12-18 23:13:44 -05:00
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Stores a view to a region of memory that has been deallocated
|
|
|
|
* This is a non-owning reference to the memory block
|
|
|
|
*
|
|
|
|
* pointer p is the pointer to the beginning of the block of memory
|
|
|
|
* size_t n is the number of elements that this block can hold
|
|
|
|
*/
|
|
|
|
struct pointer_view
|
|
|
|
{
|
|
|
|
pointer p;
|
|
|
|
size_t n;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores the actual data for allocated blocks. Since we would like to be able to allocate an arbitrary number of items
|
|
|
|
* we need a way of storing that data. The block storage holds an owning pointer to a region of memory with used elements
|
|
|
|
* Only up to used has to have their destructors called, which should be handled by the deallocate function
|
|
|
|
* it is UB to not deallocate memory allocated by this allocator
|
|
|
|
*
|
|
|
|
* an internal vector is used to store the regions of memory which have been deallocated. the allocate function will search for
|
|
|
|
* free blocks with sufficient size in order to maximize memory usage. In the future more advanced methods should be used
|
|
|
|
* for both faster access to deallocated blocks of sufficient size and to ensure coherent memory.
|
|
|
|
*/
|
|
|
|
struct block_storage
|
|
|
|
{
|
|
|
|
pointer data;
|
|
|
|
size_t used = 0;
|
|
|
|
// TODO: b-tree?
|
|
|
|
std::vector<pointer_view> unallocated_blocks;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores an index to a pointer_view along with the amount of memory leftover after the allocation
|
|
|
|
* it also stores the block being allocated to in question. The new inserted leftover should start at old_ptr + size
|
|
|
|
*/
|
|
|
|
struct block_view
|
|
|
|
{
|
|
|
|
block_storage* blk;
|
|
|
|
size_t index;
|
|
|
|
size_t leftover;
|
|
|
|
|
|
|
|
block_view(block_storage* blk, size_t index, size_t leftover): blk(blk), index(index), leftover(leftover)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate a new block of memory and push it to the back of blocks.
|
|
|
|
*/
|
|
|
|
inline void allocate_block()
|
|
|
|
{
|
|
|
|
//BLT_INFO("Allocating a new block of size %d", BLOCK_SIZE);
|
|
|
|
auto* blk = new block_storage();
|
|
|
|
blk->data = static_cast<pointer>(malloc(sizeof(T) * BLOCK_SIZE));
|
|
|
|
blocks.push_back(blk);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Searches for a free block inside the block storage with sufficient space and returns an optional view to it
|
|
|
|
* The optional will be empty if no open block can be found.
|
|
|
|
*/
|
|
|
|
inline std::optional<block_view> search_for_block(block_storage* blk, size_t n)
|
|
|
|
{
|
|
|
|
for (auto kv : blt::enumerate(blk->unallocated_blocks))
|
|
|
|
{
|
|
|
|
if (kv.second.n >= n)
|
|
|
|
return block_view{blk, kv.first, kv.second.n - n};
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* removes the block of memory from the unallocated_blocks storage in the underlying block, inserting a new unallocated block if
|
|
|
|
* there was any leftover. Returns a pointer to the beginning of the new block.
|
|
|
|
*/
|
|
|
|
inline pointer swap_pop_resize_if(const block_view& view, size_t n)
|
|
|
|
{
|
|
|
|
pointer_view ptr = view.blk->unallocated_blocks[view.index];
|
|
|
|
std::iter_swap(view.blk->unallocated_blocks.begin() + view.index, view.blk->unallocated_blocks.end() - 1);
|
|
|
|
view.blk->unallocated_blocks.pop_back();
|
|
|
|
if (view.leftover > 0)
|
|
|
|
view.blk->unallocated_blocks.push_back({ptr.p + n, view.leftover});
|
|
|
|
return ptr.p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds the next available unallocated block of memory, or empty if there is none which meet size requirements
|
|
|
|
*/
|
|
|
|
inline std::optional<pointer> find_available_block(size_t n)
|
|
|
|
{
|
|
|
|
for (auto* blk : blocks)
|
|
|
|
{
|
|
|
|
if (auto view = search_for_block(blk, n))
|
|
|
|
return swap_pop_resize_if(view.value(), n);
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns a pointer to a block of memory along with an offset into that pointer that the requested block can be found at
|
|
|
|
*/
|
|
|
|
inline std::pair<pointer, size_t> getBlock(size_t n)
|
|
|
|
{
|
|
|
|
if (auto blk = find_available_block(n))
|
|
|
|
return {blk.value(), 0};
|
|
|
|
|
|
|
|
if (blocks.back()->used + n > BLOCK_SIZE)
|
|
|
|
allocate_block();
|
|
|
|
|
|
|
|
auto ptr = std::pair<pointer, size_t>{blocks.back()->data, blocks.back()->used};
|
|
|
|
blocks.back()->used += n;
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calls the constructor on elements if they require construction, otherwise constructor will not be called and this function is useless
|
2023-12-20 14:36:46 -05:00
|
|
|
*
|
|
|
|
* ALLOCATORS RETURN UNINIT STORAGE!! THIS HAS BEEN DISABLED.
|
2023-12-18 23:13:44 -05:00
|
|
|
*/
|
2024-01-16 14:24:41 -05:00
|
|
|
inline void allocate_in_block(pointer, size_t)
|
2023-12-18 23:13:44 -05:00
|
|
|
{
|
2023-12-20 14:36:46 -05:00
|
|
|
// if constexpr (std::is_default_constructible_v<T> && !std::is_trivially_default_constructible_v<T>)
|
|
|
|
// {
|
|
|
|
// for (size_t i = 0; i < n; i++)
|
|
|
|
// new(&begin[i]) T();
|
|
|
|
// }
|
2023-12-18 23:13:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
area_allocator()
|
|
|
|
{
|
|
|
|
allocate_block();
|
|
|
|
}
|
|
|
|
|
2023-12-18 23:24:53 -05:00
|
|
|
area_allocator(const area_allocator& copy) = delete;
|
|
|
|
|
2023-12-20 14:36:46 -05:00
|
|
|
area_allocator(area_allocator&& move) noexcept
|
2023-12-18 23:24:53 -05:00
|
|
|
{
|
|
|
|
blocks = move.blocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
area_allocator& operator=(const area_allocator& copy) = delete;
|
|
|
|
|
2023-12-20 14:36:46 -05:00
|
|
|
area_allocator& operator=(area_allocator&& move) noexcept
|
2023-12-18 23:24:53 -05:00
|
|
|
{
|
|
|
|
std::swap(move.blocks, blocks);
|
|
|
|
}
|
|
|
|
|
2023-12-18 23:13:44 -05:00
|
|
|
[[nodiscard]] pointer allocate(size_t n)
|
|
|
|
{
|
|
|
|
if (n > BLOCK_SIZE)
|
|
|
|
throw std::runtime_error("Requested allocation is too large!");
|
|
|
|
|
|
|
|
auto block_info = getBlock(n);
|
|
|
|
|
|
|
|
auto* ptr = &block_info.first[block_info.second];
|
|
|
|
// call constructors on the objects if they require it
|
|
|
|
allocate_in_block(ptr, n);
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void deallocate(pointer p, size_t n) noexcept
|
|
|
|
{
|
2024-01-24 17:37:01 -05:00
|
|
|
if (p == nullptr)
|
|
|
|
return;
|
2023-12-20 14:36:46 -05:00
|
|
|
// for (size_t i = 0; i < n; i++)
|
|
|
|
// p[i].~T();
|
2023-12-18 23:13:44 -05:00
|
|
|
for (auto*& blk : blocks)
|
|
|
|
{
|
|
|
|
if (p >= blk->data && p <= (blk->data + BLOCK_SIZE))
|
|
|
|
{
|
2024-02-04 14:24:25 -05:00
|
|
|
blk->unallocated_blocks.push_back(pointer_view{p, n});
|
2023-12-18 23:13:44 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-16 18:21:13 -05:00
|
|
|
~area_allocator()
|
2023-12-18 23:13:44 -05:00
|
|
|
{
|
2024-02-16 18:21:13 -05:00
|
|
|
for (auto*& blk : blocks)
|
|
|
|
{
|
|
|
|
free(blk->data);
|
|
|
|
delete blk;
|
|
|
|
}
|
2023-12-18 23:13:44 -05:00
|
|
|
}
|
2024-02-16 18:21:13 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<block_storage*> blocks;
|
|
|
|
};
|
2024-02-29 10:14:03 -05:00
|
|
|
|
2024-02-19 14:47:09 -05:00
|
|
|
// template<typename T>
|
|
|
|
// class bump_allocator : public allocator_base<T, T*, const T*>
|
|
|
|
// {
|
|
|
|
// public:
|
|
|
|
// using value = T;
|
|
|
|
// using type = T;
|
|
|
|
// using value_type = type;
|
|
|
|
// using pointer = type*;
|
|
|
|
// using const_pointer = const type*;
|
|
|
|
// using void_pointer = void*;
|
|
|
|
// using const_void_pointer = const void*;
|
|
|
|
// using reference = value_type&;
|
|
|
|
// using const_reference = const value_type&;
|
|
|
|
// using size_type = size_t;
|
|
|
|
// using difference_type = size_t;
|
|
|
|
// using propagate_on_container_move_assignment = std::false_type;
|
|
|
|
// template<class U>
|
|
|
|
// struct rebind
|
|
|
|
// {
|
|
|
|
// typedef blt::bump_allocator<U> other;
|
|
|
|
// };
|
|
|
|
// using allocator_base<value_type, pointer, const_pointer>::allocator_base;
|
|
|
|
// private:
|
|
|
|
// pointer buffer_;
|
|
|
|
// blt::size_t offset_;
|
|
|
|
// blt::size_t size_;
|
|
|
|
// public:
|
|
|
|
// explicit bump_allocator(blt::size_t size): buffer_(static_cast<pointer>(malloc(size * sizeof(T)))), offset_(0), size_(size)
|
|
|
|
// {}
|
|
|
|
//
|
|
|
|
// template<typename... Args>
|
|
|
|
// explicit bump_allocator(blt::size_t size, Args&& ... defaults):
|
|
|
|
// buffer_(static_cast<pointer>(malloc(size * sizeof(type)))), offset_(0), size_(size)
|
|
|
|
// {
|
|
|
|
// for (blt::size_t i = 0; i < size_; i++)
|
|
|
|
// ::new(&buffer_[i]) T(std::forward<Args>(defaults)...);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// bump_allocator(pointer buffer, blt::size_t size): buffer_(buffer), offset_(0), size_(size)
|
|
|
|
// {}
|
|
|
|
//
|
|
|
|
// bump_allocator(const bump_allocator& copy) = delete;
|
|
|
|
//
|
|
|
|
// bump_allocator(bump_allocator&& move) noexcept
|
|
|
|
// {
|
|
|
|
// buffer_ = move.buffer_;
|
|
|
|
// size_ = move.size_;
|
|
|
|
// offset_ = move.offset_;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// bump_allocator& operator=(const bump_allocator& copy) = delete;
|
|
|
|
//
|
|
|
|
// bump_allocator& operator=(bump_allocator&& move) noexcept
|
|
|
|
// {
|
|
|
|
// std::swap(move.buffer_, buffer_);
|
|
|
|
// std::swap(move.size_, size_);
|
|
|
|
// std::swap(move.offset_, offset_);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// pointer allocate(blt::size_t n)
|
|
|
|
// {
|
|
|
|
// auto nv = offset_ + n;
|
|
|
|
// if (nv > size_)
|
|
|
|
// throw std::bad_alloc();
|
|
|
|
// pointer b = &buffer_[offset_];
|
|
|
|
// offset_ = nv;
|
|
|
|
// return b;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// void deallocate(pointer, blt::size_t)
|
|
|
|
// {}
|
|
|
|
//
|
|
|
|
// ~bump_allocator()
|
|
|
|
// {
|
|
|
|
// free(buffer_);
|
|
|
|
// }
|
|
|
|
// };
|
2024-02-16 18:21:13 -05:00
|
|
|
|
2024-02-19 14:47:09 -05:00
|
|
|
/**
|
|
|
|
* The bump allocator is meant to be a faster area allocator which will only allocate forward through either a supplied buffer or size
|
|
|
|
* or will create a linked list type data structure of buffered blocks.
|
|
|
|
* @tparam ALLOC allocator to use for any allocations. In the case of the non-linked variant, this will be used if a size is supplied. The supplied buffer must be allocated with this allocator!
|
|
|
|
* @tparam linked use a linked list to allocate with the allocator or just use the supplied buffer and throw an exception of we cannot allocate
|
|
|
|
*/
|
2024-03-04 10:39:19 -05:00
|
|
|
template<bool linked, template<typename> typename ALLOC = std::allocator>
|
2024-03-07 08:25:30 -05:00
|
|
|
class bump_allocator_old;
|
2024-02-16 20:06:06 -05:00
|
|
|
|
2024-03-04 10:39:19 -05:00
|
|
|
template<template<typename> typename ALLOC>
|
2024-03-07 08:25:30 -05:00
|
|
|
class bump_allocator_old<false, ALLOC>
|
2024-02-16 18:21:13 -05:00
|
|
|
{
|
2023-12-18 23:13:44 -05:00
|
|
|
private:
|
2024-03-04 10:39:19 -05:00
|
|
|
ALLOC<blt::u8> allocator;
|
2024-02-16 18:21:13 -05:00
|
|
|
blt::u8* buffer_;
|
|
|
|
blt::u8* offset_;
|
|
|
|
blt::size_t size_;
|
|
|
|
public:
|
2024-03-07 08:25:30 -05:00
|
|
|
explicit bump_allocator_old(blt::size_t size): buffer_(static_cast<blt::u8*>(allocator.allocate(size))), offset_(buffer_), size_(size)
|
2024-02-16 20:06:06 -05:00
|
|
|
{}
|
|
|
|
|
2024-03-07 08:25:30 -05:00
|
|
|
explicit bump_allocator_old(blt::u8* buffer, blt::size_t size): buffer_(buffer), offset_(buffer), size_(size)
|
2024-02-16 20:06:06 -05:00
|
|
|
{}
|
2024-02-16 18:21:13 -05:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
[[nodiscard]] T* allocate()
|
|
|
|
{
|
|
|
|
size_t remaining_num_bytes = size_ - static_cast<size_t>(buffer_ - offset_);
|
|
|
|
auto pointer = static_cast<void*>(offset_);
|
|
|
|
const auto aligned_address = std::align(alignof(T), sizeof(T), pointer, remaining_num_bytes);
|
|
|
|
if (aligned_address == nullptr)
|
|
|
|
throw std::bad_alloc{};
|
|
|
|
offset_ = static_cast<blt::u8*>(aligned_address) + sizeof(T);
|
|
|
|
return static_cast<T*>(aligned_address);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Args>
|
|
|
|
[[nodiscard]] T* emplace(Args&& ... args)
|
|
|
|
{
|
|
|
|
const auto allocated_memory = allocate<T>();
|
|
|
|
return new(allocated_memory) T{std::forward<Args>(args)...};
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class U, class... Args>
|
|
|
|
inline void construct(U* p, Args&& ... args)
|
|
|
|
{
|
|
|
|
::new((void*) p) U(std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class U>
|
|
|
|
inline void destroy(U* p)
|
|
|
|
{
|
|
|
|
if (p != nullptr)
|
|
|
|
p->~U();
|
|
|
|
}
|
|
|
|
|
2024-03-07 08:25:30 -05:00
|
|
|
~bump_allocator_old()
|
2024-02-16 18:21:13 -05:00
|
|
|
{
|
2024-02-19 14:47:09 -05:00
|
|
|
allocator.deallocate(buffer_, size_);
|
2024-02-16 20:06:06 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-03-04 10:39:19 -05:00
|
|
|
template<template<typename> typename ALLOC>
|
2024-03-07 08:25:30 -05:00
|
|
|
class bump_allocator_old<true, ALLOC>
|
2024-02-16 20:06:06 -05:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
struct block
|
|
|
|
{
|
2024-03-06 16:42:13 -05:00
|
|
|
blt::size_t allocated_objects = 0;
|
2024-02-19 14:47:09 -05:00
|
|
|
blt::u8* buffer = nullptr;
|
2024-03-05 13:20:17 -05:00
|
|
|
blt::u8* offset = nullptr;
|
|
|
|
|
|
|
|
explicit block(blt::u8* buffer): buffer(buffer), offset(buffer)
|
|
|
|
{}
|
2024-02-16 20:06:06 -05:00
|
|
|
};
|
2024-03-05 13:20:17 -05:00
|
|
|
|
2024-03-04 10:39:19 -05:00
|
|
|
ALLOC<blt::u8> allocator;
|
|
|
|
std::vector<block, ALLOC<block>> blocks;
|
2024-02-16 20:06:06 -05:00
|
|
|
blt::size_t size_;
|
2024-03-06 16:42:13 -05:00
|
|
|
blt::size_t allocations = 0;
|
|
|
|
blt::size_t deallocations = 0;
|
2024-02-16 20:06:06 -05:00
|
|
|
|
|
|
|
void expand()
|
|
|
|
{
|
2024-03-05 13:20:17 -05:00
|
|
|
auto ptr = static_cast<blt::u8*>(allocator.allocate(size_));
|
|
|
|
blocks.push_back(block{ptr});
|
2024-03-06 16:42:13 -05:00
|
|
|
allocations++;
|
2024-02-16 20:06:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
T* allocate_back()
|
|
|
|
{
|
|
|
|
auto& back = blocks.back();
|
2024-03-05 13:20:17 -05:00
|
|
|
size_t remaining_bytes = size_ - static_cast<size_t>(back.offset - back.buffer);
|
|
|
|
auto pointer = static_cast<void*>(back.offset);
|
|
|
|
const auto aligned_address = std::align(alignof(T), sizeof(T), pointer, remaining_bytes);
|
|
|
|
if (aligned_address != nullptr)
|
2024-02-16 20:06:06 -05:00
|
|
|
{
|
2024-03-05 13:20:17 -05:00
|
|
|
back.offset = static_cast<blt::u8*>(aligned_address) + sizeof(T);
|
2024-02-16 20:06:06 -05:00
|
|
|
back.allocated_objects++;
|
|
|
|
}
|
2024-03-05 13:20:17 -05:00
|
|
|
|
|
|
|
return static_cast<T*>(aligned_address);
|
2024-02-16 20:06:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2024-02-19 14:47:09 -05:00
|
|
|
/**
|
|
|
|
* @param size of the list blocks
|
|
|
|
*/
|
2024-03-07 08:25:30 -05:00
|
|
|
explicit bump_allocator_old(blt::size_t size): size_(size)
|
2024-02-16 20:06:06 -05:00
|
|
|
{
|
|
|
|
expand();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
[[nodiscard]] T* allocate()
|
|
|
|
{
|
|
|
|
if (auto ptr = allocate_back<T>(); ptr == nullptr)
|
|
|
|
expand();
|
2024-03-05 13:20:17 -05:00
|
|
|
else
|
2024-02-16 20:06:06 -05:00
|
|
|
return ptr;
|
|
|
|
if (auto ptr = allocate_back<T>(); ptr == nullptr)
|
|
|
|
throw std::bad_alloc();
|
|
|
|
else
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void deallocate(T* p)
|
|
|
|
{
|
2024-03-04 11:21:43 -05:00
|
|
|
auto* ptr = reinterpret_cast<blt::u8*>(p);
|
2024-02-16 20:06:06 -05:00
|
|
|
for (auto e : blt::enumerate(blocks))
|
|
|
|
{
|
|
|
|
auto& block = e.second;
|
2024-03-05 13:20:17 -05:00
|
|
|
if (ptr >= block.buffer && ptr <= block.offset)
|
2024-02-16 20:06:06 -05:00
|
|
|
{
|
2024-03-06 16:42:13 -05:00
|
|
|
block.allocated_objects--;
|
|
|
|
if (block.allocated_objects == 0)
|
|
|
|
{
|
|
|
|
std::iter_swap(blocks.begin() + e.first, blocks.end() - 1);
|
|
|
|
allocator.deallocate(blocks.back().buffer, size_);
|
|
|
|
blocks.pop_back();
|
|
|
|
deallocations++;
|
|
|
|
}
|
|
|
|
return;
|
2024-02-16 20:06:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Args>
|
|
|
|
[[nodiscard]] T* emplace(Args&& ... args)
|
|
|
|
{
|
|
|
|
const auto allocated_memory = allocate<T>();
|
|
|
|
return new(allocated_memory) T{std::forward<Args>(args)...};
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class U, class... Args>
|
|
|
|
inline void construct(U* p, Args&& ... args)
|
|
|
|
{
|
|
|
|
::new((void*) p) U(std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class U>
|
|
|
|
inline void destroy(U* p)
|
|
|
|
{
|
|
|
|
if (p != nullptr)
|
|
|
|
p->~U();
|
|
|
|
}
|
|
|
|
|
2024-03-07 08:25:30 -05:00
|
|
|
~bump_allocator_old()
|
2024-02-16 20:06:06 -05:00
|
|
|
{
|
2024-03-06 16:42:13 -05:00
|
|
|
if (allocations != deallocations)
|
|
|
|
BLT_WARN("Allocator has blocks which have not been deallocated! Destructors might not have been called!");
|
2024-02-16 20:06:06 -05:00
|
|
|
for (auto& v : blocks)
|
2024-02-19 14:47:09 -05:00
|
|
|
allocator.deallocate(v.buffer, size_);
|
2024-02-16 18:21:13 -05:00
|
|
|
}
|
2023-12-18 23:13:44 -05:00
|
|
|
};
|
2024-02-29 10:27:02 -05:00
|
|
|
|
2024-06-03 02:14:43 -04:00
|
|
|
template<typename T, bool WARN_ON_FAIL = false>
|
|
|
|
static inline T* allocate_huge_page(blt::size_t BLOCK_SIZE, blt::size_t HUGE_PAGE_SIZE = BLT_2MB_SIZE)
|
|
|
|
{
|
|
|
|
BLT_ASSERT((BLOCK_SIZE & (HUGE_PAGE_SIZE - 1)) == 0 && "Must be multiple of the huge page size!");
|
|
|
|
T* buffer = static_cast<T*>(mmap(nullptr, BLOCK_SIZE, PROT_READ | PROT_WRITE,
|
2024-08-18 14:00:45 -04:00
|
|
|
MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB | MAP_POPULATE, -1, 0));
|
2024-06-03 02:14:43 -04:00
|
|
|
// if we fail to allocate a huge page we can try to allocate normally
|
|
|
|
if (buffer == MAP_FAILED)
|
|
|
|
{
|
|
|
|
if constexpr (WARN_ON_FAIL)
|
|
|
|
{
|
|
|
|
BLT_WARN_STREAM << "We failed to allocate huge pages\n";
|
|
|
|
handle_mmap_error(BLT_WARN_STREAM);
|
|
|
|
BLT_WARN_STREAM << "\033[1;31mYou should attempt to enable "
|
|
|
|
"huge pages as this will allocate normal pages and double the memory usage!\033[22m\n";
|
|
|
|
}
|
|
|
|
blt::size_t bytes = BLOCK_SIZE * 2;
|
|
|
|
buffer = static_cast<T*>(mmap(nullptr, bytes, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_POPULATE, -1, 0));
|
|
|
|
if (buffer == MAP_FAILED)
|
|
|
|
{
|
|
|
|
BLT_ERROR_STREAM << "Failed to allocate normal pages\n";
|
|
|
|
handle_mmap_error(BLT_ERROR_STREAM);
|
|
|
|
throw std::bad_alloc();
|
|
|
|
}
|
|
|
|
if constexpr (WARN_ON_FAIL)
|
|
|
|
{
|
|
|
|
if (((size_t) buffer & (HUGE_PAGE_SIZE - 1)) != 0)
|
|
|
|
BLT_ERROR("Pointer is not aligned! %p", buffer);
|
|
|
|
}
|
|
|
|
auto* ptr = static_cast<void*>(buffer);
|
|
|
|
auto ptr_size = reinterpret_cast<blt::size_t>(ptr);
|
|
|
|
buffer = static_cast<T*>(std::align(BLOCK_SIZE, BLOCK_SIZE, ptr, bytes));
|
|
|
|
if constexpr (WARN_ON_FAIL)
|
|
|
|
BLT_ERROR("Offset by %ld pages, resulting: %p", (reinterpret_cast<blt::size_t>(buffer) - ptr_size) / 4096, buffer);
|
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* blt::bump_allocator. Allocates blocks of BLOCK_SIZE with zero reuse. When all objects from a block are fully deallocated the block will be freed
|
|
|
|
* @tparam BLOCK_SIZE size of block to use. recommended to be multiple of page size or huge page size.
|
|
|
|
* @tparam USE_HUGE allocate using mmap and huge pages. If this fails it will use mmap to allocate normally. defaults to off because linux has parent huge pages.
|
|
|
|
* @tparam HUGE_PAGE_SIZE size the system allows huge pages to be. defaults to 2mb
|
|
|
|
* @tparam WARN_ON_FAIL print warning messages if allocating huge pages fail
|
|
|
|
*/
|
2024-03-07 08:12:31 -05:00
|
|
|
template<blt::size_t BLOCK_SIZE = BLT_2MB_SIZE, bool USE_HUGE = false, blt::size_t HUGE_PAGE_SIZE = BLT_2MB_SIZE, bool WARN_ON_FAIL = false>
|
2024-03-07 08:25:30 -05:00
|
|
|
class bump_allocator
|
2024-03-06 16:42:13 -05:00
|
|
|
{
|
2024-03-08 22:34:50 -05:00
|
|
|
// ensure power of two
|
2024-03-06 20:35:54 -05:00
|
|
|
static_assert(((BLOCK_SIZE & (BLOCK_SIZE - 1)) == 0) && "Must be a power of two!");
|
2024-03-08 22:34:50 -05:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* convert any pointer back into a pointer its block
|
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
static inline auto to_block(T* p)
|
|
|
|
{
|
|
|
|
return reinterpret_cast<block*>(reinterpret_cast<std::uintptr_t>(p) & static_cast<std::uintptr_t>(~(BLOCK_SIZE - 1)));
|
|
|
|
}
|
2024-03-11 11:51:13 -04:00
|
|
|
|
|
|
|
class stats_t
|
|
|
|
{
|
2024-03-11 11:56:15 -04:00
|
|
|
friend bump_allocator;
|
2024-03-11 11:51:13 -04:00
|
|
|
private:
|
|
|
|
blt::size_t allocated_blocks = 0;
|
|
|
|
blt::size_t allocated_bytes = 0;
|
|
|
|
blt::size_t peak_blocks = 0;
|
|
|
|
blt::size_t peak_bytes = 0;
|
2024-03-11 11:56:15 -04:00
|
|
|
protected:
|
2024-03-11 11:51:13 -04:00
|
|
|
inline void incrementBlocks()
|
|
|
|
{
|
|
|
|
allocated_blocks++;
|
|
|
|
if (allocated_blocks > peak_blocks)
|
|
|
|
peak_blocks = allocated_blocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void decrementBlocks()
|
|
|
|
{
|
|
|
|
allocated_blocks--;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void incrementBytes(blt::size_t bytes)
|
|
|
|
{
|
|
|
|
allocated_bytes += bytes;
|
|
|
|
if (allocated_bytes > peak_bytes)
|
|
|
|
peak_bytes = allocated_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void decrementBytes(blt::size_t bytes)
|
|
|
|
{
|
|
|
|
allocated_bytes -= bytes;
|
|
|
|
}
|
2024-03-11 11:56:15 -04:00
|
|
|
|
|
|
|
public:
|
2024-03-11 11:51:13 -04:00
|
|
|
|
2024-03-11 11:56:15 -04:00
|
|
|
inline auto getAllocatedBlocks() const
|
2024-03-11 11:51:13 -04:00
|
|
|
{
|
|
|
|
return allocated_blocks;
|
|
|
|
}
|
|
|
|
|
2024-03-11 11:56:15 -04:00
|
|
|
inline auto getAllocatedBytes() const
|
2024-03-11 11:51:13 -04:00
|
|
|
{
|
|
|
|
return allocated_bytes;
|
|
|
|
}
|
|
|
|
|
2024-03-11 11:56:15 -04:00
|
|
|
inline auto getPeakBlocks() const
|
2024-03-11 11:51:13 -04:00
|
|
|
{
|
|
|
|
return peak_blocks;
|
|
|
|
}
|
|
|
|
|
2024-03-11 11:56:15 -04:00
|
|
|
inline auto getPeakBytes() const
|
2024-03-11 11:51:13 -04:00
|
|
|
{
|
|
|
|
return peak_bytes;
|
|
|
|
}
|
|
|
|
};
|
2024-03-11 11:56:15 -04:00
|
|
|
|
2024-03-06 16:42:13 -05:00
|
|
|
private:
|
2024-03-11 11:51:13 -04:00
|
|
|
stats_t stats;
|
2024-03-24 17:31:11 -04:00
|
|
|
//blt::hashset_t<void*> deletes;
|
2024-03-11 11:51:13 -04:00
|
|
|
|
2024-03-06 16:42:13 -05:00
|
|
|
struct block
|
|
|
|
{
|
2024-03-08 16:37:51 -05:00
|
|
|
struct block_metadata_t
|
2024-03-06 16:42:13 -05:00
|
|
|
{
|
|
|
|
blt::size_t allocated_objects = 0;
|
|
|
|
block* next = nullptr;
|
2024-03-06 20:35:54 -05:00
|
|
|
block* prev = nullptr;
|
2024-03-06 16:42:13 -05:00
|
|
|
blt::u8* offset = nullptr;
|
|
|
|
} metadata;
|
2024-03-24 17:31:11 -04:00
|
|
|
blt::u8 buffer[BLOCK_SIZE - sizeof(block_metadata_t)]{};
|
2024-03-06 16:42:13 -05:00
|
|
|
|
|
|
|
block()
|
|
|
|
{
|
|
|
|
metadata.offset = buffer;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
// remaining space inside the block after accounting for the metadata
|
|
|
|
static constexpr blt::size_t BLOCK_REMAINDER = BLOCK_SIZE - sizeof(typename block::block_metadata_t);
|
2024-03-08 16:37:51 -05:00
|
|
|
|
2024-03-06 16:42:13 -05:00
|
|
|
block* base = nullptr;
|
|
|
|
block* head = nullptr;
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* Handles the allocation of the bytes for the block.
|
|
|
|
* This function will either use mmap to allocate huge pages if requested
|
|
|
|
* or use std::align_alloc to create an aligned allocation
|
|
|
|
* @return pointer to a constructed block
|
|
|
|
*/
|
2024-03-06 16:42:13 -05:00
|
|
|
block* allocate_block()
|
|
|
|
{
|
2024-03-06 20:35:54 -05:00
|
|
|
block* buffer;
|
|
|
|
#ifdef __unix__
|
|
|
|
if constexpr (USE_HUGE)
|
|
|
|
{
|
2024-06-03 02:14:43 -04:00
|
|
|
buffer = allocate_huge_page<block, WARN_ON_FAIL>(BLOCK_SIZE, HUGE_PAGE_SIZE);
|
2024-03-06 20:35:54 -05:00
|
|
|
} else
|
|
|
|
buffer = reinterpret_cast<block*>(std::aligned_alloc(BLOCK_SIZE, BLOCK_SIZE));
|
|
|
|
#else
|
|
|
|
buffer = reinterpret_cast<block*>(std::aligned_alloc(BLOCK_SIZE, BLOCK_SIZE));
|
|
|
|
#endif
|
2024-03-06 16:42:13 -05:00
|
|
|
construct(buffer);
|
2024-03-11 11:51:13 -04:00
|
|
|
#ifndef BLT_DISABLE_STATS
|
|
|
|
stats.incrementBlocks();
|
|
|
|
#endif
|
2024-03-06 16:42:13 -05:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* Allocates a new block and pushes it to the front of the linked listed
|
|
|
|
*/
|
2024-03-06 16:42:13 -05:00
|
|
|
void allocate_forward()
|
|
|
|
{
|
|
|
|
auto* block = allocate_block();
|
2024-03-08 22:34:50 -05:00
|
|
|
if (head == nullptr)
|
|
|
|
{
|
|
|
|
base = head = block;
|
|
|
|
return;
|
|
|
|
}
|
2024-03-06 20:35:54 -05:00
|
|
|
block->metadata.prev = head;
|
2024-03-06 16:42:13 -05:00
|
|
|
head->metadata.next = block;
|
|
|
|
head = block;
|
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* handles the actual allocation and alignment of memory
|
|
|
|
* @param bytes number of bytes to allocate
|
|
|
|
* @param alignment alignment required
|
|
|
|
* @return aligned pointer
|
|
|
|
*/
|
2024-03-08 16:37:51 -05:00
|
|
|
void* allocate_bytes(blt::size_t bytes, blt::size_t alignment)
|
|
|
|
{
|
2024-03-09 12:57:58 -05:00
|
|
|
if (head == nullptr)
|
|
|
|
return nullptr;
|
2024-06-04 14:00:05 -04:00
|
|
|
blt::size_t remaining_bytes = BLOCK_REMAINDER - static_cast<blt::ptrdiff_t>(head->metadata.offset - head->buffer);
|
2024-03-08 16:37:51 -05:00
|
|
|
auto pointer = static_cast<void*>(head->metadata.offset);
|
|
|
|
return std::align(alignment, bytes, pointer, remaining_bytes);
|
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* allocate an object starting from the next available address
|
|
|
|
* @tparam T type to allocate for
|
|
|
|
* @param count number of elements to allocate
|
|
|
|
* @return nullptr if the object could not be allocated, pointer to the object if it could, pointer to the start if count != 1
|
|
|
|
*/
|
2024-03-06 16:42:13 -05:00
|
|
|
template<typename T>
|
2024-03-08 22:34:50 -05:00
|
|
|
T* allocate_object(blt::size_t count)
|
2024-03-06 16:42:13 -05:00
|
|
|
{
|
2024-03-08 16:37:51 -05:00
|
|
|
blt::size_t bytes = sizeof(T) * count;
|
|
|
|
const auto aligned_address = allocate_bytes(bytes, alignof(T));
|
2024-03-06 20:35:54 -05:00
|
|
|
if (aligned_address != nullptr)
|
|
|
|
{
|
|
|
|
head->metadata.allocated_objects++;
|
2024-03-08 16:37:51 -05:00
|
|
|
head->metadata.offset = static_cast<blt::u8*>(aligned_address) + bytes;
|
2024-03-06 20:35:54 -05:00
|
|
|
}
|
|
|
|
return static_cast<T*>(aligned_address);
|
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* Frees a block
|
|
|
|
* @param p pointer to the block to free
|
|
|
|
*/
|
|
|
|
inline void delete_block(block* p)
|
2024-03-06 20:35:54 -05:00
|
|
|
{
|
2024-03-11 11:51:13 -04:00
|
|
|
#ifndef BLT_DISABLE_STATS
|
|
|
|
stats.decrementBlocks();
|
|
|
|
#endif
|
2024-03-06 20:35:54 -05:00
|
|
|
if constexpr (USE_HUGE)
|
|
|
|
{
|
|
|
|
if (munmap(p, BLOCK_SIZE))
|
|
|
|
{
|
|
|
|
BLT_ERROR_STREAM << "FAILED TO DEALLOCATE BLOCK\n";
|
|
|
|
handle_mmap_error(BLT_ERROR_STREAM);
|
|
|
|
}
|
2024-03-06 23:52:43 -05:00
|
|
|
} else
|
2024-03-06 20:35:54 -05:00
|
|
|
free(p);
|
2024-03-06 16:42:13 -05:00
|
|
|
}
|
2024-03-11 11:51:13 -04:00
|
|
|
|
2024-03-06 16:42:13 -05:00
|
|
|
public:
|
2024-03-08 22:34:50 -05:00
|
|
|
bump_allocator() = default;
|
2024-03-06 16:42:13 -05:00
|
|
|
|
2024-03-07 08:25:30 -05:00
|
|
|
/**
|
|
|
|
* Takes an unused size parameter. Purely used for compatibility with the old bump_allocator
|
|
|
|
*/
|
2024-03-08 22:34:50 -05:00
|
|
|
explicit bump_allocator(blt::size_t)
|
2024-03-06 20:35:54 -05:00
|
|
|
{}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* Allocate bytes for a type
|
|
|
|
* @tparam T type to allocate
|
|
|
|
* @param count number of elements to allocate for
|
|
|
|
* @throws std::bad_alloc
|
|
|
|
* @return aligned pointer to the beginning of the allocated memory
|
|
|
|
*/
|
2024-03-06 16:42:13 -05:00
|
|
|
template<typename T>
|
2024-03-08 12:27:07 -05:00
|
|
|
[[nodiscard]] T* allocate(blt::size_t count = 1)
|
2024-03-06 16:42:13 -05:00
|
|
|
{
|
2024-03-08 22:34:50 -05:00
|
|
|
if constexpr (sizeof(T) > BLOCK_REMAINDER)
|
2024-03-06 20:35:54 -05:00
|
|
|
throw std::bad_alloc();
|
2024-03-11 11:51:13 -04:00
|
|
|
|
|
|
|
#ifndef BLT_DISABLE_STATS
|
|
|
|
stats.incrementBytes(sizeof(T) * count);
|
|
|
|
#endif
|
2024-03-06 20:35:54 -05:00
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
T* ptr = allocate_object<T>(count);
|
|
|
|
if (ptr != nullptr)
|
|
|
|
return ptr;
|
|
|
|
allocate_forward();
|
|
|
|
ptr = allocate_object<T>(count);
|
2024-03-07 08:25:30 -05:00
|
|
|
if (ptr == nullptr)
|
2024-03-08 22:34:50 -05:00
|
|
|
throw std::bad_alloc();
|
2024-03-07 08:25:30 -05:00
|
|
|
return ptr;
|
2024-03-06 16:42:13 -05:00
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* Deallocate a pointer, does not call the destructor
|
|
|
|
* @tparam T type of pointer
|
|
|
|
* @param p pointer to deallocate
|
|
|
|
*/
|
2024-03-06 16:42:13 -05:00
|
|
|
template<typename T>
|
2024-03-11 11:51:13 -04:00
|
|
|
void deallocate(T* p, blt::size_t count = 1)
|
2024-03-06 16:42:13 -05:00
|
|
|
{
|
2024-03-06 20:35:54 -05:00
|
|
|
if (p == nullptr)
|
|
|
|
return;
|
2024-03-11 11:51:13 -04:00
|
|
|
#ifndef BLT_DISABLE_STATS
|
|
|
|
stats.decrementBytes(sizeof(T) * count);
|
|
|
|
#endif
|
2024-03-24 17:31:11 -04:00
|
|
|
// if (deletes.contains(p))
|
|
|
|
// {
|
|
|
|
// BLT_FATAL("pointer %p has already been freed", p);
|
|
|
|
// throw std::bad_alloc();
|
|
|
|
// }else
|
|
|
|
// deletes.insert(static_cast<void*>(p));
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
auto blk = to_block(p);
|
2024-03-24 17:31:11 -04:00
|
|
|
blk->metadata.allocated_objects--;
|
|
|
|
if (blk->metadata.allocated_objects == 0)
|
2024-03-06 20:35:54 -05:00
|
|
|
{
|
2024-03-24 17:31:11 -04:00
|
|
|
//BLT_INFO("Deallocating block from %p in (1) %p current head %p, based: %p", p, blk, head, base);
|
2024-03-06 20:35:54 -05:00
|
|
|
if (blk == base)
|
2024-03-24 17:31:11 -04:00
|
|
|
{
|
|
|
|
base = base->metadata.next;
|
|
|
|
// if they were equal (single allocated block) we also need to move the head forward
|
|
|
|
if (blk == head)
|
|
|
|
head = base;
|
|
|
|
} else if (blk == head) // else, need to make sure the head ptr gets moved back, otherwise we will use a head that has been freed
|
|
|
|
head = blk->metadata.prev;
|
|
|
|
else if (blk->metadata.prev != nullptr) // finally if it wasn't the head we need to bridge the gap in the list
|
2024-03-06 20:35:54 -05:00
|
|
|
blk->metadata.prev->metadata.next = blk->metadata.next;
|
|
|
|
|
2024-03-24 17:31:11 -04:00
|
|
|
//BLT_INFO("Deallocating block from %p in (2) %p current head %p, based: %p", p, blk, head, base);
|
2024-03-08 22:34:50 -05:00
|
|
|
delete_block(blk);
|
2024-03-06 20:35:54 -05:00
|
|
|
}
|
2024-03-06 16:42:13 -05:00
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* allocate a type then call its constructor with arguments
|
|
|
|
* @tparam T type to construct
|
|
|
|
* @tparam Args type of args to construct with
|
|
|
|
* @param args args to construct with
|
|
|
|
* @return aligned pointer to the constructed type
|
|
|
|
*/
|
2024-03-06 16:42:13 -05:00
|
|
|
template<typename T, typename... Args>
|
|
|
|
[[nodiscard]] T* emplace(Args&& ... args)
|
|
|
|
{
|
|
|
|
const auto allocated_memory = allocate<T>();
|
|
|
|
return new(allocated_memory) T{std::forward<Args>(args)...};
|
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* allocate an array of count T with argument(s) args and call T's constructor
|
|
|
|
* @tparam T class to construct
|
|
|
|
* @tparam Args argument types to supply to construction
|
|
|
|
* @param count size of the array to allocate in number of elements. Note calling this with count = 0 is equivalent to calling emplace
|
|
|
|
* @param args the args to supply to construction
|
|
|
|
* @return aligned pointer to the beginning of the array of T
|
|
|
|
*/
|
2024-03-08 12:27:07 -05:00
|
|
|
template<typename T, typename... Args>
|
|
|
|
[[nodiscard]] T* emplace_many(blt::size_t count, Args&& ... args)
|
|
|
|
{
|
|
|
|
if (count == 0)
|
|
|
|
return nullptr;
|
|
|
|
const auto allocated_memory = allocate<T>(count);
|
|
|
|
for (blt::size_t i = 0; i < count; i++)
|
|
|
|
new(allocated_memory + i) T{std::forward<Args>(args)...};
|
|
|
|
return allocated_memory;
|
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* Used to construct a class U with parameters Args
|
|
|
|
* @tparam U class to construct
|
|
|
|
* @tparam Args args to use
|
|
|
|
* @param p pointer to non-constructed memory
|
|
|
|
* @param args list of arguments to build the class with
|
|
|
|
*/
|
2024-03-06 16:42:13 -05:00
|
|
|
template<class U, class... Args>
|
|
|
|
inline void construct(U* p, Args&& ... args)
|
|
|
|
{
|
|
|
|
::new((void*) p) U(std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
|
2024-03-08 22:34:50 -05:00
|
|
|
/**
|
|
|
|
* Call the destructor for class U with pointer p
|
|
|
|
* @tparam U class to call destructor on, this will not do anything if the type is std::trivially_destructible
|
|
|
|
* @param p
|
|
|
|
*/
|
2024-03-06 16:42:13 -05:00
|
|
|
template<class U>
|
|
|
|
inline void destroy(U* p)
|
|
|
|
{
|
2024-03-10 22:57:40 -04:00
|
|
|
if constexpr (!std::is_trivially_destructible_v<U>)
|
2024-03-08 22:34:50 -05:00
|
|
|
{
|
|
|
|
if (p != nullptr)
|
|
|
|
p->~U();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calls destroy on pointer p
|
|
|
|
* Then calls deallocate on p
|
|
|
|
* @tparam U class to destroy
|
|
|
|
* @param p pointer to deallocate
|
|
|
|
*/
|
|
|
|
template<class U>
|
|
|
|
inline void destruct(U* p)
|
|
|
|
{
|
|
|
|
destroy(p);
|
|
|
|
deallocate(p);
|
2024-03-06 16:42:13 -05:00
|
|
|
}
|
|
|
|
|
2024-03-11 12:05:37 -04:00
|
|
|
inline void resetStats()
|
|
|
|
{
|
|
|
|
stats = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const auto& getStats() const
|
2024-03-11 11:51:13 -04:00
|
|
|
{
|
|
|
|
return stats;
|
|
|
|
}
|
|
|
|
|
2024-03-07 08:25:30 -05:00
|
|
|
~bump_allocator()
|
2024-03-06 16:42:13 -05:00
|
|
|
{
|
|
|
|
block* next = base;
|
|
|
|
while (next != nullptr)
|
|
|
|
{
|
|
|
|
auto* after = next->metadata.next;
|
2024-03-08 22:34:50 -05:00
|
|
|
delete_block(next);
|
2024-03-06 16:42:13 -05:00
|
|
|
next = after;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2023-12-18 23:13:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#define BLT_ALLOCATOR_H
|
|
|
|
|
|
|
|
#endif //BLT_ALLOCATOR_H
|