Sam Clegg
Sam Clegg
I wish it would stay active too.. if only to avoid switching to something new.. but it seem like its not working. @poloka do you work on this project? Is...
It seems possible to do this in a backwards compatible pay-as-you-go way: In the current binary format all 3 places where init expressions are use are currently preceded by a...
This came up recently on an issue in the WASI repo it was mentioned that linux has signalfd(): https://man7.org/linux/man-pages/man2/signalfd.2.html. How many of the use cases you have in mind do...
Also maybe if interest: https://github.com/WebAssembly/stack-switching
I guess you could achieve something like that by picking the empty string as your default?
the use of `"env"` is specific to emscripten, I don't think we would want to introduce that as a some magic value in the spec. Its already leaked a bit...
The entire emscripten toolchain (emscripten, binaryen, llvm) as well as wabt already support for the extended names section. Are you building with `-g` (or `--profiling-funcs`) without which no names at...
Regarding producers, we have discussion over on tooling conventions about if/when to enable a given feature by default: https://github.com/WebAssembly/tool-conventions/issues/158. The goal would be for tools to align on the same...
I believe @fgmccabe was interested in this too. From the emscripten/llvm producer side tables have generally been considered read-only, but now that we are doing more dynamic linking we are...
When you say it "adds extra code to every call_indirect" you don't mean adding code that would *run* for check for every call_indirect, right? The "am I calling untyped JS?"...