From c3a71ff46d8f38e29896c321d89b6d0c3b90fbc1 Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Thu, 26 Sep 2024 15:35:47 -0700 Subject: [FP16] Implement conversion operations. (#6974) Note: FP16 is a little different from F32/F64 since it can't represent the full 2^16 integer range. 65504 is the max whole integer. This leads to some slightly strange behavior when converting integers greater than 65504 since they become infinity. Specified at https://github.com/WebAssembly/half-precision/blob/main/proposals/half-precision/Overview.md --- src/tools/fuzzing/fuzzing.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/tools/fuzzing') diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp index a66fa6772..a8b8f7855 100644 --- a/src/tools/fuzzing/fuzzing.cpp +++ b/src/tools/fuzzing/fuzzing.cpp @@ -3143,7 +3143,11 @@ Expression* TranslateToFuzzReader::makeUnary(Type type) { CeilVecF16x8, FloorVecF16x8, TruncVecF16x8, - NearestVecF16x8)), + NearestVecF16x8, + TruncSatSVecF16x8ToVecI16x8, + TruncSatUVecF16x8ToVecI16x8, + ConvertSVecI16x8ToVecF16x8, + ConvertUVecI16x8ToVecF16x8)), make(Type::v128)}); } WASM_UNREACHABLE("invalid value"); -- cgit v1.2.3