Siddharth Tewari
Siddharth Tewari
Currently, there is an easy way to get all required information. Once we are able to push in the Core section of the coredump which contains just the executable name,...
Thank you for the inputs! > Which two kinds of classes do you talk about? [https://github.com/WasmEdge/WasmEdge/blob/05de8ee7457b9e5278a19728a12eb17e29162f3e/include/vm/vm.h#L288](https://github.com/WasmEdge/WasmEdge/blob/05de8ee7457b9e5278a19728a12eb17e29162f3e/include/vm/vm.h#L288) and [https://github.com/WasmEdge/WasmEdge/blob/05de8ee7457b9e5278a19728a12eb17e29162f3e/include/executor/executor.h#L932](https://github.com/WasmEdge/WasmEdge/blob/05de8ee7457b9e5278a19728a12eb17e29162f3e/include/executor/executor.h#L932) ## Current Thoughts/Implementation: - The core custom section is now implemented. -...
The most latest commit is a WIP draft. There may be a slight mess. Apologies
### Update - Working on the data section and memory sections. These can be pulled from the `ModuleInstance` through a getter function for `OwnedDataInsts` and `OwnedMemInsts`. Inputs on this choice...
### Update - it seems like a few changes are breaking changes with regards to Wasmgdb tooling compatibility for multimodule support as has been noted by the spec's authors. LinkRel:...
### Current blockers - I am having a hard time figuring out the corestack section. I need in particular: `locals:vec(value)` and `stack:vec(value)` - Currently I am iterating over all frames...
### Update - The most recent commit contains `corestack`, partially implemented `data` and `global` sections. - There may be no need for a globals section. I think it comes with...
### Current Concerns/doubts/reviews required: - In `CoreStack` I require `thread-info:thread name` and need to verify if the way I am getting Locals and Stack values is valid or not. Need...
> You posted several comments over the weekend. Are all of them up to date, or could you summarize your blockers and questions in a single comment? Yes, I had...
> Are you asking us to generate the test data for you? No, I'd just like you to have a look at the code and give your opinions on if...