diff options
author | Brendan Dahl <brendan.dahl@gmail.com> | 2024-08-22 11:21:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-22 11:21:53 -0700 |
commit | 95a280f70ef529c3c506d628648a96f2d267f4c1 (patch) | |
tree | e77cf0b2337418fb7034c5c0e5b21de172b4bc30 /src/wasm/wasm-validator.cpp | |
parent | 2d99e10c03e619b01688268319c1cd43f7539e33 (diff) | |
download | binaryen-95a280f70ef529c3c506d628648a96f2d267f4c1.tar.gz binaryen-95a280f70ef529c3c506d628648a96f2d267f4c1.tar.bz2 binaryen-95a280f70ef529c3c506d628648a96f2d267f4c1.zip |
[FP16] Add a feature flag for FP16. (#6864)
Ensure the "fp16" feature is enabled for FP16 instructions.
Diffstat (limited to 'src/wasm/wasm-validator.cpp')
-rw-r--r-- | src/wasm/wasm-validator.cpp | 42 |
1 files changed, 28 insertions, 14 deletions
diff --git a/src/wasm/wasm-validator.cpp b/src/wasm/wasm-validator.cpp index 24f5379fb..4881ea7ac 100644 --- a/src/wasm/wasm-validator.cpp +++ b/src/wasm/wasm-validator.cpp @@ -1274,6 +1274,9 @@ void FunctionValidator::visitSIMDExtract(SIMDExtract* curr) { lanes = 2; break; case ExtractLaneVecF16x8: + shouldBeTrue(getModule()->features.hasFP16(), + curr, + "FP16 operations require FP16 [--enable-fp16]"); lane_t = Type::f32; lanes = 8; break; @@ -1324,6 +1327,9 @@ void FunctionValidator::visitSIMDReplace(SIMDReplace* curr) { lanes = 2; break; case ReplaceLaneVecF16x8: + shouldBeTrue(getModule()->features.hasFP16(), + curr, + "FP16 operations require FP16 [--enable-fp16]"); lane_t = Type::f32; lanes = 8; break; @@ -1708,6 +1714,24 @@ void FunctionValidator::visitBinary(Binary* curr) { curr->left->type, Type(Type::f64), curr, "f64 op"); break; } + case EqVecF16x8: + case NeVecF16x8: + case LtVecF16x8: + case LeVecF16x8: + case GtVecF16x8: + case GeVecF16x8: + case AddVecF16x8: + case SubVecF16x8: + case MulVecF16x8: + case DivVecF16x8: + case MinVecF16x8: + case MaxVecF16x8: + case PMinVecF16x8: + case PMaxVecF16x8: + shouldBeTrue(getModule()->features.hasFP16(), + curr, + "FP16 operations require FP16 [--enable-fp16]"); + [[fallthrough]]; case EqVecI8x16: case NeVecI8x16: case LtSVecI8x16: @@ -1744,12 +1768,6 @@ void FunctionValidator::visitBinary(Binary* curr) { case LeSVecI64x2: case GtSVecI64x2: case GeSVecI64x2: - case EqVecF16x8: - case NeVecF16x8: - case LtVecF16x8: - case LeVecF16x8: - case GtVecF16x8: - case GeVecF16x8: case EqVecF32x4: case NeVecF32x4: case LtVecF32x4: @@ -1813,14 +1831,6 @@ void FunctionValidator::visitBinary(Binary* curr) { case ExtMulHighSVecI64x2: case ExtMulLowUVecI64x2: case ExtMulHighUVecI64x2: - case AddVecF16x8: - case SubVecF16x8: - case MulVecF16x8: - case DivVecF16x8: - case MinVecF16x8: - case MaxVecF16x8: - case PMinVecF16x8: - case PMaxVecF16x8: case AddVecF32x4: case SubVecF32x4: case MulVecF32x4: @@ -2060,6 +2070,10 @@ void FunctionValidator::visitUnary(Unary* curr) { curr->value->type, Type(Type::i64), curr, "expected i64 splat value"); break; case SplatVecF16x8: + shouldBeTrue(getModule()->features.hasFP16(), + curr, + "FP16 operations require FP16 [--enable-fp16]"); + [[fallthrough]]; case SplatVecF32x4: shouldBeEqual( curr->type, Type(Type::v128), curr, "expected splat to have v128 type"); |