-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsimd_store.wast
166 lines (150 loc) · 5.11 KB
/
simd_store.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
;; v128.store operater with normal argument (e.g. (i8x16, i16x8, i32x4, f32x4))
(module
(memory 1)
(func (export "v128.store_i8x16") (result 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.store_i16x8") (result v128)
(v128.store (i32.const 0) (v128.const i16x8 0 1 2 3 4 5 6 7))
(v128.load (i32.const 0))
)
(func (export "v128.store_i16x8_2") (result v128)
(v128.store (i32.const 0) (v128.const i16x8 012_345 012_345 012_345 012_345 012_345 012_345 012_345 012_345))
(v128.load (i32.const 0))
)
(func (export "v128.store_i16x8_3") (result v128)
(v128.store (i32.const 0) (v128.const i16x8 0x0_1234 0x0_1234 0x0_1234 0x0_1234 0x0_1234 0x0_1234 0x0_1234 0x0_1234))
(v128.load (i32.const 0))
)
(func (export "v128.store_i32x4") (result v128)
(v128.store (i32.const 0) (v128.const i32x4 0 1 2 3))
(v128.load (i32.const 0))
)
(func (export "v128.store_i32x4_2") (result v128)
(v128.store (i32.const 0) (v128.const i32x4 0_123_456_789 0_123_456_789 0_123_456_789 0_123_456_789))
(v128.load (i32.const 0))
)
(func (export "v128.store_i32x4_3") (result v128)
(v128.store (i32.const 0) (v128.const i32x4 0x0_1234_5678 0x0_1234_5678 0x0_1234_5678 0x0_1234_5678))
(v128.load (i32.const 0))
)
(func (export "v128.store_f32x4") (result v128)
(v128.store (i32.const 0) (v128.const f32x4 0 1 2 3))
(v128.load (i32.const 0))
)
)
(assert_return (invoke "v128.store_i8x16") (v128.const i8x16 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15))
(assert_return (invoke "v128.store_i16x8") (v128.const i16x8 0 1 2 3 4 5 6 7))
(assert_return (invoke "v128.store_i16x8_2") (v128.const i16x8 12345 12345 12345 12345 12345 12345 12345 12345))
(assert_return (invoke "v128.store_i16x8_3") (v128.const i16x8 0x1234 0x1234 0x1234 0x1234 0x1234 0x1234 0x1234 0x1234))
(assert_return (invoke "v128.store_i32x4") (v128.const i32x4 0 1 2 3))
(assert_return (invoke "v128.store_i32x4_2") (v128.const i32x4 123456789 123456789 123456789 123456789))
(assert_return (invoke "v128.store_i32x4_3") (v128.const i32x4 0x12345678 0x12345678 0x12345678 0x12345678))
(assert_return (invoke "v128.store_f32x4") (v128.const f32x4 0 1 2 3))
;; v128.store operator as the argument of control constructs and instructions
(module
(memory 1)
(func (export "as-block-value")
(block (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0)))
)
(func (export "as-loop-value")
(loop (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0)))
)
(func (export "as-br-value")
(block (br 0 (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0))))
)
(func (export "as-br_if-value")
(block
(br_if 0 (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0)) (i32.const 1))
)
)
(func (export "as-br_if-value-cond")
(block
(br_if 0 (i32.const 6) (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0)))
)
)
(func (export "as-br_table-value")
(block
(br_table 0 (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0)) (i32.const 1))
)
)
(func (export "as-return-value")
(return (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0)))
)
(func (export "as-if-then")
(if (i32.const 1) (then (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0))))
)
(func (export "as-if-else")
(if (i32.const 0) (then) (else (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0))))
)
)
(assert_return (invoke "as-block-value"))
(assert_return (invoke "as-loop-value"))
(assert_return (invoke "as-br-value"))
(assert_return (invoke "as-br_if-value"))
(assert_return (invoke "as-br_if-value-cond"))
(assert_return (invoke "as-br_table-value"))
(assert_return (invoke "as-return-value"))
(assert_return (invoke "as-if-then"))
(assert_return (invoke "as-if-else"))
;; Unknown operator(e.g. v128.store8, v128.store16, v128.store32)
(assert_malformed
(module quote
"(memory 1)"
"(func (v128.store8 (i32.const 0) (v128.const i32x4 0 0 0 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1)"
"(func (v128.store16 (i32.const 0) (v128.const i32x4 0 0 0 0)))"
)
"unknown operator"
)
(assert_malformed
(module quote
"(memory 1)"
"(func (v128.store32 (i32.const 0) (v128.const i32x4 0 0 0 0)))"
)
"unknown operator"
)
;; Type mismatched (e.g. v128.load(f32.const 0), type address empty)
(assert_invalid
(module (memory 1) (func (v128.store (f32.const 0) (v128.const i32x4 0 0 0 0))))
"type mismatch"
)
(assert_invalid
(module (memory 1) (func (local v128) (block (br_if 0 (v128.store)))))
"type mismatch"
)
(assert_invalid
(module (memory 1) (func (result v128) (v128.store (i32.const 0) (v128.const i32x4 0 0 0 0))))
"type mismatch"
)
;; Test operation with empty argument
(assert_invalid
(module (memory 0)
(func $v128.store-1st-arg-empty
(v128.store (v128.const i32x4 0 0 0 0))
)
)
"type mismatch"
)
(assert_invalid
(module (memory 0)
(func $v128.store-2nd-arg-empty
(v128.store (i32.const 0))
)
)
"type mismatch"
)
(assert_invalid
(module (memory 0)
(func $v128.store-arg-empty
(v128.store)
)
)
"type mismatch"
)