node/deps/v8/test/js-perf-test/Collections/weakmap.js

80 lines
1.5 KiB
JavaScript
Raw Normal View History

2014-10-10 18:49:02 +08: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 MapBenchmark = new BenchmarkSuite('WeakMap', [1000], [
2014-11-14 07:52:27 +08:00
new Benchmark('Set', false, false, 0, WeakMapSet, WeakMapSetupBase,
WeakMapTearDown),
2014-10-10 18:49:02 +08:00
new Benchmark('Has', false, false, 0, WeakMapHas, WeakMapSetup,
WeakMapTearDown),
new Benchmark('Get', false, false, 0, WeakMapGet, WeakMapSetup,
WeakMapTearDown),
new Benchmark('Delete', false, false, 0, WeakMapDelete, WeakMapSetup,
WeakMapTearDown),
]);
var wm;
2014-11-14 07:52:27 +08:00
function WeakMapSetupBase() {
SetupObjectKeys();
wm = new WeakMap;
2014-10-10 18:49:02 +08:00
}
function WeakMapSetup() {
2014-11-14 07:52:27 +08:00
WeakMapSetupBase();
WeakMapSet();
2014-10-10 18:49:02 +08:00
}
function WeakMapTearDown() {
wm = null;
}
function WeakMapSet() {
2014-11-14 07:52:27 +08:00
for (var i = 0; i < N; i++) {
wm.set(keys[i], i);
}
2014-10-10 18:49:02 +08:00
}
function WeakMapHas() {
for (var i = 0; i < N; i++) {
if (!wm.has(keys[i])) {
throw new Error();
}
}
for (var i = N; i < 2 * N; i++) {
if (wm.has(keys[i])) {
throw new Error();
}
}
}
function WeakMapGet() {
for (var i = 0; i < N; i++) {
if (wm.get(keys[i]) !== i) {
throw new Error();
}
}
for (var i = N; i < 2 * N; i++) {
if (wm.get(keys[i]) !== undefined) {
throw new Error();
}
}
}
function WeakMapDelete() {
// 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++) {
wm.delete(keys[i]);
}
}