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