| Index: src/wasm/wasm-opcodes.h
|
| diff --git a/src/wasm/wasm-opcodes.h b/src/wasm/wasm-opcodes.h
|
| index b4aaed130c50075d46ee91997d3177ea787a705f..59322bf10a98f1be99bfb1a433451e8b49a0a654 100644
|
| --- a/src/wasm/wasm-opcodes.h
|
| +++ b/src/wasm/wasm-opcodes.h
|
| @@ -406,6 +406,9 @@ const WasmCodePosition kNoCodePosition = -1;
|
| V(S128Xor, 0xe578, s_ss) \
|
| V(S128Not, 0xe579, s_s)
|
|
|
| +// For enabling JIT functionality
|
| +#define FOREACH_JIT_OPCODE(V) V(JITSingleFunction, 0xf0, _)
|
| +
|
| // All opcodes.
|
| #define FOREACH_OPCODE(V) \
|
| FOREACH_CONTROL_OPCODE(V) \
|
| @@ -416,7 +419,8 @@ const WasmCodePosition kNoCodePosition = -1;
|
| FOREACH_LOAD_MEM_OPCODE(V) \
|
| FOREACH_MISC_MEM_OPCODE(V) \
|
| FOREACH_ASMJS_COMPAT_OPCODE(V) \
|
| - FOREACH_SIMD_OPCODE(V)
|
| + FOREACH_SIMD_OPCODE(V) \
|
| + FOREACH_JIT_OPCODE(V)
|
|
|
| // All signatures.
|
| #define FOREACH_SIGNATURE(V) \
|
|
|