diff options
author | Thomas Lively <tlively@google.com> | 2024-05-13 14:18:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 14:18:01 -0700 |
commit | 924533fbcd0181f4460a13adc5762ee52f97de58 (patch) | |
tree | 8ceb319970b6fe120c2c15b1f20674a4702df540 /src/parser/wat-parser.h | |
parent | 5b46a5bcf6a26a54f40b9d2510cacd524661201f (diff) | |
download | binaryen-924533fbcd0181f4460a13adc5762ee52f97de58.tar.gz binaryen-924533fbcd0181f4460a13adc5762ee52f97de58.tar.bz2 binaryen-924533fbcd0181f4460a13adc5762ee52f97de58.zip |
[Parser] Parse wast scripts (#6581)
The spec tests use an extension of the standard text format that includes
various commands and assertions used to test WebAssembly implementations. Add a
utility to parse this extended WebAssembly script format and use it in
wasm-shell to check that it parses our spec tests without error. Fix a few
errors the new parser found in our spec tests.
A future PR will rewrite wasm-shell to interpret the results of the new parser,
but for now to keep the diff smaller, do not do anything with the new parser
except check for errors.
Diffstat (limited to 'src/parser/wat-parser.h')
-rw-r--r-- | src/parser/wat-parser.h | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/src/parser/wat-parser.h b/src/parser/wat-parser.h index 3f7dd64c4..7fe6abfdd 100644 --- a/src/parser/wat-parser.h +++ b/src/parser/wat-parser.h @@ -32,8 +32,87 @@ Result<> parseModule(Module& wasm, std::string_view in); // file. Result<> parseModule(Module& wasm, Lexer& lexer); +Result<Literal> parseConst(Lexer& lexer); + Result<Expression*> parseExpression(Module& wasm, Lexer& lexer); +struct InvokeAction { + Name name; + Literals args; +}; + +struct GetAction { + Name name; +}; + +using Action = std::variant<InvokeAction, GetAction>; + +struct RefResult { + HeapType type; +}; + +enum class NaNKind { Canonical, Arithmetic }; + +struct NaNResult { + NaNKind kind; + Type type; +}; + +using LaneResult = std::variant<Literal, NaNResult>; + +using LaneResults = std::vector<LaneResult>; + +using ExpectedResult = std::variant<Literal, RefResult, NaNResult, LaneResults>; + +using ExpectedResults = std::vector<ExpectedResult>; + +struct AssertReturn { + Action action; + ExpectedResults results; +}; + +struct AssertException { + Action action; +}; + +enum class ActionAssertionType { Trap, Exhaustion }; + +struct AssertAction { + ActionAssertionType type; + Action action; + std::string msg; +}; + +enum class QuotedModuleType { Text, Binary }; + +struct QuotedModule { + QuotedModuleType type; + std::string module; +}; + +using WASTModule = std::variant<QuotedModule, std::shared_ptr<Module>>; + +enum class ModuleAssertionType { Trap, Malformed, Invalid, Unlinkable }; + +struct AssertModule { + ModuleAssertionType type; + WASTModule wasm; + std::string msg; +}; + +using Assertion = + std::variant<AssertReturn, AssertException, AssertAction, AssertModule>; + +struct Register { + Name name; +}; + +using WASTCommand = std::variant<WASTModule, Register, Action, Assertion>; + +using WASTScript = std::vector<WASTCommand>; + +Result<WASTScript> parseScript(std::string_view in); + } // namespace wasm::WATParser #endif // parser_wat_parser_h |