2020-03-25 15:59:13 +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_CPPGC_ALLOCATION_H_
|
|
|
|
#define INCLUDE_CPPGC_ALLOCATION_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2020-05-07 20:36:03 +00:00
|
|
|
|
2020-03-25 15:59:13 +00:00
|
|
|
#include <atomic>
|
|
|
|
|
2020-05-07 20:36:03 +00:00
|
|
|
#include "cppgc/custom-space.h"
|
2020-04-20 18:19:29 +00:00
|
|
|
#include "cppgc/garbage-collected.h"
|
|
|
|
#include "cppgc/internal/api-constants.h"
|
|
|
|
#include "cppgc/internal/gc-info.h"
|
2020-03-25 15:59:13 +00:00
|
|
|
|
|
|
|
namespace cppgc {
|
2020-03-27 10:02:58 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
class MakeGarbageCollectedTraitBase;
|
|
|
|
|
2020-06-10 22:28:41 +00:00
|
|
|
namespace internal {
|
|
|
|
class ObjectAllocator;
|
|
|
|
} // namespace internal
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AllocationHandle is used to allocate garbage-collected objects.
|
|
|
|
*/
|
|
|
|
class AllocationHandle;
|
|
|
|
|
2020-03-25 15:59:13 +00:00
|
|
|
namespace internal {
|
|
|
|
|
2020-03-27 10:02:58 +00:00
|
|
|
class V8_EXPORT MakeGarbageCollectedTraitInternal {
|
|
|
|
protected:
|
|
|
|
static inline void MarkObjectAsFullyConstructed(const void* payload) {
|
|
|
|
// See api_constants for an explanation of the constants.
|
|
|
|
std::atomic<uint16_t>* atomic_mutable_bitfield =
|
|
|
|
reinterpret_cast<std::atomic<uint16_t>*>(
|
|
|
|
const_cast<uint16_t*>(reinterpret_cast<const uint16_t*>(
|
|
|
|
reinterpret_cast<const uint8_t*>(payload) -
|
|
|
|
api_constants::kFullyConstructedBitFieldOffsetFromPayload)));
|
2020-11-11 16:07:43 +00:00
|
|
|
atomic_mutable_bitfield->fetch_or(api_constants::kFullyConstructedBitMask,
|
|
|
|
std::memory_order_release);
|
2020-03-27 10:02:58 +00:00
|
|
|
}
|
|
|
|
|
2020-06-22 08:42:56 +00:00
|
|
|
static void* Allocate(cppgc::AllocationHandle& handle, size_t size,
|
|
|
|
GCInfoIndex index);
|
|
|
|
static void* Allocate(cppgc::AllocationHandle& handle, size_t size,
|
|
|
|
GCInfoIndex index, CustomSpaceIndex space_index);
|
2020-03-27 10:02:58 +00:00
|
|
|
|
|
|
|
friend class HeapObjectHeader;
|
|
|
|
};
|
2020-03-25 15:59:13 +00:00
|
|
|
|
|
|
|
} // namespace internal
|
2020-03-27 10:02:58 +00:00
|
|
|
|
2020-04-14 12:02:39 +00:00
|
|
|
/**
|
|
|
|
* Base trait that provides utilities for advancers users that have custom
|
|
|
|
* allocation needs (e.g., overriding size). It's expected that users override
|
|
|
|
* MakeGarbageCollectedTrait (see below) and inherit from
|
|
|
|
* MakeGarbageCollectedTraitBase and make use of the low-level primitives
|
|
|
|
* offered to allocate and construct an object.
|
|
|
|
*/
|
2020-03-27 10:02:58 +00:00
|
|
|
template <typename T>
|
|
|
|
class MakeGarbageCollectedTraitBase
|
|
|
|
: private internal::MakeGarbageCollectedTraitInternal {
|
2020-05-07 20:36:03 +00:00
|
|
|
private:
|
|
|
|
template <typename U, typename CustomSpace>
|
|
|
|
struct SpacePolicy {
|
2020-06-22 08:42:56 +00:00
|
|
|
static void* Allocate(AllocationHandle& handle, size_t size) {
|
2020-05-07 20:36:03 +00:00
|
|
|
// Custom space.
|
|
|
|
static_assert(std::is_base_of<CustomSpaceBase, CustomSpace>::value,
|
|
|
|
"Custom space must inherit from CustomSpaceBase.");
|
|
|
|
return internal::MakeGarbageCollectedTraitInternal::Allocate(
|
2020-06-10 22:28:41 +00:00
|
|
|
handle, size, internal::GCInfoTrait<T>::Index(),
|
2020-05-07 20:36:03 +00:00
|
|
|
CustomSpace::kSpaceIndex);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
struct SpacePolicy<U, void> {
|
2020-06-22 08:42:56 +00:00
|
|
|
static void* Allocate(AllocationHandle& handle, size_t size) {
|
2020-05-07 20:36:03 +00:00
|
|
|
// Default space.
|
|
|
|
return internal::MakeGarbageCollectedTraitInternal::Allocate(
|
2020-06-10 22:28:41 +00:00
|
|
|
handle, size, internal::GCInfoTrait<T>::Index());
|
2020-05-07 20:36:03 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-03-27 10:02:58 +00:00
|
|
|
protected:
|
2020-04-14 12:02:39 +00:00
|
|
|
/**
|
|
|
|
* Allocates memory for an object of type T.
|
|
|
|
*
|
2020-06-10 22:28:41 +00:00
|
|
|
* \param handle AllocationHandle identifying the heap to allocate the object
|
|
|
|
* on.
|
2020-04-14 12:02:39 +00:00
|
|
|
* \param size The size that should be reserved for the object.
|
|
|
|
* \returns the memory to construct an object of type T on.
|
|
|
|
*/
|
2020-06-22 08:42:56 +00:00
|
|
|
static void* Allocate(AllocationHandle& handle, size_t size) {
|
2020-06-10 22:28:41 +00:00
|
|
|
return SpacePolicy<T, typename SpaceTrait<T>::Space>::Allocate(handle,
|
|
|
|
size);
|
2020-03-27 10:02:58 +00:00
|
|
|
}
|
|
|
|
|
2020-04-14 12:02:39 +00:00
|
|
|
/**
|
|
|
|
* Marks an object as fully constructed, resulting in precise handling by the
|
|
|
|
* garbage collector.
|
|
|
|
*
|
|
|
|
* \param payload The base pointer the object is allocated at.
|
|
|
|
*/
|
2020-03-27 10:02:58 +00:00
|
|
|
static void MarkObjectAsFullyConstructed(const void* payload) {
|
|
|
|
internal::MakeGarbageCollectedTraitInternal::MarkObjectAsFullyConstructed(
|
|
|
|
payload);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-20 22:22:52 +00:00
|
|
|
/**
|
2020-11-11 16:58:24 +00:00
|
|
|
* Passed to MakeGarbageCollected to specify how many bytes should be appended
|
|
|
|
* to the allocated object.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* \code
|
|
|
|
* class InlinedArray final : public GarbageCollected<InlinedArray> {
|
|
|
|
* public:
|
|
|
|
* explicit InlinedArray(size_t bytes) : size(bytes), byte_array(this + 1) {}
|
|
|
|
* void Trace(Visitor*) const {}
|
|
|
|
|
|
|
|
* size_t size;
|
|
|
|
* char* byte_array;
|
|
|
|
* };
|
|
|
|
*
|
|
|
|
* auto* inlined_array = MakeGarbageCollected<InlinedArray(
|
|
|
|
* GetAllocationHandle(), AdditionalBytes(4), 4);
|
|
|
|
* for (size_t i = 0; i < 4; i++) {
|
|
|
|
* Process(inlined_array->byte_array[i]);
|
|
|
|
* }
|
|
|
|
* \endcode
|
2020-10-20 22:22:52 +00:00
|
|
|
*/
|
|
|
|
struct AdditionalBytes {
|
2020-11-11 16:58:24 +00:00
|
|
|
constexpr explicit AdditionalBytes(size_t bytes) : value(bytes) {}
|
2020-10-20 22:22:52 +00:00
|
|
|
const size_t value;
|
|
|
|
};
|
|
|
|
|
2020-04-14 12:02:39 +00:00
|
|
|
/**
|
|
|
|
* Default trait class that specifies how to construct an object of type T.
|
|
|
|
* Advanced users may override how an object is constructed using the utilities
|
|
|
|
* that are provided through MakeGarbageCollectedTraitBase.
|
|
|
|
*
|
|
|
|
* Any trait overriding construction must
|
2020-10-19 08:12:55 +00:00
|
|
|
* - allocate through `MakeGarbageCollectedTraitBase<T>::Allocate`;
|
2020-04-14 12:02:39 +00:00
|
|
|
* - mark the object as fully constructed using
|
2020-10-19 08:12:55 +00:00
|
|
|
* `MakeGarbageCollectedTraitBase<T>::MarkObjectAsFullyConstructed`;
|
2020-04-14 12:02:39 +00:00
|
|
|
*/
|
2020-03-27 10:02:58 +00:00
|
|
|
template <typename T>
|
|
|
|
class MakeGarbageCollectedTrait : public MakeGarbageCollectedTraitBase<T> {
|
|
|
|
public:
|
|
|
|
template <typename... Args>
|
2020-06-22 08:42:56 +00:00
|
|
|
static T* Call(AllocationHandle& handle, Args&&... args) {
|
2020-03-27 10:02:58 +00:00
|
|
|
static_assert(internal::IsGarbageCollectedType<T>::value,
|
|
|
|
"T needs to be a garbage collected object");
|
2020-04-01 15:15:38 +00:00
|
|
|
static_assert(
|
|
|
|
!internal::IsGarbageCollectedMixinType<T>::value ||
|
|
|
|
sizeof(T) <= internal::api_constants::kLargeObjectSizeThreshold,
|
|
|
|
"GarbageCollectedMixin may not be a large object");
|
2020-06-10 22:28:41 +00:00
|
|
|
void* memory =
|
|
|
|
MakeGarbageCollectedTraitBase<T>::Allocate(handle, sizeof(T));
|
2020-03-27 10:02:58 +00:00
|
|
|
T* object = ::new (memory) T(std::forward<Args>(args)...);
|
|
|
|
MakeGarbageCollectedTraitBase<T>::MarkObjectAsFullyConstructed(object);
|
|
|
|
return object;
|
|
|
|
}
|
2020-10-20 22:22:52 +00:00
|
|
|
|
|
|
|
template <typename... Args>
|
|
|
|
static T* Call(AllocationHandle& handle, AdditionalBytes additional_bytes,
|
|
|
|
Args&&... args) {
|
|
|
|
static_assert(internal::IsGarbageCollectedType<T>::value,
|
|
|
|
"T needs to be a garbage collected object");
|
|
|
|
static_assert(
|
|
|
|
!internal::IsGarbageCollectedMixinType<T>::value ||
|
|
|
|
sizeof(T) <= internal::api_constants::kLargeObjectSizeThreshold,
|
|
|
|
"GarbageCollectedMixin may not be a large object");
|
|
|
|
void* memory = MakeGarbageCollectedTraitBase<T>::Allocate(
|
|
|
|
handle, sizeof(T) + additional_bytes.value);
|
|
|
|
T* object = ::new (memory) T(std::forward<Args>(args)...);
|
|
|
|
MakeGarbageCollectedTraitBase<T>::MarkObjectAsFullyConstructed(object);
|
|
|
|
return object;
|
|
|
|
}
|
2020-03-27 10:02:58 +00:00
|
|
|
};
|
|
|
|
|
2020-05-05 07:12:03 +00:00
|
|
|
/**
|
|
|
|
* Allows users to specify a post-construction callback for specific types. The
|
|
|
|
* callback is invoked on the instance of type T right after it has been
|
|
|
|
* constructed. This can be useful when the callback requires a
|
|
|
|
* fully-constructed object to be able to dispatch to virtual methods.
|
|
|
|
*/
|
|
|
|
template <typename T, typename = void>
|
|
|
|
struct PostConstructionCallbackTrait {
|
|
|
|
static void Call(T*) {}
|
|
|
|
};
|
|
|
|
|
2020-04-14 12:02:39 +00:00
|
|
|
/**
|
|
|
|
* Constructs a managed object of type T where T transitively inherits from
|
|
|
|
* GarbageCollected.
|
|
|
|
*
|
|
|
|
* \param args List of arguments with which an instance of T will be
|
|
|
|
* constructed.
|
|
|
|
* \returns an instance of type T.
|
|
|
|
*/
|
2020-03-27 10:02:58 +00:00
|
|
|
template <typename T, typename... Args>
|
2020-06-22 08:42:56 +00:00
|
|
|
T* MakeGarbageCollected(AllocationHandle& handle, Args&&... args) {
|
2020-05-05 07:12:03 +00:00
|
|
|
T* object =
|
2020-06-10 22:28:41 +00:00
|
|
|
MakeGarbageCollectedTrait<T>::Call(handle, std::forward<Args>(args)...);
|
2020-05-05 07:12:03 +00:00
|
|
|
PostConstructionCallbackTrait<T>::Call(object);
|
|
|
|
return object;
|
2020-03-27 10:02:58 +00:00
|
|
|
}
|
|
|
|
|
2020-10-20 22:22:52 +00:00
|
|
|
/**
|
|
|
|
* Constructs a managed object of type T where T transitively inherits from
|
|
|
|
* GarbageCollected. Created objects will have additional bytes appended to
|
|
|
|
* it. Allocated memory would suffice for `sizeof(T) + additional_bytes`.
|
|
|
|
*
|
|
|
|
* \param additional_bytes Denotes how many bytes to append to T.
|
|
|
|
* \param args List of arguments with which an instance of T will be
|
|
|
|
* constructed.
|
|
|
|
* \returns an instance of type T.
|
|
|
|
*/
|
|
|
|
template <typename T, typename... Args>
|
|
|
|
T* MakeGarbageCollected(AllocationHandle& handle,
|
|
|
|
AdditionalBytes additional_bytes, Args&&... args) {
|
|
|
|
T* object = MakeGarbageCollectedTrait<T>::Call(handle, additional_bytes,
|
|
|
|
std::forward<Args>(args)...);
|
|
|
|
PostConstructionCallbackTrait<T>::Call(object);
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2020-03-25 15:59:13 +00:00
|
|
|
} // namespace cppgc
|
|
|
|
|
|
|
|
#endif // INCLUDE_CPPGC_ALLOCATION_H_
|