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 bound check of classic interpreter mode will do extra work if WASM_ENABLE_MEMORY64 is enabled https://github.com/bytecodealliance/wasm-micro-runtime/blob/9b9e938bee7b41f026fa9aeee988a5bfc63d55ed/core/iwasm/interpreter/wasm_interp_classic.c#L89-L102 In fast interp mode, bound check does not do extra work if WASM_ENABLE_MEMORY64 is...

Here is the assembly of test code ![image](https://github.com/bytecodealliance/wasm-micro-runtime/assets/26028060/cb04ef26-6f77-4710-bc8c-92c23e62cae5) When the breakpoint is triggered at "fun [79] return", as shown in the following figure: ![image](https://github.com/bytecodealliance/wasm-micro-runtime/assets/26028060/72bdb19f-17de-41b6-a916-26f1cc6f94d1) At this point, the runtime is...

source debugger

Hi, I am trying to run wasm code on Pico through wamr and Zephyr by using command "west build -b rpi_pico -p always -- -DWAMR_BUILD_TARGET=THUMB" It works. However after flashing...

I used the Windows environment to compile iwasm.exe for testing, and when the debugging feature is enabled during compilation, compared to no debugging feature the program runs very slowly. After...

performance
source debugger

## Background We are planning to add more backends into WAMR to enrich its capability in ML/LLM/AI field. Currently the only backend(in `libraries/wasi-nn`) is tensorflow-lite. The code in `core/iwasm/libraries/wasi-nn` can...

enhancement
wasi-nn

When i run following code in wasm.i receive an error message:Exception: out of bounds memory access cJSON* jRoot = cJSON_CreateObject(); for (int i = 0; i < 47; i++)//Greater than...

when WASM_ENABLE_LABELS_AS_VALUES is 0. The macro HANDLE_OP_END is executed at the end of each opcode. This macro will check and count step_count, but because of this check, so many singlestep...

source debugger