Use bfd_map_over_sections to walk section chain.

Do not dump the contents of an empty section.
This commit is contained in:
Nick Clifton 2003-09-03 08:26:52 +00:00
parent 60b04ee881
commit 155e0d2321
67 changed files with 877 additions and 791 deletions

View File

@ -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.

View File

@ -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

File diff suppressed because it is too large Load Diff

View File

@ -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

View File

@ -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:

View File

@ -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:

View File

@ -9,4 +9,4 @@ Contents of section \.text:
0020 696e6522 20617420 74686520 27656e64 .*
0030 274d6567 6174726f 69640a41 582d466f .*
0040 6f0d0a00 .*
Contents of section \.data:

View File

@ -9,4 +9,4 @@ Contents of section \.text:
0020 696e6522 20617420 74686520 27656e64 .*
0030 274d6567 6174726f 69640a41 582d466f .*
0040 6f0d0a00 .*
Contents of section \.data:

View File

@ -55,4 +55,4 @@ Contents of section \.text:
0270 3c7e6f2d 00000000 3c7e7209 307a730d .*
0280 307a7f0d 00000000 307a7f0d 00000000 .*
0290 307a0000 .*
Contents of section \.data:

View File

@ -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.

View File

@ -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.

View File

@ -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:

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -12,3 +12,4 @@ Disassembly of section \.text:
* 8: 70a60001 * madu \$5,\$6
* c: 00003812 * mflo \$7
*10: 01000011 * mthi \$8
...

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -15,4 +15,4 @@ SYMBOL TABLE:
Contents of section \.text:
0000 00000001 02000000 00000003 04000000 .*
0010 00000000 00000005 06000000 fd000102 .*
Contents of section \.data:

View File

@ -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 .*

View File

@ -22,4 +22,4 @@ OFFSET TYPE VALUE
Contents of section \.text:
0000 fd000000 232a0000 232b0000 232c0000 .*
0010 232d0000 .*
Contents of section \.data:

View File

@ -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 .*

View File

@ -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 .*

View File

@ -4,4 +4,4 @@
Contents of section \.text:
0000 00000000 00000000 .*
Contents of section \.data:

View File

@ -11,4 +11,4 @@ SYMBOL TABLE:
Contents of section \.text:
0000 61623b00 00000000 00000000 00000064 .*
0010 00000000 00000065 .*
Contents of section \.data:

View File

@ -4,4 +4,4 @@
Contents of section \.text:
0000 000000ab 00000100 .*
Contents of section \.data:

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -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 .*

View File

@ -9,4 +9,4 @@ SYMBOL TABLE:
Contents of section \.text:
0+ 00000026 0000001f 0000000d 0000001e .*
Contents of section \.data:

View File

@ -35,4 +35,3 @@ OFFSET TYPE VALUE
Contents of section \.text:
0000 fd000000 .*
Contents of section \.data:

View File

@ -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 .*

View File

@ -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:

View File

@ -23,4 +23,4 @@ OFFSET TYPE VALUE
Contents of section \.text:
0000 f0000000 f4070000 f2080000 .*
Contents of section \.data:

View File

@ -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 .*

View File

@ -13,4 +13,3 @@ SYMBOL TABLE:
Contents of section \.text:
0000 00000020 00000020 00000020 00000020 .*
0010 0000000a 00000000 .*
Contents of section \.data:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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 .*

View File

@ -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:

View File

@ -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 .*

View File

@ -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:

View File

@ -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 .*

View File

@ -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 .*

View File

@ -6,4 +6,4 @@
Contents of section .text:
0000 00d048cc 78563412 34120000.*
Contents of section .data:

View File

@ -6,5 +6,5 @@
Contents of section .text:
0000 cc48d000 12345678 12340000.*
Contents of section .data:

View File

@ -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:

View File

@ -27,4 +27,4 @@ Contents of section \.text:
0050 6ff0fff0 6ff0fff0 6ff0fff0 6ff0fff0 .*
0060 6ff0fff0 6ff0fff0 6ff0fff0 6ff0fff0 .*
0070 6ff0fff0 .*
Contents of section \.data:

View File

@ -37,4 +37,4 @@ Contents of section \.text:
0070 6ff0fff0 6ff0fff0 6ff0fff0 6ff0fff0 .*
0080 6ff0fff0 6ff0fff0 6ff0fff0 6ff0fff0 .*
0090 6ff0fff0 .*
Contents of section \.data:

View File

@ -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 .*

View File

@ -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 .*

View File

@ -23,4 +23,4 @@ OFFSET TYPE VALUE
Contents of section \.text:
0000 00000000 00000000 00000000 00000000 \................
0010 00000000 00000000 0000 \..........
Contents of section \.data: