mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-09 06:08:29 +00:00
spec:
https://github.com/WebAssembly/spec/commit/e3c10811
simd:
https://github.com/WebAssembly/simd/commit/de4409bc
gc:
https://github.com/WebAssembly/gc/commit/db1c01a9
tail-call:
https://github.com/WebAssembly/tail-call/commit/394d0aa3
This change was automatically generated by `update-testsuite.sh`
97 lines
5.2 KiB
Plaintext
Vendored
97 lines
5.2 KiB
Plaintext
Vendored
;; Tests for load lane operations.
|
|
|
|
|
|
(module
|
|
(memory 1)
|
|
(data (i32.const 0) "\00\01\02\03\04\05\06\07\08\09\0A\0B\0C\0D\0E\0F")
|
|
(func (export "v128.load64_lane_0")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane 0 (local.get $address) (local.get $x)))
|
|
(func (export "v128.load64_lane_1")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane 1 (local.get $address) (local.get $x)))
|
|
(func (export "v128.load64_lane_0_offset_0")
|
|
(param $x v128) (result v128)
|
|
(v128.load64_lane offset=0 0 (i32.const 0) (local.get $x)))
|
|
(func (export "v128.load64_lane_1_offset_1")
|
|
(param $x v128) (result v128)
|
|
(v128.load64_lane offset=1 1 (i32.const 0) (local.get $x)))
|
|
(func (export "v128.load64_lane_0_align_1")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane align=1 0 (local.get $address) (local.get $x)))
|
|
(func (export "v128.load64_lane_0_align_2")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane align=2 0 (local.get $address) (local.get $x)))
|
|
(func (export "v128.load64_lane_0_align_4")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane align=4 0 (local.get $address) (local.get $x)))
|
|
(func (export "v128.load64_lane_0_align_8")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane align=8 0 (local.get $address) (local.get $x)))
|
|
(func (export "v128.load64_lane_1_align_1")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane align=1 1 (local.get $address) (local.get $x)))
|
|
(func (export "v128.load64_lane_1_align_2")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane align=2 1 (local.get $address) (local.get $x)))
|
|
(func (export "v128.load64_lane_1_align_4")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane align=4 1 (local.get $address) (local.get $x)))
|
|
(func (export "v128.load64_lane_1_align_8")
|
|
(param $address i32) (param $x v128) (result v128)
|
|
(v128.load64_lane align=8 1 (local.get $address) (local.get $x)))
|
|
)
|
|
|
|
(assert_return (invoke "v128.load64_lane_0" (i32.const 0)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 506097522914230528 0))
|
|
(assert_return (invoke "v128.load64_lane_1" (i32.const 1)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 0 578437695752307201))
|
|
(assert_return (invoke "v128.load64_lane_0_offset_0" (v128.const i64x2 0 0))
|
|
(v128.const i64x2 506097522914230528 0))
|
|
(assert_return (invoke "v128.load64_lane_1_offset_1" (v128.const i64x2 0 0))
|
|
(v128.const i64x2 0 578437695752307201))
|
|
(assert_return (invoke "v128.load64_lane_0_align_1" (i32.const 0)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 506097522914230528 0))
|
|
(assert_return (invoke "v128.load64_lane_0_align_2" (i32.const 0)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 506097522914230528 0))
|
|
(assert_return (invoke "v128.load64_lane_0_align_4" (i32.const 0)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 506097522914230528 0))
|
|
(assert_return (invoke "v128.load64_lane_0_align_8" (i32.const 0)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 506097522914230528 0))
|
|
(assert_return (invoke "v128.load64_lane_1_align_1" (i32.const 1)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 0 578437695752307201))
|
|
(assert_return (invoke "v128.load64_lane_1_align_2" (i32.const 1)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 0 578437695752307201))
|
|
(assert_return (invoke "v128.load64_lane_1_align_4" (i32.const 1)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 0 578437695752307201))
|
|
(assert_return (invoke "v128.load64_lane_1_align_8" (i32.const 1)
|
|
(v128.const i64x2 0 0))
|
|
(v128.const i64x2 0 578437695752307201))
|
|
|
|
;; type check
|
|
(assert_invalid (module (memory 1)
|
|
(func (param $x v128) (result v128)
|
|
(v128.load64_lane 0 (local.get $x) (i32.const 0))))
|
|
"type mismatch")
|
|
|
|
;; invalid lane index
|
|
(assert_invalid (module (memory 1)
|
|
(func (param $x v128) (result v128)
|
|
(v128.load64_lane 2 (i32.const 0) (local.get $x))))
|
|
"invalid lane index")
|
|
|
|
;; invalid memarg alignment
|
|
(assert_invalid
|
|
(module (memory 1)
|
|
(func (param $x v128) (result v128)
|
|
(v128.load64_lane align=16 0 (i32.const 0) (local.get $x))))
|
|
"alignment must not be larger than natural") |