summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/spec/gc/array.wast.js
blob: 4161a6b5f91cdebceee731ad4e3be4f80e8e95e2 (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
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
/* Copyright 2021 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

// ./test/core/gc/array.wast

// ./test/core/gc/array.wast:3
let $0 = instantiate(`(module
  (type (array i8))
  (type (array i16))
  (type (array i32))
  (type (array i64))
  (type (array f32))
  (type (array f64))
  (type (array anyref))
  (type (array (ref struct)))
  (type (array (ref 0)))
  (type (array (ref null 1)))
  (type (array (mut i8)))
  (type (array (mut i16)))
  (type (array (mut i32)))
  (type (array (mut i64)))
  (type (array (mut i32)))
  (type (array (mut i64)))
  (type (array (mut anyref)))
  (type (array (mut (ref struct))))
  (type (array (mut (ref 0))))
  (type (array (mut (ref null i31))))
)`);

// ./test/core/gc/array.wast:27
assert_invalid(
  () => instantiate(`(module
    (type (array (mut (ref null 10))))
  )`),
  `unknown type`,
);

// ./test/core/gc/array.wast:37
let $1 = instantiate(`(module
  (rec
    (type $$s0 (array (ref $$s1)))
    (type $$s1 (array (ref $$s0)))
  )

  (func (param (ref $$forward)))

  (type $$forward (array i32))
)`);

// ./test/core/gc/array.wast:48
assert_invalid(() => instantiate(`(module (type (array (ref 1))))`), `unknown type`);

// ./test/core/gc/array.wast:52
assert_invalid(() => instantiate(`(module (type (array (mut (ref 1)))))`), `unknown type`);

// ./test/core/gc/array.wast:60
let $2 = instantiate(`(module
  (type $$vec (array f32))
  (type $$mvec (array (mut f32)))

  (global (ref $$vec) (array.new $$vec (f32.const 1) (i32.const 3)))
  (global (ref $$vec) (array.new_default $$vec (i32.const 3)))

  (func $$new (export "new") (result (ref $$vec))
    (array.new_default $$vec (i32.const 3))
  )

  (func $$get (param $$i i32) (param $$v (ref $$vec)) (result f32)
    (array.get $$vec (local.get $$v) (local.get $$i))
  )
  (func (export "get") (param $$i i32) (result f32)
    (call $$get (local.get $$i) (call $$new))
  )

  (func $$set_get (param $$i i32) (param $$v (ref $$mvec)) (param $$y f32) (result f32)
    (array.set $$mvec (local.get $$v) (local.get $$i) (local.get $$y))
    (array.get $$mvec (local.get $$v) (local.get $$i))
  )
  (func (export "set_get") (param $$i i32) (param $$y f32) (result f32)
    (call $$set_get (local.get $$i)
      (array.new_default $$mvec (i32.const 3))
      (local.get $$y)
    )
  )

  (func $$len (param $$v (ref array)) (result i32)
    (array.len (local.get $$v))
  )
  (func (export "len") (result i32)
    (call $$len (call $$new))
  )
)`);

// ./test/core/gc/array.wast:97
assert_return(() => invoke($2, `new`, []), [new RefWithType('arrayref')]);

// ./test/core/gc/array.wast:98
assert_return(() => invoke($2, `new`, []), [new RefWithType('eqref')]);

// ./test/core/gc/array.wast:99
assert_return(() => invoke($2, `get`, [0]), [value("f32", 0)]);

// ./test/core/gc/array.wast:100
assert_return(() => invoke($2, `set_get`, [1, value("f32", 7)]), [value("f32", 7)]);

// ./test/core/gc/array.wast:101
assert_return(() => invoke($2, `len`, []), [value("i32", 3)]);

// ./test/core/gc/array.wast:103
assert_trap(() => invoke($2, `get`, [10]), `out of bounds array access`);

// ./test/core/gc/array.wast:104
assert_trap(() => invoke($2, `set_get`, [10, value("f32", 7)]), `out of bounds array access`);

// ./test/core/gc/array.wast:106
let $3 = instantiate(`(module
  (type $$vec (array f32))
  (type $$mvec (array (mut f32)))

  (global (ref $$vec) (array.new_fixed $$vec 2 (f32.const 1) (f32.const 2)))

  (func $$new (export "new") (result (ref $$vec))
    (array.new_fixed $$vec 2 (f32.const 1) (f32.const 2))
  )

  (func $$get (param $$i i32) (param $$v (ref $$vec)) (result f32)
    (array.get $$vec (local.get $$v) (local.get $$i))
  )
  (func (export "get") (param $$i i32) (result f32)
    (call $$get (local.get $$i) (call $$new))
  )

  (func $$set_get (param $$i i32) (param $$v (ref $$mvec)) (param $$y f32) (result f32)
    (array.set $$mvec (local.get $$v) (local.get $$i) (local.get $$y))
    (array.get $$mvec (local.get $$v) (local.get $$i))
  )
  (func (export "set_get") (param $$i i32) (param $$y f32) (result f32)
    (call $$set_get (local.get $$i)
      (array.new_fixed $$mvec 3 (f32.const 1) (f32.const 2) (f32.const 3))
      (local.get $$y)
    )
  )

  (func $$len (param $$v (ref array)) (result i32)
    (array.len (local.get $$v))
  )
  (func (export "len") (result i32)
    (call $$len (call $$new))
  )
)`);

// ./test/core/gc/array.wast:142
assert_return(() => invoke($3, `new`, []), [new RefWithType('arrayref')]);

// ./test/core/gc/array.wast:143
assert_return(() => invoke($3, `new`, []), [new RefWithType('eqref')]);

// ./test/core/gc/array.wast:144
assert_return(() => invoke($3, `get`, [0]), [value("f32", 1)]);

// ./test/core/gc/array.wast:145
assert_return(() => invoke($3, `set_get`, [1, value("f32", 7)]), [value("f32", 7)]);

// ./test/core/gc/array.wast:146
assert_return(() => invoke($3, `len`, []), [value("i32", 2)]);

// ./test/core/gc/array.wast:148
assert_trap(() => invoke($3, `get`, [10]), `out of bounds array access`);

// ./test/core/gc/array.wast:149
assert_trap(() => invoke($3, `set_get`, [10, value("f32", 7)]), `out of bounds array access`);

// ./test/core/gc/array.wast:151
let $4 = instantiate(`(module
  (type $$vec (array i8))
  (type $$mvec (array (mut i8)))

  (data $$d "\\00\\01\\02\\ff\\04")

  (func $$new (export "new") (result (ref $$vec))
    (array.new_data $$vec $$d (i32.const 1) (i32.const 3))
  )

  (func $$get_u (param $$i i32) (param $$v (ref $$vec)) (result i32)
    (array.get_u $$vec (local.get $$v) (local.get $$i))
  )
  (func (export "get_u") (param $$i i32) (result i32)
    (call $$get_u (local.get $$i) (call $$new))
  )

  (func $$get_s (param $$i i32) (param $$v (ref $$vec)) (result i32)
    (array.get_s $$vec (local.get $$v) (local.get $$i))
  )
  (func (export "get_s") (param $$i i32) (result i32)
    (call $$get_s (local.get $$i) (call $$new))
  )

  (func $$set_get (param $$i i32) (param $$v (ref $$mvec)) (param $$y i32) (result i32)
    (array.set $$mvec (local.get $$v) (local.get $$i) (local.get $$y))
    (array.get_u $$mvec (local.get $$v) (local.get $$i))
  )
  (func (export "set_get") (param $$i i32) (param $$y i32) (result i32)
    (call $$set_get (local.get $$i)
      (array.new_data $$mvec $$d (i32.const 1) (i32.const 3))
      (local.get $$y)
    )
  )

  (func $$len (param $$v (ref array)) (result i32)
    (array.len (local.get $$v))
  )
  (func (export "len") (result i32)
    (call $$len (call $$new))
  )
)`);

// ./test/core/gc/array.wast:194
assert_return(() => invoke($4, `new`, []), [new RefWithType('arrayref')]);

// ./test/core/gc/array.wast:195
assert_return(() => invoke($4, `new`, []), [new RefWithType('eqref')]);

// ./test/core/gc/array.wast:196
assert_return(() => invoke($4, `get_u`, [2]), [value("i32", 255)]);

// ./test/core/gc/array.wast:197
assert_return(() => invoke($4, `get_s`, [2]), [value("i32", -1)]);

// ./test/core/gc/array.wast:198
assert_return(() => invoke($4, `set_get`, [1, 7]), [value("i32", 7)]);

// ./test/core/gc/array.wast:199
assert_return(() => invoke($4, `len`, []), [value("i32", 3)]);

// ./test/core/gc/array.wast:201
assert_trap(() => invoke($4, `get_u`, [10]), `out of bounds array access`);

// ./test/core/gc/array.wast:202
assert_trap(() => invoke($4, `get_s`, [10]), `out of bounds array access`);

// ./test/core/gc/array.wast:203
assert_trap(() => invoke($4, `set_get`, [10, 7]), `out of bounds array access`);

// ./test/core/gc/array.wast:205
let $5 = instantiate(`(module
  (type $$bvec (array i8))
  (type $$vec (array (ref $$bvec)))
  (type $$mvec (array (mut (ref $$bvec))))
  (type $$nvec (array (ref null $$bvec)))
  (type $$avec (array (mut anyref)))

  (elem $$e (ref $$bvec)
    (array.new $$bvec (i32.const 7) (i32.const 3))
    (array.new_fixed $$bvec 2 (i32.const 1) (i32.const 2))
  )

  (func $$new (export "new") (result (ref $$vec))
    (array.new_elem $$vec $$e (i32.const 0) (i32.const 2))
  )

  (func $$sub1 (result (ref $$nvec))
    (array.new_elem $$nvec $$e (i32.const 0) (i32.const 2))
  )
  (func $$sub2 (result (ref $$avec))
    (array.new_elem $$avec $$e (i32.const 0) (i32.const 2))
  )

  (func $$get (param $$i i32) (param $$j i32) (param $$v (ref $$vec)) (result i32)
    (array.get_u $$bvec (array.get $$vec (local.get $$v) (local.get $$i)) (local.get $$j))
  )
  (func (export "get") (param $$i i32) (param $$j i32) (result i32)
    (call $$get (local.get $$i) (local.get $$j) (call $$new))
  )

  (func $$set_get (param $$i i32) (param $$j i32) (param $$v (ref $$mvec)) (param $$y i32) (result i32)
    (array.set $$mvec (local.get $$v) (local.get $$i) (array.get $$mvec (local.get $$v) (local.get $$y)))
    (array.get_u $$bvec (array.get $$mvec (local.get $$v) (local.get $$i)) (local.get $$j))
  )
  (func (export "set_get") (param $$i i32) (param $$j i32) (param $$y i32) (result i32)
    (call $$set_get (local.get $$i) (local.get $$j)
      (array.new_elem $$mvec $$e (i32.const 0) (i32.const 2))
      (local.get $$y)
    )
  )

  (func $$len (param $$v (ref array)) (result i32)
    (array.len (local.get $$v))
  )
  (func (export "len") (result i32)
    (call $$len (call $$new))
  )
)`);

// ./test/core/gc/array.wast:254
assert_return(() => invoke($5, `new`, []), [new RefWithType('arrayref')]);

// ./test/core/gc/array.wast:255
assert_return(() => invoke($5, `new`, []), [new RefWithType('eqref')]);

// ./test/core/gc/array.wast:256
assert_return(() => invoke($5, `get`, [0, 0]), [value("i32", 7)]);

// ./test/core/gc/array.wast:257
assert_return(() => invoke($5, `get`, [1, 0]), [value("i32", 1)]);

// ./test/core/gc/array.wast:258
assert_return(() => invoke($5, `set_get`, [0, 1, 1]), [value("i32", 2)]);

// ./test/core/gc/array.wast:259
assert_return(() => invoke($5, `len`, []), [value("i32", 2)]);

// ./test/core/gc/array.wast:261
assert_trap(() => invoke($5, `get`, [10, 0]), `out of bounds array access`);

// ./test/core/gc/array.wast:262
assert_trap(() => invoke($5, `set_get`, [10, 0, 0]), `out of bounds array access`);

// ./test/core/gc/array.wast:264
assert_invalid(
  () => instantiate(`(module
    (type $$a (array i64))
    (func (export "array.set-immutable") (param $$a (ref $$a))
      (array.set $$a (local.get $$a) (i32.const 0) (i64.const 1))
    )
  )`),
  `array is immutable`,
);

// ./test/core/gc/array.wast:274
assert_invalid(
  () => instantiate(`(module
    (type $$bvec (array i8))

    (data $$d "\\00\\01\\02\\03\\04")

    (global (ref $$bvec)
      (array.new_data $$bvec $$d (i32.const 1) (i32.const 3))
    )
  )`),
  `constant expression required`,
);

// ./test/core/gc/array.wast:287
assert_invalid(
  () => instantiate(`(module
    (type $$bvec (array i8))
    (type $$vvec (array (ref $$bvec)))

    (elem $$e (ref $$bvec) (ref.null $$bvec))

    (global (ref $$vvec)
      (array.new_elem $$vvec $$e (i32.const 0) (i32.const 1))
    )
  )`),
  `constant expression required`,
);

// ./test/core/gc/array.wast:304
let $6 = instantiate(`(module
  (type $$t (array (mut i32)))
  (func (export "array.get-null")
    (local (ref null $$t)) (drop (array.get $$t (local.get 0) (i32.const 0)))
  )
  (func (export "array.set-null")
    (local (ref null $$t)) (array.set $$t (local.get 0) (i32.const 0) (i32.const 0))
  )
)`);

// ./test/core/gc/array.wast:314
assert_trap(() => invoke($6, `array.get-null`, []), `null array reference`);

// ./test/core/gc/array.wast:315
assert_trap(() => invoke($6, `array.set-null`, []), `null array reference`);