Searched refs:GlobalDictionary (Results 1 – 15 of 15) sorted by relevance
/external/v8/src/objects/ |
D | dictionary.h | 222 class GlobalDictionary 223 : public BaseNameDictionary<GlobalDictionary, GlobalDictionaryShape> { 225 DECL_CAST(GlobalDictionary)
|
/external/v8/src/ |
D | lookup.cc | 416 Handle<GlobalDictionary> dictionary( in PrepareForDataProperty() 503 Handle<GlobalDictionary> dictionary( in ReconfigureDataProperty() 564 Handle<GlobalDictionary> dictionary(global->global_dictionary(), in PrepareTransitionToDataProperty() 988 GlobalDictionary* dictionary = in WriteDataValue() 1068 GlobalDictionary* dict = in LookupInSpecialHolder() 1071 if (number == GlobalDictionary::kNotFound) return NOT_FOUND; in LookupInSpecialHolder()
|
D | objects-inl.h | 488 CAST_ACCESSOR(GlobalDictionary) in CAST_ACCESSOR() 2633 void JSGlobalObject::set_global_dictionary(GlobalDictionary* dictionary) { in set_global_dictionary() 2638 GlobalDictionary* JSGlobalObject::global_dictionary() { in global_dictionary() 2641 return GlobalDictionary::cast(raw_properties_or_hash()); in global_dictionary() 2949 PropertyCell* GlobalDictionary::CellAt(int entry) { in CellAt() 2963 Name* GlobalDictionary::NameAt(int entry) { return CellAt(entry)->name(); } in NameAt() 2964 Object* GlobalDictionary::ValueAt(int entry) { return CellAt(entry)->value(); } in ValueAt() 2966 void GlobalDictionary::SetEntry(Isolate* isolate, int entry, Object* key, in SetEntry() 2973 void GlobalDictionary::ValueAtPut(int entry, Object* value) { in ValueAtPut()
|
D | objects.h | 808 V(GlobalDictionary) \ 966 V(GlobalDictionary, GLOBAL_DICTIONARY_TYPE) \ 3423 inline GlobalDictionary* global_dictionary(); 3424 inline void set_global_dictionary(GlobalDictionary* dictionary); 4005 Isolate* isolate, Handle<GlobalDictionary> dictionary, int entry, 4009 Isolate* isolate, Handle<GlobalDictionary> dictionary, int entry);
|
D | objects.cc | 2065 Handle<GlobalDictionary> dictionary(global_obj->global_dictionary(), in SetNormalizedProperty() 2069 if (entry == GlobalDictionary::kNotFound) { in SetNormalizedProperty() 2080 GlobalDictionary::Add(isolate, dictionary, name, value, details); in SetNormalizedProperty() 3789 GlobalDictionary::cast(this)->Rehash(isolate); in RehashBasedOnMap() 6722 return GlobalDictionary::cast(properties)->Hash(); in GetIdentityHashHelper() 6841 Handle<GlobalDictionary> dictionary( in DeleteNormalizedProperty() 6843 DCHECK_NE(GlobalDictionary::kNotFound, entry); in DeleteNormalizedProperty() 8746 Handle<GlobalDictionary> dictionary( in PreventExtensionsWithTransition() 16962 if (entry == GlobalDictionary::kNotFound) return; in InvalidatePropertyCell() 16971 Handle<GlobalDictionary> dictionary(global->global_dictionary(), isolate); in EnsureEmptyPropertyCell() [all …]
|
D | keys.cc | 702 GlobalDictionary::CollectKeysTo( in CollectOwnPropertyNames()
|
D | globals.h | 500 class GlobalDictionary; variable
|
D | code-stub-assembler.cc | 7582 template TNode<IntPtrT> CodeStubAssembler::EntryToIndex<GlobalDictionary>( 7627 TNode<HeapObject> CodeStubAssembler::LoadName<GlobalDictionary>( in LoadName() 7639 std::is_same<Dictionary, GlobalDictionary>::value, in NameDictionaryLookup() 7708 template void CodeStubAssembler::NameDictionaryLookup<GlobalDictionary>( 7709 TNode<GlobalDictionary>, TNode<Name>, Label*, TVariable<IntPtrT>*, Label*, 7901 void CodeStubAssembler::InsertEntry<GlobalDictionary>( in InsertEntry() 7902 TNode<GlobalDictionary> dictionary, TNode<Name> key, TNode<Object> value, in InsertEntry() 8262 TNode<GlobalDictionary> dictionary = CAST(LoadSlowProperties(object)); in TryLookupProperty() 8265 NameDictionaryLookup<GlobalDictionary>( in TryLookupProperty()
|
D | objects-debug.cc | 1935 GlobalDictionary* dict = JSGlobalObject::cast(this)->global_dictionary(); in IncrementSpillStatistics()
|
D | bootstrapper.cc | 5562 Handle<GlobalDictionary> properties( in TransferNamedProperties() 5565 GlobalDictionary::IterationIndices(isolate(), properties); in TransferNamedProperties()
|
/external/v8/src/runtime/ |
D | runtime-object.cc | 83 GlobalDictionary* dictionary = in KeyedGetObjectProperty() 86 if (entry != GlobalDictionary::kNotFound) { in KeyedGetObjectProperty()
|
/external/v8/src/heap/ |
D | object-stats.cc | 507 GlobalDictionary* properties = object->global_dictionary(); in RecordVirtualJSGlobalObjectDetails()
|
D | factory.cc | 2801 Handle<GlobalDictionary> dictionary = in NewJSGlobalObject() 2802 GlobalDictionary::New(isolate(), at_least_space_for); in NewJSGlobalObject() 2817 USE(GlobalDictionary::Add(isolate(), dictionary, name, cell, d)); in NewJSGlobalObject()
|
/external/v8/src/ic/ |
D | keyed-store-generic.cc | 632 LoadValueByKeyIndex<GlobalDictionary>(dictionary, entry); in LookupPropertyOnPrototypeChain()
|
/external/v8/src/profiler/ |
D | heap-snapshot-generator.cc | 1462 GlobalDictionary* dictionary = in ExtractPropertyReferences()
|