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

Unified Diff: test/mjsunit/compiler/optimize_min.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 | « test/mjsunit/compiler/optimize_max.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/optimize_min.js
diff --git a/test/mjsunit/compiler/optimize_min.js b/test/mjsunit/compiler/optimize_min.js
new file mode 100644
index 0000000000000000000000000000000000000000..906b9995840aa6e3bcc4903b44d3b397a88a1999
--- /dev/null
+++ b/test/mjsunit/compiler/optimize_min.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 min1(a, b) {
+ a = +a;
+ b = +b;
+ return +(a < b ? a : b);
+}
+
+function min2(a, b) {
+ a = +a;
+ b = +b;
+ return a < b ? a : b;
+}
+
+for (f of [min1, min2]) {
+ for (var i = 0; i < 5; i++) {
+ assertEquals(3, f(3, 4));
+ assertEquals(3, f(4, 3));
+ assertEquals(3.3, f(3.3, 4));
+ assertEquals(3.4, f(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));
+ }
+}
+
+function min3(a, b) {
+ a = +a;
+ b = +b;
+ return +(a > b ? b : a);
+}
+
+function min4(a, b) {
+ a = +a;
+ b = +b;
+ return a > b ? b : a;
+}
+
+for (f of [min3, min4]) {
+ for (var i = 0; i < 5; i++) {
+ assertEquals(3, f(3, 4));
+ assertEquals(3, f(4, 3));
+ assertEquals(3.3, f(3.3, 4));
+ assertEquals(3.4, f(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));
+ }
+}
« no previous file with comments | « test/mjsunit/compiler/optimize_max.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698