Searched refs:SimpleNumberDictionary (Results 1 – 20 of 20) sorted by relevance
/external/v8/src/objects/ |
D | dictionary.h | 273 HashTable<SimpleNumberDictionary, SimpleNumberDictionaryShape>; 276 Dictionary<SimpleNumberDictionary, SimpleNumberDictionaryShape>; 279 class SimpleNumberDictionary 280 : public Dictionary<SimpleNumberDictionary, SimpleNumberDictionaryShape> { 282 DECL_CAST(SimpleNumberDictionary) 284 V8_WARN_UNUSED_RESULT static Handle<SimpleNumberDictionary> Set( 285 Isolate* isolate, Handle<SimpleNumberDictionary> dictionary, uint32_t key,
|
D | code.h | 552 Handle<SimpleNumberDictionary> cache);
|
/external/v8/src/ |
D | feedback-vector.cc | 1179 Handle<SimpleNumberDictionary> types; in Collect() 1183 types = SimpleNumberDictionary::New(isolate, 1); in Collect() 1185 types = handle(SimpleNumberDictionary::cast(feedback->ToStrongHeapObject()), in Collect() 1192 if (entry == SimpleNumberDictionary::kNotFound) { in Collect() 1194 types = SimpleNumberDictionary::Set( in Collect() 1202 types = SimpleNumberDictionary::Set( in Collect() 1222 Handle<SimpleNumberDictionary> types( in GetSourcePositions() 1223 SimpleNumberDictionary::cast(feedback->ToStrongHeapObject()), isolate); in GetSourcePositions() 1225 for (int index = SimpleNumberDictionary::kElementsStartIndex; in GetSourcePositions() 1226 index < types->length(); index += SimpleNumberDictionary::kEntrySize) { in GetSourcePositions() [all …]
|
D | code-stubs.cc | 73 SimpleNumberDictionary* stubs = isolate()->heap()->code_stubs(); in FindCodeInCache() 75 if (index != SimpleNumberDictionary::kNotFound) { in FindCodeInCache() 99 Handle<SimpleNumberDictionary> dict(heap->code_stubs(), isolate()); in DeleteStubFromCacheForTesting() 101 DCHECK_NE(SimpleNumberDictionary::kNotFound, entry); in DeleteStubFromCacheForTesting() 102 dict = SimpleNumberDictionary::DeleteEntry(isolate(), dict, entry); in DeleteStubFromCacheForTesting() 169 Handle<SimpleNumberDictionary> dict = SimpleNumberDictionary::Set( in GetCode()
|
D | api-natives.cc | 292 Handle<SimpleNumberDictionary> slow_cache = in ProbeInstantiationsCache() 295 if (entry == SimpleNumberDictionary::kNotFound) { in ProbeInstantiationsCache() 320 Handle<SimpleNumberDictionary> cache = in CacheTemplateInstantiation() 323 SimpleNumberDictionary::Set(isolate, cache, serial_number, object); in CacheTemplateInstantiation() 342 Handle<SimpleNumberDictionary> cache = in UncacheTemplateInstantiation() 345 DCHECK_NE(SimpleNumberDictionary::kNotFound, entry); in UncacheTemplateInstantiation() 346 cache = SimpleNumberDictionary::DeleteEntry(isolate, cache, entry); in UncacheTemplateInstantiation()
|
D | value-serializer.cc | 1138 *SimpleNumberDictionary::New(isolate_, 0)); in TransferArrayBuffer() 1140 Handle<SimpleNumberDictionary> dictionary = in TransferArrayBuffer() 1142 Handle<SimpleNumberDictionary> new_dictionary = SimpleNumberDictionary::Set( in TransferArrayBuffer() 1690 Handle<SimpleNumberDictionary> transfer_map; in ReadTransferredJSArrayBuffer() 1696 if (index == SimpleNumberDictionary::kNotFound) { in ReadTransferredJSArrayBuffer()
|
D | value-serializer.h | 312 MaybeHandle<SimpleNumberDictionary> array_buffer_transfer_map_;
|
D | roots.h | 236 V(SimpleNumberDictionary, code_stubs, CodeStubs) \
|
D | contexts.h | 297 V(SLOW_TEMPLATE_INSTANTIATIONS_CACHE_INDEX, SimpleNumberDictionary, \
|
D | isolate.cc | 739 Handle<SimpleNumberDictionary> cache; in NewStackFrameObject() 746 cache = Handle<SimpleNumberDictionary>::cast(maybe_cache); in NewStackFrameObject() 748 cache = SimpleNumberDictionary::New(isolate_, 1); in NewStackFrameObject() 778 SimpleNumberDictionary::Set(isolate_, cache, code_offset, frame); in NewStackFrameObject()
|
D | globals.h | 498 class SimpleNumberDictionary; variable
|
D | objects.h | 879 V(SimpleNumberDictionary) \ 1011 V(SimpleNumberDictionary, SIMPLE_NUMBER_DICTIONARY_TYPE) \ 4222 DECL_ACCESSORS(stack_frame_cache, SimpleNumberDictionary)
|
D | objects-inl.h | 518 CAST_ACCESSOR(SimpleNumberDictionary) in CAST_ACCESSOR() 2273 SimpleNumberDictionary, kStackFrameCacheIndex) in ACCESSORS()
|
D | objects.cc | 3795 SimpleNumberDictionary::cast(this)->Rehash(isolate); in RehashBasedOnMap() 14461 Handle<SimpleNumberDictionary> cache) { in SetStackFrameCacheCommon() 14478 Handle<SimpleNumberDictionary> cache) { in SetStackFrameCache() 17880 Handle<SimpleNumberDictionary> SimpleNumberDictionary::Set( in Set() 17881 Isolate* isolate, Handle<SimpleNumberDictionary> dictionary, uint32_t key, in Set() 18848 HashTable<SimpleNumberDictionary, SimpleNumberDictionaryShape>; 18851 Dictionary<SimpleNumberDictionary, SimpleNumberDictionaryShape>;
|
D | bootstrapper.cc | 4892 auto slow_template_instantiations_cache = SimpleNumberDictionary::New( in InstallNatives()
|
/external/v8/src/heap/ |
D | setup-heap-internal.cc | 695 set_code_stubs(*SimpleNumberDictionary::New(isolate(), 128)); in CreateInitialObjects()
|
D | factory.h | 431 Handle<SimpleNumberDictionary> stack_frame_cache);
|
D | heap.h | 868 void SetRootCodeStubs(SimpleNumberDictionary* value);
|
D | heap.cc | 707 void Heap::SetRootCodeStubs(SimpleNumberDictionary* value) { in SetRootCodeStubs()
|
D | factory.cc | 3696 Handle<SimpleNumberDictionary> stack_frame_cache) { in NewSourcePositionTableWithFrameCache()
|