Files
snmalloc/src/mem/chunkallocator.h
2021-10-20 18:38:08 +01:00

180 lines
5.2 KiB
C++

#pragma once
#include "../ds/mpmcstack.h"
#include "../mem/metaslab.h"
#include "../mem/sizeclasstable.h"
#ifdef SNMALLOC_TRACING
# include <iostream>
#endif
#include <new>
namespace snmalloc
{
/**
* Used to store slabs in the unused sizes.
*/
struct ChunkRecord
{
MetaCommon meta_common;
std::atomic<ChunkRecord*> next;
};
static_assert(std::is_standard_layout_v<ChunkRecord>);
static_assert(
offsetof(ChunkRecord, meta_common) == 0,
"ChunkRecord and Metaslab must share a common prefix");
/**
* How many slab sizes that can be provided.
*/
constexpr size_t NUM_SLAB_SIZES = Pal::address_bits - MIN_CHUNK_BITS;
/**
* Used to ensure the per slab meta data is large enough for both use cases.
*/
static_assert(
sizeof(Metaslab) >= sizeof(ChunkRecord), "We conflate these two types.");
/**
* This is the global state required for the chunk allocator.
* It must be provided as a part of the shared state handle
* to the chunk allocator.
*/
class ChunkAllocatorState
{
friend class ChunkAllocator;
/**
* Stack of slabs that have been returned for reuse.
*/
ModArray<NUM_SLAB_SIZES, MPMCStack<ChunkRecord, RequiresInit>> chunk_stack;
/**
* All memory issued by this address space manager
*/
std::atomic<size_t> peak_memory_usage_{0};
std::atomic<size_t> memory_in_stacks{0};
public:
size_t unused_memory()
{
return memory_in_stacks;
}
size_t peak_memory_usage()
{
return peak_memory_usage_;
}
void add_peak_memory_usage(size_t size)
{
peak_memory_usage_ += size;
#ifdef SNMALLOC_TRACING
std::cout << "peak_memory_usage_: " << peak_memory_usage_ << std::endl;
#endif
}
};
class ChunkAllocator
{
public:
template<SNMALLOC_CONCEPT(ConceptBackendGlobals) SharedStateHandle>
static std::pair<capptr::Chunk<void>, Metaslab*> alloc_chunk(
typename SharedStateHandle::LocalState& local_state,
sizeclass_t sizeclass,
sizeclass_t slab_sizeclass, // TODO sizeclass_t
size_t slab_size,
RemoteAllocator* remote)
{
ChunkAllocatorState& state =
SharedStateHandle::get_chunk_allocator_state(&local_state);
if (slab_sizeclass >= NUM_SLAB_SIZES)
{
// Your address space is not big enough for this allocation!
return {nullptr, nullptr};
}
// Pop a slab
auto chunk_record = state.chunk_stack[slab_sizeclass].pop();
if (chunk_record != nullptr)
{
auto slab = chunk_record->meta_common.chunk;
state.memory_in_stacks -= slab_size;
auto meta = reinterpret_cast<Metaslab*>(chunk_record);
#ifdef SNMALLOC_TRACING
std::cout << "Reuse slab:" << slab.unsafe_ptr() << " slab_sizeclass "
<< slab_sizeclass << " size " << slab_size
<< " memory in stacks " << state.memory_in_stacks
<< std::endl;
#endif
MetaEntry entry{meta, remote, sizeclass};
SharedStateHandle::Pagemap::set_metaentry(
&local_state, address_cast(slab), slab_size, entry);
return {slab, meta};
}
// Allocate a fresh slab as there are no available ones.
// First create meta-data
auto [slab, meta] = SharedStateHandle::alloc_chunk(
&local_state, slab_size, remote, sizeclass);
#ifdef SNMALLOC_TRACING
std::cout << "Create slab:" << slab.unsafe_ptr() << " slab_sizeclass "
<< slab_sizeclass << " size " << slab_size << std::endl;
#endif
state.add_peak_memory_usage(slab_size);
state.add_peak_memory_usage(sizeof(Metaslab));
// TODO handle bounded versus lazy pagemaps in stats
state.add_peak_memory_usage(
(slab_size / MIN_CHUNK_SIZE) * sizeof(MetaEntry));
return {slab, meta};
}
template<SNMALLOC_CONCEPT(ConceptBackendGlobals) SharedStateHandle>
SNMALLOC_SLOW_PATH static void dealloc(
typename SharedStateHandle::LocalState& local_state,
ChunkRecord* p,
size_t slab_sizeclass)
{
auto& state = SharedStateHandle::get_chunk_allocator_state(&local_state);
#ifdef SNMALLOC_TRACING
std::cout << "Return slab:" << p->meta_common.chunk.unsafe_ptr()
<< " slab_sizeclass " << slab_sizeclass << " size "
<< slab_sizeclass_to_size(slab_sizeclass)
<< " memory in stacks " << state.memory_in_stacks << std::endl;
#endif
state.chunk_stack[slab_sizeclass].push(p);
state.memory_in_stacks += slab_sizeclass_to_size(slab_sizeclass);
}
/**
* Provide a block of meta-data with size and align.
*
* Backend allocator may use guard pages and separate area of
* address space to protect this from corruption.
*/
template<
typename U,
SNMALLOC_CONCEPT(ConceptBackendGlobals) SharedStateHandle,
typename... Args>
static U* alloc_meta_data(
typename SharedStateHandle::LocalState* local_state, Args&&... args)
{
// Cache line align
size_t size = bits::align_up(sizeof(U), 64);
capptr::Chunk<void> p =
SharedStateHandle::template alloc_meta_data<U>(local_state, size);
if (p == nullptr)
return nullptr;
return new (p.unsafe_ptr()) U(std::forward<Args>(args)...);
}
};
} // namespace snmalloc