diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /js/src/jit-test/tests/ion/mathFloor.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/jit-test/tests/ion/mathFloor.js')
-rw-r--r-- | js/src/jit-test/tests/ion/mathFloor.js | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/mathFloor.js b/js/src/jit-test/tests/ion/mathFloor.js new file mode 100644 index 000000000..057c7c3dd --- /dev/null +++ b/js/src/jit-test/tests/ion/mathFloor.js @@ -0,0 +1,50 @@ +// Test Math.floor() for IonMonkey. +// Requires --ion-eager to enter at the top of each loop. + +var floorDTests = [ + [-0, -0], + [0.49999999999999997, 0], + [0.5, 0], + [1.0, 1], + [1.5, 1], + [792.8, 792], + [-0.1, -1], + [-1.0001, -2], + [-3.14, -4], + [2137483649.5, 2137483649], + [2137483648.5, 2137483648], + [2137483647.1, 2137483647], + [900000000000, 900000000000], + [-0, -0], + [-Infinity, -Infinity], + [Infinity, Infinity], + [NaN, NaN], + [-2147483648.8, -2147483649], + [-2147483649.8, -2147483650] +]; + +var floorITests = [ + [0, 0], + [4, 4], + [-1, -1], + [-7, -7], + [2147483648, 2147483648], + [-2147483649, -2147483649] +]; + +// Typed functions to be compiled by Ion. +function floorD(x) { return Math.floor(x); } +function floorI(x) { return Math.floor(x); } + +function test() { + // Always run this function in the interpreter. + try {} catch (e) {} + + for (var i = 0; i < floorDTests.length; i++) + assertEq(floorD(floorDTests[i][0]), floorDTests[i][1]); + for (var i = 0; i < floorITests.length; i++) + assertEq(floorI(floorITests[i][0]), floorITests[i][1]); +} + +for (var i = 0; i < 40; i++) + test(); |