mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
97c43940c8
The benchmarks for `process.nextTick()` do not cover the `default` case in the internal code's `switch` statement where the callback receives more than 3 arguments. Modify two of the benchmarks to include this condition. PR-URL: https://github.com/nodejs/node/pull/14645 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
68 lines
1.7 KiB
JavaScript
68 lines
1.7 KiB
JavaScript
'use strict';
|
|
|
|
var common = require('../common.js');
|
|
var bench = common.createBenchmark(main, {
|
|
millions: [12]
|
|
});
|
|
|
|
process.maxTickDepth = Infinity;
|
|
|
|
function main(conf) {
|
|
var n = +conf.millions * 1e6;
|
|
|
|
function cb4(arg1, arg2, arg3, arg4) {
|
|
if (--n) {
|
|
if (n % 4 === 0)
|
|
process.nextTick(cb4, 3.14, 1024, true, false);
|
|
else if (n % 3 === 0)
|
|
process.nextTick(cb3, 512, true, null);
|
|
else if (n % 2 === 0)
|
|
process.nextTick(cb2, false, 5.1);
|
|
else
|
|
process.nextTick(cb1, 0);
|
|
} else
|
|
bench.end(+conf.millions);
|
|
}
|
|
function cb3(arg1, arg2, arg3) {
|
|
if (--n) {
|
|
if (n % 4 === 0)
|
|
process.nextTick(cb4, 3.14, 1024, true, false);
|
|
else if (n % 3 === 0)
|
|
process.nextTick(cb3, 512, true, null);
|
|
else if (n % 2 === 0)
|
|
process.nextTick(cb2, false, 5.1);
|
|
else
|
|
process.nextTick(cb1, 0);
|
|
} else
|
|
bench.end(+conf.millions);
|
|
}
|
|
function cb2(arg1, arg2) {
|
|
if (--n) {
|
|
if (n % 4 === 0)
|
|
process.nextTick(cb4, 3.14, 1024, true, false);
|
|
else if (n % 3 === 0)
|
|
process.nextTick(cb3, 512, true, null);
|
|
else if (n % 2 === 0)
|
|
process.nextTick(cb2, false, 5.1);
|
|
else
|
|
process.nextTick(cb1, 0);
|
|
} else
|
|
bench.end(+conf.millions);
|
|
}
|
|
function cb1(arg1) {
|
|
if (--n) {
|
|
if (n % 4 === 0)
|
|
process.nextTick(cb4, 3.14, 1024, true, false);
|
|
else if (n % 3 === 0)
|
|
process.nextTick(cb3, 512, true, null);
|
|
else if (n % 2 === 0)
|
|
process.nextTick(cb2, false, 5.1);
|
|
else
|
|
process.nextTick(cb1, 0);
|
|
} else
|
|
bench.end(+conf.millions);
|
|
}
|
|
bench.start();
|
|
process.nextTick(cb1, true);
|
|
}
|