binutils-gdb/binutils/size.c

586 lines
14 KiB
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* size.c -- report size of various sections of an executable file.
2002-01-23 17:12:56 +01:00
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
1999-05-03 09:29:11 +02:00
Free Software Foundation, Inc.
2002-01-25 16:37:04 +01:00
This file is part of GNU Binutils.
1999-05-03 09:29:11 +02:00
2002-01-25 16:37:04 +01:00
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.
1999-05-03 09:29:11 +02:00
2002-01-25 16:37:04 +01:00
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.
1999-05-03 09:29:11 +02:00
2002-01-25 16:37:04 +01:00
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
1999-05-03 09:29:11 +02:00
/* Extensions/incompatibilities:
o - BSD output has filenames at the end.
o - BSD output can appear in different radicies.
o - SysV output has less redundant whitespace. Filename comes at end.
o - SysV output doesn't show VMA which is always the same as the PMA.
o - We also handle core files.
o - We also handle archives.
If you write shell scripts which manipulate this info then you may be
2002-01-25 16:37:04 +01:00
out of luck; there's no --compatibility or --pedantic option. */
1999-05-03 09:29:11 +02:00
#include "bfd.h"
#include "bucomm.h"
#include "libiberty.h"
#include "getopt.h"
1999-05-03 09:29:11 +02:00
#ifndef BSD_DEFAULT
#define BSD_DEFAULT 1
#endif
/* Program options. */
enum
{
decimal, octal, hex
2002-01-25 16:37:04 +01:00
}
radix = decimal;
1999-05-03 09:29:11 +02:00
int berkeley_format = BSD_DEFAULT; /* 0 means use AT&T-style output. */
int show_version = 0;
int show_help = 0;
2002-01-25 16:37:04 +01:00
int show_totals = 0;
static bfd_size_type total_bsssize;
static bfd_size_type total_datasize;
static bfd_size_type total_textsize;
1999-05-03 09:29:11 +02:00
/* Program exit status. */
int return_code = 0;
static char *target = NULL;
2002-01-25 16:37:04 +01:00
/* Static declarations. */
1999-05-03 09:29:11 +02:00
2002-01-25 16:37:04 +01:00
static void usage PARAMS ((FILE *, int));
static void display_file PARAMS ((char *));
static void display_bfd PARAMS ((bfd *));
static void display_archive PARAMS ((bfd *));
static int size_number PARAMS ((bfd_size_type));
1999-05-03 09:29:11 +02:00
#if 0
2002-01-25 16:37:04 +01:00
static void lprint_number PARAMS ((int, bfd_size_type));
1999-05-03 09:29:11 +02:00
#endif
2002-01-25 16:37:04 +01:00
static void rprint_number PARAMS ((int, bfd_size_type));
1999-05-03 09:29:11 +02:00
static void print_berkeley_format PARAMS ((bfd *));
2002-01-25 16:37:04 +01:00
static void sysv_internal_sizer PARAMS ((bfd *, asection *, PTR));
1999-05-03 09:29:11 +02:00
static void sysv_internal_printer PARAMS ((bfd *, asection *, PTR));
2002-01-25 16:37:04 +01:00
static void print_sysv_format PARAMS ((bfd *));
static void print_sizes PARAMS ((bfd * file));
static void berkeley_sum PARAMS ((bfd *, sec_ptr, PTR));
1999-05-03 09:29:11 +02:00
static void
usage (stream, status)
FILE *stream;
int status;
{
2002-01-23 17:12:56 +01:00
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 --format={sysv|berkeley} Select output style (default is %s)\n\
-o|-d|-h --radix={8|10|16} Display numbers in octal, decimal or hex\n\
2002-01-25 16:37:04 +01:00
-t --totals Display the total sizes (Berkeley only)\n\
2002-01-23 17:12:56 +01:00
--target=<bfdname> Set the binary file format\n\
-h --help Display this information\n\
-v --version Display the program's version\n\
\n"),
1999-05-03 09:29:11 +02:00
#if BSD_DEFAULT
2002-01-23 17:12:56 +01:00
"berkeley"
1999-05-03 09:29:11 +02:00
#else
2002-01-23 17:12:56 +01:00
"sysv"
1999-05-03 09:29:11 +02:00
#endif
2002-01-23 17:12:56 +01:00
);
1999-05-03 09:29:11 +02:00
list_supported_targets (program_name, stream);
if (status == 0)
fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
1999-05-03 09:29:11 +02:00
exit (status);
}
struct option long_options[] =
{
{"format", required_argument, 0, 200},
{"radix", required_argument, 0, 201},
{"target", required_argument, 0, 202},
2002-01-25 16:37:04 +01:00
{"totals", no_argument, &show_totals, 1},
1999-05-03 09:29:11 +02:00
{"version", no_argument, &show_version, 1},
{"help", no_argument, &show_help, 1},
{0, no_argument, 0, 0}
};
int main PARAMS ((int, char **));
1999-05-03 09:29:11 +02:00
int
main (argc, argv)
int argc;
char **argv;
{
int temp;
int c;
#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
setlocale (LC_MESSAGES, "");
#endif
#if defined (HAVE_SETLOCALE)
setlocale (LC_CTYPE, "");
1999-05-03 09:29:11 +02:00
#endif
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
program_name = *argv;
xmalloc_set_program_name (program_name);
bfd_init ();
set_default_bfd_target ();
2002-01-25 16:37:04 +01:00
while ((c = getopt_long (argc, argv, "ABHhVvdfotx", long_options,
1999-05-03 09:29:11 +02:00
(int *) 0)) != EOF)
switch (c)
{
case 200: /* --format */
switch (*optarg)
{
case 'B':
case 'b':
berkeley_format = 1;
break;
case 'S':
case 's':
berkeley_format = 0;
break;
default:
non_fatal (_("invalid argument to --format: %s"), optarg);
1999-05-03 09:29:11 +02:00
usage (stderr, 1);
}
break;
case 202: /* --target */
target = optarg;
break;
case 201: /* --radix */
#ifdef ANSI_LIBRARIES
temp = strtol (optarg, NULL, 10);
#else
temp = atol (optarg);
#endif
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);
1999-05-03 09:29:11 +02:00
usage (stderr, 1);
}
break;
case 'A':
berkeley_format = 0;
break;
case 'B':
berkeley_format = 1;
break;
2002-01-23 17:12:56 +01:00
case 'v':
1999-05-03 09:29:11 +02:00
case 'V':
show_version = 1;
break;
case 'd':
radix = decimal;
break;
case 'x':
radix = hex;
break;
case 'o':
radix = octal;
break;
2002-01-25 16:37:04 +01:00
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;
1999-05-03 09:29:11 +02:00
case 0:
break;
2002-01-23 17:12:56 +01:00
case 'h':
case 'H':
1999-05-03 09:29:11 +02:00
case '?':
usage (stderr, 1);
}
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++]);
2002-01-25 16:37:04 +01:00
if (show_totals && berkeley_format)
{
bfd_size_type total = total_textsize + total_datasize + total_bsssize;
rprint_number (7, total_textsize);
putchar('\t');
rprint_number (7, total_datasize);
putchar('\t');
rprint_number (7, total_bsssize);
printf (((radix == octal) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t"),
(unsigned long) total, (unsigned long) total);
fputs ("(TOTALS)\n", stdout);
}
1999-05-03 09:29:11 +02:00
return return_code;
}
/* Display stats on file or archive member ABFD. */
static void
display_bfd (abfd)
bfd *abfd;
{
char **matching;
if (bfd_check_format (abfd, bfd_archive))
/* An archive within an archive. */
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))
{
2002-01-25 16:37:04 +01:00
const char *core_cmd;
1999-05-03 09:29:11 +02:00
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;
}
static void
display_archive (file)
bfd *file;
{
bfd *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;
}
display_bfd (arfile);
2002-01-25 16:37:04 +01:00
/* Don't close the archive elements; we need them for next_archive. */
1999-05-03 09:29:11 +02:00
}
}
static void
display_file (filename)
char *filename;
{
bfd *file = bfd_openr (filename, target);
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
if (file == NULL)
{
bfd_nonfatal (filename);
return_code = 1;
return;
}
if (bfd_check_format (file, bfd_archive) == true)
display_archive (file);
else
display_bfd (file);
if (bfd_close (file) == false)
{
bfd_nonfatal (filename);
return_code = 1;
return;
}
}
/* This is what lexical functions are for. */
static int
size_number (num)
bfd_size_type num;
{
char buffer[40];
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
sprintf (buffer,
(radix == decimal ? "%lu" :
((radix == octal) ? "0%lo" : "0x%lx")),
(unsigned long) num);
return strlen (buffer);
}
#if 0
/* This is not used. */
static void
lprint_number (width, num)
int width;
bfd_size_type num;
{
char buffer[40];
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
sprintf (buffer,
(radix == decimal ? "%lu" :
((radix == octal) ? "0%lo" : "0x%lx")),
(unsigned long) num);
printf ("%-*s", width, buffer);
}
#endif
static void
rprint_number (width, num)
int width;
bfd_size_type num;
{
char buffer[40];
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
sprintf (buffer,
(radix == decimal ? "%lu" :
((radix == octal) ? "0%lo" : "0x%lx")),
(unsigned long) num);
printf ("%*s", width, buffer);
}
static bfd_size_type bsssize;
static bfd_size_type datasize;
static bfd_size_type textsize;
static void
berkeley_sum (abfd, sec, ignore)
bfd *abfd ATTRIBUTE_UNUSED;
1999-05-03 09:29:11 +02:00
sec_ptr sec;
PTR ignore ATTRIBUTE_UNUSED;
1999-05-03 09:29:11 +02:00
{
flagword flags;
bfd_size_type size;
flags = bfd_get_section_flags (abfd, sec);
if ((flags & SEC_ALLOC) == 0)
return;
size = bfd_get_section_size_before_reloc (sec);
if ((flags & SEC_CODE) != 0 || (flags & SEC_READONLY) != 0)
textsize += size;
else if ((flags & SEC_HAS_CONTENTS) != 0)
datasize += size;
else
bsssize += size;
}
static void
print_berkeley_format (abfd)
bfd *abfd;
{
static int files_seen = 0;
bfd_size_type total;
bsssize = 0;
datasize = 0;
textsize = 0;
bfd_map_over_sections (abfd, berkeley_sum, (PTR) NULL);
if (files_seen++ == 0)
#if 0
/* Intel doesn't like bss/stk because they don't have core files. */
puts ((radix == octal) ? " text\t data\tbss/stk\t oct\t hex\tfilename" :
" text\t data\tbss/stk\t dec\t hex\tfilename");
#else
puts ((radix == octal) ? " text\t data\t bss\t oct\t hex\tfilename" :
" text\t data\t bss\t dec\t hex\tfilename");
#endif
total = textsize + datasize + bsssize;
2002-01-25 16:37:04 +01:00
if (show_totals)
{
total_textsize += textsize;
total_datasize += datasize;
total_bsssize += bsssize;
}
1999-05-03 09:29:11 +02:00
rprint_number (7, textsize);
putchar ('\t');
rprint_number (7, datasize);
putchar ('\t');
rprint_number (7, bsssize);
printf (((radix == octal) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t"),
(unsigned long) total, (unsigned long) total);
fputs (bfd_get_filename (abfd), stdout);
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
if (bfd_my_archive (abfd))
printf (" (ex %s)", bfd_get_filename (bfd_my_archive (abfd)));
}
/* I REALLY miss lexical functions! */
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 (file, sec, ignore)
bfd *file ATTRIBUTE_UNUSED;
1999-05-03 09:29:11 +02:00
sec_ptr sec;
PTR ignore ATTRIBUTE_UNUSED;
1999-05-03 09:29:11 +02:00
{
bfd_size_type size = bfd_section_size (file, sec);
2002-01-25 16:37:04 +01:00
if ( ! bfd_is_abs_section (sec)
&& ! bfd_is_com_section (sec)
&& ! bfd_is_und_section (sec))
1999-05-03 09:29:11 +02:00
{
int namelen = strlen (bfd_section_name (file, sec));
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
if (namelen > svi_namelen)
svi_namelen = namelen;
svi_total += size;
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
if (bfd_section_vma (file, sec) > svi_maxvma)
svi_maxvma = bfd_section_vma (file, sec);
}
}
static void
sysv_internal_printer (file, sec, ignore)
bfd *file ATTRIBUTE_UNUSED;
1999-05-03 09:29:11 +02:00
sec_ptr sec;
PTR ignore ATTRIBUTE_UNUSED;
1999-05-03 09:29:11 +02:00
{
bfd_size_type size = bfd_section_size (file, sec);
2002-01-25 16:37:04 +01:00
if ( ! bfd_is_abs_section (sec)
&& ! bfd_is_com_section (sec)
&& ! bfd_is_und_section (sec))
1999-05-03 09:29:11 +02:00
{
svi_total += size;
printf ("%-*s ", svi_namelen, bfd_section_name (file, sec));
rprint_number (svi_sizelen, size);
printf (" ");
rprint_number (svi_vmalen, bfd_section_vma (file, sec));
printf ("\n");
}
}
static void
print_sysv_format (file)
bfd *file;
{
2002-01-25 16:37:04 +01:00
/* Size all of the columns. */
1999-05-03 09:29:11 +02:00
svi_total = 0;
svi_maxvma = 0;
svi_namelen = 0;
bfd_map_over_sections (file, sysv_internal_sizer, (PTR) NULL);
svi_vmalen = size_number ((bfd_size_type)svi_maxvma);
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
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));
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
if (bfd_my_archive (file))
printf (" (ex %s)", bfd_get_filename (bfd_my_archive (file)));
printf (":\n%-*s %*s %*s\n", svi_namelen, "section",
svi_sizelen, "size", svi_vmalen, "addr");
2002-01-25 16:37:04 +01:00
1999-05-03 09:29:11 +02:00
bfd_map_over_sections (file, sysv_internal_printer, (PTR) NULL);
printf ("%-*s ", svi_namelen, "Total");
rprint_number (svi_sizelen, svi_total);
printf ("\n\n");
}
static void
print_sizes (file)
bfd *file;
{
if (berkeley_format)
print_berkeley_format (file);
else
print_sysv_format (file);
}