chromium/v8/src/sandbox/external-buffer-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/sandbox/external-buffer-table.h"

#include "src/execution/isolate.h"
#include "src/logging/counters.h"
#include "src/sandbox/external-buffer-table-inl.h"

#ifdef V8_ENABLE_SANDBOX

namespace v8 {
namespace internal {

// TODO(v8:14585): Reduce duplication with EPT::SweepAndCompact.
uint32_t ExternalBufferTable::SweepAndCompact(Space* space,
                                              Counters* counters) {}

bool ExternalBufferTable::TryResolveEvacuationEntryDuringSweeping(
    uint32_t new_index, ExternalBufferHandle* handle_location,
    uint32_t start_of_evacuation_area) {}

}  // namespace internal
}  // namespace v8

#endif  // V8_ENABLE_SANDBOX