diff options
author | Soni L. <EnderMoneyMod@gmail.com> | 2024-11-20 14:51:48 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 09:51:48 -0800 |
commit | a0b7abef00b59eeafed58c774195189425d020b0 (patch) | |
tree | 6f7b0747d3a3ef435bda9ac14ca22d417877796b /src/binary-writer.cc | |
parent | 958d0a72030227bf3133c8b99c7c670bcdbc7636 (diff) | |
download | wabt-a0b7abef00b59eeafed58c774195189425d020b0.tar.gz wabt-a0b7abef00b59eeafed58c774195189425d020b0.tar.bz2 wabt-a0b7abef00b59eeafed58c774195189425d020b0.zip |
binary/wat: Implement EHv4 (#2470)
This pull request implements EHv4. Binary is mostly untested until
interp is working.
Diffstat (limited to 'src/binary-writer.cc')
-rw-r--r-- | src/binary-writer.cc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/binary-writer.cc b/src/binary-writer.cc index 60863d62..600154b9 100644 --- a/src/binary-writer.cc +++ b/src/binary-writer.cc @@ -1050,6 +1050,9 @@ void BinaryWriter::WriteExpr(const Func* func, const Expr* expr) { WriteU32Leb128(stream_, GetTagVarDepth(&cast<ThrowExpr>(expr)->var), "throw tag"); break; + case ExprType::ThrowRef: + WriteOpcode(stream_, Opcode::ThrowRef); + break; case ExprType::Try: { auto* try_expr = cast<TryExpr>(expr); WriteOpcode(stream_, Opcode::Try); @@ -1079,6 +1082,26 @@ void BinaryWriter::WriteExpr(const Func* func, const Expr* expr) { } break; } + case ExprType::TryTable: { + auto* try_table_expr = cast<TryTableExpr>(expr); + WriteOpcode(stream_, Opcode::TryTable); + WriteBlockDecl(try_table_expr->block.decl); + WriteU32Leb128(stream_, try_table_expr->catches.size(), "num catches"); + for (const TableCatch& catch_ : try_table_expr->catches) { + uint8_t catch_type = + (catch_.IsCatchAll() ? 2 : 0) | (catch_.IsRef() ? 1 : 0); + stream_->WriteU8(catch_type, "catch handler"); + if (!catch_.IsCatchAll()) { + Index tag = GetTagVarDepth(&catch_.tag); + WriteU32Leb128(stream_, tag, "catch tag"); + } + Index depth = GetLabelVarDepth(&catch_.target); + WriteU32Leb128(stream_, depth, "catch depth"); + } + WriteExprList(func, try_table_expr->block.exprs); + WriteOpcode(stream_, Opcode::End); + break; + } case ExprType::Unary: WriteOpcode(stream_, cast<UnaryExpr>(expr)->opcode); break; |