mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 00:15:08 +00:00

This patch adds two macros to declare per-type allocators: - JS_DECLARE_ALLOCATOR(TypeName) - JS_DEFINE_ALLOCATOR(TypeName) When used, they add a type-specific CellAllocator that the Heap will delegate allocation requests to. The result of this is that GC objects of the same type always end up within the same HeapBlock, drastically reducing the ability to perform type confusion attacks. It also improves HeapBlock utilization, since each block now has cells sized exactly to the type used within that block. (Previously we only had a handful of block sizes available, and most GC allocations ended up with a large amount of slack in their tails.) There is a small performance hit from this, but I'm sure we can make up for it elsewhere. Note that the old size-based allocators still exist, and we fall back to them for any type that doesn't have its own CellAllocator.
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/IntrusiveList.h>
|
|
#include <AK/NonnullOwnPtr.h>
|
|
#include <LibJS/Forward.h>
|
|
#include <LibJS/Heap/HeapBlock.h>
|
|
|
|
#define JS_DECLARE_ALLOCATOR(ClassName) \
|
|
static JS::TypeIsolatingCellAllocator<ClassName> cell_allocator;
|
|
|
|
#define JS_DEFINE_ALLOCATOR(ClassName) \
|
|
JS::TypeIsolatingCellAllocator<ClassName> ClassName::cell_allocator;
|
|
|
|
namespace JS {
|
|
|
|
class CellAllocator {
|
|
public:
|
|
explicit CellAllocator(size_t cell_size);
|
|
~CellAllocator() = default;
|
|
|
|
size_t cell_size() const { return m_cell_size; }
|
|
|
|
Cell* allocate_cell(Heap&);
|
|
|
|
template<typename Callback>
|
|
IterationDecision for_each_block(Callback callback)
|
|
{
|
|
for (auto& block : m_full_blocks) {
|
|
if (callback(block) == IterationDecision::Break)
|
|
return IterationDecision::Break;
|
|
}
|
|
for (auto& block : m_usable_blocks) {
|
|
if (callback(block) == IterationDecision::Break)
|
|
return IterationDecision::Break;
|
|
}
|
|
return IterationDecision::Continue;
|
|
}
|
|
|
|
void block_did_become_empty(Badge<Heap>, HeapBlock&);
|
|
void block_did_become_usable(Badge<Heap>, HeapBlock&);
|
|
|
|
private:
|
|
size_t const m_cell_size;
|
|
|
|
using BlockList = IntrusiveList<&HeapBlock::m_list_node>;
|
|
BlockList m_full_blocks;
|
|
BlockList m_usable_blocks;
|
|
};
|
|
|
|
template<typename T>
|
|
class TypeIsolatingCellAllocator {
|
|
public:
|
|
using CellType = T;
|
|
|
|
CellAllocator allocator { sizeof(T) };
|
|
};
|
|
|
|
}
|