Make tdesc_feature::types an std::vector
[deliverable/binutils-gdb.git] / gdb / target-descriptions.c
index 33ae1fa7ebceff34d0b2cce5d3e22c7c03cb65e2..8f105a6a7bd13ed2ab75a20c7cf9898837885543 100644 (file)
 #include "gdb_obstack.h"
 #include "hashtab.h"
 #include "inferior.h"
+#include <algorithm>
+#include "completer.h"
+#include "readline/tilde.h" /* tilde_expand */
+
+/* The interface to visit different elements of target description.  */
+
+class tdesc_element_visitor
+{
+public:
+  virtual void visit_pre (const target_desc *e) = 0;
+  virtual void visit_post (const target_desc *e) = 0;
+
+  virtual void visit_pre (const tdesc_feature *e) = 0;
+  virtual void visit_post (const tdesc_feature *e) = 0;
+
+  virtual void visit (const tdesc_type *e) = 0;
+  virtual void visit (const tdesc_reg *e) = 0;
+};
+
+class tdesc_element
+{
+public:
+  virtual void accept (tdesc_element_visitor &v) const = 0;
+};
 
 /* Types.  */
 
-typedef struct property
+struct property
 {
-  char *key;
-  char *value;
-} property_s;
-DEF_VEC_O(property_s);
+  property (const std::string &key_, const std::string &value_)
+  : key (key_), value (value_)
+  {}
+
+  std::string key;
+  std::string value;
+};
 
 /* An individual register from a target description.  */
 
-typedef struct tdesc_reg
+struct tdesc_reg : tdesc_element
 {
+  tdesc_reg (struct tdesc_feature *feature, const std::string &name_,
+            int regnum, int save_restore_, const char *group_,
+            int bitsize_, const char *type_)
+    : name (name_), target_regnum (regnum),
+      save_restore (save_restore_),
+      group (group_ != NULL ? group_ : ""),
+      bitsize (bitsize_),
+      type (type_ != NULL ? type_ : "<unknown>")
+  {
+    /* If the register's type is target-defined, look it up now.  We may not
+       have easy access to the containing feature when we want it later.  */
+    tdesc_type = tdesc_named_type (feature, type.c_str ());
+  }
+
+  virtual ~tdesc_reg () = default;
+
+  DISABLE_COPY_AND_ASSIGN (tdesc_reg);
+
   /* The name of this register.  In standard features, it may be
      recognized by the architecture support code, or it may be purely
      for the user.  */
-  char *name;
+  std::string name;
 
   /* The register number used by this target to refer to this
      register.  This is used for remote p/P packets and to determine
@@ -62,14 +107,14 @@ typedef struct tdesc_reg
      around calls to an inferior function.  */
   int save_restore;
 
-  /* The name of the register group containing this register, or NULL
+  /* The name of the register group containing this register, or empty
      if the group should be automatically determined from the
      register's type.  If this is "general", "float", or "vector", the
      corresponding "info" command should display this register's
      value.  It can be an arbitrary string, but should be limited to
      alphanumeric characters and internal hyphens.  Currently other
-     strings are ignored (treated as NULL).  */
-  char *group;
+     strings are ignored (treated as empty).  */
+  std::string group;
 
   /* The size of the register, in bits.  */
   int bitsize;
@@ -77,12 +122,33 @@ typedef struct tdesc_reg
   /* The type of the register.  This string corresponds to either
      a named type from the target description or a predefined
      type from GDB.  */
-  char *type;
+  std::string type;
 
   /* The target-described type corresponding to TYPE, if found.  */
   struct tdesc_type *tdesc_type;
-} *tdesc_reg_p;
-DEF_VEC_P(tdesc_reg_p);
+
+  void accept (tdesc_element_visitor &v) const override
+  {
+    v.visit (this);
+  }
+
+  bool operator== (const tdesc_reg &other) const
+  {
+    return (name == other.name
+           && target_regnum == other.target_regnum
+           && save_restore == other.save_restore
+           && bitsize == other.bitsize
+           && group == other.group
+           && type == other.type);
+  }
+
+  bool operator!= (const tdesc_reg &other) const
+  {
+    return !(*this == other);
+  }
+};
+
+typedef std::unique_ptr<tdesc_reg> tdesc_reg_up;
 
 /* A named type from a target description.  */
 
@@ -126,10 +192,47 @@ enum tdesc_type_kind
   TDESC_TYPE_ENUM
 };
 
-typedef struct tdesc_type
+struct tdesc_type : tdesc_element
 {
-  /* The name of this type.  */
-  char *name;
+  tdesc_type (const char *name_, enum tdesc_type_kind kind_)
+    : name (xstrdup (name_)), kind (kind_)
+  {
+    memset (&u, 0, sizeof (u));
+  }
+
+  virtual ~tdesc_type ()
+  {
+    switch (kind)
+      {
+      case TDESC_TYPE_STRUCT:
+      case TDESC_TYPE_UNION:
+      case TDESC_TYPE_FLAGS:
+      case TDESC_TYPE_ENUM:
+       {
+         struct tdesc_type_field *f;
+         int ix;
+
+         for (ix = 0;
+              VEC_iterate (tdesc_type_field, u.u.fields, ix, f);
+              ix++)
+           xfree (f->name);
+
+         VEC_free (tdesc_type_field, u.u.fields);
+       }
+       break;
+
+      default:
+       break;
+      }
+    xfree ((char *) name);
+  }
+
+  DISABLE_COPY_AND_ASSIGN (tdesc_type);
+
+  /* The name of this type.  If this type is a built-in type, this is
+     a pointer to a constant string.  Otherwise, it's a
+     malloc-allocated string (and thus must be freed).  */
+  const char *name;
 
   /* Identify the kind of this type.  */
   enum tdesc_type_kind kind;
@@ -151,49 +254,166 @@ typedef struct tdesc_type
       int size;
     } u;
   } u;
-} *tdesc_type_p;
-DEF_VEC_P(tdesc_type_p);
+
+  void accept (tdesc_element_visitor &v) const override
+  {
+    v.visit (this);
+  }
+
+  bool operator== (const tdesc_type &other) const
+  {
+    return (streq (name, other.name) && kind == other.kind);
+  }
+
+  bool operator!= (const tdesc_type &other) const
+  {
+    return !(*this == other);
+  }
+};
+
+typedef std::unique_ptr<tdesc_type> tdesc_type_up;
 
 /* A feature from a target description.  Each feature is a collection
    of other elements, e.g. registers and types.  */
 
-typedef struct tdesc_feature
+struct tdesc_feature : tdesc_element
 {
+  tdesc_feature (const std::string &name_)
+    : name (name_)
+  {}
+
+  virtual ~tdesc_feature () = default;
+
+  DISABLE_COPY_AND_ASSIGN (tdesc_feature);
+
   /* The name of this feature.  It may be recognized by the architecture
      support code.  */
-  char *name;
+  std::string name;
 
   /* The registers associated with this feature.  */
-  VEC(tdesc_reg_p) *registers;
+  std::vector<std::unique_ptr<tdesc_reg>> registers;
 
   /* The types associated with this feature.  */
-  VEC(tdesc_type_p) *types;
-} *tdesc_feature_p;
-DEF_VEC_P(tdesc_feature_p);
+  std::vector<tdesc_type_up> types;
+
+  void accept (tdesc_element_visitor &v) const override
+  {
+    v.visit_pre (this);
+
+    for (const tdesc_type_up &type : types)
+      type->accept (v);
+
+    for (const tdesc_reg_up &reg : registers)
+      reg->accept (v);
+
+    v.visit_post (this);
+  }
+
+  bool operator== (const tdesc_feature &other) const
+  {
+    if (name != other.name)
+      return false;
+
+    if (registers.size () != other.registers.size ())
+      return false;
+
+    for (int ix = 0; ix < registers.size (); ix++)
+      {
+       const tdesc_reg_up &reg1 = registers[ix];
+       const tdesc_reg_up &reg2 = other.registers[ix];
+
+       if (reg1 != reg2 && *reg1 != *reg2)
+         return false;
+      }
+
+    if (types.size () != other.types.size ())
+      return false;
+
+    for (int ix = 0; ix < types.size (); ix++)
+      {
+       const tdesc_type_up &type1 = types[ix];
+       const tdesc_type_up &type2 = other.types[ix];
+
+       if (type1 != type2 && *type1 != *type2)
+         return false;
+      }
 
-/* A compatible architecture from a target description.  */
-typedef const struct bfd_arch_info *arch_p;
-DEF_VEC_P(arch_p);
+    return true;
+  }
+
+  bool operator!= (const tdesc_feature &other) const
+  {
+    return !(*this == other);
+  }
+};
+
+typedef std::unique_ptr<tdesc_feature> tdesc_feature_up;
 
 /* A target description.  */
 
