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.
35 lines
770 B
35 lines
770 B
var common = require('../common.js');
|
|
var path = require('path');
|
|
var v8 = require('v8');
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
props: [
|
|
['/', '/home/user/dir', 'index.html', '.html', 'index'].join('|')
|
|
],
|
|
n: [1e7]
|
|
});
|
|
|
|
function main(conf) {
|
|
var n = +conf.n;
|
|
var p = path.posix;
|
|
var props = ('' + conf.props).split('|');
|
|
var obj = {
|
|
root: props[0] || '',
|
|
dir: props[1] || '',
|
|
base: props[2] || '',
|
|
ext: props[3] || '',
|
|
name: props[4] || '',
|
|
};
|
|
|
|
// Force optimization before starting the benchmark
|
|
p.format(obj);
|
|
v8.setFlagsFromString('--allow_natives_syntax');
|
|
eval('%OptimizeFunctionOnNextCall(p.format)');
|
|
p.format(obj);
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
p.format(obj);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|