diff options
author | Marcus Better <marcusb@users.noreply.github.com> | 2022-11-30 16:06:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-30 21:06:56 +0000 |
commit | 93c534c6d77529b2c828d695a57613291a45b587 (patch) | |
tree | 9dd9f2533c3f9428918d15ad880f4002b912df71 /src/validator.cc | |
parent | 5a20630f4ea69c1aa215996b4a14e69865fe6de9 (diff) | |
download | wabt-93c534c6d77529b2c828d695a57613291a45b587.tar.gz wabt-93c534c6d77529b2c828d695a57613291a45b587.tar.bz2 wabt-93c534c6d77529b2c828d695a57613291a45b587.zip |
Implement Relaxed SIMD proposal (#1994)
This adds support for the new opcodes from the Relaxed SIMD proposal
(https://github.com/WebAssembly/relaxed-simd) behind the
"--enable-relaxed-simd" flag.
The exception is the f32x4.relaxed_dot_bf16x8_add_f32x4 instruction
which is not yet implemented.
Diffstat (limited to 'src/validator.cc')
-rw-r--r-- | src/validator.cc | 54 |
1 files changed, 46 insertions, 8 deletions
diff --git a/src/validator.cc b/src/validator.cc index c1ef6422..73b63b9e 100644 --- a/src/validator.cc +++ b/src/validator.cc @@ -66,6 +66,14 @@ class ScriptValidator { const TypeVector& actual, const TypeVector& expected, const char* desc); + void CheckExpectation(const Location* loc, + const TypeVector& result_types, + const ConstVector& expected, + const char* desc); + void CheckExpectationTypes(const Location* loc, + const TypeVector& result_types, + const Expectation* expect, + const char* desc); const TypeVector* CheckInvoke(const InvokeAction* action); Result CheckGet(const GetAction* action, Type* out_type); @@ -206,6 +214,39 @@ void ScriptValidator::CheckResultTypes(const Location* loc, } } +void ScriptValidator::CheckExpectation(const Location* loc, + const TypeVector& result_types, + const ConstVector& expected, + const char* desc) { + // Here we take the concrete expected output types verify those actains + // the types that are the result of the action. + TypeVector actual_types; + for (auto ex : expected) { + actual_types.push_back(ex.type()); + } + CheckResultTypes(loc, actual_types, result_types, desc); +} + +void ScriptValidator::CheckExpectationTypes(const Location* loc, + const TypeVector& result_types, + const Expectation* expect, + const char* desc) { + switch (expect->type()) { + case ExpectationType::Values: { + CheckExpectation(loc, result_types, expect->expected, desc); + break; + } + + case ExpectationType::Either: { + auto* either = cast<EitherExpectation>(expect); + for (auto alt : either->expected) { + CheckExpectation(loc, result_types, {alt}, desc); + } + break; + } + } +} + Type Validator::GetDeclarationType(const FuncDeclaration& decl) { if (decl.has_func_type) { return Type(decl.type_var.index()); @@ -984,19 +1025,16 @@ void ScriptValidator::CheckCommand(const Command* command) { auto* assert_return_command = cast<AssertReturnCommand>(command); const Action* action = assert_return_command->action.get(); ActionResult result = CheckAction(action); - // Here we take the concrete expected output types verify those actains - // the types that are the result of the action. - TypeVector actual_types; - for (auto ex : assert_return_command->expected) { - actual_types.push_back(ex.type()); - } + const Expectation* expected = assert_return_command->expected.get(); switch (result.kind) { case ActionResult::Kind::Types: - CheckResultTypes(&action->loc, actual_types, *result.types, "action"); + CheckExpectationTypes(&action->loc, *result.types, expected, + "action"); break; case ActionResult::Kind::Type: - CheckResultTypes(&action->loc, actual_types, {result.type}, "action"); + CheckExpectationTypes(&action->loc, {result.type}, expected, + "action"); break; case ActionResult::Kind::Error: |