Results 1275 comments of Alon Zakai

Thanks @surma ! Looks like the help text was indeed wrong, fix in #7398

I'd also be curious what your use case for wasm-merge is, if you can share that...

Interesting use case! > this approach didn’t really reduce the total number of bytes and resulted in a new component with a disproportionate number of new trampoline modules Is there...

I'm not sure if it's a worst-case bound, but it is what I saw on a handful of large/realistic wasm files. Yes, maybe we can optimize a little more here,...

This was implemented in an Asyncify-like manner elsewhere.

https://github.com/google/bloaty has support for wasm files, and shows section sizes. How many exports are there, btw? (can list them with `wasm-opt --metrics -all`)

Can you paste the output of running this: ``` $ time wasmer run hello_world.wasm $ cp hello_world.wasm t.wasm $ time wasmer run t.wasm ``` The last command should be running...

Very strange... All wasm-reduce does is run `popen("timeout 2s $CMD 2> /dev/null")`, so perhaps the timeout is a factor here? Otherwise I have no guesses, but perhaps try tinkering with...

Interesting work here! We have been considering some changes to Flatten, including relaxing it, so this may help inform that. Btw, do you still need Asyncify, given JSPI is in...

To use JSPI you would need to call out to JS, then back in, but JS can then pause/resume you just like Asyncify. Is this QEMU port for an environment...