summaryrefslogtreecommitdiff
path: root/deps/node/benchmark/process/bench-hrtime.js
blob: e704087b692e686302790908b01d65cad1bf4630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
'use strict';

const common = require('../common');
const assert = require('assert');

const bench = common.createBenchmark(main, {
  n: [1e6],
  type: ['raw', 'diff', 'bigint']
});

function main({ n, type }) {
  const hrtime = process.hrtime;
  var noDead = type === 'bigint' ? hrtime.bigint() : hrtime();
  var i;

  switch (type) {
    case 'raw':
      bench.start();
      for (i = 0; i < n; i++) {
        noDead = hrtime();
      }
      bench.end(n);
      break;
    case 'diff':
      bench.start();
      for (i = 0; i < n; i++) {
        noDead = hrtime(noDead);
      }
      bench.end(n);
      break;
    case 'bigint':
      bench.start();
      for (i = 0; i < n; i++) {
        noDead = hrtime.bigint();
      }
      bench.end(n);
      break;
  }

  // eslint-disable-next-line valid-typeof
  assert.ok(Array.isArray(noDead) || typeof noDead === 'bigint');
}