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

Unified Diff: test/mjsunit/wasm/asm-wasm-deopt.js

Issue 1766153002: Add a test of depot across an asm.js -> wasm module. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 9 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/mjsunit.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/wasm/asm-wasm-deopt.js
diff --git a/test/mjsunit/wasm/asm-wasm-deopt.js b/test/mjsunit/wasm/asm-wasm-deopt.js
new file mode 100644
index 0000000000000000000000000000000000000000..4b16b712398e403502072fd82c3305e3f21d993d
--- /dev/null
+++ b/test/mjsunit/wasm/asm-wasm-deopt.js
@@ -0,0 +1,29 @@
+// 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: --expose-wasm
+// Flags: --allow-natives-syntax
+
+(function TestDeoptimizeArgMismatch() {
+ function deopt() {
+ %DeoptimizeFunction(test);
+ }
+ function Module(global, env, buffer) {
+ "use asm";
+ var deopt = env.deopt;
+ function _main(i4, i5) {
+ i4 = i4 | 0;
+ i5 = i5 | 0;
+ deopt();
+ return i5 | 0;
+ }
+ return {'_main': _main}
+ }
+ function test() {
+ var wasm = Wasm.instantiateModuleFromAsm(
+ Module.toString(), {'deopt': deopt});
+ wasm._main(0, 0, 0);
+ }
+ test();
+})();
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698