gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / binutils / size.c
index 0b014dfa09a17ecb3c9e7b4d34e07e07f4a00f76..369708771476d2afead60b844b169ac422675651 100644 (file)
@@ -1,23 +1,23 @@
 /* size.c -- report size of various sections of an executable file.
-   Copyright (C) 1991 Free Software Foundation, Inc.
+   Copyright (C) 1991-2020 Free Software Foundation, Inc.
 
-This file is part of GNU Binutils.
+   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.  */
+   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 3 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., 51 Franklin Street - Fifth Floor, Boston,
+   MA 02110-1301, USA.  */
+\f
 /* Extensions/incompatibilities:
    o - BSD output has filenames at the end.
    o - BSD output can appear in different radicies.
@@ -26,331 +26,643 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
    o - We also handle core files.
    o - We also handle archives.
    If you write shell scripts which manipulate this info then you may be
-   out of luck; there's no +predantic switch.
-*/
+   out of luck; there's no --compatibility or --pedantic option.  */
 
-#include "bfd.h"
 #include "sysdep.h"
+#include "bfd.h"
+#include "libiberty.h"
 #include "getopt.h"
+#include "bucomm.h"
 
 #ifndef BSD_DEFAULT
 #define BSD_DEFAULT 1
 #endif
 
-PROTO(void, display_file, (char *filename));
-PROTO(void, print_sizes,  (bfd *file));
+/* Program options.  */
+
+static enum
+  {
+    decimal, octal, hex
+  }
+radix = decimal;
+
+/* Select the desired output format.  */
+enum output_format
+  {
+   FORMAT_BERKLEY,
+   FORMAT_SYSV,
+   FORMAT_GNU
+  };
+static enum output_format selected_output_format =
+#if BSD_DEFAULT
+  FORMAT_BERKLEY
+#else
+  FORMAT_SYSV
+#endif
+  ;
+
+static int show_version = 0;
+static int show_help = 0;
+static int show_totals = 0;
+static int show_common = 0;
 
-/* Various program options */
+static bfd_size_type common_size;
+static bfd_size_type total_bsssize;
+static bfd_size_type total_datasize;
+static bfd_size_type total_textsize;
 
-enum {decimal, octal, hex} radix = decimal;
-int berkeley_format = BSD_DEFAULT; /* 0 means use AT&T-style output */
-int show_version = 0;
-int show_help = 0;
+/* Program exit status.  */
+static int return_code = 0;
 
-int return_code = 0;
+static char *target = NULL;
 
-/* IMPORTS */
-extern char *program_version;
-extern char *program_name;
-extern char *target;
-\f
-/** main and like trivia */
+/* Forward declarations.  */
 
-void
-usage ()
+static void display_file (char *);
+static void rprint_number (int, bfd_size_type);
+static void print_sizes (bfd * file);
+\f
+static void
+usage (FILE *stream, int status)
 {
-  fprintf (stderr, "size %s\nUsage: %s -{dox}{AB}V files ...\n",
-        program_version, program_name);
-  fputs("\t+radix={8|10|16} -- select appropriate output radix.\n\
-\t-d -- output in decimal\n\
-\t-o -- output in octal\n\
-\t-x -- output in hex", stderr);
-  fputs("\t+format={Berkeley|SysV} -- select display format.\n\
-\t-A -- SysV(AT&T) format\n\
-\t-B -- BSD format", stderr);
+  fprintf (stream, _("Usage: %s [option(s)] [file(s)]\n"), program_name);
+  fprintf (stream, _(" Displays the sizes of sections inside binary files\n"));
+  fprintf (stream, _(" If no input file(s) are specified, a.out is assumed\n"));
+  fprintf (stream, _(" The options are:\n\
+  -A|-B|-G  --format={sysv|berkeley|gnu}  Select output style (default is %s)\n\
+  -o|-d|-x  --radix={8|10|16}         Display numbers in octal, decimal or hex\n\
+  -t        --totals                  Display the total sizes (Berkeley only)\n\
+            --common                  Display total size for *COM* syms\n\
+            --target=<bfdname>        Set the binary file format\n\
+            @<file>                   Read options from <file>\n\
+  -h        --help                    Display this information\n\
+  -v        --version                 Display the program's version\n\
+\n"),
 #if BSD_DEFAULT
-  fputs("\t  (Default is +format=Berkeley)", stderr);
+  "berkeley"
 #else
-  fputs("\t  (Default is +format=SysV)", stderr);
+  "sysv"
 #endif
-  fputs("\t-V, +version -- display program version, etc.\n\
-\t+help -- this message\n", stderr);
-  exit(1);
+);
+  list_supported_targets (program_name, stream);
+  if (REPORT_BUGS_TO[0] && status == 0)
+    fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
+  exit (status);
 }
 
