[Lldb-commits] [lldb] [lldb] AArch64 register 33 is not cpsr (PR #183860)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 2 06:31:09 PST 2026
================
@@ -71,8 +71,6 @@ std::pair<uint32_t, uint32_t>
ABIAArch64::GetEHAndDWARFNums(llvm::StringRef name) {
if (name == "pc")
return {arm64_ehframe::pc, arm64_dwarf::pc};
- if (name == "cpsr")
- return {arm64_ehframe::cpsr, arm64_dwarf::cpsr};
----------------
DavidSpickett wrote:
I see a65da5f5924fbb7bad28bbb397e3e9a94959df4c updated them from a document that has now moved to https://github.com/ARM-software/abi-aa/blob/main/aadwarf64/aadwarf64.rst.
The implication is that the DWARF numbers are also the EH frame numbers, though this code looks like it can handle them being different.
https://github.com/llvm/llvm-project/pull/183860
More information about the lldb-commits
mailing list