-struct target_desc
+struct target_desc : tdesc_element
 {
+  target_desc ()
+  {}
+
+  virtual ~target_desc () = default;
+
+  target_desc (const target_desc &) = delete;
+  void operator= (const target_desc &) = delete;
+
   /* The architecture reported by the target, if any.  */
-  const struct bfd_arch_info *arch;
+  const struct bfd_arch_info *arch = NULL;
 
   /* The osabi reported by the target, if any; GDB_OSABI_UNKNOWN
      otherwise.  */
-  enum gdb_osabi osabi;
+  enum gdb_osabi osabi = GDB_OSABI_UNKNOWN;
 
   /* The list of compatible architectures reported by the target.  */
-  VEC(arch_p) *compatible;
+  std::vector<const bfd_arch_info *> compatible;
 
   /* Any architecture-specific properties specified by the target.  */
-  VEC(property_s) *properties;
+  std::vector<property> properties;
 
   /* The features associated with this target.  */
-  VEC(tdesc_feature_p) *features;
+  std::vector<std::unique_ptr<tdesc_feature>> features;
+
+  void accept (tdesc_element_visitor &v) const override
+  {
+    v.visit_pre (this);
+
+    for (const tdesc_feature_up &feature : features)
+      feature->accept (v);
+
+    v.visit_post (this);
+  }
+
+  bool operator== (const target_desc &other) const
+  {
+    if (arch != other.arch)
+      return false;
+
+    if (osabi != other.osabi)
+      return false;
+
+    if (features.size () != other.features.size ())
+      return false;
+
+    for (int ix = 0; ix < features.size (); ix++)
+      {
+       const tdesc_feature_up &feature1 = features[ix];
+       const tdesc_feature_up &feature2 = other.features[ix];
+
+       if (feature1 != feature2 && *feature1 != *feature2)
+         return false;
+      }
+
+    return true;
+  }
+
+  bool operator!= (const target_desc &other) const
+  {
+    return !(*this == other);
+  }
 };
 
 /* Per-architecture data associated with a target description.  The
@@ -413,11 +633,7 @@ int
 tdesc_compatible_p (const struct target_desc *target_desc,
                    const struct bfd_arch_info *arch)
 {
-  const struct bfd_arch_info *compat;
-  int ix;
-
-  for (ix = 0; VEC_iterate (arch_p, target_desc->compatible, ix, compat);
-       ix++)
+  for (const bfd_arch_info *compat : target_desc->compatible)
     {
       if (compat == arch
          || arch->compatible (arch, compat)
@@ -437,13 +653,9 @@ tdesc_compatible_p (const struct target_desc *target_desc,
 const char *
 tdesc_property (const struct target_desc *target_desc, const char *key)
 {
-  struct property *prop;
-  int ix;
-
-  for (ix = 0; VEC_iterate (property_s, target_desc->properties, ix, prop);
-       ix++)
-    if (strcmp (prop->key, key) == 0)
-      return prop->value;
+  for (const property &prop : target_desc->properties)
+    if (prop.key == key)
+      return prop.value.c_str ();
 
   return NULL;
 }
@@ -473,16 +685,11 @@ tdesc_osabi (const struct target_desc *target_desc)
 int
 tdesc_has_registers (const struct target_desc *target_desc)
 {
-  int ix;
-  struct tdesc_feature *feature;
-
   if (target_desc == NULL)
     return 0;
 
-  for (ix = 0;
-       VEC_iterate (tdesc_feature_p, target_desc->features, ix, feature);
-       ix++)
-    if (! VEC_empty (tdesc_reg_p, feature->registers))
+  for (const tdesc_feature_up &feature : target_desc->features)
+    if (!feature->registers.empty ())
       return 1;
 
   return 0;
@@ -495,14 +702,9 @@ const struct tdesc_feature *
 tdesc_find_feature (const struct target_desc *target_desc,
                    const char *name)
 {
-  int ix;
-  struct tdesc_feature *feature;
-
-  for (ix = 0;
-       VEC_iterate (tdesc_feature_p, target_desc->features, ix, feature);
-       ix++)
-    if (strcmp (feature->name, name) == 0)
-      return feature;
+  for (const tdesc_feature_up &feature : target_desc->features)
+    if (feature->name == name)
+      return feature.get ();
 
   return NULL;
 }
@@ -512,7 +714,7 @@ tdesc_find_feature (const struct target_desc *target_desc,
 const char *
 tdesc_feature_name (const struct tdesc_feature *feature)
 {
-  return feature->name;
+  return feature->name.c_str ();
 }
 
 /* Predefined types.  */
@@ -542,32 +744,25 @@ static struct tdesc_type tdesc_predefined_types[] =
 static struct tdesc_type *
 tdesc_predefined_type (enum tdesc_type_kind kind)
 {
-  int ix;
-  struct tdesc_type *type;
-
-  for (ix = 0; ix < ARRAY_SIZE (tdesc_predefined_types); ix++)
+  for (int ix = 0; ix < ARRAY_SIZE (tdesc_predefined_types); ix++)
     if (tdesc_predefined_types[ix].kind == kind)
       return &tdesc_predefined_types[ix];
 
   gdb_assert_not_reached ("bad predefined tdesc type");
 }
 
-/* Return the type associated with ID in the context of FEATURE, or
-   NULL if none.  */
+/* See arch/tdesc.h.  */
 
 struct tdesc_type *
 tdesc_named_type (const struct tdesc_feature *feature, const char *id)
 {
-  int ix;
-  struct tdesc_type *type;
-
   /* First try target-defined types.  */
-  for (ix = 0; VEC_iterate (tdesc_type_p, feature->types, ix, type); ix++)
+  for (const tdesc_type_up &type : feature->types)
     if (strcmp (type->name, id) == 0)
-      return type;
+      return type.get ();
 
   /* Next try the predefined types.  */
-  for (ix = 0; ix < ARRAY_SIZE (tdesc_predefined_types); ix++)
+  for (int ix = 0; ix < ARRAY_SIZE (tdesc_predefined_types); ix++)
     if (strcmp (tdesc_predefined_types[ix].name, id) == 0)
       return &tdesc_predefined_types[ix];
 
@@ -779,7 +974,7 @@ tdesc_gdb_type (struct gdbarch *gdbarch, struct tdesc_type *tdesc_type)
        int ix;
 
        type = arch_flags_type (gdbarch, tdesc_type->name,
-                               tdesc_type->u.u.size);
+                               tdesc_type->u.u.size * TARGET_CHAR_BIT);
        for (ix = 0;
             VEC_iterate (tdesc_type_field, tdesc_type->u.u.fields, ix, f);
             ix++)
