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/ion/bug909997.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/ion/bug909997.js')
-rw-r--r-- | js/src/jit-test/tests/ion/bug909997.js | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug909997.js b/js/src/jit-test/tests/ion/bug909997.js new file mode 100644 index 0000000000..91d5c69bb3 --- /dev/null +++ b/js/src/jit-test/tests/ion/bug909997.js @@ -0,0 +1,42 @@ +// getJitCompilerOptions will always return array with zeros when JIT is +// disabled. Therefore we quit now. +if (inJit() == 'Baseline is disabled.') { + print("JIT is disabled."); + quit(); +} + +var wait = 100; + +var method_A = function() { + for (var t = 0; t < wait; ++t) {} +} + +var method_B = function() { + for (var t = 0; t < wait; ++t) {} +} + +var method_C = function() { + for (var t = 0; t < wait; ++t) {} +} + +var method_D = function() { + for (var t = 0; t < wait; ++t) {} +} + +var func = [method_A, method_B, method_C, method_D] + +for (var n = 0; n < 4; ++n) { + try { + setJitCompilerOption("baseline.enable", n & 1); + setJitCompilerOption("ion.enable", n & 2 ? 1: 0); + } catch(e) { + if (e.toString().includes("on the stack")) + continue; + throw e; + } + var opt = getJitCompilerOptions(); + assertEq(opt["baseline.enable"], n & 1); + assertEq(opt["ion.enable"], n & 2 ? 1 : 0); + for (var i = 0; i < 1001; ++i) + func[n](); +} |