2009-09-24  H.J. Lu  <hongjiu.lu@intel.com>

	PR ld/10630
	* elflink.c (elf_link_output_extsym): Turn off visibility on
	local symbol.
	(bfd_elf_final_link): Turn off visibility on dynamic local
	symbol.

ld/testsuite/

2009-09-24  H.J. Lu  <hongjiu.lu@intel.com>

	PR ld/10630
	* ld-alpha/tlsbin.rd: Remove HIDDEN/.hidden on local symbols.
	* ld-alpha/tlsbinr.rd: Likewise.
	* ld-alpha/tlspic.rd: Likewise.
	* ld-cris/libdso-2.d: Likewise.
	* ld-cris/locref1.d: Likewise.
	* ld-cris/locref2.d: Likewise.
	* ld-cris/tls-e-20a.d: Likewise.
	* ld-cris/tls-e-20.d: Likewise.
	* ld-cris/tls-e-80.d: Likewise.
	* ld-cris/tls-gc-68.d: Likewise.
	* ld-cris/tls-gc-69.d: Likewise.
	* ld-cris/tls-gc-70.d: Likewise.
	* ld-cris/tls-gc-75.d: Likewise.
	* ld-cris/tls-gc-76.d: Likewise.
	* ld-cris/tls-gc-79.d: Likewise.
	* ld-cris/tls-gd-1h.d: Likewise.
	* ld-cris/tls-gd-2h.d: Likewise.
	* ld-cris/tls-ld-4.d: Likewise.
	* ld-cris/tls-ld-5.d: Likewise.
	* ld-cris/tls-ld-6.d: Likewise.
	* ld-cris/tls-ld-7.d: Likewise.
	* ld-cris/tls-ldgd-14.d: Likewise.
	* ld-cris/tls-ldgd-15.d: Likewise.
	* ld-cris/tls-local-63.d: Likewise.
	* ld-cris/tls-local-64.d: Likewise.
	* ld-elf/pr9676.rd: Likewise.
	* ld-elf/pr9679.rd: Likewise.
	* ld-elfvsb/hidden2.d: Likewise.
	* ld-i386/tlsbindesc.rd: Likewise.
	* ld-i386/tlsbin.rd: Likewise.
	* ld-i386/tlsdesc.rd: Likewise.
	* ld-i386/tlsgdesc.rd: Likewise.
	* ld-i386/tlsnopic.rd: Likewise.
	* ld-i386/tlspic.rd: Likewise.
	* ld-ia64/tlsbin.rd: Likewise.
	* ld-ia64/tlspic.rd: Likewise.
	* ld-powerpc/tlsexe32.r: Likewise.
	* ld-powerpc/tlsexe.r: Likewise.
	* ld-powerpc/tlsexetoc.r: Likewise.
	* ld-powerpc/tlsso32.r: Likewise.
	* ld-powerpc/tlsso.r: Likewise.
	* ld-powerpc/tlstocso.r: Likewise.
	* ld-s390/tlsbin_64.rd: Likewise.
	* ld-s390/tlsbin.rd: Likewise.
	* ld-s390/tlspic_64.rd: Likewise.
	* ld-s390/tlspic.rd: Likewise.
	* ld-sparc/gotop32.rd: Likewise.
	* ld-sparc/gotop64.rd: Likewise.
	* ld-sparc/tlssunbin32.rd: Likewise.
	* ld-sparc/tlssunbin64.rd: Likewise.
	* ld-sparc/tlssunnopic32.rd: Likewise.
	* ld-sparc/tlssunnopic64.rd: Likewise.
	* ld-sparc/tlssunpic32.rd: Likewise.
	* ld-sparc/tlssunpic64.rd: Likewise.
	* ld-x86-64/tlsbindesc.rd: Likewise.
	* ld-x86-64/tlsbin.rd: Likewise.
	* ld-x86-64/tlsdesc.rd: Likewise.
	* ld-x86-64/tlsgdesc.rd: Likewise.
	* ld-x86-64/tlspic.rd: Likewise.
	* ld-xtensa/tlsbin.rd: Likewise.
	* ld-xtensa/tlspic.rd: Likewise.

	* ld-elf/local1.d: New.
	* ld-elf/local1.map: Likewise.
	* ld-elf/local1.s: Likewise.
	* ld-ia64/local1.d: Likewise.
	* ld-ia64/local1.map: Likewise.
	* ld-ia64/local1.s: Likewise.
This commit is contained in:
H.J. Lu
2009-09-24 15:56:52 +00:00
parent f4be36b3fb
commit 935bd1e079
64 changed files with 388 additions and 306 deletions

View File

@ -1,3 +1,11 @@
2009-09-24 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10630
* elflink.c (elf_link_output_extsym): Turn off visibility on
local symbol.
(bfd_elf_final_link): Turn off visibility on dynamic local
symbol.
2009-09-24 Alan Modra <amodra@bigpond.net.au> 2009-09-24 Alan Modra <amodra@bigpond.net.au>
PR binutils/10654 PR binutils/10654

View File

