/external/v8/src/objects/ |
D | dictionary.h | 300 EXTERN_DECLARE_DICTIONARY(NumberDictionary, NumberDictionaryShape) in EXTERN_DECLARE_DICTIONARY() argument 304 class NumberDictionary in EXTERN_DECLARE_DICTIONARY() 305 : public Dictionary<NumberDictionary, NumberDictionaryShape> { in EXTERN_DECLARE_DICTIONARY() 309 DECL_CAST(NumberDictionary) in EXTERN_DECLARE_DICTIONARY() 310 DECL_PRINTER(NumberDictionary) in EXTERN_DECLARE_DICTIONARY() 313 V8_WARN_UNUSED_RESULT static Handle<NumberDictionary> Set( in EXTERN_DECLARE_DICTIONARY() 314 Isolate* isolate, Handle<NumberDictionary> dictionary, uint32_t key, in EXTERN_DECLARE_DICTIONARY() 350 OBJECT_CONSTRUCTORS(NumberDictionary, in EXTERN_DECLARE_DICTIONARY() 351 Dictionary<NumberDictionary, NumberDictionaryShape>); in EXTERN_DECLARE_DICTIONARY()
|
D | literal-objects.cc | 97 Handle<NumberDictionary> DictionaryAddNoUpdateNextEnumerationIndex( in DictionaryAddNoUpdateNextEnumerationIndex() 98 LocalIsolate* isolate, Handle<NumberDictionary> dictionary, in DictionaryAddNoUpdateNextEnumerationIndex() 103 return NumberDictionary::Add(isolate, dictionary, element, value, details, in DictionaryAddNoUpdateNextEnumerationIndex() 112 void DictionaryUpdateMaxNumberKey(Handle<NumberDictionary> dictionary, in DictionaryUpdateMaxNumberKey() 142 std::is_same<Dictionary, NumberDictionary>::value; in AddToDictionaryTemplate() 285 Handle<NumberDictionary> elements_template() const { in elements_template() 311 ? NumberDictionary::New(isolate, element_count_ + computed_count_, in CreateTemplates() 399 Handle<NumberDictionary> elements_dictionary_template_; 421 LocalIsolate* isolate, Handle<NumberDictionary> dictionary, uint32_t key, in AddToElementsTemplate() 427 Isolate* isolate, Handle<NumberDictionary> dictionary, uint32_t key, [all …]
|
D | elements.cc | 113 V(DictionaryElementsAccessor, DICTIONARY_ELEMENTS, NumberDictionary) \ 209 NumberDictionary from = NumberDictionary::cast(from_base); in CopyDictionaryToObjectElements() 419 NumberDictionary from = NumberDictionary::cast(from_base); in CopyDictionaryToDoubleElements() 979 Handle<NumberDictionary> Normalize(Handle<JSObject> object) final { in Normalize() 984 static Handle<NumberDictionary> NormalizeImpl( in NormalizeImpl() 1346 NumberDictionary dict = NumberDictionary::cast(backing_store); in NumberOfElementsImpl() 1353 Handle<NumberDictionary> dict = in SetLengthImpl() 1354 Handle<NumberDictionary>::cast(backing_store); in SetLengthImpl() 1413 Handle<NumberDictionary> dict(NumberDictionary::cast(obj->elements()), in DeleteImpl() 1415 dict = NumberDictionary::DeleteEntry(obj->GetIsolate(), dict, entry); in DeleteImpl() [all …]
|
D | dictionary-inl.h | 24 CAST_ACCESSOR(NumberDictionary) in CAST_ACCESSOR() 100 NumberDictionary::NumberDictionary(Address ptr) in NumberDictionary() function 101 : Dictionary<NumberDictionary, NumberDictionaryShape>(ptr) { in NumberDictionary() 110 bool NumberDictionary::requires_slow_elements() { in requires_slow_elements() 116 uint32_t NumberDictionary::max_number_key() { in max_number_key() 124 void NumberDictionary::set_requires_slow_elements() { in set_requires_slow_elements() 267 Handle<Map> NumberDictionary::GetMap(ReadOnlyRoots roots) { in GetMap()
|
D | js-objects-inl.h | 633 DEF_GETTER(JSObject, element_dictionary, NumberDictionary) { in DEF_GETTER() argument 636 return NumberDictionary::cast(elements(isolate)); in DEF_GETTER() 795 uint32_t size_threshold = NumberDictionary::kPreferFastElementsSizeFactor * in ACCESSORS() 796 NumberDictionary::ComputeCapacity(used_elements) * in ACCESSORS() 797 NumberDictionary::kEntrySize; in ACCESSORS()
|
D | literal-objects.h | 121 Handle<NumberDictionary> dictionary,
|
D | js-objects.cc | 3617 void JSObject::RequireSlowElements(NumberDictionary dictionary) { in RequireSlowElements() 3629 Handle<NumberDictionary> JSObject::NormalizeElements(Handle<JSObject> object) { in NormalizeElements() 3642 return handle(NumberDictionary::cast(elements), isolate); in NormalizeElements() 3651 Handle<NumberDictionary> dictionary = in NormalizeElements() 3815 NumberDictionary::cast(object.elements()), object.GetReadOnlyRoots(), in TestElementsIntegrityLevel() 3887 Handle<NumberDictionary> dictionary = NormalizeElements(object); in PreventExtensions() 3946 Isolate* isolate, ReadOnlyRoots roots, Handle<NumberDictionary> dictionary, 3949 Handle<NumberDictionary> CreateElementDictionary(Isolate* isolate, in CreateElementDictionary() 3951 Handle<NumberDictionary> new_element_dictionary; in CreateElementDictionary() 4050 Handle<NumberDictionary> new_element_dictionary; in PreventExtensionsWithTransition() [all …]
|
D | arguments.tq | 82 arguments: FixedArray|NumberDictionary; 340 case (NumberDictionary): {
|
D | elements.h | 130 virtual Handle<NumberDictionary> Normalize(Handle<JSObject> object) = 0;
|
D | js-objects.h | 370 DECL_GETTER(element_dictionary, NumberDictionary) 622 V8_EXPORT_PRIVATE static Handle<NumberDictionary> NormalizeElements( 625 void RequireSlowElements(NumberDictionary dictionary);
|
D | js-objects.tq | 32 // In the slow mode the elements is either a NumberDictionary or a
|
D | object-list-macros.h | 179 V(NumberDictionary) \
|
D | lookup.cc | 801 Handle<NumberDictionary> dictionary = JSObject::NormalizeElements(receiver); in TransitionToAccessorPair() 803 dictionary = NumberDictionary::Set(isolate_, dictionary, array_index(), in TransitionToAccessorPair()
|
D | objects.cc | 2385 NumberDictionary::cast(*this).Rehash(isolate); in RehashBasedOnMap() 5985 void NumberDictionary::UpdateMaxNumberKey(uint32_t key, in UpdateMaxNumberKey() 6008 Handle<NumberDictionary> NumberDictionary::Set( in Set() 6009 Isolate* isolate, Handle<NumberDictionary> dictionary, uint32_t key, in Set() 6015 Handle<NumberDictionary> new_dictionary = in Set() 6021 void NumberDictionary::CopyValuesTo(FixedArray elements) { in CopyValuesTo() 6722 EXTERN_DEFINE_DICTIONARY(NumberDictionary, NumberDictionaryShape) in EXTERN_DEFINE_HASH_TABLE()
|
/external/v8/src/runtime/ |
D | runtime-classes.cc | 132 Handle<Name> KeyToName<NumberDictionary>(Isolate* isolate, Handle<Object> key) { in KeyToName() 317 Handle<NumberDictionary> elements_dictionary_template, in AddDescriptorsByTemplate() 325 Handle<NumberDictionary> elements_dictionary = in AddDescriptorsByTemplate() 406 if (!SubstituteValues<NumberDictionary>(isolate, elements_dictionary, in AddDescriptorsByTemplate() 427 Handle<NumberDictionary> elements_dictionary_template, in AddDescriptorsByTemplate() 436 Handle<NumberDictionary> elements_dictionary = in AddDescriptorsByTemplate() 486 if (!SubstituteValues<NumberDictionary>(isolate, elements_dictionary, in AddDescriptorsByTemplate() 527 Handle<NumberDictionary> elements_dictionary_template( in InitClassPrototype() 528 NumberDictionary::cast(class_boilerplate->instance_elements_template()), in InitClassPrototype() 576 Handle<NumberDictionary> elements_dictionary_template( in InitClassConstructor() [all …]
|
D | runtime-literals.cc | 184 Handle<NumberDictionary> element_dictionary( in StructureWalk()
|
/external/v8/src/builtins/ |
D | builtins-array.cc | 692 Handle<NumberDictionary> dict(NumberDictionary::cast(*storage_), isolate_); in visit() 696 Handle<NumberDictionary> result = NumberDictionary::Set( in visit() 763 Handle<NumberDictionary> slow_storage( in SetDictionaryMode() 764 NumberDictionary::New(isolate_, current_storage->length())); in SetDictionaryMode() 773 Handle<NumberDictionary> new_storage = NumberDictionary::Set( in SetDictionaryMode() 862 NumberDictionary dictionary = NumberDictionary::cast(array->elements()); in EstimateElementCount() 935 NumberDictionary dict = NumberDictionary::cast(object->elements()); in CollectElementIndices() 1145 Handle<NumberDictionary> dict(array->element_dictionary(), isolate); in IterateElements() 1361 storage = NumberDictionary::New(isolate, estimate_nof); in Slow_ArrayConcat()
|
D | array-join.tq | 22 const dict: NumberDictionary = UnsafeCast<NumberDictionary>(array.elements); 340 const dict: NumberDictionary = 341 UnsafeCast<NumberDictionary>(array.elements);
|
D | base.tq | 151 extern class NumberDictionary extends HashTable; 1079 extern macro GetNumberDictionaryNumberOfElements(NumberDictionary): Smi; 1083 extern macro BasicLoadNumberDictionaryElement(NumberDictionary, intptr): JSAny
|
/external/v8/src/json/ |
D | json-parser.cc | 420 Handle<NumberDictionary> elms = in BuildJsonObject() 421 NumberDictionary::New(isolate_, cont.elements); in BuildJsonObject() 427 elms = NumberDictionary::Set(isolate_, elms, index, value); in BuildJsonObject()
|
/external/v8/src/diagnostics/ |
D | objects-debug.cc | 1013 NumberDictionary dict = NumberDictionary::cast(elements()); in JSArrayVerify() 1679 NumberDictionary dict = element_dictionary(); in USE_TORQUE_VERIFIER()
|
D | objects-printer.cc | 115 NumberDictionary::cast(*this).NumberDictionaryPrint(os); in HeapObjectPrint() 391 NumberDictionary dict = NumberDictionary::cast(elements); in PrintDictionaryElements() 774 void NumberDictionary::NumberDictionaryPrint(std::ostream& os) { in NumberDictionaryPrint()
|
/external/v8/src/heap/ |
D | setup-heap-internal.cc | 835 Handle<NumberDictionary> slow_element_dictionary = NumberDictionary::New( in CreateInitialObjects()
|
D | object-stats.cc | 627 object, NumberDictionary::cast(elements), in RecordVirtualJSObjectDetails()
|
/external/v8/src/roots/ |
D | roots.h | 165 V(NumberDictionary, empty_slow_element_dictionary, \
|