Commit 36e43103 authored by Frank Emrich's avatar Frank Emrich Committed by Commit Bot

[dict-proto] Add support for ordered property dicts, pt.2

This CL adds partial support for objects whose slow mode dictionaries
are OrderedNameDictionaries. This is the case for all slow mode objects
if V8_DICT_MODE_PROTOTYPES is enabled.

In particular, this part deals with those runtime functions called by
the DefineClass builtin, located in literal-objects.cc and
runtime-classes.cc.

Bug: v8:7569
Change-Id: Ie4c479fd6f8872eea9f190590408a4aafd1c77e6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2523321
Commit-Queue: Frank Emrich <emrich@google.com>
Reviewed-by: 's avatarMarja Hölttä <marja@chromium.org>
Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
Cr-Commit-Position: refs/heads/master@{#71205}
parent 7645037c
...@@ -23,6 +23,11 @@ namespace internal { ...@@ -23,6 +23,11 @@ namespace internal {
namespace { namespace {
// The enumeration order index in the property details is unused if they are
// stored in a OrderedNameDictionary or NumberDictionary (because they handle
// propery ordering differently). We then use this dummy value instead.
constexpr int kDummyEnumerationIndex = 0;
inline int EncodeComputedEntry(ClassBoilerplate::ValueKind value_kind, inline int EncodeComputedEntry(ClassBoilerplate::ValueKind value_kind,
unsigned key_index) { unsigned key_index) {
using Flags = ClassBoilerplate::ComputedEntryFlags; using Flags = ClassBoilerplate::ComputedEntryFlags;
...@@ -93,6 +98,17 @@ Handle<NameDictionary> DictionaryAddNoUpdateNextEnumerationIndex( ...@@ -93,6 +98,17 @@ Handle<NameDictionary> DictionaryAddNoUpdateNextEnumerationIndex(
isolate, dictionary, name, value, details, entry_out); isolate, dictionary, name, value, details, entry_out);
} }
template <typename LocalIsolate>
Handle<OrderedNameDictionary> DictionaryAddNoUpdateNextEnumerationIndex(
LocalIsolate* isolate, Handle<OrderedNameDictionary> dictionary,
Handle<Name> name, Handle<Object> value, PropertyDetails details,
InternalIndex* entry_out = nullptr) {
// OrderedNameDictionary does not maintain the enumeration order in property
// details, so it's a normal Add().
return OrderedNameDictionary::Add(isolate, dictionary, name, value, details)
.ToHandleChecked();
}
template <typename LocalIsolate> template <typename LocalIsolate>
Handle<NumberDictionary> DictionaryAddNoUpdateNextEnumerationIndex( Handle<NumberDictionary> DictionaryAddNoUpdateNextEnumerationIndex(
LocalIsolate* isolate, Handle<NumberDictionary> dictionary, LocalIsolate* isolate, Handle<NumberDictionary> dictionary,
...@@ -104,9 +120,12 @@ Handle<NumberDictionary> DictionaryAddNoUpdateNextEnumerationIndex( ...@@ -104,9 +120,12 @@ Handle<NumberDictionary> DictionaryAddNoUpdateNextEnumerationIndex(
entry_out); entry_out);
} }
void DictionaryUpdateMaxNumberKey(Handle<NameDictionary> dictionary, template <typename Dictionary>
void DictionaryUpdateMaxNumberKey(Handle<Dictionary> dictionary,
Handle<Name> name) { Handle<Name> name) {
// No-op for name dictionaries. STATIC_ASSERT((std::is_same<Dictionary, OrderedNameDictionary>::value ||
std::is_same<Dictionary, NameDictionary>::value));
// No-op for (ordered) name dictionaries.
} }
void DictionaryUpdateMaxNumberKey(Handle<NumberDictionary> dictionary, void DictionaryUpdateMaxNumberKey(Handle<NumberDictionary> dictionary,
...@@ -141,14 +160,16 @@ void AddToDictionaryTemplate(LocalIsolate* isolate, ...@@ -141,14 +160,16 @@ void AddToDictionaryTemplate(LocalIsolate* isolate,
const bool is_elements_dictionary = const bool is_elements_dictionary =
std::is_same<Dictionary, NumberDictionary>::value; std::is_same<Dictionary, NumberDictionary>::value;
STATIC_ASSERT(is_elements_dictionary != STATIC_ASSERT(is_elements_dictionary !=
(std::is_same<Dictionary, NameDictionary>::value)); (std::is_same<Dictionary, NameDictionary>::value ||
std::is_same<Dictionary, OrderedNameDictionary>::value));
int enum_order = int enum_order =
is_elements_dictionary ? 0 : ComputeEnumerationIndex(key_index); Dictionary::kIsOrderedDictionaryType || is_elements_dictionary
? kDummyEnumerationIndex
: ComputeEnumerationIndex(key_index);
Handle<Object> value_handle; Handle<Object> value_handle;
PropertyDetails details( PropertyDetails details(
value_kind != ClassBoilerplate::kData ? kAccessor : kData, DONT_ENUM, value_kind != ClassBoilerplate::kData ? kAccessor : kData, DONT_ENUM,
PropertyCellType::kNoCell, enum_order); PropertyCellType::kNoCell, enum_order);
if (value_kind == ClassBoilerplate::kData) { if (value_kind == ClassBoilerplate::kData) {
value_handle = handle(value, isolate); value_handle = handle(value, isolate);
} else { } else {
...@@ -172,7 +193,9 @@ void AddToDictionaryTemplate(LocalIsolate* isolate, ...@@ -172,7 +193,9 @@ void AddToDictionaryTemplate(LocalIsolate* isolate,
} else { } else {
// Entry found, update it. // Entry found, update it.
int enum_order = dictionary->DetailsAt(entry).dictionary_index(); int enum_order = Dictionary::kIsOrderedDictionaryType
? kDummyEnumerationIndex
: dictionary->DetailsAt(entry).dictionary_index();
Object existing_value = dictionary->ValueAt(entry); Object existing_value = dictionary->ValueAt(entry);
if (value_kind == ClassBoilerplate::kData) { if (value_kind == ClassBoilerplate::kData) {
// Computed value is a normal method. // Computed value is a normal method.
...@@ -278,7 +301,7 @@ class ObjectDescriptor { ...@@ -278,7 +301,7 @@ class ObjectDescriptor {
Handle<Object> properties_template() const { Handle<Object> properties_template() const {
return HasDictionaryProperties() return HasDictionaryProperties()
? Handle<Object>::cast(properties_dictionary_template_) ? properties_dictionary_template_
: Handle<Object>::cast(descriptor_array_template_); : Handle<Object>::cast(descriptor_array_template_);
} }
...@@ -293,13 +316,25 @@ class ObjectDescriptor { ...@@ -293,13 +316,25 @@ class ObjectDescriptor {
void CreateTemplates(LocalIsolate* isolate) { void CreateTemplates(LocalIsolate* isolate) {
auto* factory = isolate->factory(); auto* factory = isolate->factory();
descriptor_array_template_ = factory->empty_descriptor_array(); descriptor_array_template_ = factory->empty_descriptor_array();
properties_dictionary_template_ = if (V8_DICT_MODE_PROTOTYPES_BOOL) {
Handle<NameDictionary>::cast(factory->empty_property_dictionary()); properties_dictionary_template_ =
factory->empty_ordered_property_dictionary();
} else {
properties_dictionary_template_ = factory->empty_property_dictionary();
}
if (property_count_ || computed_count_ || property_slack_) { if (property_count_ || computed_count_ || property_slack_) {
if (HasDictionaryProperties()) { if (HasDictionaryProperties()) {
properties_dictionary_template_ = NameDictionary::New( int need_space_for =
isolate, property_count_ + computed_count_ + property_slack_, property_count_ + computed_count_ + property_slack_;
AllocationType::kOld); if (V8_DICT_MODE_PROTOTYPES_BOOL) {
properties_dictionary_template_ =
OrderedNameDictionary::Allocate(isolate, need_space_for,
AllocationType::kOld)
.ToHandleChecked();
} else {
properties_dictionary_template_ = NameDictionary::New(
isolate, need_space_for, AllocationType::kOld);
}
} else { } else {
descriptor_array_template_ = DescriptorArray::Allocate( descriptor_array_template_ = DescriptorArray::Allocate(
isolate, 0, property_count_ + property_slack_, isolate, 0, property_count_ + property_slack_,
...@@ -326,11 +361,21 @@ class ObjectDescriptor { ...@@ -326,11 +361,21 @@ class ObjectDescriptor {
DCHECK(!value->IsAccessorPair()); DCHECK(!value->IsAccessorPair());
if (HasDictionaryProperties()) { if (HasDictionaryProperties()) {
PropertyKind kind = is_accessor ? i::kAccessor : i::kData; PropertyKind kind = is_accessor ? i::kAccessor : i::kData;
int enum_order = V8_DICT_MODE_PROTOTYPES_BOOL ? kDummyEnumerationIndex
: next_enumeration_index_++;
PropertyDetails details(kind, attribs, PropertyCellType::kNoCell, PropertyDetails details(kind, attribs, PropertyCellType::kNoCell,
next_enumeration_index_++); enum_order);
properties_dictionary_template_ = if (V8_DICT_MODE_PROTOTYPES_BOOL) {
DictionaryAddNoUpdateNextEnumerationIndex( properties_dictionary_template_ =
isolate, properties_dictionary_template_, name, value, details); DictionaryAddNoUpdateNextEnumerationIndex(
isolate, properties_ordered_dictionary_template(), name, value,
details);
} else {
properties_dictionary_template_ =
DictionaryAddNoUpdateNextEnumerationIndex(
isolate, properties_dictionary_template(), name, value,
details);
}
} else { } else {
Descriptor d = is_accessor Descriptor d = is_accessor
? Descriptor::AccessorConstant(name, value, attribs) ? Descriptor::AccessorConstant(name, value, attribs)
...@@ -345,8 +390,14 @@ class ObjectDescriptor { ...@@ -345,8 +390,14 @@ class ObjectDescriptor {
Smi value = Smi::FromInt(value_index); Smi value = Smi::FromInt(value_index);
if (HasDictionaryProperties()) { if (HasDictionaryProperties()) {
UpdateNextEnumerationIndex(value_index); UpdateNextEnumerationIndex(value_index);
AddToDictionaryTemplate(isolate, properties_dictionary_template_, name, if (V8_DICT_MODE_PROTOTYPES_BOOL) {
value_index, value_kind, value); AddToDictionaryTemplate(isolate,
properties_ordered_dictionary_template(), name,
value_index, value_kind, value);
} else {
AddToDictionaryTemplate(isolate, properties_dictionary_template(), name,
value_index, value_kind, value);
}
} else { } else {
temp_handle_.PatchValue(value); temp_handle_.PatchValue(value);
AddToDescriptorArrayTemplate(isolate, descriptor_array_template_, name, AddToDescriptorArrayTemplate(isolate, descriptor_array_template_, name,
...@@ -379,14 +430,24 @@ class ObjectDescriptor { ...@@ -379,14 +430,24 @@ class ObjectDescriptor {
void Finalize(LocalIsolate* isolate) { void Finalize(LocalIsolate* isolate) {
if (HasDictionaryProperties()) { if (HasDictionaryProperties()) {
DCHECK_EQ(current_computed_index_, computed_properties_->length()); DCHECK_EQ(current_computed_index_, computed_properties_->length());
properties_dictionary_template_->set_next_enumeration_index( if (!V8_DICT_MODE_PROTOTYPES_BOOL) {
next_enumeration_index_); properties_dictionary_template()->set_next_enumeration_index(
next_enumeration_index_);
}
} else { } else {
DCHECK(descriptor_array_template_->IsSortedNoDuplicates()); DCHECK(descriptor_array_template_->IsSortedNoDuplicates());
} }
} }
private: private:
Handle<NameDictionary> properties_dictionary_template() const {
return Handle<NameDictionary>::cast(properties_dictionary_template_);
}
Handle<OrderedNameDictionary> properties_ordered_dictionary_template() const {
return Handle<OrderedNameDictionary>::cast(properties_dictionary_template_);
}
const int property_slack_; const int property_slack_;
int property_count_ = 0; int property_count_ = 0;
int next_enumeration_index_ = PropertyDetails::kInitialIndex; int next_enumeration_index_ = PropertyDetails::kInitialIndex;
...@@ -395,16 +456,19 @@ class ObjectDescriptor { ...@@ -395,16 +456,19 @@ class ObjectDescriptor {
int current_computed_index_ = 0; int current_computed_index_ = 0;
Handle<DescriptorArray> descriptor_array_template_; Handle<DescriptorArray> descriptor_array_template_;
Handle<NameDictionary> properties_dictionary_template_;
// Is either a NameDictionary or OrderedNameDictionary.
Handle<HeapObject> properties_dictionary_template_;
Handle<NumberDictionary> elements_dictionary_template_; Handle<NumberDictionary> elements_dictionary_template_;
Handle<FixedArray> computed_properties_; Handle<FixedArray> computed_properties_;
// This temporary handle is used for storing to descriptor array. // This temporary handle is used for storing to descriptor array.
Handle<Object> temp_handle_; Handle<Object> temp_handle_;
}; };
template <typename LocalIsolate> template <typename LocalIsolate, typename PropertyDict>
void ClassBoilerplate::AddToPropertiesTemplate( void ClassBoilerplate::AddToPropertiesTemplate(
LocalIsolate* isolate, Handle<NameDictionary> dictionary, Handle<Name> name, LocalIsolate* isolate, Handle<PropertyDict> dictionary, Handle<Name> name,
int key_index, ClassBoilerplate::ValueKind value_kind, Smi value) { int key_index, ClassBoilerplate::ValueKind value_kind, Smi value) {
AddToDictionaryTemplate(isolate, dictionary, name, key_index, value_kind, AddToDictionaryTemplate(isolate, dictionary, name, key_index, value_kind,
value); value);
...@@ -415,6 +479,10 @@ template void ClassBoilerplate::AddToPropertiesTemplate( ...@@ -415,6 +479,10 @@ template void ClassBoilerplate::AddToPropertiesTemplate(
template void ClassBoilerplate::AddToPropertiesTemplate( template void ClassBoilerplate::AddToPropertiesTemplate(
LocalIsolate* isolate, Handle<NameDictionary> dictionary, Handle<Name> name, LocalIsolate* isolate, Handle<NameDictionary> dictionary, Handle<Name> name,
int key_index, ClassBoilerplate::ValueKind value_kind, Smi value); int key_index, ClassBoilerplate::ValueKind value_kind, Smi value);
template void ClassBoilerplate::AddToPropertiesTemplate(
Isolate* isolate, Handle<OrderedNameDictionary> dictionary,
Handle<Name> name, int key_index, ClassBoilerplate::ValueKind value_kind,
Smi value);
template <typename LocalIsolate> template <typename LocalIsolate>
void ClassBoilerplate::AddToElementsTemplate( void ClassBoilerplate::AddToElementsTemplate(
......
...@@ -110,9 +110,9 @@ class ClassBoilerplate : public FixedArray { ...@@ -110,9 +110,9 @@ class ClassBoilerplate : public FixedArray {
DECL_ACCESSORS(instance_elements_template, Object) DECL_ACCESSORS(instance_elements_template, Object)
DECL_ACCESSORS(instance_computed_properties, FixedArray) DECL_ACCESSORS(instance_computed_properties, FixedArray)
template <typename LocalIsolate> template <typename LocalIsolate, typename Dictionary>
static void AddToPropertiesTemplate(LocalIsolate* isolate, static void AddToPropertiesTemplate(LocalIsolate* isolate,
Handle<NameDictionary> dictionary, Handle<Dictionary> dictionary,
Handle<Name> name, int key_index, Handle<Name> name, int key_index,
ValueKind value_kind, Smi value); ValueKind value_kind, Smi value);
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include <limits> #include <limits>
#include "src/builtins/accessors.h" #include "src/builtins/accessors.h"
#include "src/common/globals.h"
#include "src/common/message-template.h" #include "src/common/message-template.h"
#include "src/debug/debug.h" #include "src/debug/debug.h"
#include "src/execution/arguments-inl.h" #include "src/execution/arguments-inl.h"
...@@ -120,10 +121,9 @@ RUNTIME_FUNCTION(Runtime_HomeObjectSymbol) { ...@@ -120,10 +121,9 @@ RUNTIME_FUNCTION(Runtime_HomeObjectSymbol) {
namespace { namespace {
template <typename Dictionary> template <typename Dictionary>
Handle<Name> KeyToName(Isolate* isolate, Handle<Object> key); Handle<Name> KeyToName(Isolate* isolate, Handle<Object> key) {
STATIC_ASSERT((std::is_same<Dictionary, OrderedNameDictionary>::value ||
template <> std::is_same<Dictionary, NameDictionary>::value));
Handle<Name> KeyToName<NameDictionary>(Isolate* isolate, Handle<Object> key) {
DCHECK(key->IsName()); DCHECK(key->IsName());
return Handle<Name>::cast(key); return Handle<Name>::cast(key);
} }
...@@ -291,12 +291,13 @@ bool SubstituteValues(Isolate* isolate, Handle<Dictionary> dictionary, ...@@ -291,12 +291,13 @@ bool SubstituteValues(Isolate* isolate, Handle<Dictionary> dictionary,
return true; return true;
} }
template <typename Dictionary>
void UpdateProtectors(Isolate* isolate, Handle<JSObject> receiver, void UpdateProtectors(Isolate* isolate, Handle<JSObject> receiver,
Handle<NameDictionary> properties_dictionary) { Handle<Dictionary> properties_dictionary) {
ReadOnlyRoots roots(isolate); ReadOnlyRoots roots(isolate);
for (InternalIndex i : properties_dictionary->IterateEntries()) { for (InternalIndex i : properties_dictionary->IterateEntries()) {
Object maybe_key = properties_dictionary->KeyAt(i); Object maybe_key = properties_dictionary->KeyAt(i);
if (!NameDictionary::IsKey(roots, maybe_key)) continue; if (!Dictionary::IsKey(roots, maybe_key)) continue;
Handle<Name> name(Name::cast(maybe_key), isolate); Handle<Name> name(Name::cast(maybe_key), isolate);
LookupIterator::UpdateProtector(isolate, receiver, name); LookupIterator::UpdateProtector(isolate, receiver, name);
} }
...@@ -421,9 +422,23 @@ bool AddDescriptorsByTemplate( ...@@ -421,9 +422,23 @@ bool AddDescriptorsByTemplate(
return true; return true;
} }
// TODO(v8:7569): This is a workaround for the Handle vs MaybeHandle difference
// in the return types of the different Add functions:
// OrderedNameDictionary::Add returns MaybeHandle, NameDictionary::Add returns
// Handle.
template <typename T>
Handle<T> ToHandle(Handle<T> h) {
return h;
}
template <typename T>
Handle<T> ToHandle(MaybeHandle<T> h) {
return h.ToHandleChecked();
}
template <typename Dictionary>
bool AddDescriptorsByTemplate( bool AddDescriptorsByTemplate(
Isolate* isolate, Handle<Map> map, Isolate* isolate, Handle<Map> map,
Handle<NameDictionary> properties_dictionary_template, Handle<Dictionary> properties_dictionary_template,
Handle<NumberDictionary> elements_dictionary_template, Handle<NumberDictionary> elements_dictionary_template,
Handle<FixedArray> computed_properties, Handle<JSObject> receiver, Handle<FixedArray> computed_properties, Handle<JSObject> receiver,
bool install_name_accessor, bool install_name_accessor,
...@@ -431,7 +446,7 @@ bool AddDescriptorsByTemplate( ...@@ -431,7 +446,7 @@ bool AddDescriptorsByTemplate(
int computed_properties_length = computed_properties->length(); int computed_properties_length = computed_properties->length();
// Shallow-copy properties template. // Shallow-copy properties template.
Handle<NameDictionary> properties_dictionary = Handle<Dictionary> properties_dictionary =
ShallowCopyDictionaryTemplate(isolate, properties_dictionary_template); ShallowCopyDictionaryTemplate(isolate, properties_dictionary_template);
Handle<NumberDictionary> elements_dictionary = Handle<NumberDictionary> elements_dictionary =
ShallowCopyDictionaryTemplate(isolate, elements_dictionary_template); ShallowCopyDictionaryTemplate(isolate, elements_dictionary_template);
...@@ -465,18 +480,17 @@ bool AddDescriptorsByTemplate( ...@@ -465,18 +480,17 @@ bool AddDescriptorsByTemplate(
} }
// Replace all indices with proper methods. // Replace all indices with proper methods.
if (!SubstituteValues<NameDictionary>(isolate, properties_dictionary, if (!SubstituteValues<Dictionary>(isolate, properties_dictionary, receiver,
receiver, args, args, &install_name_accessor)) {
&install_name_accessor)) {
return false; return false;
} }
if (install_name_accessor) { if (install_name_accessor) {
PropertyAttributes attribs = PropertyAttributes attribs =
static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY); static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY);
PropertyDetails details(kAccessor, attribs, PropertyCellType::kNoCell); PropertyDetails details(kAccessor, attribs, PropertyCellType::kNoCell);
Handle<NameDictionary> dict = NameDictionary::Add( Handle<Dictionary> dict = ToHandle(Dictionary::Add(
isolate, properties_dictionary, isolate->factory()->name_string(), isolate, properties_dictionary, isolate->factory()->name_string(),
isolate->factory()->function_name_accessor(), details); isolate->factory()->function_name_accessor(), details));
CHECK_EQ(*dict, *properties_dictionary); CHECK_EQ(*dict, *properties_dictionary);
} }
...@@ -530,23 +544,8 @@ bool InitClassPrototype(Isolate* isolate, ...@@ -530,23 +544,8 @@ bool InitClassPrototype(Isolate* isolate,
Handle<Object> properties_template( Handle<Object> properties_template(
class_boilerplate->instance_properties_template(), isolate); class_boilerplate->instance_properties_template(), isolate);
if (properties_template->IsNameDictionary()) {
Handle<NameDictionary> properties_dictionary_template =
Handle<NameDictionary>::cast(properties_template);
map->set_is_dictionary_map(true); if (properties_template->IsDescriptorArray()) {
map->set_is_migration_target(false);
map->set_may_have_interesting_symbols(true);
map->set_construction_counter(Map::kNoSlackTracking);
// Class prototypes do not have a name accessor.
const bool install_name_accessor = false;
return AddDescriptorsByTemplate(
isolate, map, properties_dictionary_template,
elements_dictionary_template, computed_properties, prototype,
install_name_accessor, args);
} else {
Handle<DescriptorArray> descriptors_template = Handle<DescriptorArray> descriptors_template =
Handle<DescriptorArray>::cast(properties_template); Handle<DescriptorArray>::cast(properties_template);
...@@ -556,6 +555,30 @@ bool InitClassPrototype(Isolate* isolate, ...@@ -556,6 +555,30 @@ bool InitClassPrototype(Isolate* isolate,
return AddDescriptorsByTemplate(isolate, map, descriptors_template, return AddDescriptorsByTemplate(isolate, map, descriptors_template,
elements_dictionary_template, prototype, elements_dictionary_template, prototype,
args); args);
} else {
map->set_is_dictionary_map(true);
map->set_is_migration_target(false);
map->set_may_have_interesting_symbols(true);
map->set_construction_counter(Map::kNoSlackTracking);
// Class prototypes do not have a name accessor.
const bool install_name_accessor = false;
if (V8_DICT_MODE_PROTOTYPES_BOOL) {
Handle<OrderedNameDictionary> properties_dictionary_template =
Handle<OrderedNameDictionary>::cast(properties_template);
return AddDescriptorsByTemplate(
isolate, map, properties_dictionary_template,
elements_dictionary_template, computed_properties, prototype,
install_name_accessor, args);
} else {
Handle<NameDictionary> properties_dictionary_template =
Handle<NameDictionary>::cast(properties_template);
return AddDescriptorsByTemplate(
isolate, map, properties_dictionary_template,
elements_dictionary_template, computed_properties, prototype,
install_name_accessor, args);
}
} }
} }
...@@ -582,10 +605,14 @@ bool InitClassConstructor( ...@@ -582,10 +605,14 @@ bool InitClassConstructor(
Handle<Object> properties_template( Handle<Object> properties_template(
class_boilerplate->static_properties_template(), isolate); class_boilerplate->static_properties_template(), isolate);
if (properties_template->IsNameDictionary()) { if (properties_template->IsDescriptorArray()) {
Handle<NameDictionary> properties_dictionary_template = Handle<DescriptorArray> descriptors_template =
Handle<NameDictionary>::cast(properties_template); Handle<DescriptorArray>::cast(properties_template);
return AddDescriptorsByTemplate(isolate, map, descriptors_template,
elements_dictionary_template, constructor,
args);
} else {
map->set_is_dictionary_map(true); map->set_is_dictionary_map(true);
map->InitializeDescriptors(isolate, map->InitializeDescriptors(isolate,
ReadOnlyRoots(isolate).empty_descriptor_array(), ReadOnlyRoots(isolate).empty_descriptor_array(),
...@@ -597,17 +624,22 @@ bool InitClassConstructor( ...@@ -597,17 +624,22 @@ bool InitClassConstructor(
// All class constructors have a name accessor. // All class constructors have a name accessor.
const bool install_name_accessor = true; const bool install_name_accessor = true;
return AddDescriptorsByTemplate( if (V8_DICT_MODE_PROTOTYPES_BOOL) {
isolate, map, properties_dictionary_template, Handle<OrderedNameDictionary> properties_dictionary_template =
elements_dictionary_template, computed_properties, constructor, Handle<OrderedNameDictionary>::cast(properties_template);
install_name_accessor, args);
} else {
Handle<DescriptorArray> descriptors_template =
Handle<DescriptorArray>::cast(properties_template);
return AddDescriptorsByTemplate(isolate, map, descriptors_template, return AddDescriptorsByTemplate(
elements_dictionary_template, constructor, isolate, map, properties_dictionary_template,
args); elements_dictionary_template, computed_properties, constructor,
install_name_accessor, args);
} else {
Handle<NameDictionary> properties_dictionary_template =
Handle<NameDictionary>::cast(properties_template);
return AddDescriptorsByTemplate(
isolate, map, properties_dictionary_template,
elements_dictionary_template, computed_properties, constructor,
install_name_accessor, args);
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment