mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
c7782c0af8
This commit uses separate functions to isolate deopts caused by try-catches and avoids fn.apply() for callbacks with small numbers of arguments. These changes improve performance by ~1-40% in the various nextTick benchmarks. PR-URL: https://github.com/iojs/io.js/pull/1571 Reviewed-By: Trevor Norris <trev.norris@gmail.com> Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
38 lines
671 B
JavaScript
38 lines
671 B
JavaScript
'use strict';
|
|
|
|
var common = require('../common.js');
|
|
var bench = common.createBenchmark(main, {
|
|
millions: [2]
|
|
});
|
|
|
|
function main(conf) {
|
|
var 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);
|
|
}
|
|
|
|
bench.start();
|
|
for (var i = 0; i < N; i++) {
|
|
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);
|
|
}
|
|
}
|