public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] gdb/csky modify registers list for general_reggroup
@ 2022-07-12  2:23 Jiangshuai Li
  2022-07-12  3:21 ` Enze Li
  0 siblings, 1 reply; 3+ messages in thread
From: Jiangshuai Li @ 2022-07-12  2:23 UTC (permalink / raw)
  To: gdb-patches; +Cc: jiangshuai_li

there are two modification points here:
1. for the debugging of csky architecture, after executing "info register",
   we hope to print out GPRs, PC and the registers related to exceptions
2. with tdesc-xml, users can view the register groups described in XML
---
 gdb/csky-tdep.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/gdb/csky-tdep.c b/gdb/csky-tdep.c
index 502b01e33e1..fcdb865eb87 100644
--- a/gdb/csky-tdep.c
+++ b/gdb/csky-tdep.c
@@ -2518,7 +2518,11 @@ csky_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
   if (reggroup == save_reggroup || reggroup == restore_reggroup)
     return raw_p;
 
-  if (((regnum >= CSKY_R0_REGNUM) && (regnum <= CSKY_R0_REGNUM + 31))
+  if ((((regnum >= CSKY_R0_REGNUM) && (regnum <= CSKY_R0_REGNUM + 31))
+       || (regnum == CSKY_PC_REGNUM)
+       || (regnum == CSKY_EPC_REGNUM)
+       || (regnum == CSKY_CR0_REGNUM)
+       || (regnum == CSKY_EPSR_REGNUM))
       && (reggroup == general_reggroup))
     return 1;
 
@@ -2548,6 +2552,10 @@ csky_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
       && (reggroup == fr_reggroup))
     return 6;
 
+  if (tdesc_has_registers (gdbarch_target_desc (gdbarch)))
+    if (tdesc_register_in_reggroup_p (gdbarch, regnum, reggroup) > 0)
+      return 7;
+
   return 0;
 }
 
@@ -3020,6 +3028,8 @@ csky_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
       set_gdbarch_num_regs (gdbarch, (num_regs + 1));
       tdesc_use_registers (gdbarch, info.target_desc, std::move (tdesc_data));
       set_gdbarch_register_type (gdbarch, csky_register_type);
+      set_gdbarch_register_reggroup_p (gdbarch,
+                                       csky_register_reggroup_p);
     }
 
   if (tdep->fv_pseudo_registers_count)
-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-12  3:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-12  2:23 [PATCH] gdb/csky modify registers list for general_reggroup Jiangshuai Li
2022-07-12  3:21 ` Enze Li
2022-07-12  3:31   ` Enze Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).