-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
benchmark: add benchmark for url.format()
PR-URL: #7250 Reviewed-By: Brian White <[email protected]>
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
'use strict'; | ||
const common = require('../common.js'); | ||
const url = require('url'); | ||
const v8 = require('v8'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
type: 'one two'.split(' '), | ||
n: [25e6] | ||
}); | ||
|
||
function main(conf) { | ||
const type = conf.type; | ||
const n = conf.n | 0; | ||
|
||
const inputs = { | ||
one: {slashes: true, host: 'localhost'}, | ||
two: {protocol: 'file:', pathname: '/foo'}, | ||
}; | ||
const input = inputs[type] || ''; | ||
|
||
// Force-optimize url.format() so that the benchmark doesn't get | ||
// disrupted by the optimizer kicking in halfway through. | ||
for (const name in inputs) | ||
url.format(inputs[name]); | ||
|
||
v8.setFlagsFromString('--allow_natives_syntax'); | ||
eval('%OptimizeFunctionOnNextCall(url.format)'); | ||
|
||
bench.start(); | ||
for (var i = 0; i < n; i += 1) | ||
url.format(input); | ||
bench.end(n); | ||
} |