Follow-up to df09b2a48c.
Refs: https://github.com/nodejs/node/pull/63482
Signed-off-by: Anna Henningsen <anna@addaleax.net>
PR-URL: https://github.com/nodejs/node/pull/63666
Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
28 lines
570 B
JavaScript
28 lines
570 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const ffi = require('node:ffi');
|
|
const { libraryPath, ensureFixtureLibrary } = require('./common.js');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e7],
|
|
}, {
|
|
flags: ['--experimental-ffi'],
|
|
});
|
|
|
|
ensureFixtureLibrary();
|
|
|
|
const { lib, functions } = ffi.dlopen(libraryPath, {
|
|
pointer_to_usize: { return: 'u64', arguments: ['pointer'] },
|
|
});
|
|
|
|
const fn = functions.pointer_to_usize;
|
|
|
|
function main({ n }) {
|
|
bench.start();
|
|
for (let i = 0; i < n; ++i)
|
|
fn(0xdeadbeefn);
|
|
bench.end(n);
|
|
|
|
lib.close();
|
|
}
|