2019-07-17 12:43:54 +00:00
|
|
|
// 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.
|
|
|
|
|
2019-09-09 10:19:34 +00:00
|
|
|
// Flags: --experimental-wasm-threads --expose-gc
|
2019-07-17 12:43:54 +00:00
|
|
|
|
2019-09-09 10:19:34 +00:00
|
|
|
const kNumMessages = 1000;
|
2019-07-17 12:43:54 +00:00
|
|
|
|
|
|
|
function AllocMemory(pages = 1, max = pages) {
|
|
|
|
return new WebAssembly.Memory({initial : pages, maximum : max, shared : true});
|
|
|
|
}
|
|
|
|
|
|
|
|
(function RunTest() {
|
2021-01-25 12:19:05 +00:00
|
|
|
function workerCode() {
|
|
|
|
onmessage =
|
|
|
|
function(msg) {
|
|
|
|
if (msg.memory) postMessage({memory : msg.memory});
|
|
|
|
gc();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-26 21:22:37 +00:00
|
|
|
let worker = new Worker(workerCode, {type: 'function'});
|
2019-07-17 12:43:54 +00:00
|
|
|
|
|
|
|
let time = performance.now();
|
|
|
|
|
|
|
|
for (let i = 0; i < kNumMessages; i++) {
|
|
|
|
let now = performance.now();
|
|
|
|
print(`iteration ${i}, Δ = ${(now - time).toFixed(3)} ms`);
|
|
|
|
time = now;
|
|
|
|
|
|
|
|
let memory = AllocMemory();
|
|
|
|
worker.postMessage({memory : memory});
|
|
|
|
let msg = worker.getMessage();
|
|
|
|
if (msg.memory) {
|
|
|
|
assertInstanceof(msg.memory, WebAssembly.Memory);
|
|
|
|
}
|
2019-09-09 10:19:34 +00:00
|
|
|
gc();
|
2019-07-17 12:43:54 +00:00
|
|
|
}
|
|
|
|
})();
|