| // 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_PREFINALIZER_HANDLER_H_ |
| #define V8_HEAP_CPPGC_PREFINALIZER_HANDLER_H_ |
| #include "include/cppgc/prefinalizer.h" |
| class PreFinalizerHandler final { |
| cppgc::internal::PreFinalizerRegistrationDispatcher::PreFinalizer; |
| void RegisterPrefinalizer(PreFinalizer pre_finalizer); |
| void InvokePreFinalizers(); |
| // Checks that the current thread is the thread that created the heap. |
| bool CurrentThreadIsCreationThread(); |
| // Pre-finalizers are called in the reverse order in which they are |
| // registered by the constructors (including constructors of Mixin |
| // objects) for an object, by processing the ordered_pre_finalizers_ |
| std::vector<PreFinalizer> ordered_pre_finalizers_; |
| #endif // V8_HEAP_CPPGC_PREFINALIZER_HANDLER_H_ |