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/pow-base-power-of-two-bailouts.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.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/pow-base-power-of-two-bailouts.js')
-rw-r--r-- | js/src/jit-test/tests/ion/pow-base-power-of-two-bailouts.js | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/pow-base-power-of-two-bailouts.js b/js/src/jit-test/tests/ion/pow-base-power-of-two-bailouts.js new file mode 100644 index 0000000000..34e7ed406f --- /dev/null +++ b/js/src/jit-test/tests/ion/pow-base-power-of-two-bailouts.js @@ -0,0 +1,85 @@ +// Lowering provides a specialisation when the base operand is a constant which +// is a power of two. +// +// Test bailout conditions for this optimisation. + +function test(x) { + function pow(x, y) { return `Math.pow(${x}, ${y})` }; + function exp(x, y) { return `((${x}) ** ${y})` }; + + function make(fn) { + return Function("y, z", ` + // Load from array to prevent constant-folding. + // (Ion is currently not smart enough to realise that both array + // values are the same.) + var ys = [y, y]; + var zs = [z, z]; + for (var i = 0; i < 1000; ++i) { + assertEq(${fn(x, "ys[i & 1]")}, zs[i & 1]); + } + `); + } + + function double(v) { + // NB: numberToDouble() always returns a double value. + return numberToDouble(v); + } + + // Find the first power which will exceed the Int32 range by computing ⌈log_x(2 ^ 31)⌉. + var limit = Math.ceil(Math.log2(2 ** 31) / Math.log2(x)); + assertEq(Math.pow(x, limit - 1) < 2 ** 31, true); + assertEq(Math.pow(x, limit) >= 2 ** 31, true); + + function* args(first, last) { + // Run the test function a few times without a bailout. + for (var i = 0; i < 3; ++i) { + yield first; + } + + // |last| should trigger a bailout. + yield last; + } + + // Test precision loss when the result exceeds 2**31. + for (var fn of [make(pow), make(exp)]) { + for (var y of args(limit - 1, limit)) { + // Ensure the callee always sees a double to avoid an early Bailout_ArgumentCheck. + var z = double(Math.pow(x, y)); + fn(y, z); + } + } + + // Test precision loss when the result is a fractional number. + for (var fn of [make(pow), make(exp)]) { + for (var y of args(0, -1)) { + // Ensure the callee always sees a double to avoid an early Bailout_ArgumentCheck. + var z = double(Math.pow(x, y)); + fn(y, z); + } + } + + // Find the first negative power which can be represented as a double + var negLimit = -Math.floor(1074 / Math.log2(x)); + + // Test precision loss when the result is a non-zero, fractional number. + for (var fn of [make(pow), make(exp)]) { + for (var y of args(limit - 1, limit)) { + // Ensure the callee always sees a double to avoid an early Bailout_ArgumentCheck. + var z = double(Math.pow(x, y)); + fn(y, z); + } + } +} + +function* range(a, b, fn) { + for (var i = a; i <= b; ++i) { + yield fn(i); + } +} + +// Only 2^i with |i| ∈ {1..8} currently triggers the optimisation, but also test +// the next power-of-two values. + +for (var x of range(1, 10, i => 2 ** i)) { + test(x); +} |