blob: 2d0e620d7d226eaa73d6c9bf9f67e7bbc13212ef [file] [log] [blame]
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001// Copyright 2011 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
Ben Murdochb8a8cc12014-11-26 15:28:44 +000028#include <utility>
Ben Murdoch69a99ed2011-11-30 16:03:39 +000029
Ben Murdochb8a8cc12014-11-26 15:28:44 +000030#include "src/v8.h"
31
32#include "src/global-handles.h"
Ben Murdochb8a8cc12014-11-26 15:28:44 +000033#include "test/cctest/cctest.h"
Ben Murdoch61f157c2016-09-16 13:49:30 +010034#include "test/cctest/heap/heap-utils.h"
Ben Murdoch69a99ed2011-11-30 16:03:39 +000035
36using namespace v8::internal;
37
Ben Murdochb8a8cc12014-11-26 15:28:44 +000038static Isolate* GetIsolateFrom(LocalContext* context) {
39 return reinterpret_cast<Isolate*>((*context)->GetIsolate());
40}
41
42
43static Handle<JSWeakMap> AllocateJSWeakMap(Isolate* isolate) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000044 Handle<JSWeakMap> weakmap = isolate->factory()->NewJSWeakMap();
Ben Murdochb8a8cc12014-11-26 15:28:44 +000045 // Do not leak handles for the hash table, it would make entries strong.
46 {
47 HandleScope scope(isolate);
48 Handle<ObjectHashTable> table = ObjectHashTable::New(isolate, 1);
49 weakmap->set_table(*table);
50 }
Ben Murdoch69a99ed2011-11-30 16:03:39 +000051 return weakmap;
52}
53
Ben Murdoch69a99ed2011-11-30 16:03:39 +000054static int NumberOfWeakCalls = 0;
Ben Murdochc5610432016-08-08 18:44:38 +010055static void WeakPointerCallback(const v8::WeakCallbackInfo<void>& data) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000056 std::pair<v8::Persistent<v8::Value>*, int>* p =
57 reinterpret_cast<std::pair<v8::Persistent<v8::Value>*, int>*>(
58 data.GetParameter());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000059 CHECK_EQ(1234, p->second);
Ben Murdoch69a99ed2011-11-30 16:03:39 +000060 NumberOfWeakCalls++;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000061 p->first->Reset();
Ben Murdoch69a99ed2011-11-30 16:03:39 +000062}
63
64
65TEST(Weakness) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000066 FLAG_incremental_marking = false;
Ben Murdoch69a99ed2011-11-30 16:03:39 +000067 LocalContext context;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000068 Isolate* isolate = GetIsolateFrom(&context);
69 Factory* factory = isolate->factory();
70 Heap* heap = isolate->heap();
71 HandleScope scope(isolate);
72 Handle<JSWeakMap> weakmap = AllocateJSWeakMap(isolate);
73 GlobalHandles* global_handles = isolate->global_handles();
Ben Murdoch69a99ed2011-11-30 16:03:39 +000074
75 // Keep global reference to the key.
76 Handle<Object> key;
77 {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000078 HandleScope scope(isolate);
79 Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
80 Handle<JSObject> object = factory->NewJSObjectFromMap(map);
Ben Murdoch69a99ed2011-11-30 16:03:39 +000081 key = global_handles->Create(*object);
82 }
83 CHECK(!global_handles->IsWeak(key.location()));
84
Emily Bernierd0a1eb72015-03-24 16:35:39 -040085 // Put two chained entries into weak map.
Ben Murdoch69a99ed2011-11-30 16:03:39 +000086 {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000087 HandleScope scope(isolate);
Emily Bernierd0a1eb72015-03-24 16:35:39 -040088 Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
89 Handle<JSObject> object = factory->NewJSObjectFromMap(map);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000090 Handle<Smi> smi(Smi::FromInt(23), isolate);
91 int32_t hash = Object::GetOrCreateHash(isolate, key)->value();
92 JSWeakCollection::Set(weakmap, key, object, hash);
93 int32_t object_hash = Object::GetOrCreateHash(isolate, object)->value();
94 JSWeakCollection::Set(weakmap, object, smi, object_hash);
Ben Murdoch69a99ed2011-11-30 16:03:39 +000095 }
Emily Bernierd0a1eb72015-03-24 16:35:39 -040096 CHECK_EQ(2, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
Ben Murdoch69a99ed2011-11-30 16:03:39 +000097
98 // Force a full GC.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000099 heap->CollectAllGarbage(false);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000100 CHECK_EQ(0, NumberOfWeakCalls);
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400101 CHECK_EQ(2, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100102 CHECK_EQ(
103 0, ObjectHashTable::cast(weakmap->table())->NumberOfDeletedElements());
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000104
105 // Make the global reference to the key weak.
106 {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000107 HandleScope scope(isolate);
108 std::pair<Handle<Object>*, int> handle_and_id(&key, 1234);
Ben Murdochc5610432016-08-08 18:44:38 +0100109 GlobalHandles::MakeWeak(
110 key.location(), reinterpret_cast<void*>(&handle_and_id),
111 &WeakPointerCallback, v8::WeakCallbackType::kParameter);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000112 }
113 CHECK(global_handles->IsWeak(key.location()));
114
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000115 heap->CollectAllGarbage(false);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000116 CHECK_EQ(1, NumberOfWeakCalls);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100117 CHECK_EQ(0, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400118 CHECK_EQ(2,
119 ObjectHashTable::cast(weakmap->table())->NumberOfDeletedElements());
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000120}
121
122
123TEST(Shrinking) {
124 LocalContext context;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000125 Isolate* isolate = GetIsolateFrom(&context);
126 Factory* factory = isolate->factory();
127 Heap* heap = isolate->heap();
128 HandleScope scope(isolate);
129 Handle<JSWeakMap> weakmap = AllocateJSWeakMap(isolate);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000130
131 // Check initial capacity.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100132 CHECK_EQ(32, ObjectHashTable::cast(weakmap->table())->Capacity());
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000133
134 // Fill up weak map to trigger capacity change.
135 {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000136 HandleScope scope(isolate);
137 Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000138 for (int i = 0; i < 32; i++) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000139 Handle<JSObject> object = factory->NewJSObjectFromMap(map);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000140 Handle<Smi> smi(Smi::FromInt(i), isolate);
141 int32_t object_hash = Object::GetOrCreateHash(isolate, object)->value();
142 JSWeakCollection::Set(weakmap, object, smi, object_hash);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000143 }
144 }
145
146 // Check increased capacity.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100147 CHECK_EQ(128, ObjectHashTable::cast(weakmap->table())->Capacity());
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000148
149 // Force a full GC.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100150 CHECK_EQ(32, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
151 CHECK_EQ(
152 0, ObjectHashTable::cast(weakmap->table())->NumberOfDeletedElements());
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000153 heap->CollectAllGarbage(false);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100154 CHECK_EQ(0, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
155 CHECK_EQ(
156 32, ObjectHashTable::cast(weakmap->table())->NumberOfDeletedElements());
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000157
158 // Check shrunk capacity.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100159 CHECK_EQ(32, ObjectHashTable::cast(weakmap->table())->Capacity());
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000160}
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000161
162
163// Test that weak map values on an evacuation candidate which are not reachable
164// by other paths are correctly recorded in the slots buffer.
165TEST(Regress2060a) {
166 if (i::FLAG_never_compact) return;
167 FLAG_always_compact = true;
168 LocalContext context;
169 Isolate* isolate = GetIsolateFrom(&context);
170 Factory* factory = isolate->factory();
171 Heap* heap = isolate->heap();
172 HandleScope scope(isolate);
173 Handle<JSFunction> function = factory->NewFunction(
174 factory->function_string());
175 Handle<JSObject> key = factory->NewJSObject(function);
176 Handle<JSWeakMap> weakmap = AllocateJSWeakMap(isolate);
177
178 // Start second old-space page so that values land on evacuation candidate.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000179 Page* first_page = heap->old_space()->anchor()->next_page();
Ben Murdoch61f157c2016-09-16 13:49:30 +0100180 heap::SimulateFullSpace(heap->old_space());
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000181
182 // Fill up weak map with values on an evacuation candidate.
183 {
184 HandleScope scope(isolate);
185 for (int i = 0; i < 32; i++) {
186 Handle<JSObject> object = factory->NewJSObject(function, TENURED);
Ben Murdoch097c5b22016-05-18 11:27:45 +0100187 CHECK(!heap->InNewSpace(*object));
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000188 CHECK(!first_page->Contains(object->address()));
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000189 int32_t hash = Object::GetOrCreateHash(isolate, key)->value();
190 JSWeakCollection::Set(weakmap, key, object, hash);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000191 }
192 }
193
194 // Force compacting garbage collection.
195 CHECK(FLAG_always_compact);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000196 heap->CollectAllGarbage();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000197}
198
199
200// Test that weak map keys on an evacuation candidate which are reachable by
201// other strong paths are correctly recorded in the slots buffer.
202TEST(Regress2060b) {
203 if (i::FLAG_never_compact) return;
204 FLAG_always_compact = true;
205#ifdef VERIFY_HEAP
206 FLAG_verify_heap = true;
207#endif
208
209 LocalContext context;
210 Isolate* isolate = GetIsolateFrom(&context);
211 Factory* factory = isolate->factory();
212 Heap* heap = isolate->heap();
213 HandleScope scope(isolate);
214 Handle<JSFunction> function = factory->NewFunction(
215 factory->function_string());
216
217 // Start second old-space page so that keys land on evacuation candidate.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000218 Page* first_page = heap->old_space()->anchor()->next_page();
Ben Murdoch61f157c2016-09-16 13:49:30 +0100219 heap::SimulateFullSpace(heap->old_space());
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000220
221 // Fill up weak map with keys on an evacuation candidate.
222 Handle<JSObject> keys[32];
223 for (int i = 0; i < 32; i++) {
224 keys[i] = factory->NewJSObject(function, TENURED);
Ben Murdoch097c5b22016-05-18 11:27:45 +0100225 CHECK(!heap->InNewSpace(*keys[i]));
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000226 CHECK(!first_page->Contains(keys[i]->address()));
227 }
228 Handle<JSWeakMap> weakmap = AllocateJSWeakMap(isolate);
229 for (int i = 0; i < 32; i++) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000230 Handle<Smi> smi(Smi::FromInt(i), isolate);
231 int32_t hash = Object::GetOrCreateHash(isolate, keys[i])->value();
232 JSWeakCollection::Set(weakmap, keys[i], smi, hash);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000233 }
234
235 // Force compacting garbage collection. The subsequent collections are used
236 // to verify that key references were actually updated.
237 CHECK(FLAG_always_compact);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000238 heap->CollectAllGarbage();
239 heap->CollectAllGarbage();
240 heap->CollectAllGarbage();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000241}
242
243
244TEST(Regress399527) {
245 CcTest::InitializeVM();
246 v8::HandleScope scope(CcTest::isolate());
247 Isolate* isolate = CcTest::i_isolate();
248 Heap* heap = isolate->heap();
249 {
250 HandleScope scope(isolate);
251 AllocateJSWeakMap(isolate);
Ben Murdoch61f157c2016-09-16 13:49:30 +0100252 heap::SimulateIncrementalMarking(heap);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000253 }
254 // The weak map is marked black here but leaving the handle scope will make
255 // the object unreachable. Aborting incremental marking will clear all the
256 // marking bits which makes the weak map garbage.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000257 heap->CollectAllGarbage();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000258}