blob: 28adc7b4d34d60378213fa0e7124e40620561f0d [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 "src/v8.h"
29#include "test/cctest/cctest.h"
Ben Murdoch69a99ed2011-11-30 16:03:39 +000030
Ben Murdochb8a8cc12014-11-26 15:28:44 +000031#include "src/api.h"
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000032#include "src/debug/debug.h"
Ben Murdochb8a8cc12014-11-26 15:28:44 +000033#include "src/execution.h"
34#include "src/factory.h"
35#include "src/global-handles.h"
36#include "src/macro-assembler.h"
37#include "src/objects.h"
Ben Murdoch61f157c2016-09-16 13:49:30 +010038#include "test/cctest/heap/heap-utils.h"
Ben Murdoch69a99ed2011-11-30 16:03:39 +000039
40using namespace v8::internal;
41
Ben Murdochb8a8cc12014-11-26 15:28:44 +000042namespace {
Ben Murdoch3ef787d2012-04-12 10:51:47 +010043
Ben Murdochb8a8cc12014-11-26 15:28:44 +000044
45template<typename HashMap>
46static void TestHashMap(Handle<HashMap> table) {
47 Isolate* isolate = CcTest::i_isolate();
48 Factory* factory = isolate->factory();
49
50 Handle<JSObject> a = factory->NewJSArray(7);
51 Handle<JSObject> b = factory->NewJSArray(11);
52 table = HashMap::Put(table, a, b);
Ben Murdoch69a99ed2011-11-30 16:03:39 +000053 CHECK_EQ(table->NumberOfElements(), 1);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000054 CHECK_EQ(table->Lookup(a), *b);
55 // When the key does not exist in the map, Lookup returns the hole.
56 CHECK_EQ(table->Lookup(b), CcTest::heap()->the_hole_value());
Ben Murdoch69a99ed2011-11-30 16:03:39 +000057
58 // Keys still have to be valid after objects were moved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000059 CcTest::heap()->CollectGarbage(NEW_SPACE);
Ben Murdoch69a99ed2011-11-30 16:03:39 +000060 CHECK_EQ(table->NumberOfElements(), 1);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000061 CHECK_EQ(table->Lookup(a), *b);
62 CHECK_EQ(table->Lookup(b), CcTest::heap()->the_hole_value());
Ben Murdoch69a99ed2011-11-30 16:03:39 +000063
64 // Keys that are overwritten should not change number of elements.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000065 table = HashMap::Put(table, a, factory->NewJSArray(13));
Ben Murdoch69a99ed2011-11-30 16:03:39 +000066 CHECK_EQ(table->NumberOfElements(), 1);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000067 CHECK_NE(table->Lookup(a), *b);
Ben Murdoch69a99ed2011-11-30 16:03:39 +000068
Ben Murdochb8a8cc12014-11-26 15:28:44 +000069 // Keys that have been removed are mapped to the hole.
70 bool was_present = false;
71 table = HashMap::Remove(table, a, &was_present);
72 CHECK(was_present);
Ben Murdoch69a99ed2011-11-30 16:03:39 +000073 CHECK_EQ(table->NumberOfElements(), 0);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000074 CHECK_EQ(table->Lookup(a), CcTest::heap()->the_hole_value());
Ben Murdoch69a99ed2011-11-30 16:03:39 +000075
Ben Murdoch3ef787d2012-04-12 10:51:47 +010076 // Keys should map back to their respective values and also should get
77 // an identity hash code generated.
Ben Murdoch69a99ed2011-11-30 16:03:39 +000078 for (int i = 0; i < 100; i++) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000079 Handle<JSReceiver> key = factory->NewJSArray(7);
80 Handle<JSObject> value = factory->NewJSArray(11);
81 table = HashMap::Put(table, key, value);
Ben Murdoch69a99ed2011-11-30 16:03:39 +000082 CHECK_EQ(table->NumberOfElements(), i + 1);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000083 CHECK_NE(table->FindEntry(key), HashMap::kNotFound);
84 CHECK_EQ(table->Lookup(key), *value);
Ben Murdochda12d292016-06-02 14:46:10 +010085 CHECK(JSReceiver::GetIdentityHash(isolate, key)->IsSmi());
Ben Murdoch69a99ed2011-11-30 16:03:39 +000086 }
87
Ben Murdoch3ef787d2012-04-12 10:51:47 +010088 // Keys never added to the map which already have an identity hash
89 // code should not be found.
90 for (int i = 0; i < 100; i++) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000091 Handle<JSReceiver> key = factory->NewJSArray(7);
Ben Murdoch61f157c2016-09-16 13:49:30 +010092 CHECK(JSReceiver::GetOrCreateIdentityHash(isolate, key)->IsSmi());
Ben Murdochb8a8cc12014-11-26 15:28:44 +000093 CHECK_EQ(table->FindEntry(key), HashMap::kNotFound);
94 CHECK_EQ(table->Lookup(key), CcTest::heap()->the_hole_value());
Ben Murdochda12d292016-06-02 14:46:10 +010095 CHECK(JSReceiver::GetIdentityHash(isolate, key)->IsSmi());
Ben Murdoch3ef787d2012-04-12 10:51:47 +010096 }
97
98 // Keys that don't have an identity hash should not be found and also
99 // should not get an identity hash code generated.
100 for (int i = 0; i < 100; i++) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000101 Handle<JSReceiver> key = factory->NewJSArray(7);
102 CHECK_EQ(table->Lookup(key), CcTest::heap()->the_hole_value());
Ben Murdoch61f157c2016-09-16 13:49:30 +0100103 Object* identity_hash = JSReceiver::GetIdentityHash(isolate, key);
104 CHECK_EQ(CcTest::heap()->undefined_value(), identity_hash);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000105 }
106}
107
108
109TEST(HashMap) {
110 LocalContext context;
111 v8::HandleScope scope(context->GetIsolate());
112 Isolate* isolate = CcTest::i_isolate();
113 TestHashMap(ObjectHashTable::New(isolate, 23));
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000114}
115
116
117class ObjectHashTableTest: public ObjectHashTable {
118 public:
119 void insert(int entry, int key, int value) {
120 set(EntryToIndex(entry), Smi::FromInt(key));
121 set(EntryToIndex(entry) + 1, Smi::FromInt(value));
122 }
123
124 int lookup(int key) {
125 Handle<Object> key_obj(Smi::FromInt(key), GetIsolate());
126 return Smi::cast(Lookup(key_obj))->value();
127 }
128
129 int capacity() {
130 return Capacity();
131 }
132};
133
134
135TEST(HashTableRehash) {
136 LocalContext context;
137 Isolate* isolate = CcTest::i_isolate();
138 v8::HandleScope scope(context->GetIsolate());
139 // Test almost filled table.
140 {
141 Handle<ObjectHashTable> table = ObjectHashTable::New(isolate, 100);
142 ObjectHashTableTest* t = reinterpret_cast<ObjectHashTableTest*>(*table);
143 int capacity = t->capacity();
144 for (int i = 0; i < capacity - 1; i++) {
145 t->insert(i, i * i, i);
146 }
147 t->Rehash(handle(Smi::FromInt(0), isolate));
148 for (int i = 0; i < capacity - 1; i++) {
149 CHECK_EQ(i, t->lookup(i * i));
150 }
151 }
152 // Test half-filled table.
153 {
154 Handle<ObjectHashTable> table = ObjectHashTable::New(isolate, 100);
155 ObjectHashTableTest* t = reinterpret_cast<ObjectHashTableTest*>(*table);
156 int capacity = t->capacity();
157 for (int i = 0; i < capacity / 2; i++) {
158 t->insert(i, i * i, i);
159 }
160 t->Rehash(handle(Smi::FromInt(0), isolate));
161 for (int i = 0; i < capacity / 2; i++) {
162 CHECK_EQ(i, t->lookup(i * i));
163 }
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000164 }
165}
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100166
167
168#ifdef DEBUG
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000169template<class HashSet>
170static void TestHashSetCausesGC(Handle<HashSet> table) {
171 Isolate* isolate = CcTest::i_isolate();
172 Factory* factory = isolate->factory();
173
174 Handle<JSObject> key = factory->NewJSArray(0);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100175
176 // Simulate a full heap so that generating an identity hash code
177 // in subsequent calls will request GC.
Ben Murdoch61f157c2016-09-16 13:49:30 +0100178 heap::SimulateFullSpace(CcTest::heap()->new_space());
179 heap::SimulateFullSpace(CcTest::heap()->old_space());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100180
181 // Calling Contains() should not cause GC ever.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000182 int gc_count = isolate->heap()->gc_count();
183 CHECK(!table->Contains(key));
184 CHECK(gc_count == isolate->heap()->gc_count());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100185
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000186 // Calling Remove() will not cause GC in this case.
187 bool was_present = false;
188 table = HashSet::Remove(table, key, &was_present);
189 CHECK(!was_present);
190 CHECK(gc_count == isolate->heap()->gc_count());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100191
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000192 // Calling Add() should cause GC.
193 table = HashSet::Add(table, key);
194 CHECK(gc_count < isolate->heap()->gc_count());
195}
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100196#endif
197
198
199#ifdef DEBUG
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000200template<class HashMap>
201static void TestHashMapCausesGC(Handle<HashMap> table) {
202 Isolate* isolate = CcTest::i_isolate();
203 Factory* factory = isolate->factory();
204
205 Handle<JSObject> key = factory->NewJSArray(0);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100206
207 // Simulate a full heap so that generating an identity hash code
208 // in subsequent calls will request GC.
Ben Murdoch61f157c2016-09-16 13:49:30 +0100209 heap::SimulateFullSpace(CcTest::heap()->new_space());
210 heap::SimulateFullSpace(CcTest::heap()->old_space());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100211
212 // Calling Lookup() should not cause GC ever.
Ben Murdoch61f157c2016-09-16 13:49:30 +0100213 CHECK(table->Lookup(key)->IsTheHole(isolate));
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100214
215 // Calling Put() should request GC by returning a failure.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000216 int gc_count = isolate->heap()->gc_count();
217 HashMap::Put(table, key, key);
218 CHECK(gc_count < isolate->heap()->gc_count());
219}
220
221
222TEST(ObjectHashTableCausesGC) {
223 i::FLAG_stress_compaction = false;
224 LocalContext context;
225 v8::HandleScope scope(context->GetIsolate());
226 Isolate* isolate = CcTest::i_isolate();
227 TestHashMapCausesGC(ObjectHashTable::New(isolate, 1));
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100228}
229#endif
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000230
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000231TEST(SetRequiresCopyOnCapacityChange) {
232 LocalContext context;
233 v8::HandleScope scope(context->GetIsolate());
234 Isolate* isolate = CcTest::i_isolate();
235 Handle<NameDictionary> dict = NameDictionary::New(isolate, 0, TENURED);
236 dict->SetRequiresCopyOnCapacityChange();
237 Handle<Name> key = isolate->factory()->InternalizeString(
238 v8::Utils::OpenHandle(*v8_str("key")));
239 Handle<Object> value = handle(Smi::FromInt(0), isolate);
240 Handle<NameDictionary> new_dict =
241 NameDictionary::Add(dict, key, value, PropertyDetails::Empty());
242 CHECK_NE(*dict, *new_dict);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000243}
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000244
245} // namespace