-struct option long_options[] = {{"radix",   no_argument, 0, 0},
-                               {"format",  required_argument, 0, 0},
-                               {"version", no_argument, &show_version, 1},
-                               {"target",  optional_argument, NULL, NULL},
-                               {"help",    no_argument, &show_help, 1},
-                               {0, no_argument, 0, 0}};
+#define OPTION_FORMAT (200)
+#define OPTION_RADIX (OPTION_FORMAT + 1)
+#define OPTION_TARGET (OPTION_RADIX + 1)
+
+static struct option long_options[] =
+{
+  {"common", no_argument, &show_common, 1},
+  {"format", required_argument, 0, OPTION_FORMAT},
+  {"radix", required_argument, 0, OPTION_RADIX},
+  {"target", required_argument, 0, OPTION_TARGET},
+  {"totals", no_argument, &show_totals, 1},
+  {"version", no_argument, &show_version, 1},
+  {"help", no_argument, &show_help, 1},
+  {0, no_argument, 0, 0}
+};
+
+int main (int, char **);
 
 int
-main (argc, argv)
-     int argc;
-     char **argv;
+main (int argc, char **argv)
 {
   int temp;
-  int c;                       /* sez which option char */
-  int option_index = 0;
-  extern int optind;           /* steps thru options */
-  program_name = *argv;
+  int c;
 
-  bfd_init();
-
-  while ((c = getopt_long(argc, argv, "ABVdox", long_options,
-                         &option_index)) != EOF)
-    switch(c) {
-    case 0:
-      if (!strcmp("format",(long_options[option_index]).name)) {
-       switch(*optarg) {
-       case 'B': case 'b': berkeley_format = 1; break;
-       case 'S': case 's': berkeley_format = 0; break;
-       default: printf("Unknown option to +format: %s\n", optarg);
-         usage();
-       }
+#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
+  setlocale (LC_MESSAGES, "");
+#endif
+#if defined (HAVE_SETLOCALE)
+  setlocale (LC_CTYPE, "");
+#endif
+  bindtextdomain (PACKAGE, LOCALEDIR);
+  textdomain (PACKAGE);
+
+  program_name = *argv;
+  xmalloc_set_program_name (program_name);
+  bfd_set_error_program_name (program_name);
+
+  expandargv (&argc, &argv);
+
+  if (bfd_init () != BFD_INIT_MAGIC)
+    fatal (_("fatal error: libbfd ABI mismatch"));
+  set_default_bfd_target ();
+
+  while ((c = getopt_long (argc, argv, "ABGHhVvdfotx", long_options,
+                          (int *) 0)) != EOF)
+    switch (c)
+      {
+      case OPTION_FORMAT:
+       switch (*optarg)
+         {
+         case 'B':
+         case 'b':
+           selected_output_format = FORMAT_BERKLEY;
+           break;
+         case 'S':
+         case 's':
+           selected_output_format = FORMAT_SYSV;
+           break;
+         case 'G':
+         case 'g':
+           selected_output_format = FORMAT_GNU;
+           break;
+         default:
+           non_fatal (_("invalid argument to --format: %s"), optarg);
+           usage (stderr, 1);
+         }
        break;
-      }
 
-      if (!strcmp("target",(long_options[option_index]).name)) {
+      case OPTION_TARGET:
        target = optarg;
        break;
-      }
 
-      if (!strcmp("radix",(long_options[option_index]).name)) {
+      case OPTION_RADIX:
 #ifdef ANSI_LIBRARIES
-       temp = strtol(optarg, NULL, 10);
+       temp = strtol (optarg, NULL, 10);
 #else
-       temp = atol(optarg);
+       temp = atol (optarg);
 #endif
-       switch(temp) {
-       case 10: radix = decimal; break;
-       case 8:  radix = octal; break;
-       case 16: radix = hex; break;
-       default: printf("Unknown radix: %s\n", optarg);
-         usage();
-       }
+       switch (temp)
+         {
+         case 10:
+           radix = decimal;
+           break;
+         case 8:
+           radix = octal;
+           break;
+         case 16:
+           radix = hex;
+           break;
+         default:
+           non_fatal (_("Invalid radix: %s\n"), optarg);
+           usage (stderr, 1);
+         }
+       break;
+
+      case 'A':
+       selected_output_format = FORMAT_SYSV;
+       break;
+      case 'B':
+       selected_output_format = FORMAT_BERKLEY;
+       break;
+      case 'G':
+       selected_output_format = FORMAT_GNU;
+       break;
+      case 'v':
+      case 'V':
+       show_version = 1;
+       break;
+      case 'd':
+       radix = decimal;
+       break;
+      case 'x':
+       radix = hex;
+       break;
+      case 'o':
+       radix = octal;
+       break;
+      case 't':
+       show_totals = 1;
+       break;
+      case 'f': /* FIXME : For sysv68, `-f' means `full format', i.e.
+                  `[fname:] M(.text) + N(.data) + O(.bss) + P(.comment) = Q'
+                  where `fname: ' appears only if there are >= 2 input files,
+                  and M, N, O, P, Q are expressed in decimal by default,
+                  hexa or octal if requested by `-x' or `-o'.
+                  Just to make things interesting, Solaris also accepts -f,
+                  which prints out the size of each allocatable section, the
+                  name of the section, and the total of the section sizes.  */
+               /* For the moment, accept `-f' silently, and ignore it.  */
+       break;
+      case 0:
+       break;
+      case 'h':
+      case 'H':
+      case '?':
+       usage (stderr, 1);
       }
-      break;
-    case 'A': berkeley_format = 0; break;
-    case 'B': berkeley_format = 1; break;
-    case 'V': show_version = 1; break;
-    case 'd': radix = decimal; break;
-    case 'x': radix = hex; break;
-    case 'o': radix = octal; break;
-    case '?': usage();
-    }
 
-  if (show_version) printf("%s version %s\n", program_name, program_version);
-  if (show_help) usage();
-       
+  if (show_version)
+    print_version ("size");
+  if (show_help)
+    usage (stdout, 0);
+
   if (optind == argc)
     display_file ("a.out");
   else
     for (; optind < argc;)
       display_file (argv[optind++]);
 
+  if (show_totals && (selected_output_format == FORMAT_BERKLEY
+                     || selected_output_format == FORMAT_GNU))
+    {
+      bfd_size_type total = total_textsize + total_datasize + total_bsssize;
+      int col_width = (selected_output_format == FORMAT_BERKLEY) ? 7 : 10;
+      char sep_char = (selected_output_format == FORMAT_BERKLEY) ? '\t' : ' ';
+
+      rprint_number (col_width, total_textsize);
+      putchar(sep_char);
+      rprint_number (col_width, total_datasize);
+      putchar(sep_char);
+      rprint_number (col_width, total_bsssize);
+      putchar(sep_char);
+      if (selected_output_format == FORMAT_BERKLEY)
+       printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx"),
+               (unsigned long) total, (unsigned long) total);
+      else
+       rprint_number (col_width, total);
+      putchar(sep_char);
+      fputs ("(TOTALS)\n", stdout);
+    }
+
   return return_code;
 }
 \f
