Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Unified Diff: test/test262/harness-agent.js

Issue 2658933004: [SAB] Test262 Agent harness (Closed)
Patch Set: skip allocation-limit and length-is-too-large-throws for SharedArrayBuffer too Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/test262/test262.isolate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/test262/harness-agent.js
diff --git a/test/test262/harness-agent.js b/test/test262/harness-agent.js
new file mode 100644
index 0000000000000000000000000000000000000000..c141fe287ae668bdf0e9556ad33d598df79957df
--- /dev/null
+++ b/test/test262/harness-agent.js
@@ -0,0 +1,106 @@
+// Copyright 2017 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.
+
+$.agent = (function () {
+
+var workers = [];
+var i32a = null;
+var pendingReports = [];
+
+// Agents call Atomics.wait on this location to sleep.
+var SLEEP_LOC = 0;
+// 1 if the started worker is ready, 0 otherwise.
+var START_LOC = 1;
+// The number of workers that have received the broadcast.
+var BROADCAST_LOC = 2;
+// Each worker has a count of outstanding reports; worker N uses memory
+// location [WORKER_REPORT_LOC + N].
+var WORKER_REPORT_LOC = 3;
+
+function workerScript(script) {
+ return `
+ var index;
+ var i32a = null;
+ var broadcasts = [];
+ var pendingReceiver = null;
+
+ function handleBroadcast() {
+ if (pendingReceiver && broadcasts.length > 0) {
+ pendingReceiver.apply(null, broadcasts.shift());
+ pendingReceiver = null;
+ }
+ };
+
+ var onmessage = function(msg) {
+ switch (msg.kind) {
+ case 'start':
+ i32a = msg.i32a;
+ index = msg.index;
+ (0, eval)(\`${script}\`);
+ break;
+
+ case 'broadcast':
+ Atomics.add(i32a, ${BROADCAST_LOC}, 1);
+ broadcasts.push([msg.sab, msg.id]);
+ handleBroadcast();
+ break;
+ }
+ };
+
+ var $ = {
+ agent: {
+ receiveBroadcast(receiver) {
+ pendingReceiver = receiver;
+ handleBroadcast();
+ },
+
+ report(msg) {
+ postMessage(msg);
+ Atomics.add(i32a, ${WORKER_REPORT_LOC} + index, 1);
+ },
+
+ sleep(s) { Atomics.wait(i32a, ${SLEEP_LOC}, 0, s); },
+
+ leaving() {}
+ }
+ };`;
+}
+
+var agent = {
+ start(script) {
+ if (i32a === null) {
+ i32a = new Int32Array(new SharedArrayBuffer(256));
+ }
+ var w = new Worker(workerScript(script));
+ w.index = workers.length;
+ w.postMessage({kind: 'start', i32a: i32a, index: w.index});
+ workers.push(w);
+ },
+
+ broadcast(sab, id) {
+ Atomics.store(i32a, BROADCAST_LOC, 0);
+
+ for (var w of workers) {
+ w.postMessage({kind: 'broadcast', sab: sab, id: id|0});
+ }
+
+ while (Atomics.load(i32a, BROADCAST_LOC) != workers.length) {}
+ },
+
+ getReport() {
+ for (var w of workers) {
+ while (Atomics.load(i32a, WORKER_REPORT_LOC + w.index) > 0) {
+ pendingReports.push(w.getMessage());
+ Atomics.sub(i32a, WORKER_REPORT_LOC + w.index, 1);
+ }
+ }
+
+ return pendingReports.shift() || null;
+ },
+
+ sleep(s) { Atomics.wait(i32a, SLEEP_LOC, 0, s); }
+};
+return agent;
+
+})();
« no previous file with comments | « no previous file | test/test262/test262.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698