[Lldb-commits] [lldb] [lldb] Implement RegisterContextWasm (PR #151056)
Max Desiatov via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 29 12:54:49 PDT 2025
================
@@ -1998,6 +1998,61 @@ threads (live system debug) / cores (JTAG) in your program have
stopped and allows LLDB to display and control your program
correctly.
+## qWasmCallStack
+
+Get the Wasm call stack for the given thread id. This returns a hex-encoded
+list of PC values, one for each frame of the call stack. To match the Wasm
+specification, the addresses are encoded in little endian byte order, even if
+the endian of the Wasm runtime's host is not little endian.
+
+```
+send packet: $qWasmCallStack:202dbe040#08
+read packet: $9c01000000000040e501000000000040fe01000000000040#
+```
+
+**Priority to Implement:** Only required for Wasm support. This packed is
----------------
MaxDesiatov wrote:
```suggestion
**Priority to Implement:** Only required for Wasm support. This packet is
```
https://github.com/llvm/llvm-project/pull/151056
More information about the lldb-commits
mailing list