[Lldb-commits] [lldb] [lldb] Implement WebAssembly debugging (PR #76683)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Jan 12 08:03:33 PST 2024
================
@@ -2595,6 +2606,37 @@ bool DWARFExpression::Evaluate(
break;
}
+ case DW_OP_WASM_location: {
+ uint8_t wasm_op = opcodes.GetU8(&offset);
+ uint32_t index;
+
+ /* LLDB doesn't have an address space to represents WebAssembly Locals,
+ * GLobals and operand stacks.
----------------
JDevlieghere wrote:
`s/GLobals/globals/`
https://github.com/llvm/llvm-project/pull/76683
More information about the lldb-commits
mailing list