diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2021-01-19 19:32:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 16:32:10 -0800 |
commit | a4d1b53ff3374a5d7843b0a879a7908334d5bb46 (patch) | |
tree | 6bc7c3fd1ca8850f5fbba27ee850b98343306656 /test/simd.wast.fromBinary | |
parent | 0f212dfc69306688afa5057e3179aed5af3edc85 (diff) | |
download | binaryen-a4d1b53ff3374a5d7843b0a879a7908334d5bb46.tar.gz binaryen-a4d1b53ff3374a5d7843b0a879a7908334d5bb46.tar.bz2 binaryen-a4d1b53ff3374a5d7843b0a879a7908334d5bb46.zip |
Prototype additional f64x2 conversions (#3501)
As proposed in https://github.com/WebAssembly/simd/pull/383, with opcodes
coordinated with the WIP V8 prototype.
Diffstat (limited to 'test/simd.wast.fromBinary')
-rw-r--r-- | test/simd.wast.fromBinary | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/simd.wast.fromBinary b/test/simd.wast.fromBinary index c78c23572..1c0b12493 100644 --- a/test/simd.wast.fromBinary +++ b/test/simd.wast.fromBinary @@ -1424,5 +1424,35 @@ (local.get $0) ) ) + (func $f64x2.convert_low_i32x4_s (param $0 v128) (result v128) + (f64x2.convert_low_i32x4_s + (local.get $0) + ) + ) + (func $f64x2.convert_low_i32x4_u (param $0 v128) (result v128) + (f64x2.convert_low_i32x4_u + (local.get $0) + ) + ) + (func $i32x4.trunc_sat_f64x2_zero_s (param $0 v128) (result v128) + (i32x4.trunc_sat_f64x2_zero_s + (local.get $0) + ) + ) + (func $i32x4.trunc_sat_f64x2_zero_u (param $0 v128) (result v128) + (i32x4.trunc_sat_f64x2_zero_u + (local.get $0) + ) + ) + (func $f32x4.demote_f64x2_zero (param $0 v128) (result v128) + (f32x4.demote_f64x2_zero + (local.get $0) + ) + ) + (func $f64x2.promote_low_f32x4 (param $0 v128) (result v128) + (f64x2.promote_low_f32x4 + (local.get $0) + ) + ) ) |