-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
fix(ts/fast-strip): Increase Wasm stack size #10359
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
fix(ts/fast-strip): Increase Wasm stack size #10359
Conversation
|
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.
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
Files not reviewed (1)
- bindings/binding_typescript_wasm/scripts/build.sh: Language not supported
We can using another way to resolve this case: iterative parsing of parenthesis. |
I love this idea 👍 |
You can merge it. Actully, I found it quite challenging to make progress in parsing parentheses using an iterative approach. |
CodSpeed Performance ReportMerging #10359 will degrade performances by 2.08%Comparing Summary
Benchmarks breakdown
|
Thank you! |
Description:
Currently the stack-size for local variables of the generated wasm code is preconfigured to be 1048576 bytes. In some extreme case, it's easy to reach this limit. So we increased stack size by hand.
More detail reference to: drager/wasm-pack#479
BREAKING CHANGE:
None
Related issue (if exists):
Closes #10207