blob: f286997a9cf5cb1ce18499dc26b28b1a00dc5842 (
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)
local.get 0
i32.popcnt
local.get 1
i32.popcnt
i32.add
local.get 2
i32.popcnt
local.get 3
i32.popcnt
i32.add
local.get 0
local.get 1
i32.sub
local.get 2
local.get 3
i32.sub
local.get 0
local.get 1
i32.mul
local.get 2
local.get 3
i32.mul
local.get 0
local.get 2
i32.sub
local.get 1
local.get 3
i32.sub
local.get 0
local.get 1
i32.add
local.get 2
local.get 3
i32.add
local.get 0
local.get 2
i32.add
local.get 1
local.get 3
i32.add
local.get 0
i32.ctz
local.get 1
i32.ctz
i32.add
local.get 2
i32.ctz
local.get 3
i32.ctz
local.get 0
local.get 1
local.get 2
local.get 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()
|