mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 03:57:15 +02:00
Before this change, we'd use the system page size as the HeapBlock size. This caused it to vary on different platforms, going as low as 4 KiB on most Linux systems. To make this work, we now use posix_memalign() to ensure we get size-aligned allocations on every platform. Also nice: HeapBlock::BLOCK_SIZE is now a constant.
39 lines
745 B
C++
39 lines
745 B
C++
/*
|
|
* Copyright (c) 2020-2025, Andreas Kling <andreas@ladybird.org>
|
|
* Copyright (c) 2020-2023, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <LibGC/Export.h>
|
|
#include <LibGC/Forward.h>
|
|
|
|
namespace GC {
|
|
|
|
class GC_API HeapBlockBase {
|
|
AK_MAKE_NONMOVABLE(HeapBlockBase);
|
|
AK_MAKE_NONCOPYABLE(HeapBlockBase);
|
|
|
|
public:
|
|
static constexpr size_t BLOCK_SIZE = 16 * KiB;
|
|
static HeapBlockBase* from_cell(Cell const* cell)
|
|
{
|
|
return reinterpret_cast<HeapBlockBase*>(bit_cast<FlatPtr>(cell) & ~(BLOCK_SIZE - 1));
|
|
}
|
|
|
|
Heap& heap() { return m_heap; }
|
|
|
|
protected:
|
|
HeapBlockBase(Heap& heap)
|
|
: m_heap(heap)
|
|
{
|
|
}
|
|
|
|
Heap& m_heap;
|
|
};
|
|
|
|
}
|