summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Atomics/wait/good-views.js
blob: 67e4da6314ef268bf9a0d3bc8227e568b8288aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// |reftest| skip-if(!this.hasOwnProperty('Atomics')) -- Atomics is not enabled unconditionally
// Copyright (C) 2017 Mozilla Corporation.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-atomics.wait
description: >
  Test Atomics.wait on arrays that allow atomic operations,
  in an Agent that is allowed to wait.
includes: [atomicsHelper.js]
features: [Atomics]
---*/

// Let's assume 'wait' is not allowed on the main thread,
// even in the shell.

$262.agent.start(`
  var sab = new SharedArrayBuffer(1024);
  var ab = new ArrayBuffer(16);

  var good_indices = [ (view) => 0/-1, // -0
                       (view) => '-0',
                       (view) => view.length - 1,
                       (view) => ({ valueOf: () => 0 }),
                       (view) => ({ toString: () => '0', valueOf: false }) // non-callable valueOf triggers invocation of toString
                     ];

  var view = new Int32Array(sab, 32, 20);

  view[0] = 0;
  $262.agent.report("A " + Atomics.wait(view, 0, 0, 0))
  $262.agent.report("B " + Atomics.wait(view, 0, 37, 0));

  // In-bounds boundary cases for indexing
  for ( let IdxGen of good_indices ) {
      let Idx = IdxGen(view);
      view.fill(0);
      // Atomics.store() computes an index from Idx in the same way as other
      // Atomics operations, not quite like view[Idx].
      Atomics.store(view, Idx, 37);
      $262.agent.report("C " + Atomics.wait(view, Idx, 0));
  }

  $262.agent.report("done");
  $262.agent.leaving();
`);

assert.sameValue(
  $262.agent.getReport(),
  'A timed-out',
  '$262.agent.getReport() returns "A timed-out"'
);

assert.sameValue(
  $262.agent.getReport(),
  'B not-equal',
  '$262.agent.getReport() returns "B not-equal"'
);

var r;
while ((r = $262.agent.getReport()) !== "done") {
  assert.sameValue(
    r,
    'C not-equal',
    '$262.agent.getReport() returns "C not-equal"'
  );
}

reportCompare(0, 0);