// 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/cppheap-pointer-table.h" #include "src/execution/isolate.h" #include "src/logging/counters.h" #include "src/sandbox/cppheap-pointer-table-inl.h" #ifdef V8_COMPRESS_POINTERS namespace v8 { namespace internal { // TODO(saelo): Reduce duplication with EPT::SweepAndCompact. uint32_t CppHeapPointerTable::SweepAndCompact(Space* space, Counters* counters) { … } void CppHeapPointerTable::ResolveEvacuationEntryDuringSweeping( uint32_t new_index, CppHeapPointerHandle* handle_location, uint32_t start_of_evacuation_area) { … } } // namespace internal } // namespace v8 #endif // V8_COMPRESS_POINTERS