summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/cacheir/typedarray-non-int32-index-get.js
blob: 5499c26152c206e321efc77ddf4762f0f7fe4ff7 (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
function get(k) {
  // Different typed array types to ensure we emit a GetProp IC.
  var xs = [
    new Int32Array(10),
    new Int16Array(10),
  ];

  // Doesn't read values from the prototype chain.
  Object.prototype[k] = 1;

  for (var i = 0; i < 100; ++i) {
    var x = xs[i & 1];
    assertEq(x[k], undefined);
  }
}

// Make sure we use a distinct function for each test.
function test(fn) {
  return Function(`return ${fn};`)();
}

// Negative numbers values aren't int32 indices.
test(get)(-1);
test(get)(-2147483648);
test(get)(-2147483649);

// Int32 indices must be less-or-equal to max-int32.
test(get)(2147483648);

// Int32 indices must not have fractional parts.
test(get)(1.5);
test(get)(-1.5);

// Non-finite numbers aren't int32 indices.
test(get)(NaN);
test(get)(-Infinity);
test(get)(Infinity);