blob: da3644511aaa7fb307ef0f3bae5d1a2aee2fb2f4 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// |jit-test| skip-if: !hasFunction["gczeal"]
// Check that incoming CCW edges are marked gray in a zone GC if the
// source is gray.
// Set up a new compartment with a gray object wrapper to this
// compartment.
function createOtherCompartment() {
let t = {};
addMarkObservers([t]);
let g = newGlobal({newCompartment: true});
g.t = t;
g.eval(`grayRoot().push(t);`);
g.t = null;
t = null;
return g;
}
function startGCMarking() {
startgc(1);
while (gcstate() === "Prepare") {
gcslice(1);
}
}
gczeal(0);
let g = createOtherCompartment();
// The target should be gray in a full GC...
gc();
assertEq(getMarks()[0], "gray");
// and subsequently gray in a zone GC of only this compartment.
gc(this);
assertEq(getMarks()[0], "gray");
// If a barrier marks the gray wrapper black after the start of the
// GC, the target ends up black.
schedulezone(this);
startGCMarking()
assertEq(getMarks()[0], "unmarked");
g.eval(`grayRoot()`); // Barrier marks gray roots black.
assertEq(getMarks()[0], "black");
finishgc();
// A full collection resets the wrapper to gray.
gc();
assertEq(getMarks()[0], "gray");
// If a barrier marks the gray wrapper black after the target has
// already been marked gray, the target ends up black.
gczeal(25); // Yield during gray marking.
schedulezone(this);
startGCMarking();
assertEq(getMarks()[0], "gray");
g.eval(`grayRoot()`); // Barrier marks gray roots black.
assertEq(getMarks()[0], "black");
finishgc();
|