f71ccd7a2b
This fixes a corner-case where a {WasmExportedFunction} that represents a re-export of a JavaScript callable from another module was identified correctly, but not all corner-cases were correctly covered. Concretely we failed to check for function signatures incompatible with JavaScript. R=ahaas@chromium.org TEST=mjsunit/regress/wasm/regress-9447 BUG=v8:9447 Change-Id: Ia6c73c82f4c1b9c357c08cde039be6af100727d6 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1690941 Commit-Queue: Michael Starzinger <mstarzinger@chromium.org> Reviewed-by: Andreas Haas <ahaas@chromium.org> Cr-Commit-Position: refs/heads/master@{#62632}
38 lines
1.4 KiB
JavaScript
38 lines
1.4 KiB
JavaScript
// Copyright 2019 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: --no-experimental-wasm-bigint
|
|
|
|
load('test/mjsunit/wasm/wasm-module-builder.js');
|
|
|
|
// Generate a re-exported function that wraps a JavaScript callable, but with a
|
|
// function signature that is incompatible (i.e. i64 return type) with JS.
|
|
var fun1 = (function GenerateFun1() {
|
|
let builder = new WasmModuleBuilder();
|
|
function fun() { return 0 }
|
|
let fun_index = builder.addImport("m", "fun", kSig_l_v)
|
|
builder.addExport("fun", fun_index);
|
|
let instance = builder.instantiate({ m: { fun: fun }});
|
|
return instance.exports.fun;
|
|
})();
|
|
|
|
// Generate an exported function that calls the above re-export from another
|
|
// module, still with a function signature that is incompatible with JS.
|
|
var fun2 = (function GenerateFun2() {
|
|
let builder = new WasmModuleBuilder();
|
|
let fun_index = builder.addImport("m", "fun", kSig_l_v)
|
|
builder.addFunction('main', kSig_v_v)
|
|
.addBody([
|
|
kExprCallFunction, fun_index,
|
|
kExprDrop
|
|
])
|
|
.exportFunc();
|
|
let instance = builder.instantiate({ m: { fun: fun1 }});
|
|
return instance.exports.main;
|
|
})();
|
|
|
|
// Both exported functions should throw, no matter how often they get wrapped.
|
|
assertThrows(fun1, TypeError, /wasm function signature contains illegal type/);
|
|
assertThrows(fun2, TypeError, /wasm function signature contains illegal type/);
|