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 2002, 2003 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. */
33 #include "libiberty.h"
40 /* Program options. */
48 int berkeley_format
= BSD_DEFAULT
; /* 0 means use AT&T-style output. */
53 static bfd_size_type total_bsssize
;
54 static bfd_size_type total_datasize
;
55 static bfd_size_type total_textsize
;
57 /* Program exit status. */
60 static char *target
= NULL
;
62 /* Static declarations. */
64 static void usage (FILE *, int);
65 static void display_file (char *);
66 static void display_bfd (bfd
*);
67 static void display_archive (bfd
*);
68 static int size_number (bfd_size_type
);
70 static void lprint_number (int, bfd_size_type
);
72 static void rprint_number (int, bfd_size_type
);
73 static void print_berkeley_format (bfd
*);
74 static void sysv_internal_sizer (bfd
*, asection
*, void *);
75 static void sysv_internal_printer (bfd
*, asection
*, void *);
76 static void print_sysv_format (bfd
*);
77 static void print_sizes (bfd
* file
);
78 static void berkeley_sum (bfd
*, sec_ptr
, void *);
81 usage (FILE *stream
, int status
)
83 fprintf (stream
, _("Usage: %s [option(s)] [file(s)]\n"), program_name
);
84 fprintf (stream
, _(" Displays the sizes of sections inside binary files\n"));
85 fprintf (stream
, _(" If no input file(s) are specified, a.out is assumed\n"));
86 fprintf (stream
, _(" The options are:\n\
87 -A|-B --format={sysv|berkeley} Select output style (default is %s)\n\
88 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\
89 -t --totals Display the total sizes (Berkeley only)\n\
90 --target=<bfdname> Set the binary file format\n\
91 -h --help Display this information\n\
92 -v --version Display the program's version\n\
100 list_supported_targets (program_name
, stream
);
102 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
106 struct option long_options
[] =
108 {"format", required_argument
, 0, 200},
109 {"radix", required_argument
, 0, 201},
110 {"target", required_argument
, 0, 202},
111 {"totals", no_argument
, &show_totals
, 1},
112 {"version", no_argument
, &show_version
, 1},
113 {"help", no_argument
, &show_help
, 1},
114 {0, no_argument
, 0, 0}
117 int main (int, char **);
120 main (int argc
, char **argv
)
125 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
126 setlocale (LC_MESSAGES
, "");
128 #if defined (HAVE_SETLOCALE)
129 setlocale (LC_CTYPE
, "");
131 bindtextdomain (PACKAGE
, LOCALEDIR
);
132 textdomain (PACKAGE
);
134 program_name
= *argv
;
135 xmalloc_set_program_name (program_name
);
138 set_default_bfd_target ();
140 while ((c
= getopt_long (argc
, argv
, "ABHhVvdfotx", long_options
,
144 case 200: /* --format */
156 non_fatal (_("invalid argument to --format: %s"), optarg
);
161 case 202: /* --target */
165 case 201: /* --radix */
166 #ifdef ANSI_LIBRARIES
167 temp
= strtol (optarg
, NULL
, 10);
169 temp
= atol (optarg
);
183 non_fatal (_("Invalid radix: %s\n"), optarg
);
210 case 'f': /* FIXME : For sysv68, `-f' means `full format', i.e.
211 `[fname:] M(.text) + N(.data) + O(.bss) + P(.comment) = Q'
212 where `fname: ' appears only if there are >= 2 input files,
213 and M, N, O, P, Q are expressed in decimal by default,
214 hexa or octal if requested by `-x' or `-o'.
215 Just to make things interesting, Solaris also accepts -f,
216 which prints out the size of each allocatable section, the
217 name of the section, and the total of the section sizes. */
218 /* For the moment, accept `-f' silently, and ignore it. */
229 print_version ("size");
234 display_file ("a.out");
236 for (; optind
< argc
;)
237 display_file (argv
[optind
++]);
239 if (show_totals
&& berkeley_format
)
241 bfd_size_type total
= total_textsize
+ total_datasize
+ total_bsssize
;
243 rprint_number (7, total_textsize
);
245 rprint_number (7, total_datasize
);
247 rprint_number (7, total_bsssize
);
248 printf (((radix
== octal
) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t"),
249 (unsigned long) total
, (unsigned long) total
);
250 fputs ("(TOTALS)\n", stdout
);
256 /* Display stats on file or archive member ABFD. */
259 display_bfd (bfd
*abfd
)
263 if (bfd_check_format (abfd
, bfd_archive
))
264 /* An archive within an archive. */
267 if (bfd_check_format_matches (abfd
, bfd_object
, &matching
))
274 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
276 bfd_nonfatal (bfd_get_filename (abfd
));
277 list_matching_formats (matching
);
283 if (bfd_check_format_matches (abfd
, bfd_core
, &matching
))
285 const char *core_cmd
;
288 fputs (" (core file", stdout
);
290 core_cmd
= bfd_core_file_failing_command (abfd
);
292 printf (" invoked as %s", core_cmd
);
298 bfd_nonfatal (bfd_get_filename (abfd
));
300 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
302 list_matching_formats (matching
);
310 display_archive (bfd
*file
)
312 bfd
*arfile
= (bfd
*) NULL
;
313 bfd
*last_arfile
= (bfd
*) NULL
;
317 bfd_set_error (bfd_error_no_error
);
319 arfile
= bfd_openr_next_archived_file (file
, arfile
);
322 if (bfd_get_error () != bfd_error_no_more_archived_files
)
324 bfd_nonfatal (bfd_get_filename (file
));
330 display_bfd (arfile
);
332 if (last_arfile
!= NULL
)
333 bfd_close (last_arfile
);
334 last_arfile
= arfile
;
337 if (last_arfile
!= NULL
)
338 bfd_close (last_arfile
);
342 display_file (char *filename
)
344 bfd
*file
= bfd_openr (filename
, target
);
348 bfd_nonfatal (filename
);
353 if (bfd_check_format (file
, bfd_archive
))
354 display_archive (file
);
358 if (!bfd_close (file
))
360 bfd_nonfatal (filename
);
366 /* This is what lexical functions are for. */
369 size_number (bfd_size_type num
)
374 (radix
== decimal
? "%lu" :
375 ((radix
== octal
) ? "0%lo" : "0x%lx")),
376 (unsigned long) num
);
378 return strlen (buffer
);
383 /* This is not used. */
386 lprint_number (int width
, bfd_size_type num
)
391 (radix
== decimal
? "%lu" :
392 ((radix
== octal
) ? "0%lo" : "0x%lx")),
393 (unsigned long) num
);
395 printf ("%-*s", width
, buffer
);
401 rprint_number (int width
, bfd_size_type num
)
406 (radix
== decimal
? "%lu" :
407 ((radix
== octal
) ? "0%lo" : "0x%lx")),
408 (unsigned long) num
);
410 printf ("%*s", width
, buffer
);
413 static bfd_size_type bsssize
;
414 static bfd_size_type datasize
;
415 static bfd_size_type textsize
;
418 berkeley_sum (bfd
*abfd ATTRIBUTE_UNUSED
, sec_ptr sec
,
419 void *ignore ATTRIBUTE_UNUSED
)
424 flags
= bfd_get_section_flags (abfd
, sec
);
425 if ((flags
& SEC_ALLOC
) == 0)
428 size
= bfd_get_section_size_before_reloc (sec
);
429 if ((flags
& SEC_CODE
) != 0 || (flags
& SEC_READONLY
) != 0)
431 else if ((flags
& SEC_HAS_CONTENTS
) != 0)
438 print_berkeley_format (bfd
*abfd
)
440 static int files_seen
= 0;
447 bfd_map_over_sections (abfd
, berkeley_sum
, NULL
);
449 if (files_seen
++ == 0)
451 /* Intel doesn't like bss/stk because they don't have core files. */
452 puts ((radix
== octal
) ? " text\t data\tbss/stk\t oct\t hex\tfilename" :
453 " text\t data\tbss/stk\t dec\t hex\tfilename");
455 puts ((radix
== octal
) ? " text\t data\t bss\t oct\t hex\tfilename" :
456 " text\t data\t bss\t dec\t hex\tfilename");
459 total
= textsize
+ datasize
+ bsssize
;
463 total_textsize
+= textsize
;
464 total_datasize
+= datasize
;
465 total_bsssize
+= bsssize
;
468 rprint_number (7, textsize
);
470 rprint_number (7, datasize
);
472 rprint_number (7, bsssize
);
473 printf (((radix
== octal
) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t"),
474 (unsigned long) total
, (unsigned long) total
);
476 fputs (bfd_get_filename (abfd
), stdout
);
478 if (bfd_my_archive (abfd
))
479 printf (" (ex %s)", bfd_get_filename (bfd_my_archive (abfd
)));
482 /* I REALLY miss lexical functions! */
483 bfd_size_type svi_total
= 0;
484 bfd_vma svi_maxvma
= 0;
490 sysv_internal_sizer (bfd
*file ATTRIBUTE_UNUSED
, sec_ptr sec
,
491 void *ignore ATTRIBUTE_UNUSED
)
493 bfd_size_type size
= bfd_section_size (file
, sec
);
495 if ( ! bfd_is_abs_section (sec
)
496 && ! bfd_is_com_section (sec
)
497 && ! bfd_is_und_section (sec
))
499 int namelen
= strlen (bfd_section_name (file
, sec
));
501 if (namelen
> svi_namelen
)
502 svi_namelen
= namelen
;
506 if (bfd_section_vma (file
, sec
) > svi_maxvma
)
507 svi_maxvma
= bfd_section_vma (file
, sec
);
512 sysv_internal_printer (bfd
*file ATTRIBUTE_UNUSED
, sec_ptr sec
,
513 void *ignore ATTRIBUTE_UNUSED
)
515 bfd_size_type size
= bfd_section_size (file
, sec
);
517 if ( ! bfd_is_abs_section (sec
)
518 && ! bfd_is_com_section (sec
)
519 && ! bfd_is_und_section (sec
))
523 printf ("%-*s ", svi_namelen
, bfd_section_name (file
, sec
));
524 rprint_number (svi_sizelen
, size
);
526 rprint_number (svi_vmalen
, bfd_section_vma (file
, sec
));
532 print_sysv_format (bfd
*file
)
534 /* Size all of the columns. */
538 bfd_map_over_sections (file
, sysv_internal_sizer
, NULL
);
539 svi_vmalen
= size_number ((bfd_size_type
)svi_maxvma
);
541 if ((size_t) svi_vmalen
< sizeof ("addr") - 1)
542 svi_vmalen
= sizeof ("addr")-1;
544 svi_sizelen
= size_number (svi_total
);
545 if ((size_t) svi_sizelen
< sizeof ("size") - 1)
546 svi_sizelen
= sizeof ("size")-1;
549 printf ("%s ", bfd_get_filename (file
));
551 if (bfd_my_archive (file
))
552 printf (" (ex %s)", bfd_get_filename (bfd_my_archive (file
)));
554 printf (":\n%-*s %*s %*s\n", svi_namelen
, "section",
555 svi_sizelen
, "size", svi_vmalen
, "addr");
557 bfd_map_over_sections (file
, sysv_internal_printer
, NULL
);
559 printf ("%-*s ", svi_namelen
, "Total");
560 rprint_number (svi_sizelen
, svi_total
);
565 print_sizes (bfd
*file
)
568 print_berkeley_format (file
);
570 print_sysv_format (file
);