Wenyong Huang
Wenyong Huang
Hi, if the whole wasm file is loaded by wasm_runtime_load or wasm_runtime_load_ex, it is not easy to free the buffer of wasm file since some fields in the WASMModule may...
> Thanks, I just had a go with this suggestion and it works nicely, however some of the code linked is using wamr internals (E.g. os_mmap, many compiler definitions etc)...
> > Note that it only frees SECTION_TYPE_DATA section, but for fast-interp, maybe you can try to free SECTION_TYPE_FUNC also > > Is there any guidance on which sections I...
Yes, not sure what `WAMR generates bytecode` means here? Is it the pre-compiled bytecode generated by wasm loader for fast-interp, or the LLVM IR (or machine code) generated by the...
Hi, it may be a little complex to dump the pre-compiled bytecode with well-formed human readable format, is it good to dump the opcode mnemonics instead of the hex value?...
@erxiaozhou thanks for reporting the issue, it is similar to #3386 when handling the if block in loader: ```wast if (param f32) (result f32) ;; label = @1 end ```...
@lucasAbadFr could you upload the patch or create a PR and change it to draft or WIP, so that others can have a try according to your work?
Close the issue since it was fixed.
@lucasAbadFr I am not sure who is using zephyr but I believe there are some developers requiring libc-wasi on zephyr. I found there are many modifications in `wasm_runtime_common.c` and `core/iwasm/libraries/libc-wasi`...
OK, I read the code and added some comments, it should be OK to abstract some `os_xxx` structures and functions. I think maybe you can enable the basic functionality and...