* mipsread.c: Pass NULL name pointer to init_type, not 0.
[deliverable/binutils-gdb.git] / binutils / nm.c
index 522609518f68466ba422d75ea23a7a5829dfc076..7a7dea9daf698a31b6af73c31a028d75f310ae3b 100644 (file)
@@ -1,14 +1,33 @@
-/*** nm.c -- Describe symbol table of a rel file. */
-#include "sysdep.h"
+/* nm.c -- Describe symbol table of a rel file.
+   Copyright (C) 1991 Free Software Foundation, Inc.
+
+This file is part of GNU Binutils.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+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.  */
+
 #include "bfd.h"
+#include "sysdep.h"
+#include "bucomm.h"
 #include "getopt.h"
-#include "stab.gnu.h"
-#include <ranlib.h>
+#include "aout/stab_gnu.h"
+#include "aout/ranlib.h"
 
 
 
 PROTO(static boolean, display_file, (char *filename));
-PROTO(static boolean, do_one_rel_file, (bfd *file));
+PROTO(static void, do_one_rel_file, (bfd *file));
 PROTO(static unsigned int, filter_symbols, (bfd *file, asymbol **syms,
                                         unsigned long symcount));
 
@@ -36,17 +55,19 @@ extern char *program_version;
 extern char *target;
 
 struct option long_options[] = {
-       {"debug-syms",      0, &print_debug_syms,  1},
-       {"extern-only",     0, &external_only,     1},
-       {"no-sort",         0, &no_sort,           1},
-       {"numeric-sort",    0, &sort_numerically,  1},
-       {"print-armap",     0, &print_armap,       1},
-       {"print-file-name", 0, &file_on_each_line, 1},
-       {"reverse-sort",    0, &reverse_sort,      1},
-       {"target",          2, (int *)NULL,        0},
-       {"undefined-only",  0, &undefined_only,    1},
-       {0, 0, 0, 0}
+       {"debug-syms",      no_argument, &print_debug_syms,  1},
+       {"extern-only",     no_argument, &external_only,     1},
+       {"no-sort",         no_argument, &no_sort,         1},
+       {"numeric-sort",    no_argument, &sort_numerically,  1},
+       {"print-armap",     no_argument, &print_armap,       1},
+       {"print-file-name", no_argument, &file_on_each_line, 1},
+       {"reverse-sort",    no_argument, &reverse_sort,      1},
+       {"target",          optional_argument, (int *)NULL,        0},
+       {"undefined-only",  no_argument, &undefined_only,    1},
+       {0, no_argument, 0, 0}
 };
+
+int show_names = 0;
 \f
 /* Some error-reporting functions */
 
