mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const arrayBuffer = new ArrayBuffer();
|
|
const dataView = new DataView(arrayBuffer);
|
|
const uint8Array = new Uint8Array(arrayBuffer);
|
|
const int32Array = new Int32Array(arrayBuffer);
|
|
|
|
const args = {
|
|
ArrayBufferView: {
|
|
'true': dataView,
|
|
'false-primitive': true,
|
|
'false-object': arrayBuffer
|
|
},
|
|
TypedArray: {
|
|
'true': int32Array,
|
|
'false-primitive': true,
|
|
'false-object': arrayBuffer
|
|
},
|
|
Uint8Array: {
|
|
'true': uint8Array,
|
|
'false-primitive': true,
|
|
'false-object': int32Array
|
|
}
|
|
};
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
type: Object.keys(args),
|
|
version: ['native', 'js'],
|
|
argument: ['true', 'false-primitive', 'false-object'],
|
|
millions: ['5']
|
|
}, {
|
|
flags: ['--expose-internals']
|
|
});
|
|
|
|
function main(conf) {
|
|
const util = process.binding('util');
|
|
const types = require('internal/util/types');
|
|
|
|
const n = (+conf.millions * 1e6) | 0;
|
|
const func = { native: util, js: types }[conf.version][`is${conf.type}`];
|
|
const arg = args[conf.type][conf.argument];
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
func(arg);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|