mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
69906fbc52
Add a benchmark, and amend the relevant source code comment to state that currently, switching to directly returning a BigInt is not stopped by technical obstacles but rather the fact that using a typed array is actually a bit faster (about 2.5 %, measured locally). PR-URL: https://github.com/nodejs/node/pull/26381 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
43 lines
880 B
JavaScript
43 lines
880 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e6],
|
|
type: ['raw', 'diff', 'bigint']
|
|
});
|
|
|
|
function main({ n, type }) {
|
|
const hrtime = process.hrtime;
|
|
var noDead = type === 'bigint' ? hrtime.bigint() : hrtime();
|
|
var i;
|
|
|
|
switch (type) {
|
|
case 'raw':
|
|
bench.start();
|
|
for (i = 0; i < n; i++) {
|
|
noDead = hrtime();
|
|
}
|
|
bench.end(n);
|
|
break;
|
|
case 'diff':
|
|
bench.start();
|
|
for (i = 0; i < n; i++) {
|
|
noDead = hrtime(noDead);
|
|
}
|
|
bench.end(n);
|
|
break;
|
|
case 'bigint':
|
|
bench.start();
|
|
for (i = 0; i < n; i++) {
|
|
noDead = hrtime.bigint();
|
|
}
|
|
bench.end(n);
|
|
break;
|
|
}
|
|
|
|
// eslint-disable-next-line valid-typeof
|
|
assert.ok(Array.isArray(noDead) || typeof noDead === 'bigint');
|
|
}
|