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
|
(module
(import "env" "memory" (memory $0 1))
(table 0 funcref)
(data (i32.const 4) "\10\04\00\00")
(export "test_udiv_2" (func $test_udiv_2))
(export "test_udiv_5" (func $test_udiv_5))
(export "test_sdiv_2" (func $test_sdiv_2))
(export "test_sdiv_5" (func $test_sdiv_5))
(export "test_urem_2" (func $test_urem_2))
(export "test_urem_5" (func $test_urem_5))
(export "test_srem_2" (func $test_srem_2))
(export "test_srem_5" (func $test_srem_5))
(export "stackSave" (func $stackSave))
(export "stackAlloc" (func $stackAlloc))
(export "stackRestore" (func $stackRestore))
(func $test_udiv_2 (; 0 ;) (param $0 i32) (result i32)
(i32.shr_u
(local.get $0)
(i32.const 1)
)
)
(func $test_udiv_5 (; 1 ;) (param $0 i32) (result i32)
(i32.div_u
(local.get $0)
(i32.const 5)
)
)
(func $test_sdiv_2 (; 2 ;) (param $0 i32) (result i32)
(i32.div_s
(local.get $0)
(i32.const 2)
)
)
(func $test_sdiv_5 (; 3 ;) (param $0 i32) (result i32)
(i32.div_s
(local.get $0)
(i32.const 5)
)
)
(func $test_urem_2 (; 4 ;) (param $0 i32) (result i32)
(i32.and
(local.get $0)
(i32.const 1)
)
)
(func $test_urem_5 (; 5 ;) (param $0 i32) (result i32)
(i32.rem_u
(local.get $0)
(i32.const 5)
)
)
(func $test_srem_2 (; 6 ;) (param $0 i32) (result i32)
(i32.rem_s
(local.get $0)
(i32.const 2)
)
)
(func $test_srem_5 (; 7 ;) (param $0 i32) (result i32)
(i32.rem_s
(local.get $0)
(i32.const 5)
)
)
(func $stackSave (; 8 ;) (result i32)
(i32.load offset=4
(i32.const 0)
)
)
(func $stackAlloc (; 9 ;) (param $0 i32) (result i32)
(local $1 i32)
(i32.store offset=4
(i32.const 0)
(local.tee $1
(i32.and
(i32.sub
(i32.load offset=4
(i32.const 0)
)
(local.get $0)
)
(i32.const -16)
)
)
)
(local.get $1)
)
(func $stackRestore (; 10 ;) (param $0 i32)
(i32.store offset=4
(i32.const 0)
(local.get $0)
)
)
)
;; METADATA: { "asmConsts": {},"staticBump": 1040, "initializers": [], "declares": [], "externs": [], "implementedFunctions": ["_test_udiv_2","_test_udiv_5","_test_sdiv_2","_test_sdiv_5","_test_urem_2","_test_urem_5","_test_srem_2","_test_srem_5","_stackSave","_stackAlloc","_stackRestore"], "exports": ["test_udiv_2","test_udiv_5","test_sdiv_2","test_sdiv_5","test_urem_2","test_urem_5","test_srem_2","test_srem_5","stackSave","stackAlloc","stackRestore"], "invokeFuncs": [] }
|