mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-11 22:24:42 +00:00
8c5b4e5228
Lots of fixes for the compatibility code that handles linking of -mcall-aixdesc code (or that generated by 12 year old gcc) with current ELFv1 ABI code. 1) A reference to a dot-symbol in an object file wasn't satisfied by a function descriptor in later object files. 2) The as-needed code had bit-rotted; Shared libs now need a strong reference to be counted as needed. 3) --gc-sections involving dot-symbols was broken, needing func_desc_adjust to be run early and lots of other fixes. bfd/ * elf64-ppc.c (struct ppc_link_hash_entry): Delete "was_undefined". (struct ppc_link_hash_table): Delete "twiddled_syms". Add "need_func_desc_adj". (lookup_fdh): Link direct fdh sym via oh field and set flags. (make_fdh): Make strong and weak undefined function descriptor symbols. (ppc64_elf_merge_symbol): New function. (elf_backend_merge_symbol): Define. (ppc64_elf_archive_symbol_lookup): Don't test undefweak for fake function descriptors. (add_symbol_adjust): Don't twiddle symbols to undefweak. Propagate more ref flags to function descriptor symbol. Make some function descriptor symbols dynamic. (ppc64_elf_before_check_relocs): Only run add_symbol_adjust for ELFv1. Set need_func_desc_adj. Don't fix undefs list. (ppc64_elf_check_relocs): Set non_ir_ref for descriptors. Don't call lookup_fdh here. (ppc64_elf_gc_sections): New function. (bfd_elf64_bfd_gc_sections): Define. (ppc64_elf_gc_mark_hook): Mark descriptor. (func_desc_adjust): Don't make fake function descriptor syms strong here. Exit earlier on non-dotsyms. Take note of elf.dynamic flag when deciding whether a dynamic function descriptor might be needed. Transfer elf.dynamic and set elf.needs_plt. Move plt regardless of visibility. Make descriptor dynamic if entry sym is dynamic, not for other cases. (ppc64_elf_func_desc_adjust): Don't run func_desc_adjust if already done. (ppc64_elf_edit_opd): Use oh field rather than lookup_fdh. (ppc64_elf_size_stubs): Likewise. (ppc_build_one_stub): Don't clear was_undefined. Only set sym undefweak if stub symbol is defined. (undo_symbol_twiddle, ppc64_elf_restore_symbols): Delete. * elf64-ppc.h (ppc64_elf_restore_symbols): Don't declare. ld/ * emultempl/ppc64elf.em (gld${EMULATION_NAME}_finish): Don't call ppc64_elf_restore_symbols. * testsuite/ld-powerpc/dotsym1.d: New. * testsuite/ld-powerpc/dotsym2.d: New. * testsuite/ld-powerpc/dotsym3.d: New. * testsuite/ld-powerpc/dotsym4.d: New. * testsuite/ld-powerpc/dotsymref.s: New. * testsuite/ld-powerpc/nodotsym.s: New. * testsuite/ld-powerpc/powerpc.exp: Run new tests.
97 lines
3.1 KiB
C
97 lines
3.1 KiB
C
/* PowerPC64-specific support for 64-bit ELF.
|
|
Copyright (C) 2002-2016 Free Software Foundation, Inc.
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
/* Used to pass info between ld and bfd. */
|
|
struct ppc64_elf_params
|
|
{
|
|
/* Linker stub bfd. */
|
|
bfd *stub_bfd;
|
|
|
|
/* Linker call-backs. */
|
|
asection * (*add_stub_section) (const char *, asection *);
|
|
void (*layout_sections_again) (void);
|
|
|
|
/* Maximum size of a group of input sections that can be handled by
|
|
one stub section. A value of +/-1 indicates the bfd back-end
|
|
should use a suitable default size. */
|
|
bfd_signed_vma group_size;
|
|
|
|
/* Whether to use a special call stub for __tls_get_addr. */
|
|
int tls_get_addr_opt;
|
|
|
|
/* Whether to allow multiple toc sections. */
|
|
int no_multi_toc;
|
|
|
|
/* Set if PLT call stubs should load r11. */
|
|
int plt_static_chain;
|
|
|
|
/* Set if PLT call stubs need to be thread safe on power7+. */
|
|
int plt_thread_safe;
|
|
|
|
/* Set if individual PLT call stubs should be aligned. */
|
|
int plt_stub_align;
|
|
|
|
/* Whether to canonicalize .opd so that there are no overlapping
|
|
.opd entries. */
|
|
int non_overlapping_opd;
|
|
|
|
/* Whether to emit symbols for stubs. */
|
|
int emit_stub_syms;
|
|
|
|
/* Whether to generate out-of-line register save/restore for gcc -Os code. */
|
|
int save_restore_funcs;
|
|
|
|
/* Set when a potential variable is detected in .toc. */
|
|
int object_in_toc;
|
|
};
|
|
|
|
bfd_boolean ppc64_elf_init_stub_bfd
|
|
(struct bfd_link_info *, struct ppc64_elf_params *);
|
|
bfd_boolean ppc64_elf_edit_opd
|
|
(struct bfd_link_info *);
|
|
asection *ppc64_elf_tls_setup
|
|
(struct bfd_link_info *);
|
|
bfd_boolean ppc64_elf_tls_optimize
|
|
(struct bfd_link_info *);
|
|
bfd_boolean ppc64_elf_edit_toc
|
|
(struct bfd_link_info *);
|
|
bfd_boolean ppc64_elf_has_small_toc_reloc
|
|
(asection *);
|
|
bfd_vma ppc64_elf_set_toc
|
|
(struct bfd_link_info *, bfd *);
|
|
int ppc64_elf_setup_section_lists
|
|
(struct bfd_link_info *);
|
|
void ppc64_elf_start_multitoc_partition
|
|
(struct bfd_link_info *);
|
|
bfd_boolean ppc64_elf_next_toc_section
|
|
(struct bfd_link_info *, asection *);
|
|
bfd_boolean ppc64_elf_layout_multitoc
|
|
(struct bfd_link_info *);
|
|
void ppc64_elf_finish_multitoc_partition
|
|
(struct bfd_link_info *);
|
|
bfd_boolean ppc64_elf_check_init_fini
|
|
(struct bfd_link_info *);
|
|
bfd_boolean ppc64_elf_next_input_section
|
|
(struct bfd_link_info *, asection *);
|
|
bfd_boolean ppc64_elf_size_stubs
|
|
(struct bfd_link_info *);
|
|
bfd_boolean ppc64_elf_build_stubs
|
|
(struct bfd_link_info *, char **);
|