Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremiah Senkpiel <fishrock123@rocketmail.com>2017-01-21 00:16:26 +0300
committerMyles Borins <myles.borins@gmail.com>2017-03-09 04:11:20 +0300
commit4d6fa8d0406966de2071b2cfb209f821f0a2f5d4 (patch)
tree66dfb1d7d65ba7bcdb9406b5ba8c6d4129ab2713
parent62f6749cd6fcce499000d529df78fc5a69687926 (diff)
benchmark: add more thorough timers benchmarks
Refs: https://github.com/nodejs/node/issues/9493 PR-URL: https://github.com/nodejs/node/pull/10925 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
-rw-r--r--benchmark/timers/timers-cancel-pooled.js32
-rw-r--r--benchmark/timers/timers-cancel-unpooled.js26
-rw-r--r--benchmark/timers/timers-insert-pooled.js18
-rw-r--r--benchmark/timers/timers-insert-unpooled.js27
-rw-r--r--benchmark/timers/timers-timeout-pooled.js23
5 files changed, 126 insertions, 0 deletions
diff --git a/benchmark/timers/timers-cancel-pooled.js b/benchmark/timers/timers-cancel-pooled.js
new file mode 100644
index 00000000000..47c9fea2cb5
--- /dev/null
+++ b/benchmark/timers/timers-cancel-pooled.js
@@ -0,0 +1,32 @@
+'use strict';
+var common = require('../common.js');
+var assert = require('assert');
+
+var bench = common.createBenchmark(main, {
+ thousands: [500],
+});
+
+function main(conf) {
+ var iterations = +conf.thousands * 1e3;
+
+ var timer = setTimeout(() => {}, 1);
+ for (var i = 0; i < iterations; i++) {
+ setTimeout(cb, 1);
+ }
+ var next = timer._idlePrev;
+ clearTimeout(timer);
+
+ bench.start();
+
+ for (var j = 0; j < iterations; j++) {
+ timer = next;
+ next = timer._idlePrev;
+ clearTimeout(timer);
+ }
+
+ bench.end(iterations / 1e3);
+}
+
+function cb() {
+ assert(false, 'Timer should not call callback');
+}
diff --git a/benchmark/timers/timers-cancel-unpooled.js b/benchmark/timers/timers-cancel-unpooled.js
new file mode 100644
index 00000000000..a040fad69e1
--- /dev/null
+++ b/benchmark/timers/timers-cancel-unpooled.js
@@ -0,0 +1,26 @@
+'use strict';
+var common = require('../common.js');
+var assert = require('assert');
+
+var bench = common.createBenchmark(main, {
+ thousands: [100],
+});
+
+function main(conf) {
+ var iterations = +conf.thousands * 1e3;
+
+ var timersList = [];
+ for (var i = 0; i < iterations; i++) {
+ timersList.push(setTimeout(cb, i + 1));
+ }
+
+ bench.start();
+ for (var j = 0; j < iterations + 1; j++) {
+ clearTimeout(timersList[j]);
+ }
+ bench.end(iterations / 1e3);
+}
+
+function cb() {
+ assert(false, 'Timer ' + this._idleTimeout + ' should not call callback');
+}
diff --git a/benchmark/timers/timers-insert-pooled.js b/benchmark/timers/timers-insert-pooled.js
new file mode 100644
index 00000000000..11c35319b11
--- /dev/null
+++ b/benchmark/timers/timers-insert-pooled.js
@@ -0,0 +1,18 @@
+'use strict';
+var common = require('../common.js');
+
+var bench = common.createBenchmark(main, {
+ thousands: [500],
+});
+
+function main(conf) {
+ var iterations = +conf.thousands * 1e3;
+
+ bench.start();
+
+ for (var i = 0; i < iterations; i++) {
+ setTimeout(() => {}, 1);
+ }
+
+ bench.end(iterations / 1e3);
+}
diff --git a/benchmark/timers/timers-insert-unpooled.js b/benchmark/timers/timers-insert-unpooled.js
new file mode 100644
index 00000000000..91eabeb04e9
--- /dev/null
+++ b/benchmark/timers/timers-insert-unpooled.js
@@ -0,0 +1,27 @@
+'use strict';
+var common = require('../common.js');
+var assert = require('assert');
+
+var bench = common.createBenchmark(main, {
+ thousands: [100],
+});
+
+function main(conf) {
+ var iterations = +conf.thousands * 1e3;
+
+ var timersList = [];
+
+ bench.start();
+ for (var i = 0; i < iterations; i++) {
+ timersList.push(setTimeout(cb, i + 1));
+ }
+ bench.end(iterations / 1e3);
+
+ for (var j = 0; j < iterations + 1; j++) {
+ clearTimeout(timersList[j]);
+ }
+}
+
+function cb() {
+ assert(false, 'Timer ' + this._idleTimeout + ' should not call callback');
+}
diff --git a/benchmark/timers/timers-timeout-pooled.js b/benchmark/timers/timers-timeout-pooled.js
new file mode 100644
index 00000000000..feaec23237f
--- /dev/null
+++ b/benchmark/timers/timers-timeout-pooled.js
@@ -0,0 +1,23 @@
+'use strict';
+var common = require('../common.js');
+
+var bench = common.createBenchmark(main, {
+ thousands: [500],
+});
+
+function main(conf) {
+ var iterations = +conf.thousands * 1e3;
+ var count = 0;
+
+ for (var i = 0; i < iterations; i++) {
+ setTimeout(cb, 1);
+ }
+
+ bench.start();
+
+ function cb() {
+ count++;
+ if (count === iterations)
+ bench.end(iterations / 1e3);
+ }
+}