1992-06-13 07:24:22 +02:00
|
|
|
|
/* size.c -- report size of various sections of an executable file.
|
1994-02-03 01:25:30 +01:00
|
|
|
|
Copyright 1991, 92, 93, 94 Free Software Foundation, Inc.
|
1992-06-13 07:24:22 +02:00
|
|
|
|
|
|
|
|
|
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. */
|
1994-02-03 01:25:30 +01:00
|
|
|
|
|
1991-03-21 22:29:06 +01: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
|
1994-02-03 01:25:30 +01:00
|
|
|
|
out of luck; there's no --compatibility or --pedantic option.
|
1991-03-21 22:29:06 +01:00
|
|
|
|
*/
|
1992-06-13 07:24:22 +02:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#include "bfd.h"
|
1992-06-13 07:24:22 +02:00
|
|
|
|
#include "sysdep.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#include "getopt.h"
|
1994-02-03 01:25:30 +01:00
|
|
|
|
#include "bucomm.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
#ifndef BSD_DEFAULT
|
|
|
|
|
#define BSD_DEFAULT 1
|
|
|
|
|
#endif
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
/* Program options. */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
decimal, octal, hex
|
|
|
|
|
} radix = decimal;
|
|
|
|
|
int berkeley_format = BSD_DEFAULT; /* 0 means use AT&T-style output. */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
int show_version = 0;
|
|
|
|
|
int show_help = 0;
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
/* Program exit status. */
|
1992-06-13 07:24:22 +02:00
|
|
|
|
int return_code = 0;
|
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
/* IMPORTS */
|
|
|
|
|
extern char *program_version;
|
|
|
|
|
extern char *target;
|
1992-12-16 03:13:17 +01:00
|
|
|
|
|
|
|
|
|
/* Forward declarations */
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
static void display_file PARAMS ((char *filename));
|
1992-12-16 03:13:17 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
static void print_sizes PARAMS ((bfd * file));
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
static void berkeley_sum PARAMS ((bfd *, sec_ptr, PTR));
|
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
void
|
1994-02-03 01:25:30 +01:00
|
|
|
|
usage (stream, status)
|
|
|
|
|
FILE *stream;
|
|
|
|
|
int status;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
fprintf (stream, "\
|
1993-04-29 08:45:39 +02:00
|
|
|
|
Usage: %s [-ABdoxV] [--format=berkeley|sysv] [--radix=8|10|16]\n\
|
1994-02-03 01:25:30 +01:00
|
|
|
|
[--target=bfdname] [--version] [--help] [file...]\n", program_name);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#if BSD_DEFAULT
|
1994-02-03 01:25:30 +01:00
|
|
|
|
fputs ("default is --format=berkeley\n", stream);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#else
|
1994-02-03 01:25:30 +01:00
|
|
|
|
fputs ("default is --format=sysv\n", stream);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#endif
|
1994-02-03 01:25:30 +01:00
|
|
|
|
exit (status);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
struct option long_options[] =
|
|
|
|
|
{
|
|
|
|
|
{"format", required_argument, 0, 200},
|
|
|
|
|
{"radix", required_argument, 0, 201},
|
|
|
|
|
{"target", required_argument, 0, 202},
|
1993-04-29 08:45:39 +02:00
|
|
|
|
{"version", no_argument, &show_version, 1},
|
1994-02-03 01:25:30 +01:00
|
|
|
|
{"help", no_argument, &show_help, 1},
|
1993-04-29 08:45:39 +02:00
|
|
|
|
{0, no_argument, 0, 0}
|
|
|
|
|
};
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main (argc, argv)
|
|
|
|
|
int argc;
|
|
|
|
|
char **argv;
|
|
|
|
|
{
|
|
|
|
|
int temp;
|
1994-02-03 01:25:30 +01:00
|
|
|
|
int c;
|
1993-04-29 08:45:39 +02:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
program_name = *argv;
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_init ();
|
|
|
|
|
|
|
|
|
|
while ((c = getopt_long (argc, argv, "ABVdox", long_options,
|
|
|
|
|
(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:
|
|
|
|
|
fprintf (stderr, "invalid argument to --format: %s\n", optarg);
|
|
|
|
|
usage (stderr, 1);
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
break;
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
case 202: /* --target */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
target = optarg;
|
|
|
|
|
break;
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
case 201: /* --radix */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#ifdef ANSI_LIBRARIES
|
1994-02-03 01:25:30 +01:00
|
|
|
|
temp = strtol (optarg, NULL, 10);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#else
|
1994-02-03 01:25:30 +01:00
|
|
|
|
temp = atol (optarg);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#endif
|
1994-02-03 01:25:30 +01:00
|
|
|
|
switch (temp)
|
|
|
|
|
{
|
|
|
|
|
case 10:
|
|
|
|
|
radix = decimal;
|
|
|
|
|
break;
|
|
|
|
|
case 8:
|
|
|
|
|
radix = octal;
|
|
|
|
|
break;
|
|
|
|
|
case 16:
|
|
|
|
|
radix = hex;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
printf ("Invalid radix: %s\n", optarg);
|
|
|
|
|
usage (stderr, 1);
|
|
|
|
|
}
|
1993-04-29 08:45:39 +02:00
|
|
|
|
break;
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
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 0:
|
|
|
|
|
break;
|
|
|
|
|
case '?':
|
|
|
|
|
usage (stderr, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (show_version)
|
|
|
|
|
{
|
|
|
|
|
printf ("GNU %s version %s\n", program_name, program_version);
|
|
|
|
|
exit (0);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (show_help)
|
|
|
|
|
usage (stdout, 0);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
if (optind == argc)
|
|
|
|
|
display_file ("a.out");
|
|
|
|
|
else
|
|
|
|
|
for (; optind < argc;)
|
|
|
|
|
display_file (argv[optind++]);
|
|
|
|
|
|
1992-06-13 07:24:22 +02:00
|
|
|
|
return return_code;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
/* Display stats on file or archive member ABFD. */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
display_bfd (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
char **matching;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (bfd_check_format (abfd, bfd_archive))
|
|
|
|
|
/* An archive within an archive. */
|
|
|
|
|
return;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (bfd_check_format_matches (abfd, bfd_object, &matching))
|
|
|
|
|
{
|
|
|
|
|
print_sizes (abfd);
|
|
|
|
|
printf ("\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (bfd_error == file_ambiguously_recognized)
|
|
|
|
|
{
|
|
|
|
|
bfd_nonfatal (bfd_get_filename (abfd));
|
|
|
|
|
list_matching_formats (matching);
|
|
|
|
|
free (matching);
|
|
|
|
|
return_code = 3;
|
|
|
|
|
return;
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (bfd_check_format_matches (abfd, bfd_core, &matching))
|
|
|
|
|
{
|
|
|
|
|
CONST char *core_cmd;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
print_sizes (abfd);
|
|
|
|
|
fputs (" (core file", stdout);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
core_cmd = bfd_core_file_failing_command (abfd);
|
|
|
|
|
if (core_cmd)
|
|
|
|
|
printf (" invoked as %s", core_cmd);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
puts (")\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bfd_nonfatal (bfd_get_filename (abfd));
|
|
|
|
|
|
|
|
|
|
if (bfd_error == file_ambiguously_recognized)
|
|
|
|
|
{
|
|
|
|
|
list_matching_formats (matching);
|
|
|
|
|
free (matching);
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
return_code = 3;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-12-16 03:13:17 +01:00
|
|
|
|
static void
|
1994-02-03 01:25:30 +01:00
|
|
|
|
display_archive (file)
|
|
|
|
|
bfd *file;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd *arfile = (bfd *) NULL;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
for (;;)
|
|
|
|
|
{
|
1991-03-21 22:29:06 +01:00
|
|
|
|
bfd_error = no_error;
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
arfile = bfd_openr_next_archived_file (file, arfile);
|
|
|
|
|
if (arfile == NULL)
|
|
|
|
|
{
|
|
|
|
|
if (bfd_error != no_more_archived_files)
|
|
|
|
|
{
|
|
|
|
|
bfd_nonfatal (bfd_get_filename (file));
|
|
|
|
|
return_code = 2;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
display_bfd (arfile);
|
|
|
|
|
/* Don't close the archive elements; we need them for next_archive */
|
|
|
|
|
}
|
1994-02-03 01:25:30 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
display_file (filename)
|
|
|
|
|
char *filename;
|
|
|
|
|
{
|
|
|
|
|
bfd *file = bfd_openr (filename, target);
|
|
|
|
|
if (file == NULL)
|
|
|
|
|
{
|
|
|
|
|
bfd_nonfatal (filename);
|
|
|
|
|
return_code = 1;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bfd_check_format (file, bfd_archive) == true)
|
|
|
|
|
display_archive (file);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
else
|
|
|
|
|
display_bfd (file);
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (bfd_close (file) == false)
|
|
|
|
|
{
|
|
|
|
|
bfd_nonfatal (filename);
|
|
|
|
|
return_code = 1;
|
|
|
|
|
return;
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
/* This is what lexical functions are for. */
|
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
void
|
|
|
|
|
lprint_number (width, num)
|
1992-12-16 03:13:17 +01:00
|
|
|
|
int width;
|
|
|
|
|
bfd_size_type num;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1993-04-29 08:45:39 +02:00
|
|
|
|
printf ((radix == decimal ? "%-*lu\t" :
|
|
|
|
|
((radix == octal) ? "%-*lo\t" : "%-*lx\t")),
|
1994-02-03 01:25:30 +01:00
|
|
|
|
width, (unsigned long) num);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
1994-02-03 01:25:30 +01:00
|
|
|
|
rprint_number (width, num)
|
1992-12-16 03:13:17 +01:00
|
|
|
|
int width;
|
|
|
|
|
bfd_size_type num;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1993-04-29 08:45:39 +02:00
|
|
|
|
printf ((radix == decimal ? "%*lu\t" :
|
|
|
|
|
((radix == octal) ? "%*lo\t" : "%*lx\t")),
|
1994-02-03 01:25:30 +01:00
|
|
|
|
width, (unsigned long) num);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
static bfd_size_type bsssize;
|
|
|
|
|
static bfd_size_type datasize;
|
|
|
|
|
static bfd_size_type textsize;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
static void
|
|
|
|
|
berkeley_sum (abfd, sec, ignore)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
sec_ptr sec;
|
|
|
|
|
PTR ignore;
|
|
|
|
|
{
|
|
|
|
|
bfd_size_type size;
|
|
|
|
|
|
|
|
|
|
size = bfd_get_section_size_before_reloc (sec);
|
|
|
|
|
if (bfd_get_section_flags (abfd, sec) & SEC_CODE)
|
|
|
|
|
textsize += size;
|
|
|
|
|
else if (bfd_get_section_flags (abfd, sec) & SEC_DATA)
|
|
|
|
|
datasize += size;
|
|
|
|
|
else if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
|
|
|
|
|
bsssize += size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
print_berkeley_format (abfd)
|
|
|
|
|
bfd *abfd;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1992-06-13 07:24:22 +02:00
|
|
|
|
static int files_seen = 0;
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_size_type total;
|
|
|
|
|
|
|
|
|
|
bsssize = 0;
|
|
|
|
|
datasize = 0;
|
|
|
|
|
textsize = 0;
|
|
|
|
|
|
|
|
|
|
bfd_map_over_sections (abfd, berkeley_sum, (PTR) NULL);
|
1992-06-13 07:24:22 +02:00
|
|
|
|
|
|
|
|
|
if (files_seen++ == 0)
|
1994-02-03 01:25:30 +01:00
|
|
|
|
#if 0
|
|
|
|
|
/* Intel doesn't like bss/stk because they don't have core files. */
|
|
|
|
|
puts ((radix == octal) ? "text\tdata\tbss/stk\toct\thex\tfilename" :
|
|
|
|
|
"text\tdata\tbss/stk\tdec\thex\tfilename");
|
1992-06-13 07:24:22 +02:00
|
|
|
|
#else
|
1994-02-03 01:25:30 +01:00
|
|
|
|
puts ((radix == octal) ? "text\tdata\tbss\toct\thex\tfilename" :
|
|
|
|
|
"text\tdata\tbss\tdec\thex\tfilename");
|
1992-06-13 07:24:22 +02:00
|
|
|
|
#endif
|
1994-02-03 01:25:30 +01:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
total = textsize + datasize + bsssize;
|
1994-02-03 01:25:30 +01:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
lprint_number (7, textsize);
|
|
|
|
|
lprint_number (7, datasize);
|
|
|
|
|
lprint_number (7, bsssize);
|
1993-04-29 08:45:39 +02:00
|
|
|
|
printf (((radix == octal) ? "%-7lo\t%-7lx\t" : "%-7lu\t%-7lx\t"),
|
1994-02-03 01:25:30 +01:00
|
|
|
|
(unsigned long) total, (unsigned long) total);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
fputs (bfd_get_filename (abfd), stdout);
|
1994-02-03 02:39:10 +01:00
|
|
|
|
if (bfd_my_archive (abfd))
|
|
|
|
|
printf (" (ex %s)", bfd_get_filename (bfd_my_archive (abfd)));
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* I REALLY miss lexical functions! */
|
1992-12-16 03:13:17 +01:00
|
|
|
|
bfd_size_type svi_total = 0;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
void
|
1994-02-03 01:25:30 +01:00
|
|
|
|
sysv_internal_printer (file, sec, ignore)
|
1991-03-21 22:29:06 +01:00
|
|
|
|
bfd *file;
|
|
|
|
|
sec_ptr sec;
|
1992-06-13 07:24:22 +02:00
|
|
|
|
PTR ignore;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1992-12-16 03:13:17 +01:00
|
|
|
|
bfd_size_type size = bfd_section_size (file, sec);
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (sec != &bfd_abs_section
|
|
|
|
|
&& !bfd_is_com_section (sec)
|
|
|
|
|
&& 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");
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
1994-02-03 01:25:30 +01:00
|
|
|
|
print_sysv_format (file)
|
1991-03-21 22:29:06 +01:00
|
|
|
|
bfd *file;
|
|
|
|
|
{
|
|
|
|
|
svi_total = 0;
|
|
|
|
|
|
|
|
|
|
printf ("%s ", bfd_get_filename (file));
|
1994-02-03 14:08:29 +01:00
|
|
|
|
if (bfd_my_archive (file))
|
|
|
|
|
printf (" (ex %s)", bfd_get_filename (bfd_my_archive (file)));
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
puts (":\nsection\t\tsize\t addr");
|
|
|
|
|
bfd_map_over_sections (file, sysv_internal_printer, (PTR) NULL);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
printf ("Total ");
|
|
|
|
|
rprint_number (8, svi_total);
|
|
|
|
|
printf ("\n\n");
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-12-16 03:13:17 +01:00
|
|
|
|
static void
|
1994-02-03 01:25:30 +01:00
|
|
|
|
print_sizes (file)
|
1991-03-21 22:29:06 +01:00
|
|
|
|
bfd *file;
|
|
|
|
|
{
|
|
|
|
|
if (berkeley_format)
|
1994-02-03 01:25:30 +01:00
|
|
|
|
print_berkeley_format (file);
|
|
|
|
|
else
|
|
|
|
|
print_sysv_format (file);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|