summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/scripted-getter-setter.js
blob: 4e8842cba5d6cc42b769eae775f0092129b1b615 (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
if (getJitCompilerOptions()["ion.warmup.trigger"] > 50)
    setJitCompilerOption("ion.warmup.trigger", 50);

function getObjects() {
    var objs = [];

    // Own scripted getter/setter.
    objs.push({x: 0, get prop() {
        assertJitStackInvariants();
        return ++this.x;
    }, set prop(v) {
        assertJitStackInvariants();
        this.x += v;
    }});

    // Scripted getter/setter on prototype. Also verify extra formal args are
    // handled correctly.
    function getter(a, b, c) {
        assertEq(arguments.length, 0);
        assertEq(a, undefined);
        assertEq(b, undefined);
        assertEq(c, undefined);
        assertJitStackInvariants();
        bailout();
        return ++this.y;
    }
    function setter1(a, b) {
        assertEq(arguments.length, 1);
        assertEq(b, undefined);
        assertJitStackInvariants();
        this.y = a;
        bailout();
        return "unused";
    }
    var proto = {};
    Object.defineProperty(proto, "prop", {get: getter, set: setter1});
    objs.push(Object.create(proto));

    function setter2() {
        assertEq(arguments.length, 1);
        assertJitStackInvariants();
        this.y = arguments[0];
    }
    proto = {};
    Object.defineProperty(proto, "prop", {get: getter, set: setter2});
    objs.push(Object.create(proto));
    return objs;
}
function f() {
    var objs = getObjects();
    var res = 0;
    for (var i=0; i<200; i++) {
        var o = objs[i % objs.length];
        o.prop = 2;
        res += o.prop;
    }
    assertEq(res, 7233);
}
f();