gdb: Remove a use of VEC from dwarf2read.{c,h}
authorAndrew Burgess <andrew.burgess@embecosm.com>
Wed, 25 Sep 2019 15:10:50 +0000 (16:10 +0100)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Wed, 2 Oct 2019 13:05:51 +0000 (14:05 +0100)
Removes a use of VEC from dwarf2read.{c,h} and replaces it with
std::vector.  As far as possible this is a like for like replacement
with minimal refactoring.

There should be no user visible changes after this commit.

gdb/ChangeLog:

* dwarf2read.c (struct type_unit_group) <tus>: Convert to
std::vector.
(build_type_psymtabs_reader): Update for std::vector.
(build_type_psymtab_dependencies): Likewise.
* dwarf2read.h: Remove use of DEF_VEC_P.
(typedef sig_type_ptr): Delete.

gdb/ChangeLog
gdb/dwarf2read.c
gdb/dwarf2read.h

index 7d1843179b5ee61cc261b89e0a26c362e2eda00a..81e372478864e69fce26f3165ce28f6cf2415da1 100644 (file)
@@ -1,3 +1,12 @@
+2019-10-02  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * dwarf2read.c (struct type_unit_group) <tus>: Convert to
+       std::vector.
+       (build_type_psymtabs_reader): Update for std::vector.
+       (build_type_psymtab_dependencies): Likewise.
+       * dwarf2read.h: Remove use of DEF_VEC_P.
+       (typedef sig_type_ptr): Delete.
+
 2019-10-02  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * btrace.c (btrace_maint_clear): Update to handle change from VEC
index 53e7393a7c92b2fc0136777cbae18395a7ae35ca..30658b2d4f4f64007fcd05cf6d311d954a227157 100644 (file)
@@ -620,7 +620,7 @@ struct type_unit_group
   /* The TUs that share this DW_AT_stmt_list entry.
      This is added to while parsing type units to build partial symtabs,
      and is deleted afterwards and not used again.  */
-  VEC (sig_type_ptr) *tus;
+  std::vector <signatured_type *> *tus;
 
   /* The compunit symtab.
      Type units in a group needn't all be defined in the same source file,
@@ -8184,7 +8184,9 @@ build_type_psymtabs_reader (const struct die_reader_specs *reader,
   attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
   tu_group = get_type_unit_group (cu, attr);
 
-  VEC_safe_push (sig_type_ptr, tu_group->tus, sig_type);
+  if (tu_group->tus == nullptr)
+    tu_group->tus = new std::vector <signatured_type *>;
+  tu_group->tus->push_back (sig_type);
 
   prepare_one_comp_unit (cu, type_unit_die, language_minimal);
   pst = create_partial_symtab (per_cu, "");
@@ -8341,8 +8343,7 @@ build_type_psymtab_dependencies (void **slot, void *info)
   struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
   struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
   struct partial_symtab *pst = per_cu->v.psymtab;
-  int len = VEC_length (sig_type_ptr, tu_group->tus);
-  struct signatured_type *iter;
+  int len = (tu_group->tus == nullptr) ? 0 : tu_group->tus->size ();
   int i;
 
   gdb_assert (len > 0);
@@ -8350,16 +8351,16 @@ build_type_psymtab_dependencies (void **slot, void *info)
 
   pst->number_of_dependencies = len;
   pst->dependencies = objfile->partial_symtabs->allocate_dependencies (len);
-  for (i = 0;
-       VEC_iterate (sig_type_ptr, tu_group->tus, i, iter);
-       ++i)
+  for (i = 0; i < len; ++i)
     {
+      struct signatured_type *iter = tu_group->tus->at (i);
       gdb_assert (iter->per_cu.is_debug_types);
       pst->dependencies[i] = iter->per_cu.v.psymtab;
       iter->type_unit_group = tu_group;
     }
 
-  VEC_free (sig_type_ptr, tu_group->tus);
+  delete tu_group->tus;
+  tu_group->tus = nullptr;
 
   return 1;
 }
index d5a02990d41f2a45135e60230ab9096ddffa8e1a..aee8742a79ce7f4d43a439e9e074efe5070c688e 100644 (file)
@@ -401,9 +401,6 @@ struct signatured_type
   struct dwo_unit *dwo_unit;
 };
 
-typedef struct signatured_type *sig_type_ptr;
-DEF_VEC_P (sig_type_ptr);
-
 ULONGEST read_unsigned_leb128 (bfd *, const gdb_byte *, unsigned int *);
 
 /* This represents a '.dwz' file.  */
This page took 0.039321 seconds and 4 git commands to generate.