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.
33 lines
675 B
33 lines
675 B
9 years ago
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const v8 = require('v8');
|
||
|
const Readable = require('stream').Readable;
|
||
|
|
||
|
const bench = common.createBenchmark(main, {
|
||
|
n: [100e1]
|
||
|
});
|
||
|
|
||
|
function main(conf) {
|
||
|
const n = +conf.n;
|
||
|
const b = new Buffer(32);
|
||
|
const s = new Readable();
|
||
|
function noop() {}
|
||
|
s._read = noop;
|
||
|
|
||
|
// Force optimization before starting the benchmark
|
||
|
s.push(b);
|
||
|
v8.setFlagsFromString('--allow_natives_syntax');
|
||
|
eval('%OptimizeFunctionOnNextCall(s.read)');
|
||
|
s.push(b);
|
||
|
while (s.read(106));
|
||
|
|
||
|
bench.start();
|
||
|
for (var k = 0; k < n; ++k) {
|
||
|
for (var i = 0; i < 1e4; ++i)
|
||
|
s.push(b);
|
||
|
while (s.read(106));
|
||
|
}
|
||
|
bench.end(n);
|
||
|
}
|