summaryrefslogtreecommitdiff
path: root/src/parser/wat-parser.cpp
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-05-13 14:18:01 -0700
committerGitHub <noreply@github.com>2024-05-13 14:18:01 -0700
commit924533fbcd0181f4460a13adc5762ee52f97de58 (patch)
tree8ceb319970b6fe120c2c15b1f20674a4702df540 /src/parser/wat-parser.cpp
parent5b46a5bcf6a26a54f40b9d2510cacd524661201f (diff)
downloadbinaryen-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.cpp')
-rw-r--r--src/parser/wat-parser.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/parser/wat-parser.cpp b/src/parser/wat-parser.cpp
index fd18fbbe0..2bc222d6b 100644
--- a/src/parser/wat-parser.cpp
+++ b/src/parser/wat-parser.cpp
@@ -238,7 +238,25 @@ Result<Expression*> parseExpression(Module& wasm, Lexer& lexer) {
ParseDefsCtx ctx(lexer, wasm, {}, {}, {}, {}, {});
auto e = expr(ctx);
CHECK_ERR(e);
+ lexer = ctx.in;
return *e;
}
+Result<Literal> parseConst(Lexer& lexer) {
+ Module wasm;
+ ParseDefsCtx ctx(lexer, wasm, {}, {}, {}, {}, {});
+ auto inst = foldedinstr(ctx);
+ CHECK_ERR(inst);
+ auto expr = ctx.irBuilder.build();
+ if (auto* err = expr.getErr()) {
+ return lexer.err(err->msg);
+ }
+ auto* e = *expr;
+ if (!e->is<Const>() && !e->is<RefNull>() && !e->is<RefI31>()) {
+ return lexer.err("expected constant");
+ }
+ lexer = ctx.in;
+ return getLiteralFromConstExpression(e);
+}
+
} // namespace wasm::WATParser