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.
24 lines
411 B
24 lines
411 B
8 years ago
|
'use strict';
|
||
|
|
||
|
const common = require('../common.js');
|
||
|
const v8 = require('v8');
|
||
|
|
||
|
const bench = common.createBenchmark(main, {
|
||
|
method: [
|
||
|
'getHeapStatistics',
|
||
|
'getHeapSpaceStatistics'
|
||
|
],
|
||
|
n: [1e6],
|
||
|
flags: ['--ignition --turbo', '']
|
||
|
});
|
||
|
|
||
|
function main(conf) {
|
||
|
const n = +conf.n;
|
||
|
const method = conf.method;
|
||
|
var i = 0;
|
||
|
bench.start();
|
||
|
for (; i < n; i++)
|
||
|
v8[method]();
|
||
|
bench.end(n);
|
||
|
}
|