[llvm-branch-commits] [lldb] [lldb][AArch64][Linux] Add function to get register buffers (PR #213977)
David Spickett via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Aug 12 03:55:56 PDT 2026
================
@@ -250,30 +252,8 @@ class NativeRegisterContextLinux_arm64
void SetSVERegVG(uint64_t vg) { m_sve_header.vl = vg * 8; }
- void *GetSVEHeader() { return &m_sve_header; }
-
- void *GetZAHeader() { return &m_za_header; }
-
- void *GetPACMask() { return &m_pac_mask; }
-
- void *GetMTEControl() { return &m_mte_ctrl_reg; }
-
- void *GetTLSBuffer() { return &m_tls_regs; }
-
void *GetSMEPseudoBuffer() { return &m_sme_pseudo_regs; }
----------------
DavidSpickett wrote:
SME pseudo registers don't come from real registers, so I'm leaving them alone for now.
I hope that at the end I can convert them too but I have a feeling it might be better for them to stay as they are.
https://github.com/llvm/llvm-project/pull/213977
More information about the llvm-branch-commits
mailing list