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

Unified Diff: test/mjsunit/asm/redundancy2.js

Issue 899433005: [turbofan] Split pure nodes in the scheduler if beneficial. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: comments Created 5 years, 11 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/asm/redundancy1.js ('k') | test/unittests/compiler/scheduler-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/asm/redundancy2.js
diff --git a/test/mjsunit/asm/redundancy2.js b/test/mjsunit/asm/redundancy2.js
new file mode 100644
index 0000000000000000000000000000000000000000..95a55b533eeb4bfcd583564651ca5d87f035c645
--- /dev/null
+++ b/test/mjsunit/asm/redundancy2.js
@@ -0,0 +1,29 @@
+// 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: --turbo-splitting
+
+function module(stdlib, foreign, heap) {
+ "use asm";
+ function foo(i) {
+ var j = 0;
+ i = i|0;
+ switch (i) {
+ case 0:
+ j = i+1|0;
+ break;
+ case 1:
+ j = i+1|0;
+ break;
+ default:
+ j = i;
+ break;
+ }
+ return j;
+ }
+ return { foo: foo };
+}
+
+var foo = module(this, {}, new ArrayBuffer(64*1024)).foo;
+print(foo(1));
« no previous file with comments | « test/mjsunit/asm/redundancy1.js ('k') | test/unittests/compiler/scheduler-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698