mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-09 21:26:21 +00:00
Fix issue of restoring wasm operand stack (#1721)
This commit is contained in:
parent
021130f4a3
commit
032b9aa74b
|
@ -89,18 +89,6 @@ wasm_interp_call_wasm(struct WASMModuleInstance *module_inst,
|
||||||
struct WASMFunctionInstance *function, uint32 argc,
|
struct WASMFunctionInstance *function, uint32 argc,
|
||||||
uint32 argv[]);
|
uint32 argv[]);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Restore the wasm stack frame to the last native frame or the begging
|
|
||||||
* of the whole stack
|
|
||||||
* @note e.g. for stack "begin --> interp --> interp", it will back to the
|
|
||||||
* "begin", for stack "begin --> interp --> native --> interp", it will become
|
|
||||||
* "begin --> interp --> native"
|
|
||||||
*
|
|
||||||
* @param exec_env the execution environment
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
wasm_interp_restore_wasm_frame(struct WASMExecEnv *exec_env);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -805,26 +805,6 @@ FREE_FRAME(WASMExecEnv *exec_env, WASMInterpFrame *frame)
|
||||||
wasm_exec_env_free_wasm_frame(exec_env, frame);
|
wasm_exec_env_free_wasm_frame(exec_env, frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
wasm_interp_restore_wasm_frame(WASMExecEnv *exec_env)
|
|
||||||
{
|
|
||||||
WASMInterpFrame *cur_frame, *prev_frame;
|
|
||||||
|
|
||||||
cur_frame = wasm_exec_env_get_cur_frame(exec_env);
|
|
||||||
while (cur_frame) {
|
|
||||||
prev_frame = cur_frame->prev_frame;
|
|
||||||
if (cur_frame->ip) {
|
|
||||||
/* FREE_FRAME just set the wasm_stack.s.top pointer, we only need to
|
|
||||||
* call it once */
|
|
||||||
FREE_FRAME(exec_env, cur_frame);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
cur_frame = prev_frame;
|
|
||||||
}
|
|
||||||
|
|
||||||
wasm_exec_env_set_cur_frame(exec_env, cur_frame);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
wasm_interp_call_func_native(WASMModuleInstance *module_inst,
|
wasm_interp_call_func_native(WASMModuleInstance *module_inst,
|
||||||
WASMExecEnv *exec_env,
|
WASMExecEnv *exec_env,
|
||||||
|
|
|
@ -869,26 +869,6 @@ FREE_FRAME(WASMExecEnv *exec_env, WASMInterpFrame *frame)
|
||||||
wasm_exec_env_free_wasm_frame(exec_env, frame);
|
wasm_exec_env_free_wasm_frame(exec_env, frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
wasm_interp_restore_wasm_frame(WASMExecEnv *exec_env)
|
|
||||||
{
|
|
||||||
WASMInterpFrame *cur_frame, *prev_frame;
|
|
||||||
|
|
||||||
cur_frame = wasm_exec_env_get_cur_frame(exec_env);
|
|
||||||
while (cur_frame) {
|
|
||||||
prev_frame = cur_frame->prev_frame;
|
|
||||||
if (cur_frame->ip) {
|
|
||||||
/* FREE_FRAME just set the wasm_stack.s.top pointer, we only need to
|
|
||||||
* call it once */
|
|
||||||
FREE_FRAME(exec_env, cur_frame);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
cur_frame = prev_frame;
|
|
||||||
}
|
|
||||||
|
|
||||||
wasm_exec_env_set_cur_frame(exec_env, cur_frame);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
wasm_interp_call_func_native(WASMModuleInstance *module_inst,
|
wasm_interp_call_func_native(WASMModuleInstance *module_inst,
|
||||||
WASMExecEnv *exec_env,
|
WASMExecEnv *exec_env,
|
||||||
|
|
|
@ -2027,6 +2027,8 @@ call_wasm_with_hw_bound_check(WASMModuleInstance *module_inst,
|
||||||
WASMJmpBuf jmpbuf_node = { 0 }, *jmpbuf_node_pop;
|
WASMJmpBuf jmpbuf_node = { 0 }, *jmpbuf_node_pop;
|
||||||
uint32 page_size = os_getpagesize();
|
uint32 page_size = os_getpagesize();
|
||||||
uint32 guard_page_count = STACK_OVERFLOW_CHECK_GUARD_PAGE_COUNT;
|
uint32 guard_page_count = STACK_OVERFLOW_CHECK_GUARD_PAGE_COUNT;
|
||||||
|
WASMRuntimeFrame *prev_frame = wasm_exec_env_get_cur_frame(exec_env);
|
||||||
|
uint8 *prev_top = exec_env->wasm_stack.s.top;
|
||||||
#ifdef BH_PLATFORM_WINDOWS
|
#ifdef BH_PLATFORM_WINDOWS
|
||||||
const char *exce;
|
const char *exce;
|
||||||
int result;
|
int result;
|
||||||
|
@ -2081,13 +2083,18 @@ call_wasm_with_hw_bound_check(WASMModuleInstance *module_inst,
|
||||||
ret = false;
|
ret = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (wasm_get_exception(module_inst)) {
|
/* Note: can't check wasm_get_exception(module_inst) here, there may be
|
||||||
|
* exception which is not caught by hardware (e.g. uninitialized elements),
|
||||||
|
* then the stack-frame is already freed inside wasm_interp_call_wasm */
|
||||||
|
if (!ret) {
|
||||||
#if WASM_ENABLE_DUMP_CALL_STACK != 0
|
#if WASM_ENABLE_DUMP_CALL_STACK != 0
|
||||||
if (wasm_interp_create_call_stack(exec_env)) {
|
if (wasm_interp_create_call_stack(exec_env)) {
|
||||||
wasm_interp_dump_call_stack(exec_env, true, NULL, 0);
|
wasm_interp_dump_call_stack(exec_env, true, NULL, 0);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
wasm_interp_restore_wasm_frame(exec_env);
|
/* Restore operand frames */
|
||||||
|
wasm_exec_env_set_cur_frame(exec_env, prev_frame);
|
||||||
|
exec_env->wasm_stack.s.top = prev_top;
|
||||||
}
|
}
|
||||||
|
|
||||||
jmpbuf_node_pop = wasm_exec_env_pop_jmpbuf(exec_env);
|
jmpbuf_node_pop = wasm_exec_env_pop_jmpbuf(exec_env);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user