summaryrefslogtreecommitdiff
path: root/src/binary-writer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary-writer.cc')
-rw-r--r--src/binary-writer.cc23
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;