2017-03-21 08:56:56 +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.
|
|
|
|
|
|
|
|
load('../base.js');
|
|
|
|
|
2018-01-15 15:58:36 +00:00
|
|
|
let array;
|
|
|
|
// Initialize func variable to ensure the first test doesn't benefit from
|
|
|
|
// global object property tracking.
|
|
|
|
let func = 0;
|
|
|
|
let this_arg;
|
|
|
|
let result;
|
|
|
|
const array_size = 100;
|
|
|
|
const max_index = array_size - 1;
|
|
|
|
|
|
|
|
// mc stands for "Make Closure," it's a handy function to get a fresh
|
|
|
|
// closure unpolluted by IC feedback for a 2nd-order array builtin
|
|
|
|
// test.
|
|
|
|
function mc(name, generic = false) {
|
|
|
|
if (generic) {
|
|
|
|
return new Function(
|
|
|
|
`result = Array.prototype.${name}.call(array, func, this_arg);`);
|
|
|
|
}
|
|
|
|
return new Function(`result = array.${name}(func, this_arg);`);
|
|
|
|
}
|
|
|
|
|
|
|
|
function benchy(name, test, testSetup) {
|
|
|
|
new BenchmarkSuite(name, [1000],
|
|
|
|
[
|
|
|
|
new Benchmark(name, false, false, 0, test, testSetup, ()=>{})
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function SmiSetup() {
|
|
|
|
array = Array.from({ length: array_size }, (_, i) => i);
|
|
|
|
}
|
|
|
|
|
|
|
|
function DoubleSetup() {
|
|
|
|
array = Array.from({ length: array_size }, (_, i) => i + 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
function FastSetup() {
|
|
|
|
array = Array.from({ length: array_size }, (_, i) => `value ${i}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
function ObjectSetup() {
|
|
|
|
array = { length: array_size };
|
|
|
|
for (var i = 0; i < array_size; i++) {
|
|
|
|
array[i] = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function DefineHigherOrderTests(tests) {
|
|
|
|
let i = 0;
|
|
|
|
while (i < tests.length) {
|
|
|
|
const name = tests[i++];
|
|
|
|
const testFunc = tests[i++];
|
|
|
|
const setupFunc = tests[i++];
|
|
|
|
const callback = tests[i++];
|
|
|
|
|
|
|
|
let setupFuncWrapper = () => {
|
|
|
|
func = callback;
|
|
|
|
this_arg = undefined;
|
|
|
|
setupFunc();
|
|
|
|
};
|
|
|
|
benchy(name, testFunc, setupFuncWrapper);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Higher-order Array builtins.
|
2017-03-21 08:56:56 +00:00
|
|
|
load('filter.js');
|
2017-03-24 17:39:34 +00:00
|
|
|
load('map.js');
|
2017-07-04 08:33:39 +00:00
|
|
|
load('every.js');
|
|
|
|
load('some.js');
|
2018-01-16 13:22:10 +00:00
|
|
|
load('for-each.js');
|
2017-07-04 08:33:39 +00:00
|
|
|
load('reduce.js');
|
|
|
|
load('reduce-right.js');
|
2017-12-05 12:23:48 +00:00
|
|
|
load('find.js');
|
2017-12-06 13:55:06 +00:00
|
|
|
load('find-index.js');
|
2017-03-21 08:56:56 +00:00
|
|
|
|
2018-01-15 15:58:36 +00:00
|
|
|
// Other Array builtins.
|
2018-02-05 15:53:36 +00:00
|
|
|
load('from.js');
|
|
|
|
load('of.js');
|
2018-01-15 15:58:36 +00:00
|
|
|
load('join.js');
|
|
|
|
load('to-string.js');
|
|
|
|
|
2017-03-21 08:56:56 +00:00
|
|
|
var success = true;
|
|
|
|
|
|
|
|
function PrintResult(name, result) {
|
|
|
|
print(name + '-Array(Score): ' + result);
|
|
|
|
}
|
|
|
|
|
2017-03-24 17:39:34 +00:00
|
|
|
function PrintStep(name) {}
|
2017-03-21 08:56:56 +00:00
|
|
|
|
|
|
|
function PrintError(name, error) {
|
|
|
|
PrintResult(name, error);
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BenchmarkSuite.config.doWarmup = undefined;
|
|
|
|
BenchmarkSuite.config.doDeterministic = undefined;
|
|
|
|
|
|
|
|
BenchmarkSuite.RunSuites({ NotifyResult: PrintResult,
|
|
|
|
NotifyError: PrintError,
|
|
|
|
NotifyStep: PrintStep });
|