chromium/v8/src/heap/page-metadata-inl.h

// Copyright 2023 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.

#ifndef V8_HEAP_PAGE_METADATA_INL_H_
#define V8_HEAP_PAGE_METADATA_INL_H_

#include "src/heap/memory-chunk-inl.h"
#include "src/heap/page-metadata.h"
#include "src/heap/paged-spaces.h"
#include "src/heap/spaces.h"

namespace v8 {
namespace internal {

// static
PageMetadata* PageMetadata::FromAddress(Address addr) {}

// static
PageMetadata* PageMetadata::FromHeapObject(Tagged<HeapObject> o) {}

// static
PageMetadata* PageMetadata::FromAllocationAreaAddress(Address address) {}

template <typename Callback>
void PageMetadata::ForAllFreeListCategories(Callback callback) {}

void PageMetadata::MarkEvacuationCandidate() {}

void PageMetadata::ClearEvacuationCandidate() {}

}  // namespace internal
}  // namespace v8

#endif  // V8_HEAP_PAGE_METADATA_INL_H_