2021-10-10 11:10:43 +02:00
|
|
|
// Copyright 2021 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_TRACED_HANDLE_H_
|
|
|
|
#define INCLUDE_V8_TRACED_HANDLE_H_
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
#include <memory>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "v8-internal.h" // NOLINT(build/include_directory)
|
|
|
|
#include "v8-local-handle.h" // NOLINT(build/include_directory)
|
|
|
|
#include "v8-weak-callback-info.h" // NOLINT(build/include_directory)
|
|
|
|
#include "v8config.h" // NOLINT(build/include_directory)
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
|
|
|
|
class Value;
|
|
|
|
|
|
|
|
namespace internal {
|
2022-01-18 11:07:27 +01:00
|
|
|
|
2021-10-10 11:10:43 +02:00
|
|
|
class BasicTracedReferenceExtractor;
|
|
|
|
|
2024-03-30 09:54:35 +01:00
|
|
|
enum class TracedReferenceStoreMode {
|
2022-01-18 11:07:27 +01:00
|
|
|
kInitializingStore,
|
|
|
|
kAssigningStore,
|
|
|
|
};
|
|
|
|
|
2024-03-30 09:54:35 +01:00
|
|
|
enum class TracedReferenceHandling {
|
|
|
|
kDefault, // See EmbedderRootsHandler::IsRoot().
|
|
|
|
kDroppable
|
|
|
|
};
|
|
|
|
|
2025-01-30 16:35:04 +01:00
|
|
|
V8_EXPORT Address* GlobalizeTracedReference(
|
|
|
|
Isolate* isolate, Address value, Address* slot,
|
|
|
|
TracedReferenceStoreMode store_mode,
|
|
|
|
TracedReferenceHandling reference_handling);
|
|
|
|
V8_EXPORT void MoveTracedReference(Address** from, Address** to);
|
|
|
|
V8_EXPORT void CopyTracedReference(const Address* const* from, Address** to);
|
|
|
|
V8_EXPORT void DisposeTracedReference(Address* global_handle);
|
2022-01-18 11:07:27 +01:00
|
|
|
|
|
|
|
} // namespace internal
|
2021-10-10 11:10:43 +02:00
|
|
|
|
2023-10-05 08:46:07 +02:00
|
|
|
/**
|
|
|
|
* An indirect handle, where the indirect pointer points to a GlobalHandles
|
|
|
|
* node.
|
|
|
|
*/
|
2024-03-30 09:54:35 +01:00
|
|
|
class TracedReferenceBase : public api_internal::IndirectHandleBase {
|
2021-10-10 11:10:43 +02:00
|
|
|
public:
|
2025-01-30 16:35:04 +01:00
|
|
|
static_assert(sizeof(std::atomic<internal::Address*>) ==
|
|
|
|
sizeof(internal::Address*));
|
|
|
|
|
2021-10-10 11:10:43 +02:00
|
|
|
/**
|
|
|
|
* If non-empty, destroy the underlying storage cell. |IsEmpty| will return
|
|
|
|
* true after this call.
|
|
|
|
*/
|
|
|
|
V8_INLINE void Reset();
|
|
|
|
|
|
|
|
/**
|
2024-08-14 20:41:00 +02:00
|
|
|
* Construct a Local<Data> from this handle.
|
2021-10-10 11:10:43 +02:00
|
|
|
*/
|
2024-08-14 20:41:00 +02:00
|
|
|
V8_INLINE Local<Data> Get(Isolate* isolate) const {
|
|
|
|
if (IsEmpty()) return Local<Data>();
|
|
|
|
return Local<Data>::New(isolate, this->value<Data>());
|
2021-10-10 11:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if this TracedReference is empty, i.e., has not been
|
|
|
|
* assigned an object. This version of IsEmpty is thread-safe.
|
|
|
|
*/
|
2025-01-30 16:35:04 +01:00
|
|
|
bool IsEmptyThreadSafe() const { return GetSlotThreadSafe() == nullptr; }
|
2021-10-10 11:10:43 +02:00
|
|
|
|
|
|
|
protected:
|
2023-10-05 08:46:07 +02:00
|
|
|
V8_INLINE TracedReferenceBase() = default;
|
|
|
|
|
2021-10-10 11:10:43 +02:00
|
|
|
/**
|
|
|
|
* Update this reference in a thread-safe way.
|
|
|
|
*/
|
2025-01-30 16:35:04 +01:00
|
|
|
void SetSlotThreadSafe(internal::Address* new_val) {
|
|
|
|
reinterpret_cast<std::atomic<internal::Address*>*>(&slot())->store(
|
2021-10-10 11:10:43 +02:00
|
|
|
new_val, std::memory_order_relaxed);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get this reference in a thread-safe way
|
|
|
|
*/
|
2025-01-30 16:35:04 +01:00
|
|
|
const internal::Address* GetSlotThreadSafe() const {
|
|
|
|
return reinterpret_cast<const std::atomic<internal::Address*>*>(&slot())
|
|
|
|
->load(std::memory_order_relaxed);
|
2021-10-10 11:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
V8_EXPORT void CheckValue() const;
|
|
|
|
|
|
|
|
friend class internal::BasicTracedReferenceExtractor;
|
|
|
|
template <typename F>
|
|
|
|
friend class Local;
|
|
|
|
template <typename U>
|
|
|
|
friend bool operator==(const TracedReferenceBase&, const Local<U>&);
|
|
|
|
friend bool operator==(const TracedReferenceBase&,
|
|
|
|
const TracedReferenceBase&);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A traced handle with copy and move semantics. The handle is to be used
|
2023-03-30 12:11:08 +02:00
|
|
|
* together as part of GarbageCollected objects (see v8-cppgc.h) or from stack
|
|
|
|
* and specifies edges from C++ objects to JavaScript.
|
2021-10-10 11:10:43 +02:00
|
|
|
*
|
|
|
|
* The exact semantics are:
|
2023-03-30 12:11:08 +02:00
|
|
|
* - Tracing garbage collections using CppHeap.
|
2021-10-10 11:10:43 +02:00
|
|
|
* - Non-tracing garbage collections refer to
|
|
|
|
* |v8::EmbedderRootsHandler::IsRoot()| whether the handle should
|
|
|
|
* be treated as root or not.
|
|
|
|
*
|
deps: V8: cherry-pick semver-major commits from 10.2
Includes the following commits:
commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Remove dynamic map checks and custom deoptimization kinds
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
Fixed: v8:12552
Change-Id: I492cf1667e0f54586690b2f72a65ea804224b840
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3401585
commit f52f934119635058b179c2359fe070b8ee0f9233
PPC/s390: Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Original Commit Message:
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
R=jgruber@chromium.org, joransiu@ca.ibm.com, junyan@redhat.com, midawson@redhat.com
BUG=
LOG=N
Change-Id: I64476f73810774c2c592231d82c4a2cbfa2bf94e
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3537881
commit 38940b70986da6b43d18cb8cf8f0a3be36ca9010
[loong64][mips] Remove dynamic map checks and custom deoptimization kinds
Port commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Fixed: v8:12552
Change-Id: Ic2fbded9a662ed840a0350e3ce049e147fbf03a0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3541527
commit da5b5f66a6bd27df6249602378300c6961bc62b4
[riscv64] Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Bug: v8:12552
Change-Id: I73e76fc5cc8905a0fbfc801b2f794735866d19e8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3544725
commit ffae028b37991566c080c5528463f7d16017668c
Forward deprecation for resurrecting finalizer
Bug: v8:12672
Change-Id: Ib4f53086436e028b4ea32fbc960f57e91709d184
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532256
commit f6386018d472665e36d662c8b159d95325999d69
[api] Remove TracedGlobal<>
Remove deprecated TracedGlobal<>, greatly simplifying handling of
traced references in general.
Also saves a word per v8::TracedReference as there's no need to keep a
possible callback around.
Bug: v8:12603
Change-Id: Ice35d7906775b912d02e97a27a722b3e1cec28d9
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532251
commit a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Deprecate some signature checks
Deprecate signature checks in
* Template::SetNativeDataProperty
* ObjectTemplate::SetAccessor
These are not used in Chrome and require some complicated check in the IC code, which we want to remove.
Change-Id: I413fafc8658e922fd590e7fe200600a624f019a6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3557253
commit cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Deprecate signature checks in Set{Accessor,NativeDataProperty}
Change from V8_DEPRECATE_SOON to V8_DEPRECATED. It turned out that we
don't have to make changes in chrome code, so we can go to deprecated
right away.
Bug: chromium:1310790
Change-Id: I1bd529536d3a0098f11f13b3e44fe3dbc80eed04
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3571897
commit 9238afb0c0ee52c9111a7e9f2f055137628771ad
Allow embedder to set global OOM handler
Embedders can currently specify a callback for OOM errors during
Isolate initialization. However, there are cases where an OOM error can
be thrown in a context where we don't have access to an Isolate, for
example on a task posted to a worker thread. This CL introduces an
initialization API to allow the embedder to specify a process-wide OOM
callback.
Bug: chromium:614440
Change-Id: I326753d80767679f677e85104d9edeef92e19086
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3561916
commit ca51ae3ac8b468509603633adb6ee3b3be9306ec
[api][profiler] Get StartProfiling, StopProfiling to accept integer ID rather than string
This CL adds support for interacting with CpuProfile with their integer
id.
A String ID is problematic because it forces an allocation when stopping
or cancelling a Profiler which can happen during a GC when this
is not allowed.
Change-Id: I9a8e754bd67214be0bbc5ca051bcadf52bf71a68
Bug: chromium:1297283
Co-Authored-By: Nicolas Dubus <nicodubus@fb.com>
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3522896
Refs: https://github.com/v8/v8/commit/b2978927d8a96ebc814cccbc5a9f1c35910ee621
Refs: https://github.com/v8/v8/commit/f52f934119635058b179c2359fe070b8ee0f9233
Refs: https://github.com/v8/v8/commit/38940b70986da6b43d18cb8cf8f0a3be36ca9010
Refs: https://github.com/v8/v8/commit/da5b5f66a6bd27df6249602378300c6961bc62b4
Refs: https://github.com/v8/v8/commit/ffae028b37991566c080c5528463f7d16017668c
Refs: https://github.com/v8/v8/commit/f6386018d472665e36d662c8b159d95325999d69
Refs: https://github.com/v8/v8/commit/a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Refs: https://github.com/v8/v8/commit/cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Refs: https://github.com/v8/v8/commit/9238afb0c0ee52c9111a7e9f2f055137628771ad
Refs: https://github.com/v8/v8/commit/ca51ae3ac8b468509603633adb6ee3b3be9306ec
PR-URL: https://github.com/nodejs/node/pull/42657
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
2022-04-12 11:44:13 +02:00
|
|
|
* Note that the base class cannot be instantiated itself, use |TracedReference|
|
|
|
|
* instead.
|
2021-10-10 11:10:43 +02:00
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
class BasicTracedReference : public TracedReferenceBase {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Construct a Local<T> from this handle.
|
|
|
|
*/
|
2023-10-05 08:46:07 +02:00
|
|
|
Local<T> Get(Isolate* isolate) const { return Local<T>::New(isolate, *this); }
|
2021-10-10 11:10:43 +02:00
|
|
|
|
|
|
|
template <class S>
|
|
|
|
V8_INLINE BasicTracedReference<S>& As() const {
|
|
|
|
return reinterpret_cast<BasicTracedReference<S>&>(
|
|
|
|
const_cast<BasicTracedReference<T>&>(*this));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* An empty BasicTracedReference without storage cell.
|
|
|
|
*/
|
|
|
|
BasicTracedReference() = default;
|
|
|
|
|
2024-03-30 09:54:35 +01:00
|
|
|
V8_INLINE static internal::Address* NewFromNonEmptyValue(
|
2023-10-05 08:46:07 +02:00
|
|
|
Isolate* isolate, T* that, internal::Address** slot,
|
2024-03-30 09:54:35 +01:00
|
|
|
internal::TracedReferenceStoreMode store_mode,
|
|
|
|
internal::TracedReferenceHandling reference_handling);
|
2021-10-10 11:10:43 +02:00
|
|
|
|
|
|
|
template <typename F>
|
|
|
|
friend class Local;
|
|
|
|
friend class Object;
|
|
|
|
template <typename F>
|
|
|
|
friend class TracedReference;
|
|
|
|
template <typename F>
|
|
|
|
friend class BasicTracedReference;
|
|
|
|
template <typename F>
|
|
|
|
friend class ReturnValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A traced handle without destructor that clears the handle. The embedder needs
|
|
|
|
* to ensure that the handle is not accessed once the V8 object has been
|
2023-03-30 12:11:08 +02:00
|
|
|
* reclaimed. For more details see BasicTracedReference.
|
2021-10-10 11:10:43 +02:00
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
class TracedReference : public BasicTracedReference<T> {
|
|
|
|
public:
|
2024-03-30 09:54:35 +01:00
|
|
|
struct IsDroppable {};
|
|
|
|
|
2021-10-10 11:10:43 +02:00
|
|
|
using BasicTracedReference<T>::Reset;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An empty TracedReference without storage cell.
|
|
|
|
*/
|
2023-10-05 08:46:07 +02:00
|
|
|
V8_INLINE TracedReference() = default;
|
2021-10-10 11:10:43 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a TracedReference from a Local.
|
|
|
|
*
|
|
|
|
* When the Local is non-empty, a new storage cell is created
|
|
|
|
* pointing to the same object.
|
|
|
|
*/
|
|
|
|
template <class S>
|
|
|
|
TracedReference(Isolate* isolate, Local<S> that) : BasicTracedReference<T>() {
|
|
|
|
static_assert(std::is_base_of<T, S>::value, "type check");
|
2024-03-30 09:54:35 +01:00
|
|
|
if (V8_UNLIKELY(that.IsEmpty())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->slot() = this->NewFromNonEmptyValue(
|
|
|
|
isolate, *that, &this->slot(),
|
|
|
|
internal::TracedReferenceStoreMode::kInitializingStore,
|
|
|
|
internal::TracedReferenceHandling::kDefault);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a droppable TracedReference from a Local. Droppable means that V8
|
|
|
|
* is free to reclaim the pointee if it is unmodified and otherwise
|
|
|
|
* unreachable
|
|
|
|
*
|
|
|
|
* When the Local is non-empty, a new storage cell is created
|
|
|
|
* pointing to the same object.
|
|
|
|
*/
|
|
|
|
template <class S>
|
|
|
|
TracedReference(Isolate* isolate, Local<S> that, IsDroppable)
|
|
|
|
: BasicTracedReference<T>() {
|
|
|
|
static_assert(std::is_base_of<T, S>::value, "type check");
|
|
|
|
if (V8_UNLIKELY(that.IsEmpty())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->slot() = this->NewFromNonEmptyValue(
|
|
|
|
isolate, *that, &this->slot(),
|
|
|
|
internal::TracedReferenceStoreMode::kInitializingStore,
|
|
|
|
internal::TracedReferenceHandling::kDroppable);
|
2021-10-10 11:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move constructor initializing TracedReference from an
|
|
|
|
* existing one.
|
|
|
|
*/
|
2022-01-18 11:07:27 +01:00
|
|
|
V8_INLINE TracedReference(TracedReference&& other) noexcept {
|
2021-10-10 11:10:43 +02:00
|
|
|
// Forward to operator=.
|
|
|
|
*this = std::move(other);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move constructor initializing TracedReference from an
|
|
|
|
* existing one.
|
|
|
|
*/
|
|
|
|
template <typename S>
|
2022-01-18 11:07:27 +01:00
|
|
|
V8_INLINE TracedReference(TracedReference<S>&& other) noexcept {
|
2021-10-10 11:10:43 +02:00
|
|
|
// Forward to operator=.
|
|
|
|
*this = std::move(other);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy constructor initializing TracedReference from an
|
|
|
|
* existing one.
|
|
|
|
*/
|
|
|
|
V8_INLINE TracedReference(const TracedReference& other) {
|
|
|
|
// Forward to operator=;
|
|
|
|
*this = other;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy constructor initializing TracedReference from an
|
|
|
|
* existing one.
|
|
|
|
*/
|
|
|
|
template <typename S>
|
|
|
|
V8_INLINE TracedReference(const TracedReference<S>& other) {
|
|
|
|
// Forward to operator=;
|
|
|
|
*this = other;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
deps: V8: cherry-pick semver-major commits from 10.2
Includes the following commits:
commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Remove dynamic map checks and custom deoptimization kinds
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
Fixed: v8:12552
Change-Id: I492cf1667e0f54586690b2f72a65ea804224b840
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3401585
commit f52f934119635058b179c2359fe070b8ee0f9233
PPC/s390: Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Original Commit Message:
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
R=jgruber@chromium.org, joransiu@ca.ibm.com, junyan@redhat.com, midawson@redhat.com
BUG=
LOG=N
Change-Id: I64476f73810774c2c592231d82c4a2cbfa2bf94e
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3537881
commit 38940b70986da6b43d18cb8cf8f0a3be36ca9010
[loong64][mips] Remove dynamic map checks and custom deoptimization kinds
Port commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Fixed: v8:12552
Change-Id: Ic2fbded9a662ed840a0350e3ce049e147fbf03a0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3541527
commit da5b5f66a6bd27df6249602378300c6961bc62b4
[riscv64] Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Bug: v8:12552
Change-Id: I73e76fc5cc8905a0fbfc801b2f794735866d19e8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3544725
commit ffae028b37991566c080c5528463f7d16017668c
Forward deprecation for resurrecting finalizer
Bug: v8:12672
Change-Id: Ib4f53086436e028b4ea32fbc960f57e91709d184
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532256
commit f6386018d472665e36d662c8b159d95325999d69
[api] Remove TracedGlobal<>
Remove deprecated TracedGlobal<>, greatly simplifying handling of
traced references in general.
Also saves a word per v8::TracedReference as there's no need to keep a
possible callback around.
Bug: v8:12603
Change-Id: Ice35d7906775b912d02e97a27a722b3e1cec28d9
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532251
commit a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Deprecate some signature checks
Deprecate signature checks in
* Template::SetNativeDataProperty
* ObjectTemplate::SetAccessor
These are not used in Chrome and require some complicated check in the IC code, which we want to remove.
Change-Id: I413fafc8658e922fd590e7fe200600a624f019a6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3557253
commit cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Deprecate signature checks in Set{Accessor,NativeDataProperty}
Change from V8_DEPRECATE_SOON to V8_DEPRECATED. It turned out that we
don't have to make changes in chrome code, so we can go to deprecated
right away.
Bug: chromium:1310790
Change-Id: I1bd529536d3a0098f11f13b3e44fe3dbc80eed04
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3571897
commit 9238afb0c0ee52c9111a7e9f2f055137628771ad
Allow embedder to set global OOM handler
Embedders can currently specify a callback for OOM errors during
Isolate initialization. However, there are cases where an OOM error can
be thrown in a context where we don't have access to an Isolate, for
example on a task posted to a worker thread. This CL introduces an
initialization API to allow the embedder to specify a process-wide OOM
callback.
Bug: chromium:614440
Change-Id: I326753d80767679f677e85104d9edeef92e19086
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3561916
commit ca51ae3ac8b468509603633adb6ee3b3be9306ec
[api][profiler] Get StartProfiling, StopProfiling to accept integer ID rather than string
This CL adds support for interacting with CpuProfile with their integer
id.
A String ID is problematic because it forces an allocation when stopping
or cancelling a Profiler which can happen during a GC when this
is not allowed.
Change-Id: I9a8e754bd67214be0bbc5ca051bcadf52bf71a68
Bug: chromium:1297283
Co-Authored-By: Nicolas Dubus <nicodubus@fb.com>
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3522896
Refs: https://github.com/v8/v8/commit/b2978927d8a96ebc814cccbc5a9f1c35910ee621
Refs: https://github.com/v8/v8/commit/f52f934119635058b179c2359fe070b8ee0f9233
Refs: https://github.com/v8/v8/commit/38940b70986da6b43d18cb8cf8f0a3be36ca9010
Refs: https://github.com/v8/v8/commit/da5b5f66a6bd27df6249602378300c6961bc62b4
Refs: https://github.com/v8/v8/commit/ffae028b37991566c080c5528463f7d16017668c
Refs: https://github.com/v8/v8/commit/f6386018d472665e36d662c8b159d95325999d69
Refs: https://github.com/v8/v8/commit/a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Refs: https://github.com/v8/v8/commit/cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Refs: https://github.com/v8/v8/commit/9238afb0c0ee52c9111a7e9f2f055137628771ad
Refs: https://github.com/v8/v8/commit/ca51ae3ac8b468509603633adb6ee3b3be9306ec
PR-URL: https://github.com/nodejs/node/pull/42657
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
2022-04-12 11:44:13 +02:00
|
|
|
* Move assignment operator initializing TracedReference from an existing one.
|
2021-10-10 11:10:43 +02:00
|
|
|
*/
|
2022-01-18 11:07:27 +01:00
|
|
|
V8_INLINE TracedReference& operator=(TracedReference&& rhs) noexcept;
|
2021-10-10 11:10:43 +02:00
|
|
|
|
|
|
|
/**
|
deps: V8: cherry-pick semver-major commits from 10.2
Includes the following commits:
commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Remove dynamic map checks and custom deoptimization kinds
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
Fixed: v8:12552
Change-Id: I492cf1667e0f54586690b2f72a65ea804224b840
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3401585
commit f52f934119635058b179c2359fe070b8ee0f9233
PPC/s390: Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Original Commit Message:
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
R=jgruber@chromium.org, joransiu@ca.ibm.com, junyan@redhat.com, midawson@redhat.com
BUG=
LOG=N
Change-Id: I64476f73810774c2c592231d82c4a2cbfa2bf94e
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3537881
commit 38940b70986da6b43d18cb8cf8f0a3be36ca9010
[loong64][mips] Remove dynamic map checks and custom deoptimization kinds
Port commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Fixed: v8:12552
Change-Id: Ic2fbded9a662ed840a0350e3ce049e147fbf03a0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3541527
commit da5b5f66a6bd27df6249602378300c6961bc62b4
[riscv64] Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Bug: v8:12552
Change-Id: I73e76fc5cc8905a0fbfc801b2f794735866d19e8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3544725
commit ffae028b37991566c080c5528463f7d16017668c
Forward deprecation for resurrecting finalizer
Bug: v8:12672
Change-Id: Ib4f53086436e028b4ea32fbc960f57e91709d184
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532256
commit f6386018d472665e36d662c8b159d95325999d69
[api] Remove TracedGlobal<>
Remove deprecated TracedGlobal<>, greatly simplifying handling of
traced references in general.
Also saves a word per v8::TracedReference as there's no need to keep a
possible callback around.
Bug: v8:12603
Change-Id: Ice35d7906775b912d02e97a27a722b3e1cec28d9
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532251
commit a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Deprecate some signature checks
Deprecate signature checks in
* Template::SetNativeDataProperty
* ObjectTemplate::SetAccessor
These are not used in Chrome and require some complicated check in the IC code, which we want to remove.
Change-Id: I413fafc8658e922fd590e7fe200600a624f019a6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3557253
commit cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Deprecate signature checks in Set{Accessor,NativeDataProperty}
Change from V8_DEPRECATE_SOON to V8_DEPRECATED. It turned out that we
don't have to make changes in chrome code, so we can go to deprecated
right away.
Bug: chromium:1310790
Change-Id: I1bd529536d3a0098f11f13b3e44fe3dbc80eed04
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3571897
commit 9238afb0c0ee52c9111a7e9f2f055137628771ad
Allow embedder to set global OOM handler
Embedders can currently specify a callback for OOM errors during
Isolate initialization. However, there are cases where an OOM error can
be thrown in a context where we don't have access to an Isolate, for
example on a task posted to a worker thread. This CL introduces an
initialization API to allow the embedder to specify a process-wide OOM
callback.
Bug: chromium:614440
Change-Id: I326753d80767679f677e85104d9edeef92e19086
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3561916
commit ca51ae3ac8b468509603633adb6ee3b3be9306ec
[api][profiler] Get StartProfiling, StopProfiling to accept integer ID rather than string
This CL adds support for interacting with CpuProfile with their integer
id.
A String ID is problematic because it forces an allocation when stopping
or cancelling a Profiler which can happen during a GC when this
is not allowed.
Change-Id: I9a8e754bd67214be0bbc5ca051bcadf52bf71a68
Bug: chromium:1297283
Co-Authored-By: Nicolas Dubus <nicodubus@fb.com>
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3522896
Refs: https://github.com/v8/v8/commit/b2978927d8a96ebc814cccbc5a9f1c35910ee621
Refs: https://github.com/v8/v8/commit/f52f934119635058b179c2359fe070b8ee0f9233
Refs: https://github.com/v8/v8/commit/38940b70986da6b43d18cb8cf8f0a3be36ca9010
Refs: https://github.com/v8/v8/commit/da5b5f66a6bd27df6249602378300c6961bc62b4
Refs: https://github.com/v8/v8/commit/ffae028b37991566c080c5528463f7d16017668c
Refs: https://github.com/v8/v8/commit/f6386018d472665e36d662c8b159d95325999d69
Refs: https://github.com/v8/v8/commit/a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Refs: https://github.com/v8/v8/commit/cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Refs: https://github.com/v8/v8/commit/9238afb0c0ee52c9111a7e9f2f055137628771ad
Refs: https://github.com/v8/v8/commit/ca51ae3ac8b468509603633adb6ee3b3be9306ec
PR-URL: https://github.com/nodejs/node/pull/42657
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
2022-04-12 11:44:13 +02:00
|
|
|
* Move assignment operator initializing TracedReference from an existing one.
|
2021-10-10 11:10:43 +02:00
|
|
|
*/
|
|
|
|
template <class S>
|
2022-01-18 11:07:27 +01:00
|
|
|
V8_INLINE TracedReference& operator=(TracedReference<S>&& rhs) noexcept;
|
2021-10-10 11:10:43 +02:00
|
|
|
|
|
|
|
/**
|
deps: V8: cherry-pick semver-major commits from 10.2
Includes the following commits:
commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Remove dynamic map checks and custom deoptimization kinds
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
Fixed: v8:12552
Change-Id: I492cf1667e0f54586690b2f72a65ea804224b840
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3401585
commit f52f934119635058b179c2359fe070b8ee0f9233
PPC/s390: Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Original Commit Message:
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
R=jgruber@chromium.org, joransiu@ca.ibm.com, junyan@redhat.com, midawson@redhat.com
BUG=
LOG=N
Change-Id: I64476f73810774c2c592231d82c4a2cbfa2bf94e
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3537881
commit 38940b70986da6b43d18cb8cf8f0a3be36ca9010
[loong64][mips] Remove dynamic map checks and custom deoptimization kinds
Port commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Fixed: v8:12552
Change-Id: Ic2fbded9a662ed840a0350e3ce049e147fbf03a0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3541527
commit da5b5f66a6bd27df6249602378300c6961bc62b4
[riscv64] Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Bug: v8:12552
Change-Id: I73e76fc5cc8905a0fbfc801b2f794735866d19e8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3544725
commit ffae028b37991566c080c5528463f7d16017668c
Forward deprecation for resurrecting finalizer
Bug: v8:12672
Change-Id: Ib4f53086436e028b4ea32fbc960f57e91709d184
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532256
commit f6386018d472665e36d662c8b159d95325999d69
[api] Remove TracedGlobal<>
Remove deprecated TracedGlobal<>, greatly simplifying handling of
traced references in general.
Also saves a word per v8::TracedReference as there's no need to keep a
possible callback around.
Bug: v8:12603
Change-Id: Ice35d7906775b912d02e97a27a722b3e1cec28d9
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532251
commit a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Deprecate some signature checks
Deprecate signature checks in
* Template::SetNativeDataProperty
* ObjectTemplate::SetAccessor
These are not used in Chrome and require some complicated check in the IC code, which we want to remove.
Change-Id: I413fafc8658e922fd590e7fe200600a624f019a6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3557253
commit cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Deprecate signature checks in Set{Accessor,NativeDataProperty}
Change from V8_DEPRECATE_SOON to V8_DEPRECATED. It turned out that we
don't have to make changes in chrome code, so we can go to deprecated
right away.
Bug: chromium:1310790
Change-Id: I1bd529536d3a0098f11f13b3e44fe3dbc80eed04
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3571897
commit 9238afb0c0ee52c9111a7e9f2f055137628771ad
Allow embedder to set global OOM handler
Embedders can currently specify a callback for OOM errors during
Isolate initialization. However, there are cases where an OOM error can
be thrown in a context where we don't have access to an Isolate, for
example on a task posted to a worker thread. This CL introduces an
initialization API to allow the embedder to specify a process-wide OOM
callback.
Bug: chromium:614440
Change-Id: I326753d80767679f677e85104d9edeef92e19086
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3561916
commit ca51ae3ac8b468509603633adb6ee3b3be9306ec
[api][profiler] Get StartProfiling, StopProfiling to accept integer ID rather than string
This CL adds support for interacting with CpuProfile with their integer
id.
A String ID is problematic because it forces an allocation when stopping
or cancelling a Profiler which can happen during a GC when this
is not allowed.
Change-Id: I9a8e754bd67214be0bbc5ca051bcadf52bf71a68
Bug: chromium:1297283
Co-Authored-By: Nicolas Dubus <nicodubus@fb.com>
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3522896
Refs: https://github.com/v8/v8/commit/b2978927d8a96ebc814cccbc5a9f1c35910ee621
Refs: https://github.com/v8/v8/commit/f52f934119635058b179c2359fe070b8ee0f9233
Refs: https://github.com/v8/v8/commit/38940b70986da6b43d18cb8cf8f0a3be36ca9010
Refs: https://github.com/v8/v8/commit/da5b5f66a6bd27df6249602378300c6961bc62b4
Refs: https://github.com/v8/v8/commit/ffae028b37991566c080c5528463f7d16017668c
Refs: https://github.com/v8/v8/commit/f6386018d472665e36d662c8b159d95325999d69
Refs: https://github.com/v8/v8/commit/a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Refs: https://github.com/v8/v8/commit/cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Refs: https://github.com/v8/v8/commit/9238afb0c0ee52c9111a7e9f2f055137628771ad
Refs: https://github.com/v8/v8/commit/ca51ae3ac8b468509603633adb6ee3b3be9306ec
PR-URL: https://github.com/nodejs/node/pull/42657
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
2022-04-12 11:44:13 +02:00
|
|
|
* Copy assignment operator initializing TracedReference from an existing one.
|
2021-10-10 11:10:43 +02:00
|
|
|
*/
|
|
|
|
V8_INLINE TracedReference& operator=(const TracedReference& rhs);
|
|
|
|
|
|
|
|
/**
|
deps: V8: cherry-pick semver-major commits from 10.2
Includes the following commits:
commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Remove dynamic map checks and custom deoptimization kinds
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
Fixed: v8:12552
Change-Id: I492cf1667e0f54586690b2f72a65ea804224b840
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3401585
commit f52f934119635058b179c2359fe070b8ee0f9233
PPC/s390: Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Original Commit Message:
This CL removes:
- Dynamic map checks aka minimorphic property loads (TF support,
builtins).
- "Bailout" deopts (= drop to the interpreter once, but don't
throw out optimized code).
- "EagerWithResume" deopts (= part of dynamic map check
functionality, we call a builtin for the deopt check and deopt
or resume based on the result).
R=jgruber@chromium.org, joransiu@ca.ibm.com, junyan@redhat.com, midawson@redhat.com
BUG=
LOG=N
Change-Id: I64476f73810774c2c592231d82c4a2cbfa2bf94e
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3537881
commit 38940b70986da6b43d18cb8cf8f0a3be36ca9010
[loong64][mips] Remove dynamic map checks and custom deoptimization kinds
Port commit b2978927d8a96ebc814cccbc5a9f1c35910ee621
Fixed: v8:12552
Change-Id: Ic2fbded9a662ed840a0350e3ce049e147fbf03a0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3541527
commit da5b5f66a6bd27df6249602378300c6961bc62b4
[riscv64] Remove dynamic map checks and custom deoptimization kinds
Port b2978927d8a96ebc814cccbc5a9f1c35910ee621
Bug: v8:12552
Change-Id: I73e76fc5cc8905a0fbfc801b2f794735866d19e8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3544725
commit ffae028b37991566c080c5528463f7d16017668c
Forward deprecation for resurrecting finalizer
Bug: v8:12672
Change-Id: Ib4f53086436e028b4ea32fbc960f57e91709d184
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532256
commit f6386018d472665e36d662c8b159d95325999d69
[api] Remove TracedGlobal<>
Remove deprecated TracedGlobal<>, greatly simplifying handling of
traced references in general.
Also saves a word per v8::TracedReference as there's no need to keep a
possible callback around.
Bug: v8:12603
Change-Id: Ice35d7906775b912d02e97a27a722b3e1cec28d9
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3532251
commit a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Deprecate some signature checks
Deprecate signature checks in
* Template::SetNativeDataProperty
* ObjectTemplate::SetAccessor
These are not used in Chrome and require some complicated check in the IC code, which we want to remove.
Change-Id: I413fafc8658e922fd590e7fe200600a624f019a6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3557253
commit cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Deprecate signature checks in Set{Accessor,NativeDataProperty}
Change from V8_DEPRECATE_SOON to V8_DEPRECATED. It turned out that we
don't have to make changes in chrome code, so we can go to deprecated
right away.
Bug: chromium:1310790
Change-Id: I1bd529536d3a0098f11f13b3e44fe3dbc80eed04
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3571897
commit 9238afb0c0ee52c9111a7e9f2f055137628771ad
Allow embedder to set global OOM handler
Embedders can currently specify a callback for OOM errors during
Isolate initialization. However, there are cases where an OOM error can
be thrown in a context where we don't have access to an Isolate, for
example on a task posted to a worker thread. This CL introduces an
initialization API to allow the embedder to specify a process-wide OOM
callback.
Bug: chromium:614440
Change-Id: I326753d80767679f677e85104d9edeef92e19086
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3561916
commit ca51ae3ac8b468509603633adb6ee3b3be9306ec
[api][profiler] Get StartProfiling, StopProfiling to accept integer ID rather than string
This CL adds support for interacting with CpuProfile with their integer
id.
A String ID is problematic because it forces an allocation when stopping
or cancelling a Profiler which can happen during a GC when this
is not allowed.
Change-Id: I9a8e754bd67214be0bbc5ca051bcadf52bf71a68
Bug: chromium:1297283
Co-Authored-By: Nicolas Dubus <nicodubus@fb.com>
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3522896
Refs: https://github.com/v8/v8/commit/b2978927d8a96ebc814cccbc5a9f1c35910ee621
Refs: https://github.com/v8/v8/commit/f52f934119635058b179c2359fe070b8ee0f9233
Refs: https://github.com/v8/v8/commit/38940b70986da6b43d18cb8cf8f0a3be36ca9010
Refs: https://github.com/v8/v8/commit/da5b5f66a6bd27df6249602378300c6961bc62b4
Refs: https://github.com/v8/v8/commit/ffae028b37991566c080c5528463f7d16017668c
Refs: https://github.com/v8/v8/commit/f6386018d472665e36d662c8b159d95325999d69
Refs: https://github.com/v8/v8/commit/a8beac553b0a1639bc9790c2d6f82caf6b2e150f
Refs: https://github.com/v8/v8/commit/cff2b5000a1aa417a9c4499bcfa3ffda4542f4f1
Refs: https://github.com/v8/v8/commit/9238afb0c0ee52c9111a7e9f2f055137628771ad
Refs: https://github.com/v8/v8/commit/ca51ae3ac8b468509603633adb6ee3b3be9306ec
PR-URL: https://github.com/nodejs/node/pull/42657
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
2022-04-12 11:44:13 +02:00
|
|
|
* Copy assignment operator initializing TracedReference from an existing one.
|
2021-10-10 11:10:43 +02:00
|
|
|
*/
|
|
|
|
template <class S>
|
|
|
|
V8_INLINE TracedReference& operator=(const TracedReference<S>& rhs);
|
|
|
|
|
|
|
|
/**
|
2024-03-30 09:54:35 +01:00
|
|
|
* Always resets the reference. Creates a new reference from `other` if it is
|
|
|
|
* non-empty.
|
2021-10-10 11:10:43 +02:00
|
|
|
*/
|
|
|
|
template <class S>
|
|
|
|
V8_INLINE void Reset(Isolate* isolate, const Local<S>& other);
|
|
|
|
|
2024-03-30 09:54:35 +01:00
|
|
|
/**
|
|
|
|
* Always resets the reference. Creates a new reference from `other` if it is
|
|
|
|
* non-empty. The new reference is droppable, see constructor.
|
|
|
|
*/
|
|
|
|
template <class S>
|
|
|
|
V8_INLINE void Reset(Isolate* isolate, const Local<S>& other, IsDroppable);
|
|
|
|
|
2021-10-10 11:10:43 +02:00
|
|
|
template <class S>
|
|
|
|
V8_INLINE TracedReference<S>& As() const {
|
|
|
|
return reinterpret_cast<TracedReference<S>&>(
|
|
|
|
const_cast<TracedReference<T>&>(*this));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// --- Implementation ---
|
|
|
|
template <class T>
|
2024-03-30 09:54:35 +01:00
|
|
|
internal::Address* BasicTracedReference<T>::NewFromNonEmptyValue(
|
2023-10-05 08:46:07 +02:00
|
|
|
Isolate* isolate, T* that, internal::Address** slot,
|
2024-03-30 09:54:35 +01:00
|
|
|
internal::TracedReferenceStoreMode store_mode,
|
|
|
|
internal::TracedReferenceHandling reference_handling) {
|
2022-01-18 11:07:27 +01:00
|
|
|
return internal::GlobalizeTracedReference(
|
2023-10-05 08:46:07 +02:00
|
|
|
reinterpret_cast<internal::Isolate*>(isolate),
|
|
|
|
internal::ValueHelper::ValueAsAddress(that),
|
2024-03-30 09:54:35 +01:00
|
|
|
reinterpret_cast<internal::Address*>(slot), store_mode,
|
|
|
|
reference_handling);
|
2021-10-10 11:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TracedReferenceBase::Reset() {
|
2024-03-30 09:54:35 +01:00
|
|
|
if (V8_UNLIKELY(IsEmpty())) {
|
|
|
|
return;
|
|
|
|
}
|
2023-10-05 08:46:07 +02:00
|
|
|
internal::DisposeTracedReference(slot());
|
2021-10-10 11:10:43 +02:00
|
|
|
SetSlotThreadSafe(nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
V8_INLINE bool operator==(const TracedReferenceBase& lhs,
|
|
|
|
const TracedReferenceBase& rhs) {
|
2023-03-30 12:11:08 +02:00
|
|
|
return internal::HandleHelper::EqualHandles(lhs, rhs);
|
2021-10-10 11:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
V8_INLINE bool operator==(const TracedReferenceBase& lhs,
|
|
|
|
const v8::Local<U>& rhs) {
|
2023-03-30 12:11:08 +02:00
|
|
|
return internal::HandleHelper::EqualHandles(lhs, rhs);
|
2021-10-10 11:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
V8_INLINE bool operator==(const v8::Local<U>& lhs,
|
|
|
|
const TracedReferenceBase& rhs) {
|
|
|
|
return rhs == lhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
V8_INLINE bool operator!=(const TracedReferenceBase& lhs,
|
|
|
|
const TracedReferenceBase& rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
V8_INLINE bool operator!=(const TracedReferenceBase& lhs,
|
|
|
|
const v8::Local<U>& rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
V8_INLINE bool operator!=(const v8::Local<U>& lhs,
|
|
|
|
const TracedReferenceBase& rhs) {
|
|
|
|
return !(rhs == lhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
template <class S>
|
2022-04-12 11:10:15 +02:00
|
|
|
void TracedReference<T>::Reset(Isolate* isolate, const Local<S>& other) {
|
2021-10-10 11:10:43 +02:00
|
|
|
static_assert(std::is_base_of<T, S>::value, "type check");
|
2022-04-12 11:10:15 +02:00
|
|
|
this->Reset();
|
2024-03-30 09:54:35 +01:00
|
|
|
if (V8_UNLIKELY(other.IsEmpty())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->SetSlotThreadSafe(this->NewFromNonEmptyValue(
|
|
|
|
isolate, *other, &this->slot(),
|
|
|
|
internal::TracedReferenceStoreMode::kAssigningStore,
|
|
|
|
internal::TracedReferenceHandling::kDefault));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
template <class S>
|
|
|
|
void TracedReference<T>::Reset(Isolate* isolate, const Local<S>& other,
|
|
|
|
IsDroppable) {
|
|
|
|
static_assert(std::is_base_of<T, S>::value, "type check");
|
|
|
|
this->Reset();
|
|
|
|
if (V8_UNLIKELY(other.IsEmpty())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->SetSlotThreadSafe(this->NewFromNonEmptyValue(
|
|
|
|
isolate, *other, &this->slot(),
|
|
|
|
internal::TracedReferenceStoreMode::kAssigningStore,
|
|
|
|
internal::TracedReferenceHandling::kDroppable));
|
2021-10-10 11:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
template <class S>
|
2022-04-12 11:10:15 +02:00
|
|
|
TracedReference<T>& TracedReference<T>::operator=(
|
|
|
|
TracedReference<S>&& rhs) noexcept {
|
2021-10-10 11:10:43 +02:00
|
|
|
static_assert(std::is_base_of<T, S>::value, "type check");
|
|
|
|
*this = std::move(rhs.template As<T>());
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
template <class S>
|
2022-04-12 11:10:15 +02:00
|
|
|
TracedReference<T>& TracedReference<T>::operator=(
|
|
|
|
const TracedReference<S>& rhs) {
|
2021-10-10 11:10:43 +02:00
|
|
|
static_assert(std::is_base_of<T, S>::value, "type check");
|
|
|
|
*this = rhs.template As<T>();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
2022-04-12 11:10:15 +02:00
|
|
|
TracedReference<T>& TracedReference<T>::operator=(
|
|
|
|
TracedReference&& rhs) noexcept {
|
2021-10-10 11:10:43 +02:00
|
|
|
if (this != &rhs) {
|
2023-10-05 08:46:07 +02:00
|
|
|
internal::MoveTracedReference(&rhs.slot(), &this->slot());
|
2021-10-10 11:10:43 +02:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
2022-04-12 11:10:15 +02:00
|
|
|
TracedReference<T>& TracedReference<T>::operator=(const TracedReference& rhs) {
|
2021-10-10 11:10:43 +02:00
|
|
|
if (this != &rhs) {
|
|
|
|
this->Reset();
|
2023-10-05 08:46:07 +02:00
|
|
|
if (!rhs.IsEmpty()) {
|
|
|
|
internal::CopyTracedReference(&rhs.slot(), &this->slot());
|
2021-10-10 11:10:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace v8
|
|
|
|
|
|
|
|
#endif // INCLUDE_V8_TRACED_HANDLE_H_
|