Home
last modified time | relevance | path

Searched refs:maybe_cache (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Disolate.cc738 Handle<Object> maybe_cache; in NewStackFrameObject() local
744 maybe_cache = handle(summ.abstract_code()->stack_frame_cache(), isolate_); in NewStackFrameObject()
745 if (maybe_cache->IsSimpleNumberDictionary()) { in NewStackFrameObject()
746 cache = Handle<SimpleNumberDictionary>::cast(maybe_cache); in NewStackFrameObject()
779 if (*new_cache != *cache || !maybe_cache->IsNumberDictionary()) { in NewStackFrameObject()
Dobjects.cc9315 Handle<Object> maybe_cache(isolate->native_context()->normalized_map_cache(), in Normalize() local
9318 !fast_map->is_prototype_map() && !maybe_cache->IsUndefined(isolate); in Normalize()
9320 if (use_cache) cache = Handle<NormalizedMapCache>::cast(maybe_cache); in Normalize()
/external/v8/src/heap/
Dfactory.cc3750 Handle<Object> maybe_cache(context->map_cache(), isolate()); in ObjectLiteralMapFromCache() local
3751 if (maybe_cache->IsUndefined(isolate())) { in ObjectLiteralMapFromCache()
3753 maybe_cache = NewWeakFixedArray(kMapCacheSize, TENURED); in ObjectLiteralMapFromCache()
3754 context->set_map_cache(*maybe_cache); in ObjectLiteralMapFromCache()
3757 Handle<WeakFixedArray> cache = Handle<WeakFixedArray>::cast(maybe_cache); in ObjectLiteralMapFromCache()
3768 Handle<WeakFixedArray> cache = Handle<WeakFixedArray>::cast(maybe_cache); in ObjectLiteralMapFromCache()