| Index: src/wasm/wasm-opcodes.cc
|
| diff --git a/src/wasm/wasm-opcodes.cc b/src/wasm/wasm-opcodes.cc
|
| index ec1cbd59b233d914eed75a5ddde05bdbef761dea..144251962076397467a0b98830cae5eba51de5a8 100644
|
| --- a/src/wasm/wasm-opcodes.cc
|
| +++ b/src/wasm/wasm-opcodes.cc
|
| @@ -20,14 +20,17 @@ typedef Signature<ValueType> FunctionSig;
|
| #define CASE_I64_OP(name, str) CASE_OP(I64##name, "i64." str)
|
| #define CASE_F32_OP(name, str) CASE_OP(F32##name, "f32." str)
|
| #define CASE_F64_OP(name, str) CASE_OP(F64##name, "f64." str)
|
| -#define CASE_S128_OP(name, str) CASE_OP(S128##name, "s128." str)
|
| #define CASE_F32x4_OP(name, str) CASE_OP(F32x4##name, "f32x4." str)
|
| #define CASE_I32x4_OP(name, str) CASE_OP(I32x4##name, "i32x4." str)
|
| #define CASE_I16x8_OP(name, str) CASE_OP(I16x8##name, "i16x8." str)
|
| #define CASE_I8x16_OP(name, str) CASE_OP(I8x16##name, "i8x16." str)
|
| +#define CASE_S128_OP(name, str) CASE_OP(S128##name, "s128." str)
|
| #define CASE_S32x4_OP(name, str) CASE_OP(S32x4##name, "s32x4." str)
|
| #define CASE_S16x8_OP(name, str) CASE_OP(S16x8##name, "s16x8." str)
|
| #define CASE_S8x16_OP(name, str) CASE_OP(S8x16##name, "s8x16." str)
|
| +#define CASE_S1x4_OP(name, str) CASE_OP(S1x4##name, "s1x4." str)
|
| +#define CASE_S1x8_OP(name, str) CASE_OP(S1x8##name, "s1x8." str)
|
| +#define CASE_S1x16_OP(name, str) CASE_OP(S1x16##name, "s1x16." str)
|
| #define CASE_INT_OP(name, str) CASE_I32_OP(name, str) CASE_I64_OP(name, str)
|
| #define CASE_FLOAT_OP(name, str) CASE_F32_OP(name, str) CASE_F64_OP(name, str)
|
| #define CASE_ALL_OP(name, str) CASE_FLOAT_OP(name, str) CASE_INT_OP(name, str)
|
| @@ -202,9 +205,9 @@ const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
|
| CASE_SIGN_OP(I8x16, AddSaturate, "add_saturate")
|
| CASE_SIGN_OP(I16x8, SubSaturate, "sub_saturate")
|
| CASE_SIGN_OP(I8x16, SubSaturate, "sub_saturate")
|
| + CASE_S128_OP(And, "and")
|
| CASE_S128_OP(Or, "or")
|
| CASE_S128_OP(Xor, "xor")
|
| - CASE_S128_OP(And, "and")
|
| CASE_S128_OP(Not, "not")
|
| CASE_S32x4_OP(Select, "select")
|
| CASE_S32x4_OP(Swizzle, "swizzle")
|
| @@ -215,6 +218,24 @@ const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
|
| CASE_S8x16_OP(Select, "select")
|
| CASE_S8x16_OP(Swizzle, "swizzle")
|
| CASE_S8x16_OP(Shuffle, "shuffle")
|
| + CASE_S1x4_OP(And, "and")
|
| + CASE_S1x4_OP(Or, "or")
|
| + CASE_S1x4_OP(Xor, "xor")
|
| + CASE_S1x4_OP(Not, "not")
|
| + CASE_S1x4_OP(AnyTrue, "any_true")
|
| + CASE_S1x4_OP(AllTrue, "all_true")
|
| + CASE_S1x8_OP(And, "and")
|
| + CASE_S1x8_OP(Or, "or")
|
| + CASE_S1x8_OP(Xor, "xor")
|
| + CASE_S1x8_OP(Not, "not")
|
| + CASE_S1x8_OP(AnyTrue, "any_true")
|
| + CASE_S1x8_OP(AllTrue, "all_true")
|
| + CASE_S1x16_OP(And, "and")
|
| + CASE_S1x16_OP(Or, "or")
|
| + CASE_S1x16_OP(Xor, "xor")
|
| + CASE_S1x16_OP(Not, "not")
|
| + CASE_S1x16_OP(AnyTrue, "any_true")
|
| + CASE_S1x16_OP(AllTrue, "all_true")
|
|
|
| // Atomic operations.
|
| CASE_L32_OP(AtomicAdd, "atomic_add")
|
|
|