summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/pretenure-object-long-then-short-lived.js
blob: 280ce3a5bdde1b646f9a9845b8aa96b41ce86962 (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.

allocateObjects(nurseryCount, true);
let { minor, major } = runTestAndCountCollections(
  () => allocateObjects(tenuredCount, true)
);

print(`${minor} minor GCs, ${major} major GCs`);
assertEq(minor <= 1, true);
assertEq(major >= 5, true);

// Phase 2: short lived.

allocateObjects(tenuredCount, false);
({ minor, major } = runTestAndCountCollections(
  () => allocateObjects(nurseryCount * 5, false)
));

print(`${minor} minor GCs, ${major} major GCs`);
assertEq(minor >= 5, true);
assertEq(major == 0, true);