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/regress/wasm/regress-5860.js

Issue 2653533003: [wasm] Do not patch memory references in imported functions. (Closed)
Patch Set: ]This patch should apply Created 3 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 | « src/wasm/wasm-objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/wasm/regress-5860.js
diff --git a/test/mjsunit/regress/wasm/regress-5860.js b/test/mjsunit/regress/wasm/regress-5860.js
new file mode 100644
index 0000000000000000000000000000000000000000..b193323dd137c3fea7427cfdb839e2f59700415a
--- /dev/null
+++ b/test/mjsunit/regress/wasm/regress-5860.js
@@ -0,0 +1,30 @@
+// Copyright 2017 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
+
+load('test/mjsunit/wasm/wasm-constants.js');
+load('test/mjsunit/wasm/wasm-module-builder.js');
+
+let module1 = (() => {
+ let builder = new WasmModuleBuilder();
+ builder.addMemory(1, 1);
+ builder.addFunction('load', kSig_i_i)
+ .addBody([kExprI32Const, 0, kExprI32LoadMem, 0, 0])
+ .exportAs('load');
+ return new WebAssembly.Module(builder.toBuffer());
+})();
+
+let module2 = (() => {
+ let builder = new WasmModuleBuilder();
+ builder.addMemory(1, 1);
+ builder.addImport('A', 'load', kSig_i_i);
+ builder.addExportOfKind('load', kExternalFunction, 0);
+ return new WebAssembly.Module(builder.toBuffer());
+})();
+
+let instance1 = new WebAssembly.Instance(module1);
+let instance2 = new WebAssembly.Instance(module2, {A: instance1.exports});
+
+assertEquals(0, instance2.exports.load());
« no previous file with comments | « src/wasm/wasm-objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698