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/ir-util.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/ir-util.cc')
-rw-r--r-- | src/ir-util.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ir-util.cc b/src/ir-util.cc index ee9262cc..5266a264 100644 --- a/src/ir-util.cc +++ b/src/ir-util.cc @@ -223,9 +223,16 @@ ModuleContext::Arities ModuleContext::GetExprArity(const Expr& expr) const { return {operand_count, 0, true}; } + case ExprType::ThrowRef: { + return {1, 1, true}; + } + case ExprType::Try: return {0, cast<TryExpr>(&expr)->block.decl.sig.GetNumResults()}; + case ExprType::TryTable: + return {0, cast<TryTableExpr>(&expr)->block.decl.sig.GetNumResults()}; + case ExprType::Ternary: return {3, 1}; |