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

Unified Diff: test/mjsunit/compiler/integral32-add-sub.js

Issue 2253293005: [turbofan] Unify Int32Add/Sub representation selection rules. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address nit. Created 4 years, 4 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 | « src/compiler/simplified-lowering.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/integral32-add-sub.js
diff --git a/test/mjsunit/compiler/integral32-add-sub.js b/test/mjsunit/compiler/integral32-add-sub.js
new file mode 100644
index 0000000000000000000000000000000000000000..2dd370c9ddd5c83194ae91babf728f438d81a5ee
--- /dev/null
+++ b/test/mjsunit/compiler/integral32-add-sub.js
@@ -0,0 +1,131 @@
+// Copyright 2016 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
+
+(function() {
+ function foo(x) {
+ x = x >>> 0;
+ var y = 0 - 2147483648;
+ return x + y;
+ }
+
+ assertEquals(-2147483648, foo(0));
+ assertEquals(0, foo(2147483648));
+ assertEquals(2147483647, foo(4294967295));
+ %BaselineFunctionOnNextCall(foo);
+ assertEquals(-2147483648, foo(0));
+ assertEquals(0, foo(2147483648));
+ assertEquals(2147483647, foo(4294967295));
+ %OptimizeFunctionOnNextCall(foo);
+ assertEquals(-2147483648, foo(0));
+ assertEquals(0, foo(2147483648));
+ assertEquals(2147483647, foo(4294967295));
+ assertOptimized(foo);
+})();
+
+(function() {
+ function foo(x) {
+ x = x >>> 0;
+ var y = 2147483648;
+ return x - y;
+ }
+
+ assertEquals(-2147483648, foo(0));
+ assertEquals(0, foo(2147483648));
+ assertEquals(2147483647, foo(4294967295));
+ %BaselineFunctionOnNextCall(foo);
+ assertEquals(-2147483648, foo(0));
+ assertEquals(0, foo(2147483648));
+ assertEquals(2147483647, foo(4294967295));
+ %OptimizeFunctionOnNextCall(foo);
+ assertEquals(-2147483648, foo(0));
+ assertEquals(0, foo(2147483648));
+ assertEquals(2147483647, foo(4294967295));
+ assertOptimized(foo);
+})();
+
+(function() {
+ function foo(x) {
+ x = x | 0;
+ var y = 2147483648;
+ return x + y;
+ }
+
+ assertEquals(2147483648, foo(0));
+ assertEquals(0, foo(-2147483648));
+ assertEquals(4294967295, foo(2147483647));
+ %BaselineFunctionOnNextCall(foo);
+ assertEquals(2147483648, foo(0));
+ assertEquals(0, foo(-2147483648));
+ assertEquals(4294967295, foo(2147483647));
+ %OptimizeFunctionOnNextCall(foo);
+ assertEquals(2147483648, foo(0));
+ assertEquals(0, foo(-2147483648));
+ assertEquals(4294967295, foo(2147483647));
+ assertOptimized(foo);
+})();
+
+(function() {
+ function foo(x) {
+ x = x | 0;
+ var y = 0 - 2147483648;
+ return x - y;
+ }
+
+ assertEquals(2147483648, foo(0));
+ assertEquals(0, foo(-2147483648));
+ assertEquals(4294967295, foo(2147483647));
+ %BaselineFunctionOnNextCall(foo);
+ assertEquals(2147483648, foo(0));
+ assertEquals(0, foo(-2147483648));
+ assertEquals(4294967295, foo(2147483647));
+ %OptimizeFunctionOnNextCall(foo);
+ assertEquals(2147483648, foo(0));
+ assertEquals(0, foo(-2147483648));
+ assertEquals(4294967295, foo(2147483647));
+ assertOptimized(foo);
+})();
+
+(function() {
+ function foo(x) {
+ x = x | 0;
+ var y = -0;
+ return x + y;
+ }
+
+ assertEquals(2147483647, foo(2147483647));
+ assertEquals(-2147483648, foo(-2147483648));
+ assertEquals(0, foo(0));
+ %BaselineFunctionOnNextCall(foo);
+ assertEquals(2147483647, foo(2147483647));
+ assertEquals(-2147483648, foo(-2147483648));
+ assertEquals(0, foo(0));
+ %OptimizeFunctionOnNextCall(foo);
+ assertEquals(2147483647, foo(2147483647));
+ assertEquals(-2147483648, foo(-2147483648));
+ assertEquals(0, foo(0));
+ assertOptimized(foo);
+})();
+
+(function() {
+ function foo(x) {
+ var y = (x < 0) ? 4294967295 : 4294967296;
+ var z = (x > 0) ? 2147483647 : 2147483648;
+ return y - z;
+ }
+
+ assertEquals(2147483647, foo(-1));
+ assertEquals(2147483648, foo(0));
+ assertEquals(2147483649, foo(1));
+ %BaselineFunctionOnNextCall(foo);
+ assertEquals(2147483647, foo(-1));
+ assertEquals(2147483648, foo(0));
+ assertEquals(2147483649, foo(1));
+ %OptimizeFunctionOnNextCall(foo);
+ assertEquals(2147483647, foo(-1));
+ assertEquals(2147483648, foo(0));
+ assertEquals(2147483649, foo(1));
+ assertOptimized(foo);
+})();
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698