mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 15:06:33 +01:00
541119c6ee
This removes all instances of %OptimizeFunctionOnNextCall from streams benchmarks PR-URL: https://github.com/nodejs/node/pull/9615 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
25 lines
446 B
JavaScript
25 lines
446 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const Readable = require('stream').Readable;
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [200e1]
|
|
});
|
|
|
|
function main(conf) {
|
|
const n = +conf.n;
|
|
const b = new Buffer(32);
|
|
const s = new Readable();
|
|
function noop() {}
|
|
s._read = noop;
|
|
|
|
bench.start();
|
|
for (var k = 0; k < n; ++k) {
|
|
for (var i = 0; i < 1e4; ++i)
|
|
s.push(b);
|
|
while (s.read(32));
|
|
}
|
|
bench.end(n);
|
|
}
|