diff options
author | Nick Clifton <nickc@redhat.com> | 2003-09-03 08:26:52 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-09-03 08:26:52 +0000 |
commit | 155e0d2321b62f7262221e9cd325104959832ec6 (patch) | |
tree | f36f2c1accae8475032753f280eb4e8d6f428b45 | |
parent | 60b04ee881f1a448f92b009ff39ae40ddf723465 (diff) | |
download | gdb-155e0d2321b62f7262221e9cd325104959832ec6.zip gdb-155e0d2321b62f7262221e9cd325104959832ec6.tar.gz gdb-155e0d2321b62f7262221e9cd325104959832ec6.tar.bz2 |
Use bfd_map_over_sections to walk section chain.
Do not dump the contents of an empty section.
67 files changed, 847 insertions, 761 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 9469aa0..d63b02a 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,35 @@ +2003-09-03 Nick Clifton <nickc@redhat.com> + + * objdump.c (struct objdump_disasm_info): Add new fields + 'dynrelbuf', 'dynrelcount' and 'disassemble_fn'. + (process_section_p): New function: Returns TRUE if a section + can be dumped. + (disassemble_section): New function: Contains the body of + disassemble_data(), but just for one section. + (disassemble_data): Use bfd_map_over_sections to walk section + chain. + (find_stabs_section): New function: Find a stabs containing + section and then dump it. + (dump_stabs_section): New function: Use bfd_map_over_sections + to find the section to dump. + (dump_stabs): Use dump_stabs_section. + (dump_section): New function: Display the contents of a + section. + (dump_data): Use bfd_map_over_sections to display section + contents. + (dump_relocs_in_section): Display the relocs in a given section. + (dump_relocs): Use bfd_map_over_sections to display relocs. + (adjust_addresses): New function: Adjust the vma and lma of + sections. + (dump_bfd): Use bfd_map_over_sections. + * doc/binutils.texi: Document the "objdump -s" (no longer) + dumps empty sections. + +2003-08-24 Jonathan R. Grant <jg-binutils@jguk.org> + + * objdump.c: Improve comments/documentation. + dump_data: Eliminate duplicate function calls to bfd_section_size. + 2003-09-02 Alan Modra <amodra@bigpond.net.au> * MAINTAINERS: Move Dave Anglin's entry to where it belongs. diff --git a/binutils/doc/binutils.texi b/binutils/doc/binutils.texi index ce9dcf0..f940d9f 100644 --- a/binutils/doc/binutils.texi +++ b/binutils/doc/binutils.texi @@ -1481,7 +1481,7 @@ object files. The long and short forms of options, shown here as alternatives, are equivalent. At least one option from the list -@option{-a,-d,-D,-e,-f,-g,-G,-h,-H,-p,-r,-R,-S,-t,-T,-V,-x} must be given. +@option{-a,-d,-D,-e,-f,-g,-G,-h,-H,-p,-r,-R,-s,-S,-t,-T,-V,-x} must be given. @table @env @item -a @@ -1738,7 +1738,8 @@ libraries. @itemx --full-contents @cindex sections, full contents @cindex object file sections -Display the full contents of any sections requested. +Display the full contents of any sections requested. By default all +non-empty sections are displayed. @item -S @itemx --source diff --git a/binutils/objdump.c b/binutils/objdump.c index 28ecf7f..9ef5d61 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -19,6 +19,35 @@ along with this program; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* Objdump overview. + + Objdump displays information about one or more object files, either on + their own, or inside libraries. It is commonly used as a disassembler, + but it can also display information about file headers, symbol tables, + relocations, debugging directives and more. + + The flow of execution is as follows: + + 1. Command line arguments are checked for control switches and the + information to be displayed is selected. + + 2. Any remaining arguments are assumed to be object files, and they are + processed in order by display_bfd(). If the file is an archive each + of its elements is processed in turn. + + 3. The file's target architecture and binary file format are determnined + by bfd_check_format(). If they are recognised, then dump_bfd() is + called. + + 4. dump_bfd() in turn calls seperate functions to display the requested + item(s) of infomation(s). For example dissasemble_data() is called if + a disassmebly has been requested. + + When disassembling the code loops through blocks of instructions bounded + by symbols, calling dissassemble_bytes() on each block. The actual + disassembling is done by the libopcodes library, via a function pointer + supplied by the disassembler() function. */ + #include "bfd.h" #include "bfdver.h" #include "progress.h" @@ -46,6 +75,7 @@ static int exit_status = 0; static char *default_target = NULL; /* Default at runtime. */ +/* The following variables are set based on arguments passed on command line. */ static int show_version = 0; /* Show the version number. */ static int dump_section_contents; /* -s */ static int dump_section_headers; /* -h */ @@ -66,9 +96,6 @@ static bfd_boolean disassemble; /* -d */ static bfd_boolean disassemble_all; /* -D */ static int disassemble_zeroes; /* --disassemble-zeroes */ static bfd_boolean formats_info; /* -i */ -static char **only; /* -j secname */ -static size_t only_size = 0; -static size_t only_used = 0; static int wide_output; /* -w */ static bfd_vma start_address = (bfd_vma) -1; /* --start-address */ static bfd_vma stop_address = (bfd_vma) -1; /* --stop-address */ @@ -77,16 +104,27 @@ static int dump_debugging_tags; /* --debugging-tags */ static bfd_vma adjust_section_vma = 0; /* --adjust-vma */ static int file_start_context = 0; /* --file-start-context */ +/* Pointer to an array of section names provided by + one or more "-j secname" command line options. */ +static char **only; +/* The total number of slots in the only[] array. */ +static size_t only_size = 0; +/* The number of occupied slots in the only[] array. */ +static size_t only_used = 0; + /* Variables for handling include file path table. */ static const char **include_paths; static int include_path_count; -/* Extra info to pass to the disassembler address printing function. */ +/* Extra info to pass to the section disassembler and address printing function. */ struct objdump_disasm_info { - bfd *abfd; - asection *sec; - bfd_boolean require_sec; + bfd * abfd; + asection * sec; + bfd_boolean require_sec; + arelent ** dynrelbuf; + long dynrelcount; + disassembler_ftype disassemble_fn; }; /* Architecture to disassemble for, or default if NULL. */ @@ -121,15 +159,6 @@ static bfd_size_type stab_size; static char *strtab; static bfd_size_type stabstr_size; - -/* Forward declarations. */ - -static void dump_data (bfd *); -static void dump_relocs (bfd *); -static void dump_dynamic_relocs (bfd *); -static void dump_reloc_set (bfd *, asection *, arelent **, long); -static void dump_symbols (bfd *, bfd_boolean); -static void dump_section_stabs (bfd *, char *, char *); static void usage (FILE *stream, int status) @@ -562,7 +591,8 @@ compare_relocs (const void *ap, const void *bp) return 0; } -/* Print VMA to STREAM. If SKIP_ZEROES is TRUE, omit leading zeroes. */ +/* Print an address (VMA) to the output stream in INFO. + If SKIP_ZEROES is TRUE, omit leading zeroes. */ static void objdump_print_value (bfd_vma vma, struct disassemble_info *info, @@ -736,7 +766,7 @@ find_symbol_for_address (bfd *abfd, asection *sec, bfd_vma vma, return sorted_syms[thisplace]; } -/* Print an address to INFO symbolically. */ +/* Print an address and the offset to the nearest symbol. */ static void objdump_print_addr_with_sym (bfd *abfd, asection *sec, asymbol *sym, @@ -782,8 +812,8 @@ objdump_print_addr_with_sym (bfd *abfd, asection *sec, asymbol *sym, } } -/* Print VMA to INFO, symbolically if possible. If SKIP_ZEROES is - TRUE, don't output leading zeroes. */ +/* Print an address (VMA), symbolically if possible. + If SKIP_ZEROES is TRUE, don't output leading zeroes. */ static void objdump_print_addr (bfd_vma vma, struct disassemble_info *info, @@ -1145,6 +1175,24 @@ objdump_sprintf (SFILE *f, const char *format, ...) return n; } +/* Returns TRUE if the specified section should be dumped. */ + +static bfd_boolean +process_section_p (asection * section) +{ + size_t i; + + if (only == NULL) + return TRUE; + + for (i = 0; i < only_used; i++) + if (strcmp (only [i], section->name) == 0) + return TRUE; + + return FALSE; +} + + /* The number of zeroes we want to see before we start skipping them. The number is arbitrarily chosen. */ @@ -1499,20 +1547,233 @@ disassemble_bytes (struct disassemble_info * info, } } +static void +disassemble_section (bfd *abfd, asection *section, void *info) +{ + struct disassemble_info * pinfo = (struct disassemble_info *) info; + struct objdump_disasm_info * paux = (struct objdump_disasm_info *) pinfo->application_data; + unsigned int opb = pinfo->octets_per_byte; + bfd_byte * data = NULL; + bfd_size_type datasize = 0; + arelent ** rel_pp = NULL; + arelent ** rel_ppstart = NULL; + arelent ** rel_ppend; + unsigned long stop_offset; + asymbol * sym = NULL; + long place = 0; + long rel_count; + bfd_vma rel_offset; + unsigned long addr_offset; + + /* Sections that do not contain machine + code are not normally disassembled. */ + if (! disassemble_all + && only == NULL + && (section->flags & SEC_CODE) == 0) + return; + + if (! process_section_p (section)) + return; + + datasize = bfd_get_section_size_before_reloc (section); + if (datasize == 0) + return; + + /* Decide which set of relocs to use. Load them if necessary. */ + if (paux->dynrelbuf) + { + rel_pp = paux->dynrelbuf; + rel_count = paux->dynrelcount; + /* Dynamic reloc addresses are absolute, non-dynamic are section + relative. REL_OFFSET specifies the reloc address corresponnding + to the start of this section. */ + rel_offset = pinfo->buffer_vma; + } + else + { + rel_count = 0; + rel_pp = NULL; + rel_offset = 0; + + if ((section->flags & SEC_RELOC) != 0 +#ifndef DISASSEMBLER_NEEDS_RELOCS + && dump_reloc_info +#endif + ) + { + long relsize; + + relsize = bfd_get_reloc_upper_bound (abfd, section); + if (relsize < 0) + bfd_fatal (bfd_get_filename (abfd)); + + if (relsize > 0) + { + rel_ppstart = rel_pp = xmalloc (relsize); + rel_count = bfd_canonicalize_reloc (abfd, section, rel_pp, syms); + if (rel_count < 0) + bfd_fatal (bfd_get_filename (abfd)); + + /* Sort the relocs by address. */ + qsort (rel_pp, rel_count, sizeof (arelent *), compare_relocs); + } + } + + } + rel_ppend = rel_pp + rel_count; + + data = xmalloc (datasize); + + bfd_get_section_contents (abfd, section, data, 0, datasize); + + paux->sec = section; + pinfo->buffer = data; + pinfo->buffer_vma = section->vma; + pinfo->buffer_length = datasize; + pinfo->section = section; + + if (start_address == (bfd_vma) -1 + || start_address < pinfo->buffer_vma) + addr_offset = 0; + else + addr_offset = start_address - pinfo->buffer_vma; + + if (stop_address == (bfd_vma) -1) + stop_offset = datasize / opb; + else + { + if (stop_address < pinfo->buffer_vma) + stop_offset = 0; + else + stop_offset = stop_address - pinfo->buffer_vma; + if (stop_offset > pinfo->buffer_length / opb) + stop_offset = pinfo->buffer_length / opb; + } + + /* Skip over the relocs belonging to addresses below the + start address. */ + while (rel_pp < rel_ppend + && (*rel_pp)->address < rel_offset + addr_offset) + ++rel_pp; + + printf (_("Disassembly of section %s:\n"), section->name); + + /* Find the nearest symbol forwards from our current position. */ + sym = find_symbol_for_address (abfd, section, section->vma + addr_offset, + TRUE, &place); + + /* Disassemble a block of instructions up to the address associated with + the symbol we have just found. Then print the symbol and find the + next symbol on. Repeat until we have disassembled the entire section + or we have reached the end of the address range we are interested in. */ + while (addr_offset < stop_offset) + { + asymbol *nextsym; + unsigned long nextstop_offset; + bfd_boolean insns; + + if (sym != NULL + && bfd_asymbol_value (sym) <= section->vma + addr_offset) + { + int x; + + for (x = place; + (x < sorted_symcount + && (bfd_asymbol_value (sorted_syms[x]) + <= section->vma + addr_offset)); + ++x) + continue; + + pinfo->symbols = & sorted_syms[place]; + pinfo->num_symbols = x - place; + } + else + pinfo->symbols = NULL; + + if (! prefix_addresses) + { + pinfo->fprintf_func (pinfo->stream, "\n"); + objdump_print_addr_with_sym (abfd, section, sym, + section->vma + addr_offset, + pinfo, FALSE); + pinfo->fprintf_func (pinfo->stream, ":\n"); + } + + if (sym != NULL + && bfd_asymbol_value (sym) > section->vma + addr_offset) + nextsym = sym; + else if (sym == NULL) + nextsym = NULL; + else + { + /* Search forward for the next appropriate symbol in + SECTION. Note that all the symbols are sorted + together into one big array, and that some sections + may have overlapping addresses. */ + while (place < sorted_symcount + && (sorted_syms[place]->section != section + || (bfd_asymbol_value (sorted_syms[place]) + <= bfd_asymbol_value (sym)))) + ++place; + if (place >= sorted_symcount) + nextsym = NULL; + else + nextsym = sorted_syms[place]; + } + + if (sym != NULL + && bfd_asymbol_value (sym) > section->vma + addr_offset) + { + nextstop_offset = bfd_asymbol_value (sym) - section->vma; + if (nextstop_offset > stop_offset) + nextstop_offset = stop_offset; + } + else if (nextsym == NULL) + nextstop_offset = stop_offset; + else + { + nextstop_offset = bfd_asymbol_value (nextsym) - section->vma; + if (nextstop_offset > stop_offset) + nextstop_offset = stop_offset; + } + + /* If a symbol is explicitly marked as being an object + rather than a function, just dump the bytes without + disassembling them. */ + if (disassemble_all + || sym == NULL + || bfd_asymbol_value (sym) > section->vma + addr_offset + || ((sym->flags & BSF_OBJECT) == 0 + && (strstr (bfd_asymbol_name (sym), "gnu_compiled") + == NULL) + && (strstr (bfd_asymbol_name (sym), "gcc2_compiled") + == NULL)) + || (sym->flags & BSF_FUNCTION) != 0) + insns = TRUE; + else + insns = FALSE; + + disassemble_bytes (pinfo, paux->disassemble_fn, insns, data, + addr_offset, nextstop_offset, + rel_offset, &rel_pp, rel_ppend); + + addr_offset = nextstop_offset; + sym = nextsym; + } + + free (data); + + if (rel_ppstart != NULL) + free (rel_ppstart); +} + /* Disassemble the contents of an object file. */ static void disassemble_data (bfd *abfd) { - unsigned long addr_offset; - disassembler_ftype disassemble_fn; struct disassemble_info disasm_info; struct objdump_disasm_info aux; - asection *section; - unsigned int opb; - arelent **dynrelbuf = NULL; - long relcount = 0; - bfd_vma rel_offset; print_files = NULL; prev_functionname = NULL; @@ -1533,6 +1794,9 @@ disassemble_data (bfd *abfd) disasm_info.application_data = (void *) &aux; aux.abfd = abfd; aux.require_sec = FALSE; + aux.dynrelbuf = NULL; + aux.dynrelcount = 0; + disasm_info.print_address_func = objdump_print_address; disasm_info.symbol_at_address_func = objdump_symbol_at_address; @@ -1556,8 +1820,9 @@ disassemble_data (bfd *abfd) abfd->xvec = xvec; } - disassemble_fn = disassembler (abfd); - if (!disassemble_fn) + /* Use libopcodes to locate a suitable disassembler. */ + aux.disassemble_fn = disassembler (abfd); + if (!aux.disassemble_fn) { non_fatal (_("Can't disassemble for architecture %s\n"), bfd_printable_arch_mach (bfd_get_arch (abfd), 0)); @@ -1565,13 +1830,11 @@ disassemble_data (bfd *abfd) return; } - opb = bfd_octets_per_byte (abfd); - disasm_info.flavour = bfd_get_flavour (abfd); disasm_info.arch = bfd_get_arch (abfd); disasm_info.mach = bfd_get_mach (abfd); disasm_info.disassembler_options = disassembler_options; - disasm_info.octets_per_byte = opb; + disasm_info.octets_per_byte = bfd_octets_per_byte (abfd); if (bfd_big_endian (abfd)) disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_BIG; @@ -1582,260 +1845,34 @@ disassemble_data (bfd *abfd) instead. */ disasm_info.endian = BFD_ENDIAN_UNKNOWN; + /* Pre-load the dynamic relocs if we are going + to be dumping them along with the disassembly. */ if (dump_dynamic_reloc_info) { long relsize = bfd_get_dynamic_reloc_upper_bound (abfd); - + if (relsize < 0) bfd_fatal (bfd_get_filename (abfd)); if (relsize > 0) { - dynrelbuf = xmalloc (relsize); - relcount = bfd_canonicalize_dynamic_reloc (abfd, dynrelbuf, dynsyms); - if (relcount < 0) + aux.dynrelbuf = xmalloc (relsize); + aux.dynrelcount = bfd_canonicalize_dynamic_reloc (abfd, aux.dynrelbuf, dynsyms); + if (aux.dynrelcount < 0) bfd_fatal (bfd_get_filename (abfd)); /* Sort the relocs by address. */ - qsort (dynrelbuf, relcount, sizeof (arelent *), compare_relocs); + qsort (aux.dynrelbuf, aux.dynrelcount, sizeof (arelent *), compare_relocs); } } - for (section = abfd->sections; - section != NULL; - section = section->next) - { - bfd_byte *data = NULL; - bfd_size_type datasize = 0; - arelent **relbuf = NULL; - arelent **relpp = NULL; - arelent **relppend = NULL; - unsigned long stop_offset; - asymbol *sym = NULL; - long place = 0; - - /* Sections that do not contain machine code are not normally - disassembled. */ - if (! disassemble_all - && only == NULL - && (section->flags & SEC_CODE) == 0) - continue; - - if (only != NULL) - { - size_t i; - - for (i = 0; i < only_used; i++) - if (strcmp (only [i], section->name) == 0) - break; - - if (i == only_used) - continue; - } - - if (dynrelbuf == NULL) - relcount = 0; - if ((section->flags & SEC_RELOC) != 0 -#ifndef DISASSEMBLER_NEEDS_RELOCS - && dump_reloc_info -#endif - && dynrelbuf == NULL) - { - long relsize; - - relsize = bfd_get_reloc_upper_bound (abfd, section); - if (relsize < 0) - bfd_fatal (bfd_get_filename (abfd)); - - if (relsize > 0) - { - relbuf = xmalloc (relsize); - relcount = bfd_canonicalize_reloc (abfd, section, relbuf, syms); - if (relcount < 0) - bfd_fatal (bfd_get_filename (abfd)); - - /* Sort the relocs by address. */ - qsort (relbuf, relcount, sizeof (arelent *), compare_relocs); - } - } - - datasize = bfd_get_section_size_before_reloc (section); - if (datasize == 0) - continue; - - printf (_("Disassembly of section %s:\n"), section->name); - - data = xmalloc (datasize); - - bfd_get_section_contents (abfd, section, data, 0, datasize); - - aux.sec = section; - disasm_info.buffer = data; - disasm_info.buffer_vma = section->vma; - disasm_info.buffer_length = datasize; - disasm_info.section = section; - - if (start_address == (bfd_vma) -1 - || start_address < disasm_info.buffer_vma) - addr_offset = 0; - else - addr_offset = start_address - disasm_info.buffer_vma; - - if (dynrelbuf) - { - relpp = dynrelbuf; - /* Dynamic reloc addresses are absolute, non-dynamic are - section relative. REL_OFFSET specifies the reloc address - corresponnding to the start of this section. */ - rel_offset = disasm_info.buffer_vma; - } - else - { - relpp = relbuf; - rel_offset = 0; - } - relppend = relpp + relcount; - - /* Skip over the relocs belonging to addresses below the - start address. */ - while (relpp < relppend - && (*relpp)->address < rel_offset + addr_offset) - ++relpp; - - if (stop_address == (bfd_vma) -1) - stop_offset = datasize / opb; - else - { - if (stop_address < disasm_info.buffer_vma) - stop_offset = 0; - else - stop_offset = stop_address - disasm_info.buffer_vma; - if (stop_offset > disasm_info.buffer_length / opb) - stop_offset = disasm_info.buffer_length / opb; - } - - sym = find_symbol_for_address (abfd, section, section->vma + addr_offset, - TRUE, &place); - - while (addr_offset < stop_offset) - { - asymbol *nextsym; - unsigned long nextstop_offset; - bfd_boolean insns; - - if (sym != NULL - && bfd_asymbol_value (sym) <= section->vma + addr_offset) - { - int x; - - for (x = place; - (x < sorted_symcount - && (bfd_asymbol_value (sorted_syms[x]) - <= section->vma + addr_offset)); - ++x) - continue; - - disasm_info.symbols = & sorted_syms[place]; - disasm_info.num_symbols = x - place; - } - else - disasm_info.symbols = NULL; - - if (! prefix_addresses) - { - (* disasm_info.fprintf_func) (disasm_info.stream, "\n"); - objdump_print_addr_with_sym (abfd, section, sym, - section->vma + addr_offset, - &disasm_info, - FALSE); - (* disasm_info.fprintf_func) (disasm_info.stream, ":\n"); - } - - if (sym != NULL - && bfd_asymbol_value (sym) > section->vma + addr_offset) - nextsym = sym; - else if (sym == NULL) - nextsym = NULL; - else - { - /* Search forward for the next appropriate symbol in - SECTION. Note that all the symbols are sorted - together into one big array, and that some sections - may have overlapping addresses. */ - while (place < sorted_symcount - && (sorted_syms[place]->section != section - || (bfd_asymbol_value (sorted_syms[place]) - <= bfd_asymbol_value (sym)))) - ++place; - if (place >= sorted_symcount) - nextsym = NULL; - else - nextsym = sorted_syms[place]; - } - - if (sym != NULL - && bfd_asymbol_value (sym) > section->vma + addr_offset) - { - nextstop_offset = bfd_asymbol_value (sym) - section->vma; - if (nextstop_offset > stop_offset) - nextstop_offset = stop_offset; - } - else if (nextsym == NULL) - nextstop_offset = stop_offset; - else - { - nextstop_offset = bfd_asymbol_value (nextsym) - section->vma; - if (nextstop_offset > stop_offset) - nextstop_offset = stop_offset; - } - - /* If a symbol is explicitly marked as being an object - rather than a function, just dump the bytes without - disassembling them. */ - if (disassemble_all - || sym == NULL - || bfd_asymbol_value (sym) > section->vma + addr_offset - || ((sym->flags & BSF_OBJECT) == 0 - && (strstr (bfd_asymbol_name (sym), "gnu_compiled") - == NULL) - && (strstr (bfd_asymbol_name (sym), "gcc2_compiled") - == NULL)) - || (sym->flags & BSF_FUNCTION) != 0) - insns = TRUE; - else - insns = FALSE; + bfd_map_over_sections (abfd, disassemble_section, & disasm_info); - disassemble_bytes (&disasm_info, disassemble_fn, insns, data, - addr_offset, nextstop_offset, - rel_offset, &relpp, relppend); - - addr_offset = nextstop_offset; - sym = nextsym; - } - - free (data); - - if (relbuf != NULL) - free (relbuf); - } - - if (dynrelbuf != NULL) - free (dynrelbuf); + if (aux.dynrelbuf != NULL) + free (aux.dynrelbuf); free (sorted_syms); } -/* Dump the stabs sections from an object file that has a section that - uses Sun stabs encoding. */ - -static void -dump_stabs (bfd *abfd) -{ - 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$"); -} - /* 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. @@ -1848,14 +1885,14 @@ read_section_stabs (bfd *abfd, const char *stabsect_name, asection *stabsect, *stabstrsect; stabsect = bfd_get_section_by_name (abfd, stabsect_name); - if (0 == stabsect) + if (stabsect == NULL) { printf (_("No %s section present\n\n"), stabsect_name); return FALSE; } stabstrsect = bfd_get_section_by_name (abfd, strsect_name); - if (0 == stabstrsect) + if (stabstrsect == NULL) { non_fatal (_("%s has no %s section"), bfd_get_filename (abfd), strsect_name); @@ -1914,8 +1951,7 @@ read_section_stabs (bfd *abfd, const char *stabsect_name, using string table section STRSECT_NAME (in `strtab'). */ static void -print_section_stabs (bfd *abfd, const char *stabsect_name, - const char *strsect_name ATTRIBUTE_UNUSED) +print_section_stabs (bfd *abfd, const char *stabsect_name) { int i; unsigned file_string_table_offset = 0; @@ -1981,38 +2017,60 @@ print_section_stabs (bfd *abfd, const char *stabsect_name, printf ("\n\n"); } +typedef struct +{ + const char * section_name; + const char * string_section_name; +} +stab_section_names; + static void -dump_section_stabs (bfd *abfd, char *stabsect_name, char *strsect_name) +find_stabs_section (bfd *abfd, asection *section, void *names) { - asection *s; + int len; + stab_section_names * sought = (stab_section_names *) names; /* Check for section names for which stabsect_name is a prefix, to handle .stab0, etc. */ - for (s = abfd->sections; - s != NULL; - s = s->next) + len = strlen (sought->section_name); + + /* If the prefix matches, and the files section name ends with a + nul or a digit, then we match. I.e., we want either an exact + match or a section followed by a number. */ + if (strncmp (sought->section_name, section->name, len) == 0 + && (section->name[len] == 0 + || ISDIGIT (section->name[len]))) { - int len; - - len = strlen (stabsect_name); - - /* If the prefix matches, and the files section name ends with a - nul or a digit, then we match. I.e., we want either an exact - match or a section followed by a number. */ - if (strncmp (stabsect_name, s->name, len) == 0 - && (s->name[len] == '\000' - || ISDIGIT (s->name[len]))) + if (read_section_stabs (abfd, section->name, sought->string_section_name)) { - if (read_section_stabs (abfd, s->name, strsect_name)) - { - print_section_stabs (abfd, s->name, strsect_name); - free (stabs); - free (strtab); - } + print_section_stabs (abfd, section->name); + free (stabs); + free (strtab); } } } +static void +dump_stabs_section (bfd *abfd, char *stabsect_name, char *strsect_name) +{ + stab_section_names s; + + s.section_name = stabsect_name; + s.string_section_name = strsect_name; + + bfd_map_over_sections (abfd, find_stabs_section, & s); +} + +/* Dump the any sections containing stabs debugging information. */ + +static void +dump_stabs (bfd *abfd) +{ + dump_stabs_section (abfd, ".stab", ".stabstr"); + dump_stabs_section (abfd, ".stab.excl", ".stab.exclstr"); + dump_stabs_section (abfd, ".stab.index", ".stab.indexstr"); + dump_stabs_section (abfd, "$GDB_SYMBOLS$", "$GDB_STRINGS$"); +} static void dump_bfd_header (bfd *abfd) @@ -2048,296 +2106,134 @@ dump_bfd_private_header (bfd *abfd) bfd_print_private_bfd_data (abfd, stdout); } -/* Dump selected contents of ABFD. */ + +/* Display a section in hexadecimal format with associated characters. + Each line prefixed by the zero padded address. */ static void -dump_bfd (bfd *abfd) +dump_section (bfd *abfd, asection *section, void *dummy ATTRIBUTE_UNUSED) { - /* If we are adjusting section VMA's, change them all now. Changing - the BFD information is a hack. However, we must do it, or - bfd_find_nearest_line will not do the right thing. */ - if (adjust_section_vma != 0) - { - asection *s; + bfd_byte *data = 0; + bfd_size_type datasize; + bfd_size_type addr_offset; + bfd_size_type start_offset; + bfd_size_type stop_offset; + unsigned int opb = bfd_octets_per_byte (abfd); + /* Bytes per line. */ + const int onaline = 16; + char buf[64]; + int count; + int width; - for (s = abfd->sections; s != NULL; s = s->next) - { - s->vma += adjust_section_vma; - s->lma += adjust_section_vma; - } - } + if ((section->flags & SEC_HAS_CONTENTS) == 0) + return; - if (! dump_debugging_tags) - printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd), - abfd->xvec->name); - if (dump_ar_hdrs) - print_arelt_descr (stdout, abfd, TRUE); - if (dump_file_header) - dump_bfd_header (abfd); - if (dump_private_headers) - dump_bfd_private_header (abfd); - if (! dump_debugging_tags) - putchar ('\n'); - if (dump_section_headers) - dump_headers (abfd); + if (! process_section_p (section)) + return; + + if ((datasize = bfd_section_size (abfd, section)) == 0) + return; - if (dump_symtab || dump_reloc_info || disassemble || dump_debugging) - syms = slurp_symtab (abfd); - if (dump_dynamic_symtab || dump_dynamic_reloc_info) - dynsyms = slurp_dynamic_symtab (abfd); + printf (_("Contents of section %s:\n"), section->name); - if (dump_symtab) - dump_symbols (abfd, FALSE); - if (dump_dynamic_symtab) - dump_symbols (abfd, TRUE); - if (dump_stab_section_info) - dump_stabs (abfd); - if (dump_reloc_info && ! disassemble) - dump_relocs (abfd); - if (dump_dynamic_reloc_info && ! disassemble) - dump_dynamic_relocs (abfd); - if (dump_section_contents) - dump_data (abfd); - if (disassemble) - disassemble_data (abfd); - if (dump_debugging) - { - void *dhandle; + data = xmalloc (datasize); - dhandle = read_debugging_info (abfd, syms, symcount); - if (dhandle != NULL) - { - if (! print_debugging_info (stdout, dhandle, abfd, syms, demangle, - dump_debugging_tags ? TRUE : FALSE)) - { - non_fatal (_("%s: printing debugging information failed"), - bfd_get_filename (abfd)); - exit_status = 1; - } - } - } - - if (syms) - { - free (syms); - syms = NULL; - } + bfd_get_section_contents (abfd, section, data, 0, datasize); - if (dynsyms) - { - free (dynsyms); - dynsyms = NULL; - } -} - -static void -display_bfd (bfd *abfd) -{ - char **matching; + /* Compute the address range to display. */ + if (start_address == (bfd_vma) -1 + || start_address < section->vma) + start_offset = 0; + else + start_offset = start_address - section->vma; - if (bfd_check_format_matches (abfd, bfd_object, &matching)) + if (stop_address == (bfd_vma) -1) + stop_offset = datasize / opb; + else { - dump_bfd (abfd); - return; - } + if (stop_address < section->vma) + stop_offset = 0; + else + stop_offset = stop_address - section->vma; - if (bfd_get_error () == bfd_error_file_ambiguously_recognized) - { - nonfatal (bfd_get_filename (abfd)); - list_matching_formats (matching); - free (matching); - return; + if (stop_offset > datasize / opb) + stop_offset = datasize / opb; } - if (bfd_get_error () != bfd_error_file_not_recognized) - { - nonfatal (bfd_get_filename (abfd)); - return; - } + width = 4; - if (bfd_check_format_matches (abfd, bfd_core, &matching)) - { - dump_bfd (abfd); - return; - } + bfd_sprintf_vma (abfd, buf, start_offset + section->vma); + if (strlen (buf) >= sizeof (buf)) + abort (); - nonfatal (bfd_get_filename (abfd)); + count = 0; + while (buf[count] == '0' && buf[count+1] != '\0') + count++; + count = strlen (buf) - count; + if (count > width) + width = count; - if (bfd_get_error () == bfd_error_file_ambiguously_recognized) - { - list_matching_formats (matching); - free (matching); - } -} + bfd_sprintf_vma (abfd, buf, stop_offset + section->vma - 1); + if (strlen (buf) >= sizeof (buf)) + abort (); -static void -display_file (char *filename, char *target) -{ - bfd *file, *arfile = NULL; + count = 0; + while (buf[count] == '0' && buf[count+1] != '\0') + count++; + count = strlen (buf) - count; + if (count > width) + width = count; - file = bfd_openr (filename, target); - if (file == NULL) + for (addr_offset = start_offset; + addr_offset < stop_offset; addr_offset += onaline / opb) { - nonfatal (filename); - return; - } + bfd_size_type j; - if (bfd_check_format (file, bfd_archive)) - { - bfd *last_arfile = NULL; + bfd_sprintf_vma (abfd, buf, (addr_offset + section->vma)); + count = strlen (buf); + if ((size_t) count >= sizeof (buf)) + abort (); - printf (_("In archive %s:\n"), bfd_get_filename (file)); - for (;;) + putchar (' '); + while (count < width) { - bfd_set_error (bfd_error_no_error); - - arfile = bfd_openr_next_archived_file (file, arfile); - if (arfile == NULL) - { - if (bfd_get_error () != bfd_error_no_more_archived_files) - nonfatal (bfd_get_filename (file)); - break; - } - - display_bfd (arfile); + putchar ('0'); + count++; + } + fputs (buf + count - width, stdout); + putchar (' '); - if (last_arfile != NULL) - bfd_close (last_arfile); - last_arfile = arfile; + for (j = addr_offset * opb; + j < addr_offset * opb + onaline; j++) + { + if (j < stop_offset * opb) + printf ("%02x", (unsigned) (data[j])); + else + printf (" "); + if ((j & 3) == 3) + printf (" "); } - if (last_arfile != NULL) - bfd_close (last_arfile); + printf (" "); + for (j = addr_offset * opb; + j < addr_offset * opb + onaline; j++) + { + if (j >= stop_offset * opb) + printf (" "); + else + printf ("%c", ISPRINT (data[j]) ? data[j] : '.'); + } + putchar ('\n'); } - else - display_bfd (file); - - bfd_close (file); + free (data); } - + /* Actually display the various requested regions. */ static void dump_data (bfd *abfd) { - asection *section; - bfd_byte *data = 0; - bfd_size_type datasize = 0; - bfd_size_type addr_offset; - bfd_size_type start_offset, stop_offset; - unsigned int opb = bfd_octets_per_byte (abfd); - - for (section = abfd->sections; section != NULL; section = - section->next) - { - int onaline = 16; - size_t i; - - for (i = 0; i < only_used; i++) - if (strcmp (only [i], section->name) == 0) - break; - - if (only_used == 0 || i != only_used) - { - if (section->flags & SEC_HAS_CONTENTS) - { - char buf[64]; - int count, width; - - printf (_("Contents of section %s:\n"), section->name); - - if (bfd_section_size (abfd, section) == 0) - continue; - data = xmalloc (bfd_section_size (abfd, section)); - datasize = bfd_section_size (abfd, section); - - - bfd_get_section_contents (abfd, section, data, 0, - bfd_section_size (abfd, section)); - - if (start_address == (bfd_vma) -1 - || start_address < section->vma) - start_offset = 0; - else - start_offset = start_address - section->vma; - if (stop_address == (bfd_vma) -1) - stop_offset = bfd_section_size (abfd, section) / opb; - else - { - if (stop_address < section->vma) - stop_offset = 0; - else - stop_offset = stop_address - section->vma; - if (stop_offset > bfd_section_size (abfd, section) / opb) - stop_offset = bfd_section_size (abfd, section) / opb; - } - - width = 4; - - bfd_sprintf_vma (abfd, buf, start_offset + section->vma); - if (strlen (buf) >= sizeof (buf)) - abort (); - count = 0; - while (buf[count] == '0' && buf[count+1] != '\0') - count++; - count = strlen (buf) - count; - if (count > width) - width = count; - - bfd_sprintf_vma (abfd, buf, stop_offset + section->vma - 1); - if (strlen (buf) >= sizeof (buf)) - abort (); - count = 0; - while (buf[count] == '0' && buf[count+1] != '\0') - count++; - count = strlen (buf) - count; - if (count > width) - width = count; - - for (addr_offset = start_offset; - addr_offset < stop_offset; addr_offset += onaline / opb) - { - bfd_size_type j; - - bfd_sprintf_vma (abfd, buf, (addr_offset + section->vma)); - count = strlen (buf); - if ((size_t) count >= sizeof (buf)) - abort (); - putchar (' '); - while (count < width) - { - putchar ('0'); - count++; - } - fputs (buf + count - width, stdout); - putchar (' '); - - for (j = addr_offset * opb; - j < addr_offset * opb + onaline; j++) - { - if (j < stop_offset * opb) - printf ("%02x", (unsigned) (data[j])); - else - printf (" "); - if ((j & 3) == 3) - printf (" "); - } - - printf (" "); - for (j = addr_offset * opb; - j < addr_offset * opb + onaline; j++) - { - if (j >= stop_offset * opb) - printf (" "); - else - printf ("%c", ISPRINT (data[j]) ? data[j] : '.'); - } - putchar ('\n'); - } - free (data); - } - } - } + bfd_map_over_sections (abfd, dump_section, NULL); } /* Should perhaps share code and display with nm? */ @@ -2367,138 +2263,44 @@ dump_symbols (bfd *abfd ATTRIBUTE_UNUSED, bfd_boolean dynamic) for (count = 0; count < max; count++) { - if (*current) + bfd *cur_bfd; + + if (*current == NULL) + printf (_("no information for the %ld'th symbol"), count); + + else if ((cur_bfd = bfd_asymbol_bfd (*current)) == NULL) + printf (_("could not determine the type of the %ld'th symbol"), + count); + + else { - bfd *cur_bfd = bfd_asymbol_bfd (*current); + const char *name = (*current)->name; - if (cur_bfd != NULL) + if (do_demangle && name != NULL && *name != '\0') { - const char *name; char *alloc; - name = (*current)->name; - alloc = NULL; - if (do_demangle && name != NULL && *name != '\0') - { - /* If we want to demangle the name, we demangle it - here, and temporarily clobber it while calling - bfd_print_symbol. FIXME: This is a gross hack. */ - alloc = demangle (cur_bfd, name); - (*current)->name = alloc; - } - + /* If we want to demangle the name, we demangle it + here, and temporarily clobber it while calling + bfd_print_symbol. FIXME: This is a gross hack. */ + alloc = demangle (cur_bfd, name); + (*current)->name = alloc; bfd_print_symbol (cur_bfd, stdout, *current, bfd_print_symbol_all); - (*current)->name = name; - if (alloc != NULL) - free (alloc); - - printf ("\n"); + free (alloc); } - } - current++; - } - printf ("\n"); - printf ("\n"); -} - -static void -dump_relocs (bfd *abfd) -{ - arelent **relpp; - long relcount; - asection *a; - - for (a = abfd->sections; a != NULL; a = a->next) - { - long relsize; - - if (bfd_is_abs_section (a)) - continue; - if (bfd_is_und_section (a)) - continue; - if (bfd_is_com_section (a)) - continue; - - if (only) - { - size_t i; - - for (i = 0; i < only_used; i++) - if (strcmp (only [i], a->name) == 0) - break; - - if (i == only_used) - continue; - } - else if ((a->flags & SEC_RELOC) == 0) - continue; - - relsize = bfd_get_reloc_upper_bound (abfd, a); - if (relsize < 0) - bfd_fatal (bfd_get_filename (abfd)); - - printf ("RELOCATION RECORDS FOR [%s]:", a->name); - - if (relsize == 0) - { - printf (" (none)\n\n"); - } - else - { - relpp = xmalloc (relsize); - relcount = bfd_canonicalize_reloc (abfd, a, relpp, syms); - - if (relcount < 0) - bfd_fatal (bfd_get_filename (abfd)); - else if (relcount == 0) - printf (" (none)\n\n"); else - { - printf ("\n"); - dump_reloc_set (abfd, a, relpp, relcount); - printf ("\n\n"); - } - free (relpp); + bfd_print_symbol (cur_bfd, stdout, *current, + bfd_print_symbol_all); } - } -} - -static void -dump_dynamic_relocs (bfd *abfd) -{ - long relsize; - arelent **relpp; - long relcount; - - relsize = bfd_get_dynamic_reloc_upper_bound (abfd); - if (relsize < 0) - bfd_fatal (bfd_get_filename (abfd)); - - printf ("DYNAMIC RELOCATION RECORDS"); - - if (relsize == 0) - printf (" (none)\n\n"); - else - { - relpp = xmalloc (relsize); - relcount = bfd_canonicalize_dynamic_reloc (abfd, relpp, dynsyms); - if (relcount < 0) - bfd_fatal (bfd_get_filename (abfd)); - else if (relcount == 0) - printf (" (none)\n\n"); - else - { - printf ("\n"); - dump_reloc_set (abfd, NULL, relpp, relcount); - printf ("\n\n"); - } - free (relpp); + printf ("\n"); + current++; } + printf ("\n\n"); } - + static void dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount) { @@ -2513,6 +2315,7 @@ dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount) if (width == 0) { char buf[30]; + bfd_sprintf_vma (abfd, buf, (bfd_vma) -1); width = strlen (buf) - 7; } @@ -2610,6 +2413,88 @@ dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount) } } +static void +dump_relocs_in_section (bfd *abfd, asection *section, void *dummy ATTRIBUTE_UNUSED) +{ + arelent **relpp; + long relcount; + long relsize; + + if ( bfd_is_abs_section (section) + || bfd_is_und_section (section) + || bfd_is_com_section (section) + || (! process_section_p (section)) + || ((section->flags & SEC_RELOC) == 0)) + return; + + relsize = bfd_get_reloc_upper_bound (abfd, section); + if (relsize < 0) + bfd_fatal (bfd_get_filename (abfd)); + + printf ("RELOCATION RECORDS FOR [%s]:", section->name); + + if (relsize == 0) + { + printf (" (none)\n\n"); + return; + } + + relpp = xmalloc (relsize); + relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms); + + if (relcount < 0) + bfd_fatal (bfd_get_filename (abfd)); + else if (relcount == 0) + printf (" (none)\n\n"); + else + { + printf ("\n"); + dump_reloc_set (abfd, section, relpp, relcount); + printf ("\n\n"); + } + free (relpp); +} + +static void +dump_relocs (bfd *abfd) +{ + bfd_map_over_sections (abfd, dump_relocs_in_section, NULL); +} + +static void +dump_dynamic_relocs (bfd *abfd) +{ + long relsize; + arelent **relpp; + long relcount; + + relsize = bfd_get_dynamic_reloc_upper_bound (abfd); + if (relsize < 0) + bfd_fatal (bfd_get_filename (abfd)); + + printf ("DYNAMIC RELOCATION RECORDS"); + + if (relsize == 0) + printf (" (none)\n\n"); + else + { + relpp = xmalloc (relsize); + relcount = bfd_canonicalize_dynamic_reloc (abfd, relpp, dynsyms); + + if (relcount < 0) + bfd_fatal (bfd_get_filename (abfd)); + else if (relcount == 0) + printf (" (none)\n\n"); + else + { + printf ("\n"); + dump_reloc_set (abfd, NULL, relpp, relcount); + printf ("\n\n"); + } + free (relpp); + } +} + /* Creates a table of paths, to search for source files. */ static void @@ -2626,6 +2511,174 @@ add_include_path (const char *path) #endif include_paths[include_path_count - 1] = path; } + +static void +adjust_addresses (bfd *abfd ATTRIBUTE_UNUSED, asection *section, void *dummy ATTRIBUTE_UNUSED) +{ + section->vma += adjust_section_vma; + section->lma += adjust_section_vma; +} + +/* Dump selected contents of ABFD. */ + +static void +dump_bfd (bfd *abfd) +{ + /* If we are adjusting section VMA's, change them all now. Changing + the BFD information is a hack. However, we must do it, or + bfd_find_nearest_line will not do the right thing. */ + if (adjust_section_vma != 0) + bfd_map_over_sections (abfd, adjust_addresses, NULL); + + if (! dump_debugging_tags) + printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd), + abfd->xvec->name); + if (dump_ar_hdrs) + print_arelt_descr (stdout, abfd, TRUE); + if (dump_file_header) + dump_bfd_header (abfd); + if (dump_private_headers) + dump_bfd_private_header (abfd); + if (! dump_debugging_tags) + putchar ('\n'); + if (dump_section_headers) + dump_headers (abfd); + + if (dump_symtab || dump_reloc_info || disassemble || dump_debugging) + syms = slurp_symtab (abfd); + if (dump_dynamic_symtab || dump_dynamic_reloc_info) + dynsyms = slurp_dynamic_symtab (abfd); + + if (dump_symtab) + dump_symbols (abfd, FALSE); + if (dump_dynamic_symtab) + dump_symbols (abfd, TRUE); + if (dump_stab_section_info) + dump_stabs (abfd); + if (dump_reloc_info && ! disassemble) + dump_relocs (abfd); + if (dump_dynamic_reloc_info && ! disassemble) + dump_dynamic_relocs (abfd); + if (dump_section_contents) + dump_data (abfd); + if (disassemble) + disassemble_data (abfd); + + if (dump_debugging) + { + void *dhandle; + + dhandle = read_debugging_info (abfd, syms, symcount); + if (dhandle != NULL) + { + if (! print_debugging_info (stdout, dhandle, abfd, syms, demangle, + dump_debugging_tags ? TRUE : FALSE)) + { + non_fatal (_("%s: printing debugging information failed"), + bfd_get_filename (abfd)); + exit_status = 1; + } + } + } + + if (syms) + { + free (syms); + syms = NULL; + } + + if (dynsyms) + { + free (dynsyms); + dynsyms = NULL; + } +} + +static void +display_bfd (bfd *abfd) +{ + char **matching; + + if (bfd_check_format_matches (abfd, bfd_object, &matching)) + { + dump_bfd (abfd); + return; + } + + if (bfd_get_error () == bfd_error_file_ambiguously_recognized) + { + nonfatal (bfd_get_filename (abfd)); + list_matching_formats (matching); + free (matching); + return; + } + + if (bfd_get_error () != bfd_error_file_not_recognized) + { + nonfatal (bfd_get_filename (abfd)); + return; + } + + if (bfd_check_format_matches (abfd, bfd_core, &matching)) + { + dump_bfd (abfd); + return; + } + + nonfatal (bfd_get_filename (abfd)); + + if (bfd_get_error () == bfd_error_file_ambiguously_recognized) + { + list_matching_formats (matching); + free (matching); + } +} + +static void +display_file (char *filename, char *target) +{ + bfd *file, *arfile = NULL; + + file = bfd_openr (filename, target); + if (file == NULL) + { + nonfatal (filename); + return; + } + + /* If the file is an archive, process all of its elements. */ + if (bfd_check_format (file, bfd_archive)) + { + bfd *last_arfile = NULL; + + printf (_("In archive %s:\n"), bfd_get_filename (file)); + for (;;) + { + bfd_set_error (bfd_error_no_error); + + arfile = bfd_openr_next_archived_file (file, arfile); + if (arfile == NULL) + { + if (bfd_get_error () != bfd_error_no_more_archived_files) + nonfatal (bfd_get_filename (file)); + break; + } + + display_bfd (arfile); + + if (last_arfile != NULL) + bfd_close (last_arfile); + last_arfile = arfile; + } + + if (last_arfile != NULL) + bfd_close (last_arfile); + } + else + display_bfd (file); + + bfd_close (file); +} int main (int argc, char **argv) @@ -2634,12 +2687,13 @@ main (int argc, char **argv) char *target = default_target; bfd_boolean seenflag = FALSE; -#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES) +#if defined (HAVE_SETLOCALE) +#if defined (HAVE_LC_MESSAGES) setlocale (LC_MESSAGES, ""); #endif -#if defined (HAVE_SETLOCALE) setlocale (LC_CTYPE, ""); #endif + bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 26fda7b..fae0d7f 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,70 @@ +2003-09-03 Nick Clifton <nickc@redhat.com> + + * gas/cris/diffexp-ovwr.d: Remove regexp for empty section + contents string. + gas/cris/pushpop-dcr1-sreg.d: Likewise. + gas/cris/string-1.d: Likewise. + gas/cris/string-2.d: Likewise. + gas/cris/x-to-dcr1-sreg.d: Likewise. + gas/elf/section0.d: Likewise. + gas/elf/section1.d: Likewise. + gas/i386/relax.d: Likewise. + gas/mips/elempic.d: Likewise. + gas/mips/empic.d: Likewise. + gas/mips/mips16-e.d: Likewise. + gas/mips/mips16-f.d: Likewise. + gas/mips/mipsel16-e.d: Likewise. + gas/mips/mipsel16-f.d: Likewise. + gas/mips/rm7000.d: Likewise. + gas/mips/telempic.d: Likewise. + gas/mips/tempic.d: Likewise. + gas/mips/tmips16-e.d: Likewise. + gas/mips/tmips16-f.d: Likewise. + gas/mips/tmipsel16-e.d: Likewise. + gas/mips/tmipsel16-f.d: Likewise. + gas/mmix/align-1.d: Likewise. + gas/mmix/basep-10.d: Likewise. + gas/mmix/basep-11.d: Likewise. + gas/mmix/basep-9.d: Likewise. + gas/mmix/comment-3.d: Likewise. + gas/mmix/cons-1.d: Likewise. + gas/mmix/cons-2.d: Likewise. + gas/mmix/expr-1.d: Likewise. + gas/mmix/fb-1.d: Likewise. + gas/mmix/fb-2.d: Likewise. + gas/mmix/greg1.d: Likewise. + gas/mmix/greg1a.d: Likewise. + gas/mmix/greg2.d: Likewise. + gas/mmix/greg2a.d: Likewise. + gas/mmix/greg3.d: Likewise. + gas/mmix/greg4.d: Likewise. + gas/mmix/greg7.d: Likewise. + gas/mmix/greg8.d: Likewise. + gas/mmix/is-1.d: Likewise. + gas/mmix/local-1.d: Likewise. + gas/mmix/odd-1.d: Likewise. + gas/mmix/op-0-1.d: Likewise. + gas/mmix/op-0-2.d: Likewise. + gas/mmix/prefix3.d: Likewise. + gas/mmix/pseudo-1.d: Likewise. + gas/mmix/weak1.d: Likewise. + gas/sh/sh64/crange1-1.d: Likewise. + gas/sh/sh64/crange1-2.d: Likewise. + gas/sh/sh64/crange2-2.d: Likewise. + gas/sh/sh64/crange3-1.d: Likewise. + gas/sh/sh64/crange4-1.d: Likewise. + gas/sh/sh64/crange5-1.d: Likewise. + gas/sh/sh64/datal32-3.d: Likewise. + gas/sh/sh64/datal64-3.d: Likewise. + gas/sh/sh64/endian-1.d: Likewise. + gas/sh/sh64/endian-2.d: Likewise. + gas/sh/sh64/localcom-1.d: Likewise. + gas/sh/sh64/rel32-5.d: Likewise. + gas/sh/sh64/rel64-5.d: Likewise. + gas/sh/sh64/ua32-1.d: Likewise. + gas/sh/sh64/ua64-1.d: Likewise. + gas/xstormy16/reloc-1.d: Likewise. + 2003-09-01 Maciej W. Rozycki <macro@ds2.pg.gda.pl> * gas/mips/elf-rel-got-n32.d: Fix ulw and usw patterns for diff --git a/gas/testsuite/gas/cris/diffexp-ovwr.d b/gas/testsuite/gas/cris/diffexp-ovwr.d index ed0010b..1c7a00b 100644 --- a/gas/testsuite/gas/cris/diffexp-ovwr.d +++ b/gas/testsuite/gas/cris/diffexp-ovwr.d @@ -23,4 +23,4 @@ Contents of section \.text: 0100 00000000 00000000 00000000 00000000 .* 0110 00000000 00000000 00000000 00000000 .* 0120 00000000 00000100 00000000 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/cris/pushpop-dcr1-sreg.d b/gas/testsuite/gas/cris/pushpop-dcr1-sreg.d index 1ed444e..35c2b1c 100644 --- a/gas/testsuite/gas/cris/pushpop-dcr1-sreg.d +++ b/gas/testsuite/gas/cris/pushpop-dcr1-sreg.d @@ -12,4 +12,4 @@ Contents of section \.text: 0050 01e13e7e 00e13e7e ffe13e7e fee13e7e .* 0060 fde13e7e fce13e7e fbe13e7e f8e13e7e .* 0070 fee17e7e 3e7e3e7e fee17e7e .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/cris/string-1.d b/gas/testsuite/gas/cris/string-1.d index dee713f..ffdc669 100644 --- a/gas/testsuite/gas/cris/string-1.d +++ b/gas/testsuite/gas/cris/string-1.d @@ -9,4 +9,4 @@ Contents of section \.text: 0020 696e6522 20617420 74686520 27656e64 .* 0030 274d6567 6174726f 69640a41 582d466f .* 0040 6f0d0a00 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/cris/string-2.d b/gas/testsuite/gas/cris/string-2.d index 710ab89..9bb1f65 100644 --- a/gas/testsuite/gas/cris/string-2.d +++ b/gas/testsuite/gas/cris/string-2.d @@ -9,4 +9,4 @@ Contents of section \.text: 0020 696e6522 20617420 74686520 27656e64 .* 0030 274d6567 6174726f 69640a41 582d466f .* 0040 6f0d0a00 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/cris/x-to-dcr1-sreg.d b/gas/testsuite/gas/cris/x-to-dcr1-sreg.d index abfc1d1..533f172 100644 --- a/gas/testsuite/gas/cris/x-to-dcr1-sreg.d +++ b/gas/testsuite/gas/cris/x-to-dcr1-sreg.d @@ -55,4 +55,4 @@ Contents of section \.text: 0270 3c7e6f2d 00000000 3c7e7209 307a730d .* 0280 307a7f0d 00000000 307a7f0d 00000000 .* 0290 307a0000 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/elf/section0.d b/gas/testsuite/gas/elf/section0.d index ff7df71..286327c 100644 --- a/gas/testsuite/gas/elf/section0.d +++ b/gas/testsuite/gas/elf/section0.d @@ -3,7 +3,6 @@ .*: +file format .* -Contents of section .text: Contents of section .data: 0+000 00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00.* # The MIPS includes a 'section .reginfo' and such here. diff --git a/gas/testsuite/gas/elf/section1.d b/gas/testsuite/gas/elf/section1.d index 3de235f..4084752 100644 --- a/gas/testsuite/gas/elf/section1.d +++ b/gas/testsuite/gas/elf/section1.d @@ -3,7 +3,6 @@ .*: +file format .* -Contents of section .text: Contents of section .data: 0+000 00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00.* # The MIPS includes a 'section .reginfo' and such here. diff --git a/gas/testsuite/gas/i386/relax.d b/gas/testsuite/gas/i386/relax.d index 3aaed15..7eb5cec 100644 --- a/gas/testsuite/gas/i386/relax.d +++ b/gas/testsuite/gas/i386/relax.d @@ -6,7 +6,6 @@ Contents of section .text: 0+00 90 ?90 ?eb ?14 eb ?12 ?41 ?42 43 ?44 ?45 ?46 47 ?48 ?49 ?00 .* 0+10 00 ?00 ?00 ?00 00 ?00 ?00 ?00 .* -Contents of section .data: Contents of section .gcc_except_table: 0+000 02[ ]*.[ ]* Contents of section .gnu.linkonce.t.blah: diff --git a/gas/testsuite/gas/mips/elempic.d b/gas/testsuite/gas/mips/elempic.d index 1150a11..d40d5fd 100644 --- a/gas/testsuite/gas/mips/elempic.d +++ b/gas/testsuite/gas/mips/elempic.d @@ -131,12 +131,9 @@ Contents of section \.text: 00d0 33000010 0000033c 0c0163[26]4 0000033c .* 00e0 1c0163[26]4 cc000000 34000000 00000000 .* 00f0 cc000000 00000000 34000000 00000000 .* -Contents of section \.data: Contents of section \.reginfo: 0000 08000080 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section \.foo: 0000 00000000 0000033c 040063[26]4 0000033c .* 0010 0c0163[26]4 0000033c 180063[26]4 0000033c .* diff --git a/gas/testsuite/gas/mips/empic.d b/gas/testsuite/gas/mips/empic.d index 5a40d5d..6c3c93a 100644 --- a/gas/testsuite/gas/mips/empic.d +++ b/gas/testsuite/gas/mips/empic.d @@ -130,12 +130,9 @@ Contents of section \.text: 00d0 10000033 3c030000 [26]463010c 3c030000 .* 00e0 [26]463011c 000000cc 00000034 00000000 .* 00f0 00000000 000000cc 00000000 00000034 .* -Contents of section \.data: Contents of section \.reginfo: 0000 80000008 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section \.foo: 0000 00000000 3c030000 [26]4630004 3c030000 .* 0010 [26]463010c 3c030000 [26]4630018 3c030000 .* diff --git a/gas/testsuite/gas/mips/mips16-e.d b/gas/testsuite/gas/mips/mips16-e.d index 49a1705..2b2fe21 100644 --- a/gas/testsuite/gas/mips/mips16-e.d +++ b/gas/testsuite/gas/mips/mips16-e.d @@ -30,12 +30,9 @@ OFFSET [ ]+ TYPE VALUE Contents of section \.text: 0000 65006500 65006500 65006500 65006500 .* -Contents of section \.data: Contents of section \.reginfo: 0000 00000001 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section foo: 0000 00000000 00000008 00000000 00000003 .* 0010 00000000 00000008 00000000 00000000 .* diff --git a/gas/testsuite/gas/mips/mips16-f.d b/gas/testsuite/gas/mips/mips16-f.d index c98b04d..9339b6e 100644 --- a/gas/testsuite/gas/mips/mips16-f.d +++ b/gas/testsuite/gas/mips/mips16-f.d @@ -23,11 +23,8 @@ OFFSET [ ]+ TYPE VALUE Contents of section \.text: 0000 65006500 65006500 65006500 65006500 .* -Contents of section \.data: Contents of section \.reginfo: 0000 00000001 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section foo: 0000 00000003 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mips/mipsel16-e.d b/gas/testsuite/gas/mips/mipsel16-e.d index f8f5a37..ad8c990 100644 --- a/gas/testsuite/gas/mips/mipsel16-e.d +++ b/gas/testsuite/gas/mips/mipsel16-e.d @@ -31,12 +31,9 @@ OFFSET [ ]+ TYPE VALUE Contents of section \.text: 0000 00650065 00650065 00650065 00650065 .* -Contents of section \.data: Contents of section \.reginfo: 0000 01000000 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section foo: 0000 00000000 08000000 00000000 03000000 .* 0010 00000000 08000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mips/mipsel16-f.d b/gas/testsuite/gas/mips/mipsel16-f.d index 5de78ed..0e65842 100644 --- a/gas/testsuite/gas/mips/mipsel16-f.d +++ b/gas/testsuite/gas/mips/mipsel16-f.d @@ -24,11 +24,8 @@ OFFSET [ ]+ TYPE VALUE Contents of section \.text: 0000 00650065 00650065 00650065 00650065 .* -Contents of section \.data: Contents of section \.reginfo: 0000 01000000 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section foo: 0000 03000000 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mips/rm7000.d b/gas/testsuite/gas/mips/rm7000.d index 05df9c8..9a5ae23 100644 --- a/gas/testsuite/gas/mips/rm7000.d +++ b/gas/testsuite/gas/mips/rm7000.d @@ -12,3 +12,4 @@ Disassembly of section \.text: * 8: 70a60001 * madu \$5,\$6 * c: 00003812 * mflo \$7 *10: 01000011 * mthi \$8 + ... diff --git a/gas/testsuite/gas/mips/telempic.d b/gas/testsuite/gas/mips/telempic.d index 11700a1..96bc263 100644 --- a/gas/testsuite/gas/mips/telempic.d +++ b/gas/testsuite/gas/mips/telempic.d @@ -131,12 +131,9 @@ Contents of section \.text: 00d0 33000010 0000033c 0c0163[26]4 0000033c .* 00e0 1c0163[26]4 cc000000 34000000 00000000 .* 00f0 cc000000 00000000 34000000 00000000 .* -Contents of section \.data: Contents of section \.reginfo: 0000 08000080 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section \.foo: 0000 00000000 0000033c 040063[26]4 0000033c .* 0010 0c0163[26]4 0000033c 180063[26]4 0000033c .* diff --git a/gas/testsuite/gas/mips/tempic.d b/gas/testsuite/gas/mips/tempic.d index 5efa955..07dbc96 100644 --- a/gas/testsuite/gas/mips/tempic.d +++ b/gas/testsuite/gas/mips/tempic.d @@ -131,12 +131,9 @@ Contents of section \.text: 00d0 10000033 3c030000 [26]463010c 3c030000 .* 00e0 [26]463011c 000000cc 00000034 00000000 .* 00f0 00000000 000000cc 00000000 00000034 .* -Contents of section \.data: Contents of section \.reginfo: 0000 80000008 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section \.foo: 0000 00000000 3c030000 [26]4630004 3c030000 .* 0010 [26]463010c 3c030000 [26]4630018 3c030000 .* diff --git a/gas/testsuite/gas/mips/tmips16-e.d b/gas/testsuite/gas/mips/tmips16-e.d index bad8388..cf62fab 100644 --- a/gas/testsuite/gas/mips/tmips16-e.d +++ b/gas/testsuite/gas/mips/tmips16-e.d @@ -31,12 +31,9 @@ OFFSET [ ]+ TYPE VALUE Contents of section \.text: 0000 65006500 65006500 65006500 65006500 .* -Contents of section \.data: Contents of section \.reginfo: 0000 00000001 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section foo: 0000 00000000 00000008 00000000 00000003 .* 0010 00000000 00000008 00000000 00000000 .* diff --git a/gas/testsuite/gas/mips/tmips16-f.d b/gas/testsuite/gas/mips/tmips16-f.d index 63c85d1..d2197f0 100644 --- a/gas/testsuite/gas/mips/tmips16-f.d +++ b/gas/testsuite/gas/mips/tmips16-f.d @@ -24,11 +24,8 @@ OFFSET [ ]+ TYPE VALUE Contents of section \.text: 0000 65006500 65006500 65006500 65006500 .* -Contents of section \.data: Contents of section \.reginfo: 0000 00000001 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section foo: 0000 00000003 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mips/tmipsel16-e.d b/gas/testsuite/gas/mips/tmipsel16-e.d index dbabb7a..7495811 100644 --- a/gas/testsuite/gas/mips/tmipsel16-e.d +++ b/gas/testsuite/gas/mips/tmipsel16-e.d @@ -31,12 +31,9 @@ OFFSET [ ]+ TYPE VALUE Contents of section \.text: 0000 00650065 00650065 00650065 00650065 .* -Contents of section \.data: Contents of section \.reginfo: 0000 01000000 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section foo: 0000 00000000 08000000 00000000 03000000 .* 0010 00000000 08000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mips/tmipsel16-f.d b/gas/testsuite/gas/mips/tmipsel16-f.d index f6402df..032a796 100644 --- a/gas/testsuite/gas/mips/tmipsel16-f.d +++ b/gas/testsuite/gas/mips/tmipsel16-f.d @@ -24,11 +24,8 @@ OFFSET [ ]+ TYPE VALUE Contents of section \.text: 0000 00650065 00650065 00650065 00650065 .* -Contents of section \.data: Contents of section \.reginfo: 0000 01000000 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.(mdebug|pdr): -#... Contents of section foo: 0000 03000000 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/align-1.d b/gas/testsuite/gas/mmix/align-1.d index c4b4c41..94acac2 100644 --- a/gas/testsuite/gas/mmix/align-1.d +++ b/gas/testsuite/gas/mmix/align-1.d @@ -15,4 +15,4 @@ SYMBOL TABLE: Contents of section \.text: 0000 00000001 02000000 00000003 04000000 .* 0010 00000000 00000005 06000000 fd000102 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/mmix/basep-10.d b/gas/testsuite/gas/mmix/basep-10.d index 6a24e9d..fcf486f 100644 --- a/gas/testsuite/gas/mmix/basep-10.d +++ b/gas/testsuite/gas/mmix/basep-10.d @@ -29,6 +29,5 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 fd000000 232a0000 232b0000 232c000c .* 0010 232d0000 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/basep-11.d b/gas/testsuite/gas/mmix/basep-11.d index 36eacf9..81227c0 100644 --- a/gas/testsuite/gas/mmix/basep-11.d +++ b/gas/testsuite/gas/mmix/basep-11.d @@ -22,4 +22,4 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 fd000000 232a0000 232b0000 232c0000 .* 0010 232d0000 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/mmix/basep-9.d b/gas/testsuite/gas/mmix/basep-9.d index 9bc9155..0a61637 100644 --- a/gas/testsuite/gas/mmix/basep-9.d +++ b/gas/testsuite/gas/mmix/basep-9.d @@ -24,6 +24,5 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 232a0000 232c0000 232d0004 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/comment-3.d b/gas/testsuite/gas/mmix/comment-3.d index 1e3f0ba..2614051 100644 --- a/gas/testsuite/gas/mmix/comment-3.d +++ b/gas/testsuite/gas/mmix/comment-3.d @@ -15,7 +15,5 @@ OFFSET TYPE VALUE 0000000000000000 R_MMIX_64 \.text -Contents of section \.text: -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/cons-1.d b/gas/testsuite/gas/mmix/cons-1.d index ab263b0..d56a3f9 100644 --- a/gas/testsuite/gas/mmix/cons-1.d +++ b/gas/testsuite/gas/mmix/cons-1.d @@ -4,4 +4,4 @@ Contents of section \.text: 0000 00000000 00000000 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/mmix/cons-2.d b/gas/testsuite/gas/mmix/cons-2.d index dbb8a07..6e354a5 100644 --- a/gas/testsuite/gas/mmix/cons-2.d +++ b/gas/testsuite/gas/mmix/cons-2.d @@ -11,4 +11,4 @@ SYMBOL TABLE: Contents of section \.text: 0000 61623b00 00000000 00000000 00000064 .* 0010 00000000 00000065 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/mmix/expr-1.d b/gas/testsuite/gas/mmix/expr-1.d index 5f0fea9..68a04f3 100644 --- a/gas/testsuite/gas/mmix/expr-1.d +++ b/gas/testsuite/gas/mmix/expr-1.d @@ -4,4 +4,4 @@ Contents of section \.text: 0000 000000ab 00000100 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/mmix/fb-1.d b/gas/testsuite/gas/mmix/fb-1.d index 255cafc..3610c71 100644 --- a/gas/testsuite/gas/mmix/fb-1.d +++ b/gas/testsuite/gas/mmix/fb-1.d @@ -16,6 +16,5 @@ OFFSET TYPE VALUE Contents of section \.text: 0+ dd2d0038 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0+ 00000000 aabbccdd 00000000 00112233 .* diff --git a/gas/testsuite/gas/mmix/fb-2.d b/gas/testsuite/gas/mmix/fb-2.d index 4b80fc4..5e412d5 100644 --- a/gas/testsuite/gas/mmix/fb-2.d +++ b/gas/testsuite/gas/mmix/fb-2.d @@ -28,6 +28,5 @@ Contents of section \.text: 0020 00000000 fd000000 231e0000 00000000 .* 0030 00000000 00000000 00000000 00000000 .* 0040 fd000000 002a002b 002b002c .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/greg1.d b/gas/testsuite/gas/mmix/greg1.d index 9040498..5c45364 100644 --- a/gas/testsuite/gas/mmix/greg1.d +++ b/gas/testsuite/gas/mmix/greg1.d @@ -28,7 +28,6 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 e37b01c8 e3ea1edb fd020304 fd010203 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 00000000 000000f7 .* 0010 00000000 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/greg1a.d b/gas/testsuite/gas/mmix/greg1a.d index 557d4b8..932f4e4 100644 --- a/gas/testsuite/gas/mmix/greg1a.d +++ b/gas/testsuite/gas/mmix/greg1a.d @@ -31,7 +31,6 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 e37b01c8 e3ea1edb fd020304 fd010203 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 00000000 000000f7 .* 0010 00000000 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/greg2.d b/gas/testsuite/gas/mmix/greg2.d index 9040498..5c45364 100644 --- a/gas/testsuite/gas/mmix/greg2.d +++ b/gas/testsuite/gas/mmix/greg2.d @@ -28,7 +28,6 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 e37b01c8 e3ea1edb fd020304 fd010203 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 00000000 000000f7 .* 0010 00000000 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/greg2a.d b/gas/testsuite/gas/mmix/greg2a.d index a2ebfe3..1fbd88d 100644 --- a/gas/testsuite/gas/mmix/greg2a.d +++ b/gas/testsuite/gas/mmix/greg2a.d @@ -31,7 +31,6 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 e37b01c8 e3ea1edb fd020304 fd010203 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 00000000 000000f7 .* 0010 00000000 00000000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/greg3.d b/gas/testsuite/gas/mmix/greg3.d index 4e73f0e..9b76614 100644 --- a/gas/testsuite/gas/mmix/greg3.d +++ b/gas/testsuite/gas/mmix/greg3.d @@ -26,6 +26,5 @@ Contents of section \.text: 0000 8f030010 8e030700 8f050004 fd000001 .* 0010 fd000002 fd000003 fd000004 fd000005 .* 0020 fd000006 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/greg4.d b/gas/testsuite/gas/mmix/greg4.d index 77dd86a..224794e 100644 --- a/gas/testsuite/gas/mmix/greg4.d +++ b/gas/testsuite/gas/mmix/greg4.d @@ -24,6 +24,5 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 fd000000 fd000001 9f000004 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/greg7.d b/gas/testsuite/gas/mmix/greg7.d index 68f5a32..b6021e2 100644 --- a/gas/testsuite/gas/mmix/greg7.d +++ b/gas/testsuite/gas/mmix/greg7.d @@ -23,6 +23,5 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 00000000 00000021 232c0004 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000004 .* diff --git a/gas/testsuite/gas/mmix/greg8.d b/gas/testsuite/gas/mmix/greg8.d index 4d741fa..a8314b4 100644 --- a/gas/testsuite/gas/mmix/greg8.d +++ b/gas/testsuite/gas/mmix/greg8.d @@ -28,6 +28,5 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 00000000 00000021 232c0054 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/is-1.d b/gas/testsuite/gas/mmix/is-1.d index 1b6f32e..c96fa50 100644 --- a/gas/testsuite/gas/mmix/is-1.d +++ b/gas/testsuite/gas/mmix/is-1.d @@ -9,4 +9,4 @@ SYMBOL TABLE: Contents of section \.text: 0+ 00000026 0000001f 0000000d 0000001e .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/mmix/local-1.d b/gas/testsuite/gas/mmix/local-1.d index 51418f6..2656cfd 100644 --- a/gas/testsuite/gas/mmix/local-1.d +++ b/gas/testsuite/gas/mmix/local-1.d @@ -35,4 +35,3 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 fd000000 .* -Contents of section \.data: diff --git a/gas/testsuite/gas/mmix/odd-1.d b/gas/testsuite/gas/mmix/odd-1.d index 0162e1d..8cec211 100644 --- a/gas/testsuite/gas/mmix/odd-1.d +++ b/gas/testsuite/gas/mmix/odd-1.d @@ -23,6 +23,5 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 f9000000 ff016400 fb0000ff fb000000 .* 0010 00000001 33000408 c1000200 0004022a .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 00000abc .* diff --git a/gas/testsuite/gas/mmix/op-0-1.d b/gas/testsuite/gas/mmix/op-0-1.d index 56c51e8..85791e8 100644 --- a/gas/testsuite/gas/mmix/op-0-1.d +++ b/gas/testsuite/gas/mmix/op-0-1.d @@ -25,4 +25,4 @@ Contents of section \.text: 0010 fd000000 f4070000 fd000000 fd000000 .* 0020 fd000000 f2080000 fd000000 fd000000 .* 0030 fd000000 fd000000 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/mmix/op-0-2.d b/gas/testsuite/gas/mmix/op-0-2.d index 4a3c668..530e8d4 100644 --- a/gas/testsuite/gas/mmix/op-0-2.d +++ b/gas/testsuite/gas/mmix/op-0-2.d @@ -23,4 +23,4 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 f0000000 f4070000 f2080000 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/mmix/prefix3.d b/gas/testsuite/gas/mmix/prefix3.d index ecd7538..1b1a1ef 100644 --- a/gas/testsuite/gas/mmix/prefix3.d +++ b/gas/testsuite/gas/mmix/prefix3.d @@ -27,6 +27,5 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 81ff0000 81fe0000 .* -Contents of section \.data: Contents of section \.MMIX\.reg_contents: 0000 00000000 0008aa52 00000000 00000000 .* diff --git a/gas/testsuite/gas/mmix/pseudo-1.d b/gas/testsuite/gas/mmix/pseudo-1.d index 293e2d9..e7ac99a 100644 --- a/gas/testsuite/gas/mmix/pseudo-1.d +++ b/gas/testsuite/gas/mmix/pseudo-1.d @@ -13,4 +13,3 @@ SYMBOL TABLE: Contents of section \.text: 0000 00000020 00000020 00000020 00000020 .* 0010 0000000a 00000000 .* -Contents of section \.data: diff --git a/gas/testsuite/gas/mmix/weak1.d b/gas/testsuite/gas/mmix/weak1.d index d0696e0..c51726d 100644 --- a/gas/testsuite/gas/mmix/weak1.d +++ b/gas/testsuite/gas/mmix/weak1.d @@ -20,4 +20,4 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 f8010000 f20f0000 fd000000 fd000000 .* 0010 fd000000 fd000000 00000000 00000000 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/sh/sh64/crange1-1.d b/gas/testsuite/gas/sh/sh64/crange1-1.d index 23c7f06..8c38663 100644 --- a/gas/testsuite/gas/sh/sh64/crange1-1.d +++ b/gas/testsuite/gas/sh/sh64/crange1-1.d @@ -24,7 +24,6 @@ OFFSET *TYPE *VALUE Contents of section \.text: 0000 6ff0fff0 cc00aad0 cc0022e0 6ff0fff0 .* -Contents of section \.data: Contents of section \.text\.compact: 0000 0009e02a 89000009 0009 .* Contents of section \.text\.shmediaanddata: diff --git a/gas/testsuite/gas/sh/sh64/crange1-2.d b/gas/testsuite/gas/sh/sh64/crange1-2.d index bef541b..595ed39 100644 --- a/gas/testsuite/gas/sh/sh64/crange1-2.d +++ b/gas/testsuite/gas/sh/sh64/crange1-2.d @@ -27,7 +27,6 @@ OFFSET *TYPE *VALUE Contents of section \.text: 0000 6ff0fff0 cc00aad0 cc0022e0 6ff0fff0 .* -Contents of section \.data: Contents of section \.text\.compact: 0000 0009e02a 89000009 0009 .* Contents of section \.text\.shmediaanddata: diff --git a/gas/testsuite/gas/sh/sh64/crange2-2.d b/gas/testsuite/gas/sh/sh64/crange2-2.d index ce5a03e..89fc49c 100644 --- a/gas/testsuite/gas/sh/sh64/crange2-2.d +++ b/gas/testsuite/gas/sh/sh64/crange2-2.d @@ -17,7 +17,6 @@ Contents of section \.text: 0000 e8000a30 ec001240 ec001250 6ff0fff0 .* 0010 00090009 00090009 00090009 00090009 .* 0020 00090009 effffa60 effffa70 ebffe200 .* -Contents of section .data: Contents of section .cranges: 0000 00000000 00000010 00030000 00100000 .* 0010 00140002 00000024 0000000c 0003 .* diff --git a/gas/testsuite/gas/sh/sh64/crange3-1.d b/gas/testsuite/gas/sh/sh64/crange3-1.d index 1210d76..d7ddb0b 100644 --- a/gas/testsuite/gas/sh/sh64/crange3-1.d +++ b/gas/testsuite/gas/sh/sh64/crange3-1.d @@ -17,7 +17,6 @@ Contents of section \.text: 0010 01235678 12345678 12345678 1234fede .* 0020 6ff0fff0 6ff0fff0 6ff0fff0 6ff0fff0 .* 0030 6ff0fff0 .* -Contents of section \.data: Contents of section \.rodata: 0000 abcdef01 12345678 .* Contents of section \.cranges: diff --git a/gas/testsuite/gas/sh/sh64/crange4-1.d b/gas/testsuite/gas/sh/sh64/crange4-1.d index 1472492..e31d530 100644 --- a/gas/testsuite/gas/sh/sh64/crange4-1.d +++ b/gas/testsuite/gas/sh/sh64/crange4-1.d @@ -14,7 +14,6 @@ OFFSET *TYPE *VALUE Contents of section \.text: 0000 6ff0fff0 00000000 00000000 00000000 .* 0010 00000000 00000000 .* -Contents of section \.data: Contents of section \.cranges: 0000 00000000 00000004 00030000 00040000 .* 0010 00140001 .* diff --git a/gas/testsuite/gas/sh/sh64/crange5-1.d b/gas/testsuite/gas/sh/sh64/crange5-1.d index bccb592..1c58522 100644 --- a/gas/testsuite/gas/sh/sh64/crange5-1.d +++ b/gas/testsuite/gas/sh/sh64/crange5-1.d @@ -10,4 +10,3 @@ Contents of section \.text: 0010 acf00c00 acf009c0 acf00520 00f8fce0 .* 0020 0029fc10 e4110200 ebffda50 d81201c0 .* 0030 e8000a00 cc000420 6ff0fff0 .* -Contents of section .data: diff --git a/gas/testsuite/gas/sh/sh64/datal32-3.d b/gas/testsuite/gas/sh/sh64/datal32-3.d index 074db6d..ca46631 100644 --- a/gas/testsuite/gas/sh/sh64/datal32-3.d +++ b/gas/testsuite/gas/sh/sh64/datal32-3.d @@ -90,6 +90,5 @@ Contents of section \.text: 0040 cc000210 c8000210 cc000080 c8000080 .* 0050 cc0002c0 c80002c0 cc0001e0 c80001e0 .* 0060 6ff0fff0 6ff0fff0 6ff0fff0 .* -Contents of section \.data: Contents of section \.rodata: 0000 00000048 00000088 00000008 00000020 .* diff --git a/gas/testsuite/gas/sh/sh64/datal64-3.d b/gas/testsuite/gas/sh/sh64/datal64-3.d index 3c07f43..7a5ddad 100644 --- a/gas/testsuite/gas/sh/sh64/datal64-3.d +++ b/gas/testsuite/gas/sh/sh64/datal64-3.d @@ -119,6 +119,5 @@ Contents of section \.text: 00a0 c80002c0 c80002c0 cc0001e0 c80001e0 .* 00b0 c80001e0 c80001e0 6ff0fff0 6ff0fff0 .* 00c0 6ff0fff0 .* -Contents of section \.data: Contents of section \.rodata: 0000 00000088 000000d0 00000008 00000020 .* diff --git a/gas/testsuite/gas/sh/sh64/endian-1.d b/gas/testsuite/gas/sh/sh64/endian-1.d index cdc0c9c..3d2ca8e 100644 --- a/gas/testsuite/gas/sh/sh64/endian-1.d +++ b/gas/testsuite/gas/sh/sh64/endian-1.d @@ -6,4 +6,4 @@ Contents of section .text: 0000 00d048cc 78563412 34120000.* -Contents of section .data: + diff --git a/gas/testsuite/gas/sh/sh64/endian-2.d b/gas/testsuite/gas/sh/sh64/endian-2.d index 1fc1e19..7f6d265 100644 --- a/gas/testsuite/gas/sh/sh64/endian-2.d +++ b/gas/testsuite/gas/sh/sh64/endian-2.d @@ -6,5 +6,5 @@ Contents of section .text: 0000 cc48d000 12345678 12340000.* -Contents of section .data: + diff --git a/gas/testsuite/gas/sh/sh64/localcom-1.d b/gas/testsuite/gas/sh/sh64/localcom-1.d index bd8bc93..9c717a1 100644 --- a/gas/testsuite/gas/sh/sh64/localcom-1.d +++ b/gas/testsuite/gas/sh/sh64/localcom-1.d @@ -27,4 +27,4 @@ OFFSET *TYPE *VALUE Contents of section \.text: 0000 00090009 00090009 00090009 00090009 .* 0010 00000004 00000004 0000000c 1234 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/sh/sh64/rel32-5.d b/gas/testsuite/gas/sh/sh64/rel32-5.d index b2bd838..7472013 100644 --- a/gas/testsuite/gas/sh/sh64/rel32-5.d +++ b/gas/testsuite/gas/sh/sh64/rel32-5.d @@ -27,4 +27,4 @@ Contents of section \.text: 0050 6ff0fff0 6ff0fff0 6ff0fff0 6ff0fff0 .* 0060 6ff0fff0 6ff0fff0 6ff0fff0 6ff0fff0 .* 0070 6ff0fff0 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/sh/sh64/rel64-5.d b/gas/testsuite/gas/sh/sh64/rel64-5.d index 63b04bb..cd7b927 100644 --- a/gas/testsuite/gas/sh/sh64/rel64-5.d +++ b/gas/testsuite/gas/sh/sh64/rel64-5.d @@ -37,4 +37,4 @@ Contents of section \.text: 0070 6ff0fff0 6ff0fff0 6ff0fff0 6ff0fff0 .* 0080 6ff0fff0 6ff0fff0 6ff0fff0 6ff0fff0 .* 0090 6ff0fff0 .* -Contents of section \.data: + diff --git a/gas/testsuite/gas/sh/sh64/ua32-1.d b/gas/testsuite/gas/sh/sh64/ua32-1.d index 79b4ccf..879209d 100644 --- a/gas/testsuite/gas/sh/sh64/ua32-1.d +++ b/gas/testsuite/gas/sh/sh64/ua32-1.d @@ -16,8 +16,6 @@ OFFSET *TYPE *VALUE 0+30 R_SH_64 externsym3\+0x0+2b -Contents of section \.text: -Contents of section \.data: Contents of section \.rodata: 0000 01234567 89abcdef 2a4a2143 b1abcd00 .* 0010 00000301 2c456d89 ab1d0f00 00000000 .* diff --git a/gas/testsuite/gas/sh/sh64/ua64-1.d b/gas/testsuite/gas/sh/sh64/ua64-1.d index 8ba6287..cfe3dbb 100644 --- a/gas/testsuite/gas/sh/sh64/ua64-1.d +++ b/gas/testsuite/gas/sh/sh64/ua64-1.d @@ -16,8 +16,6 @@ OFFSET TYPE VALUE 0+30 R_SH_64 externsym3\+0x000000000000002b -Contents of section \.text: -Contents of section \.data: Contents of section \.rodata: 0000 01234567 89abcdef 2a4a2143 b1abcd00 .* 0010 00000301 2c456d89 ab1d0f00 00000000 .* diff --git a/gas/testsuite/gas/xstormy16/reloc-1.d b/gas/testsuite/gas/xstormy16/reloc-1.d index 60848cd..21ff86e 100644 --- a/gas/testsuite/gas/xstormy16/reloc-1.d +++ b/gas/testsuite/gas/xstormy16/reloc-1.d @@ -23,4 +23,4 @@ OFFSET TYPE VALUE Contents of section \.text: 0000 00000000 00000000 00000000 00000000 \................ 0010 00000000 00000000 0000 \.......... -Contents of section \.data: + |