gdb: LoongArch: Support reg aliases in info reg command
authorHui Li <lihui@loongson.cn>
Thu, 16 Feb 2023 01:22:25 +0000 (09:22 +0800)
committerTiezhu Yang <yangtiezhu@loongson.cn>
Thu, 23 Feb 2023 12:36:02 +0000 (20:36 +0800)
According to LoongArch ELF ABI specification [1], support the register
aliases in "info register" command.

Without this patch:
```
(gdb) info reg a0
Invalid register `a0'

```
With this patch:

```
(gdb) info reg a0

a0             0x1                 1

```
[1] https://loongson.github.io/LoongArch-Documentation/LoongArch-ELF-ABI-EN.html#_register_convention

Signed-off-by: Hui Li <lihui@loongson.cn>
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
gdb/loongarch-tdep.c

index 67ea5494d909ea69d40cd9336a225a4ed9847274..f5ddad0ba6524fdec3c5bbd3374880581803ada1 100644 (file)
@@ -387,6 +387,14 @@ loongarch_software_single_step (struct regcache *regcache)
   return {next_pc};
 }
 
+/* Callback function for user_reg_add.  */
+
+static struct value *
+value_of_loongarch_user_reg (frame_info_ptr frame, const void *baton)
+{
+  return value_of_register ((long long) baton, frame);
+}
+
 /* Implement the frame_align gdbarch method.  */
 
 static CORE_ADDR
@@ -1589,6 +1597,19 @@ loongarch_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
   info.target_desc = tdesc;
   info.tdesc_data = tdesc_data.get ();
 
+  for (int i = 0; i < ARRAY_SIZE (loongarch_r_lp64_name); ++i)
+    if (loongarch_r_lp64_name[i][0] != '\0')
+      user_reg_add (gdbarch, loongarch_r_lp64_name[i] + 1,
+       value_of_loongarch_user_reg, (void *) (size_t) i);
+
+  for (int i = 0; i < ARRAY_SIZE (loongarch_f_lp64_name); ++i)
+    {
+      if (loongarch_f_lp64_name[i][0] != '\0')
+       user_reg_add (gdbarch, loongarch_f_lp64_name[i] + 1,
+                     value_of_loongarch_user_reg,
+                     (void *) (size_t) (LOONGARCH_FIRST_FP_REGNUM + i));
+    }
+
   /* Information about registers.  */
   set_gdbarch_num_regs (gdbarch, regnum);
   set_gdbarch_sp_regnum (gdbarch, LOONGARCH_SP_REGNUM);