chromium/v8/src/heap/memory-chunk-layout.cc

// Copyright 2020 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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() {}

}  // namespace internal
}  // namespace v8