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
60
61
62
63
64
65
66
|
// |jit-test| skip-if: isLcovEnabled()
load(libdir + 'bytecode-cache.js');
var test = "";
// Check that without cloneSingleton, we can safely encode object literal which
// have mutations.
test = `
var obj = { a: 1, b: 2 };
obj.a++;
assertEq(obj.a, 2);
`;
evalWithCache(test, {
incremental: true,
assertEqResult : true
});
// Encode lazy functions.
test = `
function f() { return 1; };
1;
`;
evalWithCache(test, {
incremental: true,
assertEqResult : true
});
// Encode delazified functions.
test = `
function f() { return 1; };
f();
`;
evalWithCache(test, {
incremental: true,
assertEqResult : true
});
// Encode inner functions.
test = `
function g() {
return function f() { return 1; };
};
g()();
`;
evalWithCache(test, {
incremental: true,
assertEqResult : true
});
// Extra zeal GCs can cause isRelazifiableFunction() to become true after we
// record its value by throwing away JIT code for the function.
gczeal(0);
// Relazified functions are encoded as non-lazy-script, when the encoding is
// incremental.
test = `
assertEq(isLazyFunction(f), generation == 0 || generation == 3);
function f() { return isRelazifiableFunction(f); };
expect = f();
assertEq(isLazyFunction(f), false);
relazifyFunctions(f);
assertEq(isLazyFunction(f), expect);
`;
evalWithCache(test, { incremental: true });
|