Skip to content

Commit 599c947

Browse files
jasnellitaloacasas
authored andcommitted
benchmarks: add spread operator benchmark
Useful for comparing spread operator performance over time. PR-URL: #11227 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net>
1 parent a5e8176 commit 599c947

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

benchmark/es/spread-bench.js

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
'use strict';
2+
3+
const common = require('../common.js');
4+
const assert = require('assert');
5+
6+
const bench = common.createBenchmark(main, {
7+
method: ['apply', 'spread', 'call-spread'],
8+
count: [5, 10, 20],
9+
context: ['context', 'null'],
10+
rest: [0, 1],
11+
millions: [5]
12+
});
13+
14+
function makeTest(count, rest) {
15+
if (rest) {
16+
return function test(...args) {
17+
assert.strictEqual(count, args.length);
18+
};
19+
} else {
20+
return function test() {
21+
assert.strictEqual(count, arguments.length);
22+
};
23+
}
24+
}
25+
26+
function main(conf) {
27+
const n = +conf.millions * 1e6;
28+
const ctx = conf.context === 'context' ? {} : null;
29+
var fn = makeTest(conf.count, conf.rest);
30+
const args = new Array(conf.count);
31+
var i;
32+
for (i = 0; i < conf.count; i++)
33+
args[i] = i;
34+
35+
switch (conf.method) {
36+
case 'apply':
37+
bench.start();
38+
for (i = 0; i < n; i++)
39+
fn.apply(ctx, args);
40+
bench.end(n / 1e6);
41+
break;
42+
case 'spread':
43+
if (ctx !== null)
44+
fn = fn.bind(ctx);
45+
bench.start();
46+
for (i = 0; i < n; i++)
47+
fn(...args);
48+
bench.end(n / 1e6);
49+
break;
50+
case 'call-spread':
51+
bench.start();
52+
for (i = 0; i < n; i++)
53+
fn.call(ctx, ...args);
54+
bench.end(n / 1e6);
55+
break;
56+
default:
57+
throw new Error('Unexpected method');
58+
}
59+
}

0 commit comments

Comments
 (0)