chromium/v8/src/wasm/wasm-code-pointer-table.cc

// Copyright 2024 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/wasm/wasm-code-pointer-table.h"

#include "src/sandbox/external-entity-table-inl.h"
#include "src/wasm/wasm-code-pointer-table-inl.h"

namespace v8::internal::wasm {

void WasmCodePointerTable::Initialize() {}

void WasmCodePointerTable::TearDown() {}

DEFINE_LAZY_LEAKY_OBJECT_GETTER()

std::vector<uint32_t> WasmCodePointerTable::FreelistToVector(
    WasmCodePointerTable::FreelistHead freelist) {}

WasmCodePointerTable::FreelistHead WasmCodePointerTable::VectorToFreelist(
    std::vector<uint32_t> entries) {}

void WasmCodePointerTable::SweepSegments(size_t threshold) {}

}  // namespace v8::internal::wasm