blob: a8f88cd5f7842829e42fef77acf0cc771bce6510 (
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
|
setJitCompilerOption("baseline.warmup.trigger", 0);
setJitCompilerOption("ion.warmup.trigger", 120);
gczeal(0);
with ({}) {}
function bar(...rest) {
// |rest| can be recovered, even if this is inlined into an OSR script.
assertRecoveredOnBailout(rest, true);
return rest[0];
}
function foo(n, ...rest) {
// |rest| for an OSR script can't be recovered.
assertRecoveredOnBailout(rest, 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), 499500);
|