Re: [v8-users] Re: Inspecting Wasm Memory in ChromeDevTools

2020-09-22 Thread Immanuel Haffner
Hi Clemens, thanks a lot for your help. You are brilliant! Your solution works out of the box ;) [image: wasm_memory.png] Now I can finally tackle those bugs in the Wasm code. Kind regards, Immanuel Am Dienstag, 22. September 2020 12:30:43 UTC+2 schrieb Clemens Backes: > > Hi Immanuel, > > the

Re: [v8-users] Re: Inspecting Wasm Memory in ChromeDevTools

2020-09-22 Thread 'Clemens Backes' via v8-users
Hi Immanuel, the problem is probably related to your manipulation of the raw memory pointer . For debugging, we are not using this pointer, but the WasmMemoryObject

[v8-users] Re: Inspecting Wasm Memory in ChromeDevTools

2020-09-22 Thread Immanuel Haffner
I upgraded V8 to v8.6.405 and Chromium to 85. Still the problem persists that the Wasm linear memory appears "all zeroes" although the Wasm code reads the correct data. Could anybody please provide some help? Immanuel Haffner schrieb am Montag, 14. September 2020 um 14:21:28 UTC+2: > Hi all,