summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/cacheir/function-length.js
blob: 14e852683f37c98466a55aa9c9a33f947614c198 (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
function interpreted() {
    for (var i = 0; i < 50; i++) {
        var f = function () {};
        assertEq(f.length, 0);
    }

    for (var i = 0; i < 50; i++) {
        var f = function (a, b) {};
        assertEq(f.length, 2);
    }
}

function bound() {
    for (var i = 0; i < 50; i++) {
        var f = (function () {}).bind({});
        assertEq(f.length, 0);
    }

    for (var i = 0; i < 50; i++) {
        var f = (function (a, b) {}).bind({});
        assertEq(f.length, 2);
    }
}

function native() {
    for (var i = 0; i < 50; i++) {
        // Use the interpreted function for getting the IC generated in the first place.
        var f = function (a) {};

        if (i == 15) {
            f = Math.sin;
        } else if (i == 20) {
            f = Math.cos;
        } else if (i == 25) {
            f = Math.ceil;
        } else if (i == 30) {
            f = Math.tan;
        } else if (i == 35) {
            f = Math.tanh;
        }

        assertEq(f.length, 1);
    }
}

interpreted();
bound();
native();