mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 01:35:51 +00:00

This removes all instances of %OptimizeFunctionOnNextCall from path 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>
26 lines
499 B
JavaScript
26 lines
499 B
JavaScript
'use strict';
|
|
var common = require('../common.js');
|
|
var path = require('path');
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
paths: [
|
|
'',
|
|
['', ''].join('|'),
|
|
['foo/bar', '/tmp/file/', '..', 'a/../subfile'].join('|'),
|
|
['a/b/c/', '../../..'].join('|')
|
|
],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main(conf) {
|
|
var n = +conf.n;
|
|
var p = path.posix;
|
|
var args = ('' + conf.paths).split('|');
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
p.resolve.apply(null, args);
|
|
}
|
|
bench.end(n);
|
|
}
|