diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/jit-test/tests/arrays/spreadcall-optimization.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/arrays/spreadcall-optimization.js')
-rw-r--r-- | js/src/jit-test/tests/arrays/spreadcall-optimization.js | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/arrays/spreadcall-optimization.js b/js/src/jit-test/tests/arrays/spreadcall-optimization.js new file mode 100644 index 0000000000..7273f24a0f --- /dev/null +++ b/js/src/jit-test/tests/arrays/spreadcall-optimization.js @@ -0,0 +1,45 @@ +// Test case adapted from "apply-optimization.js" to test SpreadCall instead of FunApply. + +// Uses fewer iterations than "apply-optimization.js" to keep the overall runtime reasonable. +const iterations = 40; + +function make(k) { + var a = new Array(k); + for ( let i=0 ; i < k ; i++ ) + a[i] = {} + return a; +} + +function g() { + return arguments.length; +} + +function f(a) { + var sum = 0; + for ( let i=0 ; i < iterations ; i++ ) + sum += g(...a); + return sum; +} + +function time(k, t) { + var then = Date.now(); + assertEq(t(), iterations*k); + var now = Date.now(); + return now - then; +} + +function p(v) { + // Uncomment to see timings + // print(v); +} + +f(make(200)); + +// There is currently a cutoff after 375 where we bailout in order to avoid +// handling very large stack frames. This slows the operation down by a factor +// of 100 or so. + +p(time(374, () => f(make(374)))); +p(time(375, () => f(make(375)))); +p(time(376, () => f(make(376)))); +p(time(377, () => f(make(377)))); |