6dfa47b6b4
The opcodes were renamed long ago, but the macros were still using the old syntax. This CL was created using the following script (for WASM_GET_GLOBAL and WASM_SET_GLOBAL): ag -l WASM_GET_GLOBAL | xargs -L 1 sed -i 's/\bWASM_GET_GLOBAL\b/WASM_GLOBAL_GET/g' R=ahaas@chromium.org Bug: v8:11074 Change-Id: I3a9bd64f6e09ce97dae6d4132c224350dc079c0f Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2597576 Commit-Queue: Clemens Backes <clemensb@chromium.org> Reviewed-by: Andreas Haas <ahaas@chromium.org> Cr-Commit-Position: refs/heads/master@{#71836}
106 lines
3.4 KiB
C++
106 lines
3.4 KiB
C++
// 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.
|
|
|
|
#include "test/wasm-api-tests/wasm-api-test.h"
|
|
|
|
#include <mutex>
|
|
#include <thread>
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
namespace wasm {
|
|
|
|
using ::wasm::Shared;
|
|
|
|
namespace {
|
|
|
|
const int kNumThreads = 10;
|
|
const int kIterationsPerThread = 3;
|
|
int g_traces;
|
|
|
|
own<Trap> Callback(void* env, const Val args[], Val results[]) {
|
|
std::lock_guard<std::mutex> lock(*reinterpret_cast<std::mutex*>(env));
|
|
g_traces += args[0].i32();
|
|
return nullptr;
|
|
}
|
|
|
|
void Main(Engine* engine, Shared<Module>* shared, std::mutex* mutex, int id) {
|
|
own<Store> store = Store::make(engine);
|
|
own<Module> module = Module::obtain(store.get(), shared);
|
|
EXPECT_NE(nullptr, module.get());
|
|
for (int i = 0; i < kIterationsPerThread; i++) {
|
|
std::this_thread::sleep_for(std::chrono::microseconds(100));
|
|
|
|
// Create imports.
|
|
own<FuncType> func_type =
|
|
FuncType::make(ownvec<ValType>::make(ValType::make(::wasm::I32)),
|
|
ownvec<ValType>::make());
|
|
own<Func> func = Func::make(store.get(), func_type.get(), Callback, mutex);
|
|
own<::wasm::GlobalType> global_type =
|
|
::wasm::GlobalType::make(ValType::make(::wasm::I32), ::wasm::CONST);
|
|
own<Global> global =
|
|
Global::make(store.get(), global_type.get(), Val::i32(id));
|
|
|
|
// Instantiate and run.
|
|
// With the current implementation of the WasmModuleBuilder, global
|
|
// imports always come before function imports, regardless of the
|
|
// order of builder()->Add*Import() calls below.
|
|
Extern* imports[] = {global.get(), func.get()};
|
|
own<Instance> instance = Instance::make(store.get(), module.get(), imports);
|
|
ownvec<Extern> exports = instance->exports();
|
|
Func* run_func = exports[0]->func();
|
|
run_func->call();
|
|
}
|
|
}
|
|
|
|
} // namespace
|
|
|
|
TEST_F(WasmCapiTest, Threads) {
|
|
// Create module.
|
|
ValueType i32_type[] = {kWasmI32};
|
|
FunctionSig param_i32(0, 1, i32_type);
|
|
uint32_t callback_index =
|
|
builder()->AddImport(CStrVector("callback"), ¶m_i32);
|
|
uint32_t global_index =
|
|
builder()->AddGlobalImport(CStrVector("id"), kWasmI32, false);
|
|
|
|
byte code[] = {
|
|
WASM_CALL_FUNCTION(callback_index, WASM_GLOBAL_GET(global_index))};
|
|
FunctionSig empty_sig(0, 0, nullptr);
|
|
AddExportedFunction(CStrVector("run"), code, sizeof(code), &empty_sig);
|
|
Compile();
|
|
own<Shared<Module>> shared = module()->share();
|
|
|
|
// Spawn threads.
|
|
g_traces = 0;
|
|
std::mutex mutex;
|
|
std::thread threads[kNumThreads];
|
|
for (int i = 0; i < kNumThreads; i++) {
|
|
threads[i] = std::thread(Main, engine(), shared.get(), &mutex, i);
|
|
}
|
|
for (int i = 0; i < kNumThreads; i++) {
|
|
threads[i].join();
|
|
}
|
|
// Each thread in each iteration adds its ID to {traces}, so in the end
|
|
// we expect kIterationsPerThread * sum([0, ..., kNumThreads-1]).
|
|
// Per Gauss:
|
|
const int kExpected =
|
|
kIterationsPerThread * (kNumThreads - 1) * kNumThreads / 2;
|
|
EXPECT_EQ(kExpected, g_traces);
|
|
}
|
|
|
|
TEST_F(WasmCapiTest, MultiStoresOneThread) {
|
|
// These Stores intentionally have overlapping, but non-nested lifetimes.
|
|
own<Store> store1 = Store::make(engine());
|
|
own<Store> store2 = Store::make(engine());
|
|
own<Store> store3 = Store::make(engine());
|
|
store1.reset();
|
|
store2.reset();
|
|
store3.reset();
|
|
}
|
|
|
|
} // namespace wasm
|
|
} // namespace internal
|
|
} // namespace v8
|