14d6d58aff
The explicit state_ variable is used to prevent undefined behaviour by double-joining the worker thread. Bug: chromium:1276382 Change-Id: I338cfdb4a587eb57fec5a5a28b42371584c99102 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3318669 Reviewed-by: Marja Hölttä <marja@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/main@{#78300}
60 lines
1.5 KiB
JavaScript
60 lines
1.5 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: --stress-runs=1
|
|
|
|
const kBatchSize = 10;
|
|
const kNumBatches = 10;
|
|
|
|
function RunWorkerBatch(count) {
|
|
let script = `onmessage =
|
|
function(msg) {
|
|
if (msg.array) {
|
|
msg.array[0] = 99;
|
|
postMessage({array : msg.array});
|
|
}
|
|
}`;
|
|
|
|
// Launch workers.
|
|
let workers = new Array(count);
|
|
for (let i = 0; i < count; i++) {
|
|
workers[i] = new Worker(script, {type : 'string'});
|
|
}
|
|
|
|
// Send messages.
|
|
for (let i = 0; i < workers.length; i++) {
|
|
let array = new Int32Array([55, -77]);
|
|
workers[i].postMessage({array : array});
|
|
// terminate half of the workers early.
|
|
if ((i & 1) == 1) {
|
|
workers[i].terminate();
|
|
// A second terminate should have no effect.
|
|
workers[i].terminate();
|
|
}
|
|
}
|
|
|
|
// Wait for replies.
|
|
for (let i = 0; i < workers.length; i++) {
|
|
let msg = workers[i].getMessage();
|
|
if (msg !== undefined && msg.array) {
|
|
assertInstanceof(msg.array, Int32Array);
|
|
assertEquals(99, msg.array[0]);
|
|
assertEquals(-77, msg.array[1]);
|
|
}
|
|
// terminate all workers.
|
|
workers[i].terminate();
|
|
}
|
|
}
|
|
|
|
(function RunTest() {
|
|
print(`running ${kNumBatches} batches...`);
|
|
let time = performance.now();
|
|
for (let i = 0; i < kNumBatches; i++) {
|
|
let before = performance.now();
|
|
RunWorkerBatch(kBatchSize);
|
|
let time = performance.now() - before;
|
|
print(`batch ${i+1}, Δ = ${(time).toFixed(3)} ms`);
|
|
}
|
|
})();
|