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

Unified Diff: test/mjsunit/compiler/regress-shift-right.js

Issue 1213803008: [turbofan] Right hand side of shifts needs ToUint32. (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/regress-shift-left.js ('k') | test/mjsunit/compiler/regress-shift-right-logical.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/regress-shift-right.js
diff --git a/test/mjsunit/compiler/regress-shift-right.js b/test/mjsunit/compiler/regress-shift-right.js
new file mode 100644
index 0000000000000000000000000000000000000000..71bcb21f0ee0fc97df792396f8bd6346e0317a4d
--- /dev/null
+++ b/test/mjsunit/compiler/regress-shift-right.js
@@ -0,0 +1,41 @@
+// 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
+
+(function ShiftRightWithDeoptUsage() {
+ function g() {}
+
+ function f() {
+ var tmp = 1264475713;
+ var tmp1 = tmp - (-913041544);
+ g();
+ return 1 >> tmp1;
+ }
+
+ %OptimizeFunctionOnNextCall(f);
+ assertEquals(0, f());
+})();
+
+
+(function ShiftRightWithCallUsage() {
+ var f = (function() {
+ "use asm"
+ // This is not a valid asm.js, we use the "use asm" here to
+ // trigger Turbofan without deoptimization support.
+
+ function g(x) { return x; }
+
+ function f() {
+ var tmp = 1264475713;
+ var tmp1 = tmp - (-913041544);
+ return g(1 >> tmp1, tmp1);
+ }
+
+ return f;
+ })();
+
+ %OptimizeFunctionOnNextCall(f);
+ assertEquals(0, f());
+})();
« no previous file with comments | « test/mjsunit/compiler/regress-shift-left.js ('k') | test/mjsunit/compiler/regress-shift-right-logical.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698