2014-10-09 12:41:36 +00:00
|
|
|
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
|
|
var SetBenchmark = new BenchmarkSuite('WeakSet', [1000], [
|
2014-10-29 10:18:16 +00:00
|
|
|
new Benchmark('Add', false, false, 0, WeakSetAdd, WeakSetSetupBase,
|
|
|
|
WeakSetTearDown),
|
2014-10-09 12:41:36 +00:00
|
|
|
new Benchmark('Has', false, false, 0, WeakSetHas, WeakSetSetup,
|
|
|
|
WeakSetTearDown),
|
|
|
|
new Benchmark('Delete', false, false, 0, WeakSetDelete, WeakSetSetup,
|
|
|
|
WeakSetTearDown),
|
|
|
|
]);
|
|
|
|
|
2017-11-16 03:41:49 +00:00
|
|
|
var SetBenchmark = new BenchmarkSuite('WeakSet-Constructor', [1000], [
|
|
|
|
new Benchmark('Constructor', false, false, 0, WeakSetConstructor, SetupObjectKeys,
|
|
|
|
WeakSetTearDown),
|
|
|
|
]);
|
2014-10-09 12:41:36 +00:00
|
|
|
|
|
|
|
var ws;
|
|
|
|
|
|
|
|
|
2014-10-29 10:18:16 +00:00
|
|
|
function WeakSetSetupBase() {
|
|
|
|
SetupObjectKeys();
|
|
|
|
ws = new WeakSet;
|
2014-10-09 12:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function WeakSetSetup() {
|
2014-10-29 10:18:16 +00:00
|
|
|
WeakSetSetupBase();
|
|
|
|
WeakSetAdd();
|
2014-10-09 12:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function WeakSetTearDown() {
|
|
|
|
ws = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-16 03:41:49 +00:00
|
|
|
function WeakSetConstructor() {
|
|
|
|
ws = new WeakSet(keys);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-09 12:41:36 +00:00
|
|
|
function WeakSetAdd() {
|
2014-10-29 10:18:16 +00:00
|
|
|
for (var i = 0; i < N; i++) {
|
|
|
|
ws.add(keys[i]);
|
|
|
|
}
|
2014-10-09 12:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function WeakSetHas() {
|
|
|
|
for (var i = 0; i < N; i++) {
|
|
|
|
if (!ws.has(keys[i])) {
|
|
|
|
throw new Error();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (var i = N; i < 2 * N; i++) {
|
|
|
|
if (ws.has(keys[i])) {
|
|
|
|
throw new Error();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function WeakSetDelete() {
|
|
|
|
// This is run more than once per setup so we will end up deleting items
|
|
|
|
// more than once. Therefore, we do not the return value of delete.
|
|
|
|
for (var i = 0; i < N; i++) {
|
|
|
|
ws.delete(keys[i]);
|
|
|
|
}
|
|
|
|
}
|