-
Notifications
You must be signed in to change notification settings - Fork 57
/
simd_align.wast
355 lines (341 loc) · 11.9 KB
/
simd_align.wast
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
;; Valid alignment
(module (memory 1) (func (drop (v128.load align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load align=4 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load align=8 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load align=16 (i32.const 0)))))
(module (memory 1) (func (v128.store align=1 (i32.const 0) (v128.const i32x4 0 1 2 3))))
(module (memory 1) (func (v128.store align=2 (i32.const 0) (v128.const i32x4 0 1 2 3))))
(module (memory 1) (func (v128.store align=4 (i32.const 0) (v128.const i32x4 0 1 2 3))))
(module (memory 1) (func (v128.store align=8 (i32.const 0) (v128.const i32x4 0 1 2 3))))
(module (memory 1) (func (v128.store align=16 (i32.const 0) (v128.const i32x4 0 1 2 3))))
(module (memory 1) (func (drop (v128.load8x8_s align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load8x8_s align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load8x8_s align=4 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load8x8_s align=8 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load8x8_u align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load8x8_u align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load8x8_u align=4 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load8x8_u align=8 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16x4_s align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16x4_s align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16x4_s align=4 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16x4_s align=8 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16x4_u align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16x4_u align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16x4_u align=4 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16x4_u align=8 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32x2_s align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32x2_s align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32x2_s align=4 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32x2_s align=8 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32x2_u align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32x2_u align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32x2_u align=4 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32x2_u align=8 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load8_splat align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16_splat align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load16_splat align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32_splat align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32_splat align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load32_splat align=4 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load64_splat align=1 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load64_splat align=2 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load64_splat align=4 (i32.const 0)))))
(module (memory 1) (func (drop (v128.load64_splat align=8 (i32.const 0)))))
;; Invalid alignment
(assert_invalid
(module (memory 1) (func (drop (v128.load align=32 (i32.const 0)))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 0) (func(v128.store align=32 (i32.const 0) (v128.const i32x4 0 0 0 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load8x8_s align=16 (i32.const 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load8x8_u align=16 (i32.const 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load16x4_s align=16 (i32.const 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load16x4_u align=16 (i32.const 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load32x2_s align=16 (i32.const 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load32x2_u align=16 (i32.const 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load8_splat align=2 (i32.const 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load16_splat align=4 (i32.const 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load32_splat align=8 (i32.const 0))))
"alignment must not be larger than natural"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.load64_splat align=16 (i32.const 0))))
"alignment must not be larger than natural"
)
;; Malformed alignment
(assert_malformed
(module quote
"(memory 1) (func (drop (v128.load align=-1 (i32.const 0))))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (drop (v128.load align=0 (i32.const 0))))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (drop (v128.load align=7 (i32.const 0))))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (v128.store align=-1 (i32.const 0) (v128.const i32x4 0 0 0 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 0) (func (v128.store align=0 (i32.const 0) (v128.const i32x4 0 0 0 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 0) (func (v128.store align=7 (i32.const 0) (v128.const i32x4 0 0 0 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load8x8_s align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load8x8_s align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load8x8_s align=7 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load8x8_u align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load8x8_u align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load8x8_u align=7 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load16x4_s align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load16x4_s align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load16x4_s align=7 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load16x4_u align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load16x4_u align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load16x4_u align=7 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load32x2_s align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load32x2_s align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load32x2_s align=7 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load32x2_u align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load32x2_u align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load32x2_u align=7 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load8_splat align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load8_splat align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load16_splat align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load16_splat align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load32_splat align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load32_splat align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load32_splat align=3 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load64_splat align=-1 (i32.const 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load64_splat align=0 (i32.const 0)))"
)
"alignment must be a power of two"
)
(assert_malformed
(module quote
"(memory 1) (func (result v128) (v128.load64_splat align=7 (i32.const 0)))"
)
"alignment must be a power of two"
)
;; Test that misaligned SIMD loads/stores don't trap
(module
(memory 1 1)
(func (export "v128.load align=16") (param $address i32) (result v128)
(v128.load align=16 (local.get $address))
)
(func (export "v128.store align=16") (param $address i32) (param $value v128)
(v128.store align=16 (local.get $address) (local.get $value))
)
)
(assert_return (invoke "v128.load align=16" (i32.const 0)) (v128.const i32x4 0 0 0 0))
(assert_return (invoke "v128.load align=16" (i32.const 1)) (v128.const i32x4 0 0 0 0))
(assert_return (invoke "v128.store align=16" (i32.const 1) (v128.const i8x16 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16)))
(assert_return (invoke "v128.load align=16" (i32.const 0)) (v128.const i8x16 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15))
;; Test aligned and unaligned read/write
(module
(memory 1)
(func (export "v128_unaligned_read_and_write") (result v128)
(local v128)
(v128.store (i32.const 0) (v128.const i8x16 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15))
(v128.load (i32.const 0))
)
(func (export "v128_aligned_read_and_write") (result v128)
(local v128)
(v128.store align=2 (i32.const 0) (v128.const i16x8 0 1 2 3 4 5 6 7))
(v128.load align=2 (i32.const 0))
)
(func (export "v128_aligned_read_and_unaligned_write") (result v128)
(local v128)
(v128.store (i32.const 0) (v128.const i32x4 0 1 2 3))
(v128.load align=2 (i32.const 0))
)
(func (export "v128_unaligned_read_and_aligned_write") (result v128)
(local v128)
(v128.store align=2 (i32.const 0) (v128.const i32x4 0 1 2 3))
(v128.load (i32.const 0))
)
)
(assert_return (invoke "v128_unaligned_read_and_write") (v128.const i8x16 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15))
(assert_return (invoke "v128_aligned_read_and_write") (v128.const i16x8 0 1 2 3 4 5 6 7))
(assert_return (invoke "v128_aligned_read_and_unaligned_write") (v128.const i32x4 0 1 2 3))
(assert_return (invoke "v128_unaligned_read_and_aligned_write") (v128.const i32x4 0 1 2 3))