objdump disassemby
Alan Modra
amodra@bigpond.net.au
Wed Nov 19 08:20:00 GMT 2003
More information about the Binutils mailing list
Wed Nov 19 08:20:00 GMT 2003
- Previous message (by thread): Magic number in BFD
- Next message (by thread): insight can't read my ELF file (target arm-unknown-elf)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Nick's recent change to objdump.c:disassemble_section broke numerous
tests. At first, I thought the changed symbols were an intentional
improvement, but changed my mind after looking at more than just the
powerpc resuls. I'm fairly sure that changing the symbol lookup so that
insn operands must use a symbol from the section being disassembled was
an accidental change. ;) This restores the previous behaviour.
* objdump.c: Wrap long lines, init vars separately from decl.
(disassemble_section): Reset require_sec after call to
find_symbol_for_address.
I'm also committing some formatting fixes, which I stripped from the
following diff. If anyone wants to see them, they can get them with
cvs diff -r1.83 -r1.84 binutils/objdump.c
Index: binutils/objdump.c
===================================================================
RCS file: /cvs/src/src/binutils/objdump.c,v
retrieving revision 1.83
diff -u -p -r1.83 objdump.c
--- binutils/objdump.c 14 Nov 2003 15:12:42 -0000 1.83
+++ binutils/objdump.c 19 Nov 2003 07:58:49 -0000
@@ -1628,7 +1640,6 @@ disassemble_section (bfd *abfd, asection
bfd_get_section_contents (abfd, section, data, 0, datasize);
paux->sec = section;
- paux->require_sec = TRUE;
pinfo->buffer = data;
pinfo->buffer_vma = section->vma;
pinfo->buffer_length = datasize;
@@ -1661,7 +1672,9 @@ disassemble_section (bfd *abfd, asection
printf (_("Disassembly of section %s:\n"), section->name);
/* Find the nearest symbol forwards from our current position. */
+ paux->require_sec = TRUE;
sym = find_symbol_for_address (section->vma + addr_offset, info, &place);
+ paux->require_sec = FALSE;
/* Disassemble a block of instructions up to the address associated with
the symbol we have just found. Then print the symbol and find the
--
Alan Modra
IBM OzLabs - Linux Technology Centre
- Previous message (by thread): Magic number in BFD
- Next message (by thread): insight can't read my ELF file (target arm-unknown-elf)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list