summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/callgname.js
blob: 74b3cd8f1fd0bbd248bf909f85dae185f5952df9 (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
function g1(x) {
    return x + 1;
}
function f1() {
    var y = 0;
    for (var i=0; i<100; i++) {
        y += g1(g1(i));
    }
    return y;
}
g1(10);
assertEq(f1(), 5150);

x = 1;
other = newGlobal("same-compartment");
other.eval("f = function() { return x; }; x = 2;");

h = other.f;

function testOtherGlobal() {
    var y = 0;
    for (var i=0; i<100; i++) {
        y += h();
    }
    return y;
}
h();
assertEq(testOtherGlobal(), 200);

// Note: this test requires on On-Stack Invalidation.
f2 = function() {
    return x;
}
function test2() {
    var y = 0;
    for (var i=0; i<50; i++) {
        y += f2();
    }
    return y;
}
assertEq(test2(), 50);
f2 = h;
assertEq(test2(), 100);