summaryrefslogtreecommitdiff
path: root/deps/v8/src/wasm/wasm-opcodes-inl.h
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2021-08-29 14:20:49 +0200
committerMichaël Zasso <targos@protonmail.com>2021-08-30 21:02:51 +0200
commit50930a0fa08297d0ce7e67fa6594fe47937b99ff (patch)
tree96bd30c0c63790bc1992a2f241a3df94d563b283 /deps/v8/src/wasm/wasm-opcodes-inl.h
parentb63e449b2eade1111b52f6559669400a4e855903 (diff)
downloadnode-new-50930a0fa08297d0ce7e67fa6594fe47937b99ff.tar.gz
deps: update V8 to 9.3.345.16
PR-URL: https://github.com/nodejs/node/pull/39469 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'deps/v8/src/wasm/wasm-opcodes-inl.h')
-rw-r--r--deps/v8/src/wasm/wasm-opcodes-inl.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/deps/v8/src/wasm/wasm-opcodes-inl.h b/deps/v8/src/wasm/wasm-opcodes-inl.h
index bc14a4adef..550d7f4671 100644
--- a/deps/v8/src/wasm/wasm-opcodes-inl.h
+++ b/deps/v8/src/wasm/wasm-opcodes-inl.h
@@ -187,6 +187,8 @@ constexpr const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
CASE_INT_OP(StoreMem16, "store16")
CASE_I64_OP(StoreMem32, "store32")
CASE_S128_OP(StoreMem, "store128")
+ CASE_OP(RefEq, "ref.eq")
+ CASE_OP(Let, "let")
// Exception handling opcodes.
CASE_OP(Try, "try")
@@ -195,7 +197,6 @@ constexpr const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
CASE_OP(Throw, "throw")
CASE_OP(Rethrow, "rethrow")
CASE_OP(CatchAll, "catch-all")
- CASE_OP(Unwind, "unwind")
// asm.js-only opcodes.
CASE_F64_OP(Acos, "acos")
@@ -391,13 +392,16 @@ constexpr const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
CASE_OP(ArrayGet, "array.get")
CASE_OP(ArrayGetS, "array.get_s")
CASE_OP(ArrayGetU, "array.get_u")
- CASE_OP(ArrayLen, "array.len")
CASE_OP(ArraySet, "array.set")
+ CASE_OP(ArrayLen, "array.len")
+ CASE_OP(ArrayCopy, "array.copy")
+ CASE_OP(ArrayInit, "array.init")
CASE_OP(I31New, "i31.new")
CASE_OP(I31GetS, "i31.get_s")
CASE_OP(I31GetU, "i31.get_u")
CASE_OP(RttCanon, "rtt.canon")
CASE_OP(RttSub, "rtt.sub")
+ CASE_OP(RttFreshSub, "rtt.fresh_sub")
CASE_OP(RefTest, "ref.test")
CASE_OP(RefCast, "ref.cast")
CASE_OP(BrOnCast, "br_on_cast")
@@ -411,8 +415,9 @@ constexpr const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
CASE_OP(BrOnFunc, "br_on_func")
CASE_OP(BrOnData, "br_on_data")
CASE_OP(BrOnI31, "br_on_i31")
- CASE_OP(RefEq, "ref.eq")
- CASE_OP(Let, "let")
+ CASE_OP(BrOnNonFunc, "br_on_non_func")
+ CASE_OP(BrOnNonData, "br_on_non_data")
+ CASE_OP(BrOnNonI31, "br_on_non_i31")
case kNumericPrefix:
case kSimdPrefix: