node/deps/v8/test/js-perf-test/ObjectFreeze/array-indexof-includes.js
Michaël Zasso 2dcc3665ab
deps: update V8 to 7.6.303.28
PR-URL: https://github.com/nodejs/node/pull/28016
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
2019-08-01 12:53:56 +02:00

54 lines
1.1 KiB
JavaScript

// Copyright 2019 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.
function setupArray(length) {
var a = new Array(length);
for (var i=0;i<length;i++) {
a[i] = ''+i;
}
return Object.freeze(a);
}
const frozenArray = setupArray(200);
function driverArrayIndexOf(n) {
let result = 0;
for (var i=0;i<n;i++) {
result += frozenArray.indexOf(''+i)==-1?0:1;
}
return result;
}
function ArrayIndexOf() {
driverArrayIndexOf(1e4);
}
function ArrayIndexOfWarmUp() {
driverArrayIndexOf(1e1);
driverArrayIndexOf(1e2);
driverArrayIndexOf(1e3);
}
createSuite('ArrayIndexOf', 10, ArrayIndexOf, ArrayIndexOfWarmUp);
function driverArrayIncludes(n) {
let result = 0;
for (var i=0;i<n;i++) {
result += frozenArray.includes(''+i)?0:1;
}
return result;
}
function ArrayIncludes() {
driverArrayIncludes(1e4);
}
function ArrayIncludesWarmUp() {
driverArrayIncludes(1e1);
driverArrayIncludes(1e2);
driverArrayIncludes(1e3);
}
createSuite('ArrayIncludes', 10, ArrayIncludes, ArrayIncludesWarmUp);