Making calls to WebAssembly fast and implementing anyref
1–7 of 7 posts
Re: Making calls to WebAssembly fast and implementing anyref
#2Re: Making calls to WebAssembly fast and implementing anyref
#3I am curious to know if this also makes calls from WASM into JS faster. One of the issues with WASM is that you need the JS DOM API, it is essentially your OS abstraction layer, so faster that is, the better WASM will be.
Re: Making calls to WebAssembly fast and implementing anyref
#4On that issue i've spent the last month having to also go through and remake tooling for wasm because Emscripten is still stuck in the asm.js ages and isn't at all flexibly modifiable.
Re: Making calls to WebAssembly fast and implementing anyref
#5Re: Making calls to WebAssembly fast and implementing anyref
#6I am curious to know if this also makes calls from WASM into JS faster. One of the issues with WASM is that you need the JS DOM API, it is essentially your OS abstraction layer, so faster that is, the better WASM will be.
Re: Making calls to WebAssembly fast and implementing anyref
#7EDIT: I mean, why wouldn't that be one of the first items on the agenda of WASM? I was surprised when I found out that this seemingly isn't high on the list of priorities. If WASM is meant exclusively for high performance sections of code, it makes more sense, but that's a bit dull if you ask me. The ability to use any compiled language as a front-end language is far more interesting.