summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/pretenure-array-long-then-short-lived.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/gc/pretenure-array-long-then-short-lived.js')
-rw-r--r--js/src/jit-test/tests/gc/pretenure-array-long-then-short-lived.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/gc/pretenure-array-long-then-short-lived.js b/js/src/jit-test/tests/gc/pretenure-array-long-then-short-lived.js
new file mode 100644
index 0000000000..3f7b30507b
--- /dev/null
+++ b/js/src/jit-test/tests/gc/pretenure-array-long-then-short-lived.js
@@ -0,0 +1,28 @@
+// Allocate many objects, changing the lifetime from long-lived to short lived
+// and check that we recover.
+
+load(libdir + "pretenure.js");
+
+setupPretenureTest();
+
+// Phase 1: long lived.
+
+allocateArrays(nurseryCount, true);
+let { minor, major } = runTestAndCountCollections(
+ () => allocateArrays(tenuredCount, true)
+);
+
+print(`${minor} minor GCs, ${major} major GCs`);
+assertEq(minor <= 1, true);
+assertEq(major >= 5, true);
+
+// Phase 2: short lived.
+
+allocateArrays(tenuredCount, false);
+({ minor, major } = runTestAndCountCollections(
+ () => allocateArrays(nurseryCount * 5, false)
+));
+
+print(`${minor} minor GCs, ${major} major GCs`);
+assertEq(minor >= 5, true);
+assertEq(major == 0, true);