@ -8632,7 +8632,11 @@ elf_link_output_extsym (struct elf_link_hash_entry *h, void *data)
sym.st_size = h->size; sym.st_size = h->size;
sym.st_other = h->other; sym.st_other = h->other;
if (h->forced_local) if (h->forced_local)
sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type); {
sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type);
/* Turn off visibility on local symbol. */
sym.st_other &= ~ELF_ST_VISIBILITY (-1);
}
else if (h->unique_global) else if (h->unique_global)
sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, h->type); sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, h->type);
else if (h->root.type == bfd_link_hash_undefweak else if (h->root.type == bfd_link_hash_undefweak
@ -10704,13 +10708,11 @@ bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
asection *s; asection *s;
bfd_byte *dest; bfd_byte *dest;
sym.st_size = e->isym.st_size; /* Copy the internal symbol and turn off visibility.
sym.st_other = e->isym.st_other;
/* Copy the internal symbol as is.
Note that we saved a word of storage and overwrote Note that we saved a word of storage and overwrote
the original st_name with the dynstr_index. */ the original st_name with the dynstr_index. */
sym = e->isym; sym = e->isym;
sym.st_other &= ~ELF_ST_VISIBILITY (-1);
s = bfd_section_from_elf_index (e->input_bfd, s = bfd_section_from_elf_index (e->input_bfd,
e->isym.st_shndx); e->isym.st_shndx);

View File

@ -1,3 +1,75 @@
2009-09-24 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10630
* ld-alpha/tlsbin.rd: Remove HIDDEN/.hidden on local symbols.
* ld-alpha/tlsbinr.rd: Likewise.
* ld-alpha/tlspic.rd: Likewise.
* ld-cris/libdso-2.d: Likewise.
* ld-cris/locref1.d: Likewise.
* ld-cris/locref2.d: Likewise.
* ld-cris/tls-e-20a.d: Likewise.
* ld-cris/tls-e-20.d: Likewise.
* ld-cris/tls-e-80.d: Likewise.
* ld-cris/tls-gc-68.d: Likewise.
* ld-cris/tls-gc-69.d: Likewise.
* ld-cris/tls-gc-70.d: Likewise.
* ld-cris/tls-gc-75.d: Likewise.
* ld-cris/tls-gc-76.d: Likewise.
* ld-cris/tls-gc-79.d: Likewise.
* ld-cris/tls-gd-1h.d: Likewise.
* ld-cris/tls-gd-2h.d: Likewise.
* ld-cris/tls-ld-4.d: Likewise.
* ld-cris/tls-ld-5.d: Likewise.
* ld-cris/tls-ld-6.d: Likewise.
* ld-cris/tls-ld-7.d: Likewise.
* ld-cris/tls-ldgd-14.d: Likewise.
* ld-cris/tls-ldgd-15.d: Likewise.
* ld-cris/tls-local-63.d: Likewise.
* ld-cris/tls-local-64.d: Likewise.
* ld-elf/pr9676.rd: Likewise.
* ld-elf/pr9679.rd: Likewise.
* ld-elfvsb/hidden2.d: Likewise.
* ld-i386/tlsbindesc.rd: Likewise.
* ld-i386/tlsbin.rd: Likewise.
* ld-i386/tlsdesc.rd: Likewise.
* ld-i386/tlsgdesc.rd: Likewise.
* ld-i386/tlsnopic.rd: Likewise.
* ld-i386/tlspic.rd: Likewise.
* ld-ia64/tlsbin.rd: Likewise.
* ld-ia64/tlspic.rd: Likewise.
* ld-powerpc/tlsexe32.r: Likewise.
* ld-powerpc/tlsexe.r: Likewise.
* ld-powerpc/tlsexetoc.r: Likewise.
* ld-powerpc/tlsso32.r: Likewise.
* ld-powerpc/tlsso.r: Likewise.
* ld-powerpc/tlstocso.r: Likewise.
* ld-s390/tlsbin_64.rd: Likewise.
* ld-s390/tlsbin.rd: Likewise.
* ld-s390/tlspic_64.rd: Likewise.
* ld-s390/tlspic.rd: Likewise.
* ld-sparc/gotop32.rd: Likewise.
* ld-sparc/gotop64.rd: Likewise.
* ld-sparc/tlssunbin32.rd: Likewise.
* ld-sparc/tlssunbin64.rd: Likewise.
* ld-sparc/tlssunnopic32.rd: Likewise.
* ld-sparc/tlssunnopic64.rd: Likewise.
* ld-sparc/tlssunpic32.rd: Likewise.
* ld-sparc/tlssunpic64.rd: Likewise.
* ld-x86-64/tlsbindesc.rd: Likewise.
* ld-x86-64/tlsbin.rd: Likewise.
* ld-x86-64/tlsdesc.rd: Likewise.
* ld-x86-64/tlsgdesc.rd: Likewise.
* ld-x86-64/tlspic.rd: Likewise.
* ld-xtensa/tlsbin.rd: Likewise.
* ld-xtensa/tlspic.rd: Likewise.
* ld-elf/local1.d: New.
* ld-elf/local1.map: Likewise.
* ld-elf/local1.s: Likewise.
* ld-ia64/local1.d: Likewise.
* ld-ia64/local1.map: Likewise.
* ld-ia64/local1.s: Likewise.
2009-09-23 Matt Rice <ratmice@gmail.com> 2009-09-23 Matt Rice <ratmice@gmail.com>
* ld-elf/audit.exp: New. * ld-elf/audit.exp: New.

View File

@ -96,9 +96,9 @@ Symbol table '\.symtab' contains [0-9]+ entries:
[0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl6 [0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl6
[0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl7 [0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl7
[0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl8 [0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl8
[0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +11 _DYNAMIC [0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +11 _DYNAMIC
[0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +12 _PROCEDURE_LINKAGE_TABLE_ [0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +12 _PROCEDURE_LINKAGE_TABLE_
[0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +13 _GLOBAL_OFFSET_TABLE_ [0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +13 _GLOBAL_OFFSET_TABLE_
[0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +9 sg8 [0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +9 sg8
[0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +10 bg8 [0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +10 bg8
[0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +10 bg6 [0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +10 bg6

View File

@ -91,9 +91,9 @@ Symbol table '\.symtab' contains [0-9]+ entries:
[0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl6 [0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl6
[0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl7 [0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl7
[0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl8 [0-9 ]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +10 bl8
[0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +11 _DYNAMIC [0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +11 _DYNAMIC
[0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +12 _PROCEDURE_LINKAGE_TABLE_ [0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +12 _PROCEDURE_LINKAGE_TABLE_
[0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +13 _GLOBAL_OFFSET_TABLE_ [0-9 ]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +13 _GLOBAL_OFFSET_TABLE_
[0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +9 sg8 [0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +9 sg8
[0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +10 bg8 [0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +10 bg8
[0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +10 bg6 [0-9 ]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +10 bg6

View File

@ -94,25 +94,25 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl6 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl6
.* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl7 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl7
.* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl8 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl8
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +9 sH1 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +9 sH1
.* [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +8 sh3 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sh3
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +9 sH2 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +9 sH2
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +9 sH7 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +9 sH7
.* [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _PROCEDURE_LINKAGE_TABLE_ .* [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +8 sh7 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sh7
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +8 sh8 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sh8
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +9 sH4 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +9 sH4
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +8 sh4 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sh4
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +9 sH3 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +9 sH3
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +8 sh5 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sh5
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +9 sH5 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +9 sH5
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +9 sH6 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +9 sH6
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +9 sH8 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +9 sH8
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +8 sh1 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sh1
.* [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +8 sh2 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sh2
.* [0-9a-f]+ +0 +TLS +LOCAL +HIDDEN +8 sh6 .* [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sh6
.* [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg8 .* [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg8
.* [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg3 .* [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg3
.* [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg4 .* [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg4

View File

@ -48,10 +48,10 @@ Symbol table '\.symtab' contains 18 entries:
+7: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +7 +7: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +7
+8: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +8 +8: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +8
+9: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +9 +9: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +9
+10: 0+2..[046c] +0 +OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC +10: 0+2..[046c] +0 +OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
+11: 0+2..[046c] +0 +NOTYPE +LOCAL +DEFAULT +ABS __bss_start +11: 0+2..[046c] +0 +NOTYPE +LOCAL +DEFAULT +ABS __bss_start
+12: 0+2..[046c] +0 +NOTYPE +LOCAL +DEFAULT +ABS _edata +12: 0+2..[046c] +0 +NOTYPE +LOCAL +DEFAULT +ABS _edata
+13: 0+2..[046c] +0 +OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ +13: 0+2..[046c] +0 +OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
+14: 0+2..[046c] +0 +NOTYPE +LOCAL +DEFAULT +ABS _end +14: 0+2..[046c] +0 +NOTYPE +LOCAL +DEFAULT +ABS _end
+15: 0+150 +2 +FUNC +LOCAL +DEFAULT +7 dsofn +15: 0+150 +2 +FUNC +LOCAL +DEFAULT +7 dsofn
+16: 0+ +0 +OBJECT +GLOBAL +DEFAULT +ABS TST1 +16: 0+ +0 +OBJECT +GLOBAL +DEFAULT +ABS TST1

View File

@ -11,7 +11,7 @@
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+82084 l O \.got 0+ \.hidden _GLOBAL_OFFSET_TABLE_ 0+82084 l O \.got 0+ _GLOBAL_OFFSET_TABLE_
0+80076 g F \.text 0+2 expfn 0+80076 g F \.text 0+2 expfn
0+82090 g O \.data 0+4 expobj 0+82090 g O \.data 0+4 expobj
#... #...

View File

@ -11,7 +11,7 @@
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+82088 l O \.got 0+ \.hidden _GLOBAL_OFFSET_TABLE_ 0+82088 l O \.got 0+ _GLOBAL_OFFSET_TABLE_
0+ w \*UND\* 0+ expfn 0+ w \*UND\* 0+ expfn
0+ w \*UND\* 0+ expobj 0+ w \*UND\* 0+ expobj
#... #...

View File

@ -35,7 +35,7 @@ SYMBOL TABLE:
0+80094 l d \.text 0+ \.text 0+80094 l d \.text 0+ \.text
0+820b0 l d \.tdata 0+ \.tdata 0+820b0 l d \.tdata 0+ \.tdata
0+820bc l d \.got 0+ \.got 0+820bc l d \.got 0+ \.got
0+820bc l O \.got 0+ \.hidden _GLOBAL_OFFSET_TABLE_ 0+820bc l O \.got 0+ _GLOBAL_OFFSET_TABLE_
0+ g \.tdata 0+4 \.hidden x 0+ g \.tdata 0+4 \.hidden x
0+80098 g F \.text 0+6 tlsdsofn2 0+80098 g F \.text 0+6 tlsdsofn2
0+8 g \.tdata 0+4 \.hidden x2 0+8 g \.tdata 0+4 \.hidden x2

View File

@ -41,7 +41,7 @@ SYMBOL TABLE:
0+82168 l d \.got 0+ \.got 0+82168 l d \.got 0+ \.got
0+821a4 l d \.data 0+ \.data 0+821a4 l d \.data 0+ \.data
0+ l \.tdata 0+80 tls128 0+ l \.tdata 0+80 tls128
0+82168 l O \.got 0+ \.hidden _GLOBAL_OFFSET_TABLE_ 0+82168 l O \.got 0+ _GLOBAL_OFFSET_TABLE_
0+80 g \.tdata 0+4 \.hidden x 0+80 g \.tdata 0+4 \.hidden x
0+800c4 g F \.text 0+6 tlsdsofn2 0+800c4 g F \.text 0+6 tlsdsofn2
0+821b4 g O \.data 0+4 got7var5 0+821b4 g O \.data 0+4 got7var5

View File

@ -42,7 +42,7 @@ SYMBOL TABLE:
0+820c0 l d \.tdata 0+ \.tdata 0+820c0 l d \.tdata 0+ \.tdata
0+820d0 l d \.tbss 0+ \.tbss 0+820d0 l d \.tbss 0+ \.tbss
0+820d0 l d \.got 0+ \.got 0+820d0 l d \.got 0+ \.got
0+820d0 l O \.got 0+ \.hidden _GLOBAL_OFFSET_TABLE_ 0+820d0 l O \.got 0+ _GLOBAL_OFFSET_TABLE_
0+ g \.tdata 0+4 \.hidden x 0+ g \.tdata 0+4 \.hidden x
0+800a0 g F \.text 0+6 tlsdsofn2 0+800a0 g F \.text 0+6 tlsdsofn2
0+800a8 g F \.text 0+6 tlsfn12 0+800a8 g F \.text 0+6 tlsfn12

View File

@ -21,7 +21,7 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
0+80074 l d .text 0+ .text 0+80074 l d .text 0+ .text
0+82078 l d .got 0+ .got 0+82078 l d .got 0+ .got
0+82078 l O .got 0+ .hidden _GLOBAL_OFFSET_TABLE_ 0+82078 l O .got 0+ _GLOBAL_OFFSET_TABLE_
0+80074 g .text 0+ _start 0+80074 g .text 0+ _start
0+82084 g \*ABS\* 0+ __bss_start 0+82084 g \*ABS\* 0+ __bss_start
0+82084 g \*ABS\* 0+ _edata 0+82084 g \*ABS\* 0+ _edata

View File

@ -22,7 +22,7 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
0+80074 l d .text 0+ .text 0+80074 l d .text 0+ .text
0+82078 l d .got 0+ .got 0+82078 l d .got 0+ .got
0+82078 l O .got 0+ .hidden _GLOBAL_OFFSET_TABLE_ 0+82078 l O .got 0+ _GLOBAL_OFFSET_TABLE_
0+80074 g .text 0+ _start 0+80074 g .text 0+ _start
0+82084 g \*ABS\* 0+ __bss_start 0+82084 g \*ABS\* 0+ __bss_start
0+82084 g \*ABS\* 0+ _edata 0+82084 g \*ABS\* 0+ _edata

View File

@ -22,7 +22,7 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
0+80074 l d .text 0+ .text 0+80074 l d .text 0+ .text
0+82078 l d .got 0+ .got 0+82078 l d .got 0+ .got
0+82078 l O .got 0+ .hidden _GLOBAL_OFFSET_TABLE_ 0+82078 l O .got 0+ _GLOBAL_OFFSET_TABLE_
0+80074 g .text 0+ _start 0+80074 g .text 0+ _start
0+82084 g \*ABS\* 0+ __bss_start 0+82084 g \*ABS\* 0+ __bss_start
0+82084 g \*ABS\* 0+ _edata 0+82084 g \*ABS\* 0+ _edata

View File

@ -24,7 +24,7 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
0+80074 l d .text 0+ .text 0+80074 l d .text 0+ .text
0+82078 l d .got 0+ .got 0+82078 l d .got 0+ .got
0+82078 l O .got 0+ .hidden _GLOBAL_OFFSET_TABLE_ 0+82078 l O .got 0+ _GLOBAL_OFFSET_TABLE_
0+80074 g .text 0+ _start 0+80074 g .text 0+ _start
0+82084 g \*ABS\* 0+ __bss_start 0+82084 g \*ABS\* 0+ __bss_start
0+82084 g \*ABS\* 0+ _edata 0+82084 g \*ABS\* 0+ _edata

View File

@ -23,7 +23,7 @@ SYMBOL TABLE:
0+82080 l d .got 0+ .got 0+82080 l d .got 0+ .got
0+82090 l d .data 0+ .data 0+82090 l d .data 0+ .data
0+82090 l O .data 0+4 gc76var 0+82090 l O .data 0+4 gc76var
0+82080 l O .got 0+ .hidden _GLOBAL_OFFSET_TABLE_ 0+82080 l O .got 0+ _GLOBAL_OFFSET_TABLE_
0+80074 g .text 0+ _start 0+80074 g .text 0+ _start
0+82094 g \*ABS\* 0+ __bss_start 0+82094 g \*ABS\* 0+ __bss_start
0+82094 g \*ABS\* 0+ _edata 0+82094 g \*ABS\* 0+ _edata

View File

@ -22,7 +22,7 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
0+80074 l d .text 0+ .text 0+80074 l d .text 0+ .text
0+82078 l d .got 0+ .got 0+82078 l d .got 0+ .got
0+82078 l O .got 0+ .hidden _GLOBAL_OFFSET_TABLE_ 0+82078 l O .got 0+ _GLOBAL_OFFSET_TABLE_
0+80074 g .text 0+ _start 0+80074 g .text 0+ _start
0+82084 g \*ABS\* 0+ __bss_start 0+82084 g \*ABS\* 0+ __bss_start
0+82084 g \*ABS\* 0+ _edata 0+82084 g \*ABS\* 0+ _edata

View File

@ -33,7 +33,7 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+80 l \.tdata 0+4 \.hidden x 0+80 l \.tdata 0+4 x
#... #...
DYNAMIC RELOCATION RECORDS DYNAMIC RELOCATION RECORDS

View File

@ -33,7 +33,7 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+80 l \.tdata 0+4 \.hidden x 0+80 l \.tdata 0+4 x
#... #...
DYNAMIC RELOCATION RECORDS DYNAMIC RELOCATION RECORDS

View File

@ -33,7 +33,7 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+80 l \.tdata 0+4 \.hidden x 0+80 l \.tdata 0+4 x
#... #...
DYNAMIC RELOCATION RECORDS DYNAMIC RELOCATION RECORDS

View File

@ -33,8 +33,8 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+84 l \.tdata 0+4 \.hidden x2 0+84 l \.tdata 0+4 x2
0+80 l \.tdata 0+4 \.hidden x1 0+80 l \.tdata 0+4 x1
#... #...
DYNAMIC RELOCATION RECORDS DYNAMIC RELOCATION RECORDS

View File

@ -33,7 +33,7 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+80 l \.tdata 0+4 \.hidden x 0+80 l \.tdata 0+4 x
#... #...
DYNAMIC RELOCATION RECORDS DYNAMIC RELOCATION RECORDS

View File

@ -33,8 +33,8 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+84 l \.tdata 0+4 \.hidden x2 0+84 l \.tdata 0+4 x2
0+80 l \.tdata 0+4 \.hidden x1 0+80 l \.tdata 0+4 x1
#... #...
DYNAMIC RELOCATION RECORDS DYNAMIC RELOCATION RECORDS

View File

@ -38,9 +38,9 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+8c l \.tdata 0+4 \.hidden x2 0+8c l \.tdata 0+4 x2
#... #...
0+88 l \.tdata 0+4 \.hidden x1 0+88 l \.tdata 0+4 x1
#... #...
0+80 g \.tdata 0+4 x 0+80 g \.tdata 0+4 x
#... #...

View File

@ -38,9 +38,9 @@ private flags = 0:
SYMBOL TABLE: SYMBOL TABLE:
#... #...
0+8c l \.tdata 0+4 \.hidden x2 0+8c l \.tdata 0+4 x2
#... #...
0+88 l \.tdata 0+4 \.hidden x1 0+88 l \.tdata 0+4 x1
#... #...
0+80 g \.tdata 0+4 x 0+80 g \.tdata 0+4 x
#... #...

View File

@ -19,7 +19,7 @@ Symbol table '.dynsym' contains 7 entries:
#... #...
Symbol table '.symtab' contains 16 entries: Symbol table '.symtab' contains 16 entries:
#... #...
.: 00000000 +4 +TLS +LOCAL +HIDDEN +6 x .: 00000000 +4 +TLS +LOCAL +DEFAULT +6 x
#... #...
Hex dump of section '.text': Hex dump of section '.text':
0x00000184 5fae0c00 .* 0x00000184 5fae0c00 .*

View File

@ -21,7 +21,7 @@ Symbol table '.dynsym' contains 7 entries:
#... #...
Symbol table '.symtab' contains 17 entries: Symbol table '.symtab' contains 17 entries:
#... #...
..: 00000080 +4 +TLS +LOCAL +HIDDEN +6 x ..: 00000080 +4 +TLS +LOCAL +DEFAULT +6 x
#... #...
Hex dump of section '.text': Hex dump of section '.text':
0x00000184 5fae0c00 .* 0x00000184 5fae0c00 .*

View File

@ -1,5 +1,5 @@
Symbol table '\.dynsym' contains [0-9]+ entries: Symbol table '\.dynsym' contains [0-9]+ entries:
+Num: +Value +Size Type +Bind +Vis +Ndx Name +Num: +Value +Size Type +Bind +Vis +Ndx Name
#... #...
+[0-9]+: +[0-9a-f]+ +[0-9a-f]+ +FUNC +LOCAL +HIDDEN +[0-9]+ +foo +[0-9]+: +[0-9a-f]+ +[0-9a-f]+ +FUNC +LOCAL +DEFAULT +[0-9]+ +foo
#... #...

View File

@ -1,5 +1,5 @@
Symbol table '\.dynsym' contains [0-9]+ entries: Symbol table '\.dynsym' contains [0-9]+ entries:
+Num: +Value +Size Type +Bind +Vis +Ndx Name +Num: +Value +Size Type +Bind +Vis +Ndx Name
#... #...
+[0-9]+: +[0-9a-f]+ +[0-9a-f]+ +FUNC +LOCAL +HIDDEN +[0-9]+ +foo +[0-9]+: +[0-9a-f]+ +[0-9a-f]+ +FUNC +LOCAL +DEFAULT +[0-9]+ +foo
#... #...

View File

@ -5,5 +5,5 @@
Symbol table for image: Symbol table for image:
#... #...
[ ]*[0-9]+ +[0-9]+: [0-9a-fA-F]* +0 +OBJECT +LOCAL +HIDDEN +ABS foo [ ]*[0-9]+ +[0-9]+: [0-9a-fA-F]* +0 +OBJECT +LOCAL +DEFAULT +ABS foo
#pass #pass

View File

@ -118,8 +118,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: 00000094 +0 +TLS +LOCAL +DEFAULT +10 bl6 +[0-9]+: 00000094 +0 +TLS +LOCAL +DEFAULT +10 bl6
+[0-9]+: 00000098 +0 +TLS +LOCAL +DEFAULT +10 bl7 +[0-9]+: 00000098 +0 +TLS +LOCAL +DEFAULT +10 bl7
+[0-9]+: 0000009c +0 +TLS +LOCAL +DEFAULT +10 bl8 +[0-9]+: 0000009c +0 +TLS +LOCAL +DEFAULT +10 bl8
+[0-9]+: 0+804a060 +0 +OBJECT +LOCAL +HIDDEN +11 _DYNAMIC +[0-9]+: 0+804a060 +0 +OBJECT +LOCAL +DEFAULT +11 _DYNAMIC
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +13 _GLOBAL_OFFSET_TABLE_ +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +13 _GLOBAL_OFFSET_TABLE_
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG3 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG3
+[0-9]+: 0000001c +0 +TLS +GLOBAL +DEFAULT +9 sg8 +[0-9]+: 0000001c +0 +TLS +GLOBAL +DEFAULT +9 sg8
+[0-9]+: 0000007c +0 +TLS +GLOBAL +DEFAULT +10 bg8 +[0-9]+: 0000007c +0 +TLS +GLOBAL +DEFAULT +10 bg8

View File

@ -109,9 +109,9 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: 00000094 +0 +TLS +LOCAL +DEFAULT +8 bl6 +[0-9]+: 00000094 +0 +TLS +LOCAL +DEFAULT +8 bl6
+[0-9]+: 00000098 +0 +TLS +LOCAL +DEFAULT +8 bl7 +[0-9]+: 00000098 +0 +TLS +LOCAL +DEFAULT +8 bl7
+[0-9]+: 0000009c +0 +TLS +LOCAL +DEFAULT +8 bl8 +[0-9]+: 0000009c +0 +TLS +LOCAL +DEFAULT +8 bl8
+[0-9]+: 00001000 +0 +TLS +LOCAL +HIDDEN +7 _TLS_MODULE_BASE_ +[0-9]+: 00001000 +0 +TLS +LOCAL +DEFAULT +7 _TLS_MODULE_BASE_
+[0-9]+: 0+804a060 +0 +OBJECT +LOCAL +HIDDEN +9 _DYNAMIC +[0-9]+: 0+804a060 +0 +OBJECT +LOCAL +DEFAULT +9 _DYNAMIC
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +11 _GLOBAL_OFFSET_TABLE_ +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +11 _GLOBAL_OFFSET_TABLE_
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG3 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG3
+[0-9]+: 0000001c +0 +TLS +GLOBAL +DEFAULT +7 sg8 +[0-9]+: 0000001c +0 +TLS +GLOBAL +DEFAULT +7 sg8
+[0-9]+: 0000007c +0 +TLS +GLOBAL +DEFAULT +8 bg8 +[0-9]+: 0000007c +0 +TLS +GLOBAL +DEFAULT +8 bg8

View File

@ -116,25 +116,25 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: 0+34 +0 +TLS +LOCAL +DEFAULT +7 sl6 +[0-9]+: 0+34 +0 +TLS +LOCAL +DEFAULT +7 sl6
+[0-9]+: 0+38 +0 +TLS +LOCAL +DEFAULT +7 sl7 +[0-9]+: 0+38 +0 +TLS +LOCAL +DEFAULT +7 sl7
+[0-9]+: 0+3c +0 +TLS +LOCAL +DEFAULT +7 sl8 +[0-9]+: 0+3c +0 +TLS +LOCAL +DEFAULT +7 sl8
+[0-9]+: 0+60 +0 +TLS +LOCAL +HIDDEN +8 sH1 +[0-9]+: 0+60 +0 +TLS +LOCAL +DEFAULT +8 sH1
+[0-9]+: 0+ +0 +TLS +LOCAL +HIDDEN +7 _TLS_MODULE_BASE_ +[0-9]+: 0+ +0 +TLS +LOCAL +DEFAULT +7 _TLS_MODULE_BASE_
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
+[0-9]+: 0+48 +0 +TLS +LOCAL +HIDDEN +7 sh3 +[0-9]+: 0+48 +0 +TLS +LOCAL +DEFAULT +7 sh3
+[0-9]+: 0+64 +0 +TLS +LOCAL +HIDDEN +8 sH2 +[0-9]+: 0+64 +0 +TLS +LOCAL +DEFAULT +8 sH2
+[0-9]+: 0+78 +0 +TLS +LOCAL +HIDDEN +8 sH7 +[0-9]+: 0+78 +0 +TLS +LOCAL +DEFAULT +8 sH7
+[0-9]+: 0+58 +0 +TLS +LOCAL +HIDDEN +7 sh7 +[0-9]+: 0+58 +0 +TLS +LOCAL +DEFAULT +7 sh7
+[0-9]+: 0+5c +0 +TLS +LOCAL +HIDDEN +7 sh8 +[0-9]+: 0+5c +0 +TLS +LOCAL +DEFAULT +7 sh8
+[0-9]+: 0+6c +0 +TLS +LOCAL +HIDDEN +8 sH4 +[0-9]+: 0+6c +0 +TLS +LOCAL +DEFAULT +8 sH4
+[0-9]+: 0+4c +0 +TLS +LOCAL +HIDDEN +7 sh4 +[0-9]+: 0+4c +0 +TLS +LOCAL +DEFAULT +7 sh4
+[0-9]+: 0+68 +0 +TLS +LOCAL +HIDDEN +8 sH3 +[0-9]+: 0+68 +0 +TLS +LOCAL +DEFAULT +8 sH3
+[0-9]+: 0+50 +0 +TLS +LOCAL +HIDDEN +7 sh5 +[0-9]+: 0+50 +0 +TLS +LOCAL +DEFAULT +7 sh5
+[0-9]+: 0+70 +0 +TLS +LOCAL +HIDDEN +8 sH5 +[0-9]+: 0+70 +0 +TLS +LOCAL +DEFAULT +8 sH5
+[0-9]+: 0+74 +0 +TLS +LOCAL +HIDDEN +8 sH6 +[0-9]+: 0+74 +0 +TLS +LOCAL +DEFAULT +8 sH6
+[0-9]+: 0+7c +0 +TLS +LOCAL +HIDDEN +8 sH8 +[0-9]+: 0+7c +0 +TLS +LOCAL +DEFAULT +8 sH8
+[0-9]+: 0+40 +0 +TLS +LOCAL +HIDDEN +7 sh1 +[0-9]+: 0+40 +0 +TLS +LOCAL +DEFAULT +7 sh1
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
+[0-9]+: 0+44 +0 +TLS +LOCAL +HIDDEN +7 sh2 +[0-9]+: 0+44 +0 +TLS +LOCAL +DEFAULT +7 sh2
+[0-9]+: 0+54 +0 +TLS +LOCAL +HIDDEN +7 sh6 +[0-9]+: 0+54 +0 +TLS +LOCAL +DEFAULT +7 sh6
+[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +7 sg8 +[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +7 sg8
+[0-9]+: 0+8 +0 +TLS +GLOBAL +DEFAULT +7 sg3 +[0-9]+: 0+8 +0 +TLS +GLOBAL +DEFAULT +7 sg3
+[0-9]+: 0+c +0 +TLS +GLOBAL +DEFAULT +7 sg4 +[0-9]+: 0+c +0 +TLS +GLOBAL +DEFAULT +7 sg4

View File

@ -88,8 +88,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +8 * +[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +8 *
+[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +9 * +[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +9 *
+[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +10 * +[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +10 *
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG3 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG3
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG5 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG5
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG2 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG2

View File

@ -99,12 +99,12 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: 0+08 +0 +TLS +LOCAL +DEFAULT +6 bl3 +[0-9]+: 0+08 +0 +TLS +LOCAL +DEFAULT +6 bl3
+[0-9]+: 0+0c +0 +TLS +LOCAL +DEFAULT +6 bl4 +[0-9]+: 0+0c +0 +TLS +LOCAL +DEFAULT +6 bl4
+[0-9]+: 0+10 +0 +TLS +LOCAL +DEFAULT +6 bl5 +[0-9]+: 0+10 +0 +TLS +LOCAL +DEFAULT +6 bl5
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
+[0-9]+: 0+1c +0 +TLS +LOCAL +HIDDEN +6 sh3 +[0-9]+: 0+1c +0 +TLS +LOCAL +DEFAULT +6 sh3
+[0-9]+: 0+20 +0 +TLS +LOCAL +HIDDEN +6 sh4 +[0-9]+: 0+20 +0 +TLS +LOCAL +DEFAULT +6 sh4
+[0-9]+: 0+14 +0 +TLS +LOCAL +HIDDEN +6 sh1 +[0-9]+: 0+14 +0 +TLS +LOCAL +DEFAULT +6 sh1
+[0-9]+: 0+218c +0 +OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ +[0-9]+: 0+218c +0 +OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
+[0-9]+: 0+18 +0 +TLS +LOCAL +HIDDEN +6 sh2 +[0-9]+: 0+18 +0 +TLS +LOCAL +DEFAULT +6 sh2
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sg3 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sg3
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sg4 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sg4
+[0-9]+: 0+1000 +0 +FUNC +GLOBAL +DEFAULT +5 fn3 +[0-9]+: 0+1000 +0 +FUNC +GLOBAL +DEFAULT +5 fn3

View File

@ -121,24 +121,24 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: 0+34 +0 +TLS +LOCAL +DEFAULT +8 sl6 +[0-9]+: 0+34 +0 +TLS +LOCAL +DEFAULT +8 sl6
+[0-9]+: 0+38 +0 +TLS +LOCAL +DEFAULT +8 sl7 +[0-9]+: 0+38 +0 +TLS +LOCAL +DEFAULT +8 sl7
+[0-9]+: 0+3c +0 +TLS +LOCAL +DEFAULT +8 sl8 +[0-9]+: 0+3c +0 +TLS +LOCAL +DEFAULT +8 sl8
+[0-9]+: 0+60 +0 +TLS +LOCAL +HIDDEN +9 sH1 +[0-9]+: 0+60 +0 +TLS +LOCAL +DEFAULT +9 sH1
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
+[0-9]+: 0+48 +0 +TLS +LOCAL +HIDDEN +8 sh3 +[0-9]+: 0+48 +0 +TLS +LOCAL +DEFAULT +8 sh3
+[0-9]+: 0+64 +0 +TLS +LOCAL +HIDDEN +9 sH2 +[0-9]+: 0+64 +0 +TLS +LOCAL +DEFAULT +9 sH2
+[0-9]+: 0+78 +0 +TLS +LOCAL +HIDDEN +9 sH7 +[0-9]+: 0+78 +0 +TLS +LOCAL +DEFAULT +9 sH7
+[0-9]+: 0+58 +0 +TLS +LOCAL +HIDDEN +8 sh7 +[0-9]+: 0+58 +0 +TLS +LOCAL +DEFAULT +8 sh7
+[0-9]+: 0+5c +0 +TLS +LOCAL +HIDDEN +8 sh8 +[0-9]+: 0+5c +0 +TLS +LOCAL +DEFAULT +8 sh8
+[0-9]+: 0+6c +0 +TLS +LOCAL +HIDDEN +9 sH4 +[0-9]+: 0+6c +0 +TLS +LOCAL +DEFAULT +9 sH4
+[0-9]+: 0+4c +0 +TLS +LOCAL +HIDDEN +8 sh4 +[0-9]+: 0+4c +0 +TLS +LOCAL +DEFAULT +8 sh4
+[0-9]+: 0+68 +0 +TLS +LOCAL +HIDDEN +9 sH3 +[0-9]+: 0+68 +0 +TLS +LOCAL +DEFAULT +9 sH3
+[0-9]+: 0+50 +0 +TLS +LOCAL +HIDDEN +8 sh5 +[0-9]+: 0+50 +0 +TLS +LOCAL +DEFAULT +8 sh5
+[0-9]+: 0+70 +0 +TLS +LOCAL +HIDDEN +9 sH5 +[0-9]+: 0+70 +0 +TLS +LOCAL +DEFAULT +9 sH5
+[0-9]+: 0+74 +0 +TLS +LOCAL +HIDDEN +9 sH6 +[0-9]+: 0+74 +0 +TLS +LOCAL +DEFAULT +9 sH6
+[0-9]+: 0+7c +0 +TLS +LOCAL +HIDDEN +9 sH8 +[0-9]+: 0+7c +0 +TLS +LOCAL +DEFAULT +9 sH8
+[0-9]+: 0+40 +0 +TLS +LOCAL +HIDDEN +8 sh1 +[0-9]+: 0+40 +0 +TLS +LOCAL +DEFAULT +8 sh1
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
+[0-9]+: 0+44 +0 +TLS +LOCAL +HIDDEN +8 sh2 +[0-9]+: 0+44 +0 +TLS +LOCAL +DEFAULT +8 sh2
+[0-9]+: 0+54 +0 +TLS +LOCAL +HIDDEN +8 sh6 +[0-9]+: 0+54 +0 +TLS +LOCAL +DEFAULT +8 sh6
+[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +8 sg8 +[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +8 sg8
+[0-9]+: 0+8 +0 +TLS +GLOBAL +DEFAULT +8 sg3 +[0-9]+: 0+8 +0 +TLS +GLOBAL +DEFAULT +8 sg3
+[0-9]+: 0+c +0 +TLS +GLOBAL +DEFAULT +8 sg4 +[0-9]+: 0+c +0 +TLS +GLOBAL +DEFAULT +8 sg4

View File

@ -100,8 +100,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +12 bl6 .* TLS +LOCAL +DEFAULT +12 bl6
.* TLS +LOCAL +DEFAULT +12 bl7 .* TLS +LOCAL +DEFAULT +12 bl7
.* TLS +LOCAL +DEFAULT +12 bl8 .* TLS +LOCAL +DEFAULT +12 bl8
.* OBJECT +LOCAL +HIDDEN +13 _DYNAMIC .* OBJECT +LOCAL +DEFAULT +13 _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +14 _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +14 _GLOBAL_OFFSET_TABLE_
.* TLS +GLOBAL +DEFAULT +11 sg8 .* TLS +GLOBAL +DEFAULT +11 sg8
.* TLS +GLOBAL +DEFAULT +12 bg8 .* TLS +GLOBAL +DEFAULT +12 bg8
.* TLS +GLOBAL +DEFAULT +12 bg6 .* TLS +GLOBAL +DEFAULT +12 bg6

View File

@ -98,24 +98,24 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +10 sl6 .* TLS +LOCAL +DEFAULT +10 sl6
.* TLS +LOCAL +DEFAULT +10 sl7 .* TLS +LOCAL +DEFAULT +10 sl7
.* TLS +LOCAL +DEFAULT +10 sl8 .* TLS +LOCAL +DEFAULT +10 sl8
.* TLS +LOCAL +HIDDEN +11 sH1 .* TLS +LOCAL +DEFAULT +11 sH1
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* TLS +LOCAL +HIDDEN +10 sh3 .* TLS +LOCAL +DEFAULT +10 sh3
.* TLS +LOCAL +HIDDEN +11 sH2 .* TLS +LOCAL +DEFAULT +11 sH2
.* TLS +LOCAL +HIDDEN +11 sH7 .* TLS +LOCAL +DEFAULT +11 sH7
.* TLS +LOCAL +HIDDEN +10 sh7 .* TLS +LOCAL +DEFAULT +10 sh7
.* TLS +LOCAL +HIDDEN +10 sh8 .* TLS +LOCAL +DEFAULT +10 sh8
.* TLS +LOCAL +HIDDEN +11 sH4 .* TLS +LOCAL +DEFAULT +11 sH4
.* TLS +LOCAL +HIDDEN +10 sh4 .* TLS +LOCAL +DEFAULT +10 sh4
.* TLS +LOCAL +HIDDEN +11 sH3 .* TLS +LOCAL +DEFAULT +11 sH3
.* TLS +LOCAL +HIDDEN +10 sh5 .* TLS +LOCAL +DEFAULT +10 sh5
.* TLS +LOCAL +HIDDEN +11 sH5 .* TLS +LOCAL +DEFAULT +11 sH5
.* TLS +LOCAL +HIDDEN +11 sH6 .* TLS +LOCAL +DEFAULT +11 sH6
.* TLS +LOCAL +HIDDEN +11 sH8 .* TLS +LOCAL +DEFAULT +11 sH8
.* TLS +LOCAL +HIDDEN +10 sh1 .* TLS +LOCAL +DEFAULT +10 sh1
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* TLS +LOCAL +HIDDEN +10 sh2 .* TLS +LOCAL +DEFAULT +10 sh2
.* TLS +LOCAL +HIDDEN +10 sh6 .* TLS +LOCAL +DEFAULT +10 sh6
.* TLS +GLOBAL +DEFAULT +10 sg8 .* TLS +GLOBAL +DEFAULT +10 sg8
.* TLS +GLOBAL +DEFAULT +10 sg3 .* TLS +GLOBAL +DEFAULT +10 sg3
.* TLS +GLOBAL +DEFAULT +10 sg4 .* TLS +GLOBAL +DEFAULT +10 sg4

View File

@ -95,7 +95,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +8 ie4 .* TLS +LOCAL +DEFAULT +8 ie4
.* TLS +LOCAL +DEFAULT +8 le4 .* TLS +LOCAL +DEFAULT +8 le4
.* TLS +LOCAL +DEFAULT +8 le5 .* TLS +LOCAL +DEFAULT +8 le5
.* OBJECT +LOCAL +HIDDEN +10 _DYNAMIC .* OBJECT +LOCAL +DEFAULT +10 _DYNAMIC
.* (FUNC|NOTYPE) +LOCAL +DEFAULT +UND \.__tls_get_addr(|_opt) .* (FUNC|NOTYPE) +LOCAL +DEFAULT +UND \.__tls_get_addr(|_opt)
.* GLOBAL +DEFAULT +UND gd .* GLOBAL +DEFAULT +UND gd
.* GLOBAL +DEFAULT +9 le0 .* GLOBAL +DEFAULT +9 le0

View File

@ -92,8 +92,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +8 ie4 .* TLS +LOCAL +DEFAULT +8 ie4
.* TLS +LOCAL +DEFAULT +8 le4 .* TLS +LOCAL +DEFAULT +8 le4
.* TLS +LOCAL +DEFAULT +8 le5 .* TLS +LOCAL +DEFAULT +8 le5
.* OBJECT +LOCAL +HIDDEN +10 _DYNAMIC .* OBJECT +LOCAL +DEFAULT +10 _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +11 _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +11 _GLOBAL_OFFSET_TABLE_
.* TLS +GLOBAL +DEFAULT +UND gd .* TLS +GLOBAL +DEFAULT +UND gd
.* TLS +GLOBAL +DEFAULT +9 le0 .* TLS +GLOBAL +DEFAULT +9 le0
.* TLS +GLOBAL +DEFAULT +9 ld0 .* TLS +GLOBAL +DEFAULT +9 ld0

View File

@ -95,7 +95,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +8 le4 .* TLS +LOCAL +DEFAULT +8 le4
.* TLS +LOCAL +DEFAULT +8 le5 .* TLS +LOCAL +DEFAULT +8 le5
.* NOTYPE +LOCAL +DEFAULT +12 \.Lie0 .* NOTYPE +LOCAL +DEFAULT +12 \.Lie0
.* OBJECT +LOCAL +HIDDEN +10 _DYNAMIC .* OBJECT +LOCAL +DEFAULT +10 _DYNAMIC
.* (FUNC|NOTYPE) +LOCAL +DEFAULT +UND \.__tls_get_addr(|_opt) .* (FUNC|NOTYPE) +LOCAL +DEFAULT +UND \.__tls_get_addr(|_opt)
.* TLS +GLOBAL +DEFAULT +UND gd .* TLS +GLOBAL +DEFAULT +UND gd
.* TLS +GLOBAL +DEFAULT +9 le0 .* TLS +GLOBAL +DEFAULT +9 le0

View File

@ -109,7 +109,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +7 ie4 .* TLS +LOCAL +DEFAULT +7 ie4
.* TLS +LOCAL +DEFAULT +7 le4 .* TLS +LOCAL +DEFAULT +7 le4
.* TLS +LOCAL +DEFAULT +7 le5 .* TLS +LOCAL +DEFAULT +7 le5
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* NOTYPE +LOCAL +DEFAULT +UND \.__tls_get_addr .* NOTYPE +LOCAL +DEFAULT +UND \.__tls_get_addr
.* TLS +GLOBAL +DEFAULT +UND gd .* TLS +GLOBAL +DEFAULT +UND gd
.* TLS +GLOBAL +DEFAULT +8 le0 .* TLS +GLOBAL +DEFAULT +8 le0

View File

@ -110,8 +110,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +7 ie4 .* TLS +LOCAL +DEFAULT +7 ie4
.* TLS +LOCAL +DEFAULT +7 le4 .* TLS +LOCAL +DEFAULT +7 le4
.* TLS +LOCAL +DEFAULT +7 le5 .* TLS +LOCAL +DEFAULT +7 le5
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* TLS +GLOBAL +DEFAULT +UND gd .* TLS +GLOBAL +DEFAULT +UND gd
.* TLS +GLOBAL +DEFAULT +8 le0 .* TLS +GLOBAL +DEFAULT +8 le0
.* NOTYPE +GLOBAL +DEFAULT +UND __tls_get_addr .* NOTYPE +GLOBAL +DEFAULT +UND __tls_get_addr

View File

@ -105,7 +105,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +7 le4 .* TLS +LOCAL +DEFAULT +7 le4
.* TLS +LOCAL +DEFAULT +7 le5 .* TLS +LOCAL +DEFAULT +7 le5
.* NOTYPE +LOCAL +DEFAULT +11 \.Lie0 .* NOTYPE +LOCAL +DEFAULT +11 \.Lie0
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* NOTYPE +LOCAL +DEFAULT +UND \.__tls_get_addr .* NOTYPE +LOCAL +DEFAULT +UND \.__tls_get_addr
.* TLS +GLOBAL +DEFAULT +UND gd .* TLS +GLOBAL +DEFAULT +UND gd
.* TLS +GLOBAL +DEFAULT +8 le0 .* TLS +GLOBAL +DEFAULT +8 le0

View File

@ -107,8 +107,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +10 bl6 .* TLS +LOCAL +DEFAULT +10 bl6
.* TLS +LOCAL +DEFAULT +10 bl7 .* TLS +LOCAL +DEFAULT +10 bl7
.* TLS +LOCAL +DEFAULT +10 bl8 .* TLS +LOCAL +DEFAULT +10 bl8
.* OBJECT +LOCAL +HIDDEN +11 _DYNAMIC .* OBJECT +LOCAL +DEFAULT +11 _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +12 _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +12 _GLOBAL_OFFSET_TABLE_
.* TLS +GLOBAL +DEFAULT +UND sG3 .* TLS +GLOBAL +DEFAULT +UND sG3
.* TLS +GLOBAL +DEFAULT +9 sg8 .* TLS +GLOBAL +DEFAULT +9 sg8
.* TLS +GLOBAL +DEFAULT +10 bg8 .* TLS +GLOBAL +DEFAULT +10 bg8

View File

@ -107,8 +107,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +10 bl6 .* TLS +LOCAL +DEFAULT +10 bl6
.* TLS +LOCAL +DEFAULT +10 bl7 .* TLS +LOCAL +DEFAULT +10 bl7
.* TLS +LOCAL +DEFAULT +10 bl8 .* TLS +LOCAL +DEFAULT +10 bl8
.* OBJECT +LOCAL +HIDDEN +11 _DYNAMIC .* OBJECT +LOCAL +DEFAULT +11 _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +12 _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +12 _GLOBAL_OFFSET_TABLE_
.* TLS +GLOBAL +DEFAULT +UND sG3 .* TLS +GLOBAL +DEFAULT +UND sG3
.* TLS +GLOBAL +DEFAULT +9 sg8 .* TLS +GLOBAL +DEFAULT +9 sg8
.* TLS +GLOBAL +DEFAULT +10 bg8 .* TLS +GLOBAL +DEFAULT +10 bg8

View File

@ -109,24 +109,24 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +8 sl6 .* TLS +LOCAL +DEFAULT +8 sl6
.* TLS +LOCAL +DEFAULT +8 sl7 .* TLS +LOCAL +DEFAULT +8 sl7
.* TLS +LOCAL +DEFAULT +8 sl8 .* TLS +LOCAL +DEFAULT +8 sl8
.* TLS +LOCAL +HIDDEN +9 sH1 .* TLS +LOCAL +DEFAULT +9 sH1
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* TLS +LOCAL +HIDDEN +8 sh3 .* TLS +LOCAL +DEFAULT +8 sh3
.* TLS +LOCAL +HIDDEN +9 sH2 .* TLS +LOCAL +DEFAULT +9 sH2
.* TLS +LOCAL +HIDDEN +9 sH7 .* TLS +LOCAL +DEFAULT +9 sH7
.* TLS +LOCAL +HIDDEN +8 sh7 .* TLS +LOCAL +DEFAULT +8 sh7
.* TLS +LOCAL +HIDDEN +8 sh8 .* TLS +LOCAL +DEFAULT +8 sh8
.* TLS +LOCAL +HIDDEN +9 sH4 .* TLS +LOCAL +DEFAULT +9 sH4
.* TLS +LOCAL +HIDDEN +8 sh4 .* TLS +LOCAL +DEFAULT +8 sh4
.* TLS +LOCAL +HIDDEN +9 sH3 .* TLS +LOCAL +DEFAULT +9 sH3
.* TLS +LOCAL +HIDDEN +8 sh5 .* TLS +LOCAL +DEFAULT +8 sh5
.* TLS +LOCAL +HIDDEN +9 sH5 .* TLS +LOCAL +DEFAULT +9 sH5
.* TLS +LOCAL +HIDDEN +9 sH6 .* TLS +LOCAL +DEFAULT +9 sH6
.* TLS +LOCAL +HIDDEN +9 sH8 .* TLS +LOCAL +DEFAULT +9 sH8
.* TLS +LOCAL +HIDDEN +8 sh1 .* TLS +LOCAL +DEFAULT +8 sh1
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* TLS +LOCAL +HIDDEN +8 sh2 .* TLS +LOCAL +DEFAULT +8 sh2
.* TLS +LOCAL +HIDDEN +8 sh6 .* TLS +LOCAL +DEFAULT +8 sh6
.* TLS +GLOBAL +DEFAULT +8 sg8 .* TLS +GLOBAL +DEFAULT +8 sg8
.* TLS +GLOBAL +DEFAULT +8 sg3 .* TLS +GLOBAL +DEFAULT +8 sg3
.* TLS +GLOBAL +DEFAULT +8 sg4 .* TLS +GLOBAL +DEFAULT +8 sg4

View File

@ -109,24 +109,24 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +8 sl6 .* TLS +LOCAL +DEFAULT +8 sl6
.* TLS +LOCAL +DEFAULT +8 sl7 .* TLS +LOCAL +DEFAULT +8 sl7
.* TLS +LOCAL +DEFAULT +8 sl8 .* TLS +LOCAL +DEFAULT +8 sl8
.* TLS +LOCAL +HIDDEN +9 sH1 .* TLS +LOCAL +DEFAULT +9 sH1
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* TLS +LOCAL +HIDDEN +8 sh3 .* TLS +LOCAL +DEFAULT +8 sh3
.* TLS +LOCAL +HIDDEN +9 sH2 .* TLS +LOCAL +DEFAULT +9 sH2
.* TLS +LOCAL +HIDDEN +9 sH7 .* TLS +LOCAL +DEFAULT +9 sH7
.* TLS +LOCAL +HIDDEN +8 sh7 .* TLS +LOCAL +DEFAULT +8 sh7
.* TLS +LOCAL +HIDDEN +8 sh8 .* TLS +LOCAL +DEFAULT +8 sh8
.* TLS +LOCAL +HIDDEN +9 sH4 .* TLS +LOCAL +DEFAULT +9 sH4
.* TLS +LOCAL +HIDDEN +8 sh4 .* TLS +LOCAL +DEFAULT +8 sh4
.* TLS +LOCAL +HIDDEN +9 sH3 .* TLS +LOCAL +DEFAULT +9 sH3
.* TLS +LOCAL +HIDDEN +8 sh5 .* TLS +LOCAL +DEFAULT +8 sh5
.* TLS +LOCAL +HIDDEN +9 sH5 .* TLS +LOCAL +DEFAULT +9 sH5
.* TLS +LOCAL +HIDDEN +9 sH6 .* TLS +LOCAL +DEFAULT +9 sH6
.* TLS +LOCAL +HIDDEN +9 sH8 .* TLS +LOCAL +DEFAULT +9 sH8
.* TLS +LOCAL +HIDDEN +8 sh1 .* TLS +LOCAL +DEFAULT +8 sh1
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* TLS +LOCAL +HIDDEN +8 sh2 .* TLS +LOCAL +DEFAULT +8 sh2
.* TLS +LOCAL +HIDDEN +8 sh6 .* TLS +LOCAL +DEFAULT +8 sh6
.* TLS +GLOBAL +DEFAULT +8 sg8 .* TLS +GLOBAL +DEFAULT +8 sg8
.* TLS +GLOBAL +DEFAULT +8 sg3 .* TLS +GLOBAL +DEFAULT +8 sg3
.* TLS +GLOBAL +DEFAULT +8 sg4 .* TLS +GLOBAL +DEFAULT +8 sg4

View File

@ -59,9 +59,9 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* SECTION +LOCAL +DEFAULT +6 * .* SECTION +LOCAL +DEFAULT +6 *
.* SECTION +LOCAL +DEFAULT +7 * .* SECTION +LOCAL +DEFAULT +7 *
.* SECTION +LOCAL +DEFAULT +8 * .* SECTION +LOCAL +DEFAULT +8 *
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +ABS _PROCEDURE_LINKAGE_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* NOTYPE +GLOBAL +DEFAULT +ABS __bss_start .* NOTYPE +GLOBAL +DEFAULT +ABS __bss_start
.* FUNC +GLOBAL +DEFAULT +5 foo .* FUNC +GLOBAL +DEFAULT +5 foo
.* NOTYPE +GLOBAL +DEFAULT +ABS _edata .* NOTYPE +GLOBAL +DEFAULT +ABS _edata

View File

@ -59,9 +59,9 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* SECTION +LOCAL +DEFAULT +6 * .* SECTION +LOCAL +DEFAULT +6 *
.* SECTION +LOCAL +DEFAULT +7 * .* SECTION +LOCAL +DEFAULT +7 *
.* SECTION +LOCAL +DEFAULT +8 * .* SECTION +LOCAL +DEFAULT +8 *
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +ABS _PROCEDURE_LINKAGE_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* NOTYPE +GLOBAL +DEFAULT +ABS __bss_start .* NOTYPE +GLOBAL +DEFAULT +ABS __bss_start
.* FUNC +GLOBAL +DEFAULT +5 foo .* FUNC +GLOBAL +DEFAULT +5 foo
.* NOTYPE +GLOBAL +DEFAULT +ABS _edata .* NOTYPE +GLOBAL +DEFAULT +ABS _edata

View File

@ -87,9 +87,9 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +8 bl6 .* TLS +LOCAL +DEFAULT +8 bl6
.* TLS +LOCAL +DEFAULT +8 bl7 .* TLS +LOCAL +DEFAULT +8 bl7
.* TLS +LOCAL +DEFAULT +8 bl8 .* TLS +LOCAL +DEFAULT +8 bl8
.* OBJECT +LOCAL +HIDDEN +9 _DYNAMIC .* OBJECT +LOCAL +DEFAULT +9 _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +10 _PROCEDURE_LINKAGE_TABLE_ .* OBJECT +LOCAL +DEFAULT +10 _PROCEDURE_LINKAGE_TABLE_
.* OBJECT +LOCAL +HIDDEN +10 _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +10 _GLOBAL_OFFSET_TABLE_
.* TLS +GLOBAL +DEFAULT +7 sg8 .* TLS +GLOBAL +DEFAULT +7 sg8
.* TLS +GLOBAL +DEFAULT +8 bg8 .* TLS +GLOBAL +DEFAULT +8 bg8
.* TLS +GLOBAL +DEFAULT +8 bg6 .* TLS +GLOBAL +DEFAULT +8 bg6

View File

@ -87,9 +87,9 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +8 bl6 .* TLS +LOCAL +DEFAULT +8 bl6
.* TLS +LOCAL +DEFAULT +8 bl7 .* TLS +LOCAL +DEFAULT +8 bl7
.* TLS +LOCAL +DEFAULT +8 bl8 .* TLS +LOCAL +DEFAULT +8 bl8
.* OBJECT +LOCAL +HIDDEN +9 _DYNAMIC .* OBJECT +LOCAL +DEFAULT +9 _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +10 _PROCEDURE_LINKAGE_TABLE_ .* OBJECT +LOCAL +DEFAULT +10 _PROCEDURE_LINKAGE_TABLE_
.* OBJECT +LOCAL +HIDDEN +10 _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +10 _GLOBAL_OFFSET_TABLE_
.* TLS +GLOBAL +DEFAULT +7 sg8 .* TLS +GLOBAL +DEFAULT +7 sg8
.* TLS +GLOBAL +DEFAULT +8 bg8 .* TLS +GLOBAL +DEFAULT +8 bg8
.* TLS +GLOBAL +DEFAULT +8 bg6 .* TLS +GLOBAL +DEFAULT +8 bg6

View File

@ -78,13 +78,13 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +6 bl3 .* TLS +LOCAL +DEFAULT +6 bl3
.* TLS +LOCAL +DEFAULT +6 bl4 .* TLS +LOCAL +DEFAULT +6 bl4
.* TLS +LOCAL +DEFAULT +6 bl5 .* TLS +LOCAL +DEFAULT +6 bl5
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* TLS +LOCAL +HIDDEN +6 sh3 .* TLS +LOCAL +DEFAULT +6 sh3
.* OBJECT +LOCAL +HIDDEN +ABS _PROCEDURE_LINKAGE_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
.* TLS +LOCAL +HIDDEN +6 sh4 .* TLS +LOCAL +DEFAULT +6 sh4
.* TLS +LOCAL +HIDDEN +6 sh1 .* TLS +LOCAL +DEFAULT +6 sh1
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* TLS +LOCAL +HIDDEN +6 sh2 .* TLS +LOCAL +DEFAULT +6 sh2
.* FUNC +GLOBAL +DEFAULT +5 fn3 .* FUNC +GLOBAL +DEFAULT +5 fn3
.* TLS +GLOBAL +DEFAULT +UND sg1 .* TLS +GLOBAL +DEFAULT +UND sg1
.* NOTYPE +GLOBAL +DEFAULT +ABS __bss_start .* NOTYPE +GLOBAL +DEFAULT +ABS __bss_start

View File

@ -80,13 +80,13 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +6 bl3 .* TLS +LOCAL +DEFAULT +6 bl3
.* TLS +LOCAL +DEFAULT +6 bl4 .* TLS +LOCAL +DEFAULT +6 bl4
.* TLS +LOCAL +DEFAULT +6 bl5 .* TLS +LOCAL +DEFAULT +6 bl5
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* TLS +LOCAL +HIDDEN +6 sh3 .* TLS +LOCAL +DEFAULT +6 sh3
.* OBJECT +LOCAL +HIDDEN +ABS _PROCEDURE_LINKAGE_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
.* TLS +LOCAL +HIDDEN +6 sh4 .* TLS +LOCAL +DEFAULT +6 sh4
.* TLS +LOCAL +HIDDEN +6 sh1 .* TLS +LOCAL +DEFAULT +6 sh1
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* TLS +LOCAL +HIDDEN +6 sh2 .* TLS +LOCAL +DEFAULT +6 sh2
.* FUNC +GLOBAL +DEFAULT +5 fn3 .* FUNC +GLOBAL +DEFAULT +5 fn3
.* TLS +GLOBAL +DEFAULT +UND sg1 .* TLS +GLOBAL +DEFAULT +UND sg1
.* NOTYPE +GLOBAL +DEFAULT +ABS __bss_start .* NOTYPE +GLOBAL +DEFAULT +ABS __bss_start

View File

@ -101,25 +101,25 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +7 sl6 .* TLS +LOCAL +DEFAULT +7 sl6
.* TLS +LOCAL +DEFAULT +7 sl7 .* TLS +LOCAL +DEFAULT +7 sl7
.* TLS +LOCAL +DEFAULT +7 sl8 .* TLS +LOCAL +DEFAULT +7 sl8
.* TLS +LOCAL +HIDDEN +8 sH1 .* TLS +LOCAL +DEFAULT +8 sH1
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* TLS +LOCAL +HIDDEN +7 sh3 .* TLS +LOCAL +DEFAULT +7 sh3
.* TLS +LOCAL +HIDDEN +8 sH2 .* TLS +LOCAL +DEFAULT +8 sH2
.* TLS +LOCAL +HIDDEN +8 sH7 .* TLS +LOCAL +DEFAULT +8 sH7
.* OBJECT +LOCAL +HIDDEN +ABS _PROCEDURE_LINKAGE_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
.* TLS +LOCAL +HIDDEN +7 sh7 .* TLS +LOCAL +DEFAULT +7 sh7
.* TLS +LOCAL +HIDDEN +7 sh8 .* TLS +LOCAL +DEFAULT +7 sh8
.* TLS +LOCAL +HIDDEN +8 sH4 .* TLS +LOCAL +DEFAULT +8 sH4
.* TLS +LOCAL +HIDDEN +7 sh4 .* TLS +LOCAL +DEFAULT +7 sh4
.* TLS +LOCAL +HIDDEN +8 sH3 .* TLS +LOCAL +DEFAULT +8 sH3
.* TLS +LOCAL +HIDDEN +7 sh5 .* TLS +LOCAL +DEFAULT +7 sh5
.* TLS +LOCAL +HIDDEN +8 sH5 .* TLS +LOCAL +DEFAULT +8 sH5
.* TLS +LOCAL +HIDDEN +8 sH6 .* TLS +LOCAL +DEFAULT +8 sH6
.* TLS +LOCAL +HIDDEN +8 sH8 .* TLS +LOCAL +DEFAULT +8 sH8
.* TLS +LOCAL +HIDDEN +7 sh1 .* TLS +LOCAL +DEFAULT +7 sh1
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* TLS +LOCAL +HIDDEN +7 sh2 .* TLS +LOCAL +DEFAULT +7 sh2
.* TLS +LOCAL +HIDDEN +7 sh6 .* TLS +LOCAL +DEFAULT +7 sh6
.* TLS +GLOBAL +DEFAULT +7 sg8 .* TLS +GLOBAL +DEFAULT +7 sg8
.* TLS +GLOBAL +DEFAULT +7 sg3 .* TLS +GLOBAL +DEFAULT +7 sg3
.* TLS +GLOBAL +DEFAULT +7 sg4 .* TLS +GLOBAL +DEFAULT +7 sg4

View File

@ -101,25 +101,25 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +7 sl6 .* TLS +LOCAL +DEFAULT +7 sl6
.* TLS +LOCAL +DEFAULT +7 sl7 .* TLS +LOCAL +DEFAULT +7 sl7
.* TLS +LOCAL +DEFAULT +7 sl8 .* TLS +LOCAL +DEFAULT +7 sl8
.* TLS +LOCAL +HIDDEN +8 sH1 .* TLS +LOCAL +DEFAULT +8 sH1
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* TLS +LOCAL +HIDDEN +7 sh3 .* TLS +LOCAL +DEFAULT +7 sh3
.* TLS +LOCAL +HIDDEN +8 sH2 .* TLS +LOCAL +DEFAULT +8 sH2
.* TLS +LOCAL +HIDDEN +8 sH7 .* TLS +LOCAL +DEFAULT +8 sH7
.* OBJECT +LOCAL +HIDDEN +ABS _PROCEDURE_LINKAGE_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _PROCEDURE_LINKAGE_TABLE_
.* TLS +LOCAL +HIDDEN +7 sh7 .* TLS +LOCAL +DEFAULT +7 sh7
.* TLS +LOCAL +HIDDEN +7 sh8 .* TLS +LOCAL +DEFAULT +7 sh8
.* TLS +LOCAL +HIDDEN +8 sH4 .* TLS +LOCAL +DEFAULT +8 sH4
.* TLS +LOCAL +HIDDEN +7 sh4 .* TLS +LOCAL +DEFAULT +7 sh4
.* TLS +LOCAL +HIDDEN +8 sH3 .* TLS +LOCAL +DEFAULT +8 sH3
.* TLS +LOCAL +HIDDEN +7 sh5 .* TLS +LOCAL +DEFAULT +7 sh5
.* TLS +LOCAL +HIDDEN +8 sH5 .* TLS +LOCAL +DEFAULT +8 sH5
.* TLS +LOCAL +HIDDEN +8 sH6 .* TLS +LOCAL +DEFAULT +8 sH6
.* TLS +LOCAL +HIDDEN +8 sH8 .* TLS +LOCAL +DEFAULT +8 sH8
.* TLS +LOCAL +HIDDEN +7 sh1 .* TLS +LOCAL +DEFAULT +7 sh1
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* TLS +LOCAL +HIDDEN +7 sh2 .* TLS +LOCAL +DEFAULT +7 sh2
.* TLS +LOCAL +HIDDEN +7 sh6 .* TLS +LOCAL +DEFAULT +7 sh6
.* TLS +GLOBAL +DEFAULT +7 sg8 .* TLS +GLOBAL +DEFAULT +7 sg8
.* TLS +GLOBAL +DEFAULT +7 sg3 .* TLS +GLOBAL +DEFAULT +7 sg3
.* TLS +GLOBAL +DEFAULT +7 sg4 .* TLS +GLOBAL +DEFAULT +7 sg4

View File

@ -109,8 +109,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +10 bl6 .* TLS +LOCAL +DEFAULT +10 bl6
.* TLS +LOCAL +DEFAULT +10 bl7 .* TLS +LOCAL +DEFAULT +10 bl7
.* TLS +LOCAL +DEFAULT +10 bl8 .* TLS +LOCAL +DEFAULT +10 bl8
.* OBJECT +LOCAL +HIDDEN +11 _DYNAMIC .* OBJECT +LOCAL +DEFAULT +11 _DYNAMIC
.* OBJECT +LOCAL +HIDDEN +13 _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +13 _GLOBAL_OFFSET_TABLE_
.* TLS +GLOBAL +DEFAULT +9 sg8 .* TLS +GLOBAL +DEFAULT +9 sg8
.* TLS +GLOBAL +DEFAULT +10 bg8 .* TLS +GLOBAL +DEFAULT +10 bg8
.* TLS +GLOBAL +DEFAULT +10 bg6 .* TLS +GLOBAL +DEFAULT +10 bg6

View File

@ -100,9 +100,9 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: 0+94 +0 +TLS +LOCAL +DEFAULT +8 bl6 +[0-9]+: 0+94 +0 +TLS +LOCAL +DEFAULT +8 bl6
+[0-9]+: 0+98 +0 +TLS +LOCAL +DEFAULT +8 bl7 +[0-9]+: 0+98 +0 +TLS +LOCAL +DEFAULT +8 bl7
+[0-9]+: 0+9c +0 +TLS +LOCAL +DEFAULT +8 bl8 +[0-9]+: 0+9c +0 +TLS +LOCAL +DEFAULT +8 bl8
+[0-9]+: 0+a0 +0 +TLS +LOCAL +HIDDEN +7 _TLS_MODULE_BASE_ +[0-9]+: 0+a0 +0 +TLS +LOCAL +DEFAULT +7 _TLS_MODULE_BASE_
+[0-9]+: 0+601258 +0 +OBJECT +LOCAL +HIDDEN +9 _DYNAMIC +[0-9]+: 0+601258 +0 +OBJECT +LOCAL +DEFAULT +9 _DYNAMIC
+[0-9]+: 0+601378 +0 +OBJECT +LOCAL +HIDDEN +11 _GLOBAL_OFFSET_TABLE_ +[0-9]+: 0+601378 +0 +OBJECT +LOCAL +DEFAULT +11 _GLOBAL_OFFSET_TABLE_
+[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +7 sg8 +[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +7 sg8
+[0-9]+: 0+7c +0 +TLS +GLOBAL +DEFAULT +8 bg8 +[0-9]+: 0+7c +0 +TLS +GLOBAL +DEFAULT +8 bg8
+[0-9]+: 0+74 +0 +TLS +GLOBAL +DEFAULT +8 bg6 +[0-9]+: 0+74 +0 +TLS +GLOBAL +DEFAULT +8 bg6

View File

@ -127,25 +127,25 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: 0+34 +0 +TLS +LOCAL +DEFAULT +8 sl6 +[0-9]+: 0+34 +0 +TLS +LOCAL +DEFAULT +8 sl6
+[0-9]+: 0+38 +0 +TLS +LOCAL +DEFAULT +8 sl7 +[0-9]+: 0+38 +0 +TLS +LOCAL +DEFAULT +8 sl7
+[0-9]+: 0+3c +0 +TLS +LOCAL +DEFAULT +8 sl8 +[0-9]+: 0+3c +0 +TLS +LOCAL +DEFAULT +8 sl8
+[0-9]+: 0+60 +0 +TLS +LOCAL +HIDDEN +9 sH1 +[0-9]+: 0+60 +0 +TLS +LOCAL +DEFAULT +9 sH1
+[0-9]+: 0+ +0 +TLS +LOCAL +HIDDEN +8 _TLS_MODULE_BASE_ +[0-9]+: 0+ +0 +TLS +LOCAL +DEFAULT +8 _TLS_MODULE_BASE_
+[0-9]+: 0+2011b8 +0 +OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC +[0-9]+: 0+2011b8 +0 +OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
+[0-9]+: 0+48 +0 +TLS +LOCAL +HIDDEN +8 sh3 +[0-9]+: 0+48 +0 +TLS +LOCAL +DEFAULT +8 sh3
+[0-9]+: 0+64 +0 +TLS +LOCAL +HIDDEN +9 sH2 +[0-9]+: 0+64 +0 +TLS +LOCAL +DEFAULT +9 sH2
+[0-9]+: 0+78 +0 +TLS +LOCAL +HIDDEN +9 sH7 +[0-9]+: 0+78 +0 +TLS +LOCAL +DEFAULT +9 sH7
+[0-9]+: 0+58 +0 +TLS +LOCAL +HIDDEN +8 sh7 +[0-9]+: 0+58 +0 +TLS +LOCAL +DEFAULT +8 sh7
+[0-9]+: 0+5c +0 +TLS +LOCAL +HIDDEN +8 sh8 +[0-9]+: 0+5c +0 +TLS +LOCAL +DEFAULT +8 sh8
+[0-9]+: 0+6c +0 +TLS +LOCAL +HIDDEN +9 sH4 +[0-9]+: 0+6c +0 +TLS +LOCAL +DEFAULT +9 sH4
+[0-9]+: 0+4c +0 +TLS +LOCAL +HIDDEN +8 sh4 +[0-9]+: 0+4c +0 +TLS +LOCAL +DEFAULT +8 sh4
+[0-9]+: 0+68 +0 +TLS +LOCAL +HIDDEN +9 sH3 +[0-9]+: 0+68 +0 +TLS +LOCAL +DEFAULT +9 sH3
+[0-9]+: 0+50 +0 +TLS +LOCAL +HIDDEN +8 sh5 +[0-9]+: 0+50 +0 +TLS +LOCAL +DEFAULT +8 sh5
+[0-9]+: 0+70 +0 +TLS +LOCAL +HIDDEN +9 sH5 +[0-9]+: 0+70 +0 +TLS +LOCAL +DEFAULT +9 sH5
+[0-9]+: 0+74 +0 +TLS +LOCAL +HIDDEN +9 sH6 +[0-9]+: 0+74 +0 +TLS +LOCAL +DEFAULT +9 sH6
+[0-9]+: 0+7c +0 +TLS +LOCAL +HIDDEN +9 sH8 +[0-9]+: 0+7c +0 +TLS +LOCAL +DEFAULT +9 sH8
+[0-9]+: 0+40 +0 +TLS +LOCAL +HIDDEN +8 sh1 +[0-9]+: 0+40 +0 +TLS +LOCAL +DEFAULT +8 sh1
+[0-9]+: 0+201350 +0 +OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ +[0-9]+: 0+201350 +0 +OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
+[0-9]+: 0+44 +0 +TLS +LOCAL +HIDDEN +8 sh2 +[0-9]+: 0+44 +0 +TLS +LOCAL +DEFAULT +8 sh2
+[0-9]+: 0+54 +0 +TLS +LOCAL +HIDDEN +8 sh6 +[0-9]+: 0+54 +0 +TLS +LOCAL +DEFAULT +8 sh6
+[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +8 sg8 +[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +8 sg8
+[0-9]+: 0+8 +0 +TLS +GLOBAL +DEFAULT +8 sg3 +[0-9]+: 0+8 +0 +TLS +GLOBAL +DEFAULT +8 sg3
+[0-9]+: 0+c +0 +TLS +GLOBAL +DEFAULT +8 sg4 +[0-9]+: 0+c +0 +TLS +GLOBAL +DEFAULT +8 sg4

View File

@ -89,8 +89,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +8 * +[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +8 *
+[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +9 * +[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +9 *
+[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +10 * +[0-9]+: [0-9a-f]+ +0 +SECTION +LOCAL +DEFAULT +10 *
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG3 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG3
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG5 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG5
+[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG2 +[0-9]+: 0+ +0 +TLS +GLOBAL +DEFAULT +UND sG2

View File

@ -111,24 +111,24 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* TLS +LOCAL +DEFAULT +8 sl6 .* TLS +LOCAL +DEFAULT +8 sl6
.* TLS +LOCAL +DEFAULT +8 sl7 .* TLS +LOCAL +DEFAULT +8 sl7
.* TLS +LOCAL +DEFAULT +8 sl8 .* TLS +LOCAL +DEFAULT +8 sl8
.* TLS +LOCAL +HIDDEN +9 sH1 .* TLS +LOCAL +DEFAULT +9 sH1
.* OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC .* OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
.* TLS +LOCAL +HIDDEN +8 sh3 .* TLS +LOCAL +DEFAULT +8 sh3
.* TLS +LOCAL +HIDDEN +9 sH2 .* TLS +LOCAL +DEFAULT +9 sH2
.* TLS +LOCAL +HIDDEN +9 sH7 .* TLS +LOCAL +DEFAULT +9 sH7
.* TLS +LOCAL +HIDDEN +8 sh7 .* TLS +LOCAL +DEFAULT +8 sh7
.* TLS +LOCAL +HIDDEN +8 sh8 .* TLS +LOCAL +DEFAULT +8 sh8
.* TLS +LOCAL +HIDDEN +9 sH4 .* TLS +LOCAL +DEFAULT +9 sH4
.* TLS +LOCAL +HIDDEN +8 sh4 .* TLS +LOCAL +DEFAULT +8 sh4
.* TLS +LOCAL +HIDDEN +9 sH3 .* TLS +LOCAL +DEFAULT +9 sH3
.* TLS +LOCAL +HIDDEN +8 sh5 .* TLS +LOCAL +DEFAULT +8 sh5
.* TLS +LOCAL +HIDDEN +9 sH5 .* TLS +LOCAL +DEFAULT +9 sH5
.* TLS +LOCAL +HIDDEN +9 sH6 .* TLS +LOCAL +DEFAULT +9 sH6
.* TLS +LOCAL +HIDDEN +9 sH8 .* TLS +LOCAL +DEFAULT +9 sH8
.* TLS +LOCAL +HIDDEN +8 sh1 .* TLS +LOCAL +DEFAULT +8 sh1
.* OBJECT +LOCAL +HIDDEN +ABS _GLOBAL_OFFSET_TABLE_ .* OBJECT +LOCAL +DEFAULT +ABS _GLOBAL_OFFSET_TABLE_
.* TLS +LOCAL +HIDDEN +8 sh2 .* TLS +LOCAL +DEFAULT +8 sh2
.* TLS +LOCAL +HIDDEN +8 sh6 .* TLS +LOCAL +DEFAULT +8 sh6
.* TLS +GLOBAL +DEFAULT +8 sg8 .* TLS +GLOBAL +DEFAULT +8 sg8
.* TLS +GLOBAL +DEFAULT +8 sg3 .* TLS +GLOBAL +DEFAULT +8 sg3
.* TLS +GLOBAL +DEFAULT +8 sg4 .* TLS +GLOBAL +DEFAULT +8 sg4

View File

@ -92,8 +92,8 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl6 +[0-9]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl6
+[0-9]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl7 +[0-9]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl7
+[0-9]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl8 +[0-9]+: [0-9a-f]+ +0 +TLS +LOCAL +DEFAULT +8 sl8
+[0-9]+: 0+ +0 +TLS +LOCAL +HIDDEN +8 _TLS_MODULE_BASE_ +[0-9]+: 0+ +0 +TLS +LOCAL +DEFAULT +8 _TLS_MODULE_BASE_
+[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +HIDDEN +9 _DYNAMIC +[0-9]+: [0-9a-f]+ +0 +OBJECT +LOCAL +DEFAULT +9 _DYNAMIC
+[0-9]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg8 +[0-9]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg8
+[0-9]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg3 +[0-9]+: [0-9a-f]+ +0 +TLS +GLOBAL +DEFAULT +8 sg3
+[0-9]+: [0-9a-f]+ +0 +TLS +GLOBAL +HIDDEN +8 sh3 +[0-9]+: [0-9a-f]+ +0 +TLS +GLOBAL +HIDDEN +8 sh3

View File

@ -110,24 +110,24 @@ Symbol table '\.symtab' contains [0-9]+ entries:
+[0-9]+: 0+34 +0 +TLS +LOCAL +DEFAULT +7 sl6 +[0-9]+: 0+34 +0 +TLS +LOCAL +DEFAULT +7 sl6
+[0-9]+: 0+38 +0 +TLS +LOCAL +DEFAULT +7 sl7 +[0-9]+: 0+38 +0 +TLS +LOCAL +DEFAULT +7 sl7
+[0-9]+: 0+3c +0 +TLS +LOCAL +DEFAULT +7 sl8 +[0-9]+: 0+3c +0 +TLS +LOCAL +DEFAULT +7 sl8
+[0-9]+: 0+60 +0 +TLS +LOCAL +HIDDEN +8 sH1 +[0-9]+: 0+60 +0 +TLS +LOCAL +DEFAULT +8 sH1
+[0-9]+: 0+ +0 +TLS +LOCAL +HIDDEN +7 _TLS_MODULE_BASE_ +[0-9]+: 0+ +0 +TLS +LOCAL +DEFAULT +7 _TLS_MODULE_BASE_
+[0-9]+: 0+144c +0 +OBJECT +LOCAL +HIDDEN +ABS _DYNAMIC +[0-9]+: 0+144c +0 +OBJECT +LOCAL +DEFAULT +ABS _DYNAMIC
+[0-9]+: 0+48 +0 +TLS +LOCAL +HIDDEN +7 sh3 +[0-9]+: 0+48 +0 +TLS +LOCAL +DEFAULT +7 sh3
+[0-9]+: 0+64 +0 +TLS +LOCAL +HIDDEN +8 sH2 +[0-9]+: 0+64 +0 +TLS +LOCAL +DEFAULT +8 sH2
+[0-9]+: 0+78 +0 +TLS +LOCAL +HIDDEN +8 sH7 +[0-9]+: 0+78 +0 +TLS +LOCAL +DEFAULT +8 sH7
+[0-9]+: 0+58 +0 +TLS +LOCAL +HIDDEN +7 sh7 +[0-9]+: 0+58 +0 +TLS +LOCAL +DEFAULT +7 sh7
+[0-9]+: 0+5c +0 +TLS +LOCAL +HIDDEN +7 sh8 +[0-9]+: 0+5c +0 +TLS +LOCAL +DEFAULT +7 sh8
+[0-9]+: 0+6c +0 +TLS +LOCAL +HIDDEN +8 sH4 +[0-9]+: 0+6c +0 +TLS +LOCAL +DEFAULT +8 sH4
+[0-9]+: 0+4c +0 +TLS +LOCAL +HIDDEN +7 sh4 +[0-9]+: 0+4c +0 +TLS +LOCAL +DEFAULT +7 sh4
+[0-9]+: 0+68 +0 +TLS +LOCAL +HIDDEN +8 sH3 +[0-9]+: 0+68 +0 +TLS +LOCAL +DEFAULT +8 sH3
+[0-9]+: 0+50 +0 +TLS +LOCAL +HIDDEN +7 sh5 +[0-9]+: 0+50 +0 +TLS +LOCAL +DEFAULT +7 sh5
+[0-9]+: 0+70 +0 +TLS +LOCAL +HIDDEN +8 sH5 +[0-9]+: 0+70 +0 +TLS +LOCAL +DEFAULT +8 sH5
+[0-9]+: 0+74 +0 +TLS +LOCAL +HIDDEN +8 sH6 +[0-9]+: 0+74 +0 +TLS +LOCAL +DEFAULT +8 sH6
+[0-9]+: 0+7c +0 +TLS +LOCAL +HIDDEN +8 sH8 +[0-9]+: 0+7c +0 +TLS +LOCAL +DEFAULT +8 sH8
+[0-9]+: 0+40 +0 +TLS +LOCAL +HIDDEN +7 sh1 +[0-9]+: 0+40 +0 +TLS +LOCAL +DEFAULT +7 sh1
+[0-9]+: 0+44 +0 +TLS +LOCAL +HIDDEN +7 sh2 +[0-9]+: 0+44 +0 +TLS +LOCAL +DEFAULT +7 sh2
+[0-9]+: 0+54 +0 +TLS +LOCAL +HIDDEN +7 sh6 +[0-9]+: 0+54 +0 +TLS +LOCAL +DEFAULT +7 sh6
+[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +7 sg8 +[0-9]+: 0+1c +0 +TLS +GLOBAL +DEFAULT +7 sg8
+[0-9]+: 0+8 +0 +TLS +GLOBAL +DEFAULT +7 sg3 +[0-9]+: 0+8 +0 +TLS +GLOBAL +DEFAULT +7 sg3
+[0-9]+: 0+c +0 +TLS +GLOBAL +DEFAULT +7 sg4 +[0-9]+: 0+c +0 +TLS +GLOBAL +DEFAULT +7 sg4