Skip to content

Commit 7f5daed

Browse files
jameslahmV8 LUCI CQ
authored and
V8 LUCI CQ
committed
[symbol-as-weakmap-key] Add tests to check weak collection size
... after gc. This CL also adds a runtime test function GetWeakCollectionSize to get the weak collection size. Bug: v8:12947 Change-Id: I4aff39165a54b63b3d690bfea71c2a439da01d00 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3905071 Reviewed-by: Marja Hölttä <[email protected]> Commit-Queue: 王澳 <[email protected]> Cr-Commit-Position: refs/heads/main@{#83464}
1 parent 320edbe commit 7f5daed

File tree

4 files changed

+30
-9
lines changed

4 files changed

+30
-9
lines changed

src/runtime/runtime-test.cc

+10
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include "src/heap/heap-inl.h" // For ToBoolean. TODO(jkummerow): Drop.
2424
#include "src/heap/heap-write-barrier-inl.h"
2525
#include "src/ic/stub-cache.h"
26+
#include "src/objects/js-collection-inl.h"
2627
#ifdef V8_ENABLE_MAGLEV
2728
#include "src/maglev/maglev-concurrent-dispatcher.h"
2829
#endif // V8_ENABLE_MAGLEV
@@ -1764,5 +1765,14 @@ RUNTIME_FUNCTION(Runtime_AtomicsConditionNumWaitersForTesting) {
17641765
return cv->NumWaitersForTesting(isolate);
17651766
}
17661767

1768+
RUNTIME_FUNCTION(Runtime_GetWeakCollectionSize) {
1769+
HandleScope scope(isolate);
1770+
DCHECK_EQ(1, args.length());
1771+
Handle<JSWeakCollection> collection = args.at<JSWeakCollection>(0);
1772+
1773+
return Smi::FromInt(
1774+
EphemeronHashTable::cast(collection->table()).NumberOfElements());
1775+
}
1776+
17671777
} // namespace internal
17681778
} // namespace v8

src/runtime/runtime.h

+1
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,7 @@ namespace internal {
513513
F(GetInitializerFunction, 1, 1) \
514514
F(GetOptimizationStatus, 1, 1) \
515515
F(GetUndetectable, 0, 1) \
516+
F(GetWeakCollectionSize, 1, 1) \
516517
F(GlobalPrint, 1, 1) \
517518
F(HasDictionaryElements, 1, 1) \
518519
F(HasDoubleElements, 1, 1) \

test/mjsunit/harmony/symbol-as-weakmap-key.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
// Flags: --harmony-symbol-as-weakmap-key --expose-gc
5+
// Flags: --harmony-symbol-as-weakmap-key --expose-gc --allow-natives-syntax --noincremental-marking
66

77
(function TestWeakMapWithNonRegisteredSymbolKey() {
88
const key = Symbol('123');
@@ -28,16 +28,17 @@
2828
const outerKey = Symbol('234');
2929
const outerValue = 1;
3030
map.set(outerKey, outerValue);
31-
{
31+
(function () {
3232
const innerKey = Symbol('123');
3333
const innerValue = 1;
3434
map.set(innerKey, innerValue);
3535
assertTrue(map.has(innerKey));
3636
assertSame(innerValue, map.get(innerKey));
37-
}
37+
})();
3838
gc();
3939
assertTrue(map.has(outerKey));
4040
assertSame(outerValue, map.get(outerKey));
41+
assertEquals(1, %GetWeakCollectionSize(map));
4142
})();
4243

4344
(function TestWeakMapWithRegisteredSymbolKey() {
@@ -74,13 +75,14 @@
7475
const set = new WeakSet();
7576
const outerKey = Symbol('234');
7677
set.add(outerKey);
77-
{
78+
(function () {
7879
const innerKey = Symbol('123');
7980
set.add(innerKey);
8081
assertTrue(set.has(innerKey));
81-
}
82-
gc();
82+
})();
8383
assertTrue(set.has(outerKey));
84+
gc();
85+
assertEquals(1, %GetWeakCollectionSize(set));
8486
})();
8587

8688
(function TestWeakSetWithRegisteredSymbolKey() {

test/unittests/objects/weakmaps-unittest.cc

+11-3
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,22 @@ TEST_F(WeakMapsTest, Weakness) {
8383
int32_t object_hash = object->GetOrCreateHash(isolate).value();
8484
JSWeakCollection::Set(weakmap, object, smi, object_hash);
8585
}
86-
CHECK_EQ(2, EphemeronHashTable::cast(weakmap->table()).NumberOfElements());
86+
// Put a symbol key into weak map.
87+
{
88+
HandleScope inner_scope(isolate);
89+
Handle<Symbol> symbol = factory->NewSymbol();
90+
Handle<Smi> smi(Smi::FromInt(23), isolate);
91+
JSWeakCollection::Set(weakmap, symbol, smi, symbol->hash());
92+
}
93+
CHECK_EQ(3, EphemeronHashTable::cast(weakmap->table()).NumberOfElements());
8794

8895
// Force a full GC.
8996
PreciseCollectAllGarbage();
9097
CHECK_EQ(0, NumberOfWeakCalls);
98+
// Symbol key should be deleted.
9199
CHECK_EQ(2, EphemeronHashTable::cast(weakmap->table()).NumberOfElements());
92100
CHECK_EQ(
93-
0, EphemeronHashTable::cast(weakmap->table()).NumberOfDeletedElements());
101+
1, EphemeronHashTable::cast(weakmap->table()).NumberOfDeletedElements());
94102

95103
// Make the global reference to the key weak.
96104
std::pair<Handle<Object>*, int> handle_and_id(&key, 1234);
@@ -103,7 +111,7 @@ TEST_F(WeakMapsTest, Weakness) {
103111
CHECK_EQ(1, NumberOfWeakCalls);
104112
CHECK_EQ(0, EphemeronHashTable::cast(weakmap->table()).NumberOfElements());
105113
CHECK_EQ(
106-
2, EphemeronHashTable::cast(weakmap->table()).NumberOfDeletedElements());
114+
3, EphemeronHashTable::cast(weakmap->table()).NumberOfDeletedElements());
107115
}
108116

109117
TEST_F(WeakMapsTest, Shrinking) {

0 commit comments

Comments
 (0)