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
|
// |jit-test| skip-if: !wasmSimdEnabled()
wasmAssert(`
(module
(func $f (param i32) (result v128)
(select ;; no type
(v128.const i32x4 1 2 3 4)
(v128.const i32x4 4 3 2 1)
(local.get 0)
)
)
(export "" (func 0))
)`, [
{ type: 'v128', func: '$f', args: ['i32.const 0'], expected: 'i32x4 4 3 2 1' },
{ type: 'v128', func: '$f', args: ['i32.const 1'], expected: 'i32x4 1 2 3 4' },
{ type: 'v128', func: '$f', args: ['i32.const -1'], expected: 'i32x4 1 2 3 4' },
], {});
wasmAssert(`
(module
(func $f (param i32) (result v128)
(select (result v128)
(v128.const i32x4 1 2 3 4)
(v128.const i32x4 4 3 2 1)
(local.get 0)
)
)
(export "" (func 0))
)`, [
{ type: 'v128', func: '$f', args: ['i32.const 0'], expected: 'i32x4 4 3 2 1' },
{ type: 'v128', func: '$f', args: ['i32.const 1'], expected: 'i32x4 1 2 3 4' },
{ type: 'v128', func: '$f', args: ['i32.const -1'], expected: 'i32x4 1 2 3 4' },
], {});
|