-
Notifications
You must be signed in to change notification settings - Fork 47
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
Reduce analysis call overhead: use WebAssembly as analysis language, inline #14
Comments
I was looking for a tool that could help us to develop |
Can you elaborate a bit how Wasm3 (which is an interpreter for Wasm, right?) is useful for Wasabi? |
As |
|
That's interesting. So may I ask why wasabi described as "A dynamic analysis framework"? Perhaps you use different runtime for now. Also |
The instrumentation is static, the analysis happens dynamically (but in the browser or Node.JS, since we assume a JavaScript host environment, which was the only type of host at the time of creation of Wasabi). More info: http://wasabi.software-lab.org/#how-does-it-work
|
Thank you for the clarification. It was just my guess, perhaps @vshymanskyy meant something another application. |
@danleh yup. I also first thought that Wasm3 could help interpreting dynamically the generated analyzer, but after your comments in #23 I now it's not very different from passing the generated wasm file to the native (in-browser) wasm engine via some js glue code...
|
Alright, for more comments/ideas on WASI support in Wasabi, let's stick to #23. |
The text was updated successfully, but these errors were encountered: