OSDN Git Service

* symfile.h (quick_symbol_functions): Clarify usage of
authordevans <devans>
Wed, 8 Dec 2010 18:04:05 +0000 (18:04 +0000)
committerdevans <devans>
Wed, 8 Dec 2010 18:04:05 +0000 (18:04 +0000)
expand_symtabs_with_filename.
* dwarf2read.c (dw2_expand_symtabs_with_filename): Only iterate over
comp units, ignore type units.

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

index 17d67af..5b89470 100644 (file)
@@ -1,5 +1,10 @@
 2010-12-08  Doug Evans  <dje@google.com>
 
+       * symfile.h (quick_symbol_functions): Clarify usage of
+       expand_symtabs_with_filename.
+       * dwarf2read.c (dw2_expand_symtabs_with_filename): Only iterate over
+       comp units, ignore type units.
+
        * dwarf2read.c (dw2_expand_symtabs_with_filename): Use FILENAME_CMP.
 
 2010-12-07  Doug Evans  <dje@google.com>
index 82cde1b..8801fb1 100644 (file)
@@ -2323,8 +2323,13 @@ dw2_expand_symtabs_with_filename (struct objfile *objfile,
   int i;
 
   dw2_setup (objfile);
-  for (i = 0; i < (dwarf2_per_objfile->n_comp_units
-                  + dwarf2_per_objfile->n_type_comp_units); ++i)
+
+  /* We don't need to consider type units here.
+     This is only called for examining code, e.g. expand_line_sal.
+     There can be an order of magnitude (or more) more type units
+     than comp units, and we avoid them if we can.  */
+
+  for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
     {
       int j;
       struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
index e989d5c..297c181 100644 (file)
@@ -209,7 +209,10 @@ struct quick_symbol_functions
   void (*expand_all_symtabs) (struct objfile *objfile);
 
   /* Read all symbol tables associated with OBJFILE which have the
-     file name FILENAME.  */
+     file name FILENAME.
+     This is for the purposes of examining code only, e.g., expand_line_sal.
+     The routine may ignore debug info that is known to not be useful with
+     code, e.g., DW_TAG_type_unit for dwarf debug info.  */
   void (*expand_symtabs_with_filename) (struct objfile *objfile,
                                        const char *filename);