summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/heap-analysis/byteSize-of-scripts.js
blob: c35e07ef2df6e77ba1a5a12c61ec345042eeee29 (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
// Check JS::ubi::Node::size results for scripts. We don't attempt to check
// exact sizes in this test (deemed to difficult and non-deterministic), just
// some sanity checks.

function f1() {
  return 42;
}

print("byteSizeOfScript(f1) = " + byteSizeOfScript(f1));
assertEq(byteSizeOfScript(f1) > 1, true);

function f2(n) {
  var obj = {
    x: 1,
    y: 2,
    z: 3,
  };

  if (i % 2 == 0) {
    for (var i = 0; i < n; i++) {
      (function() {
        this.x += i;
        print(String(i));
        obj[i] = i * i;
        if (i > 10) {
          f2(i / f1());
        }
      })();
    }
  }

  if (i % 3 == 0) {
    for (var i = 0; i < n; i++) {
      (function() {
        this.x *= i;
        print(String(i));
        obj[i] = i * i;
        if (i > 10) {
          f2(i / f1());
        }
      })();
    }
  }

  return this.x;
}

print("byteSizeOfScript(f2) = " + byteSizeOfScript(f2));
assertEq(byteSizeOfScript(f2) > 1, true);
assertEq(byteSizeOfScript(f2) > byteSizeOfScript(f1), true);