mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
PR-URL: https://github.com/nodejs/node/pull/13757 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
45 lines
854 B
JavaScript
45 lines
854 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const bench = common.createBenchmark(main, {
|
|
millions: [2]
|
|
});
|
|
|
|
function main(conf) {
|
|
const N = +conf.millions * 1e6;
|
|
var n = 0;
|
|
|
|
function cb1(arg1) {
|
|
n++;
|
|
if (n === N)
|
|
bench.end(n / 1e6);
|
|
}
|
|
function cb2(arg1, arg2) {
|
|
n++;
|
|
if (n === N)
|
|
bench.end(n / 1e6);
|
|
}
|
|
function cb3(arg1, arg2, arg3) {
|
|
n++;
|
|
if (n === N)
|
|
bench.end(n / 1e6);
|
|
}
|
|
function cb4(arg1, arg2, arg3, arg4) {
|
|
n++;
|
|
if (n === N)
|
|
bench.end(n / 1e6);
|
|
}
|
|
|
|
bench.start();
|
|
for (var i = 0; i < N; i++) {
|
|
if (i % 4 === 0)
|
|
process.nextTick(cb4, 3.14, 1024, true, false);
|
|
else if (i % 3 === 0)
|
|
process.nextTick(cb3, 512, true, null);
|
|
else if (i % 2 === 0)
|
|
process.nextTick(cb2, false, 5.1);
|
|
else
|
|
process.nextTick(cb1, 0);
|
|
}
|
|
}
|