-
In this example `env:adler32` is imported and `adler32` is exported:
```
(module
(type (;0;) (func (param i32 i32) (result i32)))
(type (;1;) (func (param i32) (result i32)))
(import "env…
-
I'm failing to run a simple f32 function, and I wonder if it is just a parsing problem, or if there is something more fundamental that doesn't work.
Consider the following wasm program:
```wast
…
-
We are using a test case for benchmarking (it is ~18kB, [wasm binary here](https://github.com/ewasm/benchmarking/blob/master/wasm-engines/wasmfiles/guido-fuzzer-find-1.wasm?raw=true)). This test case …
-
We need to come up with some stack access API, as currently we can only get function results by tampering with the stack directly. I.e. this has to be revised:
https://github.com/wasm3/wasm3/blob/99b…
-
Hi.
After examining the code base, I found that dispatching each instruction takes a indirect function call, Which has more overhead compared to the 'computed goto' technique AFAIK.
-
Hi!
I am adding [CoreMark to the emscripten benchmark suite](https://github.com/emscripten-core/emscripten/pull/10426) and noticed I get different results than yours - v8 is 1.5x slower than native…
-
Currently, if multiple named exported functions share a single implementation, Wasm3 only exposes one of the exported functions to clients. This is because only the first name is saved to `M3Function`…
-
Hello Peter, yes, this maybe is not completely related to this repo but I think you are the best person to ask about this. :)
A while ago I read your article about converting WASM to C. And this go…
-
Would it be possible to have `libm3.so` and `libm3.dll`?
-
I want to load the local WASM file on the iOS platform, I want to know what I should do