@@ -63,13 +84,14 @@ main (argc, argv)
      int argc;
      char **argv;
 {
-  int c; /* sez which option char */
-  int ind = 0; /* used by getopt and ignored by us */
-  extern int optind; /* steps thru options */
-       
+  int c;                       /* sez which option char */
+  int option_index = 0;                /* used by getopt and ignored by us */
+  int retval;  
   program_name = *argv;
-       
-  while ((c = getopt_long(argc, argv, "agnoprsu", long_options, &ind)) != EOF) {
+
+  bfd_init();
+
+  while ((c = getopt_long(argc, argv, "agnoprsu", long_options, &option_index)) != EOF) {
     switch (c) {
     case 'a': print_debug_syms = 1; break;
     case 'g': external_only = 1; break;
@@ -85,7 +107,7 @@ main (argc, argv)
        target = optarg;
       }
                        
-      break; /* we've been given a long option */
+      break;                   /* we've been given a long option */
                        
     default:
       usage ();
@@ -96,13 +118,18 @@ main (argc, argv)
      on sucess -- the inverse of the C sense. */
   
   /* OK, all options now parsed.  If no filename specified, do a.out. */
-  if (optind == argc) return !display_file ("a.out");
+  if (option_index == argc) return !display_file ("a.out");
   
+  retval = 0;
+  show_names = (argc -optind)>1;
   /* We were given several filenames to do: */
-  while (optind < argc)
-    if (!display_file (argv[optind++])) return 1;
+  while (optind < argc) {
+    if (!display_file (argv[optind++])) {
+      retval++;
+    }
+  }
 
-  return 0;
+  return retval;
 }
 \f
 /** Display a file's stats */
@@ -113,44 +140,58 @@ static boolean
 display_file (filename)
      char *filename;
 {
-  boolean retval = false;
+  boolean retval = true;
   bfd *file;
   bfd *arfile = NULL;
        
   file = bfd_openr(filename, target);
   if (file == NULL) {
-    bfd_fatal (filename);
-  }
+    fprintf (stderr, "\n%s: can't open '%s'.\n", program_name, filename);
+    return false;
 
-  if (bfd_check_format(file, bfd_object)) {
-    retval = do_one_rel_file (file);
-    goto closer;
-  }
 
-  if (!bfd_check_format (file, bfd_archive)) {
-    fprintf (stderr, "%s:  %s: unknown format.\n", program_name, filename);
-    retval = false;
-    goto closer;
   }
 
-  printf("In archive %s:\n", filename);
-  if (print_armap) print_symdef_entry (file);
-  for (;;) {
-    arfile = bfd_openr_next_archived_file (file, arfile);
 
-    if (arfile == NULL) {
-      if (bfd_error != no_more_archived_files)
-       bfd_fatal (filename);
+  if (bfd_check_format(file, bfd_object)) 
+      {
+       if (show_names) {
+         printf ("\n%s:\n",filename);
+       }
+       do_one_rel_file (file);
+      }
+  else if (bfd_check_format (file, bfd_archive)) {
+    if (!bfd_check_format (file, bfd_archive)) {
+      fprintf (stderr, "%s:  %s: unknown format.\n", program_name, filename);
+      retval = false;
       goto closer;
     }
+
+    printf("\n%s:\n", filename);
+    if (print_armap) print_symdef_entry (file);
+    for (;;) {
+      arfile = bfd_openr_next_archived_file (file, arfile);
+
+      if (arfile == NULL) {
+       if (bfd_error != no_more_archived_files)
+         bfd_fatal (filename);
+       goto closer;
+      }
                        
-    if (!bfd_check_format(arfile, bfd_object))
-      printf("%s: not an object file\n", arfile->filename);
-    else {
-      printf ("\n%s:\n", arfile->filename);
-      if (!do_one_rel_file (arfile)) return false;
+      if (!bfd_check_format(arfile, bfd_object))
+       printf("%s: not an object file\n", arfile->filename);
+      else {
+       printf ("\n%s:\n", arfile->filename);
+       do_one_rel_file (arfile) ;
+      }
     }
   }
+  else {
+    fprintf (stderr, "\n%s:  %s: unknown format.\n", program_name, filename);
+    retval = false;
+  }
+
 
  closer:
   if (bfd_close(file) == false)
@@ -160,7 +201,7 @@ display_file (filename)
 }
 \f
 
-static boolean
+static void
 do_one_rel_file (abfd)
      bfd *abfd;
 {
@@ -170,7 +211,7 @@ do_one_rel_file (abfd)
 
   if (!(bfd_get_file_flags (abfd) & HAS_SYMS)) {
     (void) printf ("No symbols in \"%s\".\n", bfd_get_filename (abfd));
-    return true;
+    return;
   }
 
       
@@ -202,11 +243,11 @@ do_one_rel_file (abfd)
        
   print_symbols (abfd, syms, symcount);
   free (syms);
-  return true;
+
 }
 \f
 /* Symbol-sorting predicates */
-#define valueof(x)  ((x)->section ? (x)->section->vma + (x)->value : (x)->value)
+#define valueof(x) ((x)->section->vma + (x)->value)
 int
 numeric_forward (x, y)
      char *x;
@@ -262,16 +303,23 @@ filter_symbols (abfd, syms, symcount)
 {
   asymbol **from, **to;
   unsigned int dst_count = 0;
+  asymbol *sym;
+  
   unsigned int src_count;
   for (from = to = syms, src_count = 0; src_count <symcount; src_count++) {
     int keep = 0;
-    flagword flags = (from[src_count])->flags;
 
+    
+       
+    flagword flags = (from[src_count])->flags;
+    sym = from[src_count];
     if (undefined_only) {
-      keep = (flags & BSF_UNDEFINED);
+      keep = sym->section == &bfd_und_section;
     } else if (external_only) {
-      keep = ((flags & BSF_GLOBAL) || (flags & BSF_UNDEFINED) ||
-             (flags & BSF_FORT_COMM));
+      keep = ((flags & BSF_GLOBAL) 
+             || (sym->section == &bfd_und_section) 
+             ||   (sym->section == &bfd_com_section));
+      
     } else {
       keep = 1;
     }
@@ -288,47 +336,6 @@ filter_symbols (abfd, syms, symcount)
   return dst_count;
 }
 \f
-
-/* Return a lower-case character corresponding to the symbol class of sym */
-char
-decode_symclass (sym)
-     asymbol *sym;
-{
-  flagword flags = sym->flags;
-  
-  if ((sym->value == 0) && (sym->section != NULL))
-    /* Huh?  All section names don't begin with "." */
-    return (sym->section->name)[1];
-
-  if (flags & BSF_FORT_COMM) return 'C';
-  if (flags & BSF_UNDEFINED) return 'U';
-  if (flags & BSF_ABSOLUTE)  return 'a';
-
-   if ( (flags & BSF_GLOBAL) || (flags & BSF_LOCAL) ){
-     if ( !strcmp(sym->section->name, ".text") ){
-       return 't';
-     } else if ( !strcmp(sym->section->name, ".data") ){
-       return 'd';
-     } else if ( !strcmp(sym->section->name, ".bss") ){
-       return 'b';
-     } else {
-       return 'o';
-     }
-    }
-
-  /* We don't have to handle these cases just yet, but we will soon:
-     N_SETV: 'v'; 
-     N_SETA: 'l'; 
-     N_SETT: 'x';
-     N_SETD: 'z';
-     N_SETB: 's';
-     N_INDR: 'i';
-     */
-  return '?';
-}
-
 static void
 print_symbols (abfd, syms, symcount)
      bfd *abfd;
@@ -336,29 +343,20 @@ print_symbols (abfd, syms, symcount)
      unsigned long symcount;
 {
   asymbol **sym = syms, **end = syms + symcount;
-  char class;
 
   for (; sym < end; ++sym) {
     if (file_on_each_line) printf("%s:", bfd_get_filename(abfd));
 
     if (undefined_only) {
-      if ((*sym)->flags & BSF_UNDEFINED)
+      if ((*sym)->section == &bfd_und_section)
        puts ((*sym)->name);
     }
     else {
       asymbol *p = *sym;
       if (p) {
-      class = decode_symclass (p);
-
-      if (p->flags & BSF_GLOBAL)
-       class = toupper (class);
-      
-      if (p->value || ((p->flags & BSF_UNDEFINED) !=  BSF_UNDEFINED)) 
-       printf_vma( (p->section ? p->value + p->section->vma : p->value));
-      else fputs ("        ", stdout);
-
-      printf (" %c %s\n", class, p->name);
-    }
+       bfd_print_symbol(abfd, stdout, p, bfd_print_symbol_nm);
+       putchar('\n');
+      }
     }
   }
 }
This page took 0.028621 seconds and 4 git commands to generate.