summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/timeout/stack-overflow.js
blob: cf79b7d84c1489117c3e1f0179a92850d6e27643 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// |jit-test| exitstatus: 3; skip-if: !wasmIsSupported()

let { exports } = new WebAssembly.Instance(
    new WebAssembly.Module(wasmTextToBinary(`
    (module
        (func (export "f") (param i32) (param i32) (param i32) (param i32) (result i32)
            get_local 0
            i32.popcnt
            get_local 1
            i32.popcnt
            i32.add

            get_local 2
            i32.popcnt
            get_local 3
            i32.popcnt
            i32.add

            get_local 0
            get_local 1
            i32.sub

            get_local 2
            get_local 3
            i32.sub

            get_local 0
            get_local 1
            i32.mul

            get_local 2
            get_local 3
            i32.mul

            get_local 0
            get_local 2
            i32.sub

            get_local 1
            get_local 3
            i32.sub

            get_local 0
            get_local 1
            i32.add

            get_local 2
            get_local 3
            i32.add

            get_local 0
            get_local 2
            i32.add

            get_local 1
            get_local 3
            i32.add

            get_local 0
            i32.ctz
            get_local 1
            i32.ctz
            i32.add

            get_local 2
            i32.ctz
            get_local 3
            i32.ctz

            get_local 0
            get_local 1
            get_local 2
            get_local 3
            call 0

            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
            i32.add
        )
    )
    `))
);

timeout(1, function() {});
exports.f()