@@ -802,7 +997,8 @@ tdesc_gdb_type (struct gdbarch *gdbarch, struct tdesc_type *tdesc_type)
        int ix;
 
        type = arch_type (gdbarch, TYPE_CODE_ENUM,
-                         tdesc_type->u.u.size, tdesc_type->name);
+                         tdesc_type->u.u.size * TARGET_CHAR_BIT,
+                         tdesc_type->name);
        TYPE_UNSIGNED (type) = 1;
        for (ix = 0;
             VEC_iterate (tdesc_type_field, tdesc_type->u.u.fields, ix, f);
@@ -866,14 +1062,9 @@ static struct tdesc_reg *
 tdesc_find_register_early (const struct tdesc_feature *feature,
                           const char *name)
 {
-  int ixr;
-  struct tdesc_reg *reg;
-
-  for (ixr = 0;
-       VEC_iterate (tdesc_reg_p, feature->registers, ixr, reg);
-       ixr++)
-    if (strcasecmp (reg->name, name) == 0)
-      return reg;
+  for (const tdesc_reg_up &reg : feature->registers)
+    if (strcasecmp (reg->name.c_str (), name) == 0)
+      return reg.get ();
 
   return NULL;
 }
@@ -978,7 +1169,7 @@ tdesc_register_name (struct gdbarch *gdbarch, int regno)
   int num_pseudo_regs = gdbarch_num_pseudo_regs (gdbarch);
 
   if (reg != NULL)
-    return reg->name;
+    return reg->name.c_str ();
 
   if (regno >= num_regs && regno < num_regs + num_pseudo_regs)
     {
@@ -1020,7 +1211,7 @@ tdesc_register_type (struct gdbarch *gdbarch, int regno)
         arch_reg->type = tdesc_gdb_type (gdbarch, reg->tdesc_type);
 
       /* Next try size-sensitive type shortcuts.  */
-      else if (strcmp (reg->type, "float") == 0)
+      else if (reg->type == "float")
        {
          if (reg->bitsize == gdbarch_float_bit (gdbarch))
            arch_reg->type = builtin_type (gdbarch)->builtin_float;
@@ -1031,11 +1222,11 @@ tdesc_register_type (struct gdbarch *gdbarch, int regno)
          else
            {
              warning (_("Register \"%s\" has an unsupported size (%d bits)"),
-                      reg->name, reg->bitsize);
+                      reg->name.c_str (), reg->bitsize);
              arch_reg->type = builtin_type (gdbarch)->builtin_double;
            }
        }
-      else if (strcmp (reg->type, "int") == 0)
+      else if (reg->type == "int")
        {
          if (reg->bitsize == gdbarch_long_bit (gdbarch))
            arch_reg->type = builtin_type (gdbarch)->builtin_long;
@@ -1053,7 +1244,7 @@ tdesc_register_type (struct gdbarch *gdbarch, int regno)
          else
            {
              warning (_("Register \"%s\" has an unsupported size (%d bits)"),
-                      reg->name, reg->bitsize);
+                      reg->name.c_str (), reg->bitsize);
              arch_reg->type = builtin_type (gdbarch)->builtin_long;
            }
        }
@@ -1061,7 +1252,7 @@ tdesc_register_type (struct gdbarch *gdbarch, int regno)
       if (arch_reg->type == NULL)
        internal_error (__FILE__, __LINE__,
                        "Register \"%s\" has an unknown type \"%s\"",
-                       reg->name, reg->type);
+                       reg->name.c_str (), reg->type.c_str ());
     }
 
   return arch_reg->type;
