diff options
Diffstat (limited to 'src/binary-reader-ir.cc')
-rw-r--r-- | src/binary-reader-ir.cc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/binary-reader-ir.cc b/src/binary-reader-ir.cc index 04b2e90b..2029b0f7 100644 --- a/src/binary-reader-ir.cc +++ b/src/binary-reader-ir.cc @@ -258,7 +258,10 @@ class BinaryReaderIR : public BinaryReaderNop { Address alignment_log2, Address offset) override; Result OnThrowExpr(Index tag_index) override; + Result OnThrowRefExpr() override; Result OnTryExpr(Type sig_type) override; + Result OnTryTableExpr(Type sig_type, + const CatchClauseVector& catches) override; Result OnUnaryExpr(Opcode opcode) override; Result OnTernaryExpr(Opcode opcode) override; Result OnUnreachableExpr() override; @@ -999,6 +1002,9 @@ Result BinaryReaderIR::OnEndExpr() { case LabelType::Try: cast<TryExpr>(expr)->block.end_loc = GetLocation(); break; + case LabelType::TryTable: + cast<TryTableExpr>(expr)->block.end_loc = GetLocation(); + break; case LabelType::InitExpr: case LabelType::Func: @@ -1195,6 +1201,11 @@ Result BinaryReaderIR::OnThrowExpr(Index tag_index) { return AppendExpr(std::make_unique<ThrowExpr>(Var(tag_index, GetLocation()))); } +Result BinaryReaderIR::OnThrowRefExpr() { + module_->features_used.exceptions = true; + return AppendExpr(std::make_unique<ThrowRefExpr>()); +} + Result BinaryReaderIR::OnLocalTeeExpr(Index local_index) { return AppendExpr( std::make_unique<LocalTeeExpr>(Var(local_index, GetLocation()))); @@ -1248,6 +1259,27 @@ Result BinaryReaderIR::OnCatchAllExpr() { return AppendCatch(Catch(GetLocation())); } +Result BinaryReaderIR::OnTryTableExpr(Type sig_type, + const CatchClauseVector& catches) { + auto expr_ptr = std::make_unique<TryTableExpr>(); + TryTableExpr* expr = expr_ptr.get(); + expr->catches.reserve(catches.size()); + SetBlockDeclaration(&expr->block.decl, sig_type); + ExprList* expr_list = &expr->block.exprs; + + for (auto& raw_catch : catches) { + TableCatch catch_; + catch_.kind = raw_catch.kind; + catch_.tag = Var(raw_catch.tag, GetLocation()); + catch_.target = Var(raw_catch.depth, GetLocation()); + expr->catches.push_back(std::move(catch_)); + } + + CHECK_RESULT(AppendExpr(std::move(expr_ptr))); + module_->features_used.exceptions = true; + return PushLabel(LabelType::TryTable, expr_list, expr); +} + Result BinaryReaderIR::OnDelegateExpr(Index depth) { LabelNode* label = nullptr; CHECK_RESULT(TopLabel(&label)); |