Revert "[TurboFan] Move FunctionTemplateInfo to never serialized"
This reverts commit 220e68c0fb
.
Reason for revert: https://bugs.chromium.org/p/chromium/issues/detail?id=1188563
Original change's description:
> [TurboFan] Move FunctionTemplateInfo to never serialized
>
> This CL moves FunctionTemplateInfo to the list of never serialized
> objects, allowing direct heap reads. To make this threadsafe, the CL:
> - adds necessary atomic (relaxed/acquire-release) operations to the
> accessors of FunctionTemplateInfo.
> - changes FunctionTemplateInfoRef::LookupHolderOfExpectedType to be
> usable from the background thread (e.g. no handle construction) with
> the caveat of skipping optimization in some cases where necessary
> JSObjects are not serialized.
>
> Drive-by: Add missing serialization of objects possibly reachable
> through CallHandlerInfo::data.
>
> Bug: v8:7790
> Change-Id: I49cf4f328ecfab368dff9076fde8f5783ead3246
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2679687
> Reviewed-by: Ross McIlroy <rmcilroy@chromium.org>
> Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
> Reviewed-by: Georg Neis <neis@chromium.org>
> Commit-Queue: Nico Hartmann <nicohartmann@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#73364}
TBR=neis@chromium.org
No-Try: true
No-Presubmit: true
No-Tree-Checks: true
Bug: v8:7790
Change-Id: I66fd8d915e2434e3f78103b9e11dce01eb356675
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2764753
Reviewed-by: Nico Hartmann <nicohartmann@chromium.org>
Commit-Queue: Nico Hartmann <nicohartmann@chromium.org>
Cr-Commit-Position: refs/heads/master@{#73454}
This commit is contained in:
parent
ea950a0f0b
commit
c85b7a449d
@ -58,13 +58,12 @@ class OptimizingCompileDispatcher::CompileTask : public CancelableTask {
|
||||
private:
|
||||
// v8::Task overrides.
|
||||
void RunInternal() override {
|
||||
WorkerThreadRuntimeCallStatsScope runtime_call_stats_scope(
|
||||
worker_thread_runtime_call_stats_);
|
||||
LocalIsolate local_isolate(isolate_, ThreadKind::kBackground,
|
||||
runtime_call_stats_scope.Get());
|
||||
LocalIsolate local_isolate(isolate_, ThreadKind::kBackground);
|
||||
DCHECK(local_isolate.heap()->IsParked());
|
||||
|
||||
{
|
||||
WorkerThreadRuntimeCallStatsScope runtime_call_stats_scope(
|
||||
worker_thread_runtime_call_stats_);
|
||||
RuntimeCallTimerScope runtimeTimer(
|
||||
runtime_call_stats_scope.Get(),
|
||||
RuntimeCallCounterId::kOptimizeBackgroundDispatcherJob);
|
||||
|
@ -87,7 +87,6 @@ enum class OddballType : uint8_t {
|
||||
V(DescriptorArray) \
|
||||
V(FeedbackCell) \
|
||||
V(FeedbackVector) \
|
||||
V(FunctionTemplateInfo) \
|
||||
V(Name) \
|
||||
V(RegExpBoilerplateDescription) \
|
||||
V(SharedFunctionInfo) \
|
||||
@ -137,6 +136,7 @@ enum class OddballType : uint8_t {
|
||||
/* Subtypes of HeapObject */ \
|
||||
V(AllocationSite) \
|
||||
V(FixedArrayBase) \
|
||||
V(FunctionTemplateInfo) \
|
||||
V(JSReceiver) \
|
||||
V(SourceTextModule) \
|
||||
/* Subtypes of Object */ \
|
||||
@ -192,7 +192,6 @@ class V8_EXPORT_PRIVATE ObjectRef {
|
||||
HEAP_BROKER_NEVER_SERIALIZED_OBJECT_LIST(HEAP_AS_METHOD_DECL)
|
||||
#undef HEAP_AS_METHOD_DECL
|
||||
|
||||
bool IsNull() const;
|
||||
bool IsNullOrUndefined() const;
|
||||
bool IsTheHole() const;
|
||||
|
||||
|
@ -164,7 +164,6 @@ class ObjectData : public ZoneObject {
|
||||
kind_ == kNeverSerializedHeapObject ||
|
||||
kind_ == kUnserializedReadOnlyHeapObject;
|
||||
}
|
||||
bool IsNull() const { return object_->IsNull(); }
|
||||
|
||||
#ifdef DEBUG
|
||||
enum class Usage{kUnused, kOnlyIdentityUsed, kDataUsed};
|
||||
@ -272,7 +271,6 @@ FunctionTemplateInfoData::FunctionTemplateInfoData(
|
||||
c_function_(v8::ToCData<Address>(object->GetCFunction())),
|
||||
c_signature_(v8::ToCData<CFunctionInfo*>(object->GetCSignature())),
|
||||
known_receivers_(broker->zone()) {
|
||||
DCHECK(!FLAG_turbo_direct_heap_access);
|
||||
auto function_template_info = Handle<FunctionTemplateInfo>::cast(object);
|
||||
is_signature_undefined_ =
|
||||
function_template_info->signature().IsUndefined(broker->isolate());
|
||||
@ -3504,10 +3502,8 @@ BIMODAL_ACCESSOR_C(RegExpBoilerplateDescription, int, flags)
|
||||
|
||||
base::Optional<CallHandlerInfoRef> FunctionTemplateInfoRef::call_code() const {
|
||||
if (data_->should_access_heap()) {
|
||||
HeapObject call_code = object()->call_code(kAcquireLoad);
|
||||
if (call_code.IsUndefined()) return base::nullopt;
|
||||
return CallHandlerInfoRef(broker(),
|
||||
broker()->CanonicalPersistentHandle(call_code));
|
||||
return CallHandlerInfoRef(broker(), broker()->CanonicalPersistentHandle(
|
||||
object()->call_code(kAcquireLoad)));
|
||||
}
|
||||
ObjectData* call_code = data()->AsFunctionTemplateInfo()->call_code();
|
||||
if (!call_code) return base::nullopt;
|
||||
@ -3523,72 +3519,40 @@ bool FunctionTemplateInfoRef::is_signature_undefined() const {
|
||||
|
||||
bool FunctionTemplateInfoRef::has_call_code() const {
|
||||
if (data_->should_access_heap()) {
|
||||
HeapObject call_code = object()->call_code(kAcquireLoad);
|
||||
return !call_code.IsUndefined();
|
||||
CallOptimization call_optimization(broker()->isolate(), object());
|
||||
return call_optimization.is_simple_api_call();
|
||||
}
|
||||
return data()->AsFunctionTemplateInfo()->has_call_code();
|
||||
}
|
||||
|
||||
bool FunctionTemplateInfoRef ::accept_any_receiver() const {
|
||||
if (data_->should_access_heap()) {
|
||||
return object()->accept_any_receiver();
|
||||
}
|
||||
return ObjectRef ::data()->AsFunctionTemplateInfo()->accept_any_receiver();
|
||||
}
|
||||
BIMODAL_ACCESSOR_C(FunctionTemplateInfo, bool, accept_any_receiver)
|
||||
|
||||
HolderLookupResult FunctionTemplateInfoRef::LookupHolderOfExpectedType(
|
||||
MapRef receiver_map, SerializationPolicy policy) {
|
||||
const HolderLookupResult not_found;
|
||||
|
||||
if (data_->should_access_heap()) {
|
||||
// There are currently two ways we can see a FunctionTemplateInfo on the
|
||||
// background thread: 1.) As part of a SharedFunctionInfo and 2.) in an
|
||||
// AccessorPair. In both cases, the FTI is fully constructed on the main
|
||||
// thread before.
|
||||
// TODO(nicohartmann@, v8:7790): Once the above no longer holds, we might
|
||||
// have to use the GC predicate to check whether objects are fully
|
||||
// initialized and safe to read.
|
||||
if (!receiver_map.IsJSReceiverMap() ||
|
||||
(receiver_map.is_access_check_needed() &&
|
||||
CallOptimization call_optimization(broker()->isolate(), object());
|
||||
Handle<Map> receiver_map_ref(receiver_map.object());
|
||||
if (!receiver_map_ref->IsJSReceiverMap() ||
|
||||
(receiver_map_ref->is_access_check_needed() &&
|
||||
!object()->accept_any_receiver())) {
|
||||
return not_found;
|
||||
}
|
||||
|
||||
if (!receiver_map.IsJSObjectMap()) return not_found;
|
||||
HolderLookupResult result;
|
||||
Handle<JSObject> holder = call_optimization.LookupHolderOfExpectedType(
|
||||
receiver_map_ref, &result.lookup);
|
||||
|
||||
DCHECK(has_call_code());
|
||||
|
||||
DisallowGarbageCollection no_gc;
|
||||
HeapObject signature = object()->signature();
|
||||
if (signature.IsUndefined()) {
|
||||
return HolderLookupResult(CallOptimization::kHolderIsReceiver);
|
||||
switch (result.lookup) {
|
||||
case CallOptimization::kHolderFound:
|
||||
result.holder = JSObjectRef(broker(), holder);
|
||||
break;
|
||||
default:
|
||||
DCHECK_EQ(result.holder, base::nullopt);
|
||||
break;
|
||||
}
|
||||
auto expected_receiver_type = FunctionTemplateInfo::cast(signature);
|
||||
if (expected_receiver_type.IsTemplateFor(*receiver_map.object())) {
|
||||
return HolderLookupResult(CallOptimization::kHolderIsReceiver);
|
||||
}
|
||||
|
||||
if (!receiver_map.IsJSGlobalProxyMap()) return not_found;
|
||||
if (policy == SerializationPolicy::kSerializeIfNeeded) {
|
||||
receiver_map.SerializePrototype();
|
||||
}
|
||||
if (!receiver_map.serialized_prototype()) return not_found;
|
||||
if (receiver_map.prototype().IsNull()) return not_found;
|
||||
|
||||
JSObject raw_prototype = JSObject::cast(*receiver_map.prototype().object());
|
||||
if (!expected_receiver_type.IsTemplateFor(raw_prototype.map())) {
|
||||
return not_found;
|
||||
}
|
||||
Handle<JSObject> prototype =
|
||||
broker()->CanonicalPersistentHandle(raw_prototype);
|
||||
if (ObjectData* data = broker()->TryGetOrCreateData(prototype)) {
|
||||
return HolderLookupResult(CallOptimization::kHolderFound,
|
||||
JSObjectRef(broker(), data));
|
||||
}
|
||||
|
||||
TRACE_BROKER_MISSING(broker(),
|
||||
"holder for receiver with map " << receiver_map);
|
||||
return not_found;
|
||||
return result;
|
||||
}
|
||||
|
||||
FunctionTemplateInfoData* fti_data = data()->AsFunctionTemplateInfo();
|
||||
@ -3925,8 +3889,6 @@ base::Optional<JSFunctionRef> NativeContextRef::GetConstructorFunction(
|
||||
}
|
||||
}
|
||||
|
||||
bool ObjectRef::IsNull() const { return object()->IsNull(); }
|
||||
|
||||
bool ObjectRef::IsNullOrUndefined() const {
|
||||
if (IsSmi()) return false;
|
||||
OddballType type = AsHeapObject().map().oddball_type();
|
||||
@ -4581,8 +4543,8 @@ void MapRef::SerializePrototype() {
|
||||
}
|
||||
|
||||
bool MapRef::serialized_prototype() const {
|
||||
if (data_->should_access_heap()) return true;
|
||||
CHECK_NE(broker()->mode(), JSHeapBroker::kDisabled);
|
||||
if (data_->should_access_heap()) return true;
|
||||
return data()->AsMap()->serialized_prototype();
|
||||
}
|
||||
|
||||
|
@ -2260,27 +2260,21 @@ void SerializerForBackgroundCompilation::ProcessCallVarArgs(
|
||||
|
||||
void SerializerForBackgroundCompilation::ProcessApiCall(
|
||||
Handle<SharedFunctionInfo> target, const HintsVector& arguments) {
|
||||
for (const auto b :
|
||||
{Builtins::kCallFunctionTemplate_CheckAccess,
|
||||
Builtins::kCallFunctionTemplate_CheckCompatibleReceiver,
|
||||
Builtins::kCallFunctionTemplate_CheckAccessAndCompatibleReceiver}) {
|
||||
ObjectRef(broker(), broker()->isolate()->builtins()->builtin_handle(b));
|
||||
}
|
||||
ObjectRef(broker(), broker()->isolate()->builtins()->builtin_handle(
|
||||
Builtins::kCallFunctionTemplate_CheckAccess));
|
||||
ObjectRef(broker(),
|
||||
broker()->isolate()->builtins()->builtin_handle(
|
||||
Builtins::kCallFunctionTemplate_CheckCompatibleReceiver));
|
||||
ObjectRef(
|
||||
broker(),
|
||||
broker()->isolate()->builtins()->builtin_handle(
|
||||
Builtins::kCallFunctionTemplate_CheckAccessAndCompatibleReceiver));
|
||||
|
||||
FunctionTemplateInfoRef target_template_info(
|
||||
broker(),
|
||||
broker()->CanonicalPersistentHandle(target->function_data(kAcquireLoad)));
|
||||
if (!target_template_info.has_call_code()) return;
|
||||
if (FLAG_turbo_direct_heap_access) {
|
||||
// The object stored in CallHandlerInfo::data may still be
|
||||
// SerializedHeapObject, so we keep serializing this here.
|
||||
// TODO(v8:7790): Remove this once all JSObjects are NeverSerialized.
|
||||
Handle<CallHandlerInfo> call_handler_info =
|
||||
target_template_info.call_code()->object();
|
||||
ObjectRef(broker(),
|
||||
broker()->CanonicalPersistentHandle(call_handler_info->data()));
|
||||
} else {
|
||||
target_template_info.SerializeCallCode();
|
||||
}
|
||||
target_template_info.SerializeCallCode();
|
||||
|
||||
SharedFunctionInfoRef target_ref(broker(), target);
|
||||
target_ref.SerializeFunctionTemplateInfo();
|
||||
|
@ -2097,7 +2097,7 @@ void FunctionTemplateInfo::FunctionTemplateInfoPrint(
|
||||
os << "\n - undetectable: " << (undetectable() ? "true" : "false");
|
||||
os << "\n - need_access_check: " << (needs_access_check() ? "true" : "false");
|
||||
os << "\n - instantiated: " << (instantiated() ? "true" : "false");
|
||||
os << "\n - rare_data: " << Brief(rare_data(kAcquireLoad));
|
||||
os << "\n - rare_data: " << Brief(rare_data());
|
||||
os << "\n";
|
||||
}
|
||||
|
||||
|
@ -12,8 +12,7 @@
|
||||
namespace v8 {
|
||||
namespace internal {
|
||||
|
||||
LocalIsolate::LocalIsolate(Isolate* isolate, ThreadKind kind,
|
||||
RuntimeCallStats* runtime_call_stats)
|
||||
LocalIsolate::LocalIsolate(Isolate* isolate, ThreadKind kind)
|
||||
: HiddenLocalFactory(isolate),
|
||||
heap_(isolate->heap(), kind),
|
||||
isolate_(isolate),
|
||||
@ -21,8 +20,7 @@ LocalIsolate::LocalIsolate(Isolate* isolate, ThreadKind kind,
|
||||
thread_id_(ThreadId::Current()),
|
||||
stack_limit_(kind == ThreadKind::kMain
|
||||
? isolate->stack_guard()->real_climit()
|
||||
: GetCurrentStackPosition() - FLAG_stack_size * KB),
|
||||
runtime_call_stats_(runtime_call_stats) {}
|
||||
: GetCurrentStackPosition() - FLAG_stack_size * KB) {}
|
||||
|
||||
LocalIsolate::~LocalIsolate() = default;
|
||||
|
||||
|
@ -19,7 +19,6 @@ namespace internal {
|
||||
|
||||
class Isolate;
|
||||
class LocalLogger;
|
||||
class RuntimeCallStats;
|
||||
|
||||
// HiddenLocalFactory parallels Isolate's HiddenFactory
|
||||
class V8_EXPORT_PRIVATE HiddenLocalFactory : private LocalFactory {
|
||||
@ -38,8 +37,7 @@ class V8_EXPORT_PRIVATE LocalIsolate final : private HiddenLocalFactory {
|
||||
public:
|
||||
using HandleScopeType = LocalHandleScope;
|
||||
|
||||
explicit LocalIsolate(Isolate* isolate, ThreadKind kind,
|
||||
RuntimeCallStats* runtime_call_stats = nullptr);
|
||||
explicit LocalIsolate(Isolate* isolate, ThreadKind kind);
|
||||
~LocalIsolate();
|
||||
|
||||
// Kinda sketchy.
|
||||
@ -86,7 +84,6 @@ class V8_EXPORT_PRIVATE LocalIsolate final : private HiddenLocalFactory {
|
||||
LocalLogger* logger() const { return logger_.get(); }
|
||||
ThreadId thread_id() const { return thread_id_; }
|
||||
Address stack_limit() const { return stack_limit_; }
|
||||
RuntimeCallStats* runtime_call_stats() const { return runtime_call_stats_; }
|
||||
|
||||
bool is_main_thread() const { return heap_.is_main_thread(); }
|
||||
|
||||
@ -104,8 +101,6 @@ class V8_EXPORT_PRIVATE LocalIsolate final : private HiddenLocalFactory {
|
||||
std::unique_ptr<LocalLogger> logger_;
|
||||
ThreadId const thread_id_;
|
||||
Address const stack_limit_;
|
||||
|
||||
RuntimeCallStats* runtime_call_stats_;
|
||||
};
|
||||
|
||||
template <base::MutexSharedType kIsShared>
|
||||
|
@ -88,14 +88,16 @@ bool CallOptimization::IsCompatibleReceiverMap(
|
||||
|
||||
void CallOptimization::Initialize(
|
||||
Isolate* isolate, Handle<FunctionTemplateInfo> function_template_info) {
|
||||
HeapObject call_code = function_template_info->call_code(kAcquireLoad);
|
||||
if (call_code.IsUndefined(isolate)) return;
|
||||
api_call_info_ = handle(CallHandlerInfo::cast(call_code), isolate);
|
||||
if (function_template_info->call_code(kAcquireLoad).IsUndefined(isolate))
|
||||
return;
|
||||
api_call_info_ = handle(
|
||||
CallHandlerInfo::cast(function_template_info->call_code(kAcquireLoad)),
|
||||
isolate);
|
||||
|
||||
HeapObject signature = function_template_info->signature();
|
||||
if (!signature.IsUndefined(isolate)) {
|
||||
if (!function_template_info->signature().IsUndefined(isolate)) {
|
||||
expected_receiver_type_ =
|
||||
handle(FunctionTemplateInfo::cast(signature), isolate);
|
||||
handle(FunctionTemplateInfo::cast(function_template_info->signature()),
|
||||
isolate);
|
||||
}
|
||||
is_simple_api_call_ = true;
|
||||
}
|
||||
|
@ -351,19 +351,6 @@
|
||||
set_##field(BooleanBit::set(field(), offset, value)); \
|
||||
}
|
||||
|
||||
#define DECL_RELAXED_BOOL_ACCESSORS(name) \
|
||||
inline bool name(RelaxedLoadTag) const; \
|
||||
inline void set_##name(bool value, RelaxedStoreTag);
|
||||
|
||||
#define RELAXED_BOOL_ACCESSORS(holder, field, name, offset) \
|
||||
bool holder::name(RelaxedLoadTag) const { \
|
||||
return BooleanBit::get(field(kRelaxedLoad), offset); \
|
||||
} \
|
||||
void holder::set_##name(bool value, RelaxedStoreTag) { \
|
||||
set_##field(BooleanBit::set(field(kRelaxedLoad), offset, value), \
|
||||
kRelaxedStore); \
|
||||
}
|
||||
|
||||
#define BIT_FIELD_ACCESSORS2(holder, get_field, set_field, name, BitField) \
|
||||
typename BitField::FieldType holder::name() const { \
|
||||
return BitField::decode(get_field()); \
|
||||
|
@ -1314,12 +1314,8 @@ Handle<SharedFunctionInfo> FunctionTemplateInfo::GetOrCreateSharedFunctionInfo(
|
||||
}
|
||||
|
||||
bool FunctionTemplateInfo::IsTemplateFor(Map map) {
|
||||
RuntimeCallTimerScope timer(
|
||||
LocalHeap::Current() == nullptr
|
||||
? GetIsolate()->counters()->runtime_call_stats()
|
||||
: LocalIsolate::FromHeap(LocalHeap::Current())->runtime_call_stats(),
|
||||
RuntimeCallCounterId::kIsTemplateFor);
|
||||
|
||||
RuntimeCallTimerScope timer(GetIsolate(),
|
||||
RuntimeCallCounterId::kIsTemplateFor);
|
||||
// There is a constraint on the object; check.
|
||||
if (!map.IsJSObjectMap()) return false;
|
||||
// Fetch the constructor function of the object.
|
||||
@ -1346,14 +1342,14 @@ bool FunctionTemplateInfo::IsTemplateFor(Map map) {
|
||||
// static
|
||||
FunctionTemplateRareData FunctionTemplateInfo::AllocateFunctionTemplateRareData(
|
||||
Isolate* isolate, Handle<FunctionTemplateInfo> function_template_info) {
|
||||
DCHECK(function_template_info->rare_data(kAcquireLoad).IsUndefined(isolate));
|
||||
DCHECK(function_template_info->rare_data().IsUndefined(isolate));
|
||||
Handle<Struct> struct_obj = isolate->factory()->NewStruct(
|
||||
FUNCTION_TEMPLATE_RARE_DATA_TYPE, AllocationType::kOld);
|
||||
Handle<FunctionTemplateRareData> rare_data =
|
||||
i::Handle<FunctionTemplateRareData>::cast(struct_obj);
|
||||
rare_data->set_c_function(Smi(0));
|
||||
rare_data->set_c_signature(Smi(0));
|
||||
function_template_info->set_rare_data(*rare_data, kReleaseStore);
|
||||
function_template_info->set_rare_data(*rare_data);
|
||||
return *rare_data;
|
||||
}
|
||||
|
||||
|
@ -39,33 +39,13 @@ BOOL_ACCESSORS(FunctionTemplateInfo, flag, accept_any_receiver,
|
||||
AcceptAnyReceiverBit::kShift)
|
||||
BOOL_ACCESSORS(FunctionTemplateInfo, flag, published, PublishedBit::kShift)
|
||||
|
||||
// TODO(nicohartmann@, v8:11122): Let Torque generate this accessor.
|
||||
RELEASE_ACQUIRE_ACCESSORS(FunctionTemplateInfo, call_code, HeapObject,
|
||||
kCallCodeOffset)
|
||||
|
||||
// TODO(nicohartmann@, v8:11122): Let Torque generate this accessor.
|
||||
HeapObject FunctionTemplateInfo::rare_data(AcquireLoadTag) const {
|
||||
IsolateRoot isolate = GetIsolateForPtrCompr(*this);
|
||||
return rare_data(isolate, kAcquireLoad);
|
||||
}
|
||||
HeapObject FunctionTemplateInfo::rare_data(IsolateRoot isolate,
|
||||
AcquireLoadTag) const {
|
||||
HeapObject value =
|
||||
TaggedField<HeapObject>::Acquire_Load(isolate, *this, kRareDataOffset);
|
||||
DCHECK(value.IsUndefined() || value.IsFunctionTemplateRareData());
|
||||
return value;
|
||||
}
|
||||
void FunctionTemplateInfo::set_rare_data(HeapObject value, ReleaseStoreTag,
|
||||
WriteBarrierMode mode) {
|
||||
DCHECK(value.IsUndefined() || value.IsFunctionTemplateRareData());
|
||||
RELEASE_WRITE_FIELD(*this, kRareDataOffset, value);
|
||||
CONDITIONAL_WRITE_BARRIER(*this, kRareDataOffset, value, mode);
|
||||
}
|
||||
|
||||
// static
|
||||
FunctionTemplateRareData FunctionTemplateInfo::EnsureFunctionTemplateRareData(
|
||||
Isolate* isolate, Handle<FunctionTemplateInfo> function_template_info) {
|
||||
HeapObject extra = function_template_info->rare_data(isolate, kAcquireLoad);
|
||||
HeapObject extra = function_template_info->rare_data(isolate);
|
||||
if (extra.IsUndefined(isolate)) {
|
||||
return AllocateFunctionTemplateRareData(isolate, function_template_info);
|
||||
} else {
|
||||
@ -75,7 +55,7 @@ FunctionTemplateRareData FunctionTemplateInfo::EnsureFunctionTemplateRareData(
|
||||
|
||||
#define RARE_ACCESSORS(Name, CamelName, Type, Default) \
|
||||
DEF_GETTER(FunctionTemplateInfo, Get##CamelName, Type) { \
|
||||
HeapObject extra = rare_data(isolate, kAcquireLoad); \
|
||||
HeapObject extra = rare_data(isolate); \
|
||||
HeapObject undefined = GetReadOnlyRoots(isolate).undefined_value(); \
|
||||
return extra == undefined ? Default \
|
||||
: FunctionTemplateRareData::cast(extra).Name(); \
|
||||
|
@ -87,16 +87,8 @@ class FunctionTemplateInfo
|
||||
DECL_RARE_ACCESSORS(c_signature, CSignature, Object)
|
||||
#undef DECL_RARE_ACCESSORS
|
||||
|
||||
// TODO(nicohartmann@, v8:11122): Let Torque generate the following accessor.
|
||||
DECL_RELEASE_ACQUIRE_ACCESSORS(call_code, HeapObject)
|
||||
|
||||
// TODO(nicohartmann@, v8:11122): Let Torque generate the following accessor.
|
||||
inline HeapObject rare_data(AcquireLoadTag) const;
|
||||
inline HeapObject rare_data(IsolateRoot isolate, AcquireLoadTag) const;
|
||||
inline void set_rare_data(
|
||||
HeapObject value, ReleaseStoreTag,
|
||||
WriteBarrierMode mode = WriteBarrierMode::UPDATE_WRITE_BARRIER);
|
||||
|
||||
// Begin flag bits ---------------------
|
||||
DECL_BOOLEAN_ACCESSORS(undetectable)
|
||||
|
||||
|
@ -52,7 +52,7 @@ extern class FunctionTemplateInfo extends TemplateInfo {
|
||||
// If any of the setters declared by DECL_RARE_ACCESSORS are used then a
|
||||
// FunctionTemplateRareData will be stored here. Until then this contains
|
||||
// undefined.
|
||||
rare_data: FunctionTemplateRareData|Undefined;
|
||||
@acquireRead @releaseWrite rare_data: FunctionTemplateRareData|Undefined;
|
||||
shared_function_info: SharedFunctionInfo|Undefined;
|
||||
// Internal field to store a flag bitfield.
|
||||
flag: SmiTagged<FunctionTemplateInfoFlags>;
|
||||
|
Loading…
Reference in New Issue
Block a user