node/benchmark/perf_hooks/performance-observer.js
Lei Shi 3b758b3287
benchmark: update iterations in benchmark/perf_hooks
Fixes: https://github.com/nodejs/node/issues/50571
PR-URL: https://github.com/nodejs/node/pull/50869
Refs: https://github.com/nodejs/node/issues/50571
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
Reviewed-By: James M Snell <jasnell@gmail.com>
2023-12-10 08:49:52 +00:00

50 lines
941 B
JavaScript

'use strict';
const assert = require('assert');
const common = require('../common.js');
const {
PerformanceObserver,
performance,
} = require('perf_hooks');
function randomFn() {
return Math.random();
}
const bench = common.createBenchmark(main, {
n: [1e6],
pending: [1, 10],
}, {
options: ['--expose-internals'],
});
let _result;
function fillQueue(timerfied, pending) {
for (let i = 0; i < pending; i++) {
_result = timerfied();
}
// Avoid V8 deadcode (elimination)
assert.ok(_result);
}
function main({ n, pending }) {
const timerfied = performance.timerify(randomFn);
let count = 0;
const obs = new PerformanceObserver((entries) => {
count += entries.getEntries().length;
if (count >= n) {
bench.end(count);
} else {
fillQueue(timerfied, pending);
}
});
obs.observe({ entryTypes: ['function'], buffered: true });
bench.start();
fillQueue(timerfied, pending);
}