mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
67 lines
1.7 KiB
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const 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);
|
|
}
|
|
|