2013-07-22 08:32:24 +00:00
|
|
|
// Copyright 2011 the V8 project authors. All rights reserved.
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2013-12-18 08:09:37 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2019-05-22 07:55:37 +00:00
|
|
|
#include "src/execution/isolate.h"
|
2021-09-17 14:40:54 +00:00
|
|
|
#include "src/handles/global-handles-inl.h"
|
2018-04-09 19:11:22 +00:00
|
|
|
#include "src/heap/factory.h"
|
2019-02-14 21:10:30 +00:00
|
|
|
#include "src/heap/heap-inl.h"
|
2018-05-17 12:28:56 +00:00
|
|
|
#include "src/objects/hash-table-inl.h"
|
2018-05-23 13:29:02 +00:00
|
|
|
#include "src/objects/js-collection-inl.h"
|
2019-05-23 08:51:46 +00:00
|
|
|
#include "src/objects/objects-inl.h"
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "test/cctest/cctest.h"
|
2016-05-20 13:30:22 +00:00
|
|
|
#include "test/cctest/heap/heap-utils.h"
|
2013-07-22 08:32:24 +00:00
|
|
|
|
2017-08-11 11:22:28 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2017-09-21 03:29:52 +00:00
|
|
|
namespace test_weaksets {
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
static Isolate* GetIsolateFrom(LocalContext* context) {
|
|
|
|
return reinterpret_cast<Isolate*>((*context)->GetIsolate());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Handle<JSWeakSet> AllocateJSWeakSet(Isolate* isolate) {
|
|
|
|
Factory* factory = isolate->factory();
|
2019-11-15 20:37:49 +00:00
|
|
|
Handle<Map> map = factory->NewMap(JS_WEAK_SET_TYPE, JSWeakSet::kHeaderSize);
|
2013-07-22 08:32:24 +00:00
|
|
|
Handle<JSObject> weakset_obj = factory->NewJSObjectFromMap(map);
|
2018-06-23 09:05:50 +00:00
|
|
|
Handle<JSWeakSet> weakset(JSWeakSet::cast(*weakset_obj), isolate);
|
2014-05-28 08:35:16 +00:00
|
|
|
// Do not leak handles for the hash table, it would make entries strong.
|
|
|
|
{
|
|
|
|
HandleScope scope(isolate);
|
2018-06-07 05:57:16 +00:00
|
|
|
Handle<EphemeronHashTable> table = EphemeronHashTable::New(isolate, 1);
|
2014-05-28 08:35:16 +00:00
|
|
|
weakset->set_table(*table);
|
|
|
|
}
|
2013-07-22 08:32:24 +00:00
|
|
|
return weakset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int NumberOfWeakCalls = 0;
|
2016-05-06 12:29:00 +00:00
|
|
|
static void WeakPointerCallback(const v8::WeakCallbackInfo<void>& data) {
|
2013-12-18 08:09:37 +00:00
|
|
|
std::pair<v8::Persistent<v8::Value>*, int>* p =
|
|
|
|
reinterpret_cast<std::pair<v8::Persistent<v8::Value>*, int>*>(
|
|
|
|
data.GetParameter());
|
2015-12-07 05:36:41 +00:00
|
|
|
CHECK_EQ(1234, p->second);
|
2013-07-22 08:32:24 +00:00
|
|
|
NumberOfWeakCalls++;
|
2013-12-18 08:09:37 +00:00
|
|
|
p->first->Reset();
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(WeakSet_Weakness) {
|
|
|
|
FLAG_incremental_marking = false;
|
|
|
|
LocalContext context;
|
|
|
|
Isolate* isolate = GetIsolateFrom(&context);
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate);
|
|
|
|
GlobalHandles* global_handles = isolate->global_handles();
|
|
|
|
|
|
|
|
// Keep global reference to the key.
|
|
|
|
Handle<Object> key;
|
|
|
|
{
|
2021-10-18 16:01:20 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
2013-07-22 08:32:24 +00:00
|
|
|
Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
|
|
|
|
Handle<JSObject> object = factory->NewJSObjectFromMap(map);
|
|
|
|
key = global_handles->Create(*object);
|
|
|
|
}
|
|
|
|
CHECK(!global_handles->IsWeak(key.location()));
|
|
|
|
|
|
|
|
// Put entry into weak set.
|
|
|
|
{
|
2021-10-18 16:01:20 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
2015-02-05 09:40:13 +00:00
|
|
|
Handle<Smi> smi(Smi::FromInt(23), isolate);
|
2017-08-21 23:05:53 +00:00
|
|
|
int32_t hash = key->GetOrCreateHash(isolate).value();
|
2017-06-15 21:35:42 +00:00
|
|
|
JSWeakCollection::Set(weakset, key, smi, hash);
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
2018-06-07 05:57:16 +00:00
|
|
|
CHECK_EQ(1, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
// Force a full GC.
|
2018-09-14 14:15:31 +00:00
|
|
|
CcTest::PreciseCollectAllGarbage();
|
2013-07-22 08:32:24 +00:00
|
|
|
CHECK_EQ(0, NumberOfWeakCalls);
|
2018-06-07 05:57:16 +00:00
|
|
|
CHECK_EQ(1, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
|
2013-07-22 08:32:24 +00:00
|
|
|
CHECK_EQ(
|
2018-06-07 05:57:16 +00:00
|
|
|
0, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
// Make the global reference to the key weak.
|
2017-01-25 10:46:01 +00:00
|
|
|
std::pair<Handle<Object>*, int> handle_and_id(&key, 1234);
|
|
|
|
GlobalHandles::MakeWeak(
|
|
|
|
key.location(), reinterpret_cast<void*>(&handle_and_id),
|
|
|
|
&WeakPointerCallback, v8::WeakCallbackType::kParameter);
|
2013-07-22 08:32:24 +00:00
|
|
|
CHECK(global_handles->IsWeak(key.location()));
|
|
|
|
|
2018-09-14 14:15:31 +00:00
|
|
|
CcTest::PreciseCollectAllGarbage();
|
2013-07-22 08:32:24 +00:00
|
|
|
CHECK_EQ(1, NumberOfWeakCalls);
|
2018-06-07 05:57:16 +00:00
|
|
|
CHECK_EQ(0, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
|
2016-04-15 12:15:54 +00:00
|
|
|
CHECK_EQ(
|
2018-06-07 05:57:16 +00:00
|
|
|
1, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(WeakSet_Shrinking) {
|
|
|
|
LocalContext context;
|
|
|
|
Isolate* isolate = GetIsolateFrom(&context);
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
HandleScope scope(isolate);
|
|
|
|
Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate);
|
|
|
|
|
|
|
|
// Check initial capacity.
|
2018-06-07 05:57:16 +00:00
|
|
|
CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).Capacity());
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
// Fill up weak set to trigger capacity change.
|
|
|
|
{
|
2021-10-18 16:01:20 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
2013-07-22 08:32:24 +00:00
|
|
|
Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
|
|
|
|
for (int i = 0; i < 32; i++) {
|
|
|
|
Handle<JSObject> object = factory->NewJSObjectFromMap(map);
|
2015-02-05 09:40:13 +00:00
|
|
|
Handle<Smi> smi(Smi::FromInt(i), isolate);
|
2017-08-21 23:05:53 +00:00
|
|
|
int32_t hash = object->GetOrCreateHash(isolate).value();
|
2017-06-15 21:35:42 +00:00
|
|
|
JSWeakCollection::Set(weakset, object, smi, hash);
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check increased capacity.
|
2018-06-07 05:57:16 +00:00
|
|
|
CHECK_EQ(128, EphemeronHashTable::cast(weakset->table()).Capacity());
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
// Force a full GC.
|
2018-06-07 05:57:16 +00:00
|
|
|
CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
|
2013-07-22 08:32:24 +00:00
|
|
|
CHECK_EQ(
|
2018-06-07 05:57:16 +00:00
|
|
|
0, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
|
2018-09-14 14:15:31 +00:00
|
|
|
CcTest::PreciseCollectAllGarbage();
|
2018-06-07 05:57:16 +00:00
|
|
|
CHECK_EQ(0, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
|
2013-07-22 08:32:24 +00:00
|
|
|
CHECK_EQ(
|
2018-06-07 05:57:16 +00:00
|
|
|
32, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
// Check shrunk capacity.
|
2018-06-07 05:57:16 +00:00
|
|
|
CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).Capacity());
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test that weak set values on an evacuation candidate which are not reachable
|
|
|
|
// by other paths are correctly recorded in the slots buffer.
|
|
|
|
TEST(WeakSet_Regress2060a) {
|
2021-11-10 08:07:47 +00:00
|
|
|
if (!i::FLAG_compact) return;
|
2021-04-30 02:54:25 +00:00
|
|
|
if (i::FLAG_enable_third_party_heap) return;
|
2021-11-10 08:07:47 +00:00
|
|
|
FLAG_compact_on_every_full_gc = true;
|
2020-09-03 10:33:46 +00:00
|
|
|
FLAG_stress_concurrent_allocation = false; // For SimulateFullSpace.
|
2013-07-22 08:32:24 +00:00
|
|
|
LocalContext context;
|
|
|
|
Isolate* isolate = GetIsolateFrom(&context);
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
HandleScope scope(isolate);
|
2017-11-08 12:56:08 +00:00
|
|
|
Handle<JSFunction> function =
|
2020-11-10 11:22:49 +00:00
|
|
|
factory->NewFunctionForTesting(factory->function_string());
|
2013-07-22 08:32:24 +00:00
|
|
|
Handle<JSObject> key = factory->NewJSObject(function);
|
|
|
|
Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate);
|
|
|
|
|
|
|
|
// Start second old-space page so that values land on evacuation candidate.
|
2018-05-22 16:58:12 +00:00
|
|
|
Page* first_page = heap->old_space()->first_page();
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
// Fill up weak set with values on an evacuation candidate.
|
|
|
|
{
|
2021-10-18 16:01:20 +00:00
|
|
|
HandleScope inner_scope(isolate);
|
2013-07-22 08:32:24 +00:00
|
|
|
for (int i = 0; i < 32; i++) {
|
2019-03-11 19:04:02 +00:00
|
|
|
Handle<JSObject> object =
|
|
|
|
factory->NewJSObject(function, AllocationType::kOld);
|
2019-02-11 15:07:56 +00:00
|
|
|
CHECK(!Heap::InYoungGeneration(*object));
|
2021-04-30 02:54:25 +00:00
|
|
|
CHECK_IMPLIES(!FLAG_enable_third_party_heap,
|
|
|
|
!first_page->Contains(object->address()));
|
2017-08-21 23:05:53 +00:00
|
|
|
int32_t hash = key->GetOrCreateHash(isolate).value();
|
2017-06-15 21:35:42 +00:00
|
|
|
JSWeakCollection::Set(weakset, key, object, hash);
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Force compacting garbage collection.
|
2021-11-10 08:07:47 +00:00
|
|
|
CHECK(FLAG_compact_on_every_full_gc);
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test that weak set keys on an evacuation candidate which are reachable by
|
|
|
|
// other strong paths are correctly recorded in the slots buffer.
|
|
|
|
TEST(WeakSet_Regress2060b) {
|
2021-11-10 08:07:47 +00:00
|
|
|
if (!i::FLAG_compact) return;
|
2021-04-30 02:54:25 +00:00
|
|
|
if (i::FLAG_enable_third_party_heap) return;
|
2021-11-10 08:07:47 +00:00
|
|
|
FLAG_compact_on_every_full_gc = true;
|
2013-07-22 08:32:24 +00:00
|
|
|
#ifdef VERIFY_HEAP
|
|
|
|
FLAG_verify_heap = true;
|
|
|
|
#endif
|
2020-09-03 10:33:46 +00:00
|
|
|
FLAG_stress_concurrent_allocation = false; // For SimulateFullSpace.
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
LocalContext context;
|
|
|
|
Isolate* isolate = GetIsolateFrom(&context);
|
|
|
|
Factory* factory = isolate->factory();
|
|
|
|
Heap* heap = isolate->heap();
|
|
|
|
HandleScope scope(isolate);
|
2017-11-08 12:56:08 +00:00
|
|
|
Handle<JSFunction> function =
|
2020-11-10 11:22:49 +00:00
|
|
|
factory->NewFunctionForTesting(factory->function_string());
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
// Start second old-space page so that keys land on evacuation candidate.
|
2018-05-22 16:58:12 +00:00
|
|
|
Page* first_page = heap->old_space()->first_page();
|
2016-05-20 13:30:22 +00:00
|
|
|
heap::SimulateFullSpace(heap->old_space());
|
2013-07-22 08:32:24 +00:00
|
|
|
|
|
|
|
// Fill up weak set with keys on an evacuation candidate.
|
|
|
|
Handle<JSObject> keys[32];
|
|
|
|
for (int i = 0; i < 32; i++) {
|
2019-03-11 19:04:02 +00:00
|
|
|
keys[i] = factory->NewJSObject(function, AllocationType::kOld);
|
2019-02-11 15:07:56 +00:00
|
|
|
CHECK(!Heap::InYoungGeneration(*keys[i]));
|
2021-04-30 02:54:25 +00:00
|
|
|
CHECK_IMPLIES(!FLAG_enable_third_party_heap,
|
|
|
|
!first_page->Contains(keys[i]->address()));
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
|
|
|
Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate);
|
|
|
|
for (int i = 0; i < 32; i++) {
|
2015-02-05 09:40:13 +00:00
|
|
|
Handle<Smi> smi(Smi::FromInt(i), isolate);
|
2017-08-21 23:05:53 +00:00
|
|
|
int32_t hash = keys[i]->GetOrCreateHash(isolate).value();
|
2017-06-15 21:35:42 +00:00
|
|
|
JSWeakCollection::Set(weakset, keys[i], smi, hash);
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Force compacting garbage collection. The subsequent collections are used
|
|
|
|
// to verify that key references were actually updated.
|
2021-11-10 08:07:47 +00:00
|
|
|
CHECK(FLAG_compact_on_every_full_gc);
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
|
|
|
CcTest::CollectAllGarbage();
|
|
|
|
CcTest::CollectAllGarbage();
|
2013-07-22 08:32:24 +00:00
|
|
|
}
|
2017-08-11 11:22:28 +00:00
|
|
|
|
2017-09-21 03:29:52 +00:00
|
|
|
} // namespace test_weaksets
|
2017-08-11 11:22:28 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|