We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi !
I ve instrumented wasm and then trying to test it without any analysis script. But getting following error in Chrome console:
CompileError: WebAssembly.instantiate(): Compiling function #687 failed: local count too large @+4757612
According to this: https://github.com/MIPS/external-v8/blob/master/src/wasm/wasm-limits.h There is a limit for function locals equal to 50 000 ?
Any workaround on this ? Is it possible to increase this limit without rebuilding Chrome ? Maybe Wasabi inserting too many locals in some way ?
The text was updated successfully, but these errors were encountered:
Yeah it is a known problem that Wasabi's insertion of local variables while instrumentaing can exceed the maximum local count. Refer to this issue #42
I have a fork that alleviates this problem to some degree, if you want to try, here is the link:
https://github.com/jakobgetz/wasabi/tree/jakob
Sorry, something went wrong.
Yeah it is a known problem that Wasabi's insertion of local variables while instrumentaing can exceed the maximum local count. Refer to this issue #42 I have a fork that alleviates this problem to some degree, if you want to try, here is the link: https://github.com/jakobgetz/wasabi/tree/jakob
Tnaks a lot fot quick reply. I ll give it a try today
Dublicate of #42
No branches or pull requests
Hi !
I ve instrumented wasm and then trying to test it without any analysis script.
But getting following error in Chrome console:
CompileError: WebAssembly.instantiate(): Compiling function #687 failed: local count too large @+4757612
According to this: https://github.com/MIPS/external-v8/blob/master/src/wasm/wasm-limits.h
There is a limit for function locals equal to 50 000 ?
Any workaround on this ? Is it possible to increase this limit without rebuilding Chrome ?
Maybe Wasabi inserting too many locals in some way ?
The text was updated successfully, but these errors were encountered: