1 /* size.c -- report size of various sections of an executable file.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* Extensions/incompatibilities:
22 o - BSD output has filenames at the end.
23 o - BSD output can appear in different radicies.
24 o - SysV output has less redundant whitespace. Filename comes at end.
25 o - SysV output doesn't show VMA which is always the same as the PMA.
26 o - We also handle core files.
27 o - We also handle archives.
28 If you write shell scripts which manipulate this info then you may be
29 out of luck; there's no --compatibility or --pedantic option.
35 #include "libiberty.h"
41 /* Program options. */
47 int berkeley_format
= BSD_DEFAULT
; /* 0 means use AT&T-style output. */
51 /* Program exit status. */
54 static char *target
= NULL
;
56 /* Static declarations */
58 static void usage
PARAMS ((FILE *, int));
59 static void display_file
PARAMS ((char *filename
));
60 static void display_bfd
PARAMS ((bfd
*));
61 static void display_archive
PARAMS ((bfd
*));
62 static int size_number
PARAMS ((bfd_size_type
));
64 static void lprint_number
PARAMS ((int, bfd_size_type
));
66 static void rprint_number
PARAMS ((int, bfd_size_type
));
67 static void print_berkeley_format
PARAMS ((bfd
*));
68 static void sysv_internal_sizer
PARAMS ((bfd
*, asection
*, PTR
));
69 static void sysv_internal_printer
PARAMS ((bfd
*, asection
*, PTR
));
70 static void print_sysv_format
PARAMS ((bfd
*));
71 static void print_sizes
PARAMS ((bfd
* file
));
72 static void berkeley_sum
PARAMS ((bfd
*, sec_ptr
, PTR
));
75 usage (stream
, status
)
80 Usage: %s [-A | --format=sysv | -B | --format=berkeley]\n\
81 [-o | --radix=8 | -d | --radix=10 | -h | --radix=16]\n\
82 [-V | --version] [--target=bfdname] [--help] [file...]\n"),
85 fputs (_("default is --format=berkeley\n"), stream
);
87 fputs (_("default is --format=sysv\n"), stream
);
89 list_supported_targets (program_name
, stream
);
91 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
95 struct option long_options
[] =
97 {"format", required_argument
, 0, 200},
98 {"radix", required_argument
, 0, 201},
99 {"target", required_argument
, 0, 202},
100 {"version", no_argument
, &show_version
, 1},
101 {"help", no_argument
, &show_help
, 1},
102 {0, no_argument
, 0, 0}
113 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
114 setlocale (LC_MESSAGES
, "");
116 #if defined (HAVE_SETLOCALE)
117 setlocale (LC_CTYPE
, "");
119 bindtextdomain (PACKAGE
, LOCALEDIR
);
120 textdomain (PACKAGE
);
122 program_name
= *argv
;
123 xmalloc_set_program_name (program_name
);
126 set_default_bfd_target ();
128 while ((c
= getopt_long (argc
, argv
, "ABVdfox", long_options
,
132 case 200: /* --format */
144 non_fatal (_("invalid argument to --format: %s"), optarg
);
149 case 202: /* --target */
153 case 201: /* --radix */
154 #ifdef ANSI_LIBRARIES
155 temp
= strtol (optarg
, NULL
, 10);
157 temp
= atol (optarg
);
171 non_fatal (_("Invalid radix: %s\n"), optarg
);
194 case 'f': /* FIXME : For sysv68, `-f' means `full format', i.e.
195 `[fname:] M(.text) + N(.data) + O(.bss) + P(.comment) = Q'
196 where `fname: ' appears only if there are >= 2 input files,
197 and M, N, O, P, Q are expressed in decimal by default,
198 hexa or octal if requested by `-x' or `-o'.
199 Just to make things interesting, Solaris also accepts -f,
200 which prints out the size of each allocatable section, the
201 name of the section, and the total of the section sizes. */
202 /* For the moment, accept `-f' silently, and ignore it. */
211 print_version ("size");
216 display_file ("a.out");
218 for (; optind
< argc
;)
219 display_file (argv
[optind
++]);
224 /* Display stats on file or archive member ABFD. */
232 if (bfd_check_format (abfd
, bfd_archive
))
233 /* An archive within an archive. */
236 if (bfd_check_format_matches (abfd
, bfd_object
, &matching
))
243 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
245 bfd_nonfatal (bfd_get_filename (abfd
));
246 list_matching_formats (matching
);
252 if (bfd_check_format_matches (abfd
, bfd_core
, &matching
))
254 CONST
char *core_cmd
;
257 fputs (" (core file", stdout
);
259 core_cmd
= bfd_core_file_failing_command (abfd
);
261 printf (" invoked as %s", core_cmd
);
267 bfd_nonfatal (bfd_get_filename (abfd
));
269 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
271 list_matching_formats (matching
);
279 display_archive (file
)
282 bfd
*arfile
= (bfd
*) NULL
;
286 bfd_set_error (bfd_error_no_error
);
288 arfile
= bfd_openr_next_archived_file (file
, arfile
);
291 if (bfd_get_error () != bfd_error_no_more_archived_files
)
293 bfd_nonfatal (bfd_get_filename (file
));
299 display_bfd (arfile
);
300 /* Don't close the archive elements; we need them for next_archive */
305 display_file (filename
)
308 bfd
*file
= bfd_openr (filename
, target
);
311 bfd_nonfatal (filename
);
316 if (bfd_check_format (file
, bfd_archive
) == true)
317 display_archive (file
);
321 if (bfd_close (file
) == false)
323 bfd_nonfatal (filename
);
329 /* This is what lexical functions are for. */
337 (radix
== decimal
? "%lu" :
338 ((radix
== octal
) ? "0%lo" : "0x%lx")),
339 (unsigned long) num
);
341 return strlen (buffer
);
346 /* This is not used. */
349 lprint_number (width
, num
)
355 (radix
== decimal
? "%lu" :
356 ((radix
== octal
) ? "0%lo" : "0x%lx")),
357 (unsigned long) num
);
359 printf ("%-*s", width
, buffer
);
365 rprint_number (width
, num
)
371 (radix
== decimal
? "%lu" :
372 ((radix
== octal
) ? "0%lo" : "0x%lx")),
373 (unsigned long) num
);
375 printf ("%*s", width
, buffer
);
378 static bfd_size_type bsssize
;
379 static bfd_size_type datasize
;
380 static bfd_size_type textsize
;
383 berkeley_sum (abfd
, sec
, ignore
)
384 bfd
*abfd ATTRIBUTE_UNUSED
;
386 PTR ignore ATTRIBUTE_UNUSED
;
391 flags
= bfd_get_section_flags (abfd
, sec
);
392 if ((flags
& SEC_ALLOC
) == 0)
395 size
= bfd_get_section_size_before_reloc (sec
);
396 if ((flags
& SEC_CODE
) != 0 || (flags
& SEC_READONLY
) != 0)
398 else if ((flags
& SEC_HAS_CONTENTS
) != 0)
405 print_berkeley_format (abfd
)
408 static int files_seen
= 0;
415 bfd_map_over_sections (abfd
, berkeley_sum
, (PTR
) NULL
);
417 if (files_seen
++ == 0)
419 /* Intel doesn't like bss/stk because they don't have core files. */
420 puts ((radix
== octal
) ? " text\t data\tbss/stk\t oct\t hex\tfilename" :
421 " text\t data\tbss/stk\t dec\t hex\tfilename");
423 puts ((radix
== octal
) ? " text\t data\t bss\t oct\t hex\tfilename" :
424 " text\t data\t bss\t dec\t hex\tfilename");
427 total
= textsize
+ datasize
+ bsssize
;
429 rprint_number (7, textsize
);
431 rprint_number (7, datasize
);
433 rprint_number (7, bsssize
);
434 printf (((radix
== octal
) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t"),
435 (unsigned long) total
, (unsigned long) total
);
437 fputs (bfd_get_filename (abfd
), stdout
);
438 if (bfd_my_archive (abfd
))
439 printf (" (ex %s)", bfd_get_filename (bfd_my_archive (abfd
)));
442 /* I REALLY miss lexical functions! */
443 bfd_size_type svi_total
= 0;
444 bfd_vma svi_maxvma
= 0;
450 sysv_internal_sizer (file
, sec
, ignore
)
451 bfd
*file ATTRIBUTE_UNUSED
;
453 PTR ignore ATTRIBUTE_UNUSED
;
455 bfd_size_type size
= bfd_section_size (file
, sec
);
456 if (!bfd_is_abs_section (sec
)
457 && !bfd_is_com_section (sec
)
458 && !bfd_is_und_section (sec
))
460 int namelen
= strlen (bfd_section_name (file
, sec
));
461 if (namelen
> svi_namelen
)
462 svi_namelen
= namelen
;
465 if (bfd_section_vma (file
, sec
) > svi_maxvma
)
466 svi_maxvma
= bfd_section_vma (file
, sec
);
471 sysv_internal_printer (file
, sec
, ignore
)
472 bfd
*file ATTRIBUTE_UNUSED
;
474 PTR ignore ATTRIBUTE_UNUSED
;
476 bfd_size_type size
= bfd_section_size (file
, sec
);
477 if (!bfd_is_abs_section (sec
)
478 && !bfd_is_com_section (sec
)
479 && !bfd_is_und_section (sec
))
483 printf ("%-*s ", svi_namelen
, bfd_section_name (file
, sec
));
484 rprint_number (svi_sizelen
, size
);
486 rprint_number (svi_vmalen
, bfd_section_vma (file
, sec
));
492 print_sysv_format (file
)
495 /* size all of the columns */
499 bfd_map_over_sections (file
, sysv_internal_sizer
, (PTR
) NULL
);
500 svi_vmalen
= size_number ((bfd_size_type
)svi_maxvma
);
501 if ((size_t) svi_vmalen
< sizeof ("addr") - 1)
502 svi_vmalen
= sizeof ("addr")-1;
504 svi_sizelen
= size_number (svi_total
);
505 if ((size_t) svi_sizelen
< sizeof ("size") - 1)
506 svi_sizelen
= sizeof ("size")-1;
509 printf ("%s ", bfd_get_filename (file
));
510 if (bfd_my_archive (file
))
511 printf (" (ex %s)", bfd_get_filename (bfd_my_archive (file
)));
513 printf (":\n%-*s %*s %*s\n", svi_namelen
, "section",
514 svi_sizelen
, "size", svi_vmalen
, "addr");
515 bfd_map_over_sections (file
, sysv_internal_printer
, (PTR
) NULL
);
517 printf ("%-*s ", svi_namelen
, "Total");
518 rprint_number (svi_sizelen
, svi_total
);
527 print_berkeley_format (file
);
529 print_sysv_format (file
);