Skip to content

Commit

Permalink
tra_table opcode; pipeline test
Browse files Browse the repository at this point in the history
  • Loading branch information
ermler committed Sep 4, 2024
1 parent a2be00f commit 3df2920
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions core/iwasm/interpreter/wasm_opcode.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ typedef enum WASMOpcode {

WASM_OP_GET_GLOBAL_64 = 0x1d,
WASM_OP_SET_GLOBAL_64 = 0x1e,
WASM_OP_SET_GLOBAL_AUX_STACK = 0x1f,
/* ReE: new proposal exceptionhandling */
WASM_OP_TRY_TABLE = 0x1f,

/* variable instructions */
WASM_OP_GET_LOCAL = 0x20, /* get_local */
Expand All @@ -62,7 +63,9 @@ typedef enum WASMOpcode {

WASM_OP_TABLE_GET = 0x25, /* table.get */
WASM_OP_TABLE_SET = 0x26, /* table.set */
WASM_OP_UNUSED_0x27 = 0x27,
/* ReE: WASM_OP_GLOBAL_AUX_STACK = 0x1f conflicted with WASM_OP_TRY_TABLE */
/* WASM_OP_UNUSED_0x27 = 0x27, */
WASM_OP_SET_GLOBAL_AUX_STACK = 0x27,

/* memory instructions */
WASM_OP_I32_LOAD = 0x28, /* i32.load */
Expand Down

0 comments on commit 3df2920

Please sign in to comment.