Home
last modified time | relevance | path

Searched refs:NormalizedMapCache (Results 1 – 8 of 8) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dmap-inl.h869 OBJECT_CONSTRUCTORS_IMPL(NormalizedMapCache, WeakFixedArray) in OBJECT_CONSTRUCTORS_IMPL() argument
870 CAST_ACCESSOR(NormalizedMapCache) in OBJECT_CONSTRUCTORS_IMPL()
871 NEVER_READ_ONLY_SPACE_IMPL(NormalizedMapCache) in OBJECT_CONSTRUCTORS_IMPL()
873 int NormalizedMapCache::GetIndex(Handle<Map> map) { in OBJECT_CONSTRUCTORS_IMPL()
874 return map->Hash() % NormalizedMapCache::kEntries; in OBJECT_CONSTRUCTORS_IMPL()
879 if (WeakFixedArray::cast(*this).length() != NormalizedMapCache::kEntries) { in DEF_GETTER()
Dmap.h954 class NormalizedMapCache : public WeakFixedArray {
957 static Handle<NormalizedMapCache> New(Isolate* isolate);
964 DECL_CAST(NormalizedMapCache)
965 DECL_VERIFIER(NormalizedMapCache)
979 OBJECT_CONSTRUCTORS(NormalizedMapCache, WeakFixedArray);
Dmap.cc1188 Handle<NormalizedMapCache> cache; in Normalize()
1189 if (use_cache) cache = Handle<NormalizedMapCache>::cast(maybe_cache); in Normalize()
2317 Handle<NormalizedMapCache> NormalizedMapCache::New(Isolate* isolate) { in New()
2320 return Handle<NormalizedMapCache>::cast(array); in New()
2323 MaybeHandle<Map> NormalizedMapCache::Get(Handle<Map> fast_map, in Get()
2341 void NormalizedMapCache::Set(Handle<Map> fast_map, Handle<Map> normalized_map) { in Set()
Dobject-list-macros.h193 V(NormalizedMapCache) \
/third_party/node/deps/v8/tools/system-analyzer/
Dprocessor.mjs510 // the NormalizedMapCache.
/third_party/node/deps/v8/src/diagnostics/
Dobjects-debug.cc1863 void NormalizedMapCache::NormalizedMapCacheVerify(Isolate* isolate) { in NormalizedMapCacheVerify()
/third_party/node/deps/v8/src/init/
Dbootstrapper.cc5867 Handle<NormalizedMapCache> cache = NormalizedMapCache::New(isolate()); in InitializeMapCaches()
/third_party/node/deps/v8/src/heap/
Dheap.cc4620 NormalizedMapCache::cast(*isolate()->normalized_map_cache()) in Verify()