[Lldb-commits] [lldb] [lldb][debugserver] Upstream to debugserver changes (PR #155733)
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 28 09:49:36 PDT 2025
================
@@ -244,6 +266,7 @@ kern_return_t DNBArchMachARM64::GetGPRState(bool force) {
uint64_t log_sp = m_state.context.gpr.__sp;
uint64_t log_pc = m_state.context.gpr.__pc;
#endif
+ uint64_t *x = &m_state.context.gpr.__x[0];
----------------
jasonmolenda wrote:
Yeah, in the logging line just a bit later,
```
m_thread->MachPortNumber(), e_regSetGPR, e_regSetGPRCount, kret, count,
x[0], x[1], x[2], x[3], x[4], x[5], x[6], x[7], x[8], x[9], x[0], x[11],
```
https://github.com/llvm/llvm-project/pull/155733
More information about the lldb-commits
mailing list