v8/test/mjsunit/wasm/worker-interpreter.js
Maya Lekova 69fa5f794f Revert "[wasm] Share native modules compiled from the same bytes"
This reverts commit c509bb8c55.

Reason for revert: Breaks arm64 - sim - MSAN, see https://ci.chromium.org/p/v8/builders/ci/V8%20Linux%20-%20arm64%20-%20sim%20-%20MSAN/30050

Original change's description:
> [wasm] Share native modules compiled from the same bytes
> 
> Cache native modules in the wasm engine by their wire bytes. This is to
> prepare for sharing {Script} objects between multiple {WasmModuleObject}
> created from the same bytes. This also saves unnecessary compilation
> time and memory.
> 
> R=​clemensb@chromium.org
> 
> Bug: v8:6847
> Change-Id: Iad5f70efbfe3f0f134dcb851edbcec50691677e0
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1916603
> Commit-Queue: Thibaud Michaud <thibaudm@chromium.org>
> Reviewed-by: Clemens Backes <clemensb@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#65296}

TBR=clemensb@chromium.org,thibaudm@chromium.org

Change-Id: I908b0f59bce26678d0b5d7fddc986384c40b4709
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: v8:6847
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1946334
Reviewed-by: Maya Lekova <mslekova@chromium.org>
Commit-Queue: Maya Lekova <mslekova@chromium.org>
Cr-Commit-Position: refs/heads/master@{#65297}
2019-12-02 16:51:44 +00:00

63 lines
2.1 KiB
JavaScript

// Copyright 2018 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: --allow-natives-syntax --no-wasm-disable-structured-cloning
load("test/mjsunit/wasm/wasm-module-builder.js");
(function TestPostInterpretedModule() {
let builder = new WasmModuleBuilder();
let add = builder.addFunction("add", kSig_i_ii)
.addBody([kExprLocalGet, 0, kExprLocalGet, 1, kExprI32Add])
.exportFunc();
let module = builder.toModule();
let instance = new WebAssembly.Instance(module);
let exp = instance.exports;
let workerScript = `
var instance = null;
onmessage = function(message) {
try {
if (message.command == 'module') {
instance = new WebAssembly.Instance(message.module);
postMessage('OK');
}
if (message.command == 'call') {
let result = instance.exports.add(40, 2);
postMessage(result);
}
} catch(e) {
postMessage('ERROR: ' + e);
}
}
`;
let worker = new Worker(workerScript, {type: 'string'});
// Call method without using the interpreter.
var initial_interpreted = %WasmNumInterpretedCalls(instance);
assertEquals(23, exp.add(20, 3));
assertEquals(initial_interpreted + 0, %WasmNumInterpretedCalls(instance));
// Send module to the worker, still not interpreting.
worker.postMessage({ command:'module', module:module });
assertEquals('OK', worker.getMessage());
worker.postMessage({ command:'call' });
assertEquals(42, worker.getMessage());
assertEquals(initial_interpreted + 0, %WasmNumInterpretedCalls(instance));
// Switch to the interpreter and call method.
%RedirectToWasmInterpreter(instance, add.index);
assertEquals(23, exp.add(20, 3));
assertEquals(initial_interpreted + 1, %WasmNumInterpretedCalls(instance));
// Let worker call interpreted function.
worker.postMessage({ command:'call' });
assertEquals(42, worker.getMessage());
assertEquals(initial_interpreted + 1, %WasmNumInterpretedCalls(instance));
// All done.
worker.terminate();
})();