forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
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 vm.runIn*()
Introduce benchmarks for vm.runInContext() and vm.runInThisContext(). PR-URL: nodejs#10816 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Brian White <mscdex@mscdex.net>
- Loading branch information
1 parent
714e04b
commit b1e2dc7
Showing
2 changed files
with
61 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,32 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [1], | ||
breakOnSigint: [0, 1], | ||
withSigintListener: [0, 1] | ||
}); | ||
|
||
const vm = require('vm'); | ||
|
||
function main(conf) { | ||
const n = +conf.n; | ||
const options = conf.breakOnSigint ? {breakOnSigint: true} : {}; | ||
const withSigintListener = !!conf.withSigintListener; | ||
|
||
process.removeAllListeners('SIGINT'); | ||
if (withSigintListener) | ||
process.on('SIGINT', () => {}); | ||
|
||
var i = 0; | ||
|
||
const contextifiedSandbox = vm.createContext(); | ||
|
||
common.v8ForceOptimization(vm.runInContext, | ||
'0', contextifiedSandbox, options); | ||
bench.start(); | ||
for (; i < n; i++) | ||
vm.runInContext('0', contextifiedSandbox, options); | ||
bench.end(n); | ||
} |
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,29 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [1], | ||
breakOnSigint: [0, 1], | ||
withSigintListener: [0, 1] | ||
}); | ||
|
||
const vm = require('vm'); | ||
|
||
function main(conf) { | ||
const n = +conf.n; | ||
const options = conf.breakOnSigint ? {breakOnSigint: true} : {}; | ||
const withSigintListener = !!conf.withSigintListener; | ||
|
||
process.removeAllListeners('SIGINT'); | ||
if (withSigintListener) | ||
process.on('SIGINT', () => {}); | ||
|
||
var i = 0; | ||
|
||
common.v8ForceOptimization(vm.runInThisContext, '0', options); | ||
bench.start(); | ||
for (; i < n; i++) | ||
vm.runInThisContext('0', options); | ||
bench.end(n); | ||
} |