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

for debugging etc, it would be great to have a way to dump translated bytecode in a human readable format. i feel `WASM_DEBUG_PREPROCESSOR` is a bit too primitive.

enhancement
fast interpreter
wasm loader

``` Load wasm module failed. error: AOT module load failed: invalid target type, expected arm64 but got aarch64v8 ``` wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_aarch64.c ``` #if (defined(__APPLE__) || defined(__MACH__)) && defined(__arm64__) #define BUILD_TARGET_AARCH64_DEFAULT "arm64"...

duplicate

currently minimum ram size needed to run wamr is 1 page of 64KB? possible to configure page size smaller to run on a MCU with 64KB sram?

footprint

the following code traps. ("Exception: unreachable", x86-64) ``` (module (func (export "_start") i32.const 0 i32.load offset=0xffff_fffc i32.const 0x1234_5678 i32.ne if unreachable end ) (memory (export "memory") 65536) (data (i32.const 0xffff_fffc)...

I think there might be a bug in `tensor_data_app_native` function in `core/iwasm/libraries/wasi-nn/src/utils/wasi_nn_app_native.c` file: the last parameter passed to `wasm_runtime_validate_app_addr` should be `total_elements` * `size of each element`, which depending on...

bug
wasi-nn

Other Wasm runtimes have support for gas metering or fuel that allow Wasm code to have an upper bound on computation. Wasmtime's implementation even supports yielding. It'd be great to...

If there is no else branch for the if block, make a virtual else opcode for easier checking and to copy the correct results to the block return address in...

**code in wasm**: ` #include "socket_utils.h" #include #include #include #include #ifdef __wasi__ #include #endif ... int testTcpClient() { int socket_fd, ret, total_size = 0, af; char buffer[1024] = { 0...

In classic-interpreter, fast-interpreter, and fast-jit running modes, set the local variables' default value to NULL_REF rather than 0 if they are externref and funcref This PR will fix #3390 #3391

### Subject of the issue WAMR on fast interpreter mode raises an unexpected exception. ### Test case [tt_finterp_exceptionx.zip](https://github.com/bytecodealliance/wasm-micro-runtime/files/15244715/tt_finterp_exceptionx.zip) ### Your environment * Host OS: Ubuntu 20.04 * Commit Id: 1c2a8fca4e9bf969ae27240a0918ee8164dfd598...