Commit 48a99add authored by Frank Emrich's avatar Frank Emrich Committed by Commit Bot

[dict-proto] allow and fix empty versions of ordered hash tables

This changes OrderedHashMap, OrderedHashSet, and OrderedNameDictionary
as follows:
- Create a dedicated allocation function AllocateEmpty to create zero-
  element instances of these classes
- Fix bugs resulting from using these zero-element versions

Further, this CL
- provides a canonical empty versions of OrderedNameDictionary
- changes the types of the canonical ordered hash table and hash set
  from FixedArray to the actual subclasses

Bug: v8:7569
Change-Id: I0fe1215e7d164617afa777c8b3208a0857ab6edd
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2476315
Commit-Queue: Frank Emrich <emrich@google.com>
Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
Reviewed-by: 's avatarMarja Hölttä <marja@chromium.org>
Cr-Commit-Position: refs/heads/master@{#70604}
parent 7506e063
...@@ -3371,7 +3371,7 @@ TNode<NameDictionary> CodeStubAssembler::CopyNameDictionary( ...@@ -3371,7 +3371,7 @@ TNode<NameDictionary> CodeStubAssembler::CopyNameDictionary(
template <typename CollectionType> template <typename CollectionType>
TNode<CollectionType> CodeStubAssembler::AllocateOrderedHashTable() { TNode<CollectionType> CodeStubAssembler::AllocateOrderedHashTable() {
static const int kCapacity = CollectionType::kMinCapacity; static const int kCapacity = CollectionType::kMinNonZeroCapacity;
static const int kBucketCount = kCapacity / CollectionType::kLoadFactor; static const int kBucketCount = kCapacity / CollectionType::kLoadFactor;
static const int kDataTableLength = kCapacity * CollectionType::kEntrySize; static const int kDataTableLength = kCapacity * CollectionType::kEntrySize;
static const int kFixedArrayLength = static const int kFixedArrayLength =
......
...@@ -536,18 +536,20 @@ Handle<SmallOrderedNameDictionary> Factory::NewSmallOrderedNameDictionary( ...@@ -536,18 +536,20 @@ Handle<SmallOrderedNameDictionary> Factory::NewSmallOrderedNameDictionary(
} }
Handle<OrderedHashSet> Factory::NewOrderedHashSet() { Handle<OrderedHashSet> Factory::NewOrderedHashSet() {
return OrderedHashSet::Allocate(isolate(), OrderedHashSet::kMinCapacity) return OrderedHashSet::Allocate(isolate(),
OrderedHashSet::kMinNonZeroCapacity)
.ToHandleChecked(); .ToHandleChecked();
} }
Handle<OrderedHashMap> Factory::NewOrderedHashMap() { Handle<OrderedHashMap> Factory::NewOrderedHashMap() {
return OrderedHashMap::Allocate(isolate(), OrderedHashMap::kMinCapacity) return OrderedHashMap::Allocate(isolate(),
OrderedHashMap::kMinNonZeroCapacity)
.ToHandleChecked(); .ToHandleChecked();
} }
Handle<OrderedNameDictionary> Factory::NewOrderedNameDictionary() { Handle<OrderedNameDictionary> Factory::NewOrderedNameDictionary() {
return OrderedNameDictionary::Allocate(isolate(), return OrderedNameDictionary::Allocate(
OrderedNameDictionary::kMinCapacity) isolate(), OrderedNameDictionary::kMinNonZeroCapacity)
.ToHandleChecked(); .ToHandleChecked();
} }
......
...@@ -845,25 +845,23 @@ void Heap::CreateInitialObjects() { ...@@ -845,25 +845,23 @@ void Heap::CreateInitialObjects() {
set_next_template_serial_number(Smi::zero()); set_next_template_serial_number(Smi::zero());
// Allocate the empty OrderedHashMap. // Allocate the empty OrderedHashMap.
Handle<FixedArray> empty_ordered_hash_map = factory->NewFixedArray( Handle<OrderedHashMap> empty_ordered_hash_map =
OrderedHashMap::HashTableStartIndex(), AllocationType::kReadOnly); OrderedHashMap::AllocateEmpty(isolate(), AllocationType::kReadOnly)
empty_ordered_hash_map->set_map_no_write_barrier( .ToHandleChecked();
*factory->ordered_hash_map_map());
for (int i = 0; i < empty_ordered_hash_map->length(); ++i) {
empty_ordered_hash_map->set(i, Smi::zero());
}
set_empty_ordered_hash_map(*empty_ordered_hash_map); set_empty_ordered_hash_map(*empty_ordered_hash_map);
// Allocate the empty OrderedHashSet. // Allocate the empty OrderedHashSet.
Handle<FixedArray> empty_ordered_hash_set = factory->NewFixedArray( Handle<OrderedHashSet> empty_ordered_hash_set =
OrderedHashSet::HashTableStartIndex(), AllocationType::kReadOnly); OrderedHashSet::AllocateEmpty(isolate(), AllocationType::kReadOnly)
empty_ordered_hash_set->set_map_no_write_barrier( .ToHandleChecked();
*factory->ordered_hash_set_map());
for (int i = 0; i < empty_ordered_hash_set->length(); ++i) {
empty_ordered_hash_set->set(i, Smi::zero());
}
set_empty_ordered_hash_set(*empty_ordered_hash_set); set_empty_ordered_hash_set(*empty_ordered_hash_set);
// Allocate the empty OrderedNameDictionary
Handle<OrderedNameDictionary> empty_ordered_property_dictionary =
OrderedNameDictionary::AllocateEmpty(isolate(), AllocationType::kReadOnly)
.ToHandleChecked();
set_empty_ordered_property_dictionary(*empty_ordered_property_dictionary);
// Allocate the empty FeedbackMetadata. // Allocate the empty FeedbackMetadata.
Handle<FeedbackMetadata> empty_feedback_metadata = Handle<FeedbackMetadata> empty_feedback_metadata =
factory->NewFeedbackMetadata(0, 0, AllocationType::kReadOnly); factory->NewFeedbackMetadata(0, 0, AllocationType::kReadOnly);
......
This diff is collapsed.
...@@ -142,7 +142,9 @@ class OrderedHashTable : public FixedArray { ...@@ -142,7 +142,9 @@ class OrderedHashTable : public FixedArray {
static const int kChainOffset = entrysize; static const int kChainOffset = entrysize;
static const int kNotFound = -1; static const int kNotFound = -1;
static const int kMinCapacity = 4; // The minimum capacity. Note that despite this value, 0 is also a permitted
// capacity, indicating a table without any storage for elements.
static const int kMinNonZeroCapacity = 4;
static constexpr int PrefixIndex() { return 0; } static constexpr int PrefixIndex() { return 0; }
...@@ -202,6 +204,10 @@ class OrderedHashTable : public FixedArray { ...@@ -202,6 +204,10 @@ class OrderedHashTable : public FixedArray {
Isolate* isolate, int capacity, Isolate* isolate, int capacity,
AllocationType allocation = AllocationType::kYoung); AllocationType allocation = AllocationType::kYoung);
static MaybeHandle<Derived> AllocateEmpty(Isolate* isolate,
AllocationType allocation,
RootIndex root_ndex);
static MaybeHandle<Derived> Rehash(Isolate* isolate, Handle<Derived> table); static MaybeHandle<Derived> Rehash(Isolate* isolate, Handle<Derived> table);
static MaybeHandle<Derived> Rehash(Isolate* isolate, Handle<Derived> table, static MaybeHandle<Derived> Rehash(Isolate* isolate, Handle<Derived> table,
int new_capacity); int new_capacity);
...@@ -235,6 +241,8 @@ class OrderedHashTable : public FixedArray { ...@@ -235,6 +241,8 @@ class OrderedHashTable : public FixedArray {
class V8_EXPORT_PRIVATE OrderedHashSet class V8_EXPORT_PRIVATE OrderedHashSet
: public OrderedHashTable<OrderedHashSet, 1> { : public OrderedHashTable<OrderedHashSet, 1> {
using Base = OrderedHashTable<OrderedHashSet, 1>;
public: public:
DECL_CAST(OrderedHashSet) DECL_CAST(OrderedHashSet)
...@@ -252,6 +260,10 @@ class V8_EXPORT_PRIVATE OrderedHashSet ...@@ -252,6 +260,10 @@ class V8_EXPORT_PRIVATE OrderedHashSet
static MaybeHandle<OrderedHashSet> Allocate( static MaybeHandle<OrderedHashSet> Allocate(
Isolate* isolate, int capacity, Isolate* isolate, int capacity,
AllocationType allocation = AllocationType::kYoung); AllocationType allocation = AllocationType::kYoung);
static MaybeHandle<OrderedHashSet> AllocateEmpty(
Isolate* isolate, AllocationType allocation = AllocationType::kReadOnly);
static HeapObject GetEmpty(ReadOnlyRoots ro_roots); static HeapObject GetEmpty(ReadOnlyRoots ro_roots);
static inline Handle<Map> GetMap(ReadOnlyRoots roots); static inline Handle<Map> GetMap(ReadOnlyRoots roots);
static inline bool Is(Handle<HeapObject> table); static inline bool Is(Handle<HeapObject> table);
...@@ -262,6 +274,8 @@ class V8_EXPORT_PRIVATE OrderedHashSet ...@@ -262,6 +274,8 @@ class V8_EXPORT_PRIVATE OrderedHashSet
class V8_EXPORT_PRIVATE OrderedHashMap class V8_EXPORT_PRIVATE OrderedHashMap
: public OrderedHashTable<OrderedHashMap, 2> { : public OrderedHashTable<OrderedHashMap, 2> {
using Base = OrderedHashTable<OrderedHashMap, 2>;
public: public:
DECL_CAST(OrderedHashMap) DECL_CAST(OrderedHashMap)
...@@ -275,6 +289,10 @@ class V8_EXPORT_PRIVATE OrderedHashMap ...@@ -275,6 +289,10 @@ class V8_EXPORT_PRIVATE OrderedHashMap
static MaybeHandle<OrderedHashMap> Allocate( static MaybeHandle<OrderedHashMap> Allocate(
Isolate* isolate, int capacity, Isolate* isolate, int capacity,
AllocationType allocation = AllocationType::kYoung); AllocationType allocation = AllocationType::kYoung);
static MaybeHandle<OrderedHashMap> AllocateEmpty(
Isolate* isolate, AllocationType allocation = AllocationType::kReadOnly);
static MaybeHandle<OrderedHashMap> Rehash(Isolate* isolate, static MaybeHandle<OrderedHashMap> Rehash(Isolate* isolate,
Handle<OrderedHashMap> table, Handle<OrderedHashMap> table,
int new_capacity); int new_capacity);
...@@ -699,25 +717,31 @@ class V8_EXPORT_PRIVATE OrderedHashSetHandler ...@@ -699,25 +717,31 @@ class V8_EXPORT_PRIVATE OrderedHashSetHandler
Isolate* isolate, Handle<SmallOrderedHashSet> table); Isolate* isolate, Handle<SmallOrderedHashSet> table);
}; };
class OrderedNameDictionary class V8_EXPORT_PRIVATE OrderedNameDictionary
: public OrderedHashTable<OrderedNameDictionary, 3> { : public OrderedHashTable<OrderedNameDictionary, 3> {
using Base = OrderedHashTable<OrderedNameDictionary, 3>;
public: public:
DECL_CAST(OrderedNameDictionary) DECL_CAST(OrderedNameDictionary)
V8_EXPORT_PRIVATE static MaybeHandle<OrderedNameDictionary> Add( static MaybeHandle<OrderedNameDictionary> Add(
Isolate* isolate, Handle<OrderedNameDictionary> table, Handle<Name> key, Isolate* isolate, Handle<OrderedNameDictionary> table, Handle<Name> key,
Handle<Object> value, PropertyDetails details); Handle<Object> value, PropertyDetails details);
V8_EXPORT_PRIVATE void SetEntry(int entry, Object key, Object value, void SetEntry(int entry, Object key, Object value, PropertyDetails details);
PropertyDetails details);
V8_EXPORT_PRIVATE static Handle<OrderedNameDictionary> DeleteEntry( int FindEntry(Isolate* isolate, Object key);
static Handle<OrderedNameDictionary> DeleteEntry(
Isolate* isolate, Handle<OrderedNameDictionary> table, int entry); Isolate* isolate, Handle<OrderedNameDictionary> table, int entry);
static MaybeHandle<OrderedNameDictionary> Allocate( static MaybeHandle<OrderedNameDictionary> Allocate(
Isolate* isolate, int capacity, Isolate* isolate, int capacity,
AllocationType allocation = AllocationType::kYoung); AllocationType allocation = AllocationType::kYoung);
static MaybeHandle<OrderedNameDictionary> AllocateEmpty(
Isolate* isolate, AllocationType allocation = AllocationType::kReadOnly);
static MaybeHandle<OrderedNameDictionary> Rehash( static MaybeHandle<OrderedNameDictionary> Rehash(
Isolate* isolate, Handle<OrderedNameDictionary> table, int new_capacity); Isolate* isolate, Handle<OrderedNameDictionary> table, int new_capacity);
......
...@@ -166,11 +166,13 @@ class Symbol; ...@@ -166,11 +166,13 @@ class Symbol;
EmptyClosureFeedbackCellArray) \ EmptyClosureFeedbackCellArray) \
V(NumberDictionary, empty_slow_element_dictionary, \ V(NumberDictionary, empty_slow_element_dictionary, \
EmptySlowElementDictionary) \ EmptySlowElementDictionary) \
V(FixedArray, empty_ordered_hash_map, EmptyOrderedHashMap) \ V(OrderedHashMap, empty_ordered_hash_map, EmptyOrderedHashMap) \
V(FixedArray, empty_ordered_hash_set, EmptyOrderedHashSet) \ V(OrderedHashSet, empty_ordered_hash_set, EmptyOrderedHashSet) \
V(FeedbackMetadata, empty_feedback_metadata, EmptyFeedbackMetadata) \ V(FeedbackMetadata, empty_feedback_metadata, EmptyFeedbackMetadata) \
V(PropertyCell, empty_property_cell, EmptyPropertyCell) \ V(PropertyCell, empty_property_cell, EmptyPropertyCell) \
V(NameDictionary, empty_property_dictionary, EmptyPropertyDictionary) \ V(NameDictionary, empty_property_dictionary, EmptyPropertyDictionary) \
V(OrderedNameDictionary, empty_ordered_property_dictionary, \
EmptyOrderedPropertyDictionary) \
V(InterceptorInfo, noop_interceptor_info, NoOpInterceptorInfo) \ V(InterceptorInfo, noop_interceptor_info, NoOpInterceptorInfo) \
V(WeakFixedArray, empty_weak_fixed_array, EmptyWeakFixedArray) \ V(WeakFixedArray, empty_weak_fixed_array, EmptyWeakFixedArray) \
V(WeakArrayList, empty_weak_array_list, EmptyWeakArrayList) \ V(WeakArrayList, empty_weak_array_list, EmptyWeakArrayList) \
......
This diff is collapsed.
...@@ -297,66 +297,66 @@ KNOWN_MAPS = { ...@@ -297,66 +297,66 @@ KNOWN_MAPS = {
("read_only_space", 0x03191): (67, "SelfReferenceMarkerMap"), ("read_only_space", 0x03191): (67, "SelfReferenceMarkerMap"),
("read_only_space", 0x031b9): (67, "BasicBlockCountersMarkerMap"), ("read_only_space", 0x031b9): (67, "BasicBlockCountersMarkerMap"),
("read_only_space", 0x031fd): (87, "ArrayBoilerplateDescriptionMap"), ("read_only_space", 0x031fd): (87, "ArrayBoilerplateDescriptionMap"),
("read_only_space", 0x032cd): (99, "InterceptorInfoMap"), ("read_only_space", 0x032e5): (99, "InterceptorInfoMap"),
("read_only_space", 0x053d5): (72, "PromiseFulfillReactionJobTaskMap"), ("read_only_space", 0x053ed): (72, "PromiseFulfillReactionJobTaskMap"),
("read_only_space", 0x053fd): (73, "PromiseRejectReactionJobTaskMap"), ("read_only_space", 0x05415): (73, "PromiseRejectReactionJobTaskMap"),
("read_only_space", 0x05425): (74, "CallableTaskMap"), ("read_only_space", 0x0543d): (74, "CallableTaskMap"),
("read_only_space", 0x0544d): (75, "CallbackTaskMap"), ("read_only_space", 0x05465): (75, "CallbackTaskMap"),
("read_only_space", 0x05475): (76, "PromiseResolveThenableJobTaskMap"), ("read_only_space", 0x0548d): (76, "PromiseResolveThenableJobTaskMap"),
("read_only_space", 0x0549d): (79, "FunctionTemplateInfoMap"), ("read_only_space", 0x054b5): (79, "FunctionTemplateInfoMap"),
("read_only_space", 0x054c5): (80, "ObjectTemplateInfoMap"), ("read_only_space", 0x054dd): (80, "ObjectTemplateInfoMap"),
("read_only_space", 0x054ed): (81, "AccessCheckInfoMap"), ("read_only_space", 0x05505): (81, "AccessCheckInfoMap"),
("read_only_space", 0x05515): (82, "AccessorInfoMap"), ("read_only_space", 0x0552d): (82, "AccessorInfoMap"),
("read_only_space", 0x0553d): (83, "AccessorPairMap"), ("read_only_space", 0x05555): (83, "AccessorPairMap"),
("read_only_space", 0x05565): (84, "AliasedArgumentsEntryMap"), ("read_only_space", 0x0557d): (84, "AliasedArgumentsEntryMap"),
("read_only_space", 0x0558d): (85, "AllocationMementoMap"), ("read_only_space", 0x055a5): (85, "AllocationMementoMap"),
("read_only_space", 0x055b5): (88, "AsmWasmDataMap"), ("read_only_space", 0x055cd): (88, "AsmWasmDataMap"),
("read_only_space", 0x055dd): (89, "AsyncGeneratorRequestMap"), ("read_only_space", 0x055f5): (89, "AsyncGeneratorRequestMap"),
("read_only_space", 0x05605): (90, "BreakPointMap"), ("read_only_space", 0x0561d): (90, "BreakPointMap"),
("read_only_space", 0x0562d): (91, "BreakPointInfoMap"), ("read_only_space", 0x05645): (91, "BreakPointInfoMap"),
("read_only_space", 0x05655): (92, "CachedTemplateObjectMap"), ("read_only_space", 0x0566d): (92, "CachedTemplateObjectMap"),
("read_only_space", 0x0567d): (94, "ClassPositionsMap"), ("read_only_space", 0x05695): (94, "ClassPositionsMap"),
("read_only_space", 0x056a5): (95, "DebugInfoMap"), ("read_only_space", 0x056bd): (95, "DebugInfoMap"),
("read_only_space", 0x056cd): (98, "FunctionTemplateRareDataMap"), ("read_only_space", 0x056e5): (98, "FunctionTemplateRareDataMap"),
("read_only_space", 0x056f5): (100, "InterpreterDataMap"), ("read_only_space", 0x0570d): (100, "InterpreterDataMap"),
("read_only_space", 0x0571d): (101, "PromiseCapabilityMap"), ("read_only_space", 0x05735): (101, "PromiseCapabilityMap"),
("read_only_space", 0x05745): (102, "PromiseReactionMap"), ("read_only_space", 0x0575d): (102, "PromiseReactionMap"),
("read_only_space", 0x0576d): (103, "PropertyDescriptorObjectMap"), ("read_only_space", 0x05785): (103, "PropertyDescriptorObjectMap"),
("read_only_space", 0x05795): (104, "PrototypeInfoMap"), ("read_only_space", 0x057ad): (104, "PrototypeInfoMap"),
("read_only_space", 0x057bd): (105, "ScriptMap"), ("read_only_space", 0x057d5): (105, "ScriptMap"),
("read_only_space", 0x057e5): (106, "SourceTextModuleInfoEntryMap"), ("read_only_space", 0x057fd): (106, "SourceTextModuleInfoEntryMap"),
("read_only_space", 0x0580d): (107, "StackFrameInfoMap"), ("read_only_space", 0x05825): (107, "StackFrameInfoMap"),
("read_only_space", 0x05835): (108, "StackTraceFrameMap"), ("read_only_space", 0x0584d): (108, "StackTraceFrameMap"),
("read_only_space", 0x0585d): (109, "TemplateObjectDescriptionMap"), ("read_only_space", 0x05875): (109, "TemplateObjectDescriptionMap"),
("read_only_space", 0x05885): (110, "Tuple2Map"), ("read_only_space", 0x0589d): (110, "Tuple2Map"),
("read_only_space", 0x058ad): (111, "WasmCapiFunctionDataMap"), ("read_only_space", 0x058c5): (111, "WasmCapiFunctionDataMap"),
("read_only_space", 0x058d5): (112, "WasmExceptionTagMap"), ("read_only_space", 0x058ed): (112, "WasmExceptionTagMap"),
("read_only_space", 0x058fd): (113, "WasmExportedFunctionDataMap"), ("read_only_space", 0x05915): (113, "WasmExportedFunctionDataMap"),
("read_only_space", 0x05925): (114, "WasmIndirectFunctionTableMap"), ("read_only_space", 0x0593d): (114, "WasmIndirectFunctionTableMap"),
("read_only_space", 0x0594d): (115, "WasmJSFunctionDataMap"), ("read_only_space", 0x05965): (115, "WasmJSFunctionDataMap"),
("read_only_space", 0x05975): (116, "WasmValueMap"), ("read_only_space", 0x0598d): (116, "WasmValueMap"),
("read_only_space", 0x0599d): (135, "SloppyArgumentsElementsMap"), ("read_only_space", 0x059b5): (135, "SloppyArgumentsElementsMap"),
("read_only_space", 0x059c5): (172, "OnHeapBasicBlockProfilerDataMap"), ("read_only_space", 0x059dd): (172, "OnHeapBasicBlockProfilerDataMap"),
("read_only_space", 0x059ed): (169, "InternalClassMap"), ("read_only_space", 0x05a05): (169, "InternalClassMap"),
("read_only_space", 0x05a15): (178, "SmiPairMap"), ("read_only_space", 0x05a2d): (178, "SmiPairMap"),
("read_only_space", 0x05a3d): (177, "SmiBoxMap"), ("read_only_space", 0x05a55): (177, "SmiBoxMap"),
("read_only_space", 0x05a65): (146, "ExportedSubClassBaseMap"), ("read_only_space", 0x05a7d): (146, "ExportedSubClassBaseMap"),
("read_only_space", 0x05a8d): (147, "ExportedSubClassMap"), ("read_only_space", 0x05aa5): (147, "ExportedSubClassMap"),
("read_only_space", 0x05ab5): (68, "AbstractInternalClassSubclass1Map"), ("read_only_space", 0x05acd): (68, "AbstractInternalClassSubclass1Map"),
("read_only_space", 0x05add): (69, "AbstractInternalClassSubclass2Map"), ("read_only_space", 0x05af5): (69, "AbstractInternalClassSubclass2Map"),
("read_only_space", 0x05b05): (134, "InternalClassWithSmiElementsMap"), ("read_only_space", 0x05b1d): (134, "InternalClassWithSmiElementsMap"),
("read_only_space", 0x05b2d): (170, "InternalClassWithStructElementsMap"), ("read_only_space", 0x05b45): (170, "InternalClassWithStructElementsMap"),
("read_only_space", 0x05b55): (148, "ExportedSubClass2Map"), ("read_only_space", 0x05b6d): (148, "ExportedSubClass2Map"),
("read_only_space", 0x05b7d): (179, "SortStateMap"), ("read_only_space", 0x05b95): (179, "SortStateMap"),
("read_only_space", 0x05ba5): (86, "AllocationSiteWithWeakNextMap"), ("read_only_space", 0x05bbd): (86, "AllocationSiteWithWeakNextMap"),
("read_only_space", 0x05bcd): (86, "AllocationSiteWithoutWeakNextMap"), ("read_only_space", 0x05be5): (86, "AllocationSiteWithoutWeakNextMap"),
("read_only_space", 0x05bf5): (77, "LoadHandler1Map"), ("read_only_space", 0x05c0d): (77, "LoadHandler1Map"),
("read_only_space", 0x05c1d): (77, "LoadHandler2Map"), ("read_only_space", 0x05c35): (77, "LoadHandler2Map"),
("read_only_space", 0x05c45): (77, "LoadHandler3Map"), ("read_only_space", 0x05c5d): (77, "LoadHandler3Map"),
("read_only_space", 0x05c6d): (78, "StoreHandler0Map"), ("read_only_space", 0x05c85): (78, "StoreHandler0Map"),
("read_only_space", 0x05c95): (78, "StoreHandler1Map"), ("read_only_space", 0x05cad): (78, "StoreHandler1Map"),
("read_only_space", 0x05cbd): (78, "StoreHandler2Map"), ("read_only_space", 0x05cd5): (78, "StoreHandler2Map"),
("read_only_space", 0x05ce5): (78, "StoreHandler3Map"), ("read_only_space", 0x05cfd): (78, "StoreHandler3Map"),
("map_space", 0x02115): (1057, "ExternalMap"), ("map_space", 0x02115): (1057, "ExternalMap"),
("map_space", 0x0213d): (1072, "JSMessageObjectMap"), ("map_space", 0x0213d): (1072, "JSMessageObjectMap"),
("map_space", 0x02165): (181, "WasmRttEqrefMap"), ("map_space", 0x02165): (181, "WasmRttEqrefMap"),
...@@ -397,20 +397,21 @@ KNOWN_OBJECTS = { ...@@ -397,20 +397,21 @@ KNOWN_OBJECTS = {
("read_only_space", 0x03285): "EmptyFeedbackMetadata", ("read_only_space", 0x03285): "EmptyFeedbackMetadata",
("read_only_space", 0x03291): "EmptyPropertyCell", ("read_only_space", 0x03291): "EmptyPropertyCell",
("read_only_space", 0x032a5): "EmptyPropertyDictionary", ("read_only_space", 0x032a5): "EmptyPropertyDictionary",
("read_only_space", 0x032f5): "NoOpInterceptorInfo", ("read_only_space", 0x032cd): "EmptyOrderedPropertyDictionary",
("read_only_space", 0x0331d): "EmptyWeakArrayList", ("read_only_space", 0x0330d): "NoOpInterceptorInfo",
("read_only_space", 0x03329): "InfinityValue", ("read_only_space", 0x03335): "EmptyWeakArrayList",
("read_only_space", 0x03335): "MinusZeroValue", ("read_only_space", 0x03341): "InfinityValue",
("read_only_space", 0x03341): "MinusInfinityValue", ("read_only_space", 0x0334d): "MinusZeroValue",
("read_only_space", 0x0334d): "SelfReferenceMarker", ("read_only_space", 0x03359): "MinusInfinityValue",
("read_only_space", 0x0338d): "BasicBlockCountersMarker", ("read_only_space", 0x03365): "SelfReferenceMarker",
("read_only_space", 0x033d1): "OffHeapTrampolineRelocationInfo", ("read_only_space", 0x033a5): "BasicBlockCountersMarker",
("read_only_space", 0x033dd): "TrampolineTrivialCodeDataContainer", ("read_only_space", 0x033e9): "OffHeapTrampolineRelocationInfo",
("read_only_space", 0x033e9): "TrampolinePromiseRejectionCodeDataContainer", ("read_only_space", 0x033f5): "TrampolineTrivialCodeDataContainer",
("read_only_space", 0x033f5): "GlobalThisBindingScopeInfo", ("read_only_space", 0x03401): "TrampolinePromiseRejectionCodeDataContainer",
("read_only_space", 0x0342d): "EmptyFunctionScopeInfo", ("read_only_space", 0x0340d): "GlobalThisBindingScopeInfo",
("read_only_space", 0x03455): "NativeScopeInfo", ("read_only_space", 0x03445): "EmptyFunctionScopeInfo",
("read_only_space", 0x03471): "HashSeed", ("read_only_space", 0x0346d): "NativeScopeInfo",
("read_only_space", 0x03489): "HashSeed",
("old_space", 0x02115): "ArgumentsIteratorAccessor", ("old_space", 0x02115): "ArgumentsIteratorAccessor",
("old_space", 0x02159): "ArrayLengthAccessor", ("old_space", 0x02159): "ArrayLengthAccessor",
("old_space", 0x0219d): "BoundFunctionLengthAccessor", ("old_space", 0x0219d): "BoundFunctionLengthAccessor",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment