summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/inlining/inline-callarg-bailout-phi.js
blob: 06bc1f6efe5f6a3e7c76c6449c19905f62f6f349 (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
function add(x, y) {
    if (x & 0x1)
        return x + y;
    else
        return y + x;
}

function runBinop(binop, lhs, rhs) {
    return binop(lhs, rhs);
}

//dis(run_binop);

// Get the add function to compile.
var accum = 0;
for (var i = 0; i < 1000; ++i)
    accum += add(1, 1);
assertEq(accum, 2000);

// Get the runBinop function to compile and inline the add function.
var accum = 0;
for (var i = 0; i < 11000; ++i)
    accum = runBinop(add, i, i);
assertEq(accum, 21998);

var t30 = 1 << 30;
var t31 = t30 + t30;
var result = runBinop(add, t31, t31);
assertEq(result, Math.pow(2, 32));