-
-
Notifications
You must be signed in to change notification settings - Fork 670
/
Copy pathclass.optimized.wat
166 lines (166 loc) · 2.94 KB
/
class.optimized.wat
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
(module
(type $none_=>_none (func))
(type $i32_=>_i32 (func (param i32) (result i32)))
(type $i32_i32_=>_i32 (func (param i32 i32) (result i32)))
(memory $0 1)
(data (i32.const 1024) "\1c\00\00\00\01\00\00\00\01\00\00\00\1c\00\00\00I\00n\00v\00a\00l\00i\00d\00 \00l\00e\00n\00g\00t\00h")
(data (i32.const 1072) "\1a\00\00\00\01\00\00\00\01\00\00\00\1a\00\00\00~\00l\00i\00b\00/\00a\00r\00r\00a\00y\00.\00t\00s")
(global $~lib/rt/stub/offset (mut i32) (i32.const 0))
(export "memory" (memory $0))
(export "test" (func $class/test))
(export "testGenericInitializer" (func $class/testGenericInitializer))
(start $~start)
(func $class/test (param $0 i32) (result i32)
local.get $0
i32.load
drop
local.get $0
i32.load16_s offset=4
drop
local.get $0
i32.load8_s offset=6
drop
local.get $0
i32.const 1
i32.store
local.get $0
i32.const 2
i32.store16 offset=4
local.get $0
i32.const 3
i32.store8 offset=6
local.get $0
)
(func $~lib/rt/stub/__alloc (param $0 i32) (param $1 i32) (result i32)
(local $2 i32)
(local $3 i32)
(local $4 i32)
(local $5 i32)
(local $6 i32)
local.get $0
i32.const 1073741808
i32.gt_u
if
unreachable
end
global.get $~lib/rt/stub/offset
i32.const 16
i32.add
local.tee $4
local.get $0
i32.const 15
i32.add
i32.const -16
i32.and
local.tee $2
i32.const 16
local.get $2
i32.const 16
i32.gt_u
select
local.tee $6
i32.add
local.tee $2
memory.size
local.tee $5
i32.const 16
i32.shl
local.tee $3
i32.gt_u
if
local.get $5
local.get $2
local.get $3
i32.sub
i32.const 65535
i32.add
i32.const -65536
i32.and
i32.const 16
i32.shr_u
local.tee $3
local.get $5
local.get $3
i32.gt_s
select
memory.grow
i32.const 0
i32.lt_s
if
local.get $3
memory.grow
i32.const 0
i32.lt_s
if
unreachable
end
end
end
local.get $2
global.set $~lib/rt/stub/offset
local.get $4
i32.const 16
i32.sub
local.tee $2
local.get $6
i32.store
local.get $2
i32.const 1
i32.store offset=4
local.get $2
local.get $1
i32.store offset=8
local.get $2
local.get $0
i32.store offset=12
local.get $4
)
(func $class/testGenericInitializer
(local $0 i32)
(local $1 i32)
(local $2 i32)
i32.const 4
i32.const 4
call $~lib/rt/stub/__alloc
i32.const 16
i32.const 5
call $~lib/rt/stub/__alloc
local.tee $0
i32.const 0
i32.store
local.get $0
i32.const 0
i32.store offset=4
local.get $0
i32.const 0
i32.store offset=8
local.get $0
i32.const 0
i32.store offset=12
i32.const 0
i32.const 0
call $~lib/rt/stub/__alloc
local.set $1
local.get $0
i32.load
drop
local.get $0
local.get $1
i32.store
local.get $0
local.get $1
i32.store offset=4
local.get $0
i32.const 0
i32.store offset=8
local.get $0
i32.const 0
i32.store offset=12
local.get $0
i32.store
)
(func $~start
i32.const 1120
global.set $~lib/rt/stub/offset
)
)