-
Notifications
You must be signed in to change notification settings - Fork 735
Add check for code section size, fix interp float operations #1480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| loader_ctx->frame_ref -= 2; | ||
| loader_ctx->stack_cell_num -= 2; | ||
| #if (WASM_ENABLE_FAST_INTERP == 0) || (WASM_ENABLE_JIT != 0) | ||
| #if WASM_ENABLE_FAST_INTERP == 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why we need to remove WASM_ENABLE_JIT != 0 here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The classic interpreter is enabled when LLVM JIT is enabled, no need to add the macro control again.
xujuntwt95329
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Add check for code section size, fix interp float operations (bytecodealliance#1480)
…ealliance#1480) And enable classic interpreter instead fast interpreter when llvm jit is enabled, so as to fix the issue that llvm jit cannot handle opcode drop_64/select_64.
No description provided.