Commit 09bf4f27 authored by jameslahm's avatar jameslahm Committed by V8 LUCI CQ

[test] Move cctest/test-weaksets to unittests/

... objects/weaksets-unittest.

Bug: v8:12781
Change-Id: I355deaff33e4bfe7125af587654cae39f2d719d8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3784616Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
Commit-Queue: 王澳 <wangao.james@bytedance.com>
Cr-Commit-Position: refs/heads/main@{#81928}
parent fbf53d17
...@@ -220,7 +220,6 @@ v8_source_set("cctest_sources") { ...@@ -220,7 +220,6 @@ v8_source_set("cctest_sources") {
"test-utils.cc", "test-utils.cc",
"test-verifiers.cc", "test-verifiers.cc",
"test-weakmaps.cc", "test-weakmaps.cc",
"test-weaksets.cc",
"test-web-snapshots.cc", "test-web-snapshots.cc",
"torque/test-torque.cc", "torque/test-torque.cc",
"trace-extension.cc", "trace-extension.cc",
......
...@@ -53,7 +53,6 @@ ...@@ -53,7 +53,6 @@
# We do not yet shrink weak maps after they have been emptied by the GC # We do not yet shrink weak maps after they have been emptied by the GC
'test-weakmaps/Shrinking': [FAIL], 'test-weakmaps/Shrinking': [FAIL],
'test-weaksets/WeakSet_Shrinking': [FAIL],
# Boot up memory use is bloated in debug mode. # Boot up memory use is bloated in debug mode.
'test-mark-compact/BootUpMemoryUse': [PASS, ['mode == debug', FAIL]], 'test-mark-compact/BootUpMemoryUse': [PASS, ['mode == debug', FAIL]],
...@@ -1114,7 +1113,6 @@ ...@@ -1114,7 +1113,6 @@
'test-weak-references/WeakReferencesBasic': [SKIP], 'test-weak-references/WeakReferencesBasic': [SKIP],
'test-weakmaps/WeakMapsWithChainedEntries': [SKIP], 'test-weakmaps/WeakMapsWithChainedEntries': [SKIP],
'test-weakmaps/Weakness': [SKIP], 'test-weakmaps/Weakness': [SKIP],
'test-weaksets/WeakSet_Weakness': [SKIP],
'test-web-snapshots/SFIDeduplicationAfterBytecodeFlushing': [SKIP], 'test-web-snapshots/SFIDeduplicationAfterBytecodeFlushing': [SKIP],
# Timeout (too many GCs) # Timeout (too many GCs)
'test-heap/Regress8014': [SKIP], 'test-heap/Regress8014': [SKIP],
......
...@@ -453,6 +453,7 @@ v8_source_set("unittests_sources") { ...@@ -453,6 +453,7 @@ v8_source_set("unittests_sources") {
"objects/symbols-unittest.cc", "objects/symbols-unittest.cc",
"objects/value-serializer-unittest.cc", "objects/value-serializer-unittest.cc",
"objects/weakarraylist-unittest.cc", "objects/weakarraylist-unittest.cc",
"objects/weaksets-unittest.cc",
"parser/ast-value-unittest.cc", "parser/ast-value-unittest.cc",
"parser/decls-unittest.cc", "parser/decls-unittest.cc",
"parser/parse-decision-unittest.cc", "parser/parse-decision-unittest.cc",
......
...@@ -34,31 +34,31 @@ ...@@ -34,31 +34,31 @@
#include "src/objects/hash-table-inl.h" #include "src/objects/hash-table-inl.h"
#include "src/objects/js-collection-inl.h" #include "src/objects/js-collection-inl.h"
#include "src/objects/objects-inl.h" #include "src/objects/objects-inl.h"
#include "test/cctest/cctest.h" #include "test/unittests/heap/heap-utils.h"
#include "test/cctest/heap/heap-utils.h" #include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace v8 { namespace v8 {
namespace internal { namespace internal {
namespace test_weaksets { namespace test_weaksets {
static Isolate* GetIsolateFrom(LocalContext* context) { class WeakSetsTest : public TestWithHeapInternalsAndContext {
return reinterpret_cast<Isolate*>((*context)->GetIsolate()); public:
} Handle<JSWeakSet> AllocateJSWeakSet() {
Factory* factory = i_isolate()->factory();
Handle<Map> map = factory->NewMap(JS_WEAK_SET_TYPE, JSWeakSet::kHeaderSize);
static Handle<JSWeakSet> AllocateJSWeakSet(Isolate* isolate) { Handle<JSObject> weakset_obj = factory->NewJSObjectFromMap(map);
Factory* factory = isolate->factory(); Handle<JSWeakSet> weakset(JSWeakSet::cast(*weakset_obj), i_isolate());
Handle<Map> map = factory->NewMap(JS_WEAK_SET_TYPE, JSWeakSet::kHeaderSize); // Do not leak handles for the hash table, it would make entries strong.
Handle<JSObject> weakset_obj = factory->NewJSObjectFromMap(map); {
Handle<JSWeakSet> weakset(JSWeakSet::cast(*weakset_obj), isolate); HandleScope scope(i_isolate());
// Do not leak handles for the hash table, it would make entries strong. Handle<EphemeronHashTable> table =
{ EphemeronHashTable::New(i_isolate(), 1);
HandleScope scope(isolate); weakset->set_table(*table);
Handle<EphemeronHashTable> table = EphemeronHashTable::New(isolate, 1); }
weakset->set_table(*table); return weakset;
} }
return weakset; };
}
static int NumberOfWeakCalls = 0; static int NumberOfWeakCalls = 0;
static void WeakPointerCallback(const v8::WeakCallbackInfo<void>& data) { static void WeakPointerCallback(const v8::WeakCallbackInfo<void>& data) {
...@@ -70,20 +70,17 @@ static void WeakPointerCallback(const v8::WeakCallbackInfo<void>& data) { ...@@ -70,20 +70,17 @@ static void WeakPointerCallback(const v8::WeakCallbackInfo<void>& data) {
p->first->Reset(); p->first->Reset();
} }
TEST_F(WeakSetsTest, WeakSet_Weakness) {
TEST(WeakSet_Weakness) {
FLAG_incremental_marking = false; FLAG_incremental_marking = false;
LocalContext context; Factory* factory = i_isolate()->factory();
Isolate* isolate = GetIsolateFrom(&context); HandleScope scope(i_isolate());
Factory* factory = isolate->factory(); Handle<JSWeakSet> weakset = AllocateJSWeakSet();
HandleScope scope(isolate); GlobalHandles* global_handles = i_isolate()->global_handles();
Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate);
GlobalHandles* global_handles = isolate->global_handles();
// Keep global reference to the key. // Keep global reference to the key.
Handle<Object> key; Handle<Object> key;
{ {
HandleScope inner_scope(isolate); HandleScope inner_scope(i_isolate());
Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize); Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
Handle<JSObject> object = factory->NewJSObjectFromMap(map); Handle<JSObject> object = factory->NewJSObjectFromMap(map);
key = global_handles->Create(*object); key = global_handles->Create(*object);
...@@ -92,15 +89,15 @@ TEST(WeakSet_Weakness) { ...@@ -92,15 +89,15 @@ TEST(WeakSet_Weakness) {
// Put entry into weak set. // Put entry into weak set.
{ {
HandleScope inner_scope(isolate); HandleScope inner_scope(i_isolate());
Handle<Smi> smi(Smi::FromInt(23), isolate); Handle<Smi> smi(Smi::FromInt(23), i_isolate());
int32_t hash = key->GetOrCreateHash(isolate).value(); int32_t hash = key->GetOrCreateHash(i_isolate()).value();
JSWeakCollection::Set(weakset, key, smi, hash); JSWeakCollection::Set(weakset, key, smi, hash);
} }
CHECK_EQ(1, EphemeronHashTable::cast(weakset->table()).NumberOfElements()); CHECK_EQ(1, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
// Force a full GC. // Force a full GC.
CcTest::PreciseCollectAllGarbage(); PreciseCollectAllGarbage();
CHECK_EQ(0, NumberOfWeakCalls); CHECK_EQ(0, NumberOfWeakCalls);
CHECK_EQ(1, EphemeronHashTable::cast(weakset->table()).NumberOfElements()); CHECK_EQ(1, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
CHECK_EQ( CHECK_EQ(
...@@ -113,32 +110,29 @@ TEST(WeakSet_Weakness) { ...@@ -113,32 +110,29 @@ TEST(WeakSet_Weakness) {
&WeakPointerCallback, v8::WeakCallbackType::kParameter); &WeakPointerCallback, v8::WeakCallbackType::kParameter);
CHECK(global_handles->IsWeak(key.location())); CHECK(global_handles->IsWeak(key.location()));
CcTest::PreciseCollectAllGarbage(); PreciseCollectAllGarbage();
CHECK_EQ(1, NumberOfWeakCalls); CHECK_EQ(1, NumberOfWeakCalls);
CHECK_EQ(0, EphemeronHashTable::cast(weakset->table()).NumberOfElements()); CHECK_EQ(0, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
CHECK_EQ( CHECK_EQ(
1, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements()); 1, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
} }
TEST_F(WeakSetsTest, WeakSet_Shrinking) {
TEST(WeakSet_Shrinking) { Factory* factory = i_isolate()->factory();
LocalContext context; HandleScope scope(i_isolate());
Isolate* isolate = GetIsolateFrom(&context); Handle<JSWeakSet> weakset = AllocateJSWeakSet();
Factory* factory = isolate->factory();
HandleScope scope(isolate);
Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate);
// Check initial capacity. // Check initial capacity.
CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).Capacity()); CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).Capacity());
// Fill up weak set to trigger capacity change. // Fill up weak set to trigger capacity change.
{ {
HandleScope inner_scope(isolate); HandleScope inner_scope(i_isolate());
Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize); Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
for (int i = 0; i < 32; i++) { for (int i = 0; i < 32; i++) {
Handle<JSObject> object = factory->NewJSObjectFromMap(map); Handle<JSObject> object = factory->NewJSObjectFromMap(map);
Handle<Smi> smi(Smi::FromInt(i), isolate); Handle<Smi> smi(Smi::FromInt(i), i_isolate());
int32_t hash = object->GetOrCreateHash(isolate).value(); int32_t hash = object->GetOrCreateHash(i_isolate()).value();
JSWeakCollection::Set(weakset, object, smi, hash); JSWeakCollection::Set(weakset, object, smi, hash);
} }
} }
...@@ -150,7 +144,7 @@ TEST(WeakSet_Shrinking) { ...@@ -150,7 +144,7 @@ TEST(WeakSet_Shrinking) {
CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).NumberOfElements()); CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
CHECK_EQ( CHECK_EQ(
0, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements()); 0, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
CcTest::PreciseCollectAllGarbage(); PreciseCollectAllGarbage();
CHECK_EQ(0, EphemeronHashTable::cast(weakset->table()).NumberOfElements()); CHECK_EQ(0, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
CHECK_EQ( CHECK_EQ(
32, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements()); 32, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
...@@ -159,51 +153,47 @@ TEST(WeakSet_Shrinking) { ...@@ -159,51 +153,47 @@ TEST(WeakSet_Shrinking) {
CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).Capacity()); CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).Capacity());
} }
// Test that weak set values on an evacuation candidate which are not reachable // Test that weak set values on an evacuation candidate which are not reachable
// by other paths are correctly recorded in the slots buffer. // by other paths are correctly recorded in the slots buffer.
TEST(WeakSet_Regress2060a) { TEST_F(WeakSetsTest, WeakSet_Regress2060a) {
if (!i::FLAG_compact) return; if (!i::FLAG_compact) return;
if (i::FLAG_enable_third_party_heap) return; if (i::FLAG_enable_third_party_heap) return;
FLAG_compact_on_every_full_gc = true; FLAG_compact_on_every_full_gc = true;
FLAG_stress_concurrent_allocation = false; // For SimulateFullSpace. FLAG_stress_concurrent_allocation = false; // For SimulateFullSpace.
LocalContext context; Factory* factory = i_isolate()->factory();
Isolate* isolate = GetIsolateFrom(&context); Heap* heap = i_isolate()->heap();
Factory* factory = isolate->factory(); HandleScope scope(i_isolate());
Heap* heap = isolate->heap();
HandleScope scope(isolate);
Handle<JSFunction> function = Handle<JSFunction> function =
factory->NewFunctionForTesting(factory->function_string()); factory->NewFunctionForTesting(factory->function_string());
Handle<JSObject> key = factory->NewJSObject(function); Handle<JSObject> key = factory->NewJSObject(function);
Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate); Handle<JSWeakSet> weakset = AllocateJSWeakSet();
// Start second old-space page so that values land on evacuation candidate. // Start second old-space page so that values land on evacuation candidate.
Page* first_page = heap->old_space()->first_page(); Page* first_page = heap->old_space()->first_page();
heap::SimulateFullSpace(heap->old_space()); SimulateFullSpace(heap->old_space());
// Fill up weak set with values on an evacuation candidate. // Fill up weak set with values on an evacuation candidate.
{ {
HandleScope inner_scope(isolate); HandleScope inner_scope(i_isolate());
for (int i = 0; i < 32; i++) { for (int i = 0; i < 32; i++) {
Handle<JSObject> object = Handle<JSObject> object =
factory->NewJSObject(function, AllocationType::kOld); factory->NewJSObject(function, AllocationType::kOld);
CHECK(!Heap::InYoungGeneration(*object)); CHECK(!Heap::InYoungGeneration(*object));
CHECK_IMPLIES(!FLAG_enable_third_party_heap, CHECK_IMPLIES(!FLAG_enable_third_party_heap,
!first_page->Contains(object->address())); !first_page->Contains(object->address()));
int32_t hash = key->GetOrCreateHash(isolate).value(); int32_t hash = key->GetOrCreateHash(i_isolate()).value();
JSWeakCollection::Set(weakset, key, object, hash); JSWeakCollection::Set(weakset, key, object, hash);
} }
} }
// Force compacting garbage collection. // Force compacting garbage collection.
CHECK(FLAG_compact_on_every_full_gc); CHECK(FLAG_compact_on_every_full_gc);
CcTest::CollectAllGarbage(); CollectAllGarbage();
} }
// Test that weak set keys on an evacuation candidate which are reachable by // Test that weak set keys on an evacuation candidate which are reachable by
// other strong paths are correctly recorded in the slots buffer. // other strong paths are correctly recorded in the slots buffer.
TEST(WeakSet_Regress2060b) { TEST_F(WeakSetsTest, WeakSet_Regress2060b) {
if (!i::FLAG_compact) return; if (!i::FLAG_compact) return;
if (i::FLAG_enable_third_party_heap) return; if (i::FLAG_enable_third_party_heap) return;
FLAG_compact_on_every_full_gc = true; FLAG_compact_on_every_full_gc = true;
...@@ -212,17 +202,15 @@ TEST(WeakSet_Regress2060b) { ...@@ -212,17 +202,15 @@ TEST(WeakSet_Regress2060b) {
#endif #endif
FLAG_stress_concurrent_allocation = false; // For SimulateFullSpace. FLAG_stress_concurrent_allocation = false; // For SimulateFullSpace.
LocalContext context; Factory* factory = i_isolate()->factory();
Isolate* isolate = GetIsolateFrom(&context); Heap* heap = i_isolate()->heap();
Factory* factory = isolate->factory(); HandleScope scope(i_isolate());
Heap* heap = isolate->heap();
HandleScope scope(isolate);
Handle<JSFunction> function = Handle<JSFunction> function =
factory->NewFunctionForTesting(factory->function_string()); factory->NewFunctionForTesting(factory->function_string());
// Start second old-space page so that keys land on evacuation candidate. // Start second old-space page so that keys land on evacuation candidate.
Page* first_page = heap->old_space()->first_page(); Page* first_page = heap->old_space()->first_page();
heap::SimulateFullSpace(heap->old_space()); SimulateFullSpace(heap->old_space());
// Fill up weak set with keys on an evacuation candidate. // Fill up weak set with keys on an evacuation candidate.
Handle<JSObject> keys[32]; Handle<JSObject> keys[32];
...@@ -232,19 +220,19 @@ TEST(WeakSet_Regress2060b) { ...@@ -232,19 +220,19 @@ TEST(WeakSet_Regress2060b) {
CHECK_IMPLIES(!FLAG_enable_third_party_heap, CHECK_IMPLIES(!FLAG_enable_third_party_heap,
!first_page->Contains(keys[i]->address())); !first_page->Contains(keys[i]->address()));
} }
Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate); Handle<JSWeakSet> weakset = AllocateJSWeakSet();
for (int i = 0; i < 32; i++) { for (int i = 0; i < 32; i++) {
Handle<Smi> smi(Smi::FromInt(i), isolate); Handle<Smi> smi(Smi::FromInt(i), i_isolate());
int32_t hash = keys[i]->GetOrCreateHash(isolate).value(); int32_t hash = keys[i]->GetOrCreateHash(i_isolate()).value();
JSWeakCollection::Set(weakset, keys[i], smi, hash); JSWeakCollection::Set(weakset, keys[i], smi, hash);
} }
// Force compacting garbage collection. The subsequent collections are used // Force compacting garbage collection. The subsequent collections are used
// to verify that key references were actually updated. // to verify that key references were actually updated.
CHECK(FLAG_compact_on_every_full_gc); CHECK(FLAG_compact_on_every_full_gc);
CcTest::CollectAllGarbage(); CollectAllGarbage();
CcTest::CollectAllGarbage(); CollectAllGarbage();
CcTest::CollectAllGarbage(); CollectAllGarbage();
} }
} // namespace test_weaksets } // namespace test_weaksets
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
'PersistentHandlesTest.DereferencePersistentHandleFailsWhenDisallowed': [SKIP, ['mode == debug', FAIL]], 'PersistentHandlesTest.DereferencePersistentHandleFailsWhenDisallowed': [SKIP, ['mode == debug', FAIL]],
'IntlTest.StringLocaleCompareFastPath': [['mode != release', SKIP], SLOW, NO_VARIANTS], 'IntlTest.StringLocaleCompareFastPath': [['mode != release', SKIP], SLOW, NO_VARIANTS],
'WeakSetsTest.WeakSet_Shrinking': [FAIL],
}], # ALWAYS }], # ALWAYS
############################################################################## ##############################################################################
...@@ -196,6 +197,7 @@ ...@@ -196,6 +197,7 @@
'UnifiedHeapDetachedTest.AllocationBeforeConfigureHeap': [SKIP], 'UnifiedHeapDetachedTest.AllocationBeforeConfigureHeap': [SKIP],
'UnifiedHeapTest.FindingV8ToBlinkReference': [SKIP], 'UnifiedHeapTest.FindingV8ToBlinkReference': [SKIP],
'ManagedTest.GCCausesDestruction': [SKIP], 'ManagedTest.GCCausesDestruction': [SKIP],
'WeakSetsTest.WeakSet_Weakness': [SKIP],
# CodeRange tests # CodeRange tests
'CodePagesTest.LargeCodeObjectWithSignalHandler': [SKIP], 'CodePagesTest.LargeCodeObjectWithSignalHandler': [SKIP],
......
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