Keith Winstein
Keith Winstein
~~(This PR is sequenced behind #1875, #1814, #1877 and #1999.)~~ This PR adds support for the reference-types proposal (per https://github.com/WebAssembly/wabt/pull/1853#issuecomment-1062094906). This makes it possible to run all of the non-SIMD...
(This PR is sequenced behind ~~#1875 and~~ #1814.) Support bulk memory operations in wasm2c (the next step in the checklist at https://github.com/WebAssembly/wabt/pull/1853#issuecomment-1062094906). This PR also adds test coverage: - The...
(Spinning this off from https://github.com/WebAssembly/wabt/pull/1814#discussion_r850917266) Here is a proposal for how to improve safety when linking multiple modules together with wasm2c. As background: - At present, for every import **or**...
Would be great to get a daily dump of the poll data. Otherwise it's hard to replicate the NYT's own math, follow along at home or explore alternate assumptions.
It might be a good idea to fix the random seed used for the 250,000 realizations of the simulation, in case readers are interested in reproducing exactly the numbers reported...
The current tests do not test `br*` instructions inside a try-catch block (either inside the body of the try block or one of the catch blocks). There are some subtleties...
It's possible to pass the current rethrow test (https://github.com/WebAssembly/exception-handling/blob/main/test/core/rethrow.wast) with an implementation that ignores the `labelidx` and always rethrows the innermost (or outermost, or an arbitrary...) caught exception. It would...
This is ready to go after #1887 (and probably a prereq for #1994). The Wast lexer changes are necessary because of https://github.com/WebAssembly/spec/pull/1499 . There may be a more elegant way...
Fixes #2388 by representing float constants as reinterpretations of an integer. This seems a bit safer than using a decimal `%.9g` or `%.17g` literal, and allows us to remove some...
The function-references and gc proposals are going to be merged into the spec soon (as well as the "v4" revision of the exception-handling proposal, which we don't support yet). It...