blob: 58371a62af05263f28b5f8e9365478134fa82ea6 (
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
(module
(type $none_=>_none (func))
(type $none_=>_i32 (func (result i32)))
(import "env" "memory" (memory $importedMemory 1 1))
(memory $memory1 1 500)
(memory $memory2 1 800)
(memory $memory3 1 400)
(data (i32.const 0) "abcd")
(func $memory.fill (type $none_=>_none)
(memory.fill $memory2
(i32.const 0)
(i32.const 1)
(i32.const 2)
)
)
(func $memory.copy (type $none_=>_none)
(memory.copy $memory2 $memory3
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $memory.init (type $none_=>_none)
(memory.init $memory1 0
(i32.const 0)
(i32.const 0)
(i32.const 45)
)
)
(func $memory.grow (type $none_=>_i32) (result i32)
(memory.grow $memory3
(i32.const 10)
)
)
(func $memory.size (type $none_=>_i32) (result i32)
(memory.size $memory3)
)
(func $loads (type $none_=>_none)
(drop
(i32.load $memory1
(i32.const 12)
)
)
(drop
(i32.load $memory3
(i32.const 12)
)
)
(drop
(i32.load16_s $memory2
(i32.const 12)
)
)
(drop
(i32.load16_s $memory2
(i32.const 12)
)
)
(drop
(i32.load8_s $memory3
(i32.const 12)
)
)
(drop
(i32.load8_s $memory3
(i32.const 12)
)
)
(drop
(i32.load16_u $memory1
(i32.const 12)
)
)
(drop
(i32.load16_u $memory1
(i32.const 12)
)
)
(drop
(i32.load8_u $memory2
(i32.const 12)
)
)
(drop
(i32.load8_u $memory2
(i32.const 12)
)
)
)
(func $stores (type $none_=>_none)
(i32.store $memory1
(i32.const 12)
(i32.const 115)
)
(i32.store $memory1
(i32.const 12)
(i32.const 115)
)
(i32.store16 $memory2
(i32.const 20)
(i32.const 31353)
)
(i32.store16 $importedMemory
(i32.const 20)
(i32.const 31353)
)
(i32.store8 $memory3
(i32.const 23)
(i32.const 120)
)
(i32.store8 $memory3
(i32.const 23)
(i32.const 120)
)
)
)
|