summaryrefslogtreecommitdiff
path: root/include/wabt/token.def
diff options
context:
space:
mode:
authorSoni L. <EnderMoneyMod@gmail.com>2024-11-20 14:51:48 -0300
committerGitHub <noreply@github.com>2024-11-20 09:51:48 -0800
commita0b7abef00b59eeafed58c774195189425d020b0 (patch)
tree6f7b0747d3a3ef435bda9ac14ca22d417877796b /include/wabt/token.def
parent958d0a72030227bf3133c8b99c7c670bcdbc7636 (diff)
downloadwabt-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 'include/wabt/token.def')
-rw-r--r--include/wabt/token.def4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wabt/token.def b/include/wabt/token.def
index 53d1fabb..f2f05aec 100644
--- a/include/wabt/token.def
+++ b/include/wabt/token.def
@@ -105,6 +105,8 @@ WABT_TOKEN(CallIndirect, "call_indirect")
WABT_TOKEN(CallRef, "call_ref")
WABT_TOKEN(Catch, "catch")
WABT_TOKEN(CatchAll, "catch_all")
+WABT_TOKEN(CatchRef, "catch_ref")
+WABT_TOKEN(CatchAllRef, "catch_all_ref")
WABT_TOKEN(Compare, "COMPARE")
WABT_TOKEN(Const, "CONST")
WABT_TOKEN(Convert, "CONVERT")
@@ -151,7 +153,9 @@ WABT_TOKEN(TableSet, "table.set")
WABT_TOKEN(TableSize, "table.size")
WABT_TOKEN(Ternary, "TERNARY")
WABT_TOKEN(Throw, "throw")
+WABT_TOKEN(ThrowRef, "throw_ref")
WABT_TOKEN(Try, "try")
+WABT_TOKEN(TryTable, "try_table")
WABT_TOKEN(Unary, "UNARY")
WABT_TOKEN(Unreachable, "unreachable")
WABT_TOKEN_FIRST(Opcode, AtomicFence)