@@ -1099,15 +1290,15 @@ tdesc_register_in_reggroup_p (struct gdbarch *gdbarch, int regno,
 {
   struct tdesc_reg *reg = tdesc_find_register (gdbarch, regno);
 
-  if (reg != NULL && reg->group != NULL)
+  if (reg != NULL && !reg->group.empty ())
     {
       int general_p = 0, float_p = 0, vector_p = 0;
 
-      if (strcmp (reg->group, "general") == 0)
+      if (reg->group == "general")
        general_p = 1;
-      else if (strcmp (reg->group, "float") == 0)
+      else if (reg->group == "float")
        float_p = 1;
-      else if (strcmp (reg->group, "vector") == 0)
+      else if (reg->group == "vector")
        vector_p = 1;
 
       if (reggroup == float_reggroup)
@@ -1198,9 +1389,6 @@ tdesc_use_registers (struct gdbarch *gdbarch,
                     struct tdesc_arch_data *early_data)
 {
   int num_regs = gdbarch_num_regs (gdbarch);
-  int ixf, ixr;
-  struct tdesc_feature *feature;
-  struct tdesc_reg *reg;
   struct tdesc_arch_data *data;
   struct tdesc_arch_reg *arch_reg, new_arch_reg = { 0 };
   htab_t reg_hash;
@@ -1219,21 +1407,17 @@ tdesc_use_registers (struct gdbarch *gdbarch,
      numbers where needed.  The hash table expands as necessary, so
      the initial size is arbitrary.  */
   reg_hash = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
-  for (ixf = 0;
-       VEC_iterate (tdesc_feature_p, target_desc->features, ixf, feature);
-       ixf++)
-    for (ixr = 0;
-        VEC_iterate (tdesc_reg_p, feature->registers, ixr, reg);
-        ixr++)
+  for (const tdesc_feature_up &feature : target_desc->features)
+    for (const tdesc_reg_up &reg : feature->registers)
       {
-       void **slot = htab_find_slot (reg_hash, reg, INSERT);
+       void **slot = htab_find_slot (reg_hash, reg.get (), INSERT);
 
-       *slot = reg;
+       *slot = reg.get ();
       }
 
   /* Remove any registers which were assigned numbers by the
      architecture.  */
-  for (ixr = 0;
+  for (int ixr = 0;
        VEC_iterate (tdesc_arch_reg, data->arch_regs, ixr, arch_reg);
        ixr++)
     if (arch_reg->reg)
@@ -1247,15 +1431,11 @@ tdesc_use_registers (struct gdbarch *gdbarch,
   gdb_assert (VEC_length (tdesc_arch_reg, data->arch_regs) <= num_regs);
   while (VEC_length (tdesc_arch_reg, data->arch_regs) < num_regs)
     VEC_safe_push (tdesc_arch_reg, data->arch_regs, &new_arch_reg);
-  for (ixf = 0;
-       VEC_iterate (tdesc_feature_p, target_desc->features, ixf, feature);
-       ixf++)
-    for (ixr = 0;
-        VEC_iterate (tdesc_reg_p, feature->registers, ixr, reg);
-        ixr++)
-      if (htab_find (reg_hash, reg) != NULL)
+  for (const tdesc_feature_up &feature : target_desc->features)
+    for (const tdesc_reg_up &reg : feature->registers)
+      if (htab_find (reg_hash, reg.get ()) != NULL)
        {
-         new_arch_reg.reg = reg;
+         new_arch_reg.reg = reg.get ();
          VEC_safe_push (tdesc_arch_reg, data->arch_regs, &new_arch_reg);
          num_regs++;
        }
@@ -1272,103 +1452,46 @@ tdesc_use_registers (struct gdbarch *gdbarch,
 }
 \f
 
-/* Methods for constructing a target description.  */
-
-static void
-tdesc_free_reg (struct tdesc_reg *reg)
-{
-  xfree (reg->name);
-  xfree (reg->type);
-  xfree (reg->group);
-  xfree (reg);
-}
+/* See arch/tdesc.h.  */
 
 void
 tdesc_create_reg (struct tdesc_feature *feature, const char *name,
                  int regnum, int save_restore, const char *group,
                  int bitsize, const char *type)
 {
-  struct tdesc_reg *reg = XCNEW (struct tdesc_reg);
-
-  reg->name = xstrdup (name);
-  reg->target_regnum = regnum;
-  reg->save_restore = save_restore;
-  reg->group = group ? xstrdup (group) : NULL;
-  reg->bitsize = bitsize;
-  reg->type = type ? xstrdup (type) : xstrdup ("<unknown>");
-
-  /* If the register's type is target-defined, look it up now.  We may not
-     have easy access to the containing feature when we want it later.  */
-  reg->tdesc_type = tdesc_named_type (feature, reg->type);
+  tdesc_reg *reg = new tdesc_reg (feature, name, regnum, save_restore,
+                                 group, bitsize, type);
 
-  VEC_safe_push (tdesc_reg_p, feature->registers, reg);
+  feature->registers.emplace_back (reg);
 }
 
-/* Subroutine of tdesc_free_feature to simplify it.
-   Note: We do not want to free any referenced types here (e.g., types of
-   fields of a struct).  All types of a feature are recorded in
-   feature->types and are freed that way.  */
-
-static void
-tdesc_free_type (struct tdesc_type *type)
-{
-  switch (type->kind)
-    {
-    case TDESC_TYPE_STRUCT:
-    case TDESC_TYPE_UNION:
-    case TDESC_TYPE_FLAGS:
-    case TDESC_TYPE_ENUM:
-      {
-       struct tdesc_type_field *f;
-       int ix;
-
-       for (ix = 0;
-            VEC_iterate (tdesc_type_field, type->u.u.fields, ix, f);
-            ix++)
-         xfree (f->name);
-
-       VEC_free (tdesc_type_field, type->u.u.fields);
-      }
-      break;
-
-    default:
-      break;
-    }
-
-  xfree (type->name);
-  xfree (type);
-}
+/* See arch/tdesc.h.  */
 
 struct tdesc_type *
 tdesc_create_vector (struct tdesc_feature *feature, const char *name,
                     struct tdesc_type *field_type, int count)
 {
-  struct tdesc_type *type = XCNEW (struct tdesc_type);
+  struct tdesc_type *type = new tdesc_type (name, TDESC_TYPE_VECTOR);
 
-  type->name = xstrdup (name);
-  type->kind = TDESC_TYPE_VECTOR;
   type->u.v.type = field_type;
   type->u.v.count = count;
 
-  VEC_safe_push (tdesc_type_p, feature->types, type);
+  feature->types.emplace_back (type);
   return type;
 }
 
+/* See arch/tdesc.h.  */
+
 struct tdesc_type *
 tdesc_create_struct (struct tdesc_feature *feature, const char *name)
 {
-  struct tdesc_type *type = XCNEW (struct tdesc_type);
+  struct tdesc_type *type = new tdesc_type (name, TDESC_TYPE_STRUCT);
 
-  type->name = xstrdup (name);
-  type->kind = TDESC_TYPE_STRUCT;
-
-  VEC_safe_push (tdesc_type_p, feature->types, type);
+  feature->types.emplace_back (type);
   return type;
 }
 
-/* Set the total length of TYPE.  Structs which contain bitfields may
-   omit the reserved bits, so the end of the last field may not
-   suffice.  */
+/* See arch/tdesc.h.  */
 
 void
 tdesc_set_struct_size (struct tdesc_type *type, int size)
@@ -1378,31 +1501,30 @@ tdesc_set_struct_size (struct tdesc_type *type, int size)
   type->u.u.size = size;
 }
 
+/* See arch/tdesc.h.  */
+
 struct tdesc_type *
 tdesc_create_union (struct tdesc_feature *feature, const char *name)
 {
-  struct tdesc_type *type = XCNEW (struct tdesc_type);
-
-  type->name = xstrdup (name);
-  type->kind = TDESC_TYPE_UNION;
+  struct tdesc_type *type = new tdesc_type (name, TDESC_TYPE_UNION);
 
-  VEC_safe_push (tdesc_type_p, feature->types, type);
+  feature->types.emplace_back (type);
   return type;
 }
 
+/* See arch/tdesc.h.  */
+
 struct tdesc_type *
 tdesc_create_flags (struct tdesc_feature *feature, const char *name,
                    int size)
 {
-  struct tdesc_type *type = XCNEW (struct tdesc_type);
+  struct tdesc_type *type = new tdesc_type (name, TDESC_TYPE_FLAGS);
 
   gdb_assert (size > 0);
 
-  type->name = xstrdup (name);
-  type->kind = TDESC_TYPE_FLAGS;
   type->u.u.size = size;
 
-  VEC_safe_push (tdesc_type_p, feature->types, type);
+  feature->types.emplace_back (type);
   return type;
 }
 
@@ -1410,19 +1532,17 @@ struct tdesc_type *
 tdesc_create_enum (struct tdesc_feature *feature, const char *name,
                   int size)
 {
-  struct tdesc_type *type = XCNEW (struct tdesc_type);
+  struct tdesc_type *type = new tdesc_type (name, TDESC_TYPE_ENUM);
 
   gdb_assert (size > 0);
 
-  type->name = xstrdup (name);
-  type->kind = TDESC_TYPE_ENUM;
   type->u.u.size = size;
 
-  VEC_safe_push (tdesc_type_p, feature->types, type);
+  feature->types.emplace_back (type);
   return type;
 }
 
-/* Add a new field to TYPE.  */
+/* See arch/tdesc.h.  */
 
 void
 tdesc_add_field (struct tdesc_type *type, const char *field_name,
@@ -1443,8 +1563,6 @@ tdesc_add_field (struct tdesc_type *type, const char *field_name,
   VEC_safe_push (tdesc_type_field, type->u.u.fields, &f);
 }
 
-/* Add a new typed bitfield to TYPE.  */
-
 void
 tdesc_add_typed_bitfield (struct tdesc_type *type, const char *field_name,
                          int start, int end, struct tdesc_type *field_type)
@@ -1463,9 +1581,7 @@ tdesc_add_typed_bitfield (struct tdesc_type *type, const char *field_name,
   VEC_safe_push (tdesc_type_field, type->u.u.fields, &f);
 }
 
-/* Add a new untyped bitfield to TYPE.
-   Untyped bitfields become either uint32 or uint64 depending on the size
-   of the underlying type.  */
+/* See arch/tdesc.h.  */
 
 void
 tdesc_add_bitfield (struct tdesc_type *type, const char *field_name,
@@ -1483,8 +1599,7 @@ tdesc_add_bitfield (struct tdesc_type *type, const char *field_name,
   tdesc_add_typed_bitfield (type, field_name, start, end, field_type);
 }
 
-/* A flag is just a typed(bool) single-bit bitfield.
-   This function is kept to minimize changes in generated files.  */
+/* See arch/tdesc.h.  */
 
 void
 tdesc_add_flag (struct tdesc_type *type, int start,
@@ -1519,68 +1634,31 @@ tdesc_add_enum_value (struct tdesc_type *type, int value,
   VEC_safe_push (tdesc_type_field, type->u.u.fields, &f);
 }
 
-static void
-tdesc_free_feature (struct tdesc_feature *feature)
-{
-  struct tdesc_reg *reg;
-  struct tdesc_type *type;
-  int ix;
-
-  for (ix = 0; VEC_iterate (tdesc_reg_p, feature->registers, ix, reg); ix++)
-    tdesc_free_reg (reg);
-  VEC_free (tdesc_reg_p, feature->registers);
-
-  for (ix = 0; VEC_iterate (tdesc_type_p, feature->types, ix, type); ix++)
-    tdesc_free_type (type);
-  VEC_free (tdesc_type_p, feature->types);
-
-  xfree (feature->name);
-  xfree (feature);
-}
+/* See arch/tdesc.h.  */
 
 struct tdesc_feature *
-tdesc_create_feature (struct target_desc *tdesc, const char *name)
+tdesc_create_feature (struct target_desc *tdesc, const char *name,
+                     const char *xml)
 {
-  struct tdesc_feature *new_feature = XCNEW (struct tdesc_feature);
+  struct tdesc_feature *new_feature = new tdesc_feature (name);
 
-  new_feature->name = xstrdup (name);
+  tdesc->features.emplace_back (new_feature);
 
-  VEC_safe_push (tdesc_feature_p, tdesc->features, new_feature);
   return new_feature;
 }
 
 struct target_desc *
 allocate_target_description (void)
 {
-  return XCNEW (struct target_desc);
+  return new target_desc ();
 }
 
 static void
 free_target_description (void *arg)
 {
   struct target_desc *target_desc = (struct target_desc *) arg;
-  struct tdesc_feature *feature;
-  struct property *prop;
-  int ix;
-
-  for (ix = 0;
-       VEC_iterate (tdesc_feature_p, target_desc->features, ix, feature);
-       ix++)
-    tdesc_free_feature (feature);
-  VEC_free (tdesc_feature_p, target_desc->features);
-
-  for (ix = 0;
-       VEC_iterate (property_s, target_desc->properties, ix, prop);
-       ix++)
-    {
-      xfree (prop->key);
-      xfree (prop->value);
-    }
-  VEC_free (property_s, target_desc->properties);
-
-  VEC_free (arch_p, target_desc->compatible);
 
-  xfree (target_desc);
+  delete target_desc;
 }
 
 struct cleanup *
@@ -1593,44 +1671,42 @@ void
 tdesc_add_compatible (struct target_desc *target_desc,
                      const struct bfd_arch_info *compatible)
 {
-  const struct bfd_arch_info *compat;
-  int ix;
-
   /* If this instance of GDB is compiled without BFD support for the
      compatible architecture, simply ignore it -- we would not be able
      to handle it anyway.  */
   if (compatible == NULL)
     return;
 
-  for (ix = 0; VEC_iterate (arch_p, target_desc->compatible, ix, compat);
-       ix++)
+  for (const bfd_arch_info *compat : target_desc->compatible)
     if (compat == compatible)
       internal_error (__FILE__, __LINE__,
                      _("Attempted to add duplicate "
                        "compatible architecture \"%s\""),
                      compatible->printable_name);
 
-  VEC_safe_push (arch_p, target_desc->compatible, compatible);
+  target_desc->compatible.push_back (compatible);
 }
 
 void
 set_tdesc_property (struct target_desc *target_desc,
                    const char *key, const char *value)
 {
-  struct property *prop, new_prop;
-  int ix;
-
   gdb_assert (key != NULL && value != NULL);
 
-  for (ix = 0; VEC_iterate (property_s, target_desc->properties, ix, prop);
-       ix++)
-    if (strcmp (prop->key, key) == 0)
-      internal_error (__FILE__, __LINE__,
-                     _("Attempted to add duplicate property \"%s\""), key);
+  if (tdesc_property (target_desc, key) != NULL)
+    internal_error (__FILE__, __LINE__,
+                   _("Attempted to add duplicate property \"%s\""), key);
 
-  new_prop.key = xstrdup (key);
-  new_prop.value = xstrdup (value);
-  VEC_safe_push (property_s, target_desc->properties, &new_prop);
+  target_desc->properties.emplace_back (key, value);
+}
+
+/* See arch/tdesc.h.  */
+
+void
+set_tdesc_architecture (struct target_desc *target_desc,
+                       const char *name)
+{
+  set_tdesc_architecture (target_desc, bfd_scan_arch (name));
 }
 
 void
@@ -1640,6 +1716,14 @@ set_tdesc_architecture (struct target_desc *target_desc,
   target_desc->arch = arch;
 }
 
+/* See arch/tdesc.h.  */
+
+void
+set_tdesc_osabi (struct target_desc *target_desc, const char *name)
+{
+  set_tdesc_osabi (target_desc, osabi_from_tdesc_string (name));
+}
+
 void
 set_tdesc_osabi (struct target_desc *target_desc, enum gdb_osabi osabi)
 {
@@ -1653,25 +1737,25 @@ static struct cmd_list_element *tdesc_unset_cmdlist;
 /* Helper functions for the CLI commands.  */
 
 static void
-set_tdesc_cmd (char *args, int from_tty)
+set_tdesc_cmd (const char *args, int from_tty)
 {
   help_list (tdesc_set_cmdlist, "set tdesc ", all_commands, gdb_stdout);
 }
 
 static void
-show_tdesc_cmd (char *args, int from_tty)
+show_tdesc_cmd (const char *args, int from_tty)
 {
   cmd_show_list (tdesc_show_cmdlist, from_tty, "");
 }
 
 static void
-unset_tdesc_cmd (char *args, int from_tty)
+unset_tdesc_cmd (const char *args, int from_tty)
 {
   help_list (tdesc_unset_cmdlist, "unset tdesc ", all_commands, gdb_stdout);
 }
 
 static void
-set_tdesc_filename_cmd (char *args, int from_tty,
+set_tdesc_filename_cmd (const char *args, int from_tty,
                        struct cmd_list_element *c)
 {
   xfree (target_description_filename);
@@ -1697,7 +1781,7 @@ show_tdesc_filename_cmd (struct ui_file *file, int from_tty,
 }
 
 static void
-unset_tdesc_filename_cmd (char *args, int from_tty)
+unset_tdesc_filename_cmd (const char *args, int from_tty)
 {
   xfree (target_description_filename);
   target_description_filename = NULL;
@@ -1705,283 +1789,476 @@ unset_tdesc_filename_cmd (char *args, int from_tty)
   target_find_description ();
 }
 
-static void
-maint_print_c_tdesc_cmd (char *args, int from_tty)
-{
-  const struct target_desc *tdesc;
-  const struct bfd_arch_info *compatible;
-  const char *filename, *inp;
-  char *function, *outp;
-  struct property *prop;
-  struct tdesc_feature *feature;
-  struct tdesc_reg *reg;
-  struct tdesc_type *type;
-  struct tdesc_type_field *f;
-  int ix, ix2, ix3;
-  int printed_field_type = 0;
-
-  /* Use the global target-supplied description, not the current
-     architecture's.  This lets a GDB for one architecture generate C
-     for another architecture's description, even though the gdbarch
-     initialization code will reject the new description.  */
-  tdesc = current_target_desc;
-  if (tdesc == NULL)
-    error (_("There is no target description to print."));
+/* Print target description in C.  */
 
-  if (target_description_filename == NULL)
-    error (_("The current target description did not come from an XML file."));
+class print_c_tdesc : public tdesc_element_visitor
+{
+public:
+  print_c_tdesc (std::string &filename_after_features)
+    : m_filename_after_features (filename_after_features)
+  {
+    const char *inp;
+    char *outp;
+    const char *filename = lbasename (m_filename_after_features.c_str ());
 
-  filename = lbasename (target_description_filename);
-  function = (char *) alloca (strlen (filename) + 1);
-  for (inp = filename, outp = function; *inp != '\0'; inp++)
-    if (*inp == '.')
-      break;
-    else if (*inp == '-')
-      *outp++ = '_';
-    else
-      *outp++ = *inp;
-  *outp = '\0';
-
-  /* Standard boilerplate.  */
-  printf_unfiltered ("/* THIS FILE IS GENERATED.  "
-                    "-*- buffer-read-only: t -*- vi"
-                    ":set ro:\n");
-  printf_unfiltered ("  Original: %s */\n\n", filename);
-  printf_unfiltered ("#include \"defs.h\"\n");
-  printf_unfiltered ("#include \"osabi.h\"\n");
-  printf_unfiltered ("#include \"target-descriptions.h\"\n");
-  printf_unfiltered ("\n");
-
-  printf_unfiltered ("struct target_desc *tdesc_%s;\n", function);
-  printf_unfiltered ("static void\n");
-  printf_unfiltered ("initialize_tdesc_%s (void)\n", function);
-  printf_unfiltered ("{\n");
-  printf_unfiltered
-    ("  struct target_desc *result = allocate_target_description ();\n");
-  printf_unfiltered ("  struct tdesc_feature *feature;\n");
-
-  /* Now we do some "filtering" in order to know which variables to
-     declare.  This is needed because otherwise we would declare unused
-     variables `field_type' and `type'.  */
-  for (ix = 0;
-       VEC_iterate (tdesc_feature_p, tdesc->features, ix, feature);
-       ix++)
-    {
-      int printed_desc_type = 0;
+    m_function = (char *) xmalloc (strlen (filename) + 1);
+    for (inp = filename, outp = m_function; *inp != '\0'; inp++)
+      if (*inp == '.')
+       break;
+      else if (*inp == '-')
+       *outp++ = '_';
+      else
+       *outp++ = *inp;
+    *outp = '\0';
 
-      for (ix2 = 0;
-          VEC_iterate (tdesc_type_p, feature->types, ix2, type);
-          ix2++)
-       {
-         if (!printed_field_type)
-           {
-             printf_unfiltered ("  struct tdesc_type *field_type;\n");
-             printed_field_type = 1;
-           }
+    /* Standard boilerplate.  */
+    printf_unfiltered ("/* THIS FILE IS GENERATED.  "
+                      "-*- buffer-read-only: t -*- vi"
+                      ":set ro:\n");
+  }
 
-         if ((type->kind == TDESC_TYPE_UNION
-              || type->kind == TDESC_TYPE_STRUCT
-              || type->kind == TDESC_TYPE_FLAGS
-              || type->kind == TDESC_TYPE_ENUM)
-             && VEC_length (tdesc_type_field, type->u.u.fields) > 0)
-           {
-             printf_unfiltered ("  struct tdesc_type *type;\n");
-             printed_desc_type = 1;
-             break;
-           }
-       }
+  ~print_c_tdesc ()
+  {
+    xfree (m_function);
+  }
 
-      if (printed_desc_type)
-       break;
-    }
+  void visit_pre (const target_desc *e) override
+  {
+    printf_unfiltered ("  Original: %s */\n\n",
+                      lbasename (m_filename_after_features.c_str ()));
 
-  printf_unfiltered ("\n");
+    printf_unfiltered ("#include \"defs.h\"\n");
+    printf_unfiltered ("#include \"osabi.h\"\n");
+    printf_unfiltered ("#include \"target-descriptions.h\"\n");
+    printf_unfiltered ("\n");
 
-  if (tdesc_architecture (tdesc) != NULL)
-    {
-      printf_unfiltered
-       ("  set_tdesc_architecture (result, bfd_scan_arch (\"%s\"));\n",
-        tdesc_architecture (tdesc)->printable_name);
-      printf_unfiltered ("\n");
-    }
+    printf_unfiltered ("struct target_desc *tdesc_%s;\n", m_function);
+    printf_unfiltered ("static void\n");
+    printf_unfiltered ("initialize_tdesc_%s (void)\n", m_function);
+    printf_unfiltered ("{\n");
+    printf_unfiltered
+      ("  struct target_desc *result = allocate_target_description ();\n");
 
-  if (tdesc_osabi (tdesc) > GDB_OSABI_UNKNOWN
-      && tdesc_osabi (tdesc) < GDB_OSABI_INVALID)
-    {
-      printf_unfiltered
-       ("  set_tdesc_osabi (result, osabi_from_tdesc_string (\"%s\"));\n",
-        gdbarch_osabi_name (tdesc_osabi (tdesc)));
-      printf_unfiltered ("\n");
-    }
+    if (tdesc_architecture (e) != NULL)
+      {
+       printf_unfiltered
+         ("  set_tdesc_architecture (result, bfd_scan_arch (\"%s\"));\n",
+          tdesc_architecture (e)->printable_name);
+       printf_unfiltered ("\n");
+      }
+    if (tdesc_osabi (e) > GDB_OSABI_UNKNOWN
+       && tdesc_osabi (e) < GDB_OSABI_INVALID)
+      {
+       printf_unfiltered
+         ("  set_tdesc_osabi (result, osabi_from_tdesc_string (\"%s\"));\n",
+          gdbarch_osabi_name (tdesc_osabi (e)));
+       printf_unfiltered ("\n");
+      }
 
-  for (ix = 0; VEC_iterate (arch_p, tdesc->compatible, ix, compatible);
-       ix++)
-    {
+    for (const struct bfd_arch_info *compatible : e->compatible)
       printf_unfiltered
        ("  tdesc_add_compatible (result, bfd_scan_arch (\"%s\"));\n",
         compatible->printable_name);
-    }
-  if (ix)
-    printf_unfiltered ("\n");
 
-  for (ix = 0; VEC_iterate (property_s, tdesc->properties, ix, prop);
-       ix++)
-    {
+    if (!e->compatible.empty ())
+      printf_unfiltered ("\n");
+
+    for (const property &prop : e->properties)
       printf_unfiltered ("  set_tdesc_property (result, \"%s\", \"%s\");\n",
-             prop->key, prop->value);
-    }
+                        prop.key.c_str (), prop.value.c_str ());
 
-  for (ix = 0;
-       VEC_iterate (tdesc_feature_p, tdesc->features, ix, feature);
-       ix++)
-    {
-      printf_unfiltered ("  \
-feature = tdesc_create_feature (result, \"%s\");\n",
-                        feature->name);
+    printf_unfiltered ("  struct tdesc_feature *feature;\n");
+  }
 
-      for (ix2 = 0;
-          VEC_iterate (tdesc_type_p, feature->types, ix2, type);
-          ix2++)
-       {
-         switch (type->kind)
-           {
-           case TDESC_TYPE_VECTOR:
-             printf_unfiltered
-               ("  field_type = tdesc_named_type (feature, \"%s\");\n",
-                type->u.v.type->name);
+  void visit_pre (const tdesc_feature *e) override
+  {
+    printf_unfiltered ("\n  feature = tdesc_create_feature (result, \"%s\");\n",
+                      e->name.c_str ());
+  }
+
+  void visit_post (const tdesc_feature *e) override
+  {}
+
+  void visit_post (const target_desc *e) override
+  {
+    printf_unfiltered ("\n  tdesc_%s = result;\n", m_function);
+    printf_unfiltered ("}\n");
+  }
+
+  void visit (const tdesc_type *type) override
+  {
+    struct tdesc_type_field *f;
+
+    /* Now we do some "filtering" in order to know which variables to
+       declare.  This is needed because otherwise we would declare unused
+       variables `field_type' and `type'.  */
+    if (!m_printed_field_type)
+      {
+       printf_unfiltered ("  struct tdesc_type *field_type;\n");
+       m_printed_field_type = true;
+      }
+
+    if ((type->kind == TDESC_TYPE_UNION
+        || type->kind == TDESC_TYPE_STRUCT
+        || type->kind == TDESC_TYPE_FLAGS
+        || type->kind == TDESC_TYPE_ENUM)
+       && VEC_length (tdesc_type_field, type->u.u.fields) > 0
+       && !m_printed_type)
+      {
+       printf_unfiltered ("  struct tdesc_type *type;\n");
+       m_printed_type = true;
+      }
+
+    switch (type->kind)
+      {
+      case TDESC_TYPE_VECTOR:
+       printf_unfiltered
+         ("  field_type = tdesc_named_type (feature, \"%s\");\n",
+          type->u.v.type->name);
+       printf_unfiltered
+         ("  tdesc_create_vector (feature, \"%s\", field_type, %d);\n",
+          type->name, type->u.v.count);
+       break;
+      case TDESC_TYPE_STRUCT:
+      case TDESC_TYPE_FLAGS:
+       if (type->kind == TDESC_TYPE_STRUCT)
+         {
+           printf_unfiltered
+             ("  type = tdesc_create_struct (feature, \"%s\");\n",
+              type->name);
+           if (type->u.u.size != 0)
              printf_unfiltered
-               ("  tdesc_create_vector (feature, \"%s\", field_type, %d);\n",
-                type->name, type->u.v.count);
-             break;
-           case TDESC_TYPE_STRUCT:
-           case TDESC_TYPE_FLAGS:
-             if (type->kind == TDESC_TYPE_STRUCT)
-               {
-                 printf_unfiltered
-                   ("  type = tdesc_create_struct (feature, \"%s\");\n",
-                    type->name);
-                 if (type->u.u.size != 0)
+               ("  tdesc_set_struct_size (type, %d);\n",
+                type->u.u.size);
+         }
+       else
+         {
+           printf_unfiltered
+             ("  type = tdesc_create_flags (feature, \"%s\", %d);\n",
+              type->name, type->u.u.size);
+         }
+       for (int ix3 = 0;
+            VEC_iterate (tdesc_type_field, type->u.u.fields, ix3, f);
+            ix3++)
+         {
+           const char *type_name;
+
+           gdb_assert (f->type != NULL);
+           type_name = f->type->name;
+
+           /* To minimize changes to generated files, don't emit type
+              info for fields that have defaulted types.  */
+           if (f->start != -1)
+             {
+               gdb_assert (f->end != -1);
+               if (f->type->kind == TDESC_TYPE_BOOL)
+                 {
+                   gdb_assert (f->start == f->end);
                    printf_unfiltered
-                     ("  tdesc_set_struct_size (type, %d);\n",
-                      type->u.u.size);
-               }
-             else
-               {
-                 printf_unfiltered
-                   ("  type = tdesc_create_flags (feature, \"%s\", %d);\n",
-                    type->name, type->u.u.size);
-               }
-             for (ix3 = 0;
-                  VEC_iterate (tdesc_type_field, type->u.u.fields, ix3, f);
-                  ix3++)
-               {
-                 const char *type_name;
-
-                 gdb_assert (f->type != NULL);
-                 type_name = f->type->name;
-
-                 /* To minimize changes to generated files, don't emit type
-                    info for fields that have defaulted types.  */
-                 if (f->start != -1)
-                   {
-                     gdb_assert (f->end != -1);
-                     if (f->type->kind == TDESC_TYPE_BOOL)
-                       {
-                         gdb_assert (f->start == f->end);
-                         printf_unfiltered
-                           ("  tdesc_add_flag (type, %d, \"%s\");\n",
-                            f->start, f->name);
-                       }
-                     else if ((type->u.u.size == 4
-                               && f->type->kind == TDESC_TYPE_UINT32)
-                              || (type->u.u.size == 8
-                                  && f->type->kind == TDESC_TYPE_UINT64))
-                       {
-                         printf_unfiltered
-                           ("  tdesc_add_bitfield (type, \"%s\", %d, %d);\n",
-                            f->name, f->start, f->end);
-                       }
-                     else
-                       {
-                         printf_unfiltered
-                           ("  field_type = tdesc_named_type (feature,"
-                            " \"%s\");\n",
-                            type_name);
-                         printf_unfiltered
-                           ("  tdesc_add_typed_bitfield (type, \"%s\","
-                            " %d, %d, field_type);\n",
-                            f->name, f->start, f->end);
-                       }
-                   }
-                 else /* Not a bitfield.  */
-                   {
-                     gdb_assert (f->end == -1);
-                     gdb_assert (type->kind == TDESC_TYPE_STRUCT);
-                     printf_unfiltered
-                       ("  field_type = tdesc_named_type (feature,"
-                        " \"%s\");\n",
-                        type_name);
-                     printf_unfiltered
-                       ("  tdesc_add_field (type, \"%s\", field_type);\n",
-                        f->name);
-                   }
-               }
-             break;
-           case TDESC_TYPE_UNION:
-             printf_unfiltered
-               ("  type = tdesc_create_union (feature, \"%s\");\n",
-                type->name);
-             for (ix3 = 0;
-                  VEC_iterate (tdesc_type_field, type->u.u.fields, ix3, f);
-                  ix3++)
-               {
-                 printf_unfiltered
-                   ("  field_type = tdesc_named_type (feature, \"%s\");\n",
-                    f->type->name);
-                 printf_unfiltered
-                   ("  tdesc_add_field (type, \"%s\", field_type);\n",
-                    f->name);
-               }
-             break;
-           case TDESC_TYPE_ENUM:
-             printf_unfiltered
-               ("  type = tdesc_create_enum (feature, \"%s\", %d);\n",
-                type->name, type->u.u.size);
-             for (ix3 = 0;
-                  VEC_iterate (tdesc_type_field, type->u.u.fields, ix3, f);
-                  ix3++)
+                     ("  tdesc_add_flag (type, %d, \"%s\");\n",
+                      f->start, f->name);
+                 }
+               else if ((type->u.u.size == 4
+                         && f->type->kind == TDESC_TYPE_UINT32)
+                        || (type->u.u.size == 8
+                            && f->type->kind == TDESC_TYPE_UINT64))
+                 {
+                   printf_unfiltered
+                     ("  tdesc_add_bitfield (type, \"%s\", %d, %d);\n",
+                      f->name, f->start, f->end);
+                 }
+               else
+                 {
+                   printf_unfiltered
+                     ("  field_type = tdesc_named_type (feature,"
+                      " \"%s\");\n",
+                      type_name);
+                   printf_unfiltered
+                     ("  tdesc_add_typed_bitfield (type, \"%s\","
+                      " %d, %d, field_type);\n",
+                      f->name, f->start, f->end);
+                 }
+             }
+           else /* Not a bitfield.  */
+             {
+               gdb_assert (f->end == -1);
+               gdb_assert (type->kind == TDESC_TYPE_STRUCT);
                printf_unfiltered
-                 ("  tdesc_add_enum_value (type, %d, \"%s\");\n",
-                  f->start, f->name);
-             break;
-           default:
-             error (_("C output is not supported type \"%s\"."), type->name);
-           }
-         printf_unfiltered ("\n");
-       }
+                 ("  field_type = tdesc_named_type (feature,"
+                  " \"%s\");\n",
+                  type_name);
+               printf_unfiltered
+                 ("  tdesc_add_field (type, \"%s\", field_type);\n",
+                  f->name);
+             }
+         }
+       break;
+      case TDESC_TYPE_UNION:
+       printf_unfiltered
+         ("  type = tdesc_create_union (feature, \"%s\");\n",
+          type->name);
+       for (int ix3 = 0;
+            VEC_iterate (tdesc_type_field, type->u.u.fields, ix3, f);
+            ix3++)
+         {
+           printf_unfiltered
+             ("  field_type = tdesc_named_type (feature, \"%s\");\n",
+              f->type->name);
+           printf_unfiltered
+             ("  tdesc_add_field (type, \"%s\", field_type);\n",
+              f->name);
+         }
+       break;
+      case TDESC_TYPE_ENUM:
+       printf_unfiltered
+         ("  type = tdesc_create_enum (feature, \"%s\", %d);\n",
+          type->name, type->u.u.size);
+       for (int ix3 = 0;
+            VEC_iterate (tdesc_type_field, type->u.u.fields, ix3, f);
+            ix3++)
+         printf_unfiltered
+           ("  tdesc_add_enum_value (type, %d, \"%s\");\n",
+            f->start, f->name);
+       break;
+      default:
+       error (_("C output is not supported type \"%s\"."), type->name);
+      }
+    printf_unfiltered ("\n");
+  }
 
-      for (ix2 = 0;
-          VEC_iterate (tdesc_reg_p, feature->registers, ix2, reg);
-          ix2++)
-       {
-         printf_unfiltered ("  tdesc_create_reg (feature, \"%s\", %ld, %d, ",
-                            reg->name, reg->target_regnum, reg->save_restore);
-         if (reg->group)
-           printf_unfiltered ("\"%s\", ", reg->group);
-         else
-           printf_unfiltered ("NULL, ");
-         printf_unfiltered ("%d, \"%s\");\n", reg->bitsize, reg->type);
-       }
+  void visit (const tdesc_reg *reg) override
+  {
+    printf_unfiltered ("  tdesc_create_reg (feature, \"%s\", %ld, %d, ",
+                      reg->name.c_str (), reg->target_regnum,
+                      reg->save_restore);
+    if (!reg->group.empty ())
+      printf_unfiltered ("\"%s\", ", reg->group.c_str ());
+    else
+      printf_unfiltered ("NULL, ");
+    printf_unfiltered ("%d, \"%s\");\n", reg->bitsize, reg->type.c_str ());
+  }
 
-      printf_unfiltered ("\n");
+protected:
+  std::string m_filename_after_features;
+
+private:
+  char *m_function;
+  bool m_printed_field_type = false;
+  bool m_printed_type = false;
+};
+
+/* Print target description feature in C.  */
+
+class print_c_feature : public print_c_tdesc
+{
+public:
+  print_c_feature (std::string &file)
+    : print_c_tdesc (file)
+  {
+    /* Trim ".tmp".  */
+    auto const pos = m_filename_after_features.find_last_of ('.');
+
+    m_filename_after_features = m_filename_after_features.substr (0, pos);
+  }
+
+  void visit_pre (const target_desc *e) override
+  {
+    printf_unfiltered ("  Original: %s */\n\n",
+                      lbasename (m_filename_after_features.c_str ()));
+
+    printf_unfiltered ("#include \"arch/tdesc.h\"\n");
+    printf_unfiltered ("\n");
+  }
+
+  void visit_post (const target_desc *e) override
+  {}
+
+  void visit_pre (const tdesc_feature *e) override
+  {
+    std::string name (m_filename_after_features);
+
+    auto pos = name.find_first_of ('.');
+
+    name = name.substr (0, pos);
+    std::replace (name.begin (), name.end (), '/', '_');
+    std::replace (name.begin (), name.end (), '-', '_');
+
+    printf_unfiltered ("static int\n");
+    printf_unfiltered ("create_feature_%s ", name.c_str ());
+    printf_unfiltered ("(struct target_desc *result, long regnum)\n");
+
+    printf_unfiltered ("{\n");
+    printf_unfiltered ("  struct tdesc_feature *feature;\n");
+
+    printf_unfiltered
+      ("\n  feature = tdesc_create_feature (result, \"%s\", \"%s\");\n",
+       e->name.c_str (), lbasename (m_filename_after_features.c_str ()));
+  }
+
+  void visit_post (const tdesc_feature *e) override
+  {
+    printf_unfiltered ("  return regnum;\n");
+    printf_unfiltered ("}\n");
+  }
+
+  void visit (const tdesc_reg *reg) override
+  {
+    /* Most "reg" in XML target descriptions don't have "regnum"
+       attribute, so the register number is allocated sequentially.
+       In case that reg has "regnum" attribute, register number
+       should be set by that explicitly.  */
+
+    if (reg->target_regnum < m_next_regnum)
+      {
+       /* The integrity check, it can catch some errors on register
+          number collision, like this,
+
+         <reg name="x0" bitsize="32"/>
+         <reg name="x1" bitsize="32"/>
+         <reg name="x2" bitsize="32"/>
+         <reg name="x3" bitsize="32"/>
+         <reg name="ps" bitsize="32" regnum="3"/>
+
+         but it also has false negatives.  The target description
+         below is correct,
+
+         <reg name="x1" bitsize="32" regnum="1"/>
+         <reg name="x3" bitsize="32" regnum="3"/>
+         <reg name="x2" bitsize="32" regnum="2"/>
+         <reg name="x4" bitsize="32" regnum="4"/>
+
+         but it is not a good practice, so still error on this,
+         and also print the message so that it can be saved in the
+         generated c file.  */
+
+       printf_unfiltered ("ERROR: \"regnum\" attribute %ld ",
+                          reg->target_regnum);
+       printf_unfiltered ("is not the largest number (%d).\n",
+                          m_next_regnum);
+       error (_("\"regnum\" attribute %ld is not the largest number (%d)."),
+              reg->target_regnum, m_next_regnum);
+      }
+
+    if (reg->target_regnum > m_next_regnum)
+      {
+       printf_unfiltered ("  regnum = %ld;\n", reg->target_regnum);
+       m_next_regnum = reg->target_regnum;
+      }
+
+    printf_unfiltered ("  tdesc_create_reg (feature, \"%s\", regnum++, %d, ",
+                      reg->name.c_str (), reg->save_restore);
+    if (!reg->group.empty ())
+      printf_unfiltered ("\"%s\", ", reg->group.c_str ());
+    else
+      printf_unfiltered ("NULL, ");
+    printf_unfiltered ("%d, \"%s\");\n", reg->bitsize, reg->type.c_str ());
+
+    m_next_regnum++;
+  }
+
+private:
+  /* The register number to use for the next register we see.  */
+  int m_next_regnum = 0;
+};
+
+static void
+maint_print_c_tdesc_cmd (const char *args, int from_tty)
+{
+  const struct target_desc *tdesc;
+  const char *filename;
+
+  if (args == NULL)
+    {
+      /* Use the global target-supplied description, not the current
+        architecture's.  This lets a GDB for one architecture generate C
+        for another architecture's description, even though the gdbarch
+        initialization code will reject the new description.  */
+      tdesc = current_target_desc;
+      filename = target_description_filename;
+    }
+  else
+    {
+      /* Use the target description from the XML file.  */
+      filename = args;
+      tdesc = file_read_description_xml (filename);
+    }
+
+  if (tdesc == NULL)
+    error (_("There is no target description to print."));
+
+  if (filename == NULL)
+    error (_("The current target description did not come from an XML file."));
+
+  std::string filename_after_features (filename);
+  auto loc = filename_after_features.rfind ("/features/");
+
+  if (loc != std::string::npos)
+    filename_after_features = filename_after_features.substr (loc + 10);
+
+  /* Print c files for target features instead of target descriptions,
+     because c files got from target features are more flexible than the
+     counterparts.  */
+  if (startswith (filename_after_features.c_str (), "i386/32bit-")
+      || startswith (filename_after_features.c_str (), "i386/64bit-")
+      || startswith (filename_after_features.c_str (), "i386/x32-core.xml")
+      || startswith (filename_after_features.c_str (), "tic6x-")
+      || startswith (filename_after_features.c_str (), "aarch64"))
+    {
+      print_c_feature v (filename_after_features);
+
+      tdesc->accept (v);
+    }
+  else
+    {
+      print_c_tdesc v (filename_after_features);
+
+      tdesc->accept (v);
     }
+}
+
+namespace selftests {
+
+static std::vector<std::pair<const char*, const target_desc *>> xml_tdesc;
+
+#if GDB_SELF_TEST
+
+/* See target-descritpions.h.  */
 
-  printf_unfiltered ("  tdesc_%s = result;\n", function);
-  printf_unfiltered ("}\n");
+void
+record_xml_tdesc (const char *xml_file, const struct target_desc *tdesc)
+{
+  xml_tdesc.emplace_back (xml_file, tdesc);
 }
+#endif
 
-/* Provide a prototype to silence -Wmissing-prototypes.  */
-extern initialize_file_ftype _initialize_target_descriptions;
+}
+
+/* Check that the target descriptions created dynamically by
+   architecture-specific code equal the descriptions created from XML files
+   found in the specified directory DIR.  */
+
+static void
+maintenance_check_xml_descriptions (const char *dir, int from_tty)
+{
+  if (dir == NULL)
+    error (_("Missing dir name"));
+
+  gdb::unique_xmalloc_ptr<char> dir1 (tilde_expand (dir));
+  std::string feature_dir (dir1.get ());
+  unsigned int failed = 0;
+
+  for (auto const &e : selftests::xml_tdesc)
+    {
+      std::string tdesc_xml = (feature_dir + SLASH_STRING + e.first);
+      const target_desc *tdesc
+       = file_read_description_xml (tdesc_xml.data ());
+
+      if (tdesc == NULL || *tdesc != *e.second)
+       failed++;
+    }
+  printf_filtered (_("Tested %lu XML files, %d failed\n"),
+                  (long) selftests::xml_tdesc.size (), failed);
+}
 
 void
 _initialize_target_descriptions (void)
@@ -2020,4 +2297,14 @@ GDB will read the description from the target."),
   add_cmd ("c-tdesc", class_maintenance, maint_print_c_tdesc_cmd, _("\
 Print the current target description as a C source file."),
           &maintenanceprintlist);
+
+  cmd_list_element *cmd;
+
+  cmd = add_cmd ("xml-descriptions", class_maintenance,
+                maintenance_check_xml_descriptions, _("\
+Check the target descriptions created in GDB equal the descriptions\n\
+created from XML files in the directory.\n\
+The parameter is the directory name."),
+                &maintenancechecklist);
+  set_cmd_completer (cmd, filename_completer);
 }
This page took 0.045588 seconds and 4 git commands to generate.