a345a442d3
- Add d8.file.read() and d8.file.execute() helpers - Change tools and tests to use new d8.file helper - Unify error throwing in v8::Shell::ReadFile Change-Id: I5ef4cb27f217508a367106f01e872a4059d5e399 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2928505 Commit-Queue: Camillo Bruni <cbruni@chromium.org> Reviewed-by: Maya Lekova <mslekova@chromium.org> Reviewed-by: Marja Hölttä <marja@chromium.org> Cr-Commit-Position: refs/heads/master@{#74883}
47 lines
1.6 KiB
JavaScript
47 lines
1.6 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.
|
|
|
|
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
function createExport(fun) {
|
|
let builder = new WasmModuleBuilder();
|
|
let fun_index = builder.addImport("m", "fun", kSig_i_v)
|
|
builder.addExport("fun", fun_index);
|
|
let instance = builder.instantiate({ m: { fun: fun }});
|
|
return instance.exports.fun;
|
|
}
|
|
|
|
// Test that re-exporting a generic JavaScript function changes identity, as
|
|
// the resulting export is an instance of {WebAssembly.Function} instead.
|
|
(function TestReExportOfJS() {
|
|
print(arguments.callee.name);
|
|
function fun() { return 7 }
|
|
let exported = createExport(fun);
|
|
assertNotSame(exported, fun);
|
|
assertEquals(7, exported());
|
|
assertEquals(7, fun());
|
|
})();
|
|
|
|
// Test that re-exporting and existing {WebAssembly.Function} that represents
|
|
// regular WebAssembly functions preserves identity.
|
|
(function TestReReExportOfWasm() {
|
|
print(arguments.callee.name);
|
|
let builder = new WasmModuleBuilder();
|
|
builder.addFunction('fun', kSig_i_v).addBody([kExprI32Const, 9]).exportFunc();
|
|
let fun = builder.instantiate().exports.fun;
|
|
let exported = createExport(fun);
|
|
assertSame(exported, fun);
|
|
assertEquals(9, fun());
|
|
})();
|
|
|
|
// Test that re-exporting and existing {WebAssembly.Function} that represents
|
|
// generic JavaScript functions preserves identity.
|
|
(function TestReReExportOfJS() {
|
|
print(arguments.callee.name);
|
|
let fun = createExport(() => 11)
|
|
let exported = createExport(fun);
|
|
assertSame(exported, fun);
|
|
assertEquals(11, fun());
|
|
})();
|