Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Unified Diff: test/mjsunit/math-floor-part1.js

Issue 1841993002: [builtins] Make Math.ceil, Math.trunc and Math.round optimizable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/math-ceil.js ('k') | test/mjsunit/math-floor-part2.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/math-floor-part1.js
diff --git a/test/mjsunit/math-floor-part1.js b/test/mjsunit/math-floor-part1.js
index 65ae3c68e46d20f477769005aee261da1ddfe18e..bad1edd081b33a79e855fe93534207eba44f1cb5 100644
--- a/test/mjsunit/math-floor-part1.js
+++ b/test/mjsunit/math-floor-part1.js
@@ -38,6 +38,15 @@ function testFloor(expect, input) {
%OptimizeFunctionOnNextCall(test);
assertEquals(expect, test(input));
+ var test_double_input = new Function(
+ 'n',
+ '"' + (test_id++) + '";return Math.floor(+n)');
+ assertEquals(expect, test_double_input(input));
+ assertEquals(expect, test_double_input(input));
+ assertEquals(expect, test_double_input(input));
+ %OptimizeFunctionOnNextCall(test_double_input);
+ assertEquals(expect, test_double_input(input));
+
var test_double_output = new Function(
'n',
'"' + (test_id++) + '";return Math.floor(n) + -0.0');
@@ -46,6 +55,26 @@ function testFloor(expect, input) {
assertEquals(expect, test_double_output(input));
%OptimizeFunctionOnNextCall(test_double_output);
assertEquals(expect, test_double_output(input));
+
+ var test_via_ceil = new Function(
+ 'n',
+ '"' + (test_id++) + '";return -Math.ceil(-n)');
+ assertEquals(expect, test_via_ceil(input));
+ assertEquals(expect, test_via_ceil(input));
+ assertEquals(expect, test_via_ceil(input));
+ %OptimizeFunctionOnNextCall(test_via_ceil);
+ assertEquals(expect, test_via_ceil(input));
+
+ if (input >= 0) {
+ var test_via_trunc = new Function(
+ 'n',
+ '"' + (test_id++) + '";return Math.trunc(n)');
+ assertEquals(expect, test_via_trunc(input));
+ assertEquals(expect, test_via_trunc(input));
+ assertEquals(expect, test_via_trunc(input));
+ %OptimizeFunctionOnNextCall(test_via_trunc);
+ assertEquals(expect, test_via_trunc(input));
+ }
}
function zero() {
« no previous file with comments | « test/mjsunit/math-ceil.js ('k') | test/mjsunit/math-floor-part2.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698