* configure.host: Change irix5 to irix[56]*.
[deliverable/binutils-gdb.git] / gdb / symmisc.c
index daca178bc54df9c776db9c79927724507bc19c12..b008e9e3882dd2678ded363aeec8f7a21f6e391c 100644 (file)
@@ -1,5 +1,6 @@
 /* Do various things to symbol tables (other than lookup), for GDB.
-   Copyright 1986, 1987, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
+   Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996
+   Free Software Foundation, Inc.
 
 This file is part of GDB.
 
@@ -15,7 +16,7 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include "defs.h"
 #include "symtab.h"
@@ -27,8 +28,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "command.h"
 #include "obstack.h"
 #include "language.h"
+#include "bcache.h"
 
-#include <string.h>
+#include "gdb_string.h"
 
 #ifndef DEV_TTY
 #define DEV_TTY "/dev/tty"
@@ -62,7 +64,7 @@ static int
 block_depth PARAMS ((struct block *));
 
 static void
-print_partial_symbol PARAMS ((struct partial_symbol *, int, char *, GDB_FILE *));
+print_partial_symbols PARAMS ((struct partial_symbol **, int, char *, GDB_FILE *));
 
 struct print_symbol_args {
   struct symbol *symbol;
@@ -151,6 +153,57 @@ free_symtab (s)
 
 #if MAINTENANCE_CMDS
 
+void
+print_symbol_bcache_statistics ()
+{
+  struct objfile *objfile;
+
+  immediate_quit++;
+  ALL_OBJFILES (objfile)
+    {
+      printf_filtered ("Byte cache statistics for '%s':\n", objfile -> name);
+      print_bcache_statistics (&objfile -> psymbol_cache, "partial symbol cache");
+    }
+  immediate_quit--;
+}
+
+void
+print_objfile_statistics ()
+{
+  struct objfile *objfile;
+
+  immediate_quit++;
+  ALL_OBJFILES (objfile)
+    {
+      printf_filtered ("Statistics for '%s':\n", objfile -> name);
+      if (OBJSTAT (objfile, n_stabs) > 0)
+       printf_filtered ("  Number of \"stab\" symbols read: %d\n",
+                        OBJSTAT (objfile, n_stabs));
+      if (OBJSTAT (objfile, n_minsyms) > 0)
+       printf_filtered ("  Number of \"minimal symbols read: %d\n",
+                        OBJSTAT (objfile, n_minsyms));
+      if (OBJSTAT (objfile, n_psyms) > 0)
+       printf_filtered ("  Number of \"partial symbols read: %d\n",
+                        OBJSTAT (objfile, n_psyms));
+      if (OBJSTAT (objfile, n_syms) > 0)
+       printf_filtered ("  Number of \"full symbols read: %d\n",
+                        OBJSTAT (objfile, n_syms));
+      if (OBJSTAT (objfile, n_types) > 0)
+       printf_filtered ("  Number of \"types defined: %d\n",
+                        OBJSTAT (objfile, n_types));
+      if (OBJSTAT (objfile, sz_strtab) > 0)
+       printf_filtered ("  Space used by a.out string tables: %d\n",
+                        OBJSTAT (objfile, sz_strtab));
+      printf_filtered ("  Total memory used for psymbol obstack: %d\n",
+                      obstack_memory_used (&objfile -> psymbol_obstack));
+      printf_filtered ("  Total memory used for symbol obstack: %d\n",
+                      obstack_memory_used (&objfile -> symbol_obstack));
+      printf_filtered ("  Total memory used for type obstack: %d\n",
+                      obstack_memory_used (&objfile -> type_obstack));
+    }
+  immediate_quit--;
+}
+
 static void 
 dump_objfile (objfile)
      struct objfile *objfile;
@@ -234,6 +287,9 @@ dump_msymbols (objfile, outfile)
          case mst_text:
            ms_type = 'T';
            break;
+         case mst_solib_trampoline:
+           ms_type = 'S';
+           break;
          case mst_data:
            ms_type = 'D';
            break;
@@ -262,6 +318,10 @@ dump_msymbols (objfile, outfile)
        {
          fprintf_filtered (outfile, "  %s", SYMBOL_DEMANGLED_NAME (msymbol));
        }
+#ifdef SOFUN_ADDRESS_MAYBE_MISSING
+      if (msymbol->filename)
+       fprintf_filtered (outfile, "  %s", msymbol->filename);
+#endif
       fputs_filtered ("\n", outfile);
     }
   if (objfile -> minimal_symbol_count != index)
@@ -282,7 +342,7 @@ dump_psymtab (objfile, psymtab, outfile)
 
   fprintf_filtered (outfile, "\nPartial symtab for source file %s ",
                    psymtab -> filename);
-  fprintf_filtered (outfile, "(object )");
+  fprintf_filtered (outfile, "(object ");
   gdb_print_address (psymtab, outfile);
   fprintf_filtered (outfile, ")\n\n");
   fprintf_unfiltered (outfile, "  Read from object file %s (",
@@ -296,22 +356,26 @@ dump_psymtab (objfile, psymtab, outfile)
                "  Full symtab was read (at ");
       gdb_print_address (psymtab->symtab, outfile);
       fprintf_filtered (outfile, " by function at ");
-      gdb_print_address (psymtab->read_symtab, outfile);
+      gdb_print_address ((PTR)psymtab->read_symtab, outfile);
       fprintf_filtered (outfile, ")\n");
     }
 
   fprintf_filtered (outfile, "  Relocate symbols by ");
   for (i = 0; i < psymtab->objfile->num_sections; ++i)
     {
+      if (i != 0)
+       fprintf_filtered (outfile, ", ");
       wrap_here ("    ");
-      print_address_numeric (ANOFFSET (psymtab->section_offsets, i), outfile);
-      fprintf_filtered (outfile, ", ");
+      print_address_numeric (ANOFFSET (psymtab->section_offsets, i),
+                            1,
+                            outfile);
     }
+  fprintf_filtered (outfile, "\n");
 
   fprintf_filtered (outfile, "  Symbols cover text addresses ");
-  print_address_numeric (psymtab->textlow, outfile);
+  print_address_numeric (psymtab->textlow, 1, outfile);
   fprintf_filtered (outfile, "-");
-  print_address_numeric (psymtab->texthigh, outfile);
+  print_address_numeric (psymtab->texthigh, 1, outfile);
   fprintf_filtered (outfile, "\n");
   fprintf_filtered (outfile, "  Depends on %d other partial symtabs.\n",
                    psymtab -> number_of_dependencies);
@@ -324,13 +388,13 @@ dump_psymtab (objfile, psymtab, outfile)
     }
   if (psymtab -> n_global_syms > 0)
     {
-      print_partial_symbol (objfile -> global_psymbols.list
+      print_partial_symbols (objfile -> global_psymbols.list
                            + psymtab -> globals_offset,
                            psymtab -> n_global_syms, "Global", outfile);
     }
   if (psymtab -> n_static_syms > 0)
     {
-      print_partial_symbol (objfile -> static_psymbols.list
+      print_partial_symbols (objfile -> static_psymbols.list
                            + psymtab -> statics_offset,
                            psymtab -> n_static_syms, "Static", outfile);
     }
@@ -365,7 +429,7 @@ dump_symtab (objfile, symtab, outfile)
       for (i = 0; i < len; i++)
        {
          fprintf_filtered (outfile, " line %d at ", l->item[i].line);
-         print_address_numeric (l->item[i].pc, outfile);
+         print_address_numeric (l->item[i].pc, 1, outfile);
          fprintf_filtered (outfile, "\n");
        }
     }
@@ -382,9 +446,9 @@ dump_symtab (objfile, symtab, outfile)
       gdb_print_address (b, outfile);
       fprintf_filtered (outfile, ") ");
       fprintf_filtered (outfile, "[");
-      print_address_numeric (BLOCK_START (b), outfile);
+      print_address_numeric (BLOCK_START (b), 1, outfile);
       fprintf_filtered (outfile, "..");
-      print_address_numeric (BLOCK_END (b), outfile);
+      print_address_numeric (BLOCK_END (b), 1, outfile);
       fprintf_filtered (outfile, "]");
       if (BLOCK_SUPERBLOCK (b))
        {
@@ -403,7 +467,7 @@ dump_symtab (objfile, symtab, outfile)
        }
       if (BLOCK_GCC_COMPILED(b))
        fprintf_filtered (outfile, " gcc%d compiled", BLOCK_GCC_COMPILED(b));
-      fprintf_filtered ('\n', outfile);
+      fprintf_filtered (outfile, "\n");
       blen = BLOCK_NSYMS (b);
       for (j = 0; j < blen; j++)
        {
@@ -412,7 +476,7 @@ dump_symtab (objfile, symtab, outfile)
          s.depth = depth + 1;
          s.outfile = outfile;
          catch_errors (print_symbol, &s, "Error printing symbol:\n",
-                       RETURN_MASK_ERROR);
+                       RETURN_MASK_ALL);
        }
     }
   fprintf_filtered (outfile, "\n");
@@ -435,7 +499,8 @@ maintenance_print_symbols (args, from_tty)
 
   if (args == NULL)
     {
-      error ("print-symbols takes an output file name and optional symbol file name");
+      error ("\
+Arguments missing: an output file name and an optional symbol file name");
     }
   else if ((argv = buildargv (args)) == NULL)
     {
@@ -486,7 +551,7 @@ print_symbol (args)
   if (SYMBOL_NAMESPACE (symbol) == LABEL_NAMESPACE)
     {
       fprintf_filtered (outfile, "label %s at ", SYMBOL_SOURCE_NAME (symbol));
-      print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), outfile);
+      print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), 1, outfile);
       fprintf_filtered (outfile, "\n");
       return 1;
     }
@@ -533,20 +598,21 @@ print_symbol (args)
          break;
 
        case LOC_CONST_BYTES:
-         fprintf_filtered (outfile, "const %u hex bytes:",
-                  TYPE_LENGTH (SYMBOL_TYPE (symbol)));
          {
            unsigned i;
-           for (i = 0; i < TYPE_LENGTH (SYMBOL_TYPE (symbol)); i++)
+           struct type *type = check_typedef (SYMBOL_TYPE (symbol));
+           fprintf_filtered (outfile, "const %u hex bytes:",
+                             TYPE_LENGTH (type));
+           for (i = 0; i < TYPE_LENGTH (type); i++)
              fprintf_filtered (outfile, " %02x",
-                        (unsigned)SYMBOL_VALUE_BYTES (symbol) [i]);
+                               (unsigned)SYMBOL_VALUE_BYTES (symbol) [i]);
            fprintf_filtered (outfile, ",");
          }
          break;
 
        case LOC_STATIC:
          fprintf_filtered (outfile, "static at ");
-         print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), outfile);
+         print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), 1,outfile);
          fprintf_filtered (outfile, ",");
          break;
 
@@ -596,7 +662,7 @@ print_symbol (args)
 
        case LOC_LABEL:
          fprintf_filtered (outfile, "label at ");
-         print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), outfile);
+         print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), 1, outfile);
          break;
 
        case LOC_BLOCK:
@@ -604,10 +670,15 @@ print_symbol (args)
          gdb_print_address (SYMBOL_BLOCK_VALUE (symbol), outfile);
          fprintf_filtered (outfile, ") starting at ");
          print_address_numeric (BLOCK_START (SYMBOL_BLOCK_VALUE (symbol)),
+                                1,
                                 outfile);
          fprintf_filtered (outfile, ",");
          break;
 
+       case LOC_UNRESOLVED:
+         fprintf_filtered (outfile, "unresolved");
+         break;
+
        case LOC_OPTIMIZED_OUT:
          fprintf_filtered (outfile, "optimized out");
          break;
@@ -674,23 +745,22 @@ maintenance_print_psymbols (args, from_tty)
 }
 
 static void
-print_partial_symbol (p, count, what, outfile)
-     struct partial_symbol *p;
+print_partial_symbols (p, count, what, outfile)
+     struct partial_symbol **p;
      int count;
      char *what;
      GDB_FILE *outfile;
 {
-
   fprintf_filtered (outfile, "  %s partial symbols:\n", what);
   while (count-- > 0)
     {
-      fprintf_filtered (outfile, "    `%s'", SYMBOL_NAME(p));
-      if (SYMBOL_DEMANGLED_NAME (p) != NULL)
+      fprintf_filtered (outfile, "    `%s'", SYMBOL_NAME(*p));
+      if (SYMBOL_DEMANGLED_NAME (*p) != NULL)
        {
-         fprintf_filtered (outfile, "  `%s'", SYMBOL_DEMANGLED_NAME (p));
+         fprintf_filtered (outfile, "  `%s'", SYMBOL_DEMANGLED_NAME (*p));
        }
       fputs_filtered (", ", outfile);
-      switch (SYMBOL_NAMESPACE (p))
+      switch (SYMBOL_NAMESPACE (*p))
        {
        case UNDEF_NAMESPACE:
          fputs_filtered ("undefined namespace, ", outfile);
@@ -708,7 +778,7 @@ print_partial_symbol (p, count, what, outfile)
          fputs_filtered ("<invalid namespace>, ", outfile);
          break;
        }
-      switch (SYMBOL_CLASS (p))
+      switch (SYMBOL_CLASS (*p))
        {
        case LOC_UNDEF:
          fputs_filtered ("undefined", outfile);
@@ -752,6 +822,9 @@ print_partial_symbol (p, count, what, outfile)
        case LOC_LOCAL_ARG:
          fputs_filtered ("shuffled arg", outfile);
          break;
+       case LOC_UNRESOLVED:
+         fputs_filtered ("unresolved", outfile);
+         break;
        case LOC_OPTIMIZED_OUT:
          fputs_filtered ("optimized out", outfile);
          break;
@@ -763,7 +836,7 @@ print_partial_symbol (p, count, what, outfile)
       /* FIXME-32x64: Need to use SYMBOL_VALUE_ADDRESS, etc.; this
         could be 32 bits when some of the other fields in the union
         are 64.  */
