wasm-micro-runtime icon indicating copy to clipboard operation
wasm-micro-runtime copied to clipboard

WebAssembly Micro Runtime (WAMR)

Results 327 wasm-micro-runtime issues
Sort by recently updated
recently updated
newest added

The following wasm module: ``` (module (func (result i32) (i32.load (i32.const 0)) ) (memory 0) ) ``` when compiled by `wamrc` (version f3f8d684b319de3f7cb0895f4b7be88e796ec4a5) with option `--bounds-checks=1`, produces the following machine...

Add a new option `WAMR_BUILD_STACK_GUARD_SIZE` to use custom stack guard size, for most RTOS port, we use stack base as check boundry which may not safety as POSIX based system...

Thread data should not be destroyed when thread exits, or other thread may not be able to join it. This PR saves the thread data into thread data list when...

Does WAMR support execute wast file ? For example: (module (func (export "div_s") (param $x i64) (param $y i64) (result i64) (i64.div_s (local.get $x) (local.get $y))) ) (assert_trap (invoke "div_s"...

I execute the following files in JIT mode. [demo.zip](https://github.com/bytecodealliance/wasm-micro-runtime/files/9234339/demo.zip) It prints the following error. ``` Exception: lookup the entry point symbol (like _start, main, _main, __main_argc_argv) failed LLVM ERROR: IMAGE_REL_AMD64_ADDR32NB...

i wrote a test case to experiment memory import. (see below) my intention is to share a single "mem" instance. i believe it's the spec-wise correct behavior. it works as...

Does this project have any plan to implement supports for importing memories and tables when instantiating a WebAssembly Instance? Besides, any plan to implement the `grow` method of memories and...

Hello, I was wondering if anyone is aware of how to access the memory as a byte array from the wasm_exec_env_t in C? I have seen someone do it in...

## Steps to reproduce [test2-wat.txt](https://github.com/bytecodealliance/wasm-micro-runtime/files/9290632/test2-wat.txt) [test1-c.txt](https://github.com/bytecodealliance/wasm-micro-runtime/files/9290633/test1-c.txt) [test2-c.txt](https://github.com/bytecodealliance/wasm-micro-runtime/files/9290634/test2-c.txt) [test1-wat.txt](https://github.com/bytecodealliance/wasm-micro-runtime/files/9290636/test1-wat.txt) test1.c is uploaded as test1-c.txt , so as test2.c. test1.wat is uploaded as test1-wat.txt, so as test2.wat. #### (1)interpreter `cd build` `cmake...

I compile the following file using AOT compiler. [demo.zip](https://github.com/bytecodealliance/wasm-micro-runtime/files/9234139/demo.zip) It prints the following error. ``` WASM module load failed: type mismatch, opcode drop was found but stack was empty ```...