2018-03-16 20:41:59 +01:00
|
|
|
// Copyright (C) 2018 Amal Hussein. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-atomics.wait
|
|
|
|
description: >
|
|
|
|
Undefined timeout arg should result in an infinite timeout
|
|
|
|
info: |
|
|
|
|
Atomics.wait( typedArray, index, value, timeout )
|
|
|
|
|
|
|
|
4.Let q be ? ToNumber(timeout).
|
|
|
|
...
|
2018-04-04 20:57:56 +02:00
|
|
|
Undefined Return NaN.
|
2018-03-16 20:41:59 +01:00
|
|
|
5.If q is NaN, let t be +∞, else let t be max(q, 0)
|
2018-05-21 20:23:15 +02:00
|
|
|
|
|
|
|
includes: [atomicsHelper.js]
|
2018-04-19 16:11:50 +02:00
|
|
|
features: [Atomics, SharedArrayBuffer, TypedArray]
|
2018-03-16 20:41:59 +01:00
|
|
|
---*/
|
|
|
|
|
2018-06-27 17:13:23 +02:00
|
|
|
const WAIT_INDEX = 0; // Index all agents are waiting on
|
|
|
|
const RUNNING = 1;
|
|
|
|
const NUMAGENT = 2; // Total number of agents started
|
|
|
|
const WAKECOUNT = 2; // Total number of agents to wake up
|
2018-03-16 20:41:59 +01:00
|
|
|
|
2018-04-25 23:29:53 +02:00
|
|
|
$262.agent.start(`
|
2018-05-21 20:23:15 +02:00
|
|
|
$262.agent.receiveBroadcast(function(sab) {
|
|
|
|
var i32a = new Int32Array(sab);
|
2018-06-27 17:13:23 +02:00
|
|
|
// undefined => NaN => +Infinity
|
|
|
|
Atomics.add(i32a, ${RUNNING}, 1);
|
|
|
|
$262.agent.report("A " + Atomics.wait(i32a, 0, 0, undefined));
|
2018-05-21 20:23:15 +02:00
|
|
|
$262.agent.leaving();
|
|
|
|
});
|
2018-03-16 20:41:59 +01:00
|
|
|
`);
|
|
|
|
|
2018-06-25 21:17:45 +02:00
|
|
|
$262.agent.start(`
|
2018-05-21 20:23:15 +02:00
|
|
|
$262.agent.receiveBroadcast(function(sab) {
|
|
|
|
var i32a = new Int32Array(sab);
|
2018-06-27 17:13:23 +02:00
|
|
|
// undefined timeout arg => NaN => +Infinity
|
|
|
|
Atomics.add(i32a, ${RUNNING}, 1);
|
|
|
|
$262.agent.report("B " + Atomics.wait(i32a, 0, 0));
|
2018-05-21 20:23:15 +02:00
|
|
|
$262.agent.leaving();
|
|
|
|
});
|
2018-03-16 20:41:59 +01:00
|
|
|
`);
|
|
|
|
|
2018-05-21 20:23:15 +02:00
|
|
|
const i32a = new Int32Array(
|
2018-06-25 21:17:45 +02:00
|
|
|
new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 4)
|
2018-05-21 20:23:15 +02:00
|
|
|
);
|
2018-03-16 20:41:59 +01:00
|
|
|
|
2018-04-25 23:29:53 +02:00
|
|
|
$262.agent.broadcast(i32a.buffer);
|
2018-06-27 17:13:23 +02:00
|
|
|
$262.agent.waitUntil(i32a, RUNNING, NUMAGENT);
|
2018-03-16 20:41:59 +01:00
|
|
|
|
2018-06-27 17:13:23 +02:00
|
|
|
assert.sameValue(Atomics.wake(i32a, WAIT_INDEX, WAKECOUNT), WAKECOUNT);
|
2018-03-16 20:41:59 +01:00
|
|
|
|
2018-06-27 17:13:23 +02:00
|
|
|
const reports = [];
|
2018-03-16 20:41:59 +01:00
|
|
|
for (var i = 0; i < NUMAGENT; i++) {
|
2018-06-27 17:13:23 +02:00
|
|
|
reports.push($262.agent.getReport());
|
2018-03-16 20:41:59 +01:00
|
|
|
}
|
2018-06-27 17:13:23 +02:00
|
|
|
reports.sort();
|
2018-03-16 20:41:59 +01:00
|
|
|
|
2018-06-27 17:13:23 +02:00
|
|
|
assert.sameValue(reports[0], 'A ok');
|
|
|
|
assert.sameValue(reports[1], 'B ok');
|