Fix a use of target_mourn_inferior in windows-nat.c
[deliverable/binutils-gdb.git] / binutils / nm.c
CommitLineData
252b5132 1/* nm.c -- Describe symbol table of a rel file.
6f2750fe 2 Copyright (C) 1991-2016 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GNU Binutils.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
32866df7 8 the Free Software Foundation; either version 3 of the License, or
252b5132
RH
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
b43b5d5f
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
3db64b00 21#include "sysdep.h"
252b5132
RH
22#include "bfd.h"
23#include "progress.h"
252b5132
RH
24#include "getopt.h"
25#include "aout/stab_gnu.h"
26#include "aout/ranlib.h"
27#include "demangle.h"
28#include "libiberty.h"
6ab6b380 29#include "elf-bfd.h"
33f5f537 30#include "elf/common.h"
552e55ed
JB
31#define DO_NOT_DEFINE_AOUTHDR
32#define DO_NOT_DEFINE_FILHDR
33#define DO_NOT_DEFINE_LINENO
34#define DO_NOT_DEFINE_SCNHDR
35#include "coff/external.h"
36#include "coff/internal.h"
37#include "libcoff.h"
3db64b00 38#include "bucomm.h"
7d0b9ebc 39#include "plugin-api.h"
ce3c775b 40#include "plugin.h"
252b5132
RH
41
42/* When sorting by size, we use this structure to hold the size and a
43 pointer to the minisymbol. */
44
45struct size_sym
46{
2da42df6 47 const void *minisym;
252b5132
RH
48 bfd_vma size;
49};
50
51/* When fetching relocs, we use this structure to pass information to
52 get_relocs. */
53
54struct get_relocs_info
55{
56 asection **secs;
57 arelent ***relocs;
58 long *relcount;
59 asymbol **syms;
60};
61
9710509e 62struct extended_symbol_info
977f7911
NC
63{
64 symbol_info *sinfo;
65 bfd_vma ssize;
33f5f537 66 elf_symbol_type *elfinfo;
552e55ed 67 coff_symbol_type *coffinfo;
977f7911
NC
68 /* FIXME: We should add more fields for Type, Line, Section. */
69};
70#define SYM_NAME(sym) (sym->sinfo->name)
71#define SYM_VALUE(sym) (sym->sinfo->value)
72#define SYM_TYPE(sym) (sym->sinfo->type)
73#define SYM_STAB_NAME(sym) (sym->sinfo->stab_name)
74#define SYM_STAB_DESC(sym) (sym->sinfo->stab_desc)
75#define SYM_STAB_OTHER(sym) (sym->sinfo->stab_other)
33f5f537
L
76#define SYM_SIZE(sym) \
77 (sym->elfinfo ? sym->elfinfo->internal_elf_sym.st_size: sym->ssize)
977f7911 78
252b5132 79/* The output formatting functions. */
2da42df6
AJ
80static void print_object_filename_bsd (char *);
81static void print_object_filename_sysv (char *);
82static void print_object_filename_posix (char *);
83static void print_archive_filename_bsd (char *);
84static void print_archive_filename_sysv (char *);
85static void print_archive_filename_posix (char *);
86static void print_archive_member_bsd (char *, const char *);
87static void print_archive_member_sysv (char *, const char *);
88static void print_archive_member_posix (char *, const char *);
89static void print_symbol_filename_bsd (bfd *, bfd *);
90static void print_symbol_filename_sysv (bfd *, bfd *);
91static void print_symbol_filename_posix (bfd *, bfd *);
92static void print_value (bfd *, bfd_vma);
93static void print_symbol_info_bsd (struct extended_symbol_info *, bfd *);
94static void print_symbol_info_sysv (struct extended_symbol_info *, bfd *);
95static void print_symbol_info_posix (struct extended_symbol_info *, bfd *);
252b5132
RH
96
97/* Support for different output formats. */
98struct output_fns
99 {
100 /* Print the name of an object file given on the command line. */
2da42df6 101 void (*print_object_filename) (char *);
252b5132
RH
102
103 /* Print the name of an archive file given on the command line. */
2da42df6 104 void (*print_archive_filename) (char *);
252b5132
RH
105
106 /* Print the name of an archive member file. */
2da42df6 107 void (*print_archive_member) (char *, const char *);
252b5132
RH
108
109 /* Print the name of the file (and archive, if there is one)
110 containing a symbol. */
2da42df6 111 void (*print_symbol_filename) (bfd *, bfd *);
252b5132
RH
112
113 /* Print a line of information about a symbol. */
2da42df6 114 void (*print_symbol_info) (struct extended_symbol_info *, bfd *);
252b5132 115 };
977f7911 116
252b5132
RH
117static struct output_fns formats[] =
118{
119 {print_object_filename_bsd,
120 print_archive_filename_bsd,
121 print_archive_member_bsd,
122 print_symbol_filename_bsd,
123 print_symbol_info_bsd},
124 {print_object_filename_sysv,
125 print_archive_filename_sysv,
126 print_archive_member_sysv,
127 print_symbol_filename_sysv,
128 print_symbol_info_sysv},
129 {print_object_filename_posix,
130 print_archive_filename_posix,
131 print_archive_member_posix,
132 print_symbol_filename_posix,
133 print_symbol_info_posix}
134};
135
136/* Indices in `formats'. */
137#define FORMAT_BSD 0
138#define FORMAT_SYSV 1
139#define FORMAT_POSIX 2
140#define FORMAT_DEFAULT FORMAT_BSD
141
142/* The output format to use. */
143static struct output_fns *format = &formats[FORMAT_DEFAULT];
144
252b5132
RH
145/* Command options. */
146
147static int do_demangle = 0; /* Pretty print C++ symbol names. */
977f7911
NC
148static int external_only = 0; /* Print external symbols only. */
149static int defined_only = 0; /* Print defined symbols only. */
150static int no_sort = 0; /* Don't sort; print syms in order found. */
151static int print_debug_syms = 0;/* Print debugger-only symbols too. */
152static int print_armap = 0; /* Describe __.SYMDEF data in archive files. */
72797995 153static int print_size = 0; /* Print size of defined symbols. */
977f7911
NC
154static int reverse_sort = 0; /* Sort in downward(alpha or numeric) order. */
155static int sort_numerically = 0;/* Sort in numeric rather than alpha order. */
156static int sort_by_size = 0; /* Sort by size of symbol. */
157static int undefined_only = 0; /* Print undefined symbols only. */
158static int dynamic = 0; /* Print dynamic symbols. */
159static int show_version = 0; /* Show the version number. */
160static int show_stats = 0; /* Show statistics. */
0873df2a 161static int show_synthetic = 0; /* Display synthesized symbols too. */
977f7911 162static int line_numbers = 0; /* Print line numbers for symbols. */
3c9458e9 163static int allow_special_symbols = 0; /* Allow special symbols. */
252b5132
RH
164
165/* When to print the names of files. Not mutually exclusive in SYSV format. */
166static int filename_per_file = 0; /* Once per file, on its own line. */
167static int filename_per_symbol = 0; /* Once per symbol, at start of line. */
168
169/* Print formats for printing a symbol value. */
970ccc77 170static char value_format_32bit[] = "%08lx";
39dbeff8 171#if BFD_HOST_64BIT_LONG
970ccc77 172static char value_format_64bit[] = "%016lx";
39dbeff8 173#elif BFD_HOST_64BIT_LONG_LONG
a46d1146 174#ifndef __MSVCRT__
39dbeff8 175static char value_format_64bit[] = "%016llx";
a46d1146
JM
176#else
177static char value_format_64bit[] = "%016I64x";
178#endif
39dbeff8 179#endif
970ccc77 180static int print_width = 0;
252b5132
RH
181static int print_radix = 16;
182/* Print formats for printing stab info. */
183static char other_format[] = "%02x";
184static char desc_format[] = "%04x";
185
186static char *target = NULL;
92b1b678
MT
187#if BFD_SUPPORTS_PLUGINS
188static const char *plugin_target = "plugin";
189#else
190static const char *plugin_target = NULL;
191#endif
252b5132
RH
192
193/* Used to cache the line numbers for a BFD. */
194static bfd *lineno_cache_bfd;
195static bfd *lineno_cache_rel_bfd;
196
c20f4f8c 197#define OPTION_TARGET 200
ddb1377c
AM
198#define OPTION_PLUGIN (OPTION_TARGET + 1)
199#define OPTION_SIZE_SORT (OPTION_PLUGIN + 1)
c20f4f8c 200
252b5132
RH
201static struct option long_options[] =
202{
203 {"debug-syms", no_argument, &print_debug_syms, 1},
28c309a2 204 {"demangle", optional_argument, 0, 'C'},
252b5132
RH
205 {"dynamic", no_argument, &dynamic, 1},
206 {"extern-only", no_argument, &external_only, 1},
207 {"format", required_argument, 0, 'f'},
208 {"help", no_argument, 0, 'h'},
209 {"line-numbers", no_argument, 0, 'l'},
210 {"no-cplus", no_argument, &do_demangle, 0}, /* Linux compatibility. */
211 {"no-demangle", no_argument, &do_demangle, 0},
ddb1377c
AM
212 {"no-sort", no_argument, 0, 'p'},
213 {"numeric-sort", no_argument, 0, 'n'},
ce3c775b 214 {"plugin", required_argument, 0, OPTION_PLUGIN},
252b5132
RH
215 {"portability", no_argument, 0, 'P'},
216 {"print-armap", no_argument, &print_armap, 1},
217 {"print-file-name", no_argument, 0, 'o'},
72797995 218 {"print-size", no_argument, 0, 'S'},
252b5132
RH
219 {"radix", required_argument, 0, 't'},
220 {"reverse-sort", no_argument, &reverse_sort, 1},
ddb1377c 221 {"size-sort", no_argument, 0, OPTION_SIZE_SORT},
3c9458e9 222 {"special-syms", no_argument, &allow_special_symbols, 1},
252b5132 223 {"stats", no_argument, &show_stats, 1},
0873df2a 224 {"synthetic", no_argument, &show_synthetic, 1},
c20f4f8c 225 {"target", required_argument, 0, OPTION_TARGET},
252b5132
RH
226 {"defined-only", no_argument, &defined_only, 1},
227 {"undefined-only", no_argument, &undefined_only, 1},
228 {"version", no_argument, &show_version, 1},
229 {0, no_argument, 0, 0}
230};
231\f
977f7911 232/* Some error-reporting functions. */
252b5132
RH
233
234static void
2da42df6 235usage (FILE *stream, int status)
252b5132 236{
8b53311e
NC
237 fprintf (stream, _("Usage: %s [option(s)] [file(s)]\n"), program_name);
238 fprintf (stream, _(" List symbols in [file(s)] (a.out by default).\n"));
239 fprintf (stream, _(" The options are:\n\
b56f55ce
NC
240 -a, --debug-syms Display debugger-only symbols\n\
241 -A, --print-file-name Print name of the input file before every symbol\n\
242 -B Same as --format=bsd\n\
28c309a2
NC
243 -C, --demangle[=STYLE] Decode low-level symbol names into user-level names\n\
244 The STYLE, if specified, can be `auto' (the default),\n\
f0c8c24a
NC
245 `gnu', `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
246 or `gnat'\n\
b56f55ce
NC
247 --no-demangle Do not demangle low-level symbol names\n\
248 -D, --dynamic Display dynamic symbols instead of normal symbols\n\
249 --defined-only Display only defined symbols\n\
250 -e (ignored)\n\
251 -f, --format=FORMAT Use the output format FORMAT. FORMAT can be `bsd',\n\
252 `sysv' or `posix'. The default is `bsd'\n\
253 -g, --extern-only Display only external symbols\n\
b56f55ce
NC
254 -l, --line-numbers Use debugging information to find a filename and\n\
255 line number for each symbol\n\
256 -n, --numeric-sort Sort symbols numerically by address\n\
257 -o Same as -A\n\
258 -p, --no-sort Do not sort the symbols\n\
259 -P, --portability Same as --format=posix\n\
d46fc8e8 260 -r, --reverse-sort Reverse the sense of the sort\n"));
ce3c775b 261#if BFD_SUPPORTS_PLUGINS
d46fc8e8
NC
262 fprintf (stream, _("\
263 --plugin NAME Load the specified plugin\n"));
ce3c775b 264#endif
d46fc8e8 265 fprintf (stream, _("\
d2ca6b5b 266 -S, --print-size Print size of defined symbols\n\
b56f55ce
NC
267 -s, --print-armap Include index for symbols from archive members\n\
268 --size-sort Sort symbols by size\n\
61bbd35b 269 --special-syms Include special symbols in the output\n\
0873df2a 270 --synthetic Display synthetic symbols as well\n\
b56f55ce
NC
271 -t, --radix=RADIX Use RADIX for printing symbol values\n\
272 --target=BFDNAME Specify the target object format as BFDNAME\n\
273 -u, --undefined-only Display only undefined symbols\n\
6e800839 274 -X 32_64 (ignored)\n\
07012eee 275 @FILE Read options from FILE\n\
8b53311e
NC
276 -h, --help Display this information\n\
277 -V, --version Display this program's version number\n\
b56f55ce 278\n"));
252b5132 279 list_supported_targets (program_name, stream);
92f01d61 280 if (REPORT_BUGS_TO[0] && status == 0)
b56f55ce 281 fprintf (stream, _("Report bugs to %s.\n"), REPORT_BUGS_TO);
252b5132
RH
282 exit (status);
283}
284
285/* Set the radix for the symbol value and size according to RADIX. */
286
287static void
2da42df6 288set_print_radix (char *radix)
252b5132
RH
289{
290 switch (*radix)
291 {
292 case 'x':
293 break;
294 case 'd':
295 case 'o':
296 if (*radix == 'd')
297 print_radix = 10;
298 else
299 print_radix = 8;
970ccc77 300 value_format_32bit[4] = *radix;
39dbeff8 301#if BFD_HOST_64BIT_LONG
970ccc77 302 value_format_64bit[5] = *radix;
39dbeff8 303#elif BFD_HOST_64BIT_LONG_LONG
a46d1146 304#ifndef __MSVCRT__
39dbeff8 305 value_format_64bit[6] = *radix;
a46d1146
JM
306#else
307 value_format_64bit[7] = *radix;
308#endif
39dbeff8 309#endif
252b5132
RH
310 other_format[3] = desc_format[3] = *radix;
311 break;
312 default:
37cc8ec1 313 fatal (_("%s: invalid radix"), radix);
252b5132
RH
314 }
315}
316
317static void
2da42df6 318set_output_format (char *f)
252b5132
RH
319{
320 int i;
321
322 switch (*f)
323 {
324 case 'b':
325 case 'B':
326 i = FORMAT_BSD;
327 break;
328 case 'p':
329 case 'P':
330 i = FORMAT_POSIX;
331 break;
332 case 's':
333 case 'S':
334 i = FORMAT_SYSV;
335 break;
336 default:
37cc8ec1 337 fatal (_("%s: invalid output format"), f);
252b5132
RH
338 }
339 format = &formats[i];
340}
341\f
33f5f537 342static const char *
552e55ed 343get_elf_symbol_type (unsigned int type)
33f5f537
L
344{
345 static char buff [32];
346
347 switch (type)
348 {
349 case STT_NOTYPE: return "NOTYPE";
350 case STT_OBJECT: return "OBJECT";
351 case STT_FUNC: return "FUNC";
352 case STT_SECTION: return "SECTION";
353 case STT_FILE: return "FILE";
354 case STT_COMMON: return "COMMON";
355 case STT_TLS: return "TLS";
356 default:
357 if (type >= STT_LOPROC && type <= STT_HIPROC)
358 sprintf (buff, _("<processor specific>: %d"), type);
359 else if (type >= STT_LOOS && type <= STT_HIOS)
360 sprintf (buff, _("<OS specific>: %d"), type);
361 else
362 sprintf (buff, _("<unknown>: %d"), type);
363 return buff;
364 }
365}
552e55ed
JB
366
367static const char *
368get_coff_symbol_type (const struct internal_syment *sym)
369{
370 static char buff [32];
371
372 switch (sym->n_sclass)
373 {
374 case C_BLOCK: return "Block";
375 case C_FILE: return "File";
376 case C_LINE: return "Line";
377 }
378
379 if (!sym->n_type)
380 return "None";
381
382 switch (DTYPE(sym->n_type))
383 {
384 case DT_FCN: return "Function";
385 case DT_PTR: return "Pointer";
386 case DT_ARY: return "Array";
387 }
388
389 sprintf (buff, _("<unknown>: %d/%d"), sym->n_sclass, sym->n_type);
390 return buff;
391}
382c1116 392\f
91d6fa6a 393/* Print symbol name NAME, read from ABFD, with printf format FORM,
382c1116 394 demangling it if requested. */
33f5f537 395
252b5132 396static void
91d6fa6a 397print_symname (const char *form, const char *name, bfd *abfd)
252b5132 398{
382c1116 399 if (do_demangle && *name)
252b5132 400 {
ed180cc5
AM
401 char *res = bfd_demangle (abfd, name, DMGL_ANSI | DMGL_PARAMS);
402
403 if (res != NULL)
404 {
91d6fa6a 405 printf (form, res);
ed180cc5
AM
406 free (res);
407 return;
408 }
382c1116 409 }
252b5132 410
91d6fa6a 411 printf (form, name);
382c1116 412}
252b5132 413
382c1116
NC
414static void
415print_symdef_entry (bfd *abfd)
416{
417 symindex idx = BFD_NO_MORE_SYMBOLS;
418 carsym *thesym;
419 bfd_boolean everprinted = FALSE;
33f5f537 420
382c1116
NC
421 for (idx = bfd_get_next_mapent (abfd, idx, &thesym);
422 idx != BFD_NO_MORE_SYMBOLS;
423 idx = bfd_get_next_mapent (abfd, idx, &thesym))
424 {
425 bfd *elt;
426 if (!everprinted)
252b5132 427 {
382c1116
NC
428 printf (_("\nArchive index:\n"));
429 everprinted = TRUE;
252b5132 430 }
382c1116
NC
431 elt = bfd_get_elt_at_index (abfd, idx);
432 if (elt == NULL)
433 bfd_fatal ("bfd_get_elt_at_index");
434 if (thesym->name != (char *) NULL)
252b5132 435 {
382c1116
NC
436 print_symname ("%s", thesym->name, abfd);
437 printf (" in %s\n", bfd_get_filename (elt));
252b5132 438 }
252b5132
RH
439 }
440}
382c1116
NC
441\f
442/* Choose which symbol entries to print;
443 compact them downward to get rid of the rest.
444 Return the number of symbols to be printed. */
252b5132 445
382c1116 446static long
91d6fa6a 447filter_symbols (bfd *abfd, bfd_boolean is_dynamic, void *minisyms,
382c1116 448 long symcount, unsigned int size)
252b5132 449{
382c1116
NC
450 bfd_byte *from, *fromend, *to;
451 asymbol *store;
252b5132 452
382c1116
NC
453 store = bfd_make_empty_symbol (abfd);
454 if (store == NULL)
455 bfd_fatal (bfd_get_filename (abfd));
f24ddbdd 456
382c1116
NC
457 from = (bfd_byte *) minisyms;
458 fromend = from + symcount * size;
459 to = (bfd_byte *) minisyms;
252b5132 460
382c1116 461 for (; from < fromend; from += size)
252b5132 462 {
382c1116
NC
463 int keep = 0;
464 asymbol *sym;
33f5f537 465
382c1116
NC
466 PROGRESS (1);
467
91d6fa6a 468 sym = bfd_minisymbol_to_symbol (abfd, is_dynamic, (const void *) from, store);
382c1116
NC
469 if (sym == NULL)
470 bfd_fatal (bfd_get_filename (abfd));
471
b794fc1d
AM
472 if (strcmp (sym->name, "__gnu_lto_slim") == 0)
473 non_fatal (_("%s: plugin needed to handle lto object"),
474 bfd_get_filename (abfd));
475
382c1116
NC
476 if (undefined_only)
477 keep = bfd_is_und_section (sym->section);
478 else if (external_only)
6a1b08f5
L
479 /* PR binutls/12753: Unique symbols are global too. */
480 keep = ((sym->flags & (BSF_GLOBAL
481 | BSF_WEAK
482 | BSF_GNU_UNIQUE)) != 0
382c1116
NC
483 || bfd_is_und_section (sym->section)
484 || bfd_is_com_section (sym->section));
485 else
486 keep = 1;
487
488 if (keep
489 && ! print_debug_syms
490 && (sym->flags & BSF_DEBUGGING) != 0)
491 keep = 0;
492
493 if (keep
494 && sort_by_size
495 && (bfd_is_abs_section (sym->section)
496 || bfd_is_und_section (sym->section)))
497 keep = 0;
498
499 if (keep
500 && defined_only)
252b5132 501 {
382c1116
NC
502 if (bfd_is_und_section (sym->section))
503 keep = 0;
252b5132 504 }
252b5132 505
3c9458e9
NC
506 if (keep
507 && bfd_is_target_special_symbol (abfd, sym)
508 && ! allow_special_symbols)
509 keep = 0;
510
382c1116
NC
511 if (keep)
512 {
ede76260
HPN
513 if (to != from)
514 memcpy (to, from, size);
382c1116
NC
515 to += size;
516 }
517 }
252b5132 518
382c1116 519 return (to - (bfd_byte *) minisyms) / size;
252b5132
RH
520}
521\f
522/* These globals are used to pass information into the sorting
523 routines. */
524static bfd *sort_bfd;
b34976b6 525static bfd_boolean sort_dynamic;
252b5132
RH
526static asymbol *sort_x;
527static asymbol *sort_y;
528
529/* Symbol-sorting predicates */
530#define valueof(x) ((x)->section->vma + (x)->value)
531
532/* Numeric sorts. Undefined symbols are always considered "less than"
533 defined symbols with zero values. Common symbols are not treated
534 specially -- i.e., their sizes are used as their "values". */
535
252b5132 536static int
2da42df6 537non_numeric_forward (const void *P_x, const void *P_y)
252b5132
RH
538{
539 asymbol *x, *y;
540 const char *xn, *yn;
541
542 x = bfd_minisymbol_to_symbol (sort_bfd, sort_dynamic, P_x, sort_x);
543 y = bfd_minisymbol_to_symbol (sort_bfd, sort_dynamic, P_y, sort_y);
544 if (x == NULL || y == NULL)
545 bfd_fatal (bfd_get_filename (sort_bfd));
546
547 xn = bfd_asymbol_name (x);
548 yn = bfd_asymbol_name (y);
549
9710509e
AM
550 if (yn == NULL)
551 return xn != NULL;
552 if (xn == NULL)
553 return -1;
554
555#ifdef HAVE_STRCOLL
556 /* Solaris 2.5 has a bug in strcoll.
557 strcoll returns invalid values when confronted with empty strings. */
558 if (*yn == '\0')
559 return *xn != '\0';
560 if (*xn == '\0')
561 return -1;
562
563 return strcoll (xn, yn);
564#else
565 return strcmp (xn, yn);
566#endif
252b5132
RH
567}
568
569static int
2da42df6 570non_numeric_reverse (const void *x, const void *y)
252b5132
RH
571{
572 return - non_numeric_forward (x, y);
573}
574
382c1116
NC
575static int
576numeric_forward (const void *P_x, const void *P_y)
577{
578 asymbol *x, *y;
579 asection *xs, *ys;
580
581 x = bfd_minisymbol_to_symbol (sort_bfd, sort_dynamic, P_x, sort_x);
582 y = bfd_minisymbol_to_symbol (sort_bfd, sort_dynamic, P_y, sort_y);
583 if (x == NULL || y == NULL)
584 bfd_fatal (bfd_get_filename (sort_bfd));
585
586 xs = bfd_get_section (x);
587 ys = bfd_get_section (y);
588
589 if (bfd_is_und_section (xs))
590 {
591 if (! bfd_is_und_section (ys))
592 return -1;
593 }
594 else if (bfd_is_und_section (ys))
595 return 1;
596 else if (valueof (x) != valueof (y))
597 return valueof (x) < valueof (y) ? -1 : 1;
598
599 return non_numeric_forward (P_x, P_y);
600}
601
602static int
603numeric_reverse (const void *x, const void *y)
604{
605 return - numeric_forward (x, y);
606}
607
2da42df6 608static int (*(sorters[2][2])) (const void *, const void *) =
252b5132
RH
609{
610 { non_numeric_forward, non_numeric_reverse },
611 { numeric_forward, numeric_reverse }
612};
613
614/* This sort routine is used by sort_symbols_by_size. It is similar
615 to numeric_forward, but when symbols have the same value it sorts
616 by section VMA. This simplifies the sort_symbols_by_size code
617 which handles symbols at the end of sections. Also, this routine
618 tries to sort file names before other symbols with the same value.
619 That will make the file name have a zero size, which will make
620 sort_symbols_by_size choose the non file name symbol, leading to
621 more meaningful output. For similar reasons, this code sorts
622 gnu_compiled_* and gcc2_compiled before other symbols with the same
623 value. */
624
625static int
2da42df6 626size_forward1 (const void *P_x, const void *P_y)
252b5132
RH
627{
628 asymbol *x, *y;
629 asection *xs, *ys;
630 const char *xn, *yn;
631 size_t xnl, ynl;
632 int xf, yf;
633
634 x = bfd_minisymbol_to_symbol (sort_bfd, sort_dynamic, P_x, sort_x);
635 y = bfd_minisymbol_to_symbol (sort_bfd, sort_dynamic, P_y, sort_y);
636 if (x == NULL || y == NULL)
637 bfd_fatal (bfd_get_filename (sort_bfd));
638
639 xs = bfd_get_section (x);
640 ys = bfd_get_section (y);
641
642 if (bfd_is_und_section (xs))
643 abort ();
644 if (bfd_is_und_section (ys))
645 abort ();
646
647 if (valueof (x) != valueof (y))
648 return valueof (x) < valueof (y) ? -1 : 1;
649
650 if (xs->vma != ys->vma)
651 return xs->vma < ys->vma ? -1 : 1;
652
653 xn = bfd_asymbol_name (x);
654 yn = bfd_asymbol_name (y);
655 xnl = strlen (xn);
656 ynl = strlen (yn);
657
658 /* The symbols gnu_compiled and gcc2_compiled convey even less
659 information than the file name, so sort them out first. */
660
661 xf = (strstr (xn, "gnu_compiled") != NULL
662 || strstr (xn, "gcc2_compiled") != NULL);
663 yf = (strstr (yn, "gnu_compiled") != NULL
664 || strstr (yn, "gcc2_compiled") != NULL);
665
666 if (xf && ! yf)
667 return -1;
668 if (! xf && yf)
669 return 1;
670
671 /* We use a heuristic for the file name. It may not work on non
672 Unix systems, but it doesn't really matter; the only difference
673 is precisely which symbol names get printed. */
674
675#define file_symbol(s, sn, snl) \
676 (((s)->flags & BSF_FILE) != 0 \
677 || ((sn)[(snl) - 2] == '.' \
678 && ((sn)[(snl) - 1] == 'o' \
679 || (sn)[(snl) - 1] == 'a')))
680
681 xf = file_symbol (x, xn, xnl);
682 yf = file_symbol (y, yn, ynl);
683
684 if (xf && ! yf)
685 return -1;
686 if (! xf && yf)
687 return 1;
688
689 return non_numeric_forward (P_x, P_y);
690}
691
692/* This sort routine is used by sort_symbols_by_size. It is sorting
693 an array of size_sym structures into size order. */
694
695static int
2da42df6 696size_forward2 (const void *P_x, const void *P_y)
252b5132
RH
697{
698 const struct size_sym *x = (const struct size_sym *) P_x;
699 const struct size_sym *y = (const struct size_sym *) P_y;
700
701 if (x->size < y->size)
702 return reverse_sort ? 1 : -1;
703 else if (x->size > y->size)
704 return reverse_sort ? -1 : 1;
705 else
706 return sorters[0][reverse_sort] (x->minisym, y->minisym);
707}
708
6ab6b380
NC
709/* Sort the symbols by size. ELF provides a size but for other formats
710 we have to make a guess by assuming that the difference between the
711 address of a symbol and the address of the next higher symbol is the
712 size. */
252b5132
RH
713
714static long
91d6fa6a 715sort_symbols_by_size (bfd *abfd, bfd_boolean is_dynamic, void *minisyms,
2da42df6
AJ
716 long symcount, unsigned int size,
717 struct size_sym **symsizesp)
252b5132
RH
718{
719 struct size_sym *symsizes;
720 bfd_byte *from, *fromend;
721 asymbol *sym = NULL;
722 asymbol *store_sym, *store_next;
723
724 qsort (minisyms, symcount, size, size_forward1);
725
726 /* We are going to return a special set of symbols and sizes to
727 print. */
3f5e193b 728 symsizes = (struct size_sym *) xmalloc (symcount * sizeof (struct size_sym));
252b5132
RH
729 *symsizesp = symsizes;
730
731 /* Note that filter_symbols has already removed all absolute and
732 undefined symbols. Here we remove all symbols whose size winds
733 up as zero. */
252b5132
RH
734 from = (bfd_byte *) minisyms;
735 fromend = from + symcount * size;
736
737 store_sym = sort_x;
738 store_next = sort_y;
739
740 if (from < fromend)
741 {
91d6fa6a 742 sym = bfd_minisymbol_to_symbol (abfd, is_dynamic, (const void *) from,
252b5132
RH
743 store_sym);
744 if (sym == NULL)
745 bfd_fatal (bfd_get_filename (abfd));
746 }
747
748 for (; from < fromend; from += size)
749 {
750 asymbol *next;
751 asection *sec;
752 bfd_vma sz;
753 asymbol *temp;
754
755 if (from + size < fromend)
756 {
757 next = bfd_minisymbol_to_symbol (abfd,
91d6fa6a 758 is_dynamic,
2da42df6 759 (const void *) (from + size),
252b5132
RH
760 store_next);
761 if (next == NULL)
762 bfd_fatal (bfd_get_filename (abfd));
763 }
764 else
765 next = NULL;
766
767 sec = bfd_get_section (sym);
768
9710509e 769 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
6ab6b380
NC
770 sz = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
771 else if (bfd_is_com_section (sec))
252b5132
RH
772 sz = sym->value;
773 else
774 {
775 if (from + size < fromend
776 && sec == bfd_get_section (next))
777 sz = valueof (next) - valueof (sym);
778 else
779 sz = (bfd_get_section_vma (abfd, sec)
780 + bfd_section_size (abfd, sec)
781 - valueof (sym));
782 }
783
784 if (sz != 0)
785 {
2da42df6 786 symsizes->minisym = (const void *) from;
252b5132
RH
787 symsizes->size = sz;
788 ++symsizes;
789 }
790
791 sym = next;
792
793 temp = store_sym;
794 store_sym = store_next;
795 store_next = temp;
796 }
797
798 symcount = symsizes - *symsizesp;
799
800 /* We must now sort again by size. */
2da42df6 801 qsort ((void *) *symsizesp, symcount, sizeof (struct size_sym), size_forward2);
252b5132
RH
802
803 return symcount;
804}
382c1116
NC
805
806/* This function is used to get the relocs for a particular section.
807 It is called via bfd_map_over_sections. */
252b5132
RH
808
809static void
382c1116 810get_relocs (bfd *abfd, asection *sec, void *dataarg)
252b5132 811{
382c1116 812 struct get_relocs_info *data = (struct get_relocs_info *) dataarg;
252b5132 813
382c1116
NC
814 *data->secs = sec;
815
816 if ((sec->flags & SEC_RELOC) == 0)
252b5132 817 {
382c1116
NC
818 *data->relocs = NULL;
819 *data->relcount = 0;
252b5132 820 }
382c1116
NC
821 else
822 {
823 long relsize;
252b5132 824
382c1116
NC
825 relsize = bfd_get_reloc_upper_bound (abfd, sec);
826 if (relsize < 0)
827 bfd_fatal (bfd_get_filename (abfd));
252b5132 828
3f5e193b 829 *data->relocs = (arelent **) xmalloc (relsize);
382c1116
NC
830 *data->relcount = bfd_canonicalize_reloc (abfd, sec, *data->relocs,
831 data->syms);
832 if (*data->relcount < 0)
833 bfd_fatal (bfd_get_filename (abfd));
68a4c073 834 }
252b5132 835
382c1116
NC
836 ++data->secs;
837 ++data->relocs;
838 ++data->relcount;
839}
840
841/* Print a single symbol. */
842
843static void
896ca098
NC
844print_symbol (bfd * abfd,
845 asymbol * sym,
846 bfd_vma ssize,
2387dd90 847 bfd * archive_bfd)
382c1116
NC
848{
849 symbol_info syminfo;
850 struct extended_symbol_info info;
851
852 PROGRESS (1);
853
854 format->print_symbol_filename (archive_bfd, abfd);
855
856 bfd_get_symbol_info (abfd, sym, &syminfo);
896ca098 857
382c1116
NC
858 info.sinfo = &syminfo;
859 info.ssize = ssize;
552e55ed 860 /* Synthetic symbols do not have a full symbol type set of data available. */
2387dd90 861 if ((sym->flags & BSF_SYNTHETIC) != 0)
552e55ed
JB
862 {
863 info.elfinfo = NULL;
864 info.coffinfo = NULL;
865 }
866 else
867 {
868 info.elfinfo = elf_symbol_from (abfd, sym);
869 info.coffinfo = coff_symbol_from (sym);
870 }
896ca098 871
382c1116
NC
872 format->print_symbol_info (&info, abfd);
873
874 if (line_numbers)
0873df2a 875 {
382c1116
NC
876 static asymbol **syms;
877 static long symcount;
878 const char *filename, *functionname;
879 unsigned int lineno;
0873df2a 880
382c1116
NC
881 /* We need to get the canonical symbols in order to call
882 bfd_find_nearest_line. This is inefficient, but, then, you
883 don't have to use --line-numbers. */
884 if (abfd != lineno_cache_bfd && syms != NULL)
0873df2a 885 {
382c1116
NC
886 free (syms);
887 syms = NULL;
0873df2a 888 }
382c1116 889 if (syms == NULL)
0873df2a 890 {
382c1116
NC
891 long symsize;
892
893 symsize = bfd_get_symtab_upper_bound (abfd);
894 if (symsize < 0)
895 bfd_fatal (bfd_get_filename (abfd));
3f5e193b 896 syms = (asymbol **) xmalloc (symsize);
382c1116
NC
897 symcount = bfd_canonicalize_symtab (abfd, syms);
898 if (symcount < 0)
899 bfd_fatal (bfd_get_filename (abfd));
900 lineno_cache_bfd = abfd;
0873df2a 901 }
0873df2a 902
382c1116
NC
903 if (bfd_is_und_section (bfd_get_section (sym)))
904 {
905 static asection **secs;
906 static arelent ***relocs;
907 static long *relcount;
908 static unsigned int seccount;
909 unsigned int i;
910 const char *symname;
0873df2a 911
382c1116
NC
912 /* For an undefined symbol, we try to find a reloc for the
913 symbol, and print the line number of the reloc. */
914 if (abfd != lineno_cache_rel_bfd && relocs != NULL)
915 {
916 for (i = 0; i < seccount; i++)
917 if (relocs[i] != NULL)
918 free (relocs[i]);
919 free (secs);
920 free (relocs);
921 free (relcount);
922 secs = NULL;
923 relocs = NULL;
924 relcount = NULL;
925 }
252b5132 926
382c1116
NC
927 if (relocs == NULL)
928 {
91d6fa6a 929 struct get_relocs_info rinfo;
252b5132 930
382c1116 931 seccount = bfd_count_sections (abfd);
252b5132 932
3f5e193b
NC
933 secs = (asection **) xmalloc (seccount * sizeof *secs);
934 relocs = (arelent ***) xmalloc (seccount * sizeof *relocs);
935 relcount = (long *) xmalloc (seccount * sizeof *relcount);
252b5132 936
91d6fa6a
NC
937 rinfo.secs = secs;
938 rinfo.relocs = relocs;
939 rinfo.relcount = relcount;
940 rinfo.syms = syms;
941 bfd_map_over_sections (abfd, get_relocs, (void *) &rinfo);
382c1116
NC
942 lineno_cache_rel_bfd = abfd;
943 }
252b5132 944
382c1116
NC
945 symname = bfd_asymbol_name (sym);
946 for (i = 0; i < seccount; i++)
947 {
948 long j;
949
950 for (j = 0; j < relcount[i]; j++)
951 {
952 arelent *r;
953
954 r = relocs[i][j];
955 if (r->sym_ptr_ptr != NULL
956 && (*r->sym_ptr_ptr)->section == sym->section
957 && (*r->sym_ptr_ptr)->value == sym->value
958 && strcmp (symname,
959 bfd_asymbol_name (*r->sym_ptr_ptr)) == 0
960 && bfd_find_nearest_line (abfd, secs[i], syms,
961 r->address, &filename,
962 &functionname, &lineno)
963 && filename != NULL)
964 {
965 /* We only print the first one we find. */
966 printf ("\t%s:%u", filename, lineno);
967 i = seccount;
968 break;
969 }
970 }
971 }
972 }
973 else if (bfd_get_section (sym)->owner == abfd)
974 {
5420f73d
L
975 if ((bfd_find_line (abfd, syms, sym, &filename, &lineno)
976 || bfd_find_nearest_line (abfd, bfd_get_section (sym),
977 syms, sym->value, &filename,
978 &functionname, &lineno))
382c1116
NC
979 && filename != NULL
980 && lineno != 0)
981 printf ("\t%s:%u", filename, lineno);
982 }
983 }
984
985 putchar ('\n');
252b5132
RH
986}
987\f
382c1116 988/* Print the symbols when sorting by size. */
252b5132 989
382c1116 990static void
896ca098
NC
991print_size_symbols (bfd * abfd,
992 bfd_boolean is_dynamic,
993 struct size_sym * symsizes,
994 long symcount,
896ca098 995 bfd * archive_bfd)
252b5132 996{
252b5132 997 asymbol *store;
896ca098
NC
998 struct size_sym *from;
999 struct size_sym *fromend;
252b5132
RH
1000
1001 store = bfd_make_empty_symbol (abfd);
1002 if (store == NULL)
1003 bfd_fatal (bfd_get_filename (abfd));
1004
382c1116
NC
1005 from = symsizes;
1006 fromend = from + symcount;
896ca098 1007
382c1116 1008 for (; from < fromend; from++)
252b5132 1009 {
252b5132
RH
1010 asymbol *sym;
1011
91d6fa6a 1012 sym = bfd_minisymbol_to_symbol (abfd, is_dynamic, from->minisym, store);
252b5132
RH
1013 if (sym == NULL)
1014 bfd_fatal (bfd_get_filename (abfd));
1015
2387dd90 1016 print_symbol (abfd, sym, from->size, archive_bfd);
252b5132 1017 }
252b5132
RH
1018}
1019
382c1116 1020\f
896ca098
NC
1021/* Print the symbols of ABFD that are held in MINISYMS.
1022
1023 If ARCHIVE_BFD is non-NULL, it is the archive containing ABFD.
1024
2387dd90 1025 SYMCOUNT is the number of symbols in MINISYMS.
3aade688 1026
896ca098 1027 SIZE is the size of a symbol in MINISYMS. */
252b5132
RH
1028
1029static void
896ca098
NC
1030print_symbols (bfd * abfd,
1031 bfd_boolean is_dynamic,
1032 void * minisyms,
1033 long symcount,
896ca098
NC
1034 unsigned int size,
1035 bfd * archive_bfd)
252b5132
RH
1036{
1037 asymbol *store;
896ca098
NC
1038 bfd_byte *from;
1039 bfd_byte *fromend;
252b5132
RH
1040
1041 store = bfd_make_empty_symbol (abfd);
1042 if (store == NULL)
1043 bfd_fatal (bfd_get_filename (abfd));
1044
1045 from = (bfd_byte *) minisyms;
1046 fromend = from + symcount * size;
896ca098 1047
252b5132
RH
1048 for (; from < fromend; from += size)
1049 {
1050 asymbol *sym;
1051
91d6fa6a 1052 sym = bfd_minisymbol_to_symbol (abfd, is_dynamic, from, store);
252b5132
RH
1053 if (sym == NULL)
1054 bfd_fatal (bfd_get_filename (abfd));
1055
2387dd90 1056 print_symbol (abfd, sym, (bfd_vma) 0, archive_bfd);
252b5132
RH
1057 }
1058}
1059
382c1116 1060/* If ARCHIVE_BFD is non-NULL, it is the archive containing ABFD. */
252b5132 1061
0af11b59 1062static void
382c1116 1063display_rel_file (bfd *abfd, bfd *archive_bfd)
252b5132 1064{
382c1116
NC
1065 long symcount;
1066 void *minisyms;
1067 unsigned int size;
1068 struct size_sym *symsizes;
252b5132 1069
382c1116
NC
1070 if (! dynamic)
1071 {
1072 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
1073 {
1074 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd));
1075 return;
1076 }
1077 }
1078
1079 symcount = bfd_read_minisymbols (abfd, dynamic, &minisyms, &size);
1080 if (symcount < 0)
bf26dcc6
NC
1081 {
1082 if (dynamic && bfd_get_error () == bfd_error_no_symbols)
1083 {
1084 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd));
1085 return;
1086 }
9993a355 1087
bf26dcc6
NC
1088 bfd_fatal (bfd_get_filename (abfd));
1089 }
252b5132 1090
382c1116 1091 if (symcount == 0)
252b5132 1092 {
382c1116
NC
1093 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd));
1094 return;
1095 }
3aade688 1096
382c1116
NC
1097 if (show_synthetic && size == sizeof (asymbol *))
1098 {
1099 asymbol *synthsyms;
382c1116
NC
1100 asymbol **static_syms = NULL;
1101 asymbol **dyn_syms = NULL;
1102 long static_count = 0;
1103 long dyn_count = 0;
2387dd90 1104 long synth_count;
252b5132 1105
382c1116
NC
1106 if (dynamic)
1107 {
1108 dyn_count = symcount;
3f5e193b 1109 dyn_syms = (asymbol **) minisyms;
382c1116 1110 }
977f7911 1111 else
382c1116 1112 {
8615f3f2
AM
1113 long storage = bfd_get_dynamic_symtab_upper_bound (abfd);
1114
382c1116 1115 static_count = symcount;
3f5e193b 1116 static_syms = (asymbol **) minisyms;
8615f3f2
AM
1117
1118 if (storage > 0)
1119 {
3f5e193b 1120 dyn_syms = (asymbol **) xmalloc (storage);
8615f3f2
AM
1121 dyn_count = bfd_canonicalize_dynamic_symtab (abfd, dyn_syms);
1122 if (dyn_count < 0)
1123 bfd_fatal (bfd_get_filename (abfd));
1124 }
382c1116 1125 }
896ca098 1126
382c1116
NC
1127 synth_count = bfd_get_synthetic_symtab (abfd, static_count, static_syms,
1128 dyn_count, dyn_syms, &synthsyms);
1129 if (synth_count > 0)
1130 {
1131 asymbol **symp;
1132 void *new_mini;
1133 long i;
977f7911 1134
382c1116 1135 new_mini = xmalloc ((symcount + synth_count + 1) * sizeof (*symp));
3f5e193b 1136 symp = (asymbol **) new_mini;
382c1116
NC
1137 memcpy (symp, minisyms, symcount * sizeof (*symp));
1138 symp += symcount;
1139 for (i = 0; i < synth_count; i++)
1140 *symp++ = synthsyms + i;
1141 *symp = 0;
1142 minisyms = new_mini;
1143 symcount += synth_count;
1144 }
252b5132 1145 }
252b5132 1146
382c1116
NC
1147 /* Discard the symbols we don't want to print.
1148 It's OK to do this in place; we'll free the storage anyway
1149 (after printing). */
252b5132 1150
382c1116 1151 symcount = filter_symbols (abfd, dynamic, minisyms, symcount, size);
2da42df6 1152
382c1116
NC
1153 symsizes = NULL;
1154 if (! no_sort)
1155 {
1156 sort_bfd = abfd;
1157 sort_dynamic = dynamic;
1158 sort_x = bfd_make_empty_symbol (abfd);
1159 sort_y = bfd_make_empty_symbol (abfd);
1160 if (sort_x == NULL || sort_y == NULL)
1161 bfd_fatal (bfd_get_filename (abfd));
252b5132 1162
382c1116
NC
1163 if (! sort_by_size)
1164 qsort (minisyms, symcount, size,
1165 sorters[sort_numerically][reverse_sort]);
1166 else
1167 symcount = sort_symbols_by_size (abfd, dynamic, minisyms, symcount,
1168 size, &symsizes);
1169 }
252b5132 1170
382c1116 1171 if (! sort_by_size)
2387dd90 1172 print_symbols (abfd, dynamic, minisyms, symcount, size, archive_bfd);
252b5132 1173 else
2387dd90 1174 print_size_symbols (abfd, dynamic, symsizes, symcount, archive_bfd);
252b5132 1175
382c1116 1176 free (minisyms);
497b9b32 1177 free (symsizes);
382c1116
NC
1178}
1179
970ccc77
NC
1180static void
1181set_print_width (bfd *file)
1182{
1183 print_width = bfd_get_arch_size (file);
1184
1185 if (print_width == -1)
1186 {
1187 /* PR binutils/4292
1188 Guess the target's bitsize based on its name.
1189 We assume here than any 64-bit format will include
1190 "64" somewhere in its name. The only known exception
1191 is the MMO object file format. */
1192 if (strstr (bfd_get_target (file), "64") != NULL
1193 || strcmp (bfd_get_target (file), "mmo") == 0)
1194 print_width = 64;
1195 else
1196 print_width = 32;
1197 }
1198}
1199
382c1116
NC
1200static void
1201display_archive (bfd *file)
1202{
1203 bfd *arfile = NULL;
1204 bfd *last_arfile = NULL;
1205 char **matching;
1206
1207 format->print_archive_filename (bfd_get_filename (file));
1208
1209 if (print_armap)
1210 print_symdef_entry (file);
1211
1212 for (;;)
252b5132 1213 {
382c1116 1214 PROGRESS (1);
252b5132 1215
382c1116
NC
1216 arfile = bfd_openr_next_archived_file (file, arfile);
1217
1218 if (arfile == NULL)
252b5132 1219 {
382c1116
NC
1220 if (bfd_get_error () != bfd_error_no_more_archived_files)
1221 bfd_fatal (bfd_get_filename (file));
1222 break;
252b5132 1223 }
382c1116
NC
1224
1225 if (bfd_check_format_matches (arfile, bfd_object, &matching))
252b5132 1226 {
970ccc77 1227 set_print_width (arfile);
382c1116
NC
1228 format->print_archive_member (bfd_get_filename (file),
1229 bfd_get_filename (arfile));
1230 display_rel_file (arfile, file);
252b5132 1231 }
382c1116 1232 else
252b5132 1233 {
382c1116
NC
1234 bfd_nonfatal (bfd_get_filename (arfile));
1235 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
252b5132 1236 {
382c1116
NC
1237 list_matching_formats (matching);
1238 free (matching);
252b5132 1239 }
382c1116 1240 }
252b5132 1241
382c1116
NC
1242 if (last_arfile != NULL)
1243 {
1244 bfd_close (last_arfile);
1245 lineno_cache_bfd = NULL;
1246 lineno_cache_rel_bfd = NULL;
896ca098
NC
1247 if (arfile == last_arfile)
1248 return;
382c1116
NC
1249 }
1250 last_arfile = arfile;
1251 }
252b5132 1252
382c1116
NC
1253 if (last_arfile != NULL)
1254 {
1255 bfd_close (last_arfile);
1256 lineno_cache_bfd = NULL;
1257 lineno_cache_rel_bfd = NULL;
1258 }
1259}
252b5132 1260
382c1116
NC
1261static bfd_boolean
1262display_file (char *filename)
1263{
1264 bfd_boolean retval = TRUE;
1265 bfd *file;
1266 char **matching;
252b5132 1267
382c1116
NC
1268 if (get_file_size (filename) < 1)
1269 return FALSE;
252b5132 1270
a4b8af35 1271 file = bfd_openr (filename, target ? target : plugin_target);
382c1116
NC
1272 if (file == NULL)
1273 {
1274 bfd_nonfatal (filename);
1275 return FALSE;
1276 }
252b5132 1277
b76e66d3
CC
1278 /* If printing line numbers, decompress the debug sections. */
1279 if (line_numbers)
1280 file->flags |= BFD_DECOMPRESS;
1281
382c1116
NC
1282 if (bfd_check_format (file, bfd_archive))
1283 {
1284 display_archive (file);
1285 }
1286 else if (bfd_check_format_matches (file, bfd_object, &matching))
1287 {
970ccc77 1288 set_print_width (file);
382c1116
NC
1289 format->print_object_filename (filename);
1290 display_rel_file (file, NULL);
1291 }
1292 else
1293 {
1294 bfd_nonfatal (filename);
1295 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
252b5132 1296 {
382c1116
NC
1297 list_matching_formats (matching);
1298 free (matching);
252b5132 1299 }
382c1116 1300 retval = FALSE;
252b5132
RH
1301 }
1302
382c1116
NC
1303 if (!bfd_close (file))
1304 bfd_fatal (filename);
1305
1306 lineno_cache_bfd = NULL;
1307 lineno_cache_rel_bfd = NULL;
1308
1309 return retval;
252b5132
RH
1310}
1311\f
1312/* The following 3 groups of functions are called unconditionally,
1313 once at the start of processing each file of the appropriate type.
1314 They should check `filename_per_file' and `filename_per_symbol',
1315 as appropriate for their output format, to determine whether to
1316 print anything. */
1317\f
1318/* Print the name of an object file given on the command line. */
1319
1320static void
2da42df6 1321print_object_filename_bsd (char *filename)
252b5132
RH
1322{
1323 if (filename_per_file && !filename_per_symbol)
1324 printf ("\n%s:\n", filename);
1325}
1326
1327static void
2da42df6 1328print_object_filename_sysv (char *filename)
252b5132
RH
1329{
1330 if (undefined_only)
1331 printf (_("\n\nUndefined symbols from %s:\n\n"), filename);
1332 else
1333 printf (_("\n\nSymbols from %s:\n\n"), filename);
970ccc77 1334 if (print_width == 32)
33f5f537
L
1335 printf (_("\
1336Name Value Class Type Size Line Section\n\n"));
1337 else
1338 printf (_("\
1339Name Value Class Type Size Line Section\n\n"));
252b5132
RH
1340}
1341
1342static void
2da42df6 1343print_object_filename_posix (char *filename)
252b5132
RH
1344{
1345 if (filename_per_file && !filename_per_symbol)
1346 printf ("%s:\n", filename);
1347}
1348\f
1349/* Print the name of an archive file given on the command line. */
1350
1351static void
2da42df6 1352print_archive_filename_bsd (char *filename)
252b5132
RH
1353{
1354 if (filename_per_file)
1355 printf ("\n%s:\n", filename);
1356}
1357
1358static void
2da42df6 1359print_archive_filename_sysv (char *filename ATTRIBUTE_UNUSED)
252b5132
RH
1360{
1361}
1362
1363static void
2da42df6 1364print_archive_filename_posix (char *filename ATTRIBUTE_UNUSED)
252b5132
RH
1365{
1366}
1367\f
1368/* Print the name of an archive member file. */
1369
1370static void
2da42df6
AJ
1371print_archive_member_bsd (char *archive ATTRIBUTE_UNUSED,
1372 const char *filename)
252b5132
RH
1373{
1374 if (!filename_per_symbol)
1375 printf ("\n%s:\n", filename);
1376}
1377
1378static void
2da42df6 1379print_archive_member_sysv (char *archive, const char *filename)
252b5132
RH
1380{
1381 if (undefined_only)
1382 printf (_("\n\nUndefined symbols from %s[%s]:\n\n"), archive, filename);
1383 else
1384 printf (_("\n\nSymbols from %s[%s]:\n\n"), archive, filename);
970ccc77 1385 if (print_width == 32)
33f5f537
L
1386 printf (_("\
1387Name Value Class Type Size Line Section\n\n"));
1388 else
1389 printf (_("\
1390Name Value Class Type Size Line Section\n\n"));
252b5132
RH
1391}
1392
1393static void
2da42df6 1394print_archive_member_posix (char *archive, const char *filename)
252b5132
RH
1395{
1396 if (!filename_per_symbol)
1397 printf ("%s[%s]:\n", archive, filename);
1398}
1399\f
1400/* Print the name of the file (and archive, if there is one)
1401 containing a symbol. */
1402
1403static void
2da42df6 1404print_symbol_filename_bsd (bfd *archive_bfd, bfd *abfd)
252b5132
RH
1405{
1406 if (filename_per_symbol)
1407 {
1408 if (archive_bfd)
1409 printf ("%s:", bfd_get_filename (archive_bfd));
1410 printf ("%s:", bfd_get_filename (abfd));
1411 }
1412}
1413
1414static void
2da42df6 1415print_symbol_filename_sysv (bfd *archive_bfd, bfd *abfd)
252b5132
RH
1416{
1417 if (filename_per_symbol)
1418 {
1419 if (archive_bfd)
1420 printf ("%s:", bfd_get_filename (archive_bfd));
1421 printf ("%s:", bfd_get_filename (abfd));
1422 }
1423}
1424
1425static void
2da42df6 1426print_symbol_filename_posix (bfd *archive_bfd, bfd *abfd)
252b5132
RH
1427{
1428 if (filename_per_symbol)
1429 {
1430 if (archive_bfd)
1431 printf ("%s[%s]: ", bfd_get_filename (archive_bfd),
1432 bfd_get_filename (abfd));
1433 else
1434 printf ("%s: ", bfd_get_filename (abfd));
1435 }
1436}
1437\f
1438/* Print a symbol value. */
1439
1440static void
2da42df6 1441print_value (bfd *abfd ATTRIBUTE_UNUSED, bfd_vma val)
252b5132 1442{
970ccc77 1443 switch (print_width)
252b5132 1444 {
970ccc77 1445 case 32:
be26064b 1446 printf (value_format_32bit, (unsigned long) val);
970ccc77 1447 break;
252b5132 1448
970ccc77 1449 case 64:
39dbeff8 1450#if BFD_HOST_64BIT_LONG || BFD_HOST_64BIT_LONG_LONG
970ccc77
NC
1451 printf (value_format_64bit, val);
1452#else
1453 /* We have a 64 bit value to print, but the host is only 32 bit. */
1454 if (print_radix == 16)
1455 bfd_fprintf_vma (abfd, stdout, val);
1456 else
252b5132 1457 {
970ccc77
NC
1458 char buf[30];
1459 char *s;
1460
1461 s = buf + sizeof buf;
1462 *--s = '\0';
1463 while (val > 0)
1464 {
1465 *--s = (val % print_radix) + '0';
1466 val /= print_radix;
1467 }
1468 while ((buf + sizeof buf - 1) - s < 16)
1469 *--s = '0';
1470 printf ("%s", s);
252b5132 1471 }
252b5132 1472#endif
970ccc77
NC
1473 break;
1474
1475 default:
1476 fatal (_("Print width has not been initialized (%d)"), print_width);
1477 break;
1478 }
252b5132
RH
1479}
1480
1481/* Print a line of information about a symbol. */
1482
1483static void
2da42df6 1484print_symbol_info_bsd (struct extended_symbol_info *info, bfd *abfd)
252b5132 1485{
977f7911 1486 if (bfd_is_undefined_symclass (SYM_TYPE (info)))
252b5132 1487 {
970ccc77 1488 if (print_width == 64)
62a5a82d 1489 printf (" ");
21211521 1490 printf (" ");
252b5132
RH
1491 }
1492 else
977f7911 1493 {
06a30c77 1494 /* Normally we print the value of the symbol. If we are printing the
50c2245b 1495 size or sorting by size then we print its size, except for the
06a30c77
NC
1496 (weird) special case where both flags are defined, in which case we
1497 print both values. This conforms to documented behaviour. */
1498 if (sort_by_size && !print_size)
1499 print_value (abfd, SYM_SIZE (info));
1500 else
1501 print_value (abfd, SYM_VALUE (info));
72797995 1502 if (print_size && SYM_SIZE (info))
977f7911 1503 {
06a30c77 1504 printf (" ");
977f7911
NC
1505 print_value (abfd, SYM_SIZE (info));
1506 }
1507 }
1508
1509 printf (" %c", SYM_TYPE (info));
1510
1511 if (SYM_TYPE (info) == '-')
252b5132
RH
1512 {
1513 /* A stab. */
1514 printf (" ");
977f7911 1515 printf (other_format, SYM_STAB_OTHER (info));
252b5132 1516 printf (" ");
977f7911
NC
1517 printf (desc_format, SYM_STAB_DESC (info));
1518 printf (" %5s", SYM_STAB_NAME (info));
252b5132 1519 }
977f7911 1520 print_symname (" %s", SYM_NAME (info), abfd);
252b5132
RH
1521}
1522
1523static void
2da42df6 1524print_symbol_info_sysv (struct extended_symbol_info *info, bfd *abfd)
252b5132 1525{
977f7911
NC
1526 print_symname ("%-20s|", SYM_NAME (info), abfd);
1527
1528 if (bfd_is_undefined_symclass (SYM_TYPE (info)))
33f5f537 1529 {
970ccc77 1530 if (print_width == 32)
33f5f537
L
1531 printf (" ");
1532 else
1533 printf (" ");
1534 }
252b5132 1535 else
977f7911
NC
1536 print_value (abfd, SYM_VALUE (info));
1537
1538 printf ("| %c |", SYM_TYPE (info));
1539
1540 if (SYM_TYPE (info) == '-')
252b5132
RH
1541 {
1542 /* A stab. */
e3b83c8f
NC
1543 printf ("%18s| ", SYM_STAB_NAME (info)); /* (C) Type. */
1544 printf (desc_format, SYM_STAB_DESC (info)); /* Size. */
1545 printf ("| |"); /* Line, Section. */
252b5132
RH
1546 }
1547 else
9710509e 1548 {
977f7911 1549 /* Type, Size, Line, Section */
33f5f537
L
1550 if (info->elfinfo)
1551 printf ("%18s|",
552e55ed
JB
1552 get_elf_symbol_type (ELF_ST_TYPE (info->elfinfo->internal_elf_sym.st_info)));
1553 else if (info->coffinfo)
1554 printf ("%18s|",
1555 get_coff_symbol_type (&info->coffinfo->native->u.syment));
33f5f537
L
1556 else
1557 printf (" |");
977f7911
NC
1558
1559 if (SYM_SIZE (info))
1560 print_value (abfd, SYM_SIZE (info));
1561 else
33f5f537 1562 {
970ccc77 1563 if (print_width == 32)
33f5f537
L
1564 printf (" ");
1565 else
1566 printf (" ");
1567 }
977f7911 1568
33f5f537
L
1569 if (info->elfinfo)
1570 printf("| |%s", info->elfinfo->symbol.section->name);
552e55ed
JB
1571 else if (info->coffinfo)
1572 printf("| |%s", info->coffinfo->symbol.section->name);
33f5f537
L
1573 else
1574 printf("| |");
977f7911 1575 }
252b5132
RH
1576}
1577
1578static void
2da42df6 1579print_symbol_info_posix (struct extended_symbol_info *info, bfd *abfd)
252b5132 1580{
977f7911
NC
1581 print_symname ("%s ", SYM_NAME (info), abfd);
1582 printf ("%c ", SYM_TYPE (info));
1583
1584 if (bfd_is_undefined_symclass (SYM_TYPE (info)))
252b5132
RH
1585 printf (" ");
1586 else
977f7911
NC
1587 {
1588 print_value (abfd, SYM_VALUE (info));
1589 printf (" ");
1590 if (SYM_SIZE (info))
1591 print_value (abfd, SYM_SIZE (info));
1592 }
252b5132
RH
1593}
1594\f
382c1116
NC
1595int
1596main (int argc, char **argv)
252b5132 1597{
382c1116
NC
1598 int c;
1599 int retval;
252b5132 1600
382c1116
NC
1601#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
1602 setlocale (LC_MESSAGES, "");
1603#endif
1604#if defined (HAVE_SETLOCALE)
1605 setlocale (LC_CTYPE, "");
1606 setlocale (LC_COLLATE, "");
1607#endif
1608 bindtextdomain (PACKAGE, LOCALEDIR);
1609 textdomain (PACKAGE);
1610
1611 program_name = *argv;
1612 xmalloc_set_program_name (program_name);
86eafac0 1613 bfd_set_error_program_name (program_name);
fc579192
NC
1614#if BFD_SUPPORTS_PLUGINS
1615 bfd_plugin_set_program_name (program_name);
1616#endif
382c1116
NC
1617
1618 START_PROGRESS (program_name, 0);
1619
869b9d07
MM
1620 expandargv (&argc, &argv);
1621
382c1116
NC
1622 bfd_init ();
1623 set_default_bfd_target ();
1624
1625 while ((c = getopt_long (argc, argv, "aABCDef:gHhlnopPrSst:uvVvX:",
1626 long_options, (int *) 0)) != EOF)
252b5132 1627 {
382c1116 1628 switch (c)
252b5132 1629 {
382c1116
NC
1630 case 'a':
1631 print_debug_syms = 1;
1632 break;
1633 case 'A':
1634 case 'o':
1635 filename_per_symbol = 1;
1636 break;
1637 case 'B': /* For MIPS compatibility. */
1638 set_output_format ("bsd");
1639 break;
1640 case 'C':
1641 do_demangle = 1;
1642 if (optarg != NULL)
1643 {
1644 enum demangling_styles style;
1645
1646 style = cplus_demangle_name_to_style (optarg);
1647 if (style == unknown_demangling)
1648 fatal (_("unknown demangling style `%s'"),
1649 optarg);
1650
1651 cplus_demangle_set_style (style);
1652 }
1653 break;
1654 case 'D':
1655 dynamic = 1;
1656 break;
1657 case 'e':
1658 /* Ignored for HP/UX compatibility. */
1659 break;
1660 case 'f':
1661 set_output_format (optarg);
1662 break;
1663 case 'g':
1664 external_only = 1;
1665 break;
1666 case 'H':
1667 case 'h':
1668 usage (stdout, 0);
1669 case 'l':
1670 line_numbers = 1;
1671 break;
1672 case 'n':
1673 case 'v':
ddb1377c 1674 no_sort = 0;
382c1116 1675 sort_numerically = 1;
ddb1377c 1676 sort_by_size = 0;
382c1116
NC
1677 break;
1678 case 'p':
1679 no_sort = 1;
ddb1377c
AM
1680 sort_numerically = 0;
1681 sort_by_size = 0;
1682 break;
1683 case OPTION_SIZE_SORT:
1684 no_sort = 0;
1685 sort_numerically = 0;
1686 sort_by_size = 1;
382c1116
NC
1687 break;
1688 case 'P':
1689 set_output_format ("posix");
1690 break;
1691 case 'r':
1692 reverse_sort = 1;
1693 break;
1694 case 's':
1695 print_armap = 1;
1696 break;
1697 case 'S':
1698 print_size = 1;
1699 break;
1700 case 't':
1701 set_print_radix (optarg);
1702 break;
1703 case 'u':
1704 undefined_only = 1;
1705 break;
1706 case 'V':
1707 show_version = 1;
1708 break;
1709 case 'X':
1710 /* Ignored for (partial) AIX compatibility. On AIX, the
1711 argument has values 32, 64, or 32_64, and specifies that
1712 only 32-bit, only 64-bit, or both kinds of objects should
1713 be examined. The default is 32. So plain AIX nm on a
1714 library archive with both kinds of objects will ignore
1715 the 64-bit ones. For GNU nm, the default is and always
1716 has been -X 32_64, and other options are not supported. */
1717 if (strcmp (optarg, "32_64") != 0)
1718 fatal (_("Only -X 32_64 is supported"));
1719 break;
1720
1721 case OPTION_TARGET: /* --target */
1722 target = optarg;
1723 break;
1724
ce3c775b
NC
1725 case OPTION_PLUGIN: /* --plugin */
1726#if BFD_SUPPORTS_PLUGINS
1727 bfd_plugin_set_plugin (optarg);
1728#else
1729 fatal (_("sorry - this program has been built without plugin support\n"));
1730#endif
1731 break;
1732
382c1116
NC
1733 case 0: /* A long option that just sets a flag. */
1734 break;
1735
1736 default:
1737 usage (stderr, 1);
252b5132
RH
1738 }
1739 }
252b5132 1740
382c1116
NC
1741 if (show_version)
1742 print_version ("nm");
252b5132 1743
382c1116 1744 if (sort_by_size && undefined_only)
252b5132 1745 {
382c1116
NC
1746 non_fatal (_("Using the --size-sort and --undefined-only options together"));
1747 non_fatal (_("will produce no output, since undefined symbols have no size."));
1748 return 0;
252b5132 1749 }
382c1116
NC
1750
1751 /* OK, all options now parsed. If no filename specified, do a.out. */
1752 if (optind == argc)
1753 return !display_file ("a.out");
1754
1755 retval = 0;
1756
1757 if (argc - optind > 1)
1758 filename_per_file = 1;
1759
1760 /* We were given several filenames to do. */
1761 while (optind < argc)
252b5132 1762 {
382c1116
NC
1763 PROGRESS (1);
1764 if (!display_file (argv[optind++]))
1765 retval++;
1766 }
252b5132 1767
382c1116 1768 END_PROGRESS (program_name);
252b5132 1769
382c1116
NC
1770#ifdef HAVE_SBRK
1771 if (show_stats)
1772 {
1773 char *lim = (char *) sbrk (0);
1774
1775 non_fatal (_("data size %ld"), (long) (lim - (char *) &environ));
252b5132 1776 }
382c1116 1777#endif
252b5132 1778
382c1116
NC
1779 exit (retval);
1780 return retval;
252b5132 1781}
This page took 0.740053 seconds and 4 git commands to generate.