[Lldb-commits] [lldb] [LLDB] Enable TLS Variable Debugging Without Location Info on AArch64 (PR #110822)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 27 17:33:21 PST 2025
================
@@ -73,19 +73,20 @@
#undef DECLARE_REGISTER_INFOS_ARM64_STRUCT
static lldb_private::RegisterInfo g_register_infos_pauth[] = {
- DEFINE_EXTENSION_REG(data_mask), DEFINE_EXTENSION_REG(code_mask)};
+ DEFINE_EXTENSION_REG(data_mask, KIND_ALL_INVALID),
+ DEFINE_EXTENSION_REG(code_mask, KIND_ALL_INVALID)};
static lldb_private::RegisterInfo g_register_infos_mte[] = {
- DEFINE_EXTENSION_REG(mte_ctrl)};
+ DEFINE_EXTENSION_REG(mte_ctrl, KIND_ALL_INVALID)};
static lldb_private::RegisterInfo g_register_infos_tls[] = {
- DEFINE_EXTENSION_REG(tpidr),
+ DEFINE_EXTENSION_REG(tpidr, GENERIC_KIND(LLDB_REGNUM_GENERIC_TP)),
----------------
clayborg wrote:
Agreed. Make a new #define if needed for this one.
https://github.com/llvm/llvm-project/pull/110822
More information about the lldb-commits
mailing list