diff options
Diffstat (limited to '')
-rw-r--r-- | js/src/jit-test/tests/arguments/recover-osr-arguments.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/arguments/recover-osr-arguments.js b/js/src/jit-test/tests/arguments/recover-osr-arguments.js new file mode 100644 index 0000000000..88756d4a54 --- /dev/null +++ b/js/src/jit-test/tests/arguments/recover-osr-arguments.js @@ -0,0 +1,27 @@ +setJitCompilerOption("baseline.warmup.trigger", 0); +setJitCompilerOption("ion.warmup.trigger", 120); +gczeal(0); +with ({}) {} + +function bar() { + // |arguments| can be recovered, even if this is inlined into an OSR script. + assertRecoveredOnBailout(arguments, true); + return arguments[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), 499500); |