1992-01-24 23:49:24 +01:00
|
|
|
|
/* objdump.c -- dump information about an object file.
|
1994-01-23 01:31:14 +01:00
|
|
|
|
Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-07-15 18:46:50 +02:00
|
|
|
|
This file is part of GNU Binutils.
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-07-15 18:46:50 +02:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
1991-03-21 22:29:06 +01:00
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1992-01-24 23:49:24 +01:00
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
1991-03-21 22:29:06 +01:00
|
|
|
|
any later version.
|
|
|
|
|
|
1993-07-15 18:46:50 +02:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
1991-03-21 22:29:06 +01:00
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
1993-07-15 18:46:50 +02:00
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
#include "bfd.h"
|
1992-01-24 23:49:24 +01:00
|
|
|
|
#include "sysdep.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#include "getopt.h"
|
1993-10-29 19:15:01 +01:00
|
|
|
|
#include "bucomm.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <ctype.h>
|
1993-03-19 01:12:50 +01:00
|
|
|
|
#include "dis-asm.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1992-06-11 10:23:11 +02:00
|
|
|
|
/* Internal headers for the ELF .stab-dump code - sorry. */
|
|
|
|
|
#define BYTES_IN_WORD 32
|
|
|
|
|
#include "aout/aout64.h"
|
|
|
|
|
#include "elf/internal.h"
|
1993-06-26 02:47:23 +02:00
|
|
|
|
extern Elf_Internal_Shdr *bfd_elf_find_section();
|
1991-04-18 23:14:53 +02:00
|
|
|
|
|
1993-10-22 19:04:09 +01:00
|
|
|
|
#ifndef FPRINTF_ALREADY_DECLARED
|
1993-04-27 03:39:38 +02:00
|
|
|
|
extern int fprintf PARAMS ((FILE *, CONST char *, ...));
|
1993-10-22 19:04:09 +01:00
|
|
|
|
#endif
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
char *default_target = NULL; /* default at runtime */
|
|
|
|
|
|
1993-10-29 19:15:01 +01:00
|
|
|
|
extern char *program_version;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1992-08-19 05:25:51 +02:00
|
|
|
|
int show_version = 0; /* show the version number */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
int dump_section_contents; /* -s */
|
|
|
|
|
int dump_section_headers; /* -h */
|
|
|
|
|
boolean dump_file_header; /* -f */
|
|
|
|
|
int dump_symtab; /* -t */
|
|
|
|
|
int dump_reloc_info; /* -r */
|
|
|
|
|
int dump_ar_hdrs; /* -a */
|
1992-06-10 16:57:25 +02:00
|
|
|
|
int with_line_numbers; /* -l */
|
1993-09-23 07:21:21 +02:00
|
|
|
|
int dump_stab_section_info; /* --stabs */
|
1992-06-10 16:57:25 +02:00
|
|
|
|
boolean disassemble; /* -d */
|
1993-10-29 19:15:01 +01:00
|
|
|
|
boolean formats_info; /* -i */
|
1993-08-31 20:15:50 +02:00
|
|
|
|
char *only; /* -j secname */
|
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
/* Extra info to pass to the disassembler address printing function. */
|
1993-08-31 20:15:50 +02:00
|
|
|
|
struct objdump_disasm_info {
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
asection *sec;
|
|
|
|
|
};
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
/* Architecture to disassemble for, or default if NULL. */
|
1992-06-10 16:57:25 +02:00
|
|
|
|
char *machine = (char *) NULL;
|
1994-01-26 23:11:18 +01:00
|
|
|
|
|
|
|
|
|
/* The symbol table. */
|
1992-06-10 16:57:25 +02:00
|
|
|
|
asymbol **syms;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
/* Number of bytes allocated for `syms'. */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
unsigned int storage;
|
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
/* Number of symbols in `syms'. */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
unsigned int symcount = 0;
|
|
|
|
|
|
1993-02-22 16:31:30 +01:00
|
|
|
|
/* Forward declarations. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
display_file PARAMS ((char *filename, char *target));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
dump_data PARAMS ((bfd *abfd));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
dump_relocs PARAMS ((bfd *abfd));
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
dump_symbols PARAMS ((bfd *abfd));
|
1994-01-13 23:34:51 +01:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
display_bfd PARAMS ((bfd *abfd));
|
1994-03-29 23:34:44 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
objdump_print_address PARAMS ((bfd_vma, struct disassemble_info *));
|
1993-02-22 16:31:30 +01:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
void
|
1993-07-15 18:46:50 +02:00
|
|
|
|
usage (stream, status)
|
|
|
|
|
FILE *stream;
|
|
|
|
|
int status;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1993-07-15 18:46:50 +02:00
|
|
|
|
fprintf (stream, "\
|
1994-01-13 23:34:51 +01:00
|
|
|
|
Usage: %s [-ahifdrtxsl] [-b bfdname] [-m machine] [-j section-name]\n\
|
|
|
|
|
[--archive-headers] [--target=bfdname] [--disassemble] [--file-headers]\n\
|
|
|
|
|
[--section-headers] [--headers] [--info] [--section=section-name]\n\
|
|
|
|
|
[--line-numbers] [--architecture=machine] [--reloc] [--full-contents]\n\
|
|
|
|
|
[--stabs] [--syms] [--all-headers] [--version] [--help] objfile...\n\
|
|
|
|
|
at least one option besides -l (--line-numbers) must be given\n",
|
1993-07-15 18:46:50 +02:00
|
|
|
|
program_name);
|
|
|
|
|
exit (status);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
static struct option long_options[]=
|
|
|
|
|
{
|
1994-01-13 23:34:51 +01:00
|
|
|
|
{"all-headers", no_argument, NULL, 'x'},
|
|
|
|
|
{"architecture", required_argument, NULL, 'm'},
|
|
|
|
|
{"archive-headers", no_argument, NULL, 'a'},
|
|
|
|
|
{"disassemble", no_argument, NULL, 'd'},
|
|
|
|
|
{"file-headers", no_argument, NULL, 'f'},
|
|
|
|
|
{"full-contents", no_argument, NULL, 's'},
|
|
|
|
|
{"headers", no_argument, NULL, 'h'},
|
|
|
|
|
{"help", no_argument, NULL, 'H'},
|
|
|
|
|
{"info", no_argument, NULL, 'i'},
|
|
|
|
|
{"line-numbers", no_argument, NULL, 'l'},
|
|
|
|
|
{"reloc", no_argument, NULL, 'r'},
|
|
|
|
|
{"section", required_argument, NULL, 'j'},
|
|
|
|
|
{"section-headers", no_argument, NULL, 'h'},
|
1992-06-11 10:23:11 +02:00
|
|
|
|
{"stabs", no_argument, &dump_stab_section_info, 1},
|
1994-01-13 23:34:51 +01:00
|
|
|
|
{"syms", no_argument, NULL, 't'},
|
|
|
|
|
{"target", required_argument, NULL, 'b'},
|
|
|
|
|
{"version", no_argument, &show_version, 1},
|
1993-04-29 08:45:39 +02:00
|
|
|
|
{0, no_argument, 0, 0}
|
|
|
|
|
};
|
1994-01-26 23:11:18 +01:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
static void
|
1994-01-26 23:11:18 +01:00
|
|
|
|
dump_section_header (abfd, section, ignored)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
bfd *abfd;
|
1994-01-26 23:11:18 +01:00
|
|
|
|
asection *section;
|
|
|
|
|
PTR ignored;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
char *comma = "";
|
1992-06-10 16:57:25 +02:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#define PF(x,y) \
|
1994-01-26 23:11:18 +01:00
|
|
|
|
if (section->flags & x) { printf("%s%s",comma,y); comma = ", "; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
printf ("SECTION %d [%s]\t: size %08x",
|
|
|
|
|
section->index,
|
|
|
|
|
section->name,
|
|
|
|
|
(unsigned) bfd_get_section_size_before_reloc (section));
|
|
|
|
|
printf (" vma ");
|
|
|
|
|
printf_vma (section->vma);
|
|
|
|
|
printf (" align 2**%u\n ",
|
|
|
|
|
section->alignment_power);
|
|
|
|
|
PF (SEC_ALLOC, "ALLOC");
|
|
|
|
|
PF (SEC_CONSTRUCTOR, "CONSTRUCTOR");
|
|
|
|
|
PF (SEC_CONSTRUCTOR_TEXT, "CONSTRUCTOR TEXT");
|
|
|
|
|
PF (SEC_CONSTRUCTOR_DATA, "CONSTRUCTOR DATA");
|
|
|
|
|
PF (SEC_CONSTRUCTOR_BSS, "CONSTRUCTOR BSS");
|
|
|
|
|
PF (SEC_LOAD, "LOAD");
|
|
|
|
|
PF (SEC_RELOC, "RELOC");
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#ifdef SEC_BALIGN
|
1994-01-26 23:11:18 +01:00
|
|
|
|
PF (SEC_BALIGN, "BALIGN");
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
1994-01-26 23:11:18 +01:00
|
|
|
|
PF (SEC_READONLY, "READONLY");
|
|
|
|
|
PF (SEC_CODE, "CODE");
|
|
|
|
|
PF (SEC_DATA, "DATA");
|
|
|
|
|
PF (SEC_ROM, "ROM");
|
|
|
|
|
PF (SEC_DEBUGGING, "DEBUGGING");
|
|
|
|
|
printf ("\n");
|
1991-03-21 22:29:06 +01:00
|
|
|
|
#undef PF
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
static void
|
|
|
|
|
dump_headers (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
bfd_map_over_sections (abfd, dump_section_header, (PTR) NULL);
|
|
|
|
|
}
|
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
static asymbol **
|
1994-01-25 14:27:56 +01:00
|
|
|
|
slurp_symtab (abfd)
|
|
|
|
|
bfd *abfd;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1992-06-10 16:57:25 +02:00
|
|
|
|
asymbol **sy = (asymbol **) NULL;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
|
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
printf ("No symbols in \"%s\".\n", bfd_get_filename (abfd));
|
|
|
|
|
return NULL;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
storage = get_symtab_upper_bound (abfd);
|
|
|
|
|
if (storage)
|
|
|
|
|
{
|
1994-01-13 23:34:51 +01:00
|
|
|
|
sy = (asymbol **) xmalloc (storage);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
|
|
|
|
symcount = bfd_canonicalize_symtab (abfd, sy);
|
1993-05-25 06:28:56 +02:00
|
|
|
|
if (symcount <= 0)
|
|
|
|
|
{
|
1994-01-22 06:11:40 +01:00
|
|
|
|
fprintf (stderr, "%s: %s: Invalid symbol table\n",
|
1993-05-25 06:28:56 +02:00
|
|
|
|
program_name, bfd_get_filename (abfd));
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
return sy;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
/* Filter out (in place) symbols that are useless for disassembly.
|
|
|
|
|
COUNT is the number of elements in SYMBOLS.
|
|
|
|
|
Return the number of useful symbols. */
|
1993-06-18 23:37:21 +02:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
int
|
|
|
|
|
remove_useless_symbols (symbols, count)
|
|
|
|
|
asymbol **symbols;
|
1993-06-18 23:37:21 +02:00
|
|
|
|
int count;
|
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
register asymbol **in_ptr = symbols, **out_ptr = symbols;
|
1993-06-18 23:37:21 +02:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
while (--count >= 0)
|
1993-06-18 23:37:21 +02:00
|
|
|
|
{
|
|
|
|
|
asymbol *sym = *in_ptr++;
|
|
|
|
|
|
|
|
|
|
if (sym->name == NULL || sym->name[0] == '\0')
|
|
|
|
|
continue;
|
|
|
|
|
if (sym->flags & (BSF_DEBUGGING))
|
|
|
|
|
continue;
|
|
|
|
|
if (sym->section == &bfd_und_section
|
|
|
|
|
|| bfd_is_com_section (sym->section))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
*out_ptr++ = sym;
|
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
return out_ptr - symbols;
|
1993-06-18 23:37:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
1994-01-23 01:31:14 +01:00
|
|
|
|
/* Sort symbols into value order. */
|
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
static int
|
1994-01-23 01:31:14 +01:00
|
|
|
|
compare_symbols (ap, bp)
|
1992-06-13 07:24:22 +02:00
|
|
|
|
PTR ap;
|
|
|
|
|
PTR bp;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1992-06-13 07:24:22 +02:00
|
|
|
|
asymbol *a = *(asymbol **)ap;
|
|
|
|
|
asymbol *b = *(asymbol **)bp;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-06-18 23:37:21 +02:00
|
|
|
|
if (a->value > b->value)
|
|
|
|
|
return 1;
|
|
|
|
|
else if (a->value < b->value)
|
|
|
|
|
return -1;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-06-18 23:37:21 +02:00
|
|
|
|
if (a->section > b->section)
|
|
|
|
|
return 1;
|
|
|
|
|
else if (a->section < b->section)
|
|
|
|
|
return -1;
|
|
|
|
|
return 0;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
/* Print VMA symbolically to INFO if possible. */
|
|
|
|
|
|
1994-03-29 23:34:44 +02:00
|
|
|
|
static void
|
1993-04-09 20:22:57 +02:00
|
|
|
|
objdump_print_address (vma, info)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
bfd_vma vma;
|
1993-04-09 20:22:57 +02:00
|
|
|
|
struct disassemble_info *info;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1993-08-31 20:15:50 +02:00
|
|
|
|
/* @@ For relocateable files, should filter out symbols belonging to
|
|
|
|
|
the wrong section. Unfortunately, not enough information is supplied
|
|
|
|
|
to this routine to determine the correct section in all cases. */
|
|
|
|
|
/* @@ Would it speed things up to cache the last two symbols returned,
|
|
|
|
|
and maybe their address ranges? For many processors, only one memory
|
|
|
|
|
operand can be present at a time, so the 2-entry cache wouldn't be
|
|
|
|
|
constantly churned by code doing heavy memory accesses. */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
/* Indices in `syms'. */
|
1991-03-21 22:29:06 +01:00
|
|
|
|
unsigned int min = 0;
|
|
|
|
|
unsigned int max = symcount;
|
1994-03-29 23:34:44 +02:00
|
|
|
|
unsigned int thisplace;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-03-29 23:34:44 +02:00
|
|
|
|
bfd_signed_vma vardiff;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-06-18 23:37:21 +02:00
|
|
|
|
fprintf_vma (info->stream, vma);
|
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
if (symcount < 1)
|
|
|
|
|
return;
|
|
|
|
|
|
1994-03-29 23:34:44 +02:00
|
|
|
|
/* Perform a binary search looking for the closest symbol to the
|
|
|
|
|
required value. We are searching the range (min, max]. */
|
|
|
|
|
while (min + 1 < max)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
asymbol *sym;
|
1994-03-29 23:34:44 +02:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
thisplace = (max + min) / 2;
|
|
|
|
|
sym = syms[thisplace];
|
1994-03-29 23:34:44 +02:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
vardiff = sym->value - vma;
|
|
|
|
|
|
|
|
|
|
if (vardiff > 0)
|
|
|
|
|
max = thisplace;
|
|
|
|
|
else if (vardiff < 0)
|
|
|
|
|
min = thisplace;
|
|
|
|
|
else
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-03-29 23:34:44 +02:00
|
|
|
|
min = thisplace;
|
|
|
|
|
break;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
}
|
1991-05-21 01:15:15 +02:00
|
|
|
|
|
1994-03-29 23:34:44 +02:00
|
|
|
|
/* The symbol we want is now in min, the low end of the range we
|
|
|
|
|
were searching. */
|
|
|
|
|
thisplace = min;
|
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
{
|
|
|
|
|
/* If this symbol isn't global, search for one with the same value
|
|
|
|
|
that is. */
|
|
|
|
|
bfd_vma val = syms[thisplace]->value;
|
|
|
|
|
int i;
|
|
|
|
|
if (syms[thisplace]->flags & (BSF_LOCAL|BSF_DEBUGGING))
|
|
|
|
|
for (i = thisplace - 1; i >= 0; i--)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
if (syms[i]->value == val
|
|
|
|
|
&& (!(syms[i]->flags & (BSF_LOCAL|BSF_DEBUGGING))
|
|
|
|
|
|| ((syms[thisplace]->flags & BSF_DEBUGGING)
|
|
|
|
|
&& !(syms[i]->flags & BSF_DEBUGGING))))
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
thisplace = i;
|
|
|
|
|
break;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
if (syms[thisplace]->flags & (BSF_LOCAL|BSF_DEBUGGING))
|
|
|
|
|
for (i = thisplace + 1; i < symcount; i++)
|
|
|
|
|
{
|
|
|
|
|
if (syms[i]->value == val
|
|
|
|
|
&& (!(syms[i]->flags & (BSF_LOCAL|BSF_DEBUGGING))
|
|
|
|
|
|| ((syms[thisplace]->flags & BSF_DEBUGGING)
|
|
|
|
|
&& !(syms[i]->flags & BSF_DEBUGGING))))
|
1993-08-31 20:15:50 +02:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
thisplace = i;
|
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
/* If the file is relocateable, and the symbol could be from this
|
|
|
|
|
section, prefer a symbol from this section over symbols from
|
|
|
|
|
others, even if the other symbol's value might be closer.
|
|
|
|
|
|
|
|
|
|
Note that this may be wrong for some symbol references if the
|
|
|
|
|
sections have overlapping memory ranges, but in that case there's
|
|
|
|
|
no way to tell what's desired without looking at the relocation
|
|
|
|
|
table. */
|
|
|
|
|
struct objdump_disasm_info *aux;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
aux = (struct objdump_disasm_info *) info->application_data;
|
|
|
|
|
if ((aux->abfd->flags & HAS_RELOC)
|
|
|
|
|
&& vma >= bfd_get_section_vma (aux->abfd, aux->sec)
|
|
|
|
|
&& vma < (bfd_get_section_vma (aux->abfd, aux->sec)
|
|
|
|
|
+ bfd_get_section_size_before_reloc (aux->sec))
|
|
|
|
|
&& syms[thisplace]->section != aux->sec)
|
|
|
|
|
{
|
|
|
|
|
for (i = thisplace + 1; i < symcount; i++)
|
1994-03-29 23:34:44 +02:00
|
|
|
|
{
|
|
|
|
|
if (syms[i]->value != syms[thisplace]->value)
|
|
|
|
|
{
|
|
|
|
|
i--;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for (; i >= 0; i--)
|
|
|
|
|
{
|
|
|
|
|
if (syms[i]->section == aux->sec)
|
|
|
|
|
{
|
|
|
|
|
thisplace = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1993-08-31 20:15:50 +02:00
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
}
|
|
|
|
|
fprintf (info->stream, " <%s", syms[thisplace]->name);
|
|
|
|
|
if (syms[thisplace]->value > vma)
|
|
|
|
|
{
|
|
|
|
|
char buf[30], *p = buf;
|
|
|
|
|
sprintf_vma (buf, syms[thisplace]->value - vma);
|
|
|
|
|
while (*p == '0')
|
|
|
|
|
p++;
|
|
|
|
|
fprintf (info->stream, "-%s", p);
|
|
|
|
|
}
|
|
|
|
|
else if (vma > syms[thisplace]->value)
|
|
|
|
|
{
|
|
|
|
|
char buf[30], *p = buf;
|
|
|
|
|
sprintf_vma (buf, vma - syms[thisplace]->value);
|
|
|
|
|
while (*p == '0')
|
|
|
|
|
p++;
|
|
|
|
|
fprintf (info->stream, "+%s", p);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
fprintf (info->stream, ">");
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#ifdef ARCH_all
|
|
|
|
|
#define ARCH_a29k
|
|
|
|
|
#define ARCH_alpha
|
|
|
|
|
#define ARCH_h8300
|
|
|
|
|
#define ARCH_h8500
|
|
|
|
|
#define ARCH_hppa
|
|
|
|
|
#define ARCH_i386
|
|
|
|
|
#define ARCH_i960
|
|
|
|
|
#define ARCH_m68k
|
|
|
|
|
#define ARCH_m88k
|
|
|
|
|
#define ARCH_mips
|
1994-03-29 23:34:44 +02:00
|
|
|
|
#define ARCH_powerpc
|
1994-01-22 01:19:02 +01:00
|
|
|
|
#define ARCH_rs6000
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#define ARCH_sh
|
|
|
|
|
#define ARCH_sparc
|
|
|
|
|
#define ARCH_z8k
|
|
|
|
|
#endif
|
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
void
|
1992-06-10 16:57:25 +02:00
|
|
|
|
disassemble_data (abfd)
|
|
|
|
|
bfd *abfd;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
1991-05-21 01:15:15 +02:00
|
|
|
|
bfd_size_type i;
|
1994-02-03 01:25:30 +01:00
|
|
|
|
unsigned int (*print) () = 0; /* Old style */
|
1993-03-19 01:12:50 +01:00
|
|
|
|
disassembler_ftype disassemble = 0; /* New style */
|
|
|
|
|
struct disassemble_info disasm_info;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
struct objdump_disasm_info aux;
|
1993-03-19 01:12:50 +01:00
|
|
|
|
|
|
|
|
|
int prevline;
|
|
|
|
|
CONST char *prev_function = "";
|
1992-01-24 23:49:24 +01:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
asection *section;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
|
1991-06-07 03:33:38 +02:00
|
|
|
|
boolean done_dot = false;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
/* Replace symbol section relative values with abs values. */
|
1992-06-10 16:57:25 +02:00
|
|
|
|
for (i = 0; i < symcount; i++)
|
|
|
|
|
{
|
1991-03-21 22:29:06 +01:00
|
|
|
|
syms[i]->value += syms[i]->section->vma;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-06-18 23:37:21 +02:00
|
|
|
|
symcount = remove_useless_symbols (syms, symcount);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
/* Sort the symbols into section and symbol order */
|
1994-01-26 23:11:18 +01:00
|
|
|
|
qsort (syms, symcount, sizeof (asymbol *), compare_symbols);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
INIT_DISASSEMBLE_INFO(disasm_info, stdout);
|
|
|
|
|
disasm_info.application_data = (PTR) &aux;
|
|
|
|
|
aux.abfd = abfd;
|
|
|
|
|
disasm_info.print_address_func = objdump_print_address;
|
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (machine != (char *) NULL)
|
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_arch_info_type *info = bfd_scan_arch (machine);
|
|
|
|
|
if (info == NULL)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "%s: Can't use supplied machine %s\n",
|
|
|
|
|
program_name,
|
|
|
|
|
machine);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
abfd->arch_info = info;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
1991-10-05 05:50:54 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
/* See if we can disassemble using bfd. */
|
1991-10-05 05:50:54 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (abfd->arch_info->disassemble)
|
|
|
|
|
{
|
|
|
|
|
print = abfd->arch_info->disassemble;
|
1991-10-05 05:50:54 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
enum bfd_architecture a = bfd_get_arch (abfd);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
switch (a)
|
|
|
|
|
{
|
1993-08-31 20:15:50 +02:00
|
|
|
|
/* If you add a case to this table, also add it to the
|
|
|
|
|
ARCH_all definition right above this function. */
|
|
|
|
|
#ifdef ARCH_a29k
|
|
|
|
|
case bfd_arch_a29k:
|
|
|
|
|
/* As far as I know we only handle big-endian 29k objects. */
|
|
|
|
|
disassemble = print_insn_big_a29k;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_alpha
|
|
|
|
|
case bfd_arch_alpha:
|
|
|
|
|
disassemble = print_insn_alpha;
|
1993-03-29 15:22:16 +02:00
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_h8300
|
1993-06-18 23:37:21 +02:00
|
|
|
|
case bfd_arch_h8300:
|
|
|
|
|
if (bfd_get_mach(abfd) == bfd_mach_h8300h)
|
|
|
|
|
disassemble = print_insn_h8300h;
|
|
|
|
|
else
|
|
|
|
|
disassemble = print_insn_h8300;
|
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_h8500
|
|
|
|
|
case bfd_arch_h8500:
|
|
|
|
|
disassemble = print_insn_h8500;
|
1993-04-27 03:39:38 +02:00
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_hppa
|
|
|
|
|
case bfd_arch_hppa:
|
|
|
|
|
disassemble = print_insn_hppa;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_i386
|
|
|
|
|
case bfd_arch_i386:
|
|
|
|
|
disassemble = print_insn_i386;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_i960
|
1992-06-10 16:57:25 +02:00
|
|
|
|
case bfd_arch_i960:
|
1993-04-09 20:22:57 +02:00
|
|
|
|
disassemble = print_insn_i960;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_m68k
|
|
|
|
|
case bfd_arch_m68k:
|
|
|
|
|
disassemble = print_insn_m68k;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_m88k
|
1993-07-15 18:46:50 +02:00
|
|
|
|
case bfd_arch_m88k:
|
|
|
|
|
disassemble = print_insn_m88k;
|
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_mips
|
1993-02-22 16:31:30 +01:00
|
|
|
|
case bfd_arch_mips:
|
1993-03-19 01:12:50 +01:00
|
|
|
|
if (abfd->xvec->byteorder_big_p)
|
|
|
|
|
disassemble = print_insn_big_mips;
|
|
|
|
|
else
|
|
|
|
|
disassemble = print_insn_little_mips;
|
1993-02-22 16:31:30 +01:00
|
|
|
|
break;
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#endif
|
1994-03-29 23:34:44 +02:00
|
|
|
|
#ifdef ARCH_powerpc
|
|
|
|
|
case bfd_arch_powerpc:
|
|
|
|
|
if (abfd->xvec->byteorder_big_p)
|
|
|
|
|
disassemble = print_insn_big_powerpc;
|
|
|
|
|
else
|
|
|
|
|
disassemble = print_insn_little_powerpc;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
1994-01-22 06:11:40 +01:00
|
|
|
|
#ifdef ARCH_rs6000
|
1994-01-22 01:19:02 +01:00
|
|
|
|
case bfd_arch_rs6000:
|
|
|
|
|
disassemble = print_insn_rs6000;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
1993-08-31 20:15:50 +02:00
|
|
|
|
#ifdef ARCH_sh
|
|
|
|
|
case bfd_arch_sh:
|
|
|
|
|
disassemble = print_insn_sh;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_sparc
|
|
|
|
|
case bfd_arch_sparc:
|
|
|
|
|
disassemble = print_insn_sparc;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ARCH_z8k
|
|
|
|
|
case bfd_arch_z8k:
|
|
|
|
|
if (bfd_get_mach(abfd) == bfd_mach_z8001)
|
|
|
|
|
disassemble = print_insn_z8001;
|
|
|
|
|
else
|
|
|
|
|
disassemble = print_insn_z8002;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
1992-06-10 16:57:25 +02:00
|
|
|
|
default:
|
|
|
|
|
fprintf (stderr, "%s: Can't disassemble for architecture %s\n",
|
|
|
|
|
program_name,
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_printable_arch_mach (a, 0));
|
1992-06-10 16:57:25 +02:00
|
|
|
|
exit (1);
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
for (section = abfd->sections;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
section != (asection *) NULL;
|
|
|
|
|
section = section->next)
|
1992-02-06 21:15:19 +01:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_byte *data = NULL;
|
|
|
|
|
bfd_size_type datasize = 0;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (!(section->flags & SEC_LOAD))
|
|
|
|
|
continue;
|
|
|
|
|
if (only != (char *) NULL && strcmp (only, section->name) != 0)
|
|
|
|
|
continue;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
printf ("Disassembly of section %s:\n", section->name);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
datasize = bfd_get_section_size_before_reloc (section);
|
|
|
|
|
if (datasize == 0)
|
|
|
|
|
continue;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
data = (bfd_byte *) xmalloc ((size_t) datasize);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_get_section_contents (abfd, section, data, 0, datasize);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
aux.sec = section;
|
|
|
|
|
disasm_info.buffer = data;
|
|
|
|
|
disasm_info.buffer_vma = section->vma;
|
|
|
|
|
disasm_info.buffer_length = datasize;
|
|
|
|
|
i = 0;
|
|
|
|
|
while (i < disasm_info.buffer_length)
|
|
|
|
|
{
|
|
|
|
|
if (data[i] == 0 && data[i + 1] == 0 && data[i + 2] == 0 &&
|
|
|
|
|
data[i + 3] == 0)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (done_dot == false)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
printf ("...\n");
|
|
|
|
|
done_dot = true;
|
1992-02-06 21:15:19 +01:00
|
|
|
|
}
|
1994-02-03 01:25:30 +01:00
|
|
|
|
i += 4;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
done_dot = false;
|
|
|
|
|
if (with_line_numbers)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
CONST char *filename;
|
|
|
|
|
CONST char *functionname;
|
|
|
|
|
unsigned int line;
|
|
|
|
|
|
|
|
|
|
if (bfd_find_nearest_line (abfd,
|
|
|
|
|
section,
|
|
|
|
|
syms,
|
|
|
|
|
section->vma + i,
|
|
|
|
|
&filename,
|
|
|
|
|
&functionname,
|
|
|
|
|
&line))
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (functionname && *functionname
|
|
|
|
|
&& strcmp(functionname, prev_function))
|
|
|
|
|
{
|
|
|
|
|
printf ("%s():\n", functionname);
|
|
|
|
|
prev_function = functionname;
|
|
|
|
|
}
|
|
|
|
|
if (!filename)
|
|
|
|
|
filename = "???";
|
|
|
|
|
if (line && line != prevline)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
printf ("%s:%u\n", filename, line);
|
|
|
|
|
prevline = line;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
1994-02-03 01:25:30 +01:00
|
|
|
|
}
|
|
|
|
|
objdump_print_address (section->vma + i, &disasm_info);
|
|
|
|
|
putchar (' ');
|
1992-02-06 21:15:19 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
if (disassemble) /* New style */
|
|
|
|
|
{
|
|
|
|
|
int bytes = (*disassemble)(section->vma + i,
|
|
|
|
|
&disasm_info);
|
|
|
|
|
if (bytes < 0)
|
|
|
|
|
break;
|
|
|
|
|
i += bytes;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
1994-02-03 01:25:30 +01:00
|
|
|
|
else /* Old style */
|
|
|
|
|
i += print (section->vma + i,
|
|
|
|
|
data + i,
|
|
|
|
|
stdout);
|
|
|
|
|
putchar ('\n');
|
1991-06-07 03:33:38 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
1994-02-03 01:25:30 +01:00
|
|
|
|
free (data);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
1992-06-11 10:23:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Define a table of stab values and print-strings. We wish the initializer
|
|
|
|
|
could be a direct-mapped table, but instead we build one the first
|
|
|
|
|
time we need it. */
|
|
|
|
|
|
1994-01-17 23:03:42 +01:00
|
|
|
|
char **stab_name;
|
1992-06-11 10:23:11 +02:00
|
|
|
|
|
|
|
|
|
struct stab_print {
|
|
|
|
|
int value;
|
1994-01-17 23:03:42 +01:00
|
|
|
|
char *string;
|
1992-06-11 10:23:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct stab_print stab_print[] = {
|
|
|
|
|
#define __define_stab(NAME, CODE, STRING) {CODE, STRING},
|
|
|
|
|
#include "aout/stab.def"
|
|
|
|
|
#undef __define_stab
|
1994-01-13 23:34:51 +01:00
|
|
|
|
{0, ""}
|
1992-06-11 10:23:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
void dump_section_stabs PARAMS ((bfd *abfd, char *stabsect_name,
|
|
|
|
|
char *strsect_name));
|
1992-08-19 05:25:51 +02:00
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
/* Dump the stabs sections from an object file that has a section that
|
1992-06-11 10:23:11 +02:00
|
|
|
|
uses Sun stabs encoding. It has to use some hooks into BFD because
|
|
|
|
|
string table sections are not normally visible to BFD callers. */
|
|
|
|
|
|
|
|
|
|
void
|
1993-09-23 07:21:21 +02:00
|
|
|
|
dump_stabs (abfd)
|
1992-06-11 10:23:11 +02:00
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
1994-01-17 23:03:42 +01:00
|
|
|
|
/* Allocate and initialize stab name array if first time. */
|
|
|
|
|
if (stab_name == NULL)
|
1992-06-11 10:23:11 +02:00
|
|
|
|
{
|
1994-02-03 23:21:28 +01:00
|
|
|
|
int i;
|
|
|
|
|
|
1994-01-17 23:03:42 +01:00
|
|
|
|
stab_name = (char **) xmalloc (256 * sizeof(char *));
|
|
|
|
|
/* Clear the array. */
|
1992-06-11 10:23:11 +02:00
|
|
|
|
for (i = 0; i < 256; i++)
|
1994-01-17 23:03:42 +01:00
|
|
|
|
stab_name[i] = NULL;
|
|
|
|
|
/* Fill in the defined stabs. */
|
|
|
|
|
for (i = 0; *stab_print[i].string; i++)
|
|
|
|
|
stab_name[stab_print[i].value] = stab_print[i].string;
|
1992-06-11 10:23:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
dump_section_stabs (abfd, ".stab", ".stabstr");
|
|
|
|
|
dump_section_stabs (abfd, ".stab.excl", ".stab.exclstr");
|
|
|
|
|
dump_section_stabs (abfd, ".stab.index", ".stab.indexstr");
|
|
|
|
|
dump_section_stabs (abfd, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
|
1992-08-19 05:25:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
static struct internal_nlist *stabs;
|
|
|
|
|
static bfd_size_type stab_size;
|
|
|
|
|
|
|
|
|
|
static char *strtab;
|
|
|
|
|
static bfd_size_type stabstr_size;
|
|
|
|
|
|
|
|
|
|
/* Read ABFD's stabs section STABSECT_NAME into `stabs'
|
|
|
|
|
and string table section STRSECT_NAME into `strtab'.
|
|
|
|
|
If the section exists and was read, allocate the space and return true.
|
|
|
|
|
Otherwise return false. */
|
|
|
|
|
|
|
|
|
|
boolean
|
|
|
|
|
read_section_stabs (abfd, stabsect_name, strsect_name)
|
1992-08-19 05:25:51 +02:00
|
|
|
|
bfd *abfd;
|
1994-02-03 23:21:28 +01:00
|
|
|
|
char *stabsect_name;
|
|
|
|
|
char *strsect_name;
|
1992-08-19 05:25:51 +02:00
|
|
|
|
{
|
1993-06-26 02:47:23 +02:00
|
|
|
|
Elf_Internal_Shdr *stab_hdr, *stabstr_hdr;
|
1993-09-23 07:21:21 +02:00
|
|
|
|
asection *stabsect, *stabstrsect;
|
|
|
|
|
int is_elf = (0 == strncmp ("elf", abfd->xvec->name, 3));
|
|
|
|
|
|
|
|
|
|
if (is_elf)
|
1994-02-03 23:21:28 +01:00
|
|
|
|
stab_hdr = bfd_elf_find_section (abfd, stabsect_name);
|
1993-09-23 07:21:21 +02:00
|
|
|
|
else
|
1994-02-03 23:21:28 +01:00
|
|
|
|
stabsect = bfd_get_section_by_name (abfd, stabsect_name);
|
1992-08-19 05:25:51 +02:00
|
|
|
|
|
1993-09-23 07:21:21 +02:00
|
|
|
|
if (is_elf ? (0 == stab_hdr) : (0 == stabsect))
|
1992-06-11 10:23:11 +02:00
|
|
|
|
{
|
1994-02-03 23:21:28 +01:00
|
|
|
|
printf ("No %s section present\n\n", stabsect_name);
|
|
|
|
|
return false;
|
1992-06-11 10:23:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
1993-09-23 07:21:21 +02:00
|
|
|
|
if (is_elf)
|
1994-02-03 23:21:28 +01:00
|
|
|
|
stabstr_hdr = bfd_elf_find_section (abfd, strsect_name);
|
1993-09-23 07:21:21 +02:00
|
|
|
|
else
|
1994-02-03 23:21:28 +01:00
|
|
|
|
stabstrsect = bfd_get_section_by_name (abfd, strsect_name);
|
1993-09-23 07:21:21 +02:00
|
|
|
|
|
|
|
|
|
if (is_elf ? (0 == stabstr_hdr) : (0 == stabstrsect))
|
1992-06-11 10:23:11 +02:00
|
|
|
|
{
|
1994-01-22 06:11:40 +01:00
|
|
|
|
fprintf (stderr, "%s: %s has no %s section\n", program_name,
|
1994-02-03 23:21:28 +01:00
|
|
|
|
bfd_get_filename (abfd), strsect_name);
|
|
|
|
|
return false;
|
1992-06-11 10:23:11 +02:00
|
|
|
|
}
|
1993-09-23 07:21:21 +02:00
|
|
|
|
|
|
|
|
|
stab_size = (is_elf ? stab_hdr ->sh_size : bfd_section_size (abfd, stabsect));
|
|
|
|
|
stabstr_size = (is_elf ? stabstr_hdr->sh_size : bfd_section_size (abfd, stabstrsect));
|
1992-06-11 10:23:11 +02:00
|
|
|
|
|
1993-09-23 07:21:21 +02:00
|
|
|
|
stabs = (struct internal_nlist *) xmalloc (stab_size);
|
|
|
|
|
strtab = (char *) xmalloc (stabstr_size);
|
1992-06-11 10:23:11 +02:00
|
|
|
|
|
1993-09-23 07:21:21 +02:00
|
|
|
|
if (is_elf)
|
1992-06-11 10:23:11 +02:00
|
|
|
|
{
|
1993-09-23 07:21:21 +02:00
|
|
|
|
if (bfd_seek (abfd, stab_hdr->sh_offset, SEEK_SET) < 0 ||
|
|
|
|
|
stab_size != bfd_read ((PTR) stabs, stab_size, 1, abfd))
|
|
|
|
|
{
|
1994-01-22 06:11:40 +01:00
|
|
|
|
fprintf (stderr, "%s: Reading %s section of %s failed\n",
|
1994-02-03 23:21:28 +01:00
|
|
|
|
program_name, stabsect_name,
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_get_filename (abfd));
|
1994-02-03 23:21:28 +01:00
|
|
|
|
free (stabs);
|
|
|
|
|
free (strtab);
|
|
|
|
|
return false;
|
1993-09-23 07:21:21 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bfd_get_section_contents (abfd, stabsect, (PTR) stabs, 0, stab_size);
|
1992-06-11 10:23:11 +02:00
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-09-23 07:21:21 +02:00
|
|
|
|
if (is_elf)
|
1992-06-11 10:23:11 +02:00
|
|
|
|
{
|
1993-09-23 07:21:21 +02:00
|
|
|
|
if (bfd_seek (abfd, stabstr_hdr->sh_offset, SEEK_SET) < 0 ||
|
|
|
|
|
stabstr_size != bfd_read ((PTR) strtab, stabstr_size, 1, abfd))
|
|
|
|
|
{
|
1994-01-22 06:11:40 +01:00
|
|
|
|
fprintf (stderr, "%s: Reading %s section of %s failed\n",
|
1994-02-03 23:21:28 +01:00
|
|
|
|
program_name, strsect_name,
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_get_filename (abfd));
|
1994-02-03 23:21:28 +01:00
|
|
|
|
free (stabs);
|
|
|
|
|
free (strtab);
|
|
|
|
|
return false;
|
1993-09-23 07:21:21 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bfd_get_section_contents (abfd, stabstrsect, (PTR) strtab, 0, stabstr_size);
|
1992-06-11 10:23:11 +02:00
|
|
|
|
}
|
1994-02-03 23:21:28 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
1992-06-11 10:23:11 +02:00
|
|
|
|
|
|
|
|
|
#define SWAP_SYMBOL(symp, abfd) \
|
1994-02-03 23:21:28 +01:00
|
|
|
|
{ \
|
1992-06-11 10:23:11 +02:00
|
|
|
|
(symp)->n_strx = bfd_h_get_32(abfd, \
|
1994-02-03 23:21:28 +01:00
|
|
|
|
(unsigned char *)&(symp)->n_strx); \
|
1992-06-11 10:23:11 +02:00
|
|
|
|
(symp)->n_desc = bfd_h_get_16 (abfd, \
|
1994-02-03 23:21:28 +01:00
|
|
|
|
(unsigned char *)&(symp)->n_desc); \
|
1992-06-11 10:23:11 +02:00
|
|
|
|
(symp)->n_value = bfd_h_get_32 (abfd, \
|
1994-02-03 23:21:28 +01:00
|
|
|
|
(unsigned char *)&(symp)->n_value); \
|
|
|
|
|
}
|
1992-06-11 10:23:11 +02:00
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
/* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
|
|
|
|
|
using string table section STRSECT_NAME (in `strtab'). */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
print_section_stabs (abfd, stabsect_name, strsect_name)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
char *stabsect_name;
|
|
|
|
|
char *strsect_name;
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
unsigned file_string_table_offset = 0, next_file_string_table_offset = 0;
|
|
|
|
|
struct internal_nlist *stabp = stabs,
|
|
|
|
|
*stabs_end = (struct internal_nlist *) (stab_size + (char *) stabs);
|
1992-06-11 10:23:11 +02:00
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
printf ("Contents of %s section:\n\n", stabsect_name);
|
|
|
|
|
printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
|
1992-08-19 05:25:51 +02:00
|
|
|
|
|
|
|
|
|
/* Loop through all symbols and print them.
|
|
|
|
|
|
|
|
|
|
We start the index at -1 because there is a dummy symbol on
|
1994-02-03 23:21:28 +01:00
|
|
|
|
the front of stabs-in-{coff,elf} sections that supplies sizes. */
|
1992-08-19 05:25:51 +02:00
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
for (i = -1; stabp < stabs_end; stabp++, i++)
|
1992-06-11 10:23:11 +02:00
|
|
|
|
{
|
1994-02-03 23:21:28 +01:00
|
|
|
|
SWAP_SYMBOL (stabp, abfd);
|
1994-01-17 23:03:42 +01:00
|
|
|
|
printf ("\n%-6d ", i);
|
1994-02-03 23:21:28 +01:00
|
|
|
|
/* Either print the stab name, or, if unnamed, print its number
|
1994-01-17 23:03:42 +01:00
|
|
|
|
again (makes consistent formatting for tools like awk). */
|
1994-02-03 23:21:28 +01:00
|
|
|
|
if (stab_name[stabp->n_type])
|
|
|
|
|
printf ("%-6s", stab_name[stabp->n_type]);
|
1994-01-17 23:03:42 +01:00
|
|
|
|
else
|
|
|
|
|
printf ("%-6d", i);
|
1994-02-03 23:21:28 +01:00
|
|
|
|
printf (" %-6d %-6d ", stabp->n_other, stabp->n_desc);
|
|
|
|
|
printf_vma (stabp->n_value);
|
|
|
|
|
printf (" %-6lu", stabp->n_strx);
|
1992-08-19 05:25:51 +02:00
|
|
|
|
|
|
|
|
|
/* Symbols with type == 0 (N_UNDF) specify the length of the
|
|
|
|
|
string table associated with this file. We use that info
|
|
|
|
|
to know how to relocate the *next* file's string table indices. */
|
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
if (stabp->n_type == N_UNDF)
|
1992-08-19 05:25:51 +02:00
|
|
|
|
{
|
|
|
|
|
file_string_table_offset = next_file_string_table_offset;
|
1994-02-03 23:21:28 +01:00
|
|
|
|
next_file_string_table_offset += stabp->n_value;
|
1992-08-19 05:25:51 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
1993-10-29 19:15:01 +01:00
|
|
|
|
{
|
1994-02-03 23:21:28 +01:00
|
|
|
|
/* Using the (possibly updated) string table offset, print the
|
1993-10-29 19:15:01 +01:00
|
|
|
|
string (if any) associated with this symbol. */
|
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
if ((stabp->n_strx + file_string_table_offset) < stabstr_size)
|
|
|
|
|
printf (" %s", &strtab[stabp->n_strx + file_string_table_offset]);
|
1993-10-29 19:15:01 +01:00
|
|
|
|
else
|
|
|
|
|
printf (" *");
|
|
|
|
|
}
|
1992-06-11 10:23:11 +02:00
|
|
|
|
}
|
|
|
|
|
printf ("\n\n");
|
|
|
|
|
}
|
1992-08-19 05:25:51 +02:00
|
|
|
|
|
1994-02-03 23:21:28 +01:00
|
|
|
|
void
|
|
|
|
|
dump_section_stabs (abfd, stabsect_name, strsect_name)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
char *stabsect_name;
|
|
|
|
|
char *strsect_name;
|
|
|
|
|
{
|
|
|
|
|
if (read_section_stabs (abfd, stabsect_name, strsect_name))
|
|
|
|
|
{
|
|
|
|
|
print_section_stabs (abfd, stabsect_name, strsect_name);
|
|
|
|
|
free (stabs);
|
|
|
|
|
free (strtab);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-22 06:11:40 +01:00
|
|
|
|
static void
|
1994-01-26 23:11:18 +01:00
|
|
|
|
dump_bfd_header (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
char *comma = "";
|
|
|
|
|
|
|
|
|
|
printf ("architecture: %s, ",
|
|
|
|
|
bfd_printable_arch_mach (bfd_get_arch (abfd),
|
|
|
|
|
bfd_get_mach (abfd)));
|
|
|
|
|
printf ("flags 0x%08x:\n", abfd->flags);
|
|
|
|
|
|
|
|
|
|
#define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
|
|
|
|
|
PF (HAS_RELOC, "HAS_RELOC");
|
|
|
|
|
PF (EXEC_P, "EXEC_P");
|
|
|
|
|
PF (HAS_LINENO, "HAS_LINENO");
|
|
|
|
|
PF (HAS_DEBUG, "HAS_DEBUG");
|
|
|
|
|
PF (HAS_SYMS, "HAS_SYMS");
|
|
|
|
|
PF (HAS_LOCALS, "HAS_LOCALS");
|
|
|
|
|
PF (DYNAMIC, "DYNAMIC");
|
|
|
|
|
PF (WP_TEXT, "WP_TEXT");
|
|
|
|
|
PF (D_PAGED, "D_PAGED");
|
|
|
|
|
PF (BFD_IS_RELAXABLE, "BFD_IS_RELAXABLE");
|
|
|
|
|
printf ("\nstart address 0x");
|
|
|
|
|
printf_vma (abfd->start_address);
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-13 23:34:51 +01:00
|
|
|
|
static void
|
1991-03-21 22:29:06 +01:00
|
|
|
|
display_bfd (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
1994-01-25 00:38:03 +01:00
|
|
|
|
char **matching;
|
|
|
|
|
|
|
|
|
|
if (!bfd_check_format_matches (abfd, bfd_object, &matching))
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_nonfatal (bfd_get_filename (abfd));
|
1994-03-29 23:34:44 +02:00
|
|
|
|
if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
|
1994-01-25 00:38:03 +01:00
|
|
|
|
{
|
|
|
|
|
list_matching_formats (matching);
|
|
|
|
|
free (matching);
|
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
|
1994-02-03 01:25:30 +01:00
|
|
|
|
printf ("\n%s: file format %s\n", bfd_get_filename (abfd),
|
|
|
|
|
abfd->xvec->name);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (dump_ar_hdrs)
|
|
|
|
|
print_arelt_descr (stdout, abfd, true);
|
|
|
|
|
if (dump_file_header)
|
1994-01-26 23:11:18 +01:00
|
|
|
|
dump_bfd_header (abfd);
|
|
|
|
|
putchar ('\n');
|
1991-03-21 22:29:06 +01:00
|
|
|
|
if (dump_section_headers)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
dump_headers (abfd);
|
|
|
|
|
if (dump_symtab || dump_reloc_info || disassemble)
|
|
|
|
|
{
|
|
|
|
|
syms = slurp_symtab (abfd);
|
|
|
|
|
}
|
|
|
|
|
if (dump_symtab)
|
|
|
|
|
dump_symbols (abfd);
|
1992-06-11 10:23:11 +02:00
|
|
|
|
if (dump_stab_section_info)
|
1993-09-23 07:21:21 +02:00
|
|
|
|
dump_stabs (abfd);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (dump_reloc_info)
|
|
|
|
|
dump_relocs (abfd);
|
|
|
|
|
if (dump_section_contents)
|
|
|
|
|
dump_data (abfd);
|
1993-06-18 23:37:21 +02:00
|
|
|
|
/* Note that disassemble_data re-orders the syms table, but that is
|
|
|
|
|
safe - as long as it is done last! */
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (disassemble)
|
|
|
|
|
disassemble_data (abfd);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1993-02-22 16:31:30 +01:00
|
|
|
|
static void
|
1991-03-21 22:29:06 +01:00
|
|
|
|
display_file (filename, target)
|
|
|
|
|
char *filename;
|
|
|
|
|
char *target;
|
|
|
|
|
{
|
|
|
|
|
bfd *file, *arfile = (bfd *) NULL;
|
|
|
|
|
|
|
|
|
|
file = bfd_openr (filename, target);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (file == NULL)
|
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_nonfatal (filename);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (bfd_check_format (file, bfd_archive) == true)
|
|
|
|
|
{
|
1994-03-29 23:34:44 +02:00
|
|
|
|
bfd *last_arfile = NULL;
|
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf ("In archive %s:\n", bfd_get_filename (file));
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
1994-03-29 23:34:44 +02:00
|
|
|
|
bfd_set_error (bfd_error_no_error);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
|
|
|
|
|
arfile = bfd_openr_next_archived_file (file, arfile);
|
|
|
|
|
if (arfile == NULL)
|
|
|
|
|
{
|
1994-03-29 23:34:44 +02:00
|
|
|
|
if (bfd_get_error () != bfd_error_no_more_archived_files)
|
1993-04-29 08:45:39 +02:00
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_nonfatal (bfd_get_filename (file));
|
1993-04-29 08:45:39 +02:00
|
|
|
|
}
|
1994-03-29 23:34:44 +02:00
|
|
|
|
break;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
display_bfd (arfile);
|
1994-03-29 23:34:44 +02:00
|
|
|
|
|
|
|
|
|
if (last_arfile != NULL)
|
|
|
|
|
bfd_close (last_arfile);
|
|
|
|
|
last_arfile = arfile;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
1994-03-29 23:34:44 +02:00
|
|
|
|
|
|
|
|
|
if (last_arfile != NULL)
|
|
|
|
|
bfd_close (last_arfile);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
1992-06-10 16:57:25 +02:00
|
|
|
|
display_bfd (file);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
bfd_close (file);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Actually display the various requested regions */
|
|
|
|
|
|
1993-02-22 16:31:30 +01:00
|
|
|
|
static void
|
1991-03-21 22:29:06 +01:00
|
|
|
|
dump_data (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
asection *section;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
bfd_byte *data = 0;
|
1991-05-21 01:15:15 +02:00
|
|
|
|
bfd_size_type datasize = 0;
|
|
|
|
|
bfd_size_type i;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
for (section = abfd->sections; section != NULL; section =
|
1992-06-10 16:57:25 +02:00
|
|
|
|
section->next)
|
|
|
|
|
{
|
|
|
|
|
int onaline = 16;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (only == (char *) NULL ||
|
|
|
|
|
strcmp (only, section->name) == 0)
|
1992-05-02 00:45:45 +02:00
|
|
|
|
{
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (section->flags & SEC_HAS_CONTENTS)
|
|
|
|
|
{
|
|
|
|
|
printf ("Contents of section %s:\n", section->name);
|
|
|
|
|
|
1993-09-23 07:21:21 +02:00
|
|
|
|
if (bfd_section_size (abfd, section) == 0)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
continue;
|
1994-01-13 23:34:51 +01:00
|
|
|
|
data = (bfd_byte *) xmalloc ((size_t) bfd_section_size (abfd, section));
|
1993-09-23 07:21:21 +02:00
|
|
|
|
datasize = bfd_section_size (abfd, section);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
|
|
|
1993-09-23 07:21:21 +02:00
|
|
|
|
bfd_get_section_contents (abfd, section, (PTR) data, 0, bfd_section_size (abfd, section));
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-09-23 07:21:21 +02:00
|
|
|
|
for (i = 0; i < bfd_section_size (abfd, section); i += onaline)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
|
|
|
|
bfd_size_type j;
|
|
|
|
|
|
|
|
|
|
printf (" %04lx ", (unsigned long int) (i + section->vma));
|
|
|
|
|
for (j = i; j < i + onaline; j++)
|
|
|
|
|
{
|
1993-09-23 07:21:21 +02:00
|
|
|
|
if (j < bfd_section_size (abfd, section))
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf ("%02x", (unsigned) (data[j]));
|
|
|
|
|
else
|
|
|
|
|
printf (" ");
|
|
|
|
|
if ((j & 3) == 3)
|
|
|
|
|
printf (" ");
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf (" ");
|
|
|
|
|
for (j = i; j < i + onaline; j++)
|
|
|
|
|
{
|
1993-09-23 07:21:21 +02:00
|
|
|
|
if (j >= bfd_section_size (abfd, section))
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf (" ");
|
|
|
|
|
else
|
|
|
|
|
printf ("%c", isprint (data[j]) ? data[j] : '.');
|
|
|
|
|
}
|
|
|
|
|
putchar ('\n');
|
|
|
|
|
}
|
1993-02-22 16:31:30 +01:00
|
|
|
|
free (data);
|
1992-05-02 00:45:45 +02:00
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Should perhaps share code and display with nm? */
|
1993-02-22 16:31:30 +01:00
|
|
|
|
static void
|
1991-03-21 22:29:06 +01:00
|
|
|
|
dump_symbols (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
unsigned int count;
|
|
|
|
|
asymbol **current = syms;
|
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf ("SYMBOL TABLE:\n");
|
1991-10-05 05:50:54 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
for (count = 0; count < symcount; count++)
|
|
|
|
|
{
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-02-22 16:31:30 +01:00
|
|
|
|
if (*current)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1993-02-22 16:31:30 +01:00
|
|
|
|
bfd *cur_bfd = bfd_asymbol_bfd(*current);
|
|
|
|
|
if (cur_bfd)
|
|
|
|
|
{
|
|
|
|
|
bfd_print_symbol (cur_bfd,
|
|
|
|
|
stdout,
|
|
|
|
|
*current, bfd_print_symbol_all);
|
|
|
|
|
printf ("\n");
|
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
current++;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf ("\n");
|
|
|
|
|
printf ("\n");
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1993-02-22 16:31:30 +01:00
|
|
|
|
static void
|
1992-06-10 16:57:25 +02:00
|
|
|
|
dump_relocs (abfd)
|
|
|
|
|
bfd *abfd;
|
1991-03-21 22:29:06 +01:00
|
|
|
|
{
|
|
|
|
|
arelent **relpp;
|
|
|
|
|
unsigned int relcount;
|
|
|
|
|
asection *a;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
|
|
|
|
|
for (a = abfd->sections; a != (asection *) NULL; a = a->next)
|
|
|
|
|
{
|
|
|
|
|
if (a == &bfd_abs_section)
|
|
|
|
|
continue;
|
|
|
|
|
if (a == &bfd_und_section)
|
|
|
|
|
continue;
|
1993-02-22 16:31:30 +01:00
|
|
|
|
if (bfd_is_com_section (a))
|
1992-06-10 16:57:25 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
1993-08-31 20:15:50 +02:00
|
|
|
|
if (only)
|
|
|
|
|
{
|
|
|
|
|
if (strcmp (only, a->name))
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if ((a->flags & SEC_RELOC) == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf ("RELOCATION RECORDS FOR [%s]:", a->name);
|
|
|
|
|
|
|
|
|
|
if (bfd_get_reloc_upper_bound (abfd, a) == 0)
|
|
|
|
|
{
|
|
|
|
|
printf (" (none)\n\n");
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
1992-01-24 23:49:24 +01:00
|
|
|
|
arelent **p;
|
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
relpp = (arelent **) xmalloc (bfd_get_reloc_upper_bound (abfd, a));
|
1993-06-18 23:37:21 +02:00
|
|
|
|
/* Note that this must be done *before* we sort the syms table. */
|
1992-06-10 16:57:25 +02:00
|
|
|
|
relcount = bfd_canonicalize_reloc (abfd, a, relpp, syms);
|
|
|
|
|
if (relcount == 0)
|
|
|
|
|
{
|
|
|
|
|
printf (" (none)\n\n");
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
printf ("\n");
|
1993-08-31 20:15:50 +02:00
|
|
|
|
/* Get column headers lined up reasonably. */
|
|
|
|
|
{
|
|
|
|
|
static int width;
|
|
|
|
|
if (width == 0)
|
|
|
|
|
{
|
|
|
|
|
char buf[30];
|
|
|
|
|
sprintf_vma (buf, (bfd_vma) -1);
|
|
|
|
|
width = strlen (buf) - 7;
|
|
|
|
|
}
|
|
|
|
|
printf ("OFFSET %*s TYPE %*s VALUE \n", width, "", 12, "");
|
|
|
|
|
}
|
1992-01-24 23:49:24 +01:00
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
for (p = relpp; relcount && *p != (arelent *) NULL; p++,
|
|
|
|
|
relcount--)
|
|
|
|
|
{
|
1992-01-24 23:49:24 +01:00
|
|
|
|
arelent *q = *p;
|
|
|
|
|
CONST char *sym_name;
|
1994-01-13 23:34:51 +01:00
|
|
|
|
CONST char *section_name;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
|
|
|
|
|
if (q->sym_ptr_ptr && *q->sym_ptr_ptr)
|
|
|
|
|
{
|
|
|
|
|
sym_name = (*(q->sym_ptr_ptr))->name;
|
1994-01-13 23:34:51 +01:00
|
|
|
|
section_name = (*(q->sym_ptr_ptr))->section->name;
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
1994-01-13 23:34:51 +01:00
|
|
|
|
sym_name = NULL;
|
|
|
|
|
section_name = NULL;
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (sym_name)
|
|
|
|
|
{
|
|
|
|
|
printf_vma (q->address);
|
1993-08-31 20:15:50 +02:00
|
|
|
|
printf (" %-16s %s",
|
1992-06-10 16:57:25 +02:00
|
|
|
|
q->howto->name,
|
|
|
|
|
sym_name);
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
1994-01-13 23:34:51 +01:00
|
|
|
|
if (section_name == (CONST char *) NULL)
|
|
|
|
|
section_name = "*unknown*";
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf_vma (q->address);
|
1993-08-31 20:15:50 +02:00
|
|
|
|
printf (" %-16s [%s]",
|
1992-06-10 16:57:25 +02:00
|
|
|
|
q->howto->name,
|
|
|
|
|
section_name);
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
if (q->addend)
|
|
|
|
|
{
|
|
|
|
|
printf ("+0x");
|
|
|
|
|
printf_vma (q->addend);
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf ("\n");
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf ("\n\n");
|
|
|
|
|
free (relpp);
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-01-24 23:49:24 +01:00
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
|
|
|
|
|
/* A file to open each BFD on. It will never actually be written to. */
|
1992-06-10 16:57:25 +02:00
|
|
|
|
#ifdef unix
|
|
|
|
|
#define _DUMMY_NAME_ "/dev/null"
|
|
|
|
|
#else
|
|
|
|
|
#define _DUMMY_NAME_ "##dummy"
|
|
|
|
|
#endif
|
1994-01-26 23:11:18 +01:00
|
|
|
|
|
|
|
|
|
/* The length of the longest architecture name + 1. */
|
|
|
|
|
#define LONGEST_ARCH sizeof("rs6000:6000")
|
|
|
|
|
|
|
|
|
|
/* List the targets that BFD is configured to support, each followed
|
|
|
|
|
by its endianness and the architectures it supports. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
display_target_list ()
|
|
|
|
|
{
|
|
|
|
|
extern bfd_target *bfd_target_vector[];
|
|
|
|
|
int t;
|
|
|
|
|
|
|
|
|
|
for (t = 0; bfd_target_vector[t]; t++)
|
|
|
|
|
{
|
|
|
|
|
int a;
|
|
|
|
|
bfd_target *p = bfd_target_vector[t];
|
|
|
|
|
bfd *abfd = bfd_openw (_DUMMY_NAME_, p->name);
|
|
|
|
|
|
1994-02-01 03:52:22 +01:00
|
|
|
|
/* It *is* possible that bfd_openw might fail; avoid the
|
|
|
|
|
tragic consequences that would otherwise ensue. */
|
|
|
|
|
if (abfd == NULL)
|
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_nonfatal (_DUMMY_NAME_);
|
1994-02-01 03:52:22 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
bfd_set_format (abfd, bfd_object);
|
|
|
|
|
printf ("%s\n (header %s, data %s)\n", p->name,
|
|
|
|
|
p->header_byteorder_big_p ? "big endian" : "little endian",
|
|
|
|
|
p->byteorder_big_p ? "big endian" : "little endian");
|
|
|
|
|
for (a = (int) bfd_arch_obscure + 1; a < (int) bfd_arch_last; a++)
|
|
|
|
|
if (bfd_set_arch_mach (abfd, (enum bfd_architecture) a, 0))
|
|
|
|
|
printf (" %s\n",
|
|
|
|
|
bfd_printable_arch_mach ((enum bfd_architecture) a, 0));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print a table showing which architectures are supported for entries
|
|
|
|
|
FIRST through LAST-1 of bfd_target_vector (targets across,
|
|
|
|
|
architectures down). */
|
|
|
|
|
|
1991-04-23 18:02:09 +02:00
|
|
|
|
static void
|
1994-01-25 14:27:56 +01:00
|
|
|
|
display_info_table (first, last)
|
|
|
|
|
int first;
|
|
|
|
|
int last;
|
1991-04-23 18:02:09 +02:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
int t, a;
|
1994-01-25 14:27:56 +01:00
|
|
|
|
extern bfd_target *bfd_target_vector[];
|
1991-04-23 18:02:09 +02:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
/* Print heading of target names. */
|
|
|
|
|
printf ("\n%*s", LONGEST_ARCH, " ");
|
|
|
|
|
for (t = first; t++ < last && bfd_target_vector[t];)
|
|
|
|
|
printf ("%s ", bfd_target_vector[t]->name);
|
|
|
|
|
putchar ('\n');
|
1991-04-23 18:02:09 +02:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
for (a = (int) bfd_arch_obscure + 1; a < (int) bfd_arch_last; a++)
|
|
|
|
|
if (strcmp (bfd_printable_arch_mach (a, 0), "UNKNOWN!") != 0)
|
1991-10-05 05:50:54 +01:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
printf ("%*s ", LONGEST_ARCH - 1, bfd_printable_arch_mach (a, 0));
|
|
|
|
|
for (t = first; t++ < last && bfd_target_vector[t];)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
bfd_target *p = bfd_target_vector[t];
|
1992-06-10 16:57:25 +02:00
|
|
|
|
bfd *abfd = bfd_openw (_DUMMY_NAME_, p->name);
|
|
|
|
|
|
1994-02-01 03:52:22 +01:00
|
|
|
|
/* Just in case the open failed somehow. */
|
|
|
|
|
if (abfd == NULL)
|
|
|
|
|
{
|
1994-02-03 01:25:30 +01:00
|
|
|
|
bfd_nonfatal (_DUMMY_NAME_);
|
1994-02-01 03:52:22 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
bfd_set_format (abfd, bfd_object);
|
|
|
|
|
if (bfd_set_arch_mach (abfd, a, 0))
|
1992-06-10 16:57:25 +02:00
|
|
|
|
printf ("%s ", p->name);
|
|
|
|
|
else
|
1991-10-05 05:50:54 +01:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
int l = strlen (p->name);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
while (l--)
|
1994-01-26 23:11:18 +01:00
|
|
|
|
putchar ('-');
|
|
|
|
|
putchar (' ');
|
1991-10-05 05:50:54 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
1994-01-26 23:11:18 +01:00
|
|
|
|
putchar ('\n');
|
1991-10-05 05:50:54 +01:00
|
|
|
|
}
|
1991-04-23 18:02:09 +02:00
|
|
|
|
}
|
1992-06-10 16:57:25 +02:00
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
/* Print tables of all the target-architecture combinations that
|
|
|
|
|
BFD has been configured to support. */
|
|
|
|
|
|
1992-06-10 16:57:25 +02:00
|
|
|
|
static void
|
1994-01-26 23:11:18 +01:00
|
|
|
|
display_target_tables ()
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
int t, columns;
|
1994-01-25 14:27:56 +01:00
|
|
|
|
extern bfd_target *bfd_target_vector[];
|
1994-01-26 23:11:18 +01:00
|
|
|
|
char *colum;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
extern char *getenv ();
|
|
|
|
|
|
|
|
|
|
columns = 0;
|
1994-01-26 23:11:18 +01:00
|
|
|
|
colum = getenv ("COLUMNS");
|
|
|
|
|
if (colum != NULL)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
columns = atoi (colum);
|
1994-01-26 23:11:18 +01:00
|
|
|
|
if (columns == 0)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
columns = 80;
|
1994-01-26 23:11:18 +01:00
|
|
|
|
|
|
|
|
|
for (t = 0; bfd_target_vector[t];)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
1994-01-26 23:11:18 +01:00
|
|
|
|
int oldt = t, wid;
|
|
|
|
|
|
|
|
|
|
for (wid = LONGEST_ARCH; bfd_target_vector[t] && wid < columns; t++)
|
|
|
|
|
wid += strlen (bfd_target_vector[t]->name) + 1;
|
|
|
|
|
t--;
|
|
|
|
|
if (oldt == t)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
break;
|
1994-01-26 23:11:18 +01:00
|
|
|
|
display_info_table (oldt, t);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-26 23:11:18 +01:00
|
|
|
|
static void
|
|
|
|
|
display_info ()
|
|
|
|
|
{
|
|
|
|
|
printf ("BFD header file version %s\n", BFD_VERSION);
|
|
|
|
|
display_target_list ();
|
|
|
|
|
display_target_tables ();
|
|
|
|
|
}
|
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
int
|
|
|
|
|
main (argc, argv)
|
|
|
|
|
int argc;
|
|
|
|
|
char **argv;
|
|
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
char *target = default_target;
|
|
|
|
|
boolean seenflag = false;
|
|
|
|
|
|
|
|
|
|
program_name = *argv;
|
1994-03-29 23:34:44 +02:00
|
|
|
|
xmalloc_set_program_name (program_name);
|
|
|
|
|
|
|
|
|
|
bfd_init ();
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-04-29 08:45:39 +02:00
|
|
|
|
while ((c = getopt_long (argc, argv, "ib:m:Vdlfahrtxsj:", long_options,
|
|
|
|
|
(int *) 0))
|
1992-06-10 16:57:25 +02:00
|
|
|
|
!= EOF)
|
|
|
|
|
{
|
|
|
|
|
seenflag = true;
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
1993-07-15 18:46:50 +02:00
|
|
|
|
case 0:
|
|
|
|
|
break; /* we've been given a long option */
|
1992-06-10 16:57:25 +02:00
|
|
|
|
case 'm':
|
|
|
|
|
machine = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'j':
|
|
|
|
|
only = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'l':
|
|
|
|
|
with_line_numbers = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'b':
|
|
|
|
|
target = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'f':
|
|
|
|
|
dump_file_header = true;
|
|
|
|
|
break;
|
|
|
|
|
case 'i':
|
1993-10-29 19:15:01 +01:00
|
|
|
|
formats_info = true;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
break;
|
|
|
|
|
case 'x':
|
|
|
|
|
dump_symtab = 1;
|
|
|
|
|
dump_reloc_info = 1;
|
|
|
|
|
dump_file_header = true;
|
|
|
|
|
dump_ar_hdrs = 1;
|
|
|
|
|
dump_section_headers = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 't':
|
|
|
|
|
dump_symtab = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'd':
|
|
|
|
|
disassemble = true;
|
|
|
|
|
break;
|
|
|
|
|
case 's':
|
|
|
|
|
dump_section_contents = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'r':
|
|
|
|
|
dump_reloc_info = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'a':
|
|
|
|
|
dump_ar_hdrs = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'h':
|
|
|
|
|
dump_section_headers = 1;
|
|
|
|
|
break;
|
1993-07-15 18:46:50 +02:00
|
|
|
|
case 'H':
|
|
|
|
|
usage (stdout, 0);
|
1992-08-19 05:25:51 +02:00
|
|
|
|
case 'V':
|
|
|
|
|
show_version = 1;
|
|
|
|
|
break;
|
1992-06-10 16:57:25 +02:00
|
|
|
|
default:
|
1993-07-15 18:46:50 +02:00
|
|
|
|
usage (stderr, 1);
|
1992-06-10 16:57:25 +02:00
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-08-19 05:25:51 +02:00
|
|
|
|
if (show_version)
|
1993-07-15 18:46:50 +02:00
|
|
|
|
{
|
|
|
|
|
printf ("GNU %s version %s\n", program_name, program_version);
|
|
|
|
|
exit (0);
|
|
|
|
|
}
|
1992-08-19 05:25:51 +02:00
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
if (seenflag == false)
|
1993-07-15 18:46:50 +02:00
|
|
|
|
usage (stderr, 1);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
1993-10-29 19:15:01 +01:00
|
|
|
|
if (formats_info)
|
1992-06-10 16:57:25 +02:00
|
|
|
|
{
|
|
|
|
|
display_info ();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (optind == argc)
|
|
|
|
|
display_file ("a.out", target);
|
|
|
|
|
else
|
|
|
|
|
for (; optind < argc;)
|
|
|
|
|
display_file (argv[optind++], target);
|
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|