// 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. #ifndef V8_HEAP_CPPGC_FREE_LIST_H_ #define V8_HEAP_CPPGC_FREE_LIST_H_ #include <array> #include "include/cppgc/heap-statistics.h" #include "src/base/macros.h" #include "src/base/sanitizer/asan.h" #include "src/heap/cppgc/globals.h" #include "src/heap/cppgc/heap-object-header.h" namespace cppgc { namespace internal { class Filler : public HeapObjectHeader { … }; class V8_EXPORT_PRIVATE FreeList { … }; // static Filler& Filler::CreateAt(void* memory, size_t size) { … } } // namespace internal } // namespace cppgc #endif // V8_HEAP_CPPGC_FREE_LIST_H_