]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Remove a VEC from dwarf2read.c
authorTom Tromey <tom@tromey.com>
Fri, 8 Jun 2018 04:11:47 +0000 (22:11 -0600)
committerTom Tromey <tom@tromey.com>
Sat, 9 Jun 2018 22:05:48 +0000 (16:05 -0600)
This removes a VEC from dwarf2read.c, replacing it with a std::vector.

Tested by the buildbot.

gdb/ChangeLog
2018-06-09  Tom Tromey  <tom@tromey.com>

* dwarf2read.c (process_cu_includes): Update.
(process_full_comp_unit): Update.
* dwarf2read.h (struct dwarf2_per_objfile) <just_read_cus>: Now a
std::vector.

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

index 12157bb27217c94096dbb60d72f4d164a0e0b35e..c12ecc3facc34e76b65a739993a9c95f7c6268fc 100644 (file)
@@ -1,3 +1,10 @@
+2018-06-09  Tom Tromey  <tom@tromey.com>
+
+       * dwarf2read.c (process_cu_includes): Update.
+       (process_full_comp_unit): Update.
+       * dwarf2read.h (struct dwarf2_per_objfile) <just_read_cus>: Now a
+       std::vector.
+
 2018-06-08  Paul Koning  <paul_koning@dell.com>
 
        PR gdb/23252
index 1cabfbb0d4537dfba5f2219b50b0b47b6dd1a898..7f1857930b1db46226032b107fb28cb3970ab058 100644 (file)
@@ -10217,19 +10217,13 @@ compute_compunit_symtab_includes (struct dwarf2_per_cu_data *per_cu)
 static void
 process_cu_includes (struct dwarf2_per_objfile *dwarf2_per_objfile)
 {
-  int ix;
-  struct dwarf2_per_cu_data *iter;
-
-  for (ix = 0;
-       VEC_iterate (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus,
-                   ix, iter);
-       ++ix)
+  for (struct dwarf2_per_cu_data *iter : dwarf2_per_objfile->just_read_cus)
     {
       if (! iter->is_debug_types)
        compute_compunit_symtab_includes (iter);
     }
 
-  VEC_free (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus);
+  dwarf2_per_objfile->just_read_cus.clear ();
 }
 
 /* Generate full symbol information for PER_CU, whose DIEs have
@@ -10337,7 +10331,7 @@ process_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
     }
 
   /* Push it for inclusion processing later.  */
-  VEC_safe_push (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus, per_cu);
+  dwarf2_per_objfile->just_read_cus.push_back (per_cu);
 }
 
 /* Generate full symbol information for type unit PER_CU, whose DIEs have
index fbac7171debb4e4b3f5124a8f5927e978501f228..74335d77db09d5a0fb452cb278684151b5873d12 100644 (file)
@@ -233,7 +233,7 @@ public:
   htab_t die_type_hash {};
 
   /* The CUs we recently read.  */
-  VEC (dwarf2_per_cu_ptr) *just_read_cus = NULL;
+  std::vector<dwarf2_per_cu_data *> just_read_cus;
 
   /* Table containing line_header indexed by offset and offset_in_dwz.  */
   htab_t line_header_hash {};