mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
4bb529d972
Apply strict mode to benchmark code. PR-URL: https://github.com/nodejs/node/pull/5336 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
33 lines
751 B
JavaScript
33 lines
751 B
JavaScript
'use strict';
|
|
var common = require('../common.js');
|
|
var path = require('path');
|
|
var v8 = require('v8');
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
paths: [
|
|
'',
|
|
['', ''].join('|'),
|
|
['c:/ignore', 'd:\\a/b\\c/d', '\\e.exe'].join('|'),
|
|
['c:/blah\\blah', 'd:/games', 'c:../a'].join('|')
|
|
],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main(conf) {
|
|
var n = +conf.n;
|
|
var p = path.win32;
|
|
var args = ('' + conf.paths).split('|');
|
|
|
|
// Force optimization before starting the benchmark
|
|
p.resolve.apply(null, args);
|
|
v8.setFlagsFromString('--allow_natives_syntax');
|
|
eval('%OptimizeFunctionOnNextCall(p.resolve)');
|
|
p.resolve.apply(null, args);
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
p.resolve.apply(null, args);
|
|
}
|
|
bench.end(n);
|
|
}
|