-/** Display a file's stats */
+/* Total size required for common symbols in ABFD.  */
 
-void
-display_bfd (abfd)
-     bfd *abfd;
+static void
+calculate_common_size (bfd *abfd)
 {
-  CONST  char *core_cmd;
+  asymbol **syms = NULL;
+  long storage, symcount;
+
+  common_size = 0;
+  if ((bfd_get_file_flags (abfd) & (EXEC_P | DYNAMIC | HAS_SYMS)) != HAS_SYMS)
+    return;
 
-  if (bfd_check_format(abfd, bfd_archive)) return;
+  storage = bfd_get_symtab_upper_bound (abfd);
+  if (storage < 0)
+    bfd_fatal (bfd_get_filename (abfd));
+  if (storage)
+    syms = (asymbol **) xmalloc (storage);
 
-  if (bfd_check_format(abfd, bfd_object)) {
-    print_sizes(abfd);
-    goto done;
-  }
+  symcount = bfd_canonicalize_symtab (abfd, syms);
+  if (symcount < 0)
+    bfd_fatal (bfd_get_filename (abfd));
 
-  if (bfd_check_format(abfd, bfd_core)) {
-    print_sizes(abfd);
-    fputs(" (core file", stdout);
+  while (--symcount >= 0)
+    {
+      asymbol *sym = syms[symcount];
 
-    core_cmd = bfd_core_file_failing_command(abfd);
-    if (core_cmd) printf(" invoked as %s", core_cmd);
+      if (bfd_is_com_section (sym->section)
+         && (sym->flags & BSF_SECTION_SYM) == 0)
+       common_size += sym->value;
+    }
+  free (syms);
+}
 
-    puts(")");
-    goto done;
-  }
-  
-  printf("Unknown file format: %s.", bfd_get_filename(abfd));
-  return_code = 3;
+/* Display stats on file or archive member ABFD.  */
 
