Referencing a function's address on PowerPC64 ELFv2
ELFv2 needs to create plt entries in a non-PIC executable for an
address reference to a function defined in a shared object. It's
possible that an object file has no features that distinguish it as
ELFv1 or ELFv2, eg. an object only containing data. Such files need
to be handled like those that are known to be ELFv2.
However, this unnecessarily creates plt entries for the analogous
ELFv1 case, so arrange to set output abi version earlier, and use the
output abi version to further distinguish ambiguous input files.
bfd/
* elf64-ppc.c (ppc64_elf_check_relocs): Account for possibly
needed plt entries when taking the address of functions for
abiversion == 0 (ie. unknown) as well as abiversion == 2.
Move opd setup and abiversion checks to..
(ppc64_elf_before_check_relocs): ..here. Renamed from
ppc64_elf_process_dot_syms. Set output abiversion from input and
input abiversion from output, if either is not set.
(ppc64_elf_merge_private_bfd_data): Don't merge flags here.
(elf_backend_check_directives): Update.
ld/testsuite/
* ld-powerpc/startv1.s, * ld-powerpc/startv2.s, * ld-powerpc/funref.s,
* ld-powerpc/funv1.s, * ld-powerpc/funv2.s,
* ld-powerpc/ambiguousv1.d, * ld-powerpc/ambiguousv2.d: New test files.
* ld-powerpc/powerpc.exp: Run new tests.
2014-03-25 04:42:48 +00:00
|
|
|
#source: startv1.s
|
|
|
|
#source: funref.s
|
|
|
|
#as: -a64
|
2014-07-02 05:37:18 +00:00
|
|
|
#ld: -melf64ppc --emit-stub-syms
|
Referencing a function's address on PowerPC64 ELFv2
ELFv2 needs to create plt entries in a non-PIC executable for an
address reference to a function defined in a shared object. It's
possible that an object file has no features that distinguish it as
ELFv1 or ELFv2, eg. an object only containing data. Such files need
to be handled like those that are known to be ELFv2.
However, this unnecessarily creates plt entries for the analogous
ELFv1 case, so arrange to set output abi version earlier, and use the
output abi version to further distinguish ambiguous input files.
bfd/
* elf64-ppc.c (ppc64_elf_check_relocs): Account for possibly
needed plt entries when taking the address of functions for
abiversion == 0 (ie. unknown) as well as abiversion == 2.
Move opd setup and abiversion checks to..
(ppc64_elf_before_check_relocs): ..here. Renamed from
ppc64_elf_process_dot_syms. Set output abiversion from input and
input abiversion from output, if either is not set.
(ppc64_elf_merge_private_bfd_data): Don't merge flags here.
(elf_backend_check_directives): Update.
ld/testsuite/
* ld-powerpc/startv1.s, * ld-powerpc/startv2.s, * ld-powerpc/funref.s,
* ld-powerpc/funv1.s, * ld-powerpc/funv2.s,
* ld-powerpc/ambiguousv1.d, * ld-powerpc/ambiguousv2.d: New test files.
* ld-powerpc/powerpc.exp: Run new tests.
2014-03-25 04:42:48 +00:00
|
|
|
#ld_after_inputfiles: tmpdir/funv1.so
|
2014-07-02 05:37:18 +00:00
|
|
|
#readelf: -rs --wide
|
|
|
|
# Check that we do the right thing with funref.s that doesn't have
|
|
|
|
# anything to mark it as ELFv1 or ELFv2. We should get a dynamic
|
|
|
|
# reloc on the function address, and my_func should be undefined
|
|
|
|
# dynamic with value zero.
|
Referencing a function's address on PowerPC64 ELFv2
ELFv2 needs to create plt entries in a non-PIC executable for an
address reference to a function defined in a shared object. It's
possible that an object file has no features that distinguish it as
ELFv1 or ELFv2, eg. an object only containing data. Such files need
to be handled like those that are known to be ELFv2.
However, this unnecessarily creates plt entries for the analogous
ELFv1 case, so arrange to set output abi version earlier, and use the
output abi version to further distinguish ambiguous input files.
bfd/
* elf64-ppc.c (ppc64_elf_check_relocs): Account for possibly
needed plt entries when taking the address of functions for
abiversion == 0 (ie. unknown) as well as abiversion == 2.
Move opd setup and abiversion checks to..
(ppc64_elf_before_check_relocs): ..here. Renamed from
ppc64_elf_process_dot_syms. Set output abiversion from input and
input abiversion from output, if either is not set.
(ppc64_elf_merge_private_bfd_data): Don't merge flags here.
(elf_backend_check_directives): Update.
ld/testsuite/
* ld-powerpc/startv1.s, * ld-powerpc/startv2.s, * ld-powerpc/funref.s,
* ld-powerpc/funv1.s, * ld-powerpc/funv2.s,
* ld-powerpc/ambiguousv1.d, * ld-powerpc/ambiguousv2.d: New test files.
* ld-powerpc/powerpc.exp: Run new tests.
2014-03-25 04:42:48 +00:00
|
|
|
|
|
|
|
Relocation section .* contains 1 entries:
|
|
|
|
.*
|
|
|
|
.* R_PPC64_ADDR64 +0+ my_func \+ 0
|
2014-07-02 05:37:18 +00:00
|
|
|
|
|
|
|
Symbol table '\.dynsym' contains 5 entries:
|
|
|
|
.*
|
|
|
|
0: .*
|
|
|
|
1: 0+00000000 0 FUNC GLOBAL DEFAULT UND my_func
|
|
|
|
2: 0+10010390 0 NOTYPE GLOBAL DEFAULT 11 __bss_start
|
|
|
|
3: 0+10010390 0 NOTYPE GLOBAL DEFAULT 11 _edata
|
|
|
|
4: 0+10010390 0 NOTYPE GLOBAL DEFAULT 11 _end
|
|
|
|
|
|
|
|
Symbol table '\.symtab' contains 19 entries:
|
|
|
|
Num: Value Size Type Bind Vis Ndx Name
|
|
|
|
0: .*
|
|
|
|
1: 0+10000158 0 SECTION LOCAL DEFAULT 1
|
|
|
|
2: 0+10000170 0 SECTION LOCAL DEFAULT 2
|
|
|
|
3: 0+10000198 0 SECTION LOCAL DEFAULT 3
|
|
|
|
4: 0+10000210 0 SECTION LOCAL DEFAULT 4
|
|
|
|
5: 0+10000248 0 SECTION LOCAL DEFAULT 5
|
|
|
|
6: 0+10000260 0 SECTION LOCAL DEFAULT 6
|
|
|
|
7: 0+10000264 0 SECTION LOCAL DEFAULT 7
|
|
|
|
8: 0+10010268 0 SECTION LOCAL DEFAULT 8
|
|
|
|
9: 0+10010368 0 SECTION LOCAL DEFAULT 9
|
|
|
|
10: 0+10010370 0 SECTION LOCAL DEFAULT 10
|
|
|
|
11: 0+10010388 0 SECTION LOCAL DEFAULT 11
|
|
|
|
12: 0+10010268 0 OBJECT LOCAL DEFAULT 8 _DYNAMIC
|
|
|
|
13: 0+10010368 0 NOTYPE GLOBAL DEFAULT 9 func_tab
|
|
|
|
14: 0+00000000 0 FUNC GLOBAL DEFAULT UND my_func
|
|
|
|
15: 0+10010370 0 FUNC GLOBAL DEFAULT 10 _start
|
|
|
|
16: 0+10010390 0 NOTYPE GLOBAL DEFAULT 11 __bss_start
|
|
|
|
17: 0+10010390 0 NOTYPE GLOBAL DEFAULT 11 _edata
|
|
|
|
18: 0+10010390 0 NOTYPE GLOBAL DEFAULT 11 _end
|