Home
last modified time | relevance | path

Searched refs:prototype_users (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dprototype-info.tq16 // [prototype_users]: WeakArrayList containing weak references to maps using
18 prototype_users: WeakArrayList|Zero;
Djs-objects.cc4815 Handle<Object> maybe_registry(proto_info->prototype_users(), isolate); in LazyRegisterPrototypeUser()
4851 PrototypeInfo::cast(user->prototype_info()).prototype_users(); in UnregisterPrototypeUser()
4865 Handle<WeakArrayList> prototype_users( in UnregisterPrototypeUser() local
4866 WeakArrayList::cast(proto_info->prototype_users()), isolate); in UnregisterPrototypeUser()
4867 DCHECK_EQ(prototype_users->Get(slot), HeapObjectReference::Weak(*user)); in UnregisterPrototypeUser()
4868 PrototypeUsers::MarkSlotEmpty(*prototype_users, slot); in UnregisterPrototypeUser()
4931 if (!proto_info.prototype_users().IsWeakArrayList()) { in InvalidatePrototypeChainsInternal()
4934 WeakArrayList prototype_users = in InvalidatePrototypeChainsInternal() local
4935 WeakArrayList::cast(proto_info.prototype_users()); in InvalidatePrototypeChainsInternal()
4937 for (int i = PrototypeUsers::kFirstIndex; i < prototype_users.length(); in InvalidatePrototypeChainsInternal()
[all …]
/third_party/node/deps/v8/src/diagnostics/
Dobjects-debug.cc1699 if (prototype_users().IsWeakArrayList()) { in PrototypeInfoVerify()
1700 PrototypeUsers::Verify(WeakArrayList::cast(prototype_users())); in PrototypeInfoVerify()
1702 CHECK(prototype_users().IsSmi()); in PrototypeInfoVerify()
Dobjects-printer.cc1775 os << "\n - prototype users: " << Brief(prototype_users()); in PrototypeInfoPrint()
/third_party/node/deps/v8/src/heap/
Dobject-stats.cc906 Object users = info.prototype_users(); in RecordVirtualMapDetails()
Dheap.cc6290 if (prototype_info.prototype_users().IsWeakArrayList()) { in CompactWeakArrayLists()
6298 WeakArrayList::cast(prototype_info->prototype_users()), isolate()); in CompactWeakArrayLists()