Volodymyr Shymanskyy
Volodymyr Shymanskyy
Please take your time. I think we have better tools to investigate this issue!
Related to #41
When you run out of gas the execution is **halted** not paused. With that in mind, it should be easy to save state of the Wasm module, it's just the...
Increased to 256 MB: https://github.com/wasm3/wasm3/blob/7890a2097569fde845881e0b352d813573e371f9/platforms/app/main.c#L129
@dstogov , please elaborate if possible
You cannot link variables directly, you can only use `m3_GetGlobal`, `m3_SetGlobal` to access them
Fixed. Thanks!
I don't think `d_m3EnableCodePageRefCounting` is currently supported. Better to disable it for now. m3ReallocArray will need to be changed to something like: ```cpp func->codePageRefs = m3_ReallocArray (IM3CodePage, func->codePageRefs, func->numCodePageRefs, index);...
Runtime_ReleaseCodePages was never implemented, so you can just comment it out: https://github.com/wasm3/wasm3/blob/9f8766b9016aec1278e490cc5348605d2fec5fe4/source/m3_env.c#L35-L38
@soundandform probably should remove that option completely?