1991-10-22 00:48:10 +08:00
|
|
|
|
/* nm.c -- Describe symbol table of a rel file.
|
1994-02-03 08:25:30 +08:00
|
|
|
|
Copyright 1991, 92, 93, 94 Free Software Foundation, Inc.
|
1991-10-22 00:48:10 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
This file is part of GNU Binutils.
|
1991-10-22 00:48:10 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08: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.
|
1991-10-22 00:48:10 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08: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.
|
1991-10-22 00:48:10 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08: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., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
1991-10-22 00:48:10 +08:00
|
|
|
|
|
1991-03-22 05:29:06 +08:00
|
|
|
|
#include "bfd.h"
|
1991-10-22 00:48:10 +08:00
|
|
|
|
#include "sysdep.h"
|
1992-01-25 06:49:24 +08:00
|
|
|
|
#include "bucomm.h"
|
1991-03-22 05:29:06 +08:00
|
|
|
|
#include "getopt.h"
|
1991-12-01 10:58:37 +08:00
|
|
|
|
#include "aout/stab_gnu.h"
|
1992-01-25 06:49:24 +08:00
|
|
|
|
#include "aout/ranlib.h"
|
1994-02-03 08:25:30 +08:00
|
|
|
|
#include "demangle.h"
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1992-08-19 11:25:51 +08:00
|
|
|
|
static boolean
|
|
|
|
|
display_file PARAMS ((char *filename));
|
|
|
|
|
|
|
|
|
|
static void
|
1994-02-03 08:25:30 +08:00
|
|
|
|
display_rel_file PARAMS ((bfd * file, bfd * archive));
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1992-08-19 11:25:51 +08:00
|
|
|
|
static unsigned int
|
1994-02-03 08:25:30 +08:00
|
|
|
|
filter_symbols PARAMS ((bfd * file, asymbol ** syms, unsigned long symcount));
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1992-08-19 11:25:51 +08:00
|
|
|
|
static void
|
1994-02-03 08:25:30 +08:00
|
|
|
|
print_symbols PARAMS ((bfd * file, asymbol ** syms, unsigned long symcount,
|
|
|
|
|
bfd * archive));
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1992-08-19 11:25:51 +08:00
|
|
|
|
static void
|
|
|
|
|
print_symdef_entry PARAMS ((bfd * abfd));
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
/* The output formatting functions. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_object_filename_bsd PARAMS ((char *filename));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_object_filename_sysv PARAMS ((char *filename));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_object_filename_posix PARAMS ((char *filename));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_filename_bsd PARAMS ((char *filename));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_filename_sysv PARAMS ((char *filename));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_filename_posix PARAMS ((char *filename));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_member_bsd PARAMS ((char *archive, CONST char *filename));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_member_sysv PARAMS ((char *archive, CONST char *filename));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_member_posix PARAMS ((char *archive, CONST char *filename));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_symbol_filename_bsd PARAMS ((bfd * archive_bfd, bfd * abfd));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_symbol_filename_sysv PARAMS ((bfd * archive_bfd, bfd * abfd));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_symbol_filename_posix PARAMS ((bfd * archive_bfd, bfd * abfd));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_symbol_info_bsd PARAMS ((symbol_info * info, bfd * abfd));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_symbol_info_sysv PARAMS ((symbol_info * info, bfd * abfd));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_symbol_info_posix PARAMS ((symbol_info * info, bfd * abfd));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Support for different output formats. */
|
|
|
|
|
struct output_fns
|
|
|
|
|
{
|
|
|
|
|
/* Print the name of an object file given on the command line. */
|
|
|
|
|
void (*print_object_filename) PARAMS ((char *filename));
|
|
|
|
|
|
|
|
|
|
/* Print the name of an archive file given on the command line. */
|
|
|
|
|
void (*print_archive_filename) PARAMS ((char *filename));
|
|
|
|
|
|
|
|
|
|
/* Print the name of an archive member file. */
|
|
|
|
|
void (*print_archive_member) PARAMS ((char *archive, CONST char *filename));
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
/* Print the name of the file (and archive, if there is one)
|
|
|
|
|
containing a symbol. */
|
|
|
|
|
void (*print_symbol_filename) PARAMS ((bfd * archive_bfd, bfd * abfd));
|
|
|
|
|
|
|
|
|
|
/* Print a line of information about a symbol. */
|
|
|
|
|
void (*print_symbol_info) PARAMS ((symbol_info * info, bfd * abfd));
|
|
|
|
|
};
|
|
|
|
|
static struct output_fns formats[] =
|
|
|
|
|
{
|
|
|
|
|
{print_object_filename_bsd,
|
|
|
|
|
print_archive_filename_bsd,
|
|
|
|
|
print_archive_member_bsd,
|
|
|
|
|
print_symbol_filename_bsd,
|
|
|
|
|
print_symbol_info_bsd},
|
|
|
|
|
{print_object_filename_sysv,
|
|
|
|
|
print_archive_filename_sysv,
|
|
|
|
|
print_archive_member_sysv,
|
|
|
|
|
print_symbol_filename_sysv,
|
|
|
|
|
print_symbol_info_sysv},
|
|
|
|
|
{print_object_filename_posix,
|
|
|
|
|
print_archive_filename_posix,
|
|
|
|
|
print_archive_member_posix,
|
|
|
|
|
print_symbol_filename_posix,
|
|
|
|
|
print_symbol_info_posix}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Indices in `formats'. */
|
|
|
|
|
#define FORMAT_BSD 0
|
|
|
|
|
#define FORMAT_SYSV 1
|
|
|
|
|
#define FORMAT_POSIX 2
|
|
|
|
|
#define FORMAT_DEFAULT FORMAT_BSD
|
|
|
|
|
|
|
|
|
|
/* The output format to use. */
|
|
|
|
|
static struct output_fns *format = &formats[FORMAT_DEFAULT];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Command options. */
|
|
|
|
|
|
|
|
|
|
static int do_demangle = 0; /* Pretty print C++ symbol names. */
|
|
|
|
|
static int external_only = 0; /* print external symbols only */
|
|
|
|
|
static int no_sort = 0; /* don't sort; print syms in order found */
|
|
|
|
|
static int print_debug_syms = 0; /* print debugger-only symbols too */
|
|
|
|
|
static int print_armap = 0; /* describe __.SYMDEF data in archive files. */
|
|
|
|
|
static int reverse_sort = 0; /* sort in downward(alpha or numeric) order */
|
|
|
|
|
static int sort_numerically = 0; /* sort in numeric rather than alpha order */
|
|
|
|
|
static int undefined_only = 0; /* print undefined symbols only */
|
1994-06-11 05:14:49 +08:00
|
|
|
|
static int dynamic = 0; /* print dynamic symbols. */
|
1994-02-03 08:25:30 +08:00
|
|
|
|
static int show_version = 0; /* show the version number */
|
|
|
|
|
|
|
|
|
|
/* When to print the names of files. Not mutually exclusive in SYSV format. */
|
|
|
|
|
static int filename_per_file = 0; /* Once per file, on its own line. */
|
|
|
|
|
static int filename_per_symbol = 0; /* Once per symbol, at start of line. */
|
|
|
|
|
|
|
|
|
|
/* Print formats for printing a symbol value. */
|
1994-06-11 05:14:49 +08:00
|
|
|
|
#ifdef BFD_HOST_64_BIT
|
1994-02-03 08:25:30 +08:00
|
|
|
|
static char value_format[] = "%08x%08x";
|
|
|
|
|
#else
|
|
|
|
|
static char value_format[] = "%08lx";
|
|
|
|
|
#endif
|
|
|
|
|
/* Print formats for printing stab info. */
|
|
|
|
|
static char other_format[] = "%02x";
|
|
|
|
|
static char desc_format[] = "%04x";
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
|
|
|
|
/* IMPORT */
|
|
|
|
|
extern char *program_name;
|
|
|
|
|
extern char *program_version;
|
|
|
|
|
extern char *target;
|
1992-08-19 11:25:51 +08:00
|
|
|
|
extern int print_version;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
static struct option long_options[] =
|
|
|
|
|
{
|
|
|
|
|
{"debug-syms", no_argument, &print_debug_syms, 1},
|
|
|
|
|
{"demangle", no_argument, &do_demangle, 1},
|
1994-06-11 05:14:49 +08:00
|
|
|
|
{"dynamic", no_argument, &dynamic, 1},
|
1994-02-03 08:25:30 +08:00
|
|
|
|
{"extern-only", no_argument, &external_only, 1},
|
|
|
|
|
{"format", required_argument, 0, 'f'},
|
|
|
|
|
{"help", no_argument, 0, 'h'},
|
1994-06-16 00:13:59 +08:00
|
|
|
|
{"no-cplus", no_argument, &do_demangle, 0}, /* Linux compatibility. */
|
|
|
|
|
{"no-demangle", no_argument, &do_demangle, 0},
|
1994-02-03 08:25:30 +08:00
|
|
|
|
{"no-sort", no_argument, &no_sort, 1},
|
|
|
|
|
{"numeric-sort", no_argument, &sort_numerically, 1},
|
|
|
|
|
{"portability", no_argument, 0, 'P'},
|
|
|
|
|
{"print-armap", no_argument, &print_armap, 1},
|
|
|
|
|
{"print-file-name", no_argument, 0, 'o'},
|
|
|
|
|
{"radix", required_argument, 0, 't'},
|
|
|
|
|
{"reverse-sort", no_argument, &reverse_sort, 1},
|
|
|
|
|
{"target", required_argument, 0, 200},
|
|
|
|
|
{"undefined-only", no_argument, &undefined_only, 1},
|
|
|
|
|
{"version", no_argument, &show_version, 1},
|
|
|
|
|
{0, no_argument, 0, 0}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Some error-reporting functions */
|
|
|
|
|
|
|
|
|
|
void
|
1994-02-03 08:25:30 +08:00
|
|
|
|
usage (stream, status)
|
|
|
|
|
FILE *stream;
|
|
|
|
|
int status;
|
|
|
|
|
{
|
|
|
|
|
fprintf (stream, "\
|
1994-06-11 05:14:49 +08:00
|
|
|
|
Usage: %s [-aABCDgnopPrsuvV] [-t radix] [--radix=radix] [--target=bfdname]\n\
|
1994-02-03 08:25:30 +08:00
|
|
|
|
[--debug-syms] [--extern-only] [--print-armap] [--print-file-name]\n\
|
|
|
|
|
[--numeric-sort] [--no-sort] [--reverse-sort] [--undefined-only]\n\
|
|
|
|
|
[--portability] [-f {bsd,sysv,posix}] [--format={bsd,sysv,posix}]\n\
|
1994-06-16 00:13:59 +08:00
|
|
|
|
[--demangle] [--no-demangle] [--dynamic] [--version] [--help]\n\
|
|
|
|
|
[file...]\n",
|
1994-02-03 08:25:30 +08:00
|
|
|
|
program_name);
|
|
|
|
|
exit (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set the radix for the symbol value and size according to RADIX. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
set_print_radix (radix)
|
|
|
|
|
char *radix;
|
|
|
|
|
{
|
|
|
|
|
switch (*radix)
|
|
|
|
|
{
|
|
|
|
|
case 'd':
|
|
|
|
|
case 'o':
|
|
|
|
|
case 'x':
|
1994-06-11 05:14:49 +08:00
|
|
|
|
#ifdef BFD_HOST_64_BIT
|
1994-02-03 08:25:30 +08:00
|
|
|
|
value_format[3] = value_format[7] = *radix;
|
|
|
|
|
#else
|
|
|
|
|
value_format[4] = *radix;
|
|
|
|
|
#endif
|
|
|
|
|
other_format[3] = desc_format[3] = *radix;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
fprintf (stderr, "%s: %s: invalid radix\n", program_name, radix);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
void
|
|
|
|
|
set_output_format (f)
|
|
|
|
|
char *f;
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
switch (*f)
|
|
|
|
|
{
|
|
|
|
|
case 'b':
|
|
|
|
|
case 'B':
|
|
|
|
|
i = FORMAT_BSD;
|
|
|
|
|
break;
|
|
|
|
|
case 'p':
|
|
|
|
|
case 'P':
|
|
|
|
|
i = FORMAT_POSIX;
|
|
|
|
|
break;
|
|
|
|
|
case 's':
|
|
|
|
|
case 'S':
|
|
|
|
|
i = FORMAT_SYSV;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
fprintf (stderr, "%s: %s: invalid output format\n", program_name, f);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
format = &formats[i];
|
|
|
|
|
}
|
|
|
|
|
|
1991-03-22 05:29:06 +08:00
|
|
|
|
int
|
|
|
|
|
main (argc, argv)
|
|
|
|
|
int argc;
|
|
|
|
|
char **argv;
|
|
|
|
|
{
|
1994-02-03 08:25:30 +08:00
|
|
|
|
int c;
|
1992-08-19 11:25:51 +08:00
|
|
|
|
int retval;
|
1991-10-22 00:48:10 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
program_name = *argv;
|
1994-03-30 04:00:09 +08:00
|
|
|
|
xmalloc_set_program_name (program_name);
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
bfd_init ();
|
|
|
|
|
|
1994-06-11 05:14:49 +08:00
|
|
|
|
while ((c = getopt_long (argc, argv, "aABCDf:gnopPrst:uvV", long_options, (int *) 0)) != EOF)
|
1994-02-03 08:25:30 +08:00
|
|
|
|
{
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
case 'a':
|
|
|
|
|
print_debug_syms = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'A':
|
|
|
|
|
case 'o':
|
|
|
|
|
filename_per_symbol = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'B': /* For MIPS compatibility. */
|
|
|
|
|
set_output_format ("bsd");
|
|
|
|
|
break;
|
|
|
|
|
case 'C':
|
|
|
|
|
do_demangle = 1;
|
|
|
|
|
break;
|
1994-06-11 05:14:49 +08:00
|
|
|
|
case 'D':
|
|
|
|
|
dynamic = 1;
|
|
|
|
|
break;
|
1994-02-03 08:25:30 +08:00
|
|
|
|
case 'f':
|
|
|
|
|
set_output_format (optarg);
|
|
|
|
|
break;
|
|
|
|
|
case 'g':
|
|
|
|
|
external_only = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'h':
|
|
|
|
|
usage (stdout, 0);
|
|
|
|
|
case 'n':
|
|
|
|
|
case 'v':
|
|
|
|
|
sort_numerically = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'p':
|
|
|
|
|
no_sort = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'P':
|
|
|
|
|
set_output_format ("posix");
|
|
|
|
|
break;
|
|
|
|
|
case 'r':
|
|
|
|
|
reverse_sort = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 's':
|
|
|
|
|
print_armap = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 't':
|
|
|
|
|
set_print_radix (optarg);
|
|
|
|
|
break;
|
|
|
|
|
case 'u':
|
|
|
|
|
undefined_only = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'V':
|
|
|
|
|
show_version = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 200: /* --target */
|
|
|
|
|
target = optarg;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0: /* A long option that just sets a flag. */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
usage (stderr, 1);
|
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
|
|
|
|
if (show_version)
|
1994-02-03 08:25:30 +08:00
|
|
|
|
{
|
|
|
|
|
printf ("GNU %s version %s\n", program_name, program_version);
|
|
|
|
|
exit (0);
|
|
|
|
|
}
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
/* OK, all options now parsed. If no filename specified, do a.out. */
|
|
|
|
|
if (optind == argc)
|
|
|
|
|
return !display_file ("a.out");
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
1991-10-22 00:48:10 +08:00
|
|
|
|
retval = 0;
|
1994-02-03 08:25:30 +08:00
|
|
|
|
|
|
|
|
|
if (argc - optind > 1)
|
|
|
|
|
filename_per_file = 1;
|
|
|
|
|
|
|
|
|
|
/* We were given several filenames to do. */
|
|
|
|
|
while (optind < argc)
|
|
|
|
|
{
|
|
|
|
|
if (!display_file (argv[optind++]))
|
|
|
|
|
retval++;
|
1991-10-22 00:48:10 +08:00
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
exit (retval);
|
1991-10-22 00:48:10 +08:00
|
|
|
|
return retval;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
static void
|
|
|
|
|
display_archive (file)
|
|
|
|
|
bfd *file;
|
|
|
|
|
{
|
|
|
|
|
bfd *arfile = NULL;
|
1994-03-30 04:34:10 +08:00
|
|
|
|
bfd *last_arfile = NULL;
|
1994-02-03 21:08:29 +08:00
|
|
|
|
char **matching;
|
1994-02-03 08:25:30 +08:00
|
|
|
|
|
|
|
|
|
(*format->print_archive_filename) (bfd_get_filename (file));
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
if (print_armap)
|
|
|
|
|
print_symdef_entry (file);
|
|
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
arfile = bfd_openr_next_archived_file (file, arfile);
|
|
|
|
|
|
|
|
|
|
if (arfile == NULL)
|
|
|
|
|
{
|
1994-03-30 04:00:09 +08:00
|
|
|
|
if (bfd_get_error () != bfd_error_no_more_archived_files)
|
1994-02-03 08:25:30 +08:00
|
|
|
|
bfd_fatal (bfd_get_filename (file));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 21:08:29 +08:00
|
|
|
|
if (bfd_check_format_matches (arfile, bfd_object, &matching))
|
1994-02-03 08:25:30 +08:00
|
|
|
|
{
|
|
|
|
|
(*format->print_archive_member) (bfd_get_filename (file),
|
|
|
|
|
bfd_get_filename (arfile));
|
|
|
|
|
display_rel_file (arfile, file);
|
|
|
|
|
}
|
|
|
|
|
else
|
1994-02-03 21:08:29 +08:00
|
|
|
|
{
|
|
|
|
|
bfd_nonfatal (bfd_get_filename (arfile));
|
1994-03-30 04:00:09 +08:00
|
|
|
|
if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
|
1994-02-03 21:08:29 +08:00
|
|
|
|
{
|
|
|
|
|
list_matching_formats (matching);
|
|
|
|
|
free (matching);
|
|
|
|
|
}
|
|
|
|
|
}
|
1994-03-30 04:00:09 +08:00
|
|
|
|
|
1994-03-30 04:34:10 +08:00
|
|
|
|
if (last_arfile != NULL)
|
|
|
|
|
bfd_close (last_arfile);
|
|
|
|
|
last_arfile = arfile;
|
1994-02-03 08:25:30 +08:00
|
|
|
|
}
|
1994-03-30 04:34:10 +08:00
|
|
|
|
|
|
|
|
|
if (last_arfile != NULL)
|
|
|
|
|
bfd_close (last_arfile);
|
1994-02-03 08:25:30 +08:00
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
|
display_file (filename)
|
|
|
|
|
char *filename;
|
|
|
|
|
{
|
1991-10-22 00:48:10 +08:00
|
|
|
|
boolean retval = true;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
bfd *file;
|
1994-02-03 08:25:30 +08:00
|
|
|
|
char **matching;
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
file = bfd_openr (filename, target);
|
|
|
|
|
if (file == NULL)
|
|
|
|
|
{
|
|
|
|
|
bfd_nonfatal (filename);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bfd_check_format (file, bfd_archive))
|
|
|
|
|
{
|
|
|
|
|
display_archive (file);
|
|
|
|
|
}
|
|
|
|
|
else if (bfd_check_format_matches (file, bfd_object, &matching))
|
|
|
|
|
{
|
|
|
|
|
(*format->print_object_filename) (filename);
|
|
|
|
|
display_rel_file (file, NULL);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bfd_nonfatal (filename);
|
1994-03-30 04:00:09 +08:00
|
|
|
|
if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
|
1994-02-03 08:25:30 +08:00
|
|
|
|
{
|
|
|
|
|
list_matching_formats (matching);
|
|
|
|
|
free (matching);
|
1991-10-22 00:48:10 +08:00
|
|
|
|
}
|
|
|
|
|
retval = false;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
1991-10-22 00:48:10 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
if (bfd_close (file) == false)
|
1991-03-22 05:29:06 +08:00
|
|
|
|
bfd_fatal (filename);
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
1992-08-19 11:25:51 +08:00
|
|
|
|
/* Symbol-sorting predicates */
|
|
|
|
|
#define valueof(x) ((x)->section->vma + (x)->value)
|
|
|
|
|
int
|
|
|
|
|
numeric_forward (x, y)
|
|
|
|
|
CONST void *x;
|
|
|
|
|
CONST void *y;
|
|
|
|
|
{
|
1994-02-03 08:25:30 +08:00
|
|
|
|
return (valueof (*(asymbol **) x) - valueof (*(asymbol **) y));
|
1992-08-19 11:25:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
numeric_reverse (x, y)
|
|
|
|
|
CONST void *x;
|
|
|
|
|
CONST void *y;
|
|
|
|
|
{
|
1994-02-03 08:25:30 +08:00
|
|
|
|
return (valueof (*(asymbol **) y) - valueof (*(asymbol **) x));
|
1992-08-19 11:25:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
non_numeric_forward (x, y)
|
|
|
|
|
CONST void *x;
|
|
|
|
|
CONST void *y;
|
|
|
|
|
{
|
|
|
|
|
CONST char *xn = (*(asymbol **) x)->name;
|
|
|
|
|
CONST char *yn = (*(asymbol **) y)->name;
|
|
|
|
|
|
|
|
|
|
return ((xn == NULL) ? ((yn == NULL) ? 0 : -1) :
|
|
|
|
|
((yn == NULL) ? 1 : strcmp (xn, yn)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
non_numeric_reverse (x, y)
|
|
|
|
|
CONST void *x;
|
|
|
|
|
CONST void *y;
|
|
|
|
|
{
|
|
|
|
|
return -(non_numeric_forward (x, y));
|
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
static int (*(sorters[2][2])) PARAMS ((CONST void *, CONST void *)) =
|
|
|
|
|
{
|
|
|
|
|
{ non_numeric_forward, non_numeric_reverse },
|
|
|
|
|
{ numeric_forward, numeric_reverse }
|
1992-08-19 11:25:51 +08:00
|
|
|
|
};
|
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
/* If ARCHIVE_BFD is non-NULL, it is the archive containing ABFD. */
|
|
|
|
|
|
1991-10-22 00:48:10 +08:00
|
|
|
|
static void
|
1994-02-03 08:25:30 +08:00
|
|
|
|
display_rel_file (abfd, archive_bfd)
|
1991-03-22 05:29:06 +08:00
|
|
|
|
bfd *abfd;
|
1994-02-03 08:25:30 +08:00
|
|
|
|
bfd *archive_bfd;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
{
|
1994-03-31 06:06:17 +08:00
|
|
|
|
long storage;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
asymbol **syms;
|
1994-03-31 06:06:17 +08:00
|
|
|
|
long symcount = 0;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-06-11 05:14:49 +08:00
|
|
|
|
if (dynamic)
|
1994-02-03 08:25:30 +08:00
|
|
|
|
{
|
1994-06-11 05:14:49 +08:00
|
|
|
|
if (!(bfd_get_file_flags (abfd) & DYNAMIC))
|
|
|
|
|
{
|
|
|
|
|
printf ("\"%s\" is not a dynamic object.\n",
|
|
|
|
|
bfd_get_filename (abfd));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
|
|
|
|
|
{
|
|
|
|
|
printf ("No symbols in \"%s\".\n", bfd_get_filename (abfd));
|
|
|
|
|
return;
|
|
|
|
|
}
|
1994-02-03 08:25:30 +08:00
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-06-11 05:14:49 +08:00
|
|
|
|
if (dynamic)
|
|
|
|
|
storage = bfd_get_dynamic_symtab_upper_bound (abfd);
|
|
|
|
|
else
|
|
|
|
|
storage = bfd_get_symtab_upper_bound (abfd);
|
1994-03-31 06:06:17 +08:00
|
|
|
|
if (storage < 0)
|
|
|
|
|
bfd_fatal (bfd_get_filename (abfd));
|
1994-02-03 08:25:30 +08:00
|
|
|
|
if (storage == 0)
|
|
|
|
|
{
|
|
|
|
|
nosymz:
|
1994-06-11 05:14:49 +08:00
|
|
|
|
if (dynamic)
|
|
|
|
|
fprintf (stderr, "%s: no symbols\n", bfd_get_filename (abfd));
|
|
|
|
|
else
|
|
|
|
|
fprintf (stderr, "%s: Symflags set but there are none?\n",
|
|
|
|
|
bfd_get_filename (abfd));
|
1994-02-03 08:25:30 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
|
|
|
|
syms = (asymbol **) xmalloc (storage);
|
|
|
|
|
|
1994-06-11 05:14:49 +08:00
|
|
|
|
if (dynamic)
|
|
|
|
|
symcount = bfd_canonicalize_dynamic_symtab (abfd, syms);
|
|
|
|
|
else
|
|
|
|
|
symcount = bfd_canonicalize_symtab (abfd, syms);
|
1994-03-31 06:06:17 +08:00
|
|
|
|
if (symcount < 0)
|
|
|
|
|
bfd_fatal (bfd_get_filename (abfd));
|
1994-02-03 08:25:30 +08:00
|
|
|
|
if (symcount == 0)
|
|
|
|
|
{
|
|
|
|
|
free (syms);
|
|
|
|
|
goto nosymz;
|
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
|
|
|
|
/* Discard the symbols we don't want to print.
|
|
|
|
|
It's OK to do this in place; we'll free the storage anyway
|
1994-02-03 08:25:30 +08:00
|
|
|
|
(after printing). */
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
|
|
|
|
symcount = filter_symbols (abfd, syms, symcount);
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
|
|
|
|
if (!no_sort)
|
1994-02-03 08:25:30 +08:00
|
|
|
|
qsort ((char *) syms, symcount, sizeof (asymbol *),
|
|
|
|
|
sorters[sort_numerically][reverse_sort]);
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
1993-04-29 14:45:39 +08:00
|
|
|
|
print_symbols (abfd, syms, symcount, archive_bfd);
|
1991-03-22 05:29:06 +08:00
|
|
|
|
free (syms);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Choose which symbol entries to print;
|
|
|
|
|
compact them downward to get rid of the rest.
|
|
|
|
|
Return the number of symbols to be printed. */
|
1994-02-03 08:25:30 +08:00
|
|
|
|
|
1991-03-22 05:29:06 +08:00
|
|
|
|
static unsigned int
|
|
|
|
|
filter_symbols (abfd, syms, symcount)
|
1994-02-03 08:25:30 +08:00
|
|
|
|
bfd *abfd; /* Unused. */
|
1991-03-22 05:29:06 +08:00
|
|
|
|
asymbol **syms;
|
|
|
|
|
unsigned long symcount;
|
|
|
|
|
{
|
|
|
|
|
asymbol **from, **to;
|
1994-02-03 08:25:30 +08:00
|
|
|
|
unsigned int src_count;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
unsigned int dst_count = 0;
|
1992-06-25 04:58:17 +08:00
|
|
|
|
asymbol *sym;
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
for (from = to = syms, src_count = 0; src_count < symcount; src_count++)
|
|
|
|
|
{
|
|
|
|
|
int keep = 0;
|
|
|
|
|
flagword flags = (from[src_count])->flags;
|
|
|
|
|
|
|
|
|
|
sym = from[src_count];
|
|
|
|
|
if (undefined_only)
|
|
|
|
|
keep = sym->section == &bfd_und_section;
|
|
|
|
|
else if (external_only)
|
|
|
|
|
keep = ((flags & BSF_GLOBAL)
|
|
|
|
|
|| (sym->section == &bfd_und_section)
|
|
|
|
|
|| (bfd_is_com_section (sym->section)));
|
|
|
|
|
else
|
|
|
|
|
keep = 1;
|
|
|
|
|
|
|
|
|
|
if (!print_debug_syms && ((flags & BSF_DEBUGGING) != 0))
|
|
|
|
|
keep = 0;
|
|
|
|
|
|
|
|
|
|
if (keep)
|
|
|
|
|
to[dst_count++] = from[src_count];
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
return dst_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print symbol name NAME, read from ABFD, with printf format FORMAT,
|
|
|
|
|
demangling it if requested. */
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
static void
|
|
|
|
|
print_symname (format, name, abfd)
|
|
|
|
|
char *format, *name;
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
if (do_demangle)
|
|
|
|
|
{
|
|
|
|
|
char *res;
|
|
|
|
|
|
|
|
|
|
/* In this mode, give a user-level view of the symbol name
|
|
|
|
|
even if it's not mangled; strip off any leading
|
|
|
|
|
underscore. */
|
|
|
|
|
if (bfd_get_symbol_leading_char (abfd) == name[0])
|
|
|
|
|
name++;
|
|
|
|
|
|
|
|
|
|
res = cplus_demangle (name, DMGL_ANSI | DMGL_PARAMS);
|
|
|
|
|
if (res)
|
|
|
|
|
{
|
|
|
|
|
printf (format, res);
|
|
|
|
|
free (res);
|
|
|
|
|
return;
|
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
1992-08-19 11:25:51 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
printf (format, name);
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
1994-02-03 08:25:30 +08:00
|
|
|
|
|
|
|
|
|
/* If ARCHIVE_BFD is non-NULL, it is the archive containing ABFD. */
|
|
|
|
|
|
1991-03-22 05:29:06 +08:00
|
|
|
|
static void
|
1993-04-29 14:45:39 +08:00
|
|
|
|
print_symbols (abfd, syms, symcount, archive_bfd)
|
1991-03-22 05:29:06 +08:00
|
|
|
|
bfd *abfd;
|
|
|
|
|
asymbol **syms;
|
|
|
|
|
unsigned long symcount;
|
1993-04-29 14:45:39 +08:00
|
|
|
|
bfd *archive_bfd;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
{
|
|
|
|
|
asymbol **sym = syms, **end = syms + symcount;
|
1994-02-03 08:25:30 +08:00
|
|
|
|
symbol_info syminfo;
|
|
|
|
|
|
|
|
|
|
for (; sym < end; ++sym)
|
|
|
|
|
{
|
|
|
|
|
(*format->print_symbol_filename) (archive_bfd, abfd);
|
|
|
|
|
|
|
|
|
|
if (undefined_only)
|
|
|
|
|
{
|
|
|
|
|
if ((*sym)->section == &bfd_und_section)
|
|
|
|
|
{
|
|
|
|
|
print_symname ("%s\n", (*sym)->name, abfd);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
asymbol *p = *sym;
|
|
|
|
|
if (p)
|
|
|
|
|
{
|
|
|
|
|
bfd_get_symbol_info (abfd, p, &syminfo);
|
|
|
|
|
(*format->print_symbol_info) (&syminfo, abfd);
|
|
|
|
|
putchar ('\n');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The following 3 groups of functions are called unconditionally,
|
|
|
|
|
once at the start of processing each file of the appropriate type.
|
|
|
|
|
They should check `filename_per_file' and `filename_per_symbol',
|
|
|
|
|
as appropriate for their output format, to determine whether to
|
|
|
|
|
print anything. */
|
|
|
|
|
|
|
|
|
|
/* Print the name of an object file given on the command line. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_object_filename_bsd (filename)
|
|
|
|
|
char *filename;
|
|
|
|
|
{
|
|
|
|
|
if (filename_per_file && !filename_per_symbol)
|
|
|
|
|
printf ("\n%s:\n", filename);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_object_filename_sysv (filename)
|
|
|
|
|
char *filename;
|
|
|
|
|
{
|
|
|
|
|
if (undefined_only)
|
|
|
|
|
printf ("\n\nUndefined symbols from %s:\n\n", filename);
|
|
|
|
|
else
|
|
|
|
|
printf ("\n\nSymbols from %s:\n\n", filename);
|
|
|
|
|
printf ("\
|
|
|
|
|
Name Value Class Type Size Line Section\n\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_object_filename_posix (filename)
|
|
|
|
|
char *filename;
|
|
|
|
|
{
|
|
|
|
|
if (filename_per_file && !filename_per_symbol)
|
|
|
|
|
printf ("%s:\n", filename);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print the name of an archive file given on the command line. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_filename_bsd (filename)
|
|
|
|
|
char *filename;
|
|
|
|
|
{
|
|
|
|
|
if (filename_per_file)
|
|
|
|
|
printf ("\n%s:\n", filename);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_filename_sysv (filename)
|
|
|
|
|
char *filename;
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_filename_posix (filename)
|
|
|
|
|
char *filename;
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print the name of an archive member file. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_member_bsd (archive, filename)
|
|
|
|
|
char *archive;
|
|
|
|
|
CONST char *filename;
|
|
|
|
|
{
|
|
|
|
|
if (!filename_per_symbol)
|
|
|
|
|
printf ("\n%s:\n", filename);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_member_sysv (archive, filename)
|
|
|
|
|
char *archive;
|
|
|
|
|
CONST char *filename;
|
|
|
|
|
{
|
|
|
|
|
if (undefined_only)
|
|
|
|
|
printf ("\n\nUndefined symbols from %s[%s]:\n\n", archive, filename);
|
|
|
|
|
else
|
|
|
|
|
printf ("\n\nSymbols from %s[%s]:\n\n", archive, filename);
|
|
|
|
|
printf ("\
|
|
|
|
|
Name Value Class Type Size Line Section\n\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_archive_member_posix (archive, filename)
|
|
|
|
|
char *archive;
|
|
|
|
|
CONST char *filename;
|
|
|
|
|
{
|
|
|
|
|
if (!filename_per_symbol)
|
|
|
|
|
printf ("%s[%s]:\n", archive, filename);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print the name of the file (and archive, if there is one)
|
|
|
|
|
containing a symbol. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_symbol_filename_bsd (archive_bfd, abfd)
|
|
|
|
|
bfd *archive_bfd, *abfd;
|
|
|
|
|
{
|
|
|
|
|
if (filename_per_symbol)
|
|
|
|
|
{
|
|
|
|
|
if (archive_bfd)
|
|
|
|
|
printf ("%s:", bfd_get_filename (archive_bfd));
|
|
|
|
|
printf ("%s:", bfd_get_filename (abfd));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_symbol_filename_sysv (archive_bfd, abfd)
|
|
|
|
|
bfd *archive_bfd, *abfd;
|
|
|
|
|
{
|
|
|
|
|
if (filename_per_symbol)
|
|
|
|
|
{
|
|
|
|
|
if (archive_bfd)
|
|
|
|
|
printf ("%s:", bfd_get_filename (archive_bfd));
|
|
|
|
|
printf ("%s:", bfd_get_filename (abfd));
|
|
|
|
|
}
|
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
static void
|
|
|
|
|
print_symbol_filename_posix (archive_bfd, abfd)
|
|
|
|
|
bfd *archive_bfd, *abfd;
|
|
|
|
|
{
|
|
|
|
|
if (filename_per_symbol)
|
|
|
|
|
{
|
1993-04-29 14:45:39 +08:00
|
|
|
|
if (archive_bfd)
|
1994-02-03 08:25:30 +08:00
|
|
|
|
printf ("%s[%s]: ", bfd_get_filename (archive_bfd),
|
|
|
|
|
bfd_get_filename (abfd));
|
|
|
|
|
else
|
|
|
|
|
printf ("%s: ", bfd_get_filename (abfd));
|
1993-04-29 14:45:39 +08:00
|
|
|
|
}
|
1994-02-03 08:25:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print a line of information about a symbol. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_symbol_info_bsd (info, abfd)
|
|
|
|
|
symbol_info *info;
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
if (info->type == 'U')
|
|
|
|
|
printf (" ");
|
|
|
|
|
else
|
|
|
|
|
{
|
1994-06-11 05:14:49 +08:00
|
|
|
|
#ifdef BFD_HOST_64_BIT
|
1994-02-03 08:25:30 +08:00
|
|
|
|
printf (value_format, uint64_typeHIGH (info->value),
|
|
|
|
|
uint64_typeLOW (info->value));
|
|
|
|
|
#else
|
|
|
|
|
printf (value_format, info->value);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
printf (" %c", info->type);
|
|
|
|
|
if (info->type == '-')
|
|
|
|
|
{
|
|
|
|
|
/* A stab. */
|
|
|
|
|
printf (" ");
|
|
|
|
|
printf (other_format, info->stab_other);
|
|
|
|
|
printf (" ");
|
|
|
|
|
printf (desc_format, info->stab_desc);
|
|
|
|
|
printf (" %5s", info->stab_name);
|
|
|
|
|
}
|
|
|
|
|
print_symname (" %s", info->name, abfd);
|
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
static void
|
|
|
|
|
print_symbol_info_sysv (info, abfd)
|
|
|
|
|
symbol_info *info;
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
print_symname ("%-20s|", info->name, abfd); /* Name */
|
|
|
|
|
if (info->type == 'U')
|
|
|
|
|
printf (" "); /* Value */
|
|
|
|
|
else
|
|
|
|
|
{
|
1994-06-11 05:14:49 +08:00
|
|
|
|
#ifdef BFD_HOST_64_BIT
|
1994-02-03 08:25:30 +08:00
|
|
|
|
printf (value_format, uint64_typeHIGH (info->value),
|
|
|
|
|
uint64_typeLOW (info->value));
|
|
|
|
|
#else
|
|
|
|
|
printf (value_format, info->value);
|
|
|
|
|
#endif
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
1994-02-03 08:25:30 +08:00
|
|
|
|
printf ("| %c |", info->type); /* Class */
|
|
|
|
|
if (info->type == '-')
|
|
|
|
|
{
|
|
|
|
|
/* A stab. */
|
|
|
|
|
printf ("%18s| ", info->stab_name); /* (C) Type */
|
|
|
|
|
printf (desc_format, info->stab_desc); /* Size */
|
|
|
|
|
printf ("| |"); /* Line, Section */
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
1994-02-03 08:25:30 +08:00
|
|
|
|
else
|
|
|
|
|
printf (" | | |"); /* Type, Size, Line, Section */
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 08:25:30 +08:00
|
|
|
|
static void
|
|
|
|
|
print_symbol_info_posix (info, abfd)
|
|
|
|
|
symbol_info *info;
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
print_symname ("%s ", info->name, abfd);
|
|
|
|
|
printf ("%c ", info->type);
|
|
|
|
|
if (info->type == 'U')
|
|
|
|
|
printf (" ");
|
|
|
|
|
else
|
|
|
|
|
{
|
1994-06-11 05:14:49 +08:00
|
|
|
|
#ifdef BFD_HOST_64_BIT
|
1994-02-03 08:25:30 +08:00
|
|
|
|
printf (value_format, uint64_typeHIGH (info->value),
|
|
|
|
|
uint64_typeLOW (info->value));
|
|
|
|
|
#else
|
|
|
|
|
printf (value_format, info->value);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
/* POSIX.2 wants the symbol size printed here, when applicable;
|
|
|
|
|
BFD currently doesn't provide it, so we take the easy way out by
|
|
|
|
|
considering it to never be applicable. */
|
|
|
|
|
}
|
|
|
|
|
|
1991-03-22 05:29:06 +08:00
|
|
|
|
static void
|
|
|
|
|
print_symdef_entry (abfd)
|
1994-02-03 08:25:30 +08:00
|
|
|
|
bfd *abfd;
|
1991-03-22 05:29:06 +08:00
|
|
|
|
{
|
|
|
|
|
symindex idx = BFD_NO_MORE_SYMBOLS;
|
|
|
|
|
carsym *thesym;
|
|
|
|
|
boolean everprinted = false;
|
|
|
|
|
|
|
|
|
|
for (idx = bfd_get_next_mapent (abfd, idx, &thesym);
|
|
|
|
|
idx != BFD_NO_MORE_SYMBOLS;
|
1994-02-03 08:25:30 +08:00
|
|
|
|
idx = bfd_get_next_mapent (abfd, idx, &thesym))
|
|
|
|
|
{
|
|
|
|
|
bfd *elt;
|
|
|
|
|
if (!everprinted)
|
|
|
|
|
{
|
|
|
|
|
printf ("\nArchive index:\n");
|
|
|
|
|
everprinted = true;
|
|
|
|
|
}
|
|
|
|
|
elt = bfd_get_elt_at_index (abfd, idx);
|
|
|
|
|
if (thesym->name != (char *) NULL)
|
|
|
|
|
{
|
|
|
|
|
printf ("%s in %s\n", thesym->name, bfd_get_filename (elt));
|
|
|
|
|
}
|
1992-08-19 11:25:51 +08:00
|
|
|
|
}
|
1991-03-22 05:29:06 +08:00
|
|
|
|
}
|