summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/pretenure-array-long-then-short-lived.js
blob: 3f7b30507b0645f6b073301608440d49ae1c0257 (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
// 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);