- done:
+static void
+display_bfd (bfd *abfd)
+{
+  char **matching;
 
+  if (bfd_check_format (abfd, bfd_archive))
+    /* An archive within an archive.  */
+    return;
 
-  printf("\n");
-  return;
+  if (bfd_check_format_matches (abfd, bfd_object, &matching))
+    {
+      print_sizes (abfd);
+      printf ("\n");
+      return;
+    }
+
+  if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
+    {
+      bfd_nonfatal (bfd_get_filename (abfd));
+      list_matching_formats (matching);
+      free (matching);
+      return_code = 3;
+      return;
+    }
+
+  if (bfd_check_format_matches (abfd, bfd_core, &matching))
+    {
+      const char *core_cmd;
+
+      print_sizes (abfd);
+      fputs (" (core file", stdout);
+
+      core_cmd = bfd_core_file_failing_command (abfd);
+      if (core_cmd)
+       printf (" invoked as %s", core_cmd);
+
+      puts (")\n");
+      return;
+    }
+
+  bfd_nonfatal (bfd_get_filename (abfd));
+
+  if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
+    {
+      list_matching_formats (matching);
+      free (matching);
+    }
+
+  return_code = 3;
 }
 
-void
-display_file(filename)
-     char *filename;
+static void
+display_archive (bfd *file)
 {
-  bfd *file, *arfile = (bfd *) NULL;
+  bfd *arfile = (bfd *) NULL;
+  bfd *last_arfile = (bfd *) NULL;
+
+  for (;;)
+    {
+      bfd_set_error (bfd_error_no_error);
+
+      arfile = bfd_openr_next_archived_file (file, arfile);
+      if (arfile == NULL)
+       {
+         if (bfd_get_error () != bfd_error_no_more_archived_files)
+           {
+             bfd_nonfatal (bfd_get_filename (file));
+             return_code = 2;
+           }
+         break;
+       }
 
-  file = bfd_openr (filename, target);
-  if (file == NULL) {
-    bfd_perror (filename);
-    return_code = 1;
-    return;
-  }
+      display_bfd (arfile);
 
-  if (bfd_check_format(file, bfd_archive) == true) {
-    for(;;) {
-      
-      bfd_error = no_error;
-
-       arfile = bfd_openr_next_archived_file (file, arfile);
-      if (arfile == NULL) {
-       if (bfd_error != no_more_archived_files) {
-         bfd_perror (bfd_get_filename (file));
-         return_code = 2;
-        }
-       return;
-      }
+      if (last_arfile != NULL)
+       {
+         bfd_close (last_arfile);
 
-      display_bfd (arfile);
-      /* Don't close the archive elements; we need them for next_archive */
+         /* PR 17512: file: a244edbc.  */
+         if (last_arfile == arfile)
+           return;
+       }
+
+      last_arfile = arfile;
     }
-  }
+
+  if (last_arfile != NULL)
+    bfd_close (last_arfile);
+}
+
+static void
+display_file (char *filename)
+{
+  bfd *file;
+
+  if (get_file_size (filename) < 1)
+    {
+      return_code = 1;
+      return;
+    }
+
+  file = bfd_openr (filename, target);
+  if (file == NULL)
+    {
+      bfd_nonfatal (filename);
+      return_code = 1;
+      return;
+    }
+
+  if (bfd_check_format (file, bfd_archive))
+    display_archive (file);
   else
     display_bfd (file);
 
-  bfd_close (file);
+  if (!bfd_close (file))
+    {
+      bfd_nonfatal (filename);
+      return_code = 1;
+      return;
+    }
 }
 \f
-/* This is what lexical functions are for */
-void
-lprint_number (width, num)
-     int width, num;
+static int
+size_number (bfd_size_type num)
 {
-  printf ((radix == decimal ? "%-*d\t" :
-          ((radix == octal) ? "%-*o\t" : "%-*x\t")), width, num);
+  char buffer[40];
+
+  sprintf (buffer,
+          (radix == decimal ? "%" BFD_VMA_FMT "u" :
+          ((radix == octal) ? "0%" BFD_VMA_FMT "o" : "0x%" BFD_VMA_FMT "x")),
+          num);
+
+  return strlen (buffer);
 }
 
-void
-rprint_number(width, num)
-     int width, num;
+static void
+rprint_number (int width, bfd_size_type num)
 {
-  printf ((radix == decimal ? "%*d\t" :
-          ((radix == octal) ? "%*o\t" : "%*x\t")), width, num);
+  char buffer[40];
+
+  sprintf (buffer,
+          (radix == decimal ? "%" BFD_VMA_FMT "u" :
+          ((radix == octal) ? "0%" BFD_VMA_FMT "o" : "0x%" BFD_VMA_FMT "x")),
+          num);
+
+  printf ("%*s", width, buffer);
 }
 
-static char *bss_section_name = ".bss";
-static char *data_section_name = ".data";
-static char *stack_section_name = ".stack";
-static char *text_section_name = ".text";
+static bfd_size_type bsssize;
+static bfd_size_type datasize;
+static bfd_size_type textsize;
+
+static void
+berkeley_or_gnu_sum (bfd *abfd ATTRIBUTE_UNUSED, sec_ptr sec,
+                    void *ignore ATTRIBUTE_UNUSED)
+{
+  flagword flags;
+  bfd_size_type size;
+
+  flags = bfd_section_flags (sec);
+  if ((flags & SEC_ALLOC) == 0)
+    return;
+
+  size = bfd_section_size (sec);
+  if ((flags & SEC_CODE) != 0
+      || (selected_output_format == FORMAT_BERKLEY
+         && (flags & SEC_READONLY) != 0))
+    textsize += size;
+  else if ((flags & SEC_HAS_CONTENTS) != 0)
+    datasize += size;
+  else
+    bsssize += size;
+}
 
-void print_berkeley_format(abfd)
-bfd *abfd;
+static void
+print_berkeley_or_gnu_format (bfd *abfd)
 {
   static int files_seen = 0;
-  sec_ptr bsssection = NULL;
-  sec_ptr datasection = NULL;
-  sec_ptr textsection = NULL;
-  unsigned long bsssize = 0;
-  unsigned long datasize = 0;
-  unsigned long textsize = 0;
-  unsigned long total = 0;
-
-  
-  if ((textsection = bfd_get_section_by_name (abfd, text_section_name))
-      != NULL) {
-    textsize = bfd_get_section_size_before_reloc (textsection);
-  }
+  bfd_size_type total;
+  int col_width = (selected_output_format == FORMAT_BERKLEY) ? 7 : 10;
+  char sep_char = (selected_output_format == FORMAT_BERKLEY) ? '\t' : ' ';
 
-  if ((datasection = bfd_get_section_by_name (abfd, data_section_name))
-      != NULL) {
-    datasize = bfd_get_section_size_before_reloc ( datasection);
-  }
-       
-  if (bfd_get_format (abfd) == bfd_object) {
-    if ((bsssection = bfd_get_section_by_name (abfd, bss_section_name))
-       != NULL) {
-      bsssize = bfd_section_size(abfd, bsssection);
-    }
-  } else {
-    if ((bsssection = bfd_get_section_by_name (abfd, stack_section_name))
-       != NULL) {
-      bsssize = bfd_section_size(abfd, bsssection);
-    }
-  }
+  bsssize = 0;
+  datasize = 0;
+  textsize = 0;
+
+  bfd_map_over_sections (abfd, berkeley_or_gnu_sum, NULL);
 
+  bsssize += common_size;
   if (files_seen++ == 0)
-#if 0  /* intel doesn't like bss/stk b/c they don't gave core files */
-    puts((radix == octal) ? "text\tdata\tbss/stk\toct\thex\tfilename" :
-        "text\tdata\tbss/stk\tdec\thex\tfilename");
-#else
-    puts((radix == octal) ? "text\tdata\tbss\toct\thex\tfilename" :
-        "text\tdata\tbss\tdec\thex\tfilename");
-#endif
-       
+    {
+      if (selected_output_format == FORMAT_BERKLEY)
+       puts ((radix == octal) ? "   text\t   data\t    bss\t    oct\t    hex\tfilename" :
+             "   text\t   data\t    bss\t    dec\t    hex\tfilename");
+      else
+       puts ("      text       data        bss      total filename");
+    }
+
   total = textsize + datasize + bsssize;
-       
-  lprint_number (7, textsize);
-  lprint_number (7, datasize);
-  lprint_number (7, bsssize);
-  printf (((radix == octal) ? "%-7o\t%-7x\t" : "%-7d\t%-7x\t"), total, total);
-
-  fputs(bfd_get_filename(abfd), stdout);
-  if (abfd->my_archive) printf (" (ex %s)", abfd->my_archive->filename);
+
+  if (show_totals)
+    {
+      total_textsize += textsize;
+      total_datasize += datasize;
+      total_bsssize  += bsssize;
+    }
+
+  rprint_number (col_width, textsize);
+  putchar (sep_char);
+  rprint_number (col_width, datasize);
+  putchar (sep_char);
+  rprint_number (col_width, bsssize);
+  putchar (sep_char);
+
+  if (selected_output_format == FORMAT_BERKLEY)
+    printf (((radix == octal) ? "%7lo\t%7lx" : "%7lu\t%7lx"),
+           (unsigned long) total, (unsigned long) total);
+  else
+    rprint_number (col_width, total);
+
+  putchar (sep_char);
+  fputs (bfd_get_filename (abfd), stdout);
+
+  if (abfd->my_archive)
+    printf (" (ex %s)", bfd_get_filename (abfd->my_archive));
 }
 
 /* I REALLY miss lexical functions! */
-int svi_total = 0;
+bfd_size_type svi_total = 0;
+bfd_vma svi_maxvma = 0;
+int svi_namelen = 0;
+int svi_vmalen = 0;
+int svi_sizelen = 0;
+
+static void
+sysv_internal_sizer (bfd *file ATTRIBUTE_UNUSED, sec_ptr sec,
+                    void *ignore ATTRIBUTE_UNUSED)
+{
+  flagword flags = bfd_section_flags (sec);
+  /* Exclude sections with no flags set.  This is to omit som spaces.  */
+  if (flags == 0)
+    return;
+
+  if (   ! bfd_is_abs_section (sec)
+      && ! bfd_is_com_section (sec)
+      && ! bfd_is_und_section (sec))
+    {
+      bfd_size_type size = bfd_section_size (sec);
+      int namelen = strlen (bfd_section_name (sec));
+
+      if (namelen > svi_namelen)
+       svi_namelen = namelen;
+
+      svi_total += size;
 
-void
-sysv_internal_printer(file, sec, ignore)
-     bfd *file;
-     sec_ptr sec;
-     PTR ignore;
+      if (bfd_section_vma (sec) > svi_maxvma)
+       svi_maxvma = bfd_section_vma (sec);
+    }
+}
+
+static void
+sysv_one_line (const char *name, bfd_size_type size, bfd_vma vma)
 {
-  int size = bfd_section_size (file, sec);
-  if (sec!= &bfd_abs_section 
-      && sec!= &bfd_com_section
-      && sec!=&bfd_und_section) 
-  {
-  
-    svi_total += size;
-       
-    printf ("%-12s", bfd_section_name(file, sec));
-    rprint_number (8, size);
-    printf(" ");
-    rprint_number (8, bfd_section_vma(file, sec));
-    printf ("\n");
-  }
+  printf ("%-*s   ", svi_namelen, name);
+  rprint_number (svi_sizelen, size);
+  printf ("   ");
+  rprint_number (svi_vmalen, vma);
+  printf ("\n");
+}
+
+static void
+sysv_internal_printer (bfd *file ATTRIBUTE_UNUSED, sec_ptr sec,
+                      void *ignore ATTRIBUTE_UNUSED)
+{
+  flagword flags = bfd_section_flags (sec);
+  if (flags == 0)
+    return;
 
+  if (   ! bfd_is_abs_section (sec)
+      && ! bfd_is_com_section (sec)
+      && ! bfd_is_und_section (sec))
+    {
+      bfd_size_type size = bfd_section_size (sec);
+
+      svi_total += size;
+
+      sysv_one_line (bfd_section_name (sec),
+                    size,
+                    bfd_section_vma (sec));
+    }
 }
 
-void
-print_sysv_format(file)
-     bfd *file;
+static void
+print_sysv_format (bfd *file)
 {
+  /* Size all of the columns.  */
   svi_total = 0;
+  svi_maxvma = 0;
+  svi_namelen = 0;
+  bfd_map_over_sections (file, sysv_internal_sizer, NULL);
+  if (show_common)
+    {
+      if (svi_namelen < (int) sizeof ("*COM*") - 1)
+       svi_namelen = sizeof ("*COM*") - 1;
+      svi_total += common_size;
+    }
 
+  svi_vmalen = size_number ((bfd_size_type)svi_maxvma);
+
+  if ((size_t) svi_vmalen < sizeof ("addr") - 1)
+    svi_vmalen = sizeof ("addr")-1;
+
+  svi_sizelen = size_number (svi_total);
+  if ((size_t) svi_sizelen < sizeof ("size") - 1)
+    svi_sizelen = sizeof ("size")-1;
+
+  svi_total = 0;
   printf ("%s  ", bfd_get_filename (file));
-  if (file->my_archive) printf (" (ex %s)", file->my_archive->filename);
 
-  puts(":\nsection\t\tsize\t     addr");
-  bfd_map_over_sections (file, sysv_internal_printer, (PTR)NULL);
+  if (file->my_archive)
+    printf (" (ex %s)", bfd_get_filename (file->my_archive));
 
-  printf("Total       ");
-  rprint_number(8, svi_total);
-  printf("\n");  printf("\n");
+  printf (":\n%-*s   %*s   %*s\n", svi_namelen, "section",
+         svi_sizelen, "size", svi_vmalen, "addr");
+
+  bfd_map_over_sections (file, sysv_internal_printer, NULL);
+  if (show_common)
+    {
+      svi_total += common_size;
+      sysv_one_line ("*COM*", common_size, 0);
+    }
+
+  printf ("%-*s   ", svi_namelen, "Total");
+  rprint_number (svi_sizelen, svi_total);
+  printf ("\n\n");
 }
 
-void
-print_sizes(file)
-     bfd *file;
+static void
+print_sizes (bfd *file)
 {
-  if (berkeley_format)
-    print_berkeley_format(file);
-  else print_sysv_format(file);
+  if (show_common)
+    calculate_common_size (file);
+  if (selected_output_format == FORMAT_SYSV)
+    print_sysv_format (file);
+  else
+    print_berkeley_or_gnu_format (file);
 }
This page took 0.038343 seconds and 4 git commands to generate.