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

Unified Diff: test/mjsunit/compiler/optimize_max.js

Issue 1199053011: Add mjsunit tests for optimization of float min/max. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | test/mjsunit/compiler/optimize_min.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/optimize_max.js
diff --git a/test/mjsunit/compiler/optimize_max.js b/test/mjsunit/compiler/optimize_max.js
new file mode 100644
index 0000000000000000000000000000000000000000..6baefe48ba935ff2a3973c610eb21dd2b7323cda
--- /dev/null
+++ b/test/mjsunit/compiler/optimize_max.js
@@ -0,0 +1,69 @@
+// Copyright 2015 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Flags: --allow-natives-syntax
+
+var DOUBLE_ZERO = %AllocateHeapNumber();
+var SMI_ZERO = 0;
+var MINUS_ZERO = -0.0;
+
+function max1(a, b) {
+ a = +a;
+ b = +b;
+ return +(a < b ? b : a);
+}
+
+function max2(a, b) {
+ a = +a;
+ b = +b;
+ return a < b ? b : a;
+}
+
+for (f of [max1, max2]) {
+ for (var i = 0; i < 5; i++) {
+ assertEquals(4, f(3, 4));
+ assertEquals(4, f(4, 3));
+ assertEquals(4.3, f(3.3, 4.3));
+ assertEquals(4.4, f(4.4, 3.4));
+
+ assertEquals(Infinity, 1 / f(SMI_ZERO, MINUS_ZERO));
+ assertEquals(Infinity, 1 / f(DOUBLE_ZERO, MINUS_ZERO));
+ assertEquals(-Infinity, 1 / f(MINUS_ZERO, SMI_ZERO));
+ assertEquals(-Infinity, 1 / f(MINUS_ZERO, DOUBLE_ZERO));
+
+ assertEquals(NaN, f(NaN, NaN));
+ assertEquals(3, f(3, NaN));
+ assertEquals(NaN, f(NaN, 3));
+ }
+}
+
+function max3(a, b) {
+ a = +a;
+ b = +b;
+ return +(a > b ? a : b);
+}
+
+function max4(a, b) {
+ a = +a;
+ b = +b;
+ return a > b ? a : b;
+}
+
+for (f of [max3, max4]) {
+ for (var i = 0; i < 5; i++) {
+ assertEquals(4, f(3, 4));
+ assertEquals(4, f(4, 3));
+ assertEquals(4.3, f(3.3, 4.3));
+ assertEquals(4.4, f(4.4, 3.4));
+
+ assertEquals(-Infinity, 1 / f(SMI_ZERO, MINUS_ZERO));
+ assertEquals(-Infinity, 1 / f(DOUBLE_ZERO, MINUS_ZERO));
+ assertEquals(Infinity, 1 / f(MINUS_ZERO, SMI_ZERO));
+ assertEquals(Infinity, 1 / f(MINUS_ZERO, DOUBLE_ZERO));
+
+ assertEquals(NaN, f(NaN, NaN));
+ assertEquals(NaN, f(3, NaN));
+ assertEquals(3, f(NaN, 3));
+ }
+}
« no previous file with comments | « no previous file | test/mjsunit/compiler/optimize_min.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698