summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/recover-osr-arguments-oob.js
blob: 72e322dd85d2666f1c13101b17e8743e46d75c15 (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
setJitCompilerOption("baseline.warmup.trigger", 0);
setJitCompilerOption("ion.warmup.trigger", 120);
gczeal(0);
with ({}) {}

function bar(i) {
    // |arguments| can be recovered, even if this is inlined into an OSR script.
    assertRecoveredOnBailout(arguments, true);
    return arguments[i & 1]|0;
}

function foo(n) {
    // |arguments| for an OSR script can't be recovered.
    assertRecoveredOnBailout(arguments, false);
    var sum = 0;
    for (var i = 0; i < n; i++) {
        sum += bar(i);
    }
    trialInline();
    return sum;
}

// Trigger trial-inlining of bar into foo.
foo(110);

// OSR-compile foo.
assertEq(foo(1000), 249500);