89 lines
2.3 KiB
C++
89 lines
2.3 KiB
C++
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* Copyright 2021, Danny Robson <danny@nerdcruft.net>
|
|
*/
|
|
|
|
#include "chunked.hpp"
|
|
|
|
#include "../log.hpp"
|
|
#include "../maths.hpp"
|
|
#include "../pointer.hpp"
|
|
|
|
|
|
using cruft::alloc::chunked;
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
chunked::chunked (std::size_t initial_size)
|
|
: chunked (initial_size, DEFAULT_CHUNK_SIZE)
|
|
{ ; }
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
chunked::chunked (std::size_t initial_size, std::size_t _chunk_size)
|
|
: m_chunk (_chunk_size)
|
|
{
|
|
m_chunk = cruft::max (m_chunk, sizeof (node_t));
|
|
|
|
auto const initial_arenas = cruft::divup (initial_size, m_chunk);
|
|
m_data.resize (initial_arenas);
|
|
|
|
for (auto &i: m_data) {
|
|
i.data = new std::byte[m_chunk];
|
|
*i.node = {
|
|
.size = m_chunk,
|
|
.next = nullptr
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
void*
|
|
chunked::do_allocate (std::size_t size, std::size_t alignment)
|
|
{
|
|
// Find a chunk that can service this allocation.
|
|
for (auto &i: m_data) {
|
|
if (i.node->size < size + alignment)
|
|
continue;
|
|
|
|
auto base = cruft::align::up (i.data, alignment);
|
|
std::byte* newbase = base + size;
|
|
if (newbase > i.data + i.node->size)
|
|
continue;
|
|
|
|
std::size_t newsize = i.data + i.node->size - newbase;
|
|
|
|
i.data = newbase;
|
|
i.node->size = newsize;
|
|
|
|
return base;
|
|
}
|
|
|
|
// No chunk was found. We need to allocate a new chunk of at least enough size.
|
|
unimplemented ();
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void
|
|
chunked::do_deallocate (void *p, std::size_t bytes, std::size_t alignment)
|
|
{
|
|
(void)p;
|
|
(void)bytes;
|
|
(void)alignment;
|
|
|
|
LOG_WARNING ("chunked::do_deallocate is unimplemented");
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
bool
|
|
chunked::do_is_equal (memory_resource const &) const noexcept
|
|
{
|
|
warn ("chunked::do_is_equal is unimplemented");
|
|
return false;
|
|
} |