Home
last modified time | relevance | path

Searched refs:GlobalDictionary (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/
Dlookup.cc226 Handle<GlobalDictionary> dictionary(holder->global_dictionary()); in PrepareForDataProperty()
292 Handle<GlobalDictionary> dictionary(holder->global_dictionary()); in ReconfigureDataProperty()
349 Handle<GlobalDictionary> dictionary(global->global_dictionary(), in PrepareTransitionToDataProperty()
752 GlobalDictionary* dictionary = JSObject::cast(*holder)->global_dictionary(); in WriteDataValue()
830 GlobalDictionary* dict = JSObject::cast(holder)->global_dictionary(); in LookupInSpecialHolder()
832 if (number == GlobalDictionary::kNotFound) return NOT_FOUND; in LookupInSpecialHolder()
Dobjects-debug.cc662 if (GlobalDictionary::cast(properties())->NumberOfElements() == 0 && in JSGlobalObjectVerify()
1293 GlobalDictionary* dict = global_dictionary(); in IncrementSpillStatistics()
Dobjects.cc1928 Handle<GlobalDictionary> dictionary(object->global_dictionary()); in SetNormalizedProperty()
1931 if (entry == GlobalDictionary::kNotFound) { in SetNormalizedProperty()
1940 dictionary = GlobalDictionary::Add(dictionary, name, value, details); in SetNormalizedProperty()
5929 Handle<GlobalDictionary> dictionary( in DeleteNormalizedProperty()
5931 DCHECK_NE(GlobalDictionary::kNotFound, entry); in DeleteNormalizedProperty()
7589 void DictionaryDetailsAtPut<GlobalDictionary>( in DictionaryDetailsAtPut()
7590 Isolate* isolate, Handle<GlobalDictionary> dictionary, int entry, in DictionaryDetailsAtPut()
7713 Handle<GlobalDictionary> dictionary(object->global_dictionary(), in PreventExtensionsWithTransition()
16564 template class Dictionary<GlobalDictionary, GlobalDictionaryShape,
16598 template Handle<GlobalDictionary>
[all …]
Dglobals.h450 class GlobalDictionary; variable
Dkeys.cc629 GlobalDictionary::CollectKeysTo( in CollectOwnPropertyNames()
Dfactory.cc1776 Handle<GlobalDictionary> dictionary = in NewJSGlobalObject()
1777 GlobalDictionary::New(isolate(), at_least_space_for); in NewJSGlobalObject()
1792 USE(GlobalDictionary::Add(dictionary, name, cell, d)); in NewJSGlobalObject()
Dobjects.h2082 inline GlobalDictionary* global_dictionary();
3800 class GlobalDictionary
3801 : public NameDictionaryBase<GlobalDictionary, GlobalDictionaryShape> {
3803 DECLARE_CAST(GlobalDictionary)
10210 Handle<GlobalDictionary> dictionary, int entry, Handle<Object> value,
10214 Handle<GlobalDictionary> dictionary, int entry);
Dcode-stub-assembler.cc4379 template Node* CodeStubAssembler::EntryToIndex<GlobalDictionary>(Node*, int);
4508 template void CodeStubAssembler::NameDictionaryLookup<GlobalDictionary>(
4652 void CodeStubAssembler::InsertEntry<GlobalDictionary>(Node* dictionary, in InsertEntry()
4909 NameDictionaryLookup<GlobalDictionary>( in TryLookupProperty()
5064 LoadValueByKeyIndex<GlobalDictionary>(dictionary, name_index); in LoadPropertyFromGlobalDictionary()
Dbootstrapper.cc4677 Handle<GlobalDictionary> properties = in TransferNamedProperties()
4678 Handle<GlobalDictionary>(from->global_dictionary()); in TransferNamedProperties()
4680 GlobalDictionary::IterationIndices(properties); in TransferNamedProperties()
Dobjects-inl.h635 CAST_ACCESSOR(GlobalDictionary) in CAST_ACCESSOR()
7148 GlobalDictionary* JSObject::global_dictionary() { in global_dictionary()
7151 return GlobalDictionary::cast(properties()); in global_dictionary()
/external/v8/src/runtime/
Druntime-object.cc69 GlobalDictionary* dictionary = receiver->global_dictionary(); in KeyedGetObjectProperty()
71 if (entry != GlobalDictionary::kNotFound) { in KeyedGetObjectProperty()
/external/v8/src/ic/
Dkeyed-store-generic.cc583 LoadValueByKeyIndex<GlobalDictionary>(dictionary, entry); in LookupPropertyOnPrototypeChain()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1583 GlobalDictionary* dictionary = js_obj->global_dictionary(); in ExtractPropertyReferences()