Index: src/wasm/wasm-opcodes.cc |
diff --git a/src/wasm/wasm-opcodes.cc b/src/wasm/wasm-opcodes.cc |
index 10dcfe59a7cd121a677f0baef3c8118aa4af6743..fc89bb6e58574b3bb00b3d17ae11ce6e464c5605 100644 |
--- a/src/wasm/wasm-opcodes.cc |
+++ b/src/wasm/wasm-opcodes.cc |
@@ -217,15 +217,34 @@ const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) { |
CASE_S128_OP(Or, "or") |
CASE_S128_OP(Xor, "xor") |
CASE_S128_OP(Not, "not") |
+ CASE_S32x4_OP(ZipLeft, "zip left") |
+ CASE_S32x4_OP(ZipRight, "zip right") |
+ CASE_S32x4_OP(UnzipLeft, "unzip left") |
+ CASE_S32x4_OP(UnzipRight, "unzip right") |
+ CASE_S32x4_OP(TransposeLeft, "transpose left") |
+ CASE_S32x4_OP(TransposeRight, "transpose right") |
CASE_S32x4_OP(Select, "select") |
- CASE_S32x4_OP(Swizzle, "swizzle") |
- CASE_S32x4_OP(Shuffle, "shuffle") |
+ CASE_S16x8_OP(ZipLeft, "zip left") |
+ CASE_S16x8_OP(ZipRight, "zip right") |
+ CASE_S16x8_OP(UnzipLeft, "unzip left") |
+ CASE_S16x8_OP(UnzipRight, "unzip right") |
+ CASE_S16x8_OP(TransposeLeft, "transpose left") |
+ CASE_S16x8_OP(TransposeRight, "transpose right") |
CASE_S16x8_OP(Select, "select") |
- CASE_S16x8_OP(Swizzle, "swizzle") |
- CASE_S16x8_OP(Shuffle, "shuffle") |
+ CASE_S8x16_OP(ZipLeft, "zip left") |
+ CASE_S8x16_OP(ZipRight, "zip right") |
+ CASE_S8x16_OP(UnzipLeft, "unzip left") |
+ CASE_S8x16_OP(UnzipRight, "unzip right") |
+ CASE_S8x16_OP(TransposeLeft, "transpose left") |
+ CASE_S8x16_OP(TransposeRight, "transpose right") |
CASE_S8x16_OP(Select, "select") |
- CASE_S8x16_OP(Swizzle, "swizzle") |
- CASE_S8x16_OP(Shuffle, "shuffle") |
+ CASE_S8x16_OP(Concat, "concat") |
+ CASE_OP(S32x2Reverse, "32x2 reverse") |
+ CASE_OP(S16x4Reverse, "16x4 reverse") |
+ CASE_OP(S16x2Reverse, "16x2 reverse") |
+ CASE_OP(S8x8Reverse, "8x8 reverse") |
+ CASE_OP(S8x4Reverse, "8x4 reverse") |
+ CASE_OP(S8x2Reverse, "8x2 reverse") |
CASE_S1x4_OP(And, "and") |
CASE_S1x4_OP(Or, "or") |
CASE_S1x4_OP(Xor, "xor") |