-
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 vm.runIn*()
Introduce benchmarks for vm.runInContext() and vm.runInThisContext(). PR-URL: #10816 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Brian White <[email protected]>
- Loading branch information
1 parent
9d91bf9
commit 47c0953
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); | ||
} |