gdb: move struct reggroup into reggroups.h header
authorAndrew Burgess <aburgess@redhat.com>
Thu, 31 Mar 2022 17:10:34 +0000 (18:10 +0100)
committerAndrew Burgess <aburgess@redhat.com>
Thu, 7 Apr 2022 15:01:18 +0000 (16:01 +0100)
Move 'struct reggroup' into the reggroups.h header.  Remove the
reggroup_name and reggroup_type accessor functions, and just use the
name/type member functions within 'struct reggroup', update all uses
of these removed functions.

There should be no user visible changes after this commit.

gdb/completer.c
gdb/infcmd.c
gdb/nds32-tdep.c
gdb/python/py-registers.c
gdb/regcache-dump.c
gdb/reggroups.c
gdb/reggroups.h
gdb/target-descriptions.c
gdb/tui/tui-regs.c

index f4b5917095d7c993af6bf246dcd02b33192b3513..fea3eb9329d8464c8d74fb219d53182f568b36f7 100644 (file)
@@ -1821,7 +1821,7 @@ reg_or_group_completer_1 (completion_tracker &tracker,
     {
       for (const struct reggroup *group : gdbarch_reggroups (gdbarch))
        {
-         name = reggroup_name (group);
+         name = group->name ();
          if (strncmp (word, name, len) == 0)
            tracker.add_completion (make_unique_xstrdup (name));
        }
index 9abb91f2faa32c001690445469e94dd4bddbc3de..719bd6888a8c1e884d227f1e30e8c3a549bdd9a2 100644 (file)
@@ -2301,7 +2301,7 @@ registers_info (const char *addr_exp, int fpregs)
            /* Don't bother with a length check.  Should the user
               enter a short register group name, go with the first
               group that matches.  */
-           if (strncmp (start, reggroup_name (g), end - start) == 0)
+           if (strncmp (start, g->name (), end - start) == 0)
              {
                group = g;
                break;
index 06b129bdd313af3dda3f675e5b949f3f3444821e..e95ad7cc6621e9e40b1e1c27b0859ec576af24b6 100644 (file)
@@ -390,7 +390,7 @@ nds32_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
   /* The NDS32 reggroup contains registers whose name is prefixed
      by reggroup name.  */
   reg_name = gdbarch_register_name (gdbarch, regnum);
-  group_name = reggroup_name (reggroup);
+  group_name = reggroup->name ();
   return !strncmp (reg_name, group_name, strlen (group_name));
 }
 \f
index 6255ddac9e77b17f15e57cf59bea3b74e848a2e9..bbb322f068ce80159e00a0b3bde96331cea9e1f2 100644 (file)
@@ -136,8 +136,7 @@ gdbpy_reggroup_to_string (PyObject *self)
   reggroup_object *group = (reggroup_object *) self;
   const reggroup *reggroup = group->reggroup;
 
-  const char *name = reggroup_name (reggroup);
-  return PyUnicode_FromString (name);
+  return PyUnicode_FromString (reggroup->name ());
 }
 
 /* Implement gdb.RegisterGroup.name (self) -> String.
index 409a868be7664680380597befc8fb0117050fbf6..0c5da0e241d259a78a3c526fa21d1dd5491e63ee 100644 (file)
@@ -196,8 +196,7 @@ protected:
          {
            if (gdbarch_register_reggroup_p (m_gdbarch, regnum, group))
              {
-               gdb_printf (file,
-                           "%s%s", sep, reggroup_name (group));
+               gdb_printf (file, "%s%s", sep, group->name ());
                sep = ",";
              }
          }
index 643337e3aee0f53947a1d9d2339e1828d6b3ba4c..42232811087b16aad2f292e56c27502158b8de13 100644 (file)
 #include "gdbcmd.h"            /* For maintenanceprintlist.  */
 #include "gdbsupport/gdb_obstack.h"
 
-/* Individual register groups.  */
-
-struct reggroup
-{
-  /* Create a new register group object.  The NAME is not owned by the new
-     reggroup object, so must outlive the object.  */
-  reggroup (const char *name, enum reggroup_type type)
-    : m_name (name),
-      m_type (type)
-  { /* Nothing.  */ }
-
-  /* Return the name for this register group.  */
-  const char *name () const
-  { return m_name; }
-
-  /* Return the type of this register group.  */
-  enum reggroup_type type () const
-  { return m_type; }
-
-private:
-  /* The name of this register group.  */
-  const char *m_name;
-
-  /* The type of this register group.  */
-  enum reggroup_type m_type;
-};
-
 const reggroup *
 reggroup_new (const char *name, enum reggroup_type type)
 {
@@ -72,20 +45,6 @@ reggroup_gdbarch_new (struct gdbarch *gdbarch, const char *name,
                                       name, type);
 }
 
-/* Register group attributes.  */
-
-const char *
-reggroup_name (const struct reggroup *group)
-{
-  return group->name ();
-}
-
-enum reggroup_type
-reggroup_type (const struct reggroup *group)
-{
-  return group->type ();
-}
-
 /* A container holding all the register groups for a particular
    architecture.  */
 
index 2f38b67e9a2dc3dbbd302edf53a5a749b69ab079..5f8a8a395b3c28f71fb5a10bd05f94610955ae31 100644 (file)
 #define REGGROUPS_H
 
 struct gdbarch;
-struct reggroup;
 
 enum reggroup_type { USER_REGGROUP, INTERNAL_REGGROUP };
 
+/* Individual register group.  */
+
+struct reggroup
+{
+  /* Create a new register group object.  The NAME is not owned by the new
+     reggroup object, so must outlive the object.  */
+  reggroup (const char *name, enum reggroup_type type)
+    : m_name (name),
+      m_type (type)
+  { /* Nothing.  */ }
+
+  /* Return the name for this register group.  */
+  const char *name () const
+  { return m_name; }
+
+  /* Return the type of this register group.  */
+  enum reggroup_type type () const
+  { return m_type; }
+
+private:
+  /* The name of this register group.  */
+  const char *m_name;
+
+  /* The type of this register group.  */
+  enum reggroup_type m_type;
+};
+
 /* Pre-defined, user visible, register groups.  */
 extern const reggroup *const general_reggroup;
 extern const reggroup *const float_reggroup;
@@ -50,10 +76,6 @@ extern const reggroup *reggroup_gdbarch_new (struct gdbarch *gdbarch,
 /* Add a register group (with attribute values) to the pre-defined list.  */
 extern void reggroup_add (struct gdbarch *gdbarch, const reggroup *group);
 
-/* Register group attributes.  */
-extern const char *reggroup_name (const struct reggroup *reggroup);
-extern enum reggroup_type reggroup_type (const struct reggroup *reggroup);
-
 /* Return the list of all register groups for GDBARCH.  */
 extern const std::vector<const reggroup *> &
        gdbarch_reggroups (struct gdbarch *gdbarch);
index 33277c3d02dfe4d03423f811bb3636cc22beb243..85954ac29395eae25cc222b26f958f7d1e99a83f 100644 (file)
@@ -1012,7 +1012,7 @@ tdesc_register_in_reggroup_p (struct gdbarch *gdbarch, int regno,
   struct tdesc_reg *reg = tdesc_find_register (gdbarch, regno);
 
   if (reg != NULL && !reg->group.empty ()
-      && (reg->group == reggroup_name (reggroup)))
+      && (reg->group == reggroup->name ()))
        return 1;
 
   if (reg != NULL
index 2e597d061dc2cbdba0607d601b03ebd27b3570e1..5106a3b967077f589e12344e4a0aba6a36bbca6a 100644 (file)
@@ -216,7 +216,7 @@ tui_data_window::show_register_group (const reggroup *group,
   int regnum, pos;
 
   /* Make a new title showing which group we display.  */
-  title = string_printf ("Register group: %s", reggroup_name (group));
+  title = string_printf ("Register group: %s", group->name ());
 
   /* See how many registers must be displayed.  */
   nr_regs = 0;
@@ -595,7 +595,7 @@ tui_reg_command (const char *args, int from_tty)
             group then the switch is made.  */
          for (const struct reggroup *group : gdbarch_reggroups (gdbarch))
            {
-             if (strncmp (reggroup_name (group), args, len) == 0)
+             if (strncmp (group->name (), args, len) == 0)
                {
                  if (match != NULL)
                    error (_("ambiguous register group name '%s'"), args);
@@ -621,7 +621,7 @@ tui_reg_command (const char *args, int from_tty)
          if (!first)
            gdb_printf (", ");
          first = false;
-         gdb_printf ("%s", reggroup_name (group));
+         gdb_printf ("%s", group->name ());
        }
 
       gdb_printf ("\n");