summaryrefslogtreecommitdiffstats
path: root/js/src/devtools/gc-ubench/benchmarks/globalArrayFgFinalized.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/devtools/gc-ubench/benchmarks/globalArrayFgFinalized.js')
-rw-r--r--js/src/devtools/gc-ubench/benchmarks/globalArrayFgFinalized.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/devtools/gc-ubench/benchmarks/globalArrayFgFinalized.js b/js/src/devtools/gc-ubench/benchmarks/globalArrayFgFinalized.js
new file mode 100644
index 000000000..f2f914376
--- /dev/null
+++ b/js/src/devtools/gc-ubench/benchmarks/globalArrayFgFinalized.js
@@ -0,0 +1,23 @@
+window.tests.set('globalArrayFgFinalized', (function() {
+var garbage = [];
+var garbageIndex = 0;
+return {
+ description: "var foo = [ new Map, new Map, ... ]; # (foreground finalized)",
+
+ load: (N) => { garbage = new Array(N); },
+ unload: () => { garbage = []; garbageIndex = 0; },
+
+ defaultGarbageTotal: "8K",
+ defaultGarbagePerFrame: "1M",
+
+ makeGarbage: (N) => {
+ var arr = [];
+ for (var i = 0; i < N; i++) {
+ arr.push(new Map);
+ }
+ garbage[garbageIndex++] = arr;
+ if (garbageIndex == garbage.length)
+ garbageIndex = 0;
+ }
+};
+})());