summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/min-max-foldsTo-1.js
blob: accc6ea4167eb120c43356fe30487dd9171ec839 (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
with ({}); // Don't inline anything into the top-level script.

function args() { return arguments; }

for (let xs of [
  // Array
  [[], [1, 2, 3]],

  // String
  ["", "asdf"],

  // ArrayBufferView
  [new Int32Array(0), new Int32Array(10)],

  // Arguments
  [args(), args(1, 2, 3)],
]) {
  for (let cst of [0, -1]) {
    // Fold `Math.min(length ≥ 0, constant ≤ 0)` to `constant`.
    let min = Function("x", `return Math.min(x.length, ${cst})`);
    for (let i = 0; i < 100; ++i) {
      let x = xs[i & 1];
      assertEq(min(x), cst);
    }

    // Reverse operands.
    min = Function("x", `return Math.min(${cst}, x.length)`);
    for (let i = 0; i < 100; ++i) {
      let x = xs[i & 1];
      assertEq(min(x), cst);
    }

    // Fold `Math.max(length ≥ 0, constant ≤ 0)` to `length`.
    let max = Function("x", `return Math.max(x.length, ${cst})`);
    for (let i = 0; i < 100; ++i) {
      let x = xs[i & 1];
      assertEq(max(x), x.length);
    }

    // Reverse operands.
    max = Function("x", `return Math.max(${cst}, x.length)`);
    for (let i = 0; i < 100; ++i) {
      let x = xs[i & 1];
      assertEq(max(x), x.length);
    }
  }
}