-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
'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); | ||
} |