test-weaksets.cc 8.99 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
// 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.

28 29
#include <utility>

30
#include "src/execution/isolate.h"
31
#include "src/handles/global-handles.h"
32
#include "src/heap/factory.h"
33
#include "src/heap/heap-inl.h"
34
#include "src/objects/hash-table-inl.h"
35
#include "src/objects/js-collection-inl.h"
36
#include "src/objects/objects-inl.h"
37
#include "test/cctest/cctest.h"
38
#include "test/cctest/heap/heap-utils.h"
39

40 41
namespace v8 {
namespace internal {
42
namespace test_weaksets {
43 44 45 46 47 48 49 50 51 52

static Isolate* GetIsolateFrom(LocalContext* context) {
  return reinterpret_cast<Isolate*>((*context)->GetIsolate());
}


static Handle<JSWeakSet> AllocateJSWeakSet(Isolate* isolate) {
  Factory* factory = isolate->factory();
  Handle<Map> map = factory->NewMap(JS_WEAK_SET_TYPE, JSWeakSet::kSize);
  Handle<JSObject> weakset_obj = factory->NewJSObjectFromMap(map);
53
  Handle<JSWeakSet> weakset(JSWeakSet::cast(*weakset_obj), isolate);
54 55 56
  // Do not leak handles for the hash table, it would make entries strong.
  {
    HandleScope scope(isolate);
57
    Handle<EphemeronHashTable> table = EphemeronHashTable::New(isolate, 1);
58 59
    weakset->set_table(*table);
  }
60 61 62 63
  return weakset;
}

static int NumberOfWeakCalls = 0;
64
static void WeakPointerCallback(const v8::WeakCallbackInfo<void>& data) {
65 66 67
  std::pair<v8::Persistent<v8::Value>*, int>* p =
      reinterpret_cast<std::pair<v8::Persistent<v8::Value>*, int>*>(
          data.GetParameter());
68
  CHECK_EQ(1234, p->second);
69
  NumberOfWeakCalls++;
70
  p->first->Reset();
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
}


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;
  {
    HandleScope scope(isolate);
    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.
  {
    HandleScope scope(isolate);
yurys's avatar
yurys committed
96
    Handle<Smi> smi(Smi::FromInt(23), isolate);
97
    int32_t hash = key->GetOrCreateHash(isolate).value();
98
    JSWeakCollection::Set(weakset, key, smi, hash);
99
  }
100
  CHECK_EQ(1, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
101 102

  // Force a full GC.
103
  CcTest::PreciseCollectAllGarbage();
104
  CHECK_EQ(0, NumberOfWeakCalls);
105
  CHECK_EQ(1, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
106
  CHECK_EQ(
107
      0, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
108 109

  // Make the global reference to the key weak.
110 111 112 113
  std::pair<Handle<Object>*, int> handle_and_id(&key, 1234);
  GlobalHandles::MakeWeak(
      key.location(), reinterpret_cast<void*>(&handle_and_id),
      &WeakPointerCallback, v8::WeakCallbackType::kParameter);
114 115
  CHECK(global_handles->IsWeak(key.location()));

116
  CcTest::PreciseCollectAllGarbage();
117
  CHECK_EQ(1, NumberOfWeakCalls);
118
  CHECK_EQ(0, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
119
  CHECK_EQ(
120
      1, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
121 122 123 124 125 126 127 128 129 130 131
}


TEST(WeakSet_Shrinking) {
  LocalContext context;
  Isolate* isolate = GetIsolateFrom(&context);
  Factory* factory = isolate->factory();
  HandleScope scope(isolate);
  Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate);

  // Check initial capacity.
132
  CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).Capacity());
133 134 135 136 137 138 139

  // Fill up weak set to trigger capacity change.
  {
    HandleScope scope(isolate);
    Handle<Map> map = factory->NewMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
    for (int i = 0; i < 32; i++) {
      Handle<JSObject> object = factory->NewJSObjectFromMap(map);
yurys's avatar
yurys committed
140
      Handle<Smi> smi(Smi::FromInt(i), isolate);
141
      int32_t hash = object->GetOrCreateHash(isolate).value();
142
      JSWeakCollection::Set(weakset, object, smi, hash);
143 144 145 146
    }
  }

  // Check increased capacity.
147
  CHECK_EQ(128, EphemeronHashTable::cast(weakset->table()).Capacity());
148 149

  // Force a full GC.
150
  CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
151
  CHECK_EQ(
152
      0, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
153
  CcTest::PreciseCollectAllGarbage();
154
  CHECK_EQ(0, EphemeronHashTable::cast(weakset->table()).NumberOfElements());
155
  CHECK_EQ(
156
      32, EphemeronHashTable::cast(weakset->table()).NumberOfDeletedElements());
157 158

  // Check shrunk capacity.
159
  CHECK_EQ(32, EphemeronHashTable::cast(weakset->table()).Capacity());
160 161 162 163 164 165
}


// 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) {
166
  if (i::FLAG_never_compact) return;
167 168 169 170 171 172
  FLAG_always_compact = true;
  LocalContext context;
  Isolate* isolate = GetIsolateFrom(&context);
  Factory* factory = isolate->factory();
  Heap* heap = isolate->heap();
  HandleScope scope(isolate);
173 174
  Handle<JSFunction> function =
      factory->NewFunctionForTest(factory->function_string());
175 176 177 178
  Handle<JSObject> key = factory->NewJSObject(function);
  Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate);

  // Start second old-space page so that values land on evacuation candidate.
179
  Page* first_page = heap->old_space()->first_page();
180
  heap::SimulateFullSpace(heap->old_space());
181 182 183 184 185

  // Fill up weak set with values on an evacuation candidate.
  {
    HandleScope scope(isolate);
    for (int i = 0; i < 32; i++) {
186 187
      Handle<JSObject> object =
          factory->NewJSObject(function, AllocationType::kOld);
188
      CHECK(!Heap::InYoungGeneration(*object));
189
      CHECK(!first_page->Contains(object->address()));
190
      int32_t hash = key->GetOrCreateHash(isolate).value();
191
      JSWeakCollection::Set(weakset, key, object, hash);
192 193 194 195 196
    }
  }

  // Force compacting garbage collection.
  CHECK(FLAG_always_compact);
197
  CcTest::CollectAllGarbage();
198 199 200 201 202 203
}


// 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) {
204
  if (i::FLAG_never_compact) return;
205 206 207 208 209 210 211 212 213 214
  FLAG_always_compact = true;
#ifdef VERIFY_HEAP
  FLAG_verify_heap = true;
#endif

  LocalContext context;
  Isolate* isolate = GetIsolateFrom(&context);
  Factory* factory = isolate->factory();
  Heap* heap = isolate->heap();
  HandleScope scope(isolate);
215 216
  Handle<JSFunction> function =
      factory->NewFunctionForTest(factory->function_string());
217 218

  // Start second old-space page so that keys land on evacuation candidate.
219
  Page* first_page = heap->old_space()->first_page();
220
  heap::SimulateFullSpace(heap->old_space());
221 222 223 224

  // Fill up weak set with keys on an evacuation candidate.
  Handle<JSObject> keys[32];
  for (int i = 0; i < 32; i++) {
225
    keys[i] = factory->NewJSObject(function, AllocationType::kOld);
226
    CHECK(!Heap::InYoungGeneration(*keys[i]));
227 228 229 230
    CHECK(!first_page->Contains(keys[i]->address()));
  }
  Handle<JSWeakSet> weakset = AllocateJSWeakSet(isolate);
  for (int i = 0; i < 32; i++) {
yurys's avatar
yurys committed
231
    Handle<Smi> smi(Smi::FromInt(i), isolate);
232
    int32_t hash = keys[i]->GetOrCreateHash(isolate).value();
233
    JSWeakCollection::Set(weakset, keys[i], smi, hash);
234 235 236 237 238
  }

  // Force compacting garbage collection. The subsequent collections are used
  // to verify that key references were actually updated.
  CHECK(FLAG_always_compact);
239 240 241
  CcTest::CollectAllGarbage();
  CcTest::CollectAllGarbage();
  CcTest::CollectAllGarbage();
242
}
243

244
}  // namespace test_weaksets
245 246
}  // namespace internal
}  // namespace v8