classic-interp: Handle SIMD opcode when JIT is enabled (#3046)
Though SIMD isn't supported by interpreter, when JIT is enabled, developer may run `iwasm --interp <wasm_file>` to trigger the SIMD opcode in interpreter, which isn't handled before this PR.
This commit is contained in:
@ -3843,6 +3843,12 @@ wasm_interp_call_func_bytecode(WASMModuleInstance *module,
|
||||
HANDLE_OP(WASM_OP_REF_NULL)
|
||||
HANDLE_OP(WASM_OP_REF_IS_NULL)
|
||||
HANDLE_OP(WASM_OP_REF_FUNC)
|
||||
#endif
|
||||
#if WASM_ENABLE_JIT != 0 && WASM_ENABLE_SIMD != 0
|
||||
/* SIMD isn't supported by interpreter, but when JIT is
|
||||
enabled, `iwasm --interp <wasm_file>` may be run to
|
||||
trigger the SIMD opcode in interpreter */
|
||||
HANDLE_OP(WASM_OP_SIMD_PREFIX)
|
||||
#endif
|
||||
HANDLE_OP(WASM_OP_UNUSED_0x14)
|
||||
HANDLE_OP(WASM_OP_UNUSED_0x15)
|
||||
|
||||
Reference in New Issue
Block a user