-      fprintf_filtered (outfile, "0x%lx\n", SYMBOL_VALUE (p));
+      fprintf_filtered (outfile, "0x%lx\n", SYMBOL_VALUE (*p));
       p++;
     }
 }
@@ -834,6 +907,92 @@ maintenance_print_objfiles (ignore, from_tty)
   immediate_quit--;
 }
 
+/* Check consistency of psymtabs and symtabs.  */
+
+void
+maintenance_check_symtabs (ignore, from_tty)
+     char *ignore;
+     int from_tty;
+{
+  register struct symbol *sym;
+  register struct partial_symbol **psym;
+  register struct symtab *s = NULL;
+  register struct partial_symtab *ps;
+  struct blockvector *bv;
+  register struct objfile *objfile;
+  register struct block *b;
+  int length;
+
+  ALL_PSYMTABS (objfile, ps)
+    {
+      s = PSYMTAB_TO_SYMTAB(ps);
+      if (s == NULL)
+       continue;
+      bv = BLOCKVECTOR (s);
+      b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
+      psym = ps->objfile->static_psymbols.list + ps->statics_offset;
+      length = ps->n_static_syms;
+      while (length--)
+       {
+         sym = lookup_block_symbol (b, SYMBOL_NAME (*psym),
+                                    SYMBOL_NAMESPACE (*psym));
+         if (!sym)
+           {
+             printf_filtered ("Static symbol `");
+             puts_filtered (SYMBOL_NAME (*psym));
+             printf_filtered ("' only found in ");
+             puts_filtered (ps->filename);
+             printf_filtered (" psymtab\n");
+           }
+         psym++;
+       }
+      b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
+      psym = ps->objfile->global_psymbols.list + ps->globals_offset;
+      length = ps->n_global_syms;
+      while (length--)
+       {
+         sym = lookup_block_symbol (b, SYMBOL_NAME (*psym),
+                                    SYMBOL_NAMESPACE (*psym));
+         if (!sym)
+           {
+             printf_filtered ("Global symbol `");
+             puts_filtered (SYMBOL_NAME (*psym));
+             printf_filtered ("' only found in ");
+             puts_filtered (ps->filename);
+             printf_filtered (" psymtab\n");
+           }
+         psym++;
+       }
+      if (ps->texthigh < ps->textlow)
+       {
+         printf_filtered ("Psymtab ");
+         puts_filtered (ps->filename);
+         printf_filtered (" covers bad range ");
+          print_address_numeric (ps->textlow, 1, stdout);
+         printf_filtered (" - ");
+          print_address_numeric (ps->texthigh, 1, stdout);
+         printf_filtered ("\n");
+         continue;
+       }
+      if (ps->texthigh == 0)
+       continue;
+      if (ps->textlow < BLOCK_START (b) || ps->texthigh > BLOCK_END (b))
+       {
+         printf_filtered ("Psymtab ");
+         puts_filtered (ps->filename);
+         printf_filtered (" covers ");
+          print_address_numeric (ps->textlow, 1, stdout);
+         printf_filtered (" - ");
+          print_address_numeric (ps->texthigh, 1, stdout);
+         printf_filtered (" but symtab covers only ");
+          print_address_numeric (BLOCK_START (b), 1, stdout);
+         printf_filtered (" - ");
+          print_address_numeric (BLOCK_END (b), 1, stdout);
+         printf_filtered ("\n");
+       }
+    }
+}
+
 \f
 /* Return the nexting depth of a block within other blocks in its symtab.  */
 
@@ -853,7 +1012,7 @@ block_depth (block)
 
 \f
 /* Increase the space allocated for LISTP, which is probably
-   global_psymbol_list or static_psymbol_list. This space will eventually
+   global_psymbols or static_psymbols. This space will eventually
    be freed in free_objfile().  */
 
 void
@@ -865,15 +1024,15 @@ extend_psymbol_list (listp, objfile)
   if (listp->size == 0)
     {
       new_size = 255;
-      listp->list = (struct partial_symbol *)
-       xmmalloc (objfile -> md, new_size * sizeof (struct partial_symbol));
+      listp->list = (struct partial_symbol **)
+       xmmalloc (objfile -> md, new_size * sizeof (struct partial_symbol *));
     }
   else
     {
       new_size = listp->size * 2;
-      listp->list = (struct partial_symbol *)
+      listp->list = (struct partial_symbol **)
        xmrealloc (objfile -> md, (char *) listp->list,
-                  new_size * sizeof (struct partial_symbol));
+                  new_size * sizeof (struct partial_symbol *));
     }
   /* Next assumes we only went one over.  Should be good if
      program works correctly */
This page took 0.029416 seconds and 4 git commands to generate.