Keith Winstein
Keith Winstein
The [annotations.wast](https://github.com/WebAssembly/annotations/blob/main/test/core/annotations.wast) test is going to make us implement the second one of these; it uses `(module quote)` outside of `(assert_malformed)`.
Thanks as always for these reports! I think this particular one is expected and "disclosed" here: https://github.com/WebAssembly/wabt/blob/main/src/template/wasm2c_simd.declarations.c#L6 The root issue here is that: - out-of-bounds accesses on Wasm must trap...
I think the root issue here is that wasm-decompile doesn't know how to handle a `br` to the implicit function label, which is basically equivalent to a `return`. My guess...
Where is your wasm2wat binary (run `which wasm2wat`)? This kind of error suggests you're running a binary that didn't come from Ubuntu -- maybe a binary compiled elsewhere or expecting...
> I actually downloaded it manually here from github (as I did on Windows), not sure if I have to install it some other way? Generally speaking, on Linux you...
We don't currently support the function-references or gc proposals (we don't even have them on the matrix at https://github.com/WebAssembly/wabt/), but given their imminent merger into the spec, I would really...
I think this PR probably makes you the leading active wasm-decompiler person we have. :-) Your strategy sounds good but I don't think I have any better ideas...
My own opinion is that I'd love to focus on having our deliverable be source code (like a typical old-school FLOSS project), and let downstream distributors (Linux distributions, PPAs, MacPorts,...
Looks like only two tests are failing, both related to SIMD. But this seems quite close. The simd_address failure is expected as we have a TODO for this (https://github.com/WebAssembly/wabt/blob/main/src/template/wasm2c_simd.declarations.c#L6); somebody...
I think we probably could talk ourselves into merging the CI change without the tests 100% passing on arm64 yet, but somebody needs to submit it as a Pull Request...