2020-07-07 09:59:51 +00:00
|
|
|
// 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 INCLUDE_V8_CPPGC_H_
|
|
|
|
#define INCLUDE_V8_CPPGC_H_
|
|
|
|
|
2021-02-11 12:09:29 +00:00
|
|
|
#include <cstdint>
|
2020-11-15 10:36:09 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
|
2021-02-26 16:22:54 +00:00
|
|
|
#include "cppgc/common.h"
|
2020-11-15 10:36:09 +00:00
|
|
|
#include "cppgc/custom-space.h"
|
2021-02-11 13:57:15 +00:00
|
|
|
#include "cppgc/heap-statistics.h"
|
2020-11-30 21:30:55 +00:00
|
|
|
#include "cppgc/internal/write-barrier.h"
|
2020-07-07 09:59:51 +00:00
|
|
|
#include "cppgc/visitor.h"
|
2020-07-10 14:50:36 +00:00
|
|
|
#include "v8-internal.h" // NOLINT(build/include_directory)
|
2020-11-30 21:30:55 +00:00
|
|
|
#include "v8.h" // NOLINT(build/include_directory)
|
2020-07-07 09:59:51 +00:00
|
|
|
|
2020-11-15 10:36:09 +00:00
|
|
|
namespace cppgc {
|
|
|
|
class AllocationHandle;
|
2020-11-24 11:52:42 +00:00
|
|
|
class HeapHandle;
|
2020-11-15 10:36:09 +00:00
|
|
|
} // namespace cppgc
|
|
|
|
|
2020-07-07 09:59:51 +00:00
|
|
|
namespace v8 {
|
|
|
|
|
2020-11-15 10:36:09 +00:00
|
|
|
namespace internal {
|
|
|
|
class CppHeap;
|
|
|
|
} // namespace internal
|
|
|
|
|
2021-05-07 16:25:58 +00:00
|
|
|
class CustomSpaceStatisticsReceiver;
|
|
|
|
|
2021-02-11 12:09:29 +00:00
|
|
|
/**
|
|
|
|
* Describes how V8 wrapper objects maintain references to garbage-collected C++
|
|
|
|
* objects.
|
|
|
|
*/
|
|
|
|
struct WrapperDescriptor final {
|
|
|
|
/**
|
|
|
|
* The index used on `v8::Ojbect::SetAlignedPointerFromInternalField()` and
|
|
|
|
* related APIs to add additional data to an object which is used to identify
|
|
|
|
* JS->C++ references.
|
|
|
|
*/
|
|
|
|
using InternalFieldIndex = int;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unknown embedder id. The value is reserved for internal usages and must not
|
|
|
|
* be used with `CppHeap`.
|
|
|
|
*/
|
|
|
|
static constexpr uint16_t kUnknownEmbedderId = UINT16_MAX;
|
|
|
|
|
|
|
|
constexpr WrapperDescriptor(InternalFieldIndex wrappable_type_index,
|
|
|
|
InternalFieldIndex wrappable_instance_index,
|
|
|
|
uint16_t embedder_id_for_garbage_collected)
|
|
|
|
: wrappable_type_index(wrappable_type_index),
|
|
|
|
wrappable_instance_index(wrappable_instance_index),
|
|
|
|
embedder_id_for_garbage_collected(embedder_id_for_garbage_collected) {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Index of the wrappable type.
|
|
|
|
*/
|
|
|
|
InternalFieldIndex wrappable_type_index;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Index of the wrappable instance.
|
|
|
|
*/
|
|
|
|
InternalFieldIndex wrappable_instance_index;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Embedder id identifying instances of garbage-collected objects. It is
|
|
|
|
* expected that the first field of the wrappable type is a uint16_t holding
|
|
|
|
* the id. Only references to instances of wrappables types with an id of
|
|
|
|
* `embedder_id_for_garbage_collected` will be considered by CppHeap.
|
|
|
|
*/
|
|
|
|
uint16_t embedder_id_for_garbage_collected;
|
|
|
|
};
|
|
|
|
|
2020-11-15 10:36:09 +00:00
|
|
|
struct V8_EXPORT CppHeapCreateParams {
|
2021-02-22 02:49:48 +00:00
|
|
|
CppHeapCreateParams(const CppHeapCreateParams&) = delete;
|
|
|
|
CppHeapCreateParams& operator=(const CppHeapCreateParams&) = delete;
|
|
|
|
|
2020-11-15 10:36:09 +00:00
|
|
|
std::vector<std::unique_ptr<cppgc::CustomSpaceBase>> custom_spaces;
|
2021-02-11 12:09:29 +00:00
|
|
|
WrapperDescriptor wrapper_descriptor;
|
2020-11-15 10:36:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A heap for allocating managed C++ objects.
|
|
|
|
*/
|
|
|
|
class V8_EXPORT CppHeap {
|
|
|
|
public:
|
2021-02-09 09:02:40 +00:00
|
|
|
static std::unique_ptr<CppHeap> Create(v8::Platform* platform,
|
|
|
|
const CppHeapCreateParams& params);
|
|
|
|
|
2020-11-15 10:36:09 +00:00
|
|
|
virtual ~CppHeap() = default;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \returns the opaque handle for allocating objects using
|
|
|
|
* `MakeGarbageCollected()`.
|
|
|
|
*/
|
|
|
|
cppgc::AllocationHandle& GetAllocationHandle();
|
|
|
|
|
2020-11-24 11:52:42 +00:00
|
|
|
/**
|
|
|
|
* \returns the opaque heap handle which may be used to refer to this heap in
|
|
|
|
* other APIs. Valid as long as the underlying `CppHeap` is alive.
|
|
|
|
*/
|
|
|
|
cppgc::HeapHandle& GetHeapHandle();
|
|
|
|
|
2021-01-18 20:13:14 +00:00
|
|
|
/**
|
|
|
|
* Terminate clears all roots and performs multiple garbage collections to
|
|
|
|
* reclaim potentially newly created objects in destructors.
|
|
|
|
*
|
|
|
|
* After this call, object allocation is prohibited.
|
|
|
|
*/
|
|
|
|
void Terminate();
|
|
|
|
|
2021-02-11 13:57:15 +00:00
|
|
|
/**
|
|
|
|
* \param detail_level specifies whether should return detailed
|
|
|
|
* statistics or only brief summary statistics.
|
|
|
|
* \returns current CppHeap statistics regarding memory consumption
|
|
|
|
* and utilization.
|
|
|
|
*/
|
|
|
|
cppgc::HeapStatistics CollectStatistics(
|
|
|
|
cppgc::HeapStatistics::DetailLevel detail_level);
|
|
|
|
|
2021-05-07 16:25:58 +00:00
|
|
|
/**
|
|
|
|
* Collects statistics for the given spaces and reports them to the receiver.
|
|
|
|
*
|
|
|
|
* \param custom_spaces a collection of custom space indicies.
|
|
|
|
* \param receiver an object that gets the results.
|
|
|
|
*/
|
|
|
|
void CollectCustomSpaceStatisticsAtLastGC(
|
|
|
|
std::vector<cppgc::CustomSpaceIndex> custom_spaces,
|
|
|
|
std::unique_ptr<CustomSpaceStatisticsReceiver> receiver);
|
|
|
|
|
2021-02-26 16:22:54 +00:00
|
|
|
/**
|
|
|
|
* Enables a detached mode that allows testing garbage collection using
|
|
|
|
* `cppgc::testing` APIs. Once used, the heap cannot be attached to an
|
|
|
|
* `Isolate` anymore.
|
|
|
|
*/
|
|
|
|
void EnableDetachedGarbageCollectionsForTesting();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a stop-the-world garbage collection for testing purposes.
|
|
|
|
*
|
|
|
|
* \param stack_state The stack state to assume for the garbage collection.
|
|
|
|
*/
|
|
|
|
void CollectGarbageForTesting(cppgc::EmbedderStackState stack_state);
|
|
|
|
|
2020-11-15 10:36:09 +00:00
|
|
|
private:
|
|
|
|
CppHeap() = default;
|
|
|
|
|
|
|
|
friend class internal::CppHeap;
|
|
|
|
};
|
|
|
|
|
2020-07-07 09:59:51 +00:00
|
|
|
class JSVisitor : public cppgc::Visitor {
|
|
|
|
public:
|
|
|
|
explicit JSVisitor(cppgc::Visitor::Key key) : cppgc::Visitor(key) {}
|
|
|
|
|
2020-10-27 12:50:20 +00:00
|
|
|
void Trace(const TracedReferenceBase& ref) {
|
2020-10-02 16:28:57 +00:00
|
|
|
if (ref.IsEmptyThreadSafe()) return;
|
2020-07-07 09:59:51 +00:00
|
|
|
Visit(ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
using cppgc::Visitor::Visit;
|
|
|
|
|
2020-10-27 12:50:20 +00:00
|
|
|
virtual void Visit(const TracedReferenceBase& ref) {}
|
2020-07-07 09:59:51 +00:00
|
|
|
};
|
|
|
|
|
2020-11-30 21:30:55 +00:00
|
|
|
/**
|
|
|
|
* **DO NOT USE: Use the appropriate managed types.**
|
|
|
|
*
|
|
|
|
* Consistency helpers that aid in maintaining a consistent internal state of
|
|
|
|
* the garbage collector.
|
|
|
|
*/
|
2021-01-21 11:03:56 +00:00
|
|
|
class V8_EXPORT JSHeapConsistency final {
|
2020-11-30 21:30:55 +00:00
|
|
|
public:
|
|
|
|
using WriteBarrierParams = cppgc::internal::WriteBarrier::Params;
|
|
|
|
using WriteBarrierType = cppgc::internal::WriteBarrier::Type;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the required write barrier type for a specific write.
|
|
|
|
*
|
2021-01-21 11:03:56 +00:00
|
|
|
* Note: Handling for C++ to JS references.
|
|
|
|
*
|
2020-11-30 21:30:55 +00:00
|
|
|
* \param ref The reference being written to.
|
|
|
|
* \param params Parameters that may be used for actual write barrier calls.
|
|
|
|
* Only filled if return value indicates that a write barrier is needed. The
|
|
|
|
* contents of the `params` are an implementation detail.
|
2021-02-05 14:05:48 +00:00
|
|
|
* \param callback Callback returning the corresponding heap handle. The
|
|
|
|
* callback is only invoked if the heap cannot otherwise be figured out. The
|
|
|
|
* callback must not allocate.
|
2020-11-30 21:30:55 +00:00
|
|
|
* \returns whether a write barrier is needed and which barrier to invoke.
|
|
|
|
*/
|
2021-02-05 14:05:48 +00:00
|
|
|
template <typename HeapHandleCallback>
|
|
|
|
static V8_INLINE WriteBarrierType
|
|
|
|
GetWriteBarrierType(const TracedReferenceBase& ref,
|
|
|
|
WriteBarrierParams& params, HeapHandleCallback callback) {
|
2020-11-30 21:30:55 +00:00
|
|
|
if (ref.IsEmpty()) return WriteBarrierType::kNone;
|
2021-02-05 14:05:48 +00:00
|
|
|
|
2021-02-17 17:21:07 +00:00
|
|
|
if (V8_LIKELY(!cppgc::internal::WriteBarrier::
|
2021-02-05 14:05:48 +00:00
|
|
|
IsAnyIncrementalOrConcurrentMarking())) {
|
|
|
|
return cppgc::internal::WriteBarrier::Type::kNone;
|
|
|
|
}
|
|
|
|
cppgc::HeapHandle& handle = callback();
|
|
|
|
if (!cppgc::subtle::HeapState::IsMarking(handle)) {
|
|
|
|
return cppgc::internal::WriteBarrier::Type::kNone;
|
|
|
|
}
|
|
|
|
params.heap = &handle;
|
|
|
|
#if V8_ENABLE_CHECKS
|
|
|
|
params.type = cppgc::internal::WriteBarrier::Type::kMarking;
|
|
|
|
#endif // !V8_ENABLE_CHECKS
|
|
|
|
return cppgc::internal::WriteBarrier::Type::kMarking;
|
2020-11-30 21:30:55 +00:00
|
|
|
}
|
|
|
|
|
2021-01-21 11:03:56 +00:00
|
|
|
/**
|
|
|
|
* Gets the required write barrier type for a specific write.
|
|
|
|
*
|
|
|
|
* Note: Handling for JS to C++ references.
|
|
|
|
*
|
|
|
|
* \param wrapper The wrapper that has been written into.
|
|
|
|
* \param wrapper_index The wrapper index in `wrapper` that has been written
|
|
|
|
* into.
|
|
|
|
* \param wrappable The value that was written.
|
|
|
|
* \param params Parameters that may be used for actual write barrier calls.
|
|
|
|
* Only filled if return value indicates that a write barrier is needed. The
|
|
|
|
* contents of the `params` are an implementation detail.
|
2021-02-05 14:05:48 +00:00
|
|
|
* \param callback Callback returning the corresponding heap handle. The
|
|
|
|
* callback is only invoked if the heap cannot otherwise be figured out. The
|
|
|
|
* callback must not allocate.
|
2021-01-21 11:03:56 +00:00
|
|
|
* \returns whether a write barrier is needed and which barrier to invoke.
|
|
|
|
*/
|
2021-02-05 14:05:48 +00:00
|
|
|
template <typename HeapHandleCallback>
|
|
|
|
static V8_INLINE WriteBarrierType GetWriteBarrierType(
|
|
|
|
v8::Local<v8::Object>& wrapper, int wrapper_index, const void* wrappable,
|
|
|
|
WriteBarrierParams& params, HeapHandleCallback callback) {
|
2021-01-21 11:03:56 +00:00
|
|
|
#if V8_ENABLE_CHECKS
|
|
|
|
CheckWrapper(wrapper, wrapper_index, wrappable);
|
|
|
|
#endif // V8_ENABLE_CHECKS
|
|
|
|
return cppgc::internal::WriteBarrier::
|
2021-02-05 14:05:48 +00:00
|
|
|
GetWriteBarrierTypeForExternallyReferencedObject(wrappable, params,
|
|
|
|
callback);
|
2021-01-21 11:03:56 +00:00
|
|
|
}
|
|
|
|
|
2020-11-30 21:30:55 +00:00
|
|
|
/**
|
|
|
|
* Conservative Dijkstra-style write barrier that processes an object if it
|
|
|
|
* has not yet been processed.
|
|
|
|
*
|
|
|
|
* \param params The parameters retrieved from `GetWriteBarrierType()`.
|
|
|
|
* \param ref The reference being written to.
|
|
|
|
*/
|
|
|
|
static V8_INLINE void DijkstraMarkingBarrier(const WriteBarrierParams& params,
|
|
|
|
cppgc::HeapHandle& heap_handle,
|
|
|
|
const TracedReferenceBase& ref) {
|
|
|
|
cppgc::internal::WriteBarrier::CheckParams(WriteBarrierType::kMarking,
|
|
|
|
params);
|
|
|
|
DijkstraMarkingBarrierSlow(heap_handle, ref);
|
|
|
|
}
|
|
|
|
|
2021-01-21 11:03:56 +00:00
|
|
|
/**
|
|
|
|
* Conservative Dijkstra-style write barrier that processes an object if it
|
|
|
|
* has not yet been processed.
|
|
|
|
*
|
|
|
|
* \param params The parameters retrieved from `GetWriteBarrierType()`.
|
|
|
|
* \param object The pointer to the object. May be an interior pointer to a
|
|
|
|
* an interface of the actual object.
|
|
|
|
*/
|
|
|
|
static V8_INLINE void DijkstraMarkingBarrier(const WriteBarrierParams& params,
|
|
|
|
cppgc::HeapHandle& heap_handle,
|
|
|
|
const void* object) {
|
|
|
|
cppgc::internal::WriteBarrier::DijkstraMarkingBarrier(params, object);
|
|
|
|
}
|
|
|
|
|
2020-11-30 21:30:55 +00:00
|
|
|
/**
|
|
|
|
* Generational barrier for maintaining consistency when running with multiple
|
|
|
|
* generations.
|
|
|
|
*
|
|
|
|
* \param params The parameters retrieved from `GetWriteBarrierType()`.
|
|
|
|
* \param ref The reference being written to.
|
|
|
|
*/
|
|
|
|
static V8_INLINE void GenerationalBarrier(const WriteBarrierParams& params,
|
|
|
|
const TracedReferenceBase& ref) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
JSHeapConsistency() = delete;
|
|
|
|
|
2021-01-21 11:03:56 +00:00
|
|
|
static void CheckWrapper(v8::Local<v8::Object>&, int, const void*);
|
|
|
|
|
2020-11-30 21:30:55 +00:00
|
|
|
static void DijkstraMarkingBarrierSlow(cppgc::HeapHandle&,
|
|
|
|
const TracedReferenceBase& ref);
|
|
|
|
};
|
|
|
|
|
2021-05-07 16:25:58 +00:00
|
|
|
/**
|
|
|
|
* Provided as input to `CppHeap::CollectCustomSpaceStatisticsAtLastGC()`.
|
|
|
|
*
|
|
|
|
* Its method is invoked with the results of the statistic collection.
|
|
|
|
*/
|
|
|
|
class CustomSpaceStatisticsReceiver {
|
|
|
|
public:
|
|
|
|
virtual ~CustomSpaceStatisticsReceiver() = default;
|
|
|
|
/**
|
|
|
|
* Reports the size of a space at the last GC. It is called for each space
|
|
|
|
* that was requested in `CollectCustomSpaceStatisticsAtLastGC()`.
|
|
|
|
*
|
|
|
|
* \param space_index The index of the space.
|
|
|
|
* \param bytes The total size of live objects in the space at the last GC.
|
|
|
|
* It is zero if there was no GC yet.
|
|
|
|
*/
|
|
|
|
virtual void AllocatedBytes(cppgc::CustomSpaceIndex space_index,
|
|
|
|
size_t bytes) = 0;
|
|
|
|
};
|
|
|
|
|
2020-07-07 09:59:51 +00:00
|
|
|
} // namespace v8
|
|
|
|
|
|
|
|
namespace cppgc {
|
|
|
|
|
2020-10-15 09:57:00 +00:00
|
|
|
template <typename T>
|
2020-10-27 12:50:20 +00:00
|
|
|
struct TraceTrait<v8::TracedReference<T>> {
|
|
|
|
static void Trace(Visitor* visitor, const v8::TracedReference<T>* self) {
|
2020-07-07 09:59:51 +00:00
|
|
|
static_cast<v8::JSVisitor*>(visitor)->Trace(*self);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace cppgc
|
|
|
|
|
|
|
|
#endif // INCLUDE_V8_CPPGC_H_
|