mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
b80da63b99
PR-URL: https://github.com/nodejs/node/pull/18917 Fixes: https://github.com/nodejs/node/issues/18778 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Weijia Wang <starkwang@126.com> Reviewed-By: Andreas Madsen <amwebdk@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
42 lines
948 B
JavaScript
42 lines
948 B
JavaScript
// show the difference between calling a short js function
|
|
// relative to a comparable C++ function.
|
|
// Reports n of calls per second.
|
|
// Note that JS speed goes up, while cxx speed stays about the same.
|
|
'use strict';
|
|
|
|
const assert = require('assert');
|
|
const common = require('../../common.js');
|
|
|
|
// this fails when we try to open with a different version of node,
|
|
// which is quite common for benchmarks. so in that case, just
|
|
// abort quietly.
|
|
|
|
try {
|
|
var binding = require('./build/Release/binding');
|
|
} catch (er) {
|
|
console.error('misc/function_call.js Binding failed to load');
|
|
process.exit(0);
|
|
}
|
|
const cxx = binding.hello;
|
|
|
|
var c = 0;
|
|
function js() {
|
|
return c++;
|
|
}
|
|
|
|
assert(js() === cxx());
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
type: ['js', 'cxx'],
|
|
n: [1e6, 1e7, 5e7]
|
|
});
|
|
|
|
function main({ n, type }) {
|
|
const fn = type === 'cxx' ? cxx : js;
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
fn();
|
|
}
|
|
bench.end(n);
|
|
}
|