#include "src/heap/memory-chunk-layout.h"
#include "src/common/globals.h"
#include "src/heap/marking.h"
#include "src/heap/memory-allocator.h"
#include "src/heap/mutable-page-metadata.h"
#include "src/objects/instruction-stream.h"
namespace v8 {
namespace internal {
intptr_t MemoryChunkLayout::ObjectStartOffsetInCodePage() { … }
size_t MemoryChunkLayout::AllocatableMemoryInCodePage() { … }
size_t MemoryChunkLayout::ObjectStartOffsetInDataPage() { … }
intptr_t MemoryChunkLayout::ObjectStartOffsetInReadOnlyPage() { … }
size_t MemoryChunkLayout::ObjectStartOffsetInMemoryChunk(
AllocationSpace space) { … }
size_t MemoryChunkLayout::AllocatableMemoryInDataPage() { … }
size_t MemoryChunkLayout::AllocatableMemoryInReadOnlyPage() { … }
size_t MemoryChunkLayout::AllocatableMemoryInMemoryChunk(
AllocationSpace space) { … }
int MemoryChunkLayout::MaxRegularCodeObjectSize() { … }
}
}