Home
last modified time | relevance | path

Searched refs:NumberDictionary (Results 1 – 12 of 12) sorted by relevance

/external/webkit/V8Binding/v8/src/
Dcode-stubs.cc41 if (index == NumberDictionary::kNotFound) { in GetCode()
83 Handle<NumberDictionary> dict = in GetCode()
85 Handle<NumberDictionary>(Heap::code_stubs()), in GetCode()
91 ASSERT(index != NumberDictionary::kNotFound); in GetCode()
Dfactory.h51 static Handle<NumberDictionary> NewNumberDictionary(int at_least_space_for);
330 static Handle<NumberDictionary> DictionaryAtNumberPut(
331 Handle<NumberDictionary>,
Dobjects.cc1661 NumberDictionary* dictionary = JSObject::cast(pt)->element_dictionary(); in LookupCallbackSetterInPrototypes()
1663 if (entry != NumberDictionary::kNotFound) { in LookupCallbackSetterInPrototypes()
2228 Object* obj = NumberDictionary::Allocate(length); in NormalizeElements()
2230 NumberDictionary* dictionary = NumberDictionary::cast(obj); in NormalizeElements()
2238 dictionary = NumberDictionary::cast(result); in NormalizeElements()
2317 NumberDictionary* dictionary = element_dictionary(); in DeleteElementPostInterceptor()
2319 if (entry != NumberDictionary::kNotFound) { in DeleteElementPostInterceptor()
2403 NumberDictionary* dictionary = element_dictionary(); in DeleteElement()
2405 if (entry != NumberDictionary::kNotFound) { in DeleteElement()
2741 NumberDictionary* dictionary = element_dictionary(); in DefineGetterSetter()
[all …]
Dfactory.cc59 Handle<NumberDictionary> Factory::NewNumberDictionary(int at_least_space_for) { in NewNumberDictionary()
61 CALL_HEAP_FUNCTION(NumberDictionary::Allocate(at_least_space_for), in NewNumberDictionary()
62 NumberDictionary); in NewNumberDictionary()
674 Handle<NumberDictionary> Factory::DictionaryAtNumberPut( in DictionaryAtNumberPut()
675 Handle<NumberDictionary> dictionary, in DictionaryAtNumberPut()
678 CALL_HEAP_FUNCTION(dictionary->AtNumberPut(key, *value), NumberDictionary); in DictionaryAtNumberPut()
Dheap.h131 V(NumberDictionary, code_stubs, CodeStubs) \
132 V(NumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \
741 static void public_set_code_stubs(NumberDictionary* value) { in public_set_code_stubs()
746 static void public_set_non_monomorphic_cache(NumberDictionary* value) { in public_set_non_monomorphic_cache()
Dglobals.h197 class NumberDictionary; variable
Dobjects-inl.h1500 bool NumberDictionary::requires_slow_elements() { in requires_slow_elements()
1507 uint32_t NumberDictionary::max_number_key() { in max_number_key()
1515 void NumberDictionary::set_requires_slow_elements() { in set_requires_slow_elements()
2684 NumberDictionary* JSObject::element_dictionary() { in element_dictionary()
2686 return NumberDictionary::cast(elements()); in element_dictionary()
Dobjects.h1333 inline NumberDictionary* element_dictionary(); // Gets slow elements.
2356 class NumberDictionary: public Dictionary<NumberDictionaryShape, uint32_t> {
2358 static NumberDictionary* cast(Object* obj) { in cast()
2360 return reinterpret_cast<NumberDictionary*>(obj); in cast()
Dstub-cache.cc572 NumberDictionary* dictionary = Heap::raw_unchecked_non_monomorphic_cache(); in GetProbeValue()
589 Heap::public_set_non_monomorphic_cache(NumberDictionary::cast(result)); in ProbeCache()
Dheap.cc1466 obj = NumberDictionary::Allocate(128); in CreateInitialObjects()
1468 set_code_stubs(NumberDictionary::cast(obj)); in CreateInitialObjects()
1472 obj = NumberDictionary::Allocate(64); in CreateInitialObjects()
1474 set_non_monomorphic_cache(NumberDictionary::cast(obj)); in CreateInitialObjects()
Dobjects-debug.cc1083 NumberDictionary* dict = element_dictionary(); in IncrementSpillStatistics()
Druntime.cc177 NumberDictionary* element_dictionary = copy->element_dictionary(); in DeepCopyBoilerplate()
5209 Handle<NumberDictionary> dict = Handle<NumberDictionary>::cast(storage_); in visit()
5210 Handle<NumberDictionary> result = in visit()
5279 Handle<NumberDictionary> dict(receiver->element_dictionary()); in IterateElements()
5500 return Smi::FromInt(NumberDictionary::cast(elements)->NumberOfElements()); in Runtime_EstimateNumberOfElements()