Home
last modified time | relevance | path

Searched refs:NumberOfOwnDescriptors (Results 1 – 23 of 23) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dmap.cc439 .Search(*name, map->NumberOfOwnDescriptors()) in CopyWithField()
443 if (map->NumberOfOwnDescriptors() >= kMaxNumberOfDescriptors) { in CopyWithField()
474 if (map->NumberOfOwnDescriptors() >= kMaxNumberOfDescriptors) { in CopyWithConstant()
593 if (NumberOfOwnDescriptors() == 0 || in ReplaceDescriptors()
611 current.NumberOfOwnDescriptors()); in ReplaceDescriptors()
626 DCHECK_LE(result.NumberOfOwnDescriptors(), in FindRootMap()
646 if (parent.NumberOfOwnDescriptors() <= descriptor.as_int()) break; in FindFieldOwner()
716 const int root_nof = NumberOfOwnDescriptors(); in TryReplayPropertyTransitions()
717 const int old_nof = old_map.NumberOfOwnDescriptors(); in TryReplayPropertyTransitions()
778 if (new_map.NumberOfOwnDescriptors() != old_nof) return Map(); in TryReplayPropertyTransitions()
[all …]
Dmap-updater.cc96 old_nof_(old_map_->NumberOfOwnDescriptors()), in MapUpdater()
332 CHECK_EQ(map.NumberOfOwnDescriptors(), source_map.NumberOfOwnDescriptors()); in DetectIntegrityLevelTransitions()
546 CHECK_EQ(old_map_->NumberOfOwnDescriptors(), in TrySaveIntegrityLevelTransitions()
547 integrity_source_map_->NumberOfOwnDescriptors()); in TrySaveIntegrityLevelTransitions()
601 int root_nof = root_map_->NumberOfOwnDescriptors(); in FindRootMap()
638 int root_nof = root_map_->NumberOfOwnDescriptors(); in FindTargetMap()
690 int target_nof = target_map_->NumberOfOwnDescriptors(); in FindTargetMap()
765 int target_nof = target_map_->NumberOfOwnDescriptors(); in BuildDescriptorArray()
784 int root_nof = root_map_->NumberOfOwnDescriptors(); in BuildDescriptorArray()
931 int root_nof = root_map_->NumberOfOwnDescriptors(); in FindSplitMap()
[all …]
Dmap-inl.h152 return instance_type() == JS_OBJECT_TYPE && NumberOfOwnDescriptors() > 0 && in IsDetached()
209 int number_of_own_descriptors = NumberOfOwnDescriptors(); in LastAdded()
214 int Map::NumberOfOwnDescriptors() const { in NumberOfOwnDescriptors() function
228 return InternalIndex::Range(NumberOfOwnDescriptors()); in IterateOwnDescriptors()
237 DCHECK_LE(length, NumberOfOwnDescriptors()); in SetEnumLength()
710 int number_of_own_descriptors = NumberOfOwnDescriptors(); in AppendDescriptor()
Ddescriptor-array-inl.h69 int number_of_own_descriptors = map.NumberOfOwnDescriptors(); in Search()
77 int number_of_own_descriptors = map.NumberOfOwnDescriptors(); in SearchWithCache()
Dkeys.cc69 int nof_descriptors = map.NumberOfOwnDescriptors(); in CombineKeys()
546 int number_of_own_descriptors = map.NumberOfOwnDescriptors(); in GetOwnKeysWithUninitializedEnumCache()
989 int nof_descriptors = map.NumberOfOwnDescriptors(); in CollectOwnPropertyNames()
1028 int limit = object->map().NumberOfOwnDescriptors(); in CollectOwnPropertyNames()
1061 int limit = object->map().NumberOfOwnDescriptors(); in CollectPrivateNames()
Dmap.h627 inline int NumberOfOwnDescriptors() const;
Djs-objects.cc2096 int number_of_own_descriptors = map->NumberOfOwnDescriptors(); in FastGetOwnValuesOrEntries()
3000 if (old_map->NumberOfOwnDescriptors() == in MigrateFastToFast()
3001 new_map->NumberOfOwnDescriptors()) { in MigrateFastToFast()
3083 int old_nof = old_map->NumberOfOwnDescriptors(); in MigrateFastToFast()
3084 int new_nof = new_map->NumberOfOwnDescriptors(); in MigrateFastToFast()
3200 int real_size = map->NumberOfOwnDescriptors(); in MigrateFastToSlow()
Djs-function.cc1117 if (map.NumberOfOwnDescriptors() < in UseFastFunctionNameLookup()
/third_party/node/deps/v8/src/compiler/
Dheap-refs.cc1219 CHECK_LT(descriptor_index.as_int(), NumberOfOwnDescriptors()); in GetFieldIndexFor()
1231 CHECK_LT(descriptor_index.as_int(), NumberOfOwnDescriptors()); in GetPropertyDetails()
1236 CHECK_LT(descriptor_index.as_int(), NumberOfOwnDescriptors()); in GetPropertyKey()
1251 CHECK_LT(descriptor_index.as_int(), NumberOfOwnDescriptors()); in FindFieldOwner()
1464 HEAP_ACCESSOR_B(Map, bit_field3, NumberOfOwnDescriptors, in HEAP_ACCESSOR_C()
1588 CHECK_LT(descriptor_index.as_int(), NumberOfOwnDescriptors()); in GetStrongValue()
Dheap-refs.h675 int NumberOfOwnDescriptors() const;
Djs-create-lowering.cc1718 int const boilerplate_nof = boilerplate_map.NumberOfOwnDescriptors(); in TryAllocateFastLiteral()
Djs-call-reducer.cc2747 if (receiver_map.NumberOfOwnDescriptors() < minimum_nof_descriptors) { in ReduceFunctionPrototypeBind()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-debug.cc499 CHECK_EQ(NumberOfOwnDescriptors(), in MapVerify()
507 if (NumberOfOwnDescriptors() == parent.NumberOfOwnDescriptors() + 1) { in MapVerify()
512 CHECK_EQ(NumberOfOwnDescriptors(), parent.NumberOfOwnDescriptors()); in MapVerify()
1578 CHECK_EQ(0, map().NumberOfOwnDescriptors()); in JSProxyVerify()
Dobjects-printer.cc338 return map().NumberOfOwnDescriptors() > 0; in PrintProperties()
2610 << "#" << NumberOfOwnDescriptors() << ": " in MapPrint()
/third_party/node/deps/v8/src/runtime/
Druntime-object.cc118 InternalIndex descriptor(map->NumberOfOwnDescriptors()); in GeneralizeAllTransitionsToFieldAsMutable()
175 int nof = receiver_map->NumberOfOwnDescriptors(); in DeleteObjectPropertyFast()
190 if (parent_map->NumberOfOwnDescriptors() != nof - 1) return false; in DeleteObjectPropertyFast()
337 int nod = map->NumberOfOwnDescriptors(); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/json/
Djson-parser.cc411 DCHECK_EQ(0, maybe_root->NumberOfOwnDescriptors()); in ParentOfDescriptorOwner()
472 : feedback->NumberOfOwnDescriptors(); in BuildJsonObject()
Djson-stringifier.cc820 if (map->NumberOfOwnDescriptors() == 0) { in SerializeJSObject()
/third_party/node/deps/v8/src/heap/
Dmarking-visitor-inl.h518 int number_of_own_descriptors = map.NumberOfOwnDescriptors(); in VisitDescriptorsForMap()
Dmark-compact.cc2612 int number_of_own_descriptors = map.NumberOfOwnDescriptors(); in ClearPotentialSimpleMapTransition()
2910 int number_of_own_descriptors = map.NumberOfOwnDescriptors(); in TrimDescriptorArray()
Dfactory.cc2466 int at_least_space_for = map->NumberOfOwnDescriptors() * 2 + initial_size; in NewJSGlobalObject()
/third_party/node/deps/v8/src/web-snapshot/
Dweb-snapshot.cc473 keys.reserve(map->NumberOfOwnDescriptors()); in SerializeMap()
474 attributes.reserve(map->NumberOfOwnDescriptors()); in SerializeMap()
1951 int no_properties = raw_map.NumberOfOwnDescriptors(); in DeserializeObjects()
/third_party/node/deps/v8/src/ic/
Dic.cc184 ic_info.number_of_own_descriptors = map->NumberOfOwnDescriptors(); in TraceIC()
3205 if (source_map->NumberOfOwnDescriptors() == 0) { in FastCloneObjectMap()
3216 int size = source_map->NumberOfOwnDescriptors(); in FastCloneObjectMap()
/third_party/node/deps/v8/src/builtins/
Dbuiltins-array.cc1452 map.NumberOfOwnDescriptors() == 1) { in IsSimpleArray()