2001-01-14 06:22:51 +01:00
|
|
|
|
/* Support for HPPA 64-bit ELF
|
2003-02-17 19:24:40 +01:00
|
|
|
|
Copyright 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2003-02-17 19:24:40 +01:00
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2003-02-17 19:24:40 +01:00
|
|
|
|
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 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2003-02-17 19:24:40 +01:00
|
|
|
|
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.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2003-02-17 19:24:40 +01:00
|
|
|
|
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2000-10-12 03:28:06 +02:00
|
|
|
|
#include "alloca-conf.h"
|
2000-04-24 10:17:58 +02:00
|
|
|
|
#include "bfd.h"
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
|
#include "libbfd.h"
|
|
|
|
|
#include "elf-bfd.h"
|
|
|
|
|
#include "elf/hppa.h"
|
|
|
|
|
#include "libhppa.h"
|
|
|
|
|
#include "elf64-hppa.h"
|
|
|
|
|
#define ARCH_SIZE 64
|
|
|
|
|
|
|
|
|
|
#define PLT_ENTRY_SIZE 0x10
|
|
|
|
|
#define DLT_ENTRY_SIZE 0x8
|
|
|
|
|
#define OPD_ENTRY_SIZE 0x20
|
2000-12-09 02:54:51 +01:00
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
#define ELF_DYNAMIC_INTERPRETER "/usr/lib/pa20_64/dld.sl"
|
|
|
|
|
|
|
|
|
|
/* The stub is supposed to load the target address and target's DP
|
|
|
|
|
value out of the PLT, then do an external branch to the target
|
|
|
|
|
address.
|
|
|
|
|
|
|
|
|
|
LDD PLTOFF(%r27),%r1
|
|
|
|
|
BVE (%r1)
|
|
|
|
|
LDD PLTOFF+8(%r27),%r27
|
|
|
|
|
|
|
|
|
|
Note that we must use the LDD with a 14 bit displacement, not the one
|
|
|
|
|
with a 5 bit displacement. */
|
|
|
|
|
static char plt_stub[] = {0x53, 0x61, 0x00, 0x00, 0xe8, 0x20, 0xd0, 0x00,
|
|
|
|
|
0x53, 0x7b, 0x00, 0x00 };
|
|
|
|
|
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry
|
|
|
|
|
{
|
|
|
|
|
struct bfd_hash_entry root;
|
|
|
|
|
|
|
|
|
|
/* Offsets for this symbol in various linker sections. */
|
|
|
|
|
bfd_vma dlt_offset;
|
|
|
|
|
bfd_vma plt_offset;
|
|
|
|
|
bfd_vma opd_offset;
|
|
|
|
|
bfd_vma stub_offset;
|
|
|
|
|
|
2000-07-09 09:23:07 +02:00
|
|
|
|
/* The symbol table entry, if any, that this was derived from. */
|
2000-04-24 10:17:58 +02:00
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
|
|
|
|
|
/* The index of the (possibly local) symbol in the input bfd and its
|
|
|
|
|
associated BFD. Needed so that we can have relocs against local
|
|
|
|
|
symbols in shared libraries. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
long sym_indx;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
bfd *owner;
|
|
|
|
|
|
|
|
|
|
/* Dynamic symbols may need to have two different values. One for
|
|
|
|
|
the dynamic symbol table, one for the normal symbol table.
|
|
|
|
|
|
|
|
|
|
In such cases we store the symbol's real value and section
|
|
|
|
|
index here so we can restore the real value before we write
|
|
|
|
|
the normal symbol table. */
|
|
|
|
|
bfd_vma st_value;
|
|
|
|
|
int st_shndx;
|
|
|
|
|
|
|
|
|
|
/* Used to count non-got, non-plt relocations for delayed sizing
|
|
|
|
|
of relocation sections. */
|
|
|
|
|
struct elf64_hppa_dyn_reloc_entry
|
|
|
|
|
{
|
|
|
|
|
/* Next relocation in the chain. */
|
|
|
|
|
struct elf64_hppa_dyn_reloc_entry *next;
|
|
|
|
|
|
|
|
|
|
/* The type of the relocation. */
|
|
|
|
|
int type;
|
|
|
|
|
|
|
|
|
|
/* The input section of the relocation. */
|
|
|
|
|
asection *sec;
|
|
|
|
|
|
|
|
|
|
/* The index of the section symbol for the input section of
|
|
|
|
|
the relocation. Only needed when building shared libraries. */
|
|
|
|
|
int sec_symndx;
|
|
|
|
|
|
|
|
|
|
/* The offset within the input section of the relocation. */
|
|
|
|
|
bfd_vma offset;
|
|
|
|
|
|
|
|
|
|
/* The addend for the relocation. */
|
|
|
|
|
bfd_vma addend;
|
|
|
|
|
|
|
|
|
|
} *reloc_entries;
|
|
|
|
|
|
|
|
|
|
/* Nonzero if this symbol needs an entry in one of the linker
|
|
|
|
|
sections. */
|
|
|
|
|
unsigned want_dlt;
|
|
|
|
|
unsigned want_plt;
|
|
|
|
|
unsigned want_opd;
|
|
|
|
|
unsigned want_stub;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct elf64_hppa_dyn_hash_table
|
|
|
|
|
{
|
|
|
|
|
struct bfd_hash_table root;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct elf64_hppa_link_hash_table
|
|
|
|
|
{
|
|
|
|
|
struct elf_link_hash_table root;
|
|
|
|
|
|
|
|
|
|
/* Shortcuts to get to the various linker defined sections. */
|
|
|
|
|
asection *dlt_sec;
|
|
|
|
|
asection *dlt_rel_sec;
|
|
|
|
|
asection *plt_sec;
|
|
|
|
|
asection *plt_rel_sec;
|
|
|
|
|
asection *opd_sec;
|
|
|
|
|
asection *opd_rel_sec;
|
|
|
|
|
asection *other_rel_sec;
|
|
|
|
|
|
|
|
|
|
/* Offset of __gp within .plt section. When the PLT gets large we want
|
|
|
|
|
to slide __gp into the PLT section so that we can continue to use
|
|
|
|
|
single DP relative instructions to load values out of the PLT. */
|
|
|
|
|
bfd_vma gp_offset;
|
|
|
|
|
|
|
|
|
|
/* Note this is not strictly correct. We should create a stub section for
|
|
|
|
|
each input section with calls. The stub section should be placed before
|
|
|
|
|
the section with the call. */
|
|
|
|
|
asection *stub_sec;
|
|
|
|
|
|
|
|
|
|
bfd_vma text_segment_base;
|
|
|
|
|
bfd_vma data_segment_base;
|
|
|
|
|
|
|
|
|
|
struct elf64_hppa_dyn_hash_table dyn_hash_table;
|
|
|
|
|
|
|
|
|
|
/* We build tables to map from an input section back to its
|
|
|
|
|
symbol index. This is the BFD for which we currently have
|
|
|
|
|
a map. */
|
|
|
|
|
bfd *section_syms_bfd;
|
|
|
|
|
|
|
|
|
|
/* Array of symbol numbers for each input section attached to the
|
|
|
|
|
current BFD. */
|
|
|
|
|
int *section_syms;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define elf64_hppa_hash_table(p) \
|
|
|
|
|
((struct elf64_hppa_link_hash_table *) ((p)->hash))
|
|
|
|
|
|
|
|
|
|
typedef struct bfd_hash_entry *(*new_hash_entry_func)
|
|
|
|
|
PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_dyn_hash_table_init
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_table *ht, bfd *abfd,
|
|
|
|
|
new_hash_entry_func new));
|
|
|
|
|
static struct bfd_hash_entry *elf64_hppa_new_dyn_hash_entry
|
|
|
|
|
PARAMS ((struct bfd_hash_entry *entry, struct bfd_hash_table *table,
|
|
|
|
|
const char *string));
|
|
|
|
|
static struct bfd_link_hash_table *elf64_hppa_hash_table_create
|
|
|
|
|
PARAMS ((bfd *abfd));
|
|
|
|
|
static struct elf64_hppa_dyn_hash_entry *elf64_hppa_dyn_hash_lookup
|
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_table *table, const char *string,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean create, bfd_boolean copy));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
static void elf64_hppa_dyn_hash_traverse
|
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_table *table,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*func) (struct elf64_hppa_dyn_hash_entry *, PTR),
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PTR info));
|
|
|
|
|
|
|
|
|
|
static const char *get_dyn_name
|
2000-07-12 07:03:01 +02:00
|
|
|
|
PARAMS ((asection *, struct elf_link_hash_entry *,
|
|
|
|
|
const Elf_Internal_Rela *, char **, size_t *));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* This must follow the definitions of the various derived linker
|
|
|
|
|
hash tables and shared functions. */
|
|
|
|
|
#include "elf-hppa.h"
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_object_p
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_section_from_shdr
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
PARAMS ((bfd *, Elf_Internal_Shdr *, const char *));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
static void elf64_hppa_post_process_headers
|
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_create_dynamic_sections
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_adjust_dynamic_symbol
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_mark_milli_and_exported_functions
|
2002-06-23 11:05:59 +02:00
|
|
|
|
PARAMS ((struct elf_link_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_size_dynamic_sections
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_link_output_symbol_hook
|
|
|
|
|
PARAMS ((bfd *abfd, struct bfd_link_info *, const char *,
|
|
|
|
|
Elf_Internal_Sym *, asection *input_sec));
|
2001-08-11 09:59:54 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_finish_dynamic_symbol
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *,
|
|
|
|
|
struct elf_link_hash_entry *, Elf_Internal_Sym *));
|
2000-12-09 02:54:51 +01:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static int elf64_hppa_additional_program_headers
|
|
|
|
|
PARAMS ((bfd *));
|
2001-08-11 09:59:54 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_modify_segment_map
|
|
|
|
|
PARAMS ((bfd *));
|
2001-08-11 09:59:54 +02:00
|
|
|
|
|
2002-06-28 00:57:02 +02:00
|
|
|
|
static enum elf_reloc_type_class elf64_hppa_reloc_type_class
|
|
|
|
|
PARAMS ((const Elf_Internal_Rela *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_finish_dynamic_sections
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_check_relocs
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *,
|
|
|
|
|
asection *, const Elf_Internal_Rela *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_dynamic_symbol_p
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf_link_hash_entry *, struct bfd_link_info *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_mark_exported_functions
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf_link_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_finalize_opd
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_finalize_dlt
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean allocate_global_data_dlt
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean allocate_global_data_plt
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean allocate_global_data_stub
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean allocate_global_data_opd
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean get_reloc_section
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct elf64_hppa_link_hash_table *, asection *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean count_dyn_reloc
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct elf64_hppa_dyn_hash_entry *,
|
|
|
|
|
int, asection *, int, bfd_vma, bfd_vma));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean allocate_dynrel_entries
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean elf64_hppa_finalize_dynreloc
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean get_opd
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, struct elf64_hppa_link_hash_table *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean get_plt
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, struct elf64_hppa_link_hash_table *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean get_dlt
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, struct elf64_hppa_link_hash_table *));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean get_stub
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, struct elf64_hppa_link_hash_table *));
|
|
|
|
|
|
2001-01-30 14:40:08 +01:00
|
|
|
|
static int elf64_hppa_elf_get_symbol_type
|
|
|
|
|
PARAMS ((Elf_Internal_Sym *, int));
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_dyn_hash_table_init (ht, abfd, new)
|
|
|
|
|
struct elf64_hppa_dyn_hash_table *ht;
|
2000-07-09 09:23:07 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
new_hash_entry_func new;
|
|
|
|
|
{
|
2000-12-09 02:54:51 +01:00
|
|
|
|
memset (ht, 0, sizeof (*ht));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
return bfd_hash_table_init (&ht->root, new);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct bfd_hash_entry*
|
|
|
|
|
elf64_hppa_new_dyn_hash_entry (entry, table, string)
|
|
|
|
|
struct bfd_hash_entry *entry;
|
|
|
|
|
struct bfd_hash_table *table;
|
|
|
|
|
const char *string;
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *ret;
|
|
|
|
|
ret = (struct elf64_hppa_dyn_hash_entry *) entry;
|
|
|
|
|
|
|
|
|
|
/* Allocate the structure if it has not already been allocated by a
|
|
|
|
|
subclass. */
|
|
|
|
|
if (!ret)
|
|
|
|
|
ret = bfd_hash_allocate (table, sizeof (*ret));
|
|
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* Initialize our local data. All zeros, and definitely easier
|
|
|
|
|
than setting 8 bit fields. */
|
2000-12-09 02:54:51 +01:00
|
|
|
|
memset (ret, 0, sizeof (*ret));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* Call the allocation method of the superclass. */
|
|
|
|
|
ret = ((struct elf64_hppa_dyn_hash_entry *)
|
|
|
|
|
bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
|
|
|
|
|
|
|
|
|
|
return &ret->root;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create the derived linker hash table. The PA64 ELF port uses this
|
|
|
|
|
derived hash table to keep information specific to the PA ElF
|
|
|
|
|
linker (without using static variables). */
|
|
|
|
|
|
|
|
|
|
static struct bfd_link_hash_table*
|
|
|
|
|
elf64_hppa_hash_table_create (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_link_hash_table *ret;
|
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
ret = bfd_zalloc (abfd, (bfd_size_type) sizeof (*ret));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (!ret)
|
|
|
|
|
return 0;
|
|
|
|
|
if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
|
|
|
|
|
_bfd_elf_link_hash_newfunc))
|
|
|
|
|
{
|
|
|
|
|
bfd_release (abfd, ret);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!elf64_hppa_dyn_hash_table_init (&ret->dyn_hash_table, abfd,
|
|
|
|
|
elf64_hppa_new_dyn_hash_entry))
|
|
|
|
|
return 0;
|
|
|
|
|
return &ret->root.root;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Look up an entry in a PA64 ELF linker hash table. */
|
|
|
|
|
|
|
|
|
|
static struct elf64_hppa_dyn_hash_entry *
|
|
|
|
|
elf64_hppa_dyn_hash_lookup(table, string, create, copy)
|
|
|
|
|
struct elf64_hppa_dyn_hash_table *table;
|
|
|
|
|
const char *string;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean create, copy;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
return ((struct elf64_hppa_dyn_hash_entry *)
|
|
|
|
|
bfd_hash_lookup (&table->root, string, create, copy));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Traverse a PA64 ELF linker hash table. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
elf64_hppa_dyn_hash_traverse (table, func, info)
|
|
|
|
|
struct elf64_hppa_dyn_hash_table *table;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*func) PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
PTR info;
|
|
|
|
|
{
|
|
|
|
|
(bfd_hash_traverse
|
|
|
|
|
(&table->root,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
(bfd_boolean (*) PARAMS ((struct bfd_hash_entry *, PTR))) func,
|
2000-04-24 10:17:58 +02:00
|
|
|
|
info));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return nonzero if ABFD represents a PA2.0 ELF64 file.
|
|
|
|
|
|
|
|
|
|
Additionally we set the default architecture and machine. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_object_p (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
2001-06-03 04:41:58 +02:00
|
|
|
|
Elf_Internal_Ehdr * i_ehdrp;
|
|
|
|
|
unsigned int flags;
|
2001-01-31 14:28:50 +01:00
|
|
|
|
|
2001-06-03 04:41:58 +02:00
|
|
|
|
i_ehdrp = elf_elfheader (abfd);
|
|
|
|
|
if (strcmp (bfd_get_target (abfd), "elf64-hppa-linux") == 0)
|
|
|
|
|
{
|
2003-08-21 16:00:06 +02:00
|
|
|
|
/* GCC on hppa-linux produces binaries with OSABI=Linux,
|
|
|
|
|
but the kernel produces corefiles with OSABI=SysV. */
|
|
|
|
|
if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_LINUX &&
|
|
|
|
|
i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_NONE) /* aka SYSV */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2001-06-03 04:41:58 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_HPUX)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2001-06-03 04:41:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
flags = i_ehdrp->e_flags;
|
2001-01-31 14:28:50 +01:00
|
|
|
|
switch (flags & (EF_PARISC_ARCH | EF_PARISC_WIDE))
|
|
|
|
|
{
|
|
|
|
|
case EFA_PARISC_1_0:
|
|
|
|
|
return bfd_default_set_arch_mach (abfd, bfd_arch_hppa, 10);
|
|
|
|
|
case EFA_PARISC_1_1:
|
|
|
|
|
return bfd_default_set_arch_mach (abfd, bfd_arch_hppa, 11);
|
|
|
|
|
case EFA_PARISC_2_0:
|
|
|
|
|
return bfd_default_set_arch_mach (abfd, bfd_arch_hppa, 20);
|
|
|
|
|
case EFA_PARISC_2_0 | EF_PARISC_WIDE:
|
|
|
|
|
return bfd_default_set_arch_mach (abfd, bfd_arch_hppa, 25);
|
|
|
|
|
}
|
|
|
|
|
/* Don't be fussy. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given section type (hdr->sh_type), return a boolean indicating
|
|
|
|
|
whether or not the section is an elf64-hppa specific section. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_section_from_shdr (abfd, hdr, name)
|
|
|
|
|
bfd *abfd;
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
Elf_Internal_Shdr *hdr;
|
2002-06-04 02:51:08 +02:00
|
|
|
|
const char *name;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
asection *newsect;
|
|
|
|
|
|
|
|
|
|
switch (hdr->sh_type)
|
|
|
|
|
{
|
|
|
|
|
case SHT_PARISC_EXT:
|
|
|
|
|
if (strcmp (name, ".PARISC.archext") != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
break;
|
|
|
|
|
case SHT_PARISC_UNWIND:
|
|
|
|
|
if (strcmp (name, ".PARISC.unwind") != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
break;
|
|
|
|
|
case SHT_PARISC_DOC:
|
|
|
|
|
case SHT_PARISC_ANNOT:
|
|
|
|
|
default:
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
newsect = hdr->bfd_section;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Construct a string for use in the elf64_hppa_dyn_hash_table. The
|
2000-12-09 02:54:51 +01:00
|
|
|
|
name describes what was once potentially anonymous memory. We
|
2000-04-24 10:17:58 +02:00
|
|
|
|
allocate memory as necessary, possibly reusing PBUF/PLEN. */
|
|
|
|
|
|
|
|
|
|
static const char *
|
2000-07-12 07:03:01 +02:00
|
|
|
|
get_dyn_name (sec, h, rel, pbuf, plen)
|
|
|
|
|
asection *sec;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
const Elf_Internal_Rela *rel;
|
|
|
|
|
char **pbuf;
|
|
|
|
|
size_t *plen;
|
|
|
|
|
{
|
|
|
|
|
size_t nlen, tlen;
|
|
|
|
|
char *buf;
|
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
|
|
if (h && rel->r_addend == 0)
|
|
|
|
|
return h->root.root.string;
|
|
|
|
|
|
|
|
|
|
if (h)
|
|
|
|
|
nlen = strlen (h->root.root.string);
|
|
|
|
|
else
|
2000-07-12 07:03:01 +02:00
|
|
|
|
nlen = 8 + 1 + sizeof (rel->r_info) * 2 - 8;
|
|
|
|
|
tlen = nlen + 1 + sizeof (rel->r_addend) * 2 + 1;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
len = *plen;
|
|
|
|
|
buf = *pbuf;
|
|
|
|
|
if (len < tlen)
|
|
|
|
|
{
|
|
|
|
|
if (buf)
|
|
|
|
|
free (buf);
|
|
|
|
|
*pbuf = buf = malloc (tlen);
|
|
|
|
|
*plen = len = tlen;
|
|
|
|
|
if (!buf)
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (h)
|
|
|
|
|
{
|
|
|
|
|
memcpy (buf, h->root.root.string, nlen);
|
2000-07-12 07:03:01 +02:00
|
|
|
|
buf[nlen++] = '+';
|
2000-04-24 10:17:58 +02:00
|
|
|
|
sprintf_vma (buf + nlen, rel->r_addend);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-07-12 07:03:01 +02:00
|
|
|
|
nlen = sprintf (buf, "%x:%lx",
|
|
|
|
|
sec->id & 0xffffffff,
|
|
|
|
|
(long) ELF64_R_SYM (rel->r_info));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (rel->r_addend)
|
|
|
|
|
{
|
|
|
|
|
buf[nlen++] = '+';
|
|
|
|
|
sprintf_vma (buf + nlen, rel->r_addend);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* SEC is a section containing relocs for an input BFD when linking; return
|
|
|
|
|
a suitable section for holding relocs in the output BFD for a link. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
get_reloc_section (abfd, hppa_info, sec)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
asection *sec;
|
|
|
|
|
{
|
|
|
|
|
const char *srel_name;
|
|
|
|
|
asection *srel;
|
|
|
|
|
bfd *dynobj;
|
|
|
|
|
|
|
|
|
|
srel_name = (bfd_elf_string_from_elf_section
|
|
|
|
|
(abfd, elf_elfheader(abfd)->e_shstrndx,
|
|
|
|
|
elf_section_data(sec)->rel_hdr.sh_name));
|
|
|
|
|
if (srel_name == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
BFD_ASSERT ((strncmp (srel_name, ".rela", 5) == 0
|
|
|
|
|
&& strcmp (bfd_get_section_name (abfd, sec),
|
|
|
|
|
srel_name+5) == 0)
|
|
|
|
|
|| (strncmp (srel_name, ".rel", 4) == 0
|
|
|
|
|
&& strcmp (bfd_get_section_name (abfd, sec),
|
|
|
|
|
srel_name+4) == 0));
|
|
|
|
|
|
|
|
|
|
dynobj = hppa_info->root.dynobj;
|
|
|
|
|
if (!dynobj)
|
|
|
|
|
hppa_info->root.dynobj = dynobj = abfd;
|
|
|
|
|
|
|
|
|
|
srel = bfd_get_section_by_name (dynobj, srel_name);
|
|
|
|
|
if (srel == NULL)
|
|
|
|
|
{
|
|
|
|
|
srel = bfd_make_section (dynobj, srel_name);
|
|
|
|
|
if (srel == NULL
|
|
|
|
|
|| !bfd_set_section_flags (dynobj, srel,
|
|
|
|
|
(SEC_ALLOC
|
|
|
|
|
| SEC_LOAD
|
|
|
|
|
| SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY
|
|
|
|
|
| SEC_LINKER_CREATED
|
|
|
|
|
| SEC_READONLY))
|
|
|
|
|
|| !bfd_set_section_alignment (dynobj, srel, 3))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hppa_info->other_rel_sec = srel;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-12-09 02:54:51 +01:00
|
|
|
|
/* Add a new entry to the list of dynamic relocations against DYN_H.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
We use this to keep a record of all the FPTR relocations against a
|
|
|
|
|
particular symbol so that we can create FPTR relocations in the
|
|
|
|
|
output file. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
count_dyn_reloc (abfd, dyn_h, type, sec, sec_symndx, offset, addend)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
int type;
|
|
|
|
|
asection *sec;
|
|
|
|
|
int sec_symndx;
|
|
|
|
|
bfd_vma offset;
|
|
|
|
|
bfd_vma addend;
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_dyn_reloc_entry *rent;
|
|
|
|
|
|
|
|
|
|
rent = (struct elf64_hppa_dyn_reloc_entry *)
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_alloc (abfd, (bfd_size_type) sizeof (*rent));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (!rent)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
rent->next = dyn_h->reloc_entries;
|
|
|
|
|
rent->type = type;
|
|
|
|
|
rent->sec = sec;
|
|
|
|
|
rent->sec_symndx = sec_symndx;
|
|
|
|
|
rent->offset = offset;
|
|
|
|
|
rent->addend = addend;
|
|
|
|
|
dyn_h->reloc_entries = rent;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Scan the RELOCS and record the type of dynamic entries that each
|
|
|
|
|
referenced symbol needs. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_check_relocs (abfd, info, sec, relocs)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
asection *sec;
|
|
|
|
|
const Elf_Internal_Rela *relocs;
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
const Elf_Internal_Rela *relend;
|
|
|
|
|
Elf_Internal_Shdr *symtab_hdr;
|
|
|
|
|
const Elf_Internal_Rela *rel;
|
|
|
|
|
asection *dlt, *plt, *stubs;
|
|
|
|
|
char *buf;
|
|
|
|
|
size_t buf_len;
|
|
|
|
|
int sec_symndx;
|
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
|
if (info->relocatable)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* If this is the first dynamic object found in the link, create
|
|
|
|
|
the special sections required for dynamic linking. */
|
|
|
|
|
if (! elf_hash_table (info)->dynamic_sections_created)
|
|
|
|
|
{
|
* elflink.c (_bfd_elf_link_create_dynamic_sections): Move from
elflink.h. Replace LOG_FILE_ALIGN with bed->s->log_file_align.
(_bfd_elf_create_dynamic_sections): Use bed->s->log_file_align.
(bfd_elf_record_link_assignment): Move from elflink.h.
(_bfd_elf_merge_symbol): Likewise.
(_bfd_elf_add_default_symbol): Likewise.
(_bfd_elf_export_symbol): Likewise.
(_bfd_elf_link_find_version_dependencies): Likewise.
(_bfd_elf_link_assign_sym_version): Likewise.
(_bfd_elf_link_read_relocs): Likewise.
(_bfd_elf_link_size_reloc_section): Likewise.
(_bfd_elf_fix_symbol_flags): Likewise.
(_bfd_elf_adjust_dynamic_symbol): Likewise.
(_bfd_elf_link_sec_merge_syms): Likewise.
(elf_link_read_relocs_from_section): Likewise. Use bed->s->sizeof_rel
and bed->s->sizeof_rela.
(_bfd_elf_link_output_relocs): Likewise.
* elf-bfd.h (struct elf_size_info): Rename file_align to
log_file_align.
(struct elf_info_failed): Move from elflink.h.
(struct elf_assign_sym_version_info): Likewise.
(struct elf_find_verdep_info): Likewise.
(_bfd_elf_create_dynamic_sections): Delete duplicate declaration.
(_bfd_elf_merge_symbol, _bfd_elf_add_default_symbol,
_bfd_elf_export_symbol, _bfd_elf_link_find_version_dependencies,
_bfd_elf_link_assign_sym_version,
_bfd_elf_link_create_dynamic_sections, _bfd_elf_link_read_relocs,
_bfd_elf_link_size_reloc_section, _bfd_elf_link_output_relocs,
_bfd_elf_fix_symbol_flags, _bfd_elf_adjust_dynamic_symbol,
_bfd_elf_link_sec_merge_syms): Declare.
(bfd_elf32_link_create_dynamic_sections): Don't declare.
(_bfd_elf32_link_read_relocs): Likewise.
(bfd_elf64_link_create_dynamic_sections): Likewise.
(_bfd_elf64_link_read_relocs): Likewise.
* elflink.h: Move lots o' stuff elsewhere.
* bfd-in.h (bfd_elf32_record_link_assignment): Don't declare.
(bfd_elf64_record_link_assignment): Likewise.
(bfd_elf_record_link_assignment): Declare.
* bfd-in2.h: Regenerate.
* elfcode.h (elf_link_create_dynamic_sections): Don't declare.
(NAME(_bfd_elf,size_info)): Adjust for log_file_align.
* elf.c (_bfd_elf_init_reloc_shdr): Adjust for bed->s->log_file_align.
(assign_file_positions_for_segments): Likewise.
(assign_file_positions_except_relocs): Likewise.
(swap_out_syms, elfcore_write_note): Likewise.
* elf-m10200.c: Adjust for changed function names.
* elf-m10300.c: Likewise.
* elf32-arm.h: Likewise.
* elf32-h8300.c: Likewise.
* elf32-hppa.c: Likewise.
* elf32-ip2k.c: Likewise.
* elf32-m32r.c: Likewise.
* elf32-m68hc11.c: Likewise.
* elf32-m68hc1x.c: Likewise.
* elf32-m68k.c: Likewise.
* elf32-mips.c: Likewise.
* elf32-ppc.c: Likewise.
* elf32-sh.c: Likewise.
* elf32-v850.c: Likewise.
* elf32-xtensa.c: Likewise.
* elf64-alpha.c: Likewise.
* elf64-hppa.c: Likewise.
* elf64-mmix.c: Likewise.
* elf64-ppc.c: Likewise.
* elf64-sh64.c: Likewise.
* elfxx-ia64.c: Likewise.
* elfxx-mips.c: Likewise.
(MIPS_ELF_LOG_FILE_ALIGN): Use log_file_align.
* elf64-alpha.c (alpha_elf_size_info): Adjust for log_file_align.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-mips.c (mips_elf64_size_info): Likewise.
* elf64-s390.c (s390_elf64_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2003-05-09 04:27:11 +02:00
|
|
|
|
if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
|
|
|
|
symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
|
|
|
|
|
|
|
|
|
|
/* If necessary, build a new table holding section symbols indices
|
2002-07-07 11:10:41 +02:00
|
|
|
|
for this BFD. */
|
2000-12-09 02:54:51 +01:00
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (info->shared && hppa_info->section_syms_bfd != abfd)
|
|
|
|
|
{
|
2000-09-05 04:30:24 +02:00
|
|
|
|
unsigned long i;
|
Support for more than 64k ELF sections.
include/elf/ChangeLog
* external.h (Elf_External_Sym_Shndx): Declare.
* internal.h (struct elf_internal_sym <st_shndx>): Make it an
unsigned int.
* common.h (SHN_BAD): Define.
bfd/ChangeLog
* configure.in: Bump bfd version.
* configure: Regenerate.
* elf-bfd.h (elf_size_info <swap_symbol_out>): Add shndx param.
(bfd_elf32_swap_symbol_in): Likewise.
(bfd_elf32_swap_symbol_out): Likewise.
(bfd_elf64_swap_symbol_in): Likewise.
(bfd_elf64_swap_symbol_out): Likewise.
(elf_reloc_cookie): Add locsym_shndx field. Make locsyms a PTR.
(elf_obj_tdata): Add num_elf_sections, symtab_shndx_hdr and
symtab_shndx_section.
(elf_numsections): Define.
(elf_symtab_shndx): Define.
* elf.c (setup_group): Use elf_numsections rather than header e_shnum.
(bfd_elf_find_section): Likewise.
(bfd_section_from_elf_index): Likewise.
(bfd_section_from_shdr): Likewise. Handle SHT_SYMTAB_SHNDX.
(bfd_section_from_r_symndx): Read symbol shndx extension, and
translate st_shndx for > SHN_HIRESERVE.
(assign_section_numbers): Skip reserved sections. Assign
symtab_shndx_section and elf_numsections. Exclude reserved
sections from e_shnum. Set up symtab_shndx_hdr.
(_bfd_elf_compute_section_file_positions): Handle symtab_shndx_hdr.
(map_sections_to_segments): Don't map eh_frame_hdr unless required.
(assign_file_positions_except_relocs): Use elf_numsections rather
than header e_shnum. Skip reserved sections and symtab_shndx_section.
(prep_headers): Set name for symtab_shndx_hdr.
(_bfd_elf_assign_file_positions_for_relocs): Use elf_numsections.
(_bfd_elf_write_object_contents): Likewise. Skip reserved sections.
(_bfd_elf_section_from_bfd_section): Check bfd_{abs,com,und}_section
first. Use elf_section_data if available. Use elf_numsections.
Start scan at index 1.
(copy_private_bfd_data ): Comment fixes.
(MAP_ONESYMTAB): Define above SHN_HIOS.
(MAP_DYNSYMTAB): Likewise.
(MAP_STRTAB): Likewise.
(MAP_SHSTRTAB): Likewise.
(MAP_SYM_SHNDX): New define.
(_bfd_elf_copy_private_symbol_data): Handle symtab_shndx_section.
(swap_out_syms): Swap out SHT_SYMTAB_SHNDX section too.
* elfcode.h (elf_swap_symbol_in): Add shndx param, and handle shndx
extension.
(elf_swap_symbol_out): Likewise.
(elf_object_p): Set elf_numsections, and use instead of e_shnum.
Initialialise reserved elf_elfsections to point at shdr[0]. Remove
redundant bfd_release calls.
(elf_slurp_symbol_table): Read symbol shndx extension, and use with
elf_swap_symbol_in. Translate st_shndx for > SHN_HIRESERVE too.
* elflink.h (elf_link_is_defined_archive_symbol): Read symbol shndx
extension, and use with elf_swap_symbol_in.
(elf_link_record_local_dynamic_symbol): Likewise.
(elf_link_add_object_symbols): Likewise. Also translate st_shndx
for elf sections > SHN_HIRESERVE.
(NAME(bfd_elf,size_dynamic_sections)): Adjust elf_swap_symbol_out
call.
(struct elf_final_link_info): Add locsym_shndx and symshndxbuf.
(elf_bfd_final_link): Allocate the above, and tidy code allocating
other buffers. Use elf_numsections instead of e_shnum. Adjust
elf_swap_symbol_out calls.
(elf_link_output_sym): Swap out symbol shndx extension too.
(elf_link_flush_output_syms): And flush them to disk.
(elf_link_output_extsym): Use SHN_BAD. Adjust elf_swap_symbol_out
calls.
(elf_gc_mark): Read symbol shndx extension, and use with
elf_swap_symbol_in.
(elf_link_input_bfd): Likewise, Translate st_shndx for elf sections
> SHN_HIRESERVE too. Use SHN_BAD.
(elf_reloc_symbol_deleted_p): Use symbol shndx extensions with
elf_swap_symbol_in. Translate st_shndx > SHN_HIRESERVE too.
(elf_bfd_discard_info): Read symbol shndx extension. Don't attempt
to continue after a bfd error.
* elf-m10200.c (mn10200_elf_relax_section): Only read local syms.
Stash them immediately to symtab_hdr->contents rather than later
in multiple places. Clean up afterwards. Read symbol shndx
extension, and use with swap_symbol_in. Translate SHN_UNDEF,
SHN_ABS, SHN_COMMON and elf sections > SHN_HIRESERVE to bfd
sections too. Remove dead code.
(mn10200_elf_relax_delete_bytes): Use symbol shndx extension
when swapping in symbols. Tidy code adjusting global syms.
Don't swap in global syms.
(mn10200_elf_symbol_address_p): Likewise. Remove extsyms param.
(mn10200_elf_get_relocated_section_contents): Read symbol shndx
extension, and use with swap_symbol_in. Rename "size" -> "amt"
to maximize code in common with other files. Translate st_shndx
for > SHN_HIRESERVE too. Remove dead code.
* elf-m10300.c (mn10300_elf_relax_section): Only read local syms.
Stash them immediately to symtab_hdr->contents rather than later
in multiple places. Clean up afterwards. Read symbol shndx
extension, and use with swap_symbol_in. Remove dead code.
(mn10300_elf_relax_delete_bytes): As for elf-m10200.c.
(mn10300_elf_symbol_address_p): Likewise.
(mn10300_elf_get_relocated_section_contents): Likewise.
* elf32-h8300.c (elf32_h8_relax_section): As for elf-m10300.c.
(elf32_h8_relax_delete_bytes): Likewise.
(elf32_h8_symbol_address_p): Likewise.
(elf32_h8_get_relocated_section_contents): Likewise.
* elf32-hppa.c (elf32_hppa_size_stubs): Read symbol shndx
extension, and use with swap_symbol_in.
* elf64-hppa.c (elf64_hppa_check_relocs): Likewise.
* elf32-i370.c (i370_elf_finish_dynamic_sections): Adjust call to
bfd_elf32_swap_symbol_out.
* elf32-m32r.c (m32r_elf_get_relocated_section_contents): Translate
elf sections > SHN_HIRESERVE too.
* elf32-m68k.c (bfd_m68k_elf32_create_embedded_relocs): Only read
local syms. Read symbol shndx extension, and use with swap_symbol_in.
* elf32-mips.c (_bfd_mips_elf_final_write_processing): Use
elf_numsections rather than header e_shnum.
* elf32-sh.c (sh_elf_relax_section): As for elf-m10300.c.
(sh_elf_relax_delete_bytes): Likewise.
(sh_elf_get_relocated_section_contents): Likewise. Only read local
symbols.
* elf32-v850.c (v850_elf_symbol_processing): Use an unsigned int to
hold section index. Use elf_numsections rather than e_shnum.
Rename "index" -> "indx" to avoid shadowing warning.
(v850_elf_add_symbol_hook): Likewise.
* elf64-alpha.c (elf64_alpha_relax_section): Only read local syms.
Read symbol shndx extension, and use with swap_symbol_in.
* elf32-xstormy16.c (xstormy16_elf_relax_section): Likewise.
Translate SHN_COMMON and elf sections > SHN_HIRESERVE too.
* elfxx-ia64.c (elfNN_ia64_relax_section): Likewise.
(elfNN_ia64_aix_add_symbol_hook): Use elf_numsections.
* elf-m10300.c (mn10300_elf_gc_mark_hook): Remove unnecessary checks
before calling bfd_section_from_elf_index on local syms.
* elf32-arm.h (elf32_arm_gc_mark_hook): Likewise.
* elf32-avr.c (elf32_avr_gc_mark_hook): Likewise.
* elf32-cris.c (cris_elf_gc_mark_hook): Likewise.
* elf32-d10v.c (elf32_d10v_gc_mark_hook): Likewise.
* elf32-fr30.c (fr30_elf_gc_mark_hook): Likewise.
* elf32-hppa.c (elf32_hppa_gc_mark_hook): Likewise.
* elf32-i386.c (elf_i386_gc_mark_hook): Likewise.
* elf32-m32r.c (m32r_elf_gc_mark_hook): Likewise.
* elf32-m68k.c (elf_m68k_gc_mark_hook): Likewise.
* elf32-mcore.c (mcore_elf_gc_mark_hook): Likewise.
* elf32-mips.c (_bfd_mips_elf_gc_mark_hook): Likewise.
* elf32-openrisc.c (openrisc_elf_gc_mark_hook): Likewise.
* elf32-ppc.c (ppc_elf_gc_mark_hook): Likewise.
* elf32-s390.c (elf_s390_gc_mark_hook): Likewise.
* elf32-sh.c (sh_elf_gc_mark_hook): Likewise.
* elf32-sparc.c (elf32_sparc_gc_mark_hook): Likewise.
* elf32-v850.c (v850_elf_gc_mark_hook): Likewise.
* elf32-xstormy16.c (xstormy16_elf_gc_mark_hook): Likewise.
* elf64-mips.c (mips_elf64_gc_mark_hook): Likewise.
* elf64-mmix.c (mmix_elf_gc_mark_hook): Likewise.
* elf64-ppc.c (ppc64_elf_gc_mark_hook): Likewise.
* elf64-s390.c (elf_s390_gc_mark_hook): Likewise.
* elf64-x86-64.c (elf64_x86_64_gc_mark_hook): Likewise.
binutils/ChangeLog
* readelf.c (symtab_shndx_hdr): New global.
(SECTION_HEADER_INDEX): Define.
(SECTION_HEADER_NUM): Define.
(SECTION_HEADER): Define.
(GET_ELF_SYMBOLS): Pass two params rather than three.
(get_32bit_elf_symbols): Take file and section args. Read and
use SHT_SYMTAB_SHNDX.
(get_64bit_elf_symbols): Likewise.
(dump_relocations): Use SECTION_HEADER to index "section_headers".
(process_section_headers): Likewise. Use SECTION_HEADER_NUM too.
Remember symtab_shdx_hdr.
(process_program_headers): Scan from index 1 for segment map.
(slurp_ia64_unwind_table): Use SECTION_HEADER to index
"section_headers".
(process_relocs): Likewise. Also adjust call to GET_ELF_SYMBOLS.
(process_unwind): Likewise.
(process_version_sections): Likewise.
(process_symbol_table): Likewise.
(display_debug_info): Likewise.
(process_dynamic_segment): Fake up a symtab section for changed
GET_ELF_SYMBOLS.
(get_symbol_index_type): Check SHN_LOOS before SHN_LORESERVE.
(process_program_headers): Kill signed/unsigned warning.
(load_debug_str): Likewise.
(display_debug_info): Likewise.
2001-12-17 01:52:35 +01:00
|
|
|
|
unsigned int highest_shndx;
|
2002-07-07 11:10:41 +02:00
|
|
|
|
Elf_Internal_Sym *local_syms = NULL;
|
|
|
|
|
Elf_Internal_Sym *isym, *isymend;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* We're done with the old cache of section index to section symbol
|
|
|
|
|
index information. Free it.
|
|
|
|
|
|
|
|
|
|
?!? Note we leak the last section_syms array. Presumably we
|
|
|
|
|
could free it in one of the later routines in this file. */
|
|
|
|
|
if (hppa_info->section_syms)
|
|
|
|
|
free (hppa_info->section_syms);
|
|
|
|
|
|
2002-07-07 11:10:41 +02:00
|
|
|
|
/* Read this BFD's local symbols. */
|
|
|
|
|
if (symtab_hdr->sh_info != 0)
|
2002-06-23 11:05:59 +02:00
|
|
|
|
{
|
2002-07-07 11:10:41 +02:00
|
|
|
|
local_syms = (Elf_Internal_Sym *) symtab_hdr->contents;
|
|
|
|
|
if (local_syms == NULL)
|
|
|
|
|
local_syms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
|
|
|
|
|
symtab_hdr->sh_info, 0,
|
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
|
if (local_syms == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
Support for more than 64k ELF sections.
include/elf/ChangeLog
* external.h (Elf_External_Sym_Shndx): Declare.
* internal.h (struct elf_internal_sym <st_shndx>): Make it an
unsigned int.
* common.h (SHN_BAD): Define.
bfd/ChangeLog
* configure.in: Bump bfd version.
* configure: Regenerate.
* elf-bfd.h (elf_size_info <swap_symbol_out>): Add shndx param.
(bfd_elf32_swap_symbol_in): Likewise.
(bfd_elf32_swap_symbol_out): Likewise.
(bfd_elf64_swap_symbol_in): Likewise.
(bfd_elf64_swap_symbol_out): Likewise.
(elf_reloc_cookie): Add locsym_shndx field. Make locsyms a PTR.
(elf_obj_tdata): Add num_elf_sections, symtab_shndx_hdr and
symtab_shndx_section.
(elf_numsections): Define.
(elf_symtab_shndx): Define.
* elf.c (setup_group): Use elf_numsections rather than header e_shnum.
(bfd_elf_find_section): Likewise.
(bfd_section_from_elf_index): Likewise.
(bfd_section_from_shdr): Likewise. Handle SHT_SYMTAB_SHNDX.
(bfd_section_from_r_symndx): Read symbol shndx extension, and
translate st_shndx for > SHN_HIRESERVE.
(assign_section_numbers): Skip reserved sections. Assign
symtab_shndx_section and elf_numsections. Exclude reserved
sections from e_shnum. Set up symtab_shndx_hdr.
(_bfd_elf_compute_section_file_positions): Handle symtab_shndx_hdr.
(map_sections_to_segments): Don't map eh_frame_hdr unless required.
(assign_file_positions_except_relocs): Use elf_numsections rather
than header e_shnum. Skip reserved sections and symtab_shndx_section.
(prep_headers): Set name for symtab_shndx_hdr.
(_bfd_elf_assign_file_positions_for_relocs): Use elf_numsections.
(_bfd_elf_write_object_contents): Likewise. Skip reserved sections.
(_bfd_elf_section_from_bfd_section): Check bfd_{abs,com,und}_section
first. Use elf_section_data if available. Use elf_numsections.
Start scan at index 1.
(copy_private_bfd_data ): Comment fixes.
(MAP_ONESYMTAB): Define above SHN_HIOS.
(MAP_DYNSYMTAB): Likewise.
(MAP_STRTAB): Likewise.
(MAP_SHSTRTAB): Likewise.
(MAP_SYM_SHNDX): New define.
(_bfd_elf_copy_private_symbol_data): Handle symtab_shndx_section.
(swap_out_syms): Swap out SHT_SYMTAB_SHNDX section too.
* elfcode.h (elf_swap_symbol_in): Add shndx param, and handle shndx
extension.
(elf_swap_symbol_out): Likewise.
(elf_object_p): Set elf_numsections, and use instead of e_shnum.
Initialialise reserved elf_elfsections to point at shdr[0]. Remove
redundant bfd_release calls.
(elf_slurp_symbol_table): Read symbol shndx extension, and use with
elf_swap_symbol_in. Translate st_shndx for > SHN_HIRESERVE too.
* elflink.h (elf_link_is_defined_archive_symbol): Read symbol shndx
extension, and use with elf_swap_symbol_in.
(elf_link_record_local_dynamic_symbol): Likewise.
(elf_link_add_object_symbols): Likewise. Also translate st_shndx
for elf sections > SHN_HIRESERVE.
(NAME(bfd_elf,size_dynamic_sections)): Adjust elf_swap_symbol_out
call.
(struct elf_final_link_info): Add locsym_shndx and symshndxbuf.
(elf_bfd_final_link): Allocate the above, and tidy code allocating
other buffers. Use elf_numsections instead of e_shnum. Adjust
elf_swap_symbol_out calls.
(elf_link_output_sym): Swap out symbol shndx extension too.
(elf_link_flush_output_syms): And flush them to disk.
(elf_link_output_extsym): Use SHN_BAD. Adjust elf_swap_symbol_out
calls.
(elf_gc_mark): Read symbol shndx extension, and use with
elf_swap_symbol_in.
(elf_link_input_bfd): Likewise, Translate st_shndx for elf sections
> SHN_HIRESERVE too. Use SHN_BAD.
(elf_reloc_symbol_deleted_p): Use symbol shndx extensions with
elf_swap_symbol_in. Translate st_shndx > SHN_HIRESERVE too.
(elf_bfd_discard_info): Read symbol shndx extension. Don't attempt
to continue after a bfd error.
* elf-m10200.c (mn10200_elf_relax_section): Only read local syms.
Stash them immediately to symtab_hdr->contents rather than later
in multiple places. Clean up afterwards. Read symbol shndx
extension, and use with swap_symbol_in. Translate SHN_UNDEF,
SHN_ABS, SHN_COMMON and elf sections > SHN_HIRESERVE to bfd
sections too. Remove dead code.
(mn10200_elf_relax_delete_bytes): Use symbol shndx extension
when swapping in symbols. Tidy code adjusting global syms.
Don't swap in global syms.
(mn10200_elf_symbol_address_p): Likewise. Remove extsyms param.
(mn10200_elf_get_relocated_section_contents): Read symbol shndx
extension, and use with swap_symbol_in. Rename "size" -> "amt"
to maximize code in common with other files. Translate st_shndx
for > SHN_HIRESERVE too. Remove dead code.
* elf-m10300.c (mn10300_elf_relax_section): Only read local syms.
Stash them immediately to symtab_hdr->contents rather than later
in multiple places. Clean up afterwards. Read symbol shndx
extension, and use with swap_symbol_in. Remove dead code.
(mn10300_elf_relax_delete_bytes): As for elf-m10200.c.
(mn10300_elf_symbol_address_p): Likewise.
(mn10300_elf_get_relocated_section_contents): Likewise.
* elf32-h8300.c (elf32_h8_relax_section): As for elf-m10300.c.
(elf32_h8_relax_delete_bytes): Likewise.
(elf32_h8_symbol_address_p): Likewise.
(elf32_h8_get_relocated_section_contents): Likewise.
* elf32-hppa.c (elf32_hppa_size_stubs): Read symbol shndx
extension, and use with swap_symbol_in.
* elf64-hppa.c (elf64_hppa_check_relocs): Likewise.
* elf32-i370.c (i370_elf_finish_dynamic_sections): Adjust call to
bfd_elf32_swap_symbol_out.
* elf32-m32r.c (m32r_elf_get_relocated_section_contents): Translate
elf sections > SHN_HIRESERVE too.
* elf32-m68k.c (bfd_m68k_elf32_create_embedded_relocs): Only read
local syms. Read symbol shndx extension, and use with swap_symbol_in.
* elf32-mips.c (_bfd_mips_elf_final_write_processing): Use
elf_numsections rather than header e_shnum.
* elf32-sh.c (sh_elf_relax_section): As for elf-m10300.c.
(sh_elf_relax_delete_bytes): Likewise.
(sh_elf_get_relocated_section_contents): Likewise. Only read local
symbols.
* elf32-v850.c (v850_elf_symbol_processing): Use an unsigned int to
hold section index. Use elf_numsections rather than e_shnum.
Rename "index" -> "indx" to avoid shadowing warning.
(v850_elf_add_symbol_hook): Likewise.
* elf64-alpha.c (elf64_alpha_relax_section): Only read local syms.
Read symbol shndx extension, and use with swap_symbol_in.
* elf32-xstormy16.c (xstormy16_elf_relax_section): Likewise.
Translate SHN_COMMON and elf sections > SHN_HIRESERVE too.
* elfxx-ia64.c (elfNN_ia64_relax_section): Likewise.
(elfNN_ia64_aix_add_symbol_hook): Use elf_numsections.
* elf-m10300.c (mn10300_elf_gc_mark_hook): Remove unnecessary checks
before calling bfd_section_from_elf_index on local syms.
* elf32-arm.h (elf32_arm_gc_mark_hook): Likewise.
* elf32-avr.c (elf32_avr_gc_mark_hook): Likewise.
* elf32-cris.c (cris_elf_gc_mark_hook): Likewise.
* elf32-d10v.c (elf32_d10v_gc_mark_hook): Likewise.
* elf32-fr30.c (fr30_elf_gc_mark_hook): Likewise.
* elf32-hppa.c (elf32_hppa_gc_mark_hook): Likewise.
* elf32-i386.c (elf_i386_gc_mark_hook): Likewise.
* elf32-m32r.c (m32r_elf_gc_mark_hook): Likewise.
* elf32-m68k.c (elf_m68k_gc_mark_hook): Likewise.
* elf32-mcore.c (mcore_elf_gc_mark_hook): Likewise.
* elf32-mips.c (_bfd_mips_elf_gc_mark_hook): Likewise.
* elf32-openrisc.c (openrisc_elf_gc_mark_hook): Likewise.
* elf32-ppc.c (ppc_elf_gc_mark_hook): Likewise.
* elf32-s390.c (elf_s390_gc_mark_hook): Likewise.
* elf32-sh.c (sh_elf_gc_mark_hook): Likewise.
* elf32-sparc.c (elf32_sparc_gc_mark_hook): Likewise.
* elf32-v850.c (v850_elf_gc_mark_hook): Likewise.
* elf32-xstormy16.c (xstormy16_elf_gc_mark_hook): Likewise.
* elf64-mips.c (mips_elf64_gc_mark_hook): Likewise.
* elf64-mmix.c (mmix_elf_gc_mark_hook): Likewise.
* elf64-ppc.c (ppc64_elf_gc_mark_hook): Likewise.
* elf64-s390.c (elf_s390_gc_mark_hook): Likewise.
* elf64-x86-64.c (elf64_x86_64_gc_mark_hook): Likewise.
binutils/ChangeLog
* readelf.c (symtab_shndx_hdr): New global.
(SECTION_HEADER_INDEX): Define.
(SECTION_HEADER_NUM): Define.
(SECTION_HEADER): Define.
(GET_ELF_SYMBOLS): Pass two params rather than three.
(get_32bit_elf_symbols): Take file and section args. Read and
use SHT_SYMTAB_SHNDX.
(get_64bit_elf_symbols): Likewise.
(dump_relocations): Use SECTION_HEADER to index "section_headers".
(process_section_headers): Likewise. Use SECTION_HEADER_NUM too.
Remember symtab_shdx_hdr.
(process_program_headers): Scan from index 1 for segment map.
(slurp_ia64_unwind_table): Use SECTION_HEADER to index
"section_headers".
(process_relocs): Likewise. Also adjust call to GET_ELF_SYMBOLS.
(process_unwind): Likewise.
(process_version_sections): Likewise.
(process_symbol_table): Likewise.
(display_debug_info): Likewise.
(process_dynamic_segment): Fake up a symtab section for changed
GET_ELF_SYMBOLS.
(get_symbol_index_type): Check SHN_LOOS before SHN_LORESERVE.
(process_program_headers): Kill signed/unsigned warning.
(load_debug_str): Likewise.
(display_debug_info): Likewise.
2001-12-17 01:52:35 +01:00
|
|
|
|
}
|
|
|
|
|
|
2002-07-07 11:10:41 +02:00
|
|
|
|
/* Record the highest section index referenced by the local symbols. */
|
2000-04-24 10:17:58 +02:00
|
|
|
|
highest_shndx = 0;
|
2002-07-07 11:10:41 +02:00
|
|
|
|
isymend = local_syms + symtab_hdr->sh_info;
|
|
|
|
|
for (isym = local_syms; isym < isymend; isym++)
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
if (isym->st_shndx > highest_shndx)
|
|
|
|
|
highest_shndx = isym->st_shndx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate an array to hold the section index to section symbol index
|
|
|
|
|
mapping. Bump by one since we start counting at zero. */
|
|
|
|
|
highest_shndx++;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = highest_shndx;
|
|
|
|
|
amt *= sizeof (int);
|
|
|
|
|
hppa_info->section_syms = (int *) bfd_malloc (amt);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* Now walk the local symbols again. If we find a section symbol,
|
|
|
|
|
record the index of the symbol into the section_syms array. */
|
2002-07-07 11:10:41 +02:00
|
|
|
|
for (i = 0, isym = local_syms; isym < isymend; i++, isym++)
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
|
|
|
|
|
hppa_info->section_syms[isym->st_shndx] = i;
|
|
|
|
|
}
|
|
|
|
|
|
2002-07-07 11:10:41 +02:00
|
|
|
|
/* We are finished with the local symbols. */
|
|
|
|
|
if (local_syms != NULL
|
|
|
|
|
&& symtab_hdr->contents != (unsigned char *) local_syms)
|
|
|
|
|
{
|
|
|
|
|
if (! info->keep_memory)
|
|
|
|
|
free (local_syms);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Cache the symbols for elf_link_input_bfd. */
|
|
|
|
|
symtab_hdr->contents = (unsigned char *) local_syms;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* Record which BFD we built the section_syms mapping for. */
|
|
|
|
|
hppa_info->section_syms_bfd = abfd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Record the symbol index for this input section. We may need it for
|
|
|
|
|
relocations when building shared libraries. When not building shared
|
|
|
|
|
libraries this value is never really used, but assign it to zero to
|
|
|
|
|
prevent out of bounds memory accesses in other routines. */
|
|
|
|
|
if (info->shared)
|
|
|
|
|
{
|
|
|
|
|
sec_symndx = _bfd_elf_section_from_bfd_section (abfd, sec);
|
|
|
|
|
|
|
|
|
|
/* If we did not find a section symbol for this section, then
|
|
|
|
|
something went terribly wrong above. */
|
|
|
|
|
if (sec_symndx == -1)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
sec_symndx = hppa_info->section_syms[sec_symndx];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
sec_symndx = 0;
|
2000-12-09 02:54:51 +01:00
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
dlt = plt = stubs = NULL;
|
|
|
|
|
buf = NULL;
|
|
|
|
|
buf_len = 0;
|
|
|
|
|
|
|
|
|
|
relend = relocs + sec->reloc_count;
|
|
|
|
|
for (rel = relocs; rel < relend; ++rel)
|
|
|
|
|
{
|
2003-08-20 10:37:19 +02:00
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
NEED_DLT = 1,
|
|
|
|
|
NEED_PLT = 2,
|
|
|
|
|
NEED_STUB = 4,
|
|
|
|
|
NEED_OPD = 8,
|
|
|
|
|
NEED_DYNREL = 16,
|
|
|
|
|
};
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
struct elf_link_hash_entry *h = NULL;
|
|
|
|
|
unsigned long r_symndx = ELF64_R_SYM (rel->r_info);
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
int need_entry;
|
|
|
|
|
const char *addr_name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean maybe_dynamic;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
int dynrel_type = R_PARISC_NONE;
|
|
|
|
|
static reloc_howto_type *howto;
|
|
|
|
|
|
|
|
|
|
if (r_symndx >= symtab_hdr->sh_info)
|
|
|
|
|
{
|
|
|
|
|
/* We're dealing with a global symbol -- find its hash entry
|
|
|
|
|
and mark it as being referenced. */
|
|
|
|
|
long indx = r_symndx - symtab_hdr->sh_info;
|
|
|
|
|
h = elf_sym_hashes (abfd)[indx];
|
|
|
|
|
while (h->root.type == bfd_link_hash_indirect
|
|
|
|
|
|| h->root.type == bfd_link_hash_warning)
|
|
|
|
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
|
|
|
|
|
|
|
|
|
h->elf_link_hash_flags |= ELF_LINK_HASH_REF_REGULAR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We can only get preliminary data on whether a symbol is
|
|
|
|
|
locally or externally defined, as not all of the input files
|
|
|
|
|
have yet been processed. Do something with what we know, as
|
|
|
|
|
this may help reduce memory usage and processing time later. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
maybe_dynamic = FALSE;
|
2001-09-20 12:37:35 +02:00
|
|
|
|
if (h && ((info->shared
|
2003-08-20 10:37:19 +02:00
|
|
|
|
&& (!info->symbolic || info->unresolved_syms_in_shared_libs == RM_IGNORE))
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|| ! (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR)
|
|
|
|
|
|| h->root.type == bfd_link_hash_defweak))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
maybe_dynamic = TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
howto = elf_hppa_howto_table + ELF64_R_TYPE (rel->r_info);
|
|
|
|
|
need_entry = 0;
|
|
|
|
|
switch (howto->type)
|
|
|
|
|
{
|
|
|
|
|
/* These are simple indirect references to symbols through the
|
|
|
|
|
DLT. We need to create a DLT entry for any symbols which
|
|
|
|
|
appears in a DLTIND relocation. */
|
|
|
|
|
case R_PARISC_DLTIND21L:
|
|
|
|
|
case R_PARISC_DLTIND14R:
|
|
|
|
|
case R_PARISC_DLTIND14F:
|
|
|
|
|
case R_PARISC_DLTIND14WR:
|
|
|
|
|
case R_PARISC_DLTIND14DR:
|
|
|
|
|
need_entry = NEED_DLT;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* ?!? These need a DLT entry. But I have no idea what to do with
|
|
|
|
|
the "link time TP value. */
|
|
|
|
|
case R_PARISC_LTOFF_TP21L:
|
|
|
|
|
case R_PARISC_LTOFF_TP14R:
|
|
|
|
|
case R_PARISC_LTOFF_TP14F:
|
|
|
|
|
case R_PARISC_LTOFF_TP64:
|
|
|
|
|
case R_PARISC_LTOFF_TP14WR:
|
|
|
|
|
case R_PARISC_LTOFF_TP14DR:
|
|
|
|
|
case R_PARISC_LTOFF_TP16F:
|
|
|
|
|
case R_PARISC_LTOFF_TP16WF:
|
|
|
|
|
case R_PARISC_LTOFF_TP16DF:
|
|
|
|
|
need_entry = NEED_DLT;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* These are function calls. Depending on their precise target we
|
|
|
|
|
may need to make a stub for them. The stub uses the PLT, so we
|
|
|
|
|
need to create PLT entries for these symbols too. */
|
2000-09-05 04:30:24 +02:00
|
|
|
|
case R_PARISC_PCREL12F:
|
2000-04-24 10:17:58 +02:00
|
|
|
|
case R_PARISC_PCREL17F:
|
|
|
|
|
case R_PARISC_PCREL22F:
|
|
|
|
|
case R_PARISC_PCREL32:
|
|
|
|
|
case R_PARISC_PCREL64:
|
|
|
|
|
case R_PARISC_PCREL21L:
|
|
|
|
|
case R_PARISC_PCREL17R:
|
|
|
|
|
case R_PARISC_PCREL17C:
|
|
|
|
|
case R_PARISC_PCREL14R:
|
|
|
|
|
case R_PARISC_PCREL14F:
|
|
|
|
|
case R_PARISC_PCREL22C:
|
|
|
|
|
case R_PARISC_PCREL14WR:
|
|
|
|
|
case R_PARISC_PCREL14DR:
|
|
|
|
|
case R_PARISC_PCREL16F:
|
|
|
|
|
case R_PARISC_PCREL16WF:
|
|
|
|
|
case R_PARISC_PCREL16DF:
|
|
|
|
|
need_entry = (NEED_PLT | NEED_STUB);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case R_PARISC_PLTOFF21L:
|
|
|
|
|
case R_PARISC_PLTOFF14R:
|
|
|
|
|
case R_PARISC_PLTOFF14F:
|
|
|
|
|
case R_PARISC_PLTOFF14WR:
|
|
|
|
|
case R_PARISC_PLTOFF14DR:
|
|
|
|
|
case R_PARISC_PLTOFF16F:
|
|
|
|
|
case R_PARISC_PLTOFF16WF:
|
|
|
|
|
case R_PARISC_PLTOFF16DF:
|
|
|
|
|
need_entry = (NEED_PLT);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case R_PARISC_DIR64:
|
|
|
|
|
if (info->shared || maybe_dynamic)
|
|
|
|
|
need_entry = (NEED_DYNREL);
|
|
|
|
|
dynrel_type = R_PARISC_DIR64;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* This is an indirect reference through the DLT to get the address
|
|
|
|
|
of a OPD descriptor. Thus we need to make a DLT entry that points
|
|
|
|
|
to an OPD entry. */
|
|
|
|
|
case R_PARISC_LTOFF_FPTR21L:
|
|
|
|
|
case R_PARISC_LTOFF_FPTR14R:
|
|
|
|
|
case R_PARISC_LTOFF_FPTR14WR:
|
|
|
|
|
case R_PARISC_LTOFF_FPTR14DR:
|
|
|
|
|
case R_PARISC_LTOFF_FPTR32:
|
|
|
|
|
case R_PARISC_LTOFF_FPTR64:
|
|
|
|
|
case R_PARISC_LTOFF_FPTR16F:
|
|
|
|
|
case R_PARISC_LTOFF_FPTR16WF:
|
|
|
|
|
case R_PARISC_LTOFF_FPTR16DF:
|
|
|
|
|
if (info->shared || maybe_dynamic)
|
|
|
|
|
need_entry = (NEED_DLT | NEED_OPD);
|
|
|
|
|
else
|
|
|
|
|
need_entry = (NEED_DLT | NEED_OPD);
|
|
|
|
|
dynrel_type = R_PARISC_FPTR64;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* This is a simple OPD entry. */
|
|
|
|
|
case R_PARISC_FPTR64:
|
|
|
|
|
if (info->shared || maybe_dynamic)
|
|
|
|
|
need_entry = (NEED_OPD | NEED_DYNREL);
|
|
|
|
|
else
|
|
|
|
|
need_entry = (NEED_OPD);
|
|
|
|
|
dynrel_type = R_PARISC_FPTR64;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* Add more cases as needed. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!need_entry)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Collect a canonical name for this address. */
|
2000-07-12 07:03:01 +02:00
|
|
|
|
addr_name = get_dyn_name (sec, h, rel, &buf, &buf_len);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* Collect the canonical entry data for this address. */
|
|
|
|
|
dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
addr_name, TRUE, TRUE);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
BFD_ASSERT (dyn_h);
|
|
|
|
|
|
|
|
|
|
/* Stash away enough information to be able to find this symbol
|
|
|
|
|
regardless of whether or not it is local or global. */
|
|
|
|
|
dyn_h->h = h;
|
|
|
|
|
dyn_h->owner = abfd;
|
|
|
|
|
dyn_h->sym_indx = r_symndx;
|
|
|
|
|
|
|
|
|
|
/* ?!? We may need to do some error checking in here. */
|
|
|
|
|
/* Create what's needed. */
|
|
|
|
|
if (need_entry & NEED_DLT)
|
|
|
|
|
{
|
|
|
|
|
if (! hppa_info->dlt_sec
|
|
|
|
|
&& ! get_dlt (abfd, info, hppa_info))
|
|
|
|
|
goto err_out;
|
|
|
|
|
dyn_h->want_dlt = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (need_entry & NEED_PLT)
|
|
|
|
|
{
|
|
|
|
|
if (! hppa_info->plt_sec
|
|
|
|
|
&& ! get_plt (abfd, info, hppa_info))
|
|
|
|
|
goto err_out;
|
|
|
|
|
dyn_h->want_plt = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (need_entry & NEED_STUB)
|
|
|
|
|
{
|
|
|
|
|
if (! hppa_info->stub_sec
|
|
|
|
|
&& ! get_stub (abfd, info, hppa_info))
|
|
|
|
|
goto err_out;
|
|
|
|
|
dyn_h->want_stub = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (need_entry & NEED_OPD)
|
|
|
|
|
{
|
|
|
|
|
if (! hppa_info->opd_sec
|
|
|
|
|
&& ! get_opd (abfd, info, hppa_info))
|
|
|
|
|
goto err_out;
|
|
|
|
|
|
|
|
|
|
dyn_h->want_opd = 1;
|
|
|
|
|
|
|
|
|
|
/* FPTRs are not allocated by the dynamic linker for PA64, though
|
|
|
|
|
it is possible that will change in the future. */
|
2000-12-09 02:54:51 +01:00
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
/* This could be a local function that had its address taken, in
|
|
|
|
|
which case H will be NULL. */
|
|
|
|
|
if (h)
|
|
|
|
|
h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add a new dynamic relocation to the chain of dynamic
|
|
|
|
|
relocations for this symbol. */
|
|
|
|
|
if ((need_entry & NEED_DYNREL) && (sec->flags & SEC_ALLOC))
|
|
|
|
|
{
|
|
|
|
|
if (! hppa_info->other_rel_sec
|
|
|
|
|
&& ! get_reloc_section (abfd, hppa_info, sec))
|
|
|
|
|
goto err_out;
|
|
|
|
|
|
|
|
|
|
if (!count_dyn_reloc (abfd, dyn_h, dynrel_type, sec,
|
|
|
|
|
sec_symndx, rel->r_offset, rel->r_addend))
|
|
|
|
|
goto err_out;
|
|
|
|
|
|
|
|
|
|
/* If we are building a shared library and we just recorded
|
|
|
|
|
a dynamic R_PARISC_FPTR64 relocation, then make sure the
|
|
|
|
|
section symbol for this section ends up in the dynamic
|
|
|
|
|
symbol table. */
|
|
|
|
|
if (info->shared && dynrel_type == R_PARISC_FPTR64
|
|
|
|
|
&& ! (_bfd_elf64_link_record_local_dynamic_symbol
|
|
|
|
|
(info, abfd, sec_symndx)))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (buf)
|
|
|
|
|
free (buf);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
err_out:
|
|
|
|
|
if (buf)
|
|
|
|
|
free (buf);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct elf64_hppa_allocate_data
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
bfd_size_type ofs;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Should we do dynamic things to this symbol? */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_dynamic_symbol_p (h, info)
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
2003-07-18 23:09:28 +02:00
|
|
|
|
/* ??? What, if anything, needs to happen wrt STV_PROTECTED symbols
|
|
|
|
|
and relocations that retrieve a function descriptor? Assume the
|
|
|
|
|
worst for now. */
|
|
|
|
|
if (_bfd_elf_dynamic_symbol_p (h, info, 1))
|
|
|
|
|
{
|
|
|
|
|
/* ??? Why is this here and not elsewhere is_local_label_name. */
|
|
|
|
|
if (h->root.root.string[0] == '$' && h->root.root.string[1] == '$')
|
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2003-07-18 23:09:28 +02:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
else
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mark all funtions exported by this file so that we can later allocate
|
|
|
|
|
entries in .opd for them. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_mark_exported_functions (h, data)
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_info *info = (struct bfd_link_info *)data;
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
|
|
|
|
|
2002-03-28 04:27:46 +01:00
|
|
|
|
if (h->root.type == bfd_link_hash_warning)
|
|
|
|
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (h
|
|
|
|
|
&& (h->root.type == bfd_link_hash_defined
|
|
|
|
|
|| h->root.type == bfd_link_hash_defweak)
|
|
|
|
|
&& h->root.u.def.section->output_section != NULL
|
|
|
|
|
&& h->type == STT_FUNC)
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
|
|
|
|
|
/* Add this symbol to the PA64 linker hash table. */
|
|
|
|
|
dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
h->root.root.string, TRUE, TRUE);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
BFD_ASSERT (dyn_h);
|
|
|
|
|
dyn_h->h = h;
|
|
|
|
|
|
|
|
|
|
if (! hppa_info->opd_sec
|
|
|
|
|
&& ! get_opd (hppa_info->root.dynobj, info, hppa_info))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
dyn_h->want_opd = 1;
|
2000-09-05 04:30:24 +02:00
|
|
|
|
/* Put a flag here for output_symbol_hook. */
|
|
|
|
|
dyn_h->st_shndx = -1;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate space for a DLT entry. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
allocate_global_data_dlt (dyn_h, data)
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
|
|
|
|
|
|
|
|
|
|
if (dyn_h->want_dlt)
|
|
|
|
|
{
|
|
|
|
|
struct elf_link_hash_entry *h = dyn_h->h;
|
|
|
|
|
|
|
|
|
|
if (x->info->shared)
|
|
|
|
|
{
|
|
|
|
|
/* Possibly add the symbol to the local dynamic symbol
|
|
|
|
|
table since we might need to create a dynamic relocation
|
|
|
|
|
against it. */
|
|
|
|
|
if (! h
|
2002-06-23 11:05:59 +02:00
|
|
|
|
|| (h->dynindx == -1 && h->type != STT_PARISC_MILLI))
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
bfd *owner;
|
|
|
|
|
owner = (h ? h->root.u.def.section->owner : dyn_h->owner);
|
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
if (! (_bfd_elf64_link_record_local_dynamic_symbol
|
|
|
|
|
(x->info, owner, dyn_h->sym_indx)))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dyn_h->dlt_offset = x->ofs;
|
|
|
|
|
x->ofs += DLT_ENTRY_SIZE;
|
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate space for a DLT.PLT entry. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
allocate_global_data_plt (dyn_h, data)
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
|
|
|
|
|
|
|
|
|
|
if (dyn_h->want_plt
|
|
|
|
|
&& elf64_hppa_dynamic_symbol_p (dyn_h->h, x->info)
|
|
|
|
|
&& !((dyn_h->h->root.type == bfd_link_hash_defined
|
|
|
|
|
|| dyn_h->h->root.type == bfd_link_hash_defweak)
|
|
|
|
|
&& dyn_h->h->root.u.def.section->output_section != NULL))
|
|
|
|
|
{
|
|
|
|
|
dyn_h->plt_offset = x->ofs;
|
|
|
|
|
x->ofs += PLT_ENTRY_SIZE;
|
|
|
|
|
if (dyn_h->plt_offset < 0x2000)
|
|
|
|
|
elf64_hppa_hash_table (x->info)->gp_offset = dyn_h->plt_offset;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
dyn_h->want_plt = 0;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate space for a STUB entry. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
allocate_global_data_stub (dyn_h, data)
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
|
|
|
|
|
|
|
|
|
|
if (dyn_h->want_stub
|
|
|
|
|
&& elf64_hppa_dynamic_symbol_p (dyn_h->h, x->info)
|
|
|
|
|
&& !((dyn_h->h->root.type == bfd_link_hash_defined
|
|
|
|
|
|| dyn_h->h->root.type == bfd_link_hash_defweak)
|
|
|
|
|
&& dyn_h->h->root.u.def.section->output_section != NULL))
|
|
|
|
|
{
|
|
|
|
|
dyn_h->stub_offset = x->ofs;
|
|
|
|
|
x->ofs += sizeof (plt_stub);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
dyn_h->want_stub = 0;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate space for a FPTR entry. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
allocate_global_data_opd (dyn_h, data)
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
|
|
|
|
|
|
|
|
|
|
if (dyn_h->want_opd)
|
|
|
|
|
{
|
|
|
|
|
struct elf_link_hash_entry *h = dyn_h->h;
|
2000-12-09 02:54:51 +01:00
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (h)
|
|
|
|
|
while (h->root.type == bfd_link_hash_indirect
|
|
|
|
|
|| h->root.type == bfd_link_hash_warning)
|
|
|
|
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
|
|
|
|
|
|
|
|
|
/* We never need an opd entry for a symbol which is not
|
|
|
|
|
defined by this output file. */
|
2002-06-12 20:12:25 +02:00
|
|
|
|
if (h && (h->root.type == bfd_link_hash_undefined
|
|
|
|
|
|| h->root.u.def.section->output_section == NULL))
|
2000-04-24 10:17:58 +02:00
|
|
|
|
dyn_h->want_opd = 0;
|
|
|
|
|
|
|
|
|
|
/* If we are creating a shared library, took the address of a local
|
|
|
|
|
function or might export this function from this object file, then
|
|
|
|
|
we have to create an opd descriptor. */
|
|
|
|
|
else if (x->info->shared
|
|
|
|
|
|| h == NULL
|
2002-06-23 11:05:59 +02:00
|
|
|
|
|| (h->dynindx == -1 && h->type != STT_PARISC_MILLI)
|
2002-06-12 20:12:25 +02:00
|
|
|
|
|| (h->root.type == bfd_link_hash_defined
|
|
|
|
|
|| h->root.type == bfd_link_hash_defweak))
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
/* If we are creating a shared library, then we will have to
|
|
|
|
|
create a runtime relocation for the symbol to properly
|
|
|
|
|
initialize the .opd entry. Make sure the symbol gets
|
|
|
|
|
added to the dynamic symbol table. */
|
|
|
|
|
if (x->info->shared
|
|
|
|
|
&& (h == NULL || (h->dynindx == -1)))
|
|
|
|
|
{
|
|
|
|
|
bfd *owner;
|
|
|
|
|
owner = (h ? h->root.u.def.section->owner : dyn_h->owner);
|
|
|
|
|
|
|
|
|
|
if (!_bfd_elf64_link_record_local_dynamic_symbol
|
|
|
|
|
(x->info, owner, dyn_h->sym_indx))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This may not be necessary or desirable anymore now that
|
|
|
|
|
we have some support for dealing with section symbols
|
|
|
|
|
in dynamic relocs. But name munging does make the result
|
|
|
|
|
much easier to debug. ie, the EPLT reloc will reference
|
|
|
|
|
a symbol like .foobar, instead of .text + offset. */
|
|
|
|
|
if (x->info->shared && h)
|
|
|
|
|
{
|
|
|
|
|
char *new_name;
|
|
|
|
|
struct elf_link_hash_entry *nh;
|
|
|
|
|
|
|
|
|
|
new_name = alloca (strlen (h->root.root.string) + 2);
|
|
|
|
|
new_name[0] = '.';
|
|
|
|
|
strcpy (new_name + 1, h->root.root.string);
|
|
|
|
|
|
|
|
|
|
nh = elf_link_hash_lookup (elf_hash_table (x->info),
|
2002-11-30 09:39:46 +01:00
|
|
|
|
new_name, TRUE, TRUE, TRUE);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
nh->root.type = h->root.type;
|
|
|
|
|
nh->root.u.def.value = h->root.u.def.value;
|
|
|
|
|
nh->root.u.def.section = h->root.u.def.section;
|
|
|
|
|
|
|
|
|
|
if (! bfd_elf64_link_record_dynamic_symbol (x->info, nh))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
dyn_h->opd_offset = x->ofs;
|
|
|
|
|
x->ofs += OPD_ENTRY_SIZE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Otherwise we do not need an opd entry. */
|
|
|
|
|
else
|
|
|
|
|
dyn_h->want_opd = 0;
|
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* HP requires the EI_OSABI field to be filled in. The assignment to
|
|
|
|
|
EI_ABIVERSION may not be strictly necessary. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
elf64_hppa_post_process_headers (abfd, link_info)
|
|
|
|
|
bfd * abfd;
|
|
|
|
|
struct bfd_link_info * link_info ATTRIBUTE_UNUSED;
|
|
|
|
|
{
|
|
|
|
|
Elf_Internal_Ehdr * i_ehdrp;
|
|
|
|
|
|
|
|
|
|
i_ehdrp = elf_elfheader (abfd);
|
|
|
|
|
|
2001-01-14 12:12:53 +01:00
|
|
|
|
if (strcmp (bfd_get_target (abfd), "elf64-hppa-linux") == 0)
|
|
|
|
|
{
|
|
|
|
|
i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_LINUX;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_HPUX;
|
|
|
|
|
i_ehdrp->e_ident[EI_ABIVERSION] = 1;
|
|
|
|
|
}
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create function descriptor section (.opd). This section is called .opd
|
|
|
|
|
because it contains "official prodecure descriptors". The "official"
|
|
|
|
|
refers to the fact that these descriptors are used when taking the address
|
|
|
|
|
of a procedure, thus ensuring a unique address for each procedure. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
get_opd (abfd, info, hppa_info)
|
|
|
|
|
bfd *abfd;
|
2000-07-09 09:23:07 +02:00
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
{
|
|
|
|
|
asection *opd;
|
|
|
|
|
bfd *dynobj;
|
|
|
|
|
|
|
|
|
|
opd = hppa_info->opd_sec;
|
|
|
|
|
if (!opd)
|
|
|
|
|
{
|
|
|
|
|
dynobj = hppa_info->root.dynobj;
|
|
|
|
|
if (!dynobj)
|
|
|
|
|
hppa_info->root.dynobj = dynobj = abfd;
|
|
|
|
|
|
|
|
|
|
opd = bfd_make_section (dynobj, ".opd");
|
|
|
|
|
if (!opd
|
|
|
|
|
|| !bfd_set_section_flags (dynobj, opd,
|
|
|
|
|
(SEC_ALLOC
|
|
|
|
|
| SEC_LOAD
|
|
|
|
|
| SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY
|
|
|
|
|
| SEC_LINKER_CREATED))
|
|
|
|
|
|| !bfd_set_section_alignment (abfd, opd, 3))
|
|
|
|
|
{
|
|
|
|
|
BFD_ASSERT (0);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hppa_info->opd_sec = opd;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create the PLT section. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
get_plt (abfd, info, hppa_info)
|
|
|
|
|
bfd *abfd;
|
2000-07-09 09:23:07 +02:00
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
{
|
|
|
|
|
asection *plt;
|
|
|
|
|
bfd *dynobj;
|
|
|
|
|
|
|
|
|
|
plt = hppa_info->plt_sec;
|
|
|
|
|
if (!plt)
|
|
|
|
|
{
|
|
|
|
|
dynobj = hppa_info->root.dynobj;
|
|
|
|
|
if (!dynobj)
|
|
|
|
|
hppa_info->root.dynobj = dynobj = abfd;
|
|
|
|
|
|
|
|
|
|
plt = bfd_make_section (dynobj, ".plt");
|
|
|
|
|
if (!plt
|
|
|
|
|
|| !bfd_set_section_flags (dynobj, plt,
|
|
|
|
|
(SEC_ALLOC
|
|
|
|
|
| SEC_LOAD
|
|
|
|
|
| SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY
|
|
|
|
|
| SEC_LINKER_CREATED))
|
|
|
|
|
|| !bfd_set_section_alignment (abfd, plt, 3))
|
|
|
|
|
{
|
|
|
|
|
BFD_ASSERT (0);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hppa_info->plt_sec = plt;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create the DLT section. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
get_dlt (abfd, info, hppa_info)
|
|
|
|
|
bfd *abfd;
|
2000-07-09 09:23:07 +02:00
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
{
|
|
|
|
|
asection *dlt;
|
|
|
|
|
bfd *dynobj;
|
|
|
|
|
|
|
|
|
|
dlt = hppa_info->dlt_sec;
|
|
|
|
|
if (!dlt)
|
|
|
|
|
{
|
|
|
|
|
dynobj = hppa_info->root.dynobj;
|
|
|
|
|
if (!dynobj)
|
|
|
|
|
hppa_info->root.dynobj = dynobj = abfd;
|
|
|
|
|
|
|
|
|
|
dlt = bfd_make_section (dynobj, ".dlt");
|
|
|
|
|
if (!dlt
|
|
|
|
|
|| !bfd_set_section_flags (dynobj, dlt,
|
|
|
|
|
(SEC_ALLOC
|
|
|
|
|
| SEC_LOAD
|
|
|
|
|
| SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY
|
|
|
|
|
| SEC_LINKER_CREATED))
|
|
|
|
|
|| !bfd_set_section_alignment (abfd, dlt, 3))
|
|
|
|
|
{
|
|
|
|
|
BFD_ASSERT (0);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hppa_info->dlt_sec = dlt;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create the stubs section. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
get_stub (abfd, info, hppa_info)
|
|
|
|
|
bfd *abfd;
|
2000-07-09 09:23:07 +02:00
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
{
|
|
|
|
|
asection *stub;
|
|
|
|
|
bfd *dynobj;
|
|
|
|
|
|
|
|
|
|
stub = hppa_info->stub_sec;
|
|
|
|
|
if (!stub)
|
|
|
|
|
{
|
|
|
|
|
dynobj = hppa_info->root.dynobj;
|
|
|
|
|
if (!dynobj)
|
|
|
|
|
hppa_info->root.dynobj = dynobj = abfd;
|
|
|
|
|
|
|
|
|
|
stub = bfd_make_section (dynobj, ".stub");
|
|
|
|
|
if (!stub
|
|
|
|
|
|| !bfd_set_section_flags (dynobj, stub,
|
|
|
|
|
(SEC_ALLOC
|
|
|
|
|
| SEC_LOAD
|
|
|
|
|
| SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY
|
|
|
|
|
| SEC_READONLY
|
|
|
|
|
| SEC_LINKER_CREATED))
|
|
|
|
|
|| !bfd_set_section_alignment (abfd, stub, 3))
|
|
|
|
|
{
|
|
|
|
|
BFD_ASSERT (0);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hppa_info->stub_sec = stub;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create sections necessary for dynamic linking. This is only a rough
|
|
|
|
|
cut and will likely change as we learn more about the somewhat
|
|
|
|
|
unusual dynamic linking scheme HP uses.
|
|
|
|
|
|
|
|
|
|
.stub:
|
|
|
|
|
Contains code to implement cross-space calls. The first time one
|
|
|
|
|
of the stubs is used it will call into the dynamic linker, later
|
|
|
|
|
calls will go straight to the target.
|
|
|
|
|
|
|
|
|
|
The only stub we support right now looks like
|
|
|
|
|
|
|
|
|
|
ldd OFFSET(%dp),%r1
|
|
|
|
|
bve %r0(%r1)
|
|
|
|
|
ldd OFFSET+8(%dp),%dp
|
|
|
|
|
|
|
|
|
|
Other stubs may be needed in the future. We may want the remove
|
|
|
|
|
the break/nop instruction. It is only used right now to keep the
|
|
|
|
|
offset of a .plt entry and a .stub entry in sync.
|
|
|
|
|
|
|
|
|
|
.dlt:
|
|
|
|
|
This is what most people call the .got. HP used a different name.
|
|
|
|
|
Losers.
|
|
|
|
|
|
|
|
|
|
.rela.dlt:
|
|
|
|
|
Relocations for the DLT.
|
|
|
|
|
|
|
|
|
|
.plt:
|
|
|
|
|
Function pointers as address,gp pairs.
|
|
|
|
|
|
|
|
|
|
.rela.plt:
|
|
|
|
|
Should contain dynamic IPLT (and EPLT?) relocations.
|
|
|
|
|
|
|
|
|
|
.opd:
|
2000-12-09 02:54:51 +01:00
|
|
|
|
FPTRS
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
.rela.opd:
|
|
|
|
|
EPLT relocations for symbols exported from shared libraries. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_create_dynamic_sections (abfd, info)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
|
|
|
|
asection *s;
|
|
|
|
|
|
|
|
|
|
if (! get_stub (abfd, info, elf64_hppa_hash_table (info)))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
if (! get_dlt (abfd, info, elf64_hppa_hash_table (info)))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
if (! get_plt (abfd, info, elf64_hppa_hash_table (info)))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
if (! get_opd (abfd, info, elf64_hppa_hash_table (info)))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
s = bfd_make_section(abfd, ".rela.dlt");
|
|
|
|
|
if (s == NULL
|
|
|
|
|
|| !bfd_set_section_flags (abfd, s, (SEC_ALLOC | SEC_LOAD
|
|
|
|
|
| SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY
|
|
|
|
|
| SEC_READONLY
|
|
|
|
|
| SEC_LINKER_CREATED))
|
|
|
|
|
|| !bfd_set_section_alignment (abfd, s, 3))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_hash_table (info)->dlt_rel_sec = s;
|
|
|
|
|
|
|
|
|
|
s = bfd_make_section(abfd, ".rela.plt");
|
|
|
|
|
if (s == NULL
|
|
|
|
|
|| !bfd_set_section_flags (abfd, s, (SEC_ALLOC | SEC_LOAD
|
|
|
|
|
| SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY
|
|
|
|
|
| SEC_READONLY
|
|
|
|
|
| SEC_LINKER_CREATED))
|
|
|
|
|
|| !bfd_set_section_alignment (abfd, s, 3))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_hash_table (info)->plt_rel_sec = s;
|
|
|
|
|
|
|
|
|
|
s = bfd_make_section(abfd, ".rela.data");
|
|
|
|
|
if (s == NULL
|
|
|
|
|
|| !bfd_set_section_flags (abfd, s, (SEC_ALLOC | SEC_LOAD
|
|
|
|
|
| SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY
|
|
|
|
|
| SEC_READONLY
|
|
|
|
|
| SEC_LINKER_CREATED))
|
|
|
|
|
|| !bfd_set_section_alignment (abfd, s, 3))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_hash_table (info)->other_rel_sec = s;
|
|
|
|
|
|
|
|
|
|
s = bfd_make_section(abfd, ".rela.opd");
|
|
|
|
|
if (s == NULL
|
|
|
|
|
|| !bfd_set_section_flags (abfd, s, (SEC_ALLOC | SEC_LOAD
|
|
|
|
|
| SEC_HAS_CONTENTS
|
|
|
|
|
| SEC_IN_MEMORY
|
|
|
|
|
| SEC_READONLY
|
|
|
|
|
| SEC_LINKER_CREATED))
|
|
|
|
|
|| !bfd_set_section_alignment (abfd, s, 3))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_hash_table (info)->opd_rel_sec = s;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate dynamic relocations for those symbols that turned out
|
|
|
|
|
to be dynamic. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
allocate_dynrel_entries (dyn_h, data)
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
struct elf64_hppa_dyn_reloc_entry *rent;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean dynamic_symbol, shared;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (x->info);
|
|
|
|
|
dynamic_symbol = elf64_hppa_dynamic_symbol_p (dyn_h->h, x->info);
|
|
|
|
|
shared = x->info->shared;
|
|
|
|
|
|
|
|
|
|
/* We may need to allocate relocations for a non-dynamic symbol
|
|
|
|
|
when creating a shared library. */
|
|
|
|
|
if (!dynamic_symbol && !shared)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* Take care of the normal data relocations. */
|
|
|
|
|
|
|
|
|
|
for (rent = dyn_h->reloc_entries; rent; rent = rent->next)
|
|
|
|
|
{
|
2002-06-16 17:32:08 +02:00
|
|
|
|
/* Allocate one iff we are building a shared library, the relocation
|
|
|
|
|
isn't a R_PARISC_FPTR64, or we don't want an opd entry. */
|
|
|
|
|
if (!shared && rent->type == R_PARISC_FPTR64 && dyn_h->want_opd)
|
|
|
|
|
continue;
|
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
hppa_info->other_rel_sec->_raw_size += sizeof (Elf64_External_Rela);
|
|
|
|
|
|
|
|
|
|
/* Make sure this symbol gets into the dynamic symbol table if it is
|
|
|
|
|
not already recorded. ?!? This should not be in the loop since
|
|
|
|
|
the symbol need only be added once. */
|
2002-06-23 11:05:59 +02:00
|
|
|
|
if (dyn_h->h == 0
|
|
|
|
|
|| (dyn_h->h->dynindx == -1 && dyn_h->h->type != STT_PARISC_MILLI))
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (!_bfd_elf64_link_record_local_dynamic_symbol
|
|
|
|
|
(x->info, rent->sec->owner, dyn_h->sym_indx))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Take care of the GOT and PLT relocations. */
|
|
|
|
|
|
|
|
|
|
if ((dynamic_symbol || shared) && dyn_h->want_dlt)
|
|
|
|
|
hppa_info->dlt_rel_sec->_raw_size += sizeof (Elf64_External_Rela);
|
|
|
|
|
|
|
|
|
|
/* If we are building a shared library, then every symbol that has an
|
|
|
|
|
opd entry will need an EPLT relocation to relocate the symbol's address
|
|
|
|
|
and __gp value based on the runtime load address. */
|
|
|
|
|
if (shared && dyn_h->want_opd)
|
|
|
|
|
hppa_info->opd_rel_sec->_raw_size += sizeof (Elf64_External_Rela);
|
|
|
|
|
|
|
|
|
|
if (dyn_h->want_plt && dynamic_symbol)
|
|
|
|
|
{
|
|
|
|
|
bfd_size_type t = 0;
|
|
|
|
|
|
|
|
|
|
/* Dynamic symbols get one IPLT relocation. Local symbols in
|
|
|
|
|
shared libraries get two REL relocations. Local symbols in
|
|
|
|
|
main applications get nothing. */
|
|
|
|
|
if (dynamic_symbol)
|
|
|
|
|
t = sizeof (Elf64_External_Rela);
|
|
|
|
|
else if (shared)
|
|
|
|
|
t = 2 * sizeof (Elf64_External_Rela);
|
|
|
|
|
|
|
|
|
|
hppa_info->plt_rel_sec->_raw_size += t;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Adjust a symbol defined by a dynamic object and referenced by a
|
|
|
|
|
regular object. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_adjust_dynamic_symbol (info, h)
|
2000-07-09 09:23:07 +02:00
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
{
|
|
|
|
|
/* ??? Undefined symbols with PLT entries should be re-defined
|
|
|
|
|
to be the PLT entry. */
|
|
|
|
|
|
|
|
|
|
/* If this is a weak symbol, and there is a real definition, the
|
|
|
|
|
processor independent code will have arranged for us to see the
|
|
|
|
|
real definition first, and we can just use the same value. */
|
|
|
|
|
if (h->weakdef != NULL)
|
|
|
|
|
{
|
|
|
|
|
BFD_ASSERT (h->weakdef->root.type == bfd_link_hash_defined
|
|
|
|
|
|| h->weakdef->root.type == bfd_link_hash_defweak);
|
|
|
|
|
h->root.u.def.section = h->weakdef->root.u.def.section;
|
|
|
|
|
h->root.u.def.value = h->weakdef->root.u.def.value;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If this is a reference to a symbol defined by a dynamic object which
|
|
|
|
|
is not a function, we might allocate the symbol in our .dynbss section
|
|
|
|
|
and allocate a COPY dynamic relocation.
|
|
|
|
|
|
|
|
|
|
But PA64 code is canonically PIC, so as a rule we can avoid this sort
|
|
|
|
|
of hackery. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-06-23 11:05:59 +02:00
|
|
|
|
/* This function is called via elf_link_hash_traverse to mark millicode
|
|
|
|
|
symbols with a dynindx of -1 and to remove the string table reference
|
|
|
|
|
from the dynamic symbol table. If the symbol is not a millicode symbol,
|
|
|
|
|
elf64_hppa_mark_exported_functions is called. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2002-06-23 11:05:59 +02:00
|
|
|
|
elf64_hppa_mark_milli_and_exported_functions (h, data)
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_info *info = (struct bfd_link_info *)data;
|
|
|
|
|
struct elf_link_hash_entry *elf = h;
|
|
|
|
|
|
|
|
|
|
if (elf->root.type == bfd_link_hash_warning)
|
|
|
|
|
elf = (struct elf_link_hash_entry *) elf->root.u.i.link;
|
|
|
|
|
|
|
|
|
|
if (elf->type == STT_PARISC_MILLI)
|
|
|
|
|
{
|
|
|
|
|
if (elf->dynindx != -1)
|
|
|
|
|
{
|
|
|
|
|
elf->dynindx = -1;
|
|
|
|
|
_bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
|
|
|
|
|
elf->dynstr_index);
|
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2002-06-23 11:05:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return elf64_hppa_mark_exported_functions (h, data);
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
/* Set the final sizes of the dynamic sections and allocate memory for
|
|
|
|
|
the contents of our special sections. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_size_dynamic_sections (output_bfd, info)
|
|
|
|
|
bfd *output_bfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
|
|
|
|
bfd *dynobj;
|
|
|
|
|
asection *s;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean plt;
|
|
|
|
|
bfd_boolean relocs;
|
|
|
|
|
bfd_boolean reltext;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
struct elf64_hppa_allocate_data data;
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
|
|
|
|
|
|
|
|
|
dynobj = elf_hash_table (info)->dynobj;
|
|
|
|
|
BFD_ASSERT (dynobj != NULL);
|
|
|
|
|
|
2002-06-23 11:05:59 +02:00
|
|
|
|
/* Mark each function this program exports so that we will allocate
|
|
|
|
|
space in the .opd section for each function's FPTR. If we are
|
|
|
|
|
creating dynamic sections, change the dynamic index of millicode
|
|
|
|
|
symbols to -1 and remove them from the string table for .dynstr.
|
|
|
|
|
|
|
|
|
|
We have to traverse the main linker hash table since we have to
|
|
|
|
|
find functions which may not have been mentioned in any relocs. */
|
|
|
|
|
elf_link_hash_traverse (elf_hash_table (info),
|
|
|
|
|
(elf_hash_table (info)->dynamic_sections_created
|
|
|
|
|
? elf64_hppa_mark_milli_and_exported_functions
|
|
|
|
|
: elf64_hppa_mark_exported_functions),
|
|
|
|
|
info);
|
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (elf_hash_table (info)->dynamic_sections_created)
|
|
|
|
|
{
|
|
|
|
|
/* Set the contents of the .interp section to the interpreter. */
|
|
|
|
|
if (! info->shared)
|
|
|
|
|
{
|
|
|
|
|
s = bfd_get_section_by_name (dynobj, ".interp");
|
|
|
|
|
BFD_ASSERT (s != NULL);
|
|
|
|
|
s->_raw_size = sizeof ELF_DYNAMIC_INTERPRETER;
|
|
|
|
|
s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* We may have created entries in the .rela.got section.
|
|
|
|
|
However, if we are not creating the dynamic sections, we will
|
|
|
|
|
not actually use these entries. Reset the size of .rela.dlt,
|
|
|
|
|
which will cause it to get stripped from the output file
|
|
|
|
|
below. */
|
|
|
|
|
s = bfd_get_section_by_name (dynobj, ".rela.dlt");
|
|
|
|
|
if (s != NULL)
|
|
|
|
|
s->_raw_size = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate the GOT entries. */
|
|
|
|
|
|
|
|
|
|
data.info = info;
|
|
|
|
|
if (elf64_hppa_hash_table (info)->dlt_sec)
|
|
|
|
|
{
|
|
|
|
|
data.ofs = 0x0;
|
|
|
|
|
elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
|
|
|
|
|
allocate_global_data_dlt, &data);
|
|
|
|
|
hppa_info->dlt_sec->_raw_size = data.ofs;
|
|
|
|
|
|
|
|
|
|
data.ofs = 0x0;
|
|
|
|
|
elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
|
|
|
|
|
allocate_global_data_plt, &data);
|
|
|
|
|
hppa_info->plt_sec->_raw_size = data.ofs;
|
|
|
|
|
|
|
|
|
|
data.ofs = 0x0;
|
|
|
|
|
elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
|
|
|
|
|
allocate_global_data_stub, &data);
|
|
|
|
|
hppa_info->stub_sec->_raw_size = data.ofs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate space for entries in the .opd section. */
|
|
|
|
|
if (elf64_hppa_hash_table (info)->opd_sec)
|
|
|
|
|
{
|
|
|
|
|
data.ofs = 0;
|
|
|
|
|
elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
|
|
|
|
|
allocate_global_data_opd, &data);
|
|
|
|
|
hppa_info->opd_sec->_raw_size = data.ofs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now allocate space for dynamic relocations, if necessary. */
|
|
|
|
|
if (hppa_info->root.dynamic_sections_created)
|
|
|
|
|
elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
|
|
|
|
|
allocate_dynrel_entries, &data);
|
|
|
|
|
|
|
|
|
|
/* The sizes of all the sections are set. Allocate memory for them. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
plt = FALSE;
|
|
|
|
|
relocs = FALSE;
|
|
|
|
|
reltext = FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
for (s = dynobj->sections; s != NULL; s = s->next)
|
|
|
|
|
{
|
|
|
|
|
const char *name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean strip;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
if ((s->flags & SEC_LINKER_CREATED) == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* It's OK to base decisions on the section name, because none
|
|
|
|
|
of the dynobj section names depend upon the input files. */
|
|
|
|
|
name = bfd_get_section_name (dynobj, s);
|
|
|
|
|
|
|
|
|
|
strip = 0;
|
|
|
|
|
|
|
|
|
|
if (strcmp (name, ".plt") == 0)
|
|
|
|
|
{
|
2002-06-16 17:32:08 +02:00
|
|
|
|
/* Strip this section if we don't need it; see the comment below. */
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (s->_raw_size == 0)
|
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
strip = TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Remember whether there is a PLT. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
plt = TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp (name, ".dlt") == 0)
|
|
|
|
|
{
|
2002-06-16 17:32:08 +02:00
|
|
|
|
/* Strip this section if we don't need it; see the comment below. */
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (s->_raw_size == 0)
|
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
strip = TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp (name, ".opd") == 0)
|
|
|
|
|
{
|
2002-06-16 17:32:08 +02:00
|
|
|
|
/* Strip this section if we don't need it; see the comment below. */
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (s->_raw_size == 0)
|
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
strip = TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-16 17:32:08 +02:00
|
|
|
|
else if (strncmp (name, ".rela", 5) == 0)
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
2002-06-16 17:32:08 +02:00
|
|
|
|
/* If we don't need this section, strip it from the output file.
|
|
|
|
|
This is mostly to handle .rela.bss and .rela.plt. We must
|
|
|
|
|
create both sections in create_dynamic_sections, because they
|
|
|
|
|
must be created before the linker maps input sections to output
|
|
|
|
|
sections. The linker does that before adjust_dynamic_symbol
|
|
|
|
|
is called, and it is that function which decides whether
|
|
|
|
|
anything needs to go into these sections. */
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (s->_raw_size == 0)
|
|
|
|
|
{
|
|
|
|
|
/* If we don't need this section, strip it from the
|
|
|
|
|
output file. This is mostly to handle .rela.bss and
|
|
|
|
|
.rela.plt. We must create both sections in
|
|
|
|
|
create_dynamic_sections, because they must be created
|
|
|
|
|
before the linker maps input sections to output
|
|
|
|
|
sections. The linker does that before
|
|
|
|
|
adjust_dynamic_symbol is called, and it is that
|
|
|
|
|
function which decides whether anything needs to go
|
|
|
|
|
into these sections. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
strip = TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
asection *target;
|
|
|
|
|
|
|
|
|
|
/* Remember whether there are any reloc sections other
|
|
|
|
|
than .rela.plt. */
|
|
|
|
|
if (strcmp (name, ".rela.plt") != 0)
|
|
|
|
|
{
|
|
|
|
|
const char *outname;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
relocs = TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* If this relocation section applies to a read only
|
|
|
|
|
section, then we probably need a DT_TEXTREL
|
|
|
|
|
entry. The entries in the .rela.plt section
|
|
|
|
|
really apply to the .got section, which we
|
|
|
|
|
created ourselves and so know is not readonly. */
|
|
|
|
|
outname = bfd_get_section_name (output_bfd,
|
|
|
|
|
s->output_section);
|
|
|
|
|
target = bfd_get_section_by_name (output_bfd, outname + 4);
|
|
|
|
|
if (target != NULL
|
|
|
|
|
&& (target->flags & SEC_READONLY) != 0
|
|
|
|
|
&& (target->flags & SEC_ALLOC) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
reltext = TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We use the reloc_count field as a counter if we need
|
|
|
|
|
to copy relocs into the output file. */
|
|
|
|
|
s->reloc_count = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (strncmp (name, ".dlt", 4) != 0
|
|
|
|
|
&& strcmp (name, ".stub") != 0
|
|
|
|
|
&& strcmp (name, ".got") != 0)
|
|
|
|
|
{
|
|
|
|
|
/* It's not one of our sections, so don't allocate space. */
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strip)
|
|
|
|
|
{
|
|
|
|
|
_bfd_strip_section_from_output (info, s);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate memory for the section contents if it has not
|
2000-09-05 04:30:24 +02:00
|
|
|
|
been allocated already. We use bfd_zalloc here in case
|
|
|
|
|
unused entries are not reclaimed before the section's
|
|
|
|
|
contents are written out. This should not happen, but this
|
|
|
|
|
way if it does, we get a R_PARISC_NONE reloc instead of
|
|
|
|
|
garbage. */
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (s->contents == NULL)
|
|
|
|
|
{
|
2000-08-22 01:42:56 +02:00
|
|
|
|
s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->_raw_size);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (s->contents == NULL && s->_raw_size != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (elf_hash_table (info)->dynamic_sections_created)
|
|
|
|
|
{
|
|
|
|
|
/* Always create a DT_PLTGOT. It actually has nothing to do with
|
|
|
|
|
the PLT, it is how we communicate the __gp value of a load
|
|
|
|
|
module to the dynamic linker. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
#define add_dynamic_entry(TAG, VAL) \
|
|
|
|
|
bfd_elf64_add_dynamic_entry (info, (bfd_vma) (TAG), (bfd_vma) (VAL))
|
|
|
|
|
|
|
|
|
|
if (!add_dynamic_entry (DT_HP_DLD_FLAGS, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_PLTGOT, 0))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* Add some entries to the .dynamic section. We fill in the
|
|
|
|
|
values later, in elf64_hppa_finish_dynamic_sections, but we
|
|
|
|
|
must add the entries now so that we get the correct size for
|
|
|
|
|
the .dynamic section. The DT_DEBUG entry is filled in by the
|
|
|
|
|
dynamic linker and used by the debugger. */
|
|
|
|
|
if (! info->shared)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
if (!add_dynamic_entry (DT_DEBUG, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_HP_DLD_HOOK, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_HP_LOAD_MAP, 0))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-10-23 14:34:57 +02:00
|
|
|
|
/* Force DT_FLAGS to always be set.
|
|
|
|
|
Required by HPUX 11.00 patch PHSS_26559. */
|
|
|
|
|
if (!add_dynamic_entry (DT_FLAGS, (info)->flags))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2002-10-23 14:34:57 +02:00
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (plt)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
if (!add_dynamic_entry (DT_PLTRELSZ, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_PLTREL, DT_RELA)
|
|
|
|
|
|| !add_dynamic_entry (DT_JMPREL, 0))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (relocs)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
if (!add_dynamic_entry (DT_RELA, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_RELASZ, 0)
|
|
|
|
|
|| !add_dynamic_entry (DT_RELAENT, sizeof (Elf64_External_Rela)))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (reltext)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
if (!add_dynamic_entry (DT_TEXTREL, 0))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-07-20 05:21:59 +02:00
|
|
|
|
info->flags |= DF_TEXTREL;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
#undef add_dynamic_entry
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Called after we have output the symbol into the dynamic symbol
|
|
|
|
|
table, but before we output the symbol into the normal symbol
|
|
|
|
|
table.
|
|
|
|
|
|
|
|
|
|
For some symbols we had to change their address when outputting
|
|
|
|
|
the dynamic symbol table. We undo that change here so that
|
|
|
|
|
the symbols have their expected value in the normal symbol
|
|
|
|
|
table. Ick. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_link_output_symbol_hook (abfd, info, name, sym, input_sec)
|
2000-07-09 09:23:07 +02:00
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
const char *name;
|
|
|
|
|
Elf_Internal_Sym *sym;
|
2000-07-09 09:23:07 +02:00
|
|
|
|
asection *input_sec ATTRIBUTE_UNUSED;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
|
|
|
|
|
/* We may be called with the file symbol or section symbols.
|
|
|
|
|
They never need munging, so it is safe to ignore them. */
|
|
|
|
|
if (!name)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* Get the PA dyn_symbol (if any) associated with NAME. */
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
|
|
|
|
dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
name, FALSE, FALSE);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2000-09-05 04:30:24 +02:00
|
|
|
|
/* Function symbols for which we created .opd entries *may* have been
|
|
|
|
|
munged by finish_dynamic_symbol and have to be un-munged here.
|
|
|
|
|
|
|
|
|
|
Note that finish_dynamic_symbol sometimes turns dynamic symbols
|
|
|
|
|
into non-dynamic ones, so we initialize st_shndx to -1 in
|
|
|
|
|
mark_exported_functions and check to see if it was overwritten
|
|
|
|
|
here instead of just checking dyn_h->h->dynindx. */
|
|
|
|
|
if (dyn_h && dyn_h->want_opd && dyn_h->st_shndx != -1)
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
/* Restore the saved value and section index. */
|
|
|
|
|
sym->st_value = dyn_h->st_value;
|
2000-12-09 02:54:51 +01:00
|
|
|
|
sym->st_shndx = dyn_h->st_shndx;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Finish up dynamic symbol handling. We set the contents of various
|
|
|
|
|
dynamic sections here. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_finish_dynamic_symbol (output_bfd, info, h, sym)
|
|
|
|
|
bfd *output_bfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
Elf_Internal_Sym *sym;
|
|
|
|
|
{
|
|
|
|
|
asection *stub, *splt, *sdlt, *sopd, *spltrel, *sdltrel;
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
|
|
|
|
dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
h->root.root.string, FALSE, FALSE);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
stub = hppa_info->stub_sec;
|
|
|
|
|
splt = hppa_info->plt_sec;
|
|
|
|
|
sdlt = hppa_info->dlt_sec;
|
|
|
|
|
sopd = hppa_info->opd_sec;
|
|
|
|
|
spltrel = hppa_info->plt_rel_sec;
|
|
|
|
|
sdltrel = hppa_info->dlt_rel_sec;
|
|
|
|
|
|
|
|
|
|
/* Incredible. It is actually necessary to NOT use the symbol's real
|
|
|
|
|
value when building the dynamic symbol table for a shared library.
|
|
|
|
|
At least for symbols that refer to functions.
|
|
|
|
|
|
|
|
|
|
We will store a new value and section index into the symbol long
|
|
|
|
|
enough to output it into the dynamic symbol table, then we restore
|
|
|
|
|
the original values (in elf64_hppa_link_output_symbol_hook). */
|
|
|
|
|
if (dyn_h && dyn_h->want_opd)
|
|
|
|
|
{
|
2002-06-16 17:32:08 +02:00
|
|
|
|
BFD_ASSERT (sopd != NULL)
|
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
/* Save away the original value and section index so that we
|
|
|
|
|
can restore them later. */
|
|
|
|
|
dyn_h->st_value = sym->st_value;
|
|
|
|
|
dyn_h->st_shndx = sym->st_shndx;
|
|
|
|
|
|
|
|
|
|
/* For the dynamic symbol table entry, we want the value to be
|
|
|
|
|
address of this symbol's entry within the .opd section. */
|
|
|
|
|
sym->st_value = (dyn_h->opd_offset
|
|
|
|
|
+ sopd->output_offset
|
|
|
|
|
+ sopd->output_section->vma);
|
|
|
|
|
sym->st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
|
|
|
|
|
sopd->output_section);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize a .plt entry if requested. */
|
|
|
|
|
if (dyn_h && dyn_h->want_plt
|
|
|
|
|
&& elf64_hppa_dynamic_symbol_p (dyn_h->h, info))
|
|
|
|
|
{
|
|
|
|
|
bfd_vma value;
|
|
|
|
|
Elf_Internal_Rela rel;
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
bfd_byte *loc;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2002-06-16 17:32:08 +02:00
|
|
|
|
BFD_ASSERT (splt != NULL && spltrel != NULL)
|
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
/* We do not actually care about the value in the PLT entry
|
|
|
|
|
if we are creating a shared library and the symbol is
|
|
|
|
|
still undefined, we create a dynamic relocation to fill
|
|
|
|
|
in the correct value. */
|
|
|
|
|
if (info->shared && h->root.type == bfd_link_hash_undefined)
|
|
|
|
|
value = 0;
|
|
|
|
|
else
|
|
|
|
|
value = (h->root.u.def.value + h->root.u.def.section->vma);
|
|
|
|
|
|
2000-12-09 02:54:51 +01:00
|
|
|
|
/* Fill in the entry in the procedure linkage table.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
The format of a plt entry is
|
2000-12-09 02:54:51 +01:00
|
|
|
|
<funcaddr> <__gp>.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
plt_offset is the offset within the PLT section at which to
|
2000-12-09 02:54:51 +01:00
|
|
|
|
install the PLT entry.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
We are modifying the in-memory PLT contents here, so we do not add
|
|
|
|
|
in the output_offset of the PLT section. */
|
|
|
|
|
|
|
|
|
|
bfd_put_64 (splt->owner, value, splt->contents + dyn_h->plt_offset);
|
|
|
|
|
value = _bfd_get_gp_value (splt->output_section->owner);
|
|
|
|
|
bfd_put_64 (splt->owner, value, splt->contents + dyn_h->plt_offset + 0x8);
|
|
|
|
|
|
|
|
|
|
/* Create a dynamic IPLT relocation for this entry.
|
|
|
|
|
|
|
|
|
|
We are creating a relocation in the output file's PLT section,
|
|
|
|
|
which is included within the DLT secton. So we do need to include
|
|
|
|
|
the PLT's output_offset in the computation of the relocation's
|
|
|
|
|
address. */
|
|
|
|
|
rel.r_offset = (dyn_h->plt_offset + splt->output_offset
|
|
|
|
|
+ splt->output_section->vma);
|
|
|
|
|
rel.r_info = ELF64_R_INFO (h->dynindx, R_PARISC_IPLT);
|
|
|
|
|
rel.r_addend = 0;
|
|
|
|
|
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
loc = spltrel->contents;
|
|
|
|
|
loc += spltrel->reloc_count++ * sizeof (Elf64_External_Rela);
|
|
|
|
|
bfd_elf64_swap_reloca_out (splt->output_section->owner, &rel, loc);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize an external call stub entry if requested. */
|
|
|
|
|
if (dyn_h && dyn_h->want_stub
|
|
|
|
|
&& elf64_hppa_dynamic_symbol_p (dyn_h->h, info))
|
|
|
|
|
{
|
|
|
|
|
bfd_vma value;
|
|
|
|
|
int insn;
|
2001-01-14 06:22:51 +01:00
|
|
|
|
unsigned int max_offset;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2002-06-16 17:32:08 +02:00
|
|
|
|
BFD_ASSERT (stub != NULL)
|
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
/* Install the generic stub template.
|
|
|
|
|
|
|
|
|
|
We are modifying the contents of the stub section, so we do not
|
|
|
|
|
need to include the stub section's output_offset here. */
|
|
|
|
|
memcpy (stub->contents + dyn_h->stub_offset, plt_stub, sizeof (plt_stub));
|
|
|
|
|
|
|
|
|
|
/* Fix up the first ldd instruction.
|
|
|
|
|
|
|
|
|
|
We are modifying the contents of the STUB section in memory,
|
2000-12-09 02:54:51 +01:00
|
|
|
|
so we do not need to include its output offset in this computation.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
Note the plt_offset value is the value of the PLT entry relative to
|
|
|
|
|
the start of the PLT section. These instructions will reference
|
|
|
|
|
data relative to the value of __gp, which may not necessarily have
|
|
|
|
|
the same address as the start of the PLT section.
|
|
|
|
|
|
|
|
|
|
gp_offset contains the offset of __gp within the PLT section. */
|
|
|
|
|
value = dyn_h->plt_offset - hppa_info->gp_offset;
|
2000-12-09 02:54:51 +01:00
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
insn = bfd_get_32 (stub->owner, stub->contents + dyn_h->stub_offset);
|
2001-01-14 06:22:51 +01:00
|
|
|
|
if (output_bfd->arch_info->mach >= 25)
|
|
|
|
|
{
|
|
|
|
|
/* Wide mode allows 16 bit offsets. */
|
|
|
|
|
max_offset = 32768;
|
|
|
|
|
insn &= ~ 0xfff1;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
insn |= re_assemble_16 ((int) value);
|
2001-01-14 06:22:51 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
max_offset = 8192;
|
|
|
|
|
insn &= ~ 0x3ff1;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
insn |= re_assemble_14 ((int) value);
|
2001-01-14 06:22:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((value & 7) || value + max_offset >= 2*max_offset - 8)
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler) (_("stub entry for %s cannot load .plt, dp offset = %ld"),
|
|
|
|
|
dyn_h->root.string,
|
|
|
|
|
(long) value);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2001-01-14 06:22:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_put_32 (stub->owner, (bfd_vma) insn,
|
2000-04-24 10:17:58 +02:00
|
|
|
|
stub->contents + dyn_h->stub_offset);
|
|
|
|
|
|
|
|
|
|
/* Fix up the second ldd instruction. */
|
2001-01-14 06:22:51 +01:00
|
|
|
|
value += 8;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
insn = bfd_get_32 (stub->owner, stub->contents + dyn_h->stub_offset + 8);
|
2001-01-14 06:22:51 +01:00
|
|
|
|
if (output_bfd->arch_info->mach >= 25)
|
|
|
|
|
{
|
|
|
|
|
insn &= ~ 0xfff1;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
insn |= re_assemble_16 ((int) value);
|
2001-01-14 06:22:51 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
insn &= ~ 0x3ff1;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
insn |= re_assemble_14 ((int) value);
|
2001-01-14 06:22:51 +01:00
|
|
|
|
}
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_put_32 (stub->owner, (bfd_vma) insn,
|
2000-04-24 10:17:58 +02:00
|
|
|
|
stub->contents + dyn_h->stub_offset + 8);
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The .opd section contains FPTRs for each function this file
|
|
|
|
|
exports. Initialize the FPTR entries. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_finalize_opd (dyn_h, data)
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_info *info = (struct bfd_link_info *)data;
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
2002-06-12 20:12:25 +02:00
|
|
|
|
struct elf_link_hash_entry *h = dyn_h ? dyn_h->h : NULL;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
asection *sopd;
|
|
|
|
|
asection *sopdrel;
|
|
|
|
|
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
|
|
|
|
sopd = hppa_info->opd_sec;
|
|
|
|
|
sopdrel = hppa_info->opd_rel_sec;
|
|
|
|
|
|
2002-06-12 20:12:25 +02:00
|
|
|
|
if (h && dyn_h->want_opd)
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
bfd_vma value;
|
|
|
|
|
|
2000-12-09 02:54:51 +01:00
|
|
|
|
/* The first two words of an .opd entry are zero.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
We are modifying the contents of the OPD section in memory, so we
|
|
|
|
|
do not need to include its output offset in this computation. */
|
|
|
|
|
memset (sopd->contents + dyn_h->opd_offset, 0, 16);
|
|
|
|
|
|
|
|
|
|
value = (h->root.u.def.value
|
|
|
|
|
+ h->root.u.def.section->output_section->vma
|
|
|
|
|
+ h->root.u.def.section->output_offset);
|
|
|
|
|
|
|
|
|
|
/* The next word is the address of the function. */
|
|
|
|
|
bfd_put_64 (sopd->owner, value, sopd->contents + dyn_h->opd_offset + 16);
|
|
|
|
|
|
|
|
|
|
/* The last word is our local __gp value. */
|
|
|
|
|
value = _bfd_get_gp_value (sopd->output_section->owner);
|
|
|
|
|
bfd_put_64 (sopd->owner, value, sopd->contents + dyn_h->opd_offset + 24);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If we are generating a shared library, we must generate EPLT relocations
|
|
|
|
|
for each entry in the .opd, even for static functions (they may have
|
|
|
|
|
had their address taken). */
|
|
|
|
|
if (info->shared && dyn_h && dyn_h->want_opd)
|
|
|
|
|
{
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
Elf_Internal_Rela rel;
|
|
|
|
|
bfd_byte *loc;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
int dynindx;
|
|
|
|
|
|
|
|
|
|
/* We may need to do a relocation against a local symbol, in
|
|
|
|
|
which case we have to look up it's dynamic symbol index off
|
|
|
|
|
the local symbol hash table. */
|
|
|
|
|
if (h && h->dynindx != -1)
|
|
|
|
|
dynindx = h->dynindx;
|
|
|
|
|
else
|
|
|
|
|
dynindx
|
|
|
|
|
= _bfd_elf_link_lookup_local_dynindx (info, dyn_h->owner,
|
|
|
|
|
dyn_h->sym_indx);
|
|
|
|
|
|
|
|
|
|
/* The offset of this relocation is the absolute address of the
|
|
|
|
|
.opd entry for this symbol. */
|
|
|
|
|
rel.r_offset = (dyn_h->opd_offset + sopd->output_offset
|
|
|
|
|
+ sopd->output_section->vma);
|
|
|
|
|
|
|
|
|
|
/* If H is non-null, then we have an external symbol.
|
|
|
|
|
|
|
|
|
|
It is imperative that we use a different dynamic symbol for the
|
|
|
|
|
EPLT relocation if the symbol has global scope.
|
|
|
|
|
|
|
|
|
|
In the dynamic symbol table, the function symbol will have a value
|
|
|
|
|
which is address of the function's .opd entry.
|
|
|
|
|
|
|
|
|
|
Thus, we can not use that dynamic symbol for the EPLT relocation
|
|
|
|
|
(if we did, the data in the .opd would reference itself rather
|
|
|
|
|
than the actual address of the function). Instead we have to use
|
|
|
|
|
a new dynamic symbol which has the same value as the original global
|
2000-12-09 02:54:51 +01:00
|
|
|
|
function symbol.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
We prefix the original symbol with a "." and use the new symbol in
|
|
|
|
|
the EPLT relocation. This new symbol has already been recorded in
|
|
|
|
|
the symbol table, we just have to look it up and use it.
|
|
|
|
|
|
|
|
|
|
We do not have such problems with static functions because we do
|
|
|
|
|
not make their addresses in the dynamic symbol table point to
|
|
|
|
|
the .opd entry. Ultimately this should be safe since a static
|
|
|
|
|
function can not be directly referenced outside of its shared
|
|
|
|
|
library.
|
|
|
|
|
|
|
|
|
|
We do have to play similar games for FPTR relocations in shared
|
|
|
|
|
libraries, including those for static symbols. See the FPTR
|
|
|
|
|
handling in elf64_hppa_finalize_dynreloc. */
|
|
|
|
|
if (h)
|
|
|
|
|
{
|
|
|
|
|
char *new_name;
|
|
|
|
|
struct elf_link_hash_entry *nh;
|
|
|
|
|
|
|
|
|
|
new_name = alloca (strlen (h->root.root.string) + 2);
|
|
|
|
|
new_name[0] = '.';
|
|
|
|
|
strcpy (new_name + 1, h->root.root.string);
|
|
|
|
|
|
|
|
|
|
nh = elf_link_hash_lookup (elf_hash_table (info),
|
2002-11-30 09:39:46 +01:00
|
|
|
|
new_name, FALSE, FALSE, FALSE);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* All we really want from the new symbol is its dynamic
|
|
|
|
|
symbol index. */
|
|
|
|
|
dynindx = nh->dynindx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rel.r_addend = 0;
|
|
|
|
|
rel.r_info = ELF64_R_INFO (dynindx, R_PARISC_EPLT);
|
|
|
|
|
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
loc = sopdrel->contents;
|
|
|
|
|
loc += sopdrel->reloc_count++ * sizeof (Elf64_External_Rela);
|
|
|
|
|
bfd_elf64_swap_reloca_out (sopd->output_section->owner, &rel, loc);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The .dlt section contains addresses for items referenced through the
|
|
|
|
|
dlt. Note that we can have a DLTIND relocation for a local symbol, thus
|
|
|
|
|
we can not depend on finish_dynamic_symbol to initialize the .dlt. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_finalize_dlt (dyn_h, data)
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_info *info = (struct bfd_link_info *)data;
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
asection *sdlt, *sdltrel;
|
2002-06-12 20:12:25 +02:00
|
|
|
|
struct elf_link_hash_entry *h = dyn_h ? dyn_h->h : NULL;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
|
|
|
|
|
|
|
|
|
sdlt = hppa_info->dlt_sec;
|
|
|
|
|
sdltrel = hppa_info->dlt_rel_sec;
|
|
|
|
|
|
|
|
|
|
/* H/DYN_H may refer to a local variable and we know it's
|
|
|
|
|
address, so there is no need to create a relocation. Just install
|
|
|
|
|
the proper value into the DLT, note this shortcut can not be
|
|
|
|
|
skipped when building a shared library. */
|
2002-06-12 20:12:25 +02:00
|
|
|
|
if (! info->shared && h && dyn_h->want_dlt)
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
bfd_vma value;
|
|
|
|
|
|
|
|
|
|
/* If we had an LTOFF_FPTR style relocation we want the DLT entry
|
2000-12-09 02:54:51 +01:00
|
|
|
|
to point to the FPTR entry in the .opd section.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
We include the OPD's output offset in this computation as
|
|
|
|
|
we are referring to an absolute address in the resulting
|
|
|
|
|
object file. */
|
|
|
|
|
if (dyn_h->want_opd)
|
|
|
|
|
{
|
|
|
|
|
value = (dyn_h->opd_offset
|
|
|
|
|
+ hppa_info->opd_sec->output_offset
|
|
|
|
|
+ hppa_info->opd_sec->output_section->vma);
|
|
|
|
|
}
|
2003-07-30 04:15:07 +02:00
|
|
|
|
else if ((h->root.type == bfd_link_hash_defined
|
|
|
|
|
|| h->root.type == bfd_link_hash_defweak)
|
|
|
|
|
&& h->root.u.def.section)
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
2002-06-12 20:12:25 +02:00
|
|
|
|
value = h->root.u.def.value + h->root.u.def.section->output_offset;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (h->root.u.def.section->output_section)
|
|
|
|
|
value += h->root.u.def.section->output_section->vma;
|
|
|
|
|
else
|
|
|
|
|
value += h->root.u.def.section->vma;
|
|
|
|
|
}
|
2002-06-12 20:12:25 +02:00
|
|
|
|
else
|
|
|
|
|
/* We have an undefined function reference. */
|
|
|
|
|
value = 0;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
/* We do not need to include the output offset of the DLT section
|
|
|
|
|
here because we are modifying the in-memory contents. */
|
|
|
|
|
bfd_put_64 (sdlt->owner, value, sdlt->contents + dyn_h->dlt_offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create a relocation for the DLT entry assocated with this symbol.
|
|
|
|
|
When building a shared library the symbol does not have to be dynamic. */
|
|
|
|
|
if (dyn_h->want_dlt
|
|
|
|
|
&& (elf64_hppa_dynamic_symbol_p (dyn_h->h, info) || info->shared))
|
|
|
|
|
{
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
Elf_Internal_Rela rel;
|
|
|
|
|
bfd_byte *loc;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
int dynindx;
|
|
|
|
|
|
|
|
|
|
/* We may need to do a relocation against a local symbol, in
|
|
|
|
|
which case we have to look up it's dynamic symbol index off
|
|
|
|
|
the local symbol hash table. */
|
|
|
|
|
if (h && h->dynindx != -1)
|
|
|
|
|
dynindx = h->dynindx;
|
|
|
|
|
else
|
|
|
|
|
dynindx
|
|
|
|
|
= _bfd_elf_link_lookup_local_dynindx (info, dyn_h->owner,
|
|
|
|
|
dyn_h->sym_indx);
|
|
|
|
|
|
|
|
|
|
/* Create a dynamic relocation for this entry. Do include the output
|
|
|
|
|
offset of the DLT entry since we need an absolute address in the
|
|
|
|
|
resulting object file. */
|
|
|
|
|
rel.r_offset = (dyn_h->dlt_offset + sdlt->output_offset
|
|
|
|
|
+ sdlt->output_section->vma);
|
|
|
|
|
if (h && h->type == STT_FUNC)
|
|
|
|
|
rel.r_info = ELF64_R_INFO (dynindx, R_PARISC_FPTR64);
|
|
|
|
|
else
|
|
|
|
|
rel.r_info = ELF64_R_INFO (dynindx, R_PARISC_DIR64);
|
|
|
|
|
rel.r_addend = 0;
|
|
|
|
|
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
loc = sdltrel->contents;
|
|
|
|
|
loc += sdltrel->reloc_count++ * sizeof (Elf64_External_Rela);
|
|
|
|
|
bfd_elf64_swap_reloca_out (sdlt->output_section->owner, &rel, loc);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Finalize the dynamic relocations. Specifically the FPTR relocations
|
|
|
|
|
for dynamic functions used to initialize static data. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_finalize_dynreloc (dyn_h, data)
|
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_info *info = (struct bfd_link_info *)data;
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
|
int dynamic_symbol;
|
|
|
|
|
|
|
|
|
|
dynamic_symbol = elf64_hppa_dynamic_symbol_p (dyn_h->h, info);
|
|
|
|
|
|
|
|
|
|
if (!dynamic_symbol && !info->shared)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
if (dyn_h->reloc_entries)
|
|
|
|
|
{
|
|
|
|
|
struct elf64_hppa_dyn_reloc_entry *rent;
|
|
|
|
|
int dynindx;
|
|
|
|
|
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
|
|
|
|
h = dyn_h->h;
|
|
|
|
|
|
|
|
|
|
/* We may need to do a relocation against a local symbol, in
|
|
|
|
|
which case we have to look up it's dynamic symbol index off
|
|
|
|
|
the local symbol hash table. */
|
|
|
|
|
if (h && h->dynindx != -1)
|
|
|
|
|
dynindx = h->dynindx;
|
|
|
|
|
else
|
|
|
|
|
dynindx
|
|
|
|
|
= _bfd_elf_link_lookup_local_dynindx (info, dyn_h->owner,
|
|
|
|
|
dyn_h->sym_indx);
|
|
|
|
|
|
|
|
|
|
for (rent = dyn_h->reloc_entries; rent; rent = rent->next)
|
|
|
|
|
{
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
Elf_Internal_Rela rel;
|
|
|
|
|
bfd_byte *loc;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2002-06-16 17:32:08 +02:00
|
|
|
|
/* Allocate one iff we are building a shared library, the relocation
|
|
|
|
|
isn't a R_PARISC_FPTR64, or we don't want an opd entry. */
|
|
|
|
|
if (!info->shared && rent->type == R_PARISC_FPTR64 && dyn_h->want_opd)
|
|
|
|
|
continue;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
2000-12-09 02:54:51 +01:00
|
|
|
|
/* Create a dynamic relocation for this entry.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
We need the output offset for the reloc's section because
|
|
|
|
|
we are creating an absolute address in the resulting object
|
|
|
|
|
file. */
|
|
|
|
|
rel.r_offset = (rent->offset + rent->sec->output_offset
|
|
|
|
|
+ rent->sec->output_section->vma);
|
|
|
|
|
|
|
|
|
|
/* An FPTR64 relocation implies that we took the address of
|
|
|
|
|
a function and that the function has an entry in the .opd
|
|
|
|
|
section. We want the FPTR64 relocation to reference the
|
|
|
|
|
entry in .opd.
|
|
|
|
|
|
|
|
|
|
We could munge the symbol value in the dynamic symbol table
|
|
|
|
|
(in fact we already do for functions with global scope) to point
|
|
|
|
|
to the .opd entry. Then we could use that dynamic symbol in
|
|
|
|
|
this relocation.
|
|
|
|
|
|
|
|
|
|
Or we could do something sensible, not munge the symbol's
|
|
|
|
|
address and instead just use a different symbol to reference
|
|
|
|
|
the .opd entry. At least that seems sensible until you
|
|
|
|
|
realize there's no local dynamic symbols we can use for that
|
|
|
|
|
purpose. Thus the hair in the check_relocs routine.
|
2000-12-09 02:54:51 +01:00
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
We use a section symbol recorded by check_relocs as the
|
|
|
|
|
base symbol for the relocation. The addend is the difference
|
|
|
|
|
between the section symbol and the address of the .opd entry. */
|
2002-06-12 20:12:25 +02:00
|
|
|
|
if (info->shared && rent->type == R_PARISC_FPTR64 && dyn_h->want_opd)
|
2000-04-24 10:17:58 +02:00
|
|
|
|
{
|
|
|
|
|
bfd_vma value, value2;
|
|
|
|
|
|
|
|
|
|
/* First compute the address of the opd entry for this symbol. */
|
|
|
|
|
value = (dyn_h->opd_offset
|
|
|
|
|
+ hppa_info->opd_sec->output_section->vma
|
|
|
|
|
+ hppa_info->opd_sec->output_offset);
|
|
|
|
|
|
|
|
|
|
/* Compute the value of the start of the section with
|
|
|
|
|
the relocation. */
|
|
|
|
|
value2 = (rent->sec->output_section->vma
|
|
|
|
|
+ rent->sec->output_offset);
|
|
|
|
|
|
|
|
|
|
/* Compute the difference between the start of the section
|
|
|
|
|
with the relocation and the opd entry. */
|
|
|
|
|
value -= value2;
|
2000-12-09 02:54:51 +01:00
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
/* The result becomes the addend of the relocation. */
|
|
|
|
|
rel.r_addend = value;
|
|
|
|
|
|
|
|
|
|
/* The section symbol becomes the symbol for the dynamic
|
|
|
|
|
relocation. */
|
|
|
|
|
dynindx
|
|
|
|
|
= _bfd_elf_link_lookup_local_dynindx (info,
|
|
|
|
|
rent->sec->owner,
|
|
|
|
|
rent->sec_symndx);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
rel.r_addend = rent->addend;
|
|
|
|
|
|
|
|
|
|
rel.r_info = ELF64_R_INFO (dynindx, rent->type);
|
|
|
|
|
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
loc = hppa_info->other_rel_sec->contents;
|
|
|
|
|
loc += (hppa_info->other_rel_sec->reloc_count++
|
|
|
|
|
* sizeof (Elf64_External_Rela));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
bfd_elf64_swap_reloca_out (hppa_info->other_rel_sec->output_section->owner,
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
&rel, loc);
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-06-28 00:57:02 +02:00
|
|
|
|
/* Used to decide how to sort relocs in an optimal manner for the
|
|
|
|
|
dynamic linker, before writing them out. */
|
|
|
|
|
|
|
|
|
|
static enum elf_reloc_type_class
|
|
|
|
|
elf64_hppa_reloc_type_class (rela)
|
|
|
|
|
const Elf_Internal_Rela *rela;
|
|
|
|
|
{
|
|
|
|
|
if (ELF64_R_SYM (rela->r_info) == 0)
|
|
|
|
|
return reloc_class_relative;
|
|
|
|
|
|
|
|
|
|
switch ((int) ELF64_R_TYPE (rela->r_info))
|
|
|
|
|
{
|
|
|
|
|
case R_PARISC_IPLT:
|
|
|
|
|
return reloc_class_plt;
|
|
|
|
|
case R_PARISC_COPY:
|
|
|
|
|
return reloc_class_copy;
|
|
|
|
|
default:
|
|
|
|
|
return reloc_class_normal;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
/* Finish up the dynamic sections. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_finish_dynamic_sections (output_bfd, info)
|
|
|
|
|
bfd *output_bfd;
|
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
|
{
|
|
|
|
|
bfd *dynobj;
|
|
|
|
|
asection *sdyn;
|
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
|
|
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
|
|
|
|
|
|
|
|
|
/* Finalize the contents of the .opd section. */
|
|
|
|
|
elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
|
|
|
|
|
elf64_hppa_finalize_opd,
|
|
|
|
|
info);
|
|
|
|
|
|
|
|
|
|
elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
|
|
|
|
|
elf64_hppa_finalize_dynreloc,
|
|
|
|
|
info);
|
|
|
|
|
|
|
|
|
|
/* Finalize the contents of the .dlt section. */
|
|
|
|
|
dynobj = elf_hash_table (info)->dynobj;
|
|
|
|
|
/* Finalize the contents of the .dlt section. */
|
|
|
|
|
elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
|
|
|
|
|
elf64_hppa_finalize_dlt,
|
|
|
|
|
info);
|
|
|
|
|
|
|
|
|
|
sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
|
|
|
|
|
|
|
|
|
|
if (elf_hash_table (info)->dynamic_sections_created)
|
|
|
|
|
{
|
|
|
|
|
Elf64_External_Dyn *dyncon, *dynconend;
|
|
|
|
|
|
|
|
|
|
BFD_ASSERT (sdyn != NULL);
|
|
|
|
|
|
|
|
|
|
dyncon = (Elf64_External_Dyn *) sdyn->contents;
|
|
|
|
|
dynconend = (Elf64_External_Dyn *) (sdyn->contents + sdyn->_raw_size);
|
|
|
|
|
for (; dyncon < dynconend; dyncon++)
|
|
|
|
|
{
|
|
|
|
|
Elf_Internal_Dyn dyn;
|
|
|
|
|
asection *s;
|
|
|
|
|
|
|
|
|
|
bfd_elf64_swap_dyn_in (dynobj, dyncon, &dyn);
|
|
|
|
|
|
|
|
|
|
switch (dyn.d_tag)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DT_HP_LOAD_MAP:
|
|
|
|
|
/* Compute the absolute address of 16byte scratchpad area
|
|
|
|
|
for the dynamic linker.
|
|
|
|
|
|
|
|
|
|
By convention the linker script will allocate the scratchpad
|
|
|
|
|
area at the start of the .data section. So all we have to
|
|
|
|
|
to is find the start of the .data section. */
|
|
|
|
|
s = bfd_get_section_by_name (output_bfd, ".data");
|
|
|
|
|
dyn.d_un.d_ptr = s->vma;
|
|
|
|
|
bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DT_PLTGOT:
|
|
|
|
|
/* HP's use PLTGOT to set the GOT register. */
|
|
|
|
|
dyn.d_un.d_ptr = _bfd_get_gp_value (output_bfd);
|
|
|
|
|
bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DT_JMPREL:
|
|
|
|
|
s = hppa_info->plt_rel_sec;
|
|
|
|
|
dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
|
|
|
|
|
bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DT_PLTRELSZ:
|
|
|
|
|
s = hppa_info->plt_rel_sec;
|
|
|
|
|
dyn.d_un.d_val = s->_raw_size;
|
|
|
|
|
bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DT_RELA:
|
|
|
|
|
s = hppa_info->other_rel_sec;
|
2002-06-28 00:57:02 +02:00
|
|
|
|
if (! s || ! s->_raw_size)
|
2000-04-24 10:17:58 +02:00
|
|
|
|
s = hppa_info->dlt_rel_sec;
|
2002-06-28 00:57:02 +02:00
|
|
|
|
if (! s || ! s->_raw_size)
|
|
|
|
|
s = hppa_info->opd_rel_sec;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
|
|
|
|
|
bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DT_RELASZ:
|
|
|
|
|
s = hppa_info->other_rel_sec;
|
|
|
|
|
dyn.d_un.d_val = s->_raw_size;
|
|
|
|
|
s = hppa_info->dlt_rel_sec;
|
|
|
|
|
dyn.d_un.d_val += s->_raw_size;
|
|
|
|
|
s = hppa_info->opd_rel_sec;
|
|
|
|
|
dyn.d_un.d_val += s->_raw_size;
|
|
|
|
|
/* There is some question about whether or not the size of
|
|
|
|
|
the PLT relocs should be included here. HP's tools do
|
|
|
|
|
it, so we'll emulate them. */
|
|
|
|
|
s = hppa_info->plt_rel_sec;
|
|
|
|
|
dyn.d_un.d_val += s->_raw_size;
|
|
|
|
|
bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the number of additional phdrs we will need.
|
|
|
|
|
|
|
|
|
|
The generic ELF code only creates PT_PHDRs for executables. The HP
|
2000-12-09 02:54:51 +01:00
|
|
|
|
dynamic linker requires PT_PHDRs for dynamic libraries too.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
This routine indicates that the backend needs one additional program
|
|
|
|
|
header for that case.
|
|
|
|
|
|
|
|
|
|
Note we do not have access to the link info structure here, so we have
|
|
|
|
|
to guess whether or not we are building a shared library based on the
|
|
|
|
|
existence of a .interp section. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
elf64_hppa_additional_program_headers (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
|
|
|
|
asection *s;
|
|
|
|
|
|
|
|
|
|
/* If we are creating a shared library, then we have to create a
|
|
|
|
|
PT_PHDR segment. HP's dynamic linker chokes without it. */
|
|
|
|
|
s = bfd_get_section_by_name (abfd, ".interp");
|
|
|
|
|
if (! s)
|
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate and initialize any program headers required by this
|
|
|
|
|
specific backend.
|
|
|
|
|
|
|
|
|
|
The generic ELF code only creates PT_PHDRs for executables. The HP
|
2000-12-09 02:54:51 +01:00
|
|
|
|
dynamic linker requires PT_PHDRs for dynamic libraries too.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
This allocates the PT_PHDR and initializes it in a manner suitable
|
2000-12-09 02:54:51 +01:00
|
|
|
|
for the HP linker.
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
Note we do not have access to the link info structure here, so we have
|
|
|
|
|
to guess whether or not we are building a shared library based on the
|
|
|
|
|
existence of a .interp section. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2000-04-24 10:17:58 +02:00
|
|
|
|
elf64_hppa_modify_segment_map (abfd)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
{
|
2000-07-09 09:23:07 +02:00
|
|
|
|
struct elf_segment_map *m;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
asection *s;
|
|
|
|
|
|
|
|
|
|
s = bfd_get_section_by_name (abfd, ".interp");
|
|
|
|
|
if (! s)
|
|
|
|
|
{
|
|
|
|
|
for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
|
|
|
|
|
if (m->p_type == PT_PHDR)
|
|
|
|
|
break;
|
|
|
|
|
if (m == NULL)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
m = ((struct elf_segment_map *)
|
|
|
|
|
bfd_zalloc (abfd, (bfd_size_type) sizeof *m));
|
2000-04-24 10:17:58 +02:00
|
|
|
|
if (m == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
m->p_type = PT_PHDR;
|
|
|
|
|
m->p_flags = PF_R | PF_X;
|
|
|
|
|
m->p_flags_valid = 1;
|
|
|
|
|
m->p_paddr_valid = 1;
|
|
|
|
|
m->includes_phdrs = 1;
|
|
|
|
|
|
|
|
|
|
m->next = elf_tdata (abfd)->segment_map;
|
|
|
|
|
elf_tdata (abfd)->segment_map = m;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
|
|
|
|
|
if (m->p_type == PT_LOAD)
|
|
|
|
|
{
|
2000-07-12 07:03:01 +02:00
|
|
|
|
unsigned int i;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < m->count; i++)
|
|
|
|
|
{
|
|
|
|
|
/* The code "hint" is not really a hint. It is a requirement
|
|
|
|
|
for certain versions of the HP dynamic linker. Worse yet,
|
|
|
|
|
it must be set even if the shared library does not have
|
|
|
|
|
any code in its "text" segment (thus the check for .hash
|
|
|
|
|
to catch this situation). */
|
|
|
|
|
if (m->sections[i]->flags & SEC_CODE
|
|
|
|
|
|| (strcmp (m->sections[i]->name, ".hash") == 0))
|
|
|
|
|
m->p_flags |= (PF_X | PF_HP_CODE);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-24 10:17:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 14:40:08 +01:00
|
|
|
|
/* Called when writing out an object file to decide the type of a
|
|
|
|
|
symbol. */
|
|
|
|
|
static int
|
|
|
|
|
elf64_hppa_elf_get_symbol_type (elf_sym, type)
|
|
|
|
|
Elf_Internal_Sym *elf_sym;
|
|
|
|
|
int type;
|
|
|
|
|
{
|
|
|
|
|
if (ELF_ST_TYPE (elf_sym->st_info) == STT_PARISC_MILLI)
|
|
|
|
|
return STT_PARISC_MILLI;
|
|
|
|
|
else
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-25 16:35:56 +02:00
|
|
|
|
static struct bfd_elf_special_section const elf64_hppa_special_sections[]=
|
|
|
|
|
{
|
2003-09-23 02:40:49 +02:00
|
|
|
|
{ ".fini", 5, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
|
|
|
|
|
{ ".init", 5, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
|
|
|
|
|
{ NULL, 0, 0, 0, 0 }
|
2003-07-25 16:35:56 +02:00
|
|
|
|
};
|
|
|
|
|
|
2000-04-24 10:17:58 +02:00
|
|
|
|
/* The hash bucket size is the standard one, namely 4. */
|
|
|
|
|
|
|
|
|
|
const struct elf_size_info hppa64_elf_size_info =
|
|
|
|
|
{
|
|
|
|
|
sizeof (Elf64_External_Ehdr),
|
|
|
|
|
sizeof (Elf64_External_Phdr),
|
|
|
|
|
sizeof (Elf64_External_Shdr),
|
|
|
|
|
sizeof (Elf64_External_Rel),
|
|
|
|
|
sizeof (Elf64_External_Rela),
|
|
|
|
|
sizeof (Elf64_External_Sym),
|
|
|
|
|
sizeof (Elf64_External_Dyn),
|
|
|
|
|
sizeof (Elf_External_Note),
|
|
|
|
|
4,
|
|
|
|
|
1,
|
* elflink.c (_bfd_elf_link_create_dynamic_sections): Move from
elflink.h. Replace LOG_FILE_ALIGN with bed->s->log_file_align.
(_bfd_elf_create_dynamic_sections): Use bed->s->log_file_align.
(bfd_elf_record_link_assignment): Move from elflink.h.
(_bfd_elf_merge_symbol): Likewise.
(_bfd_elf_add_default_symbol): Likewise.
(_bfd_elf_export_symbol): Likewise.
(_bfd_elf_link_find_version_dependencies): Likewise.
(_bfd_elf_link_assign_sym_version): Likewise.
(_bfd_elf_link_read_relocs): Likewise.
(_bfd_elf_link_size_reloc_section): Likewise.
(_bfd_elf_fix_symbol_flags): Likewise.
(_bfd_elf_adjust_dynamic_symbol): Likewise.
(_bfd_elf_link_sec_merge_syms): Likewise.
(elf_link_read_relocs_from_section): Likewise. Use bed->s->sizeof_rel
and bed->s->sizeof_rela.
(_bfd_elf_link_output_relocs): Likewise.
* elf-bfd.h (struct elf_size_info): Rename file_align to
log_file_align.
(struct elf_info_failed): Move from elflink.h.
(struct elf_assign_sym_version_info): Likewise.
(struct elf_find_verdep_info): Likewise.
(_bfd_elf_create_dynamic_sections): Delete duplicate declaration.
(_bfd_elf_merge_symbol, _bfd_elf_add_default_symbol,
_bfd_elf_export_symbol, _bfd_elf_link_find_version_dependencies,
_bfd_elf_link_assign_sym_version,
_bfd_elf_link_create_dynamic_sections, _bfd_elf_link_read_relocs,
_bfd_elf_link_size_reloc_section, _bfd_elf_link_output_relocs,
_bfd_elf_fix_symbol_flags, _bfd_elf_adjust_dynamic_symbol,
_bfd_elf_link_sec_merge_syms): Declare.
(bfd_elf32_link_create_dynamic_sections): Don't declare.
(_bfd_elf32_link_read_relocs): Likewise.
(bfd_elf64_link_create_dynamic_sections): Likewise.
(_bfd_elf64_link_read_relocs): Likewise.
* elflink.h: Move lots o' stuff elsewhere.
* bfd-in.h (bfd_elf32_record_link_assignment): Don't declare.
(bfd_elf64_record_link_assignment): Likewise.
(bfd_elf_record_link_assignment): Declare.
* bfd-in2.h: Regenerate.
* elfcode.h (elf_link_create_dynamic_sections): Don't declare.
(NAME(_bfd_elf,size_info)): Adjust for log_file_align.
* elf.c (_bfd_elf_init_reloc_shdr): Adjust for bed->s->log_file_align.
(assign_file_positions_for_segments): Likewise.
(assign_file_positions_except_relocs): Likewise.
(swap_out_syms, elfcore_write_note): Likewise.
* elf-m10200.c: Adjust for changed function names.
* elf-m10300.c: Likewise.
* elf32-arm.h: Likewise.
* elf32-h8300.c: Likewise.
* elf32-hppa.c: Likewise.
* elf32-ip2k.c: Likewise.
* elf32-m32r.c: Likewise.
* elf32-m68hc11.c: Likewise.
* elf32-m68hc1x.c: Likewise.
* elf32-m68k.c: Likewise.
* elf32-mips.c: Likewise.
* elf32-ppc.c: Likewise.
* elf32-sh.c: Likewise.
* elf32-v850.c: Likewise.
* elf32-xtensa.c: Likewise.
* elf64-alpha.c: Likewise.
* elf64-hppa.c: Likewise.
* elf64-mmix.c: Likewise.
* elf64-ppc.c: Likewise.
* elf64-sh64.c: Likewise.
* elfxx-ia64.c: Likewise.
* elfxx-mips.c: Likewise.
(MIPS_ELF_LOG_FILE_ALIGN): Use log_file_align.
* elf64-alpha.c (alpha_elf_size_info): Adjust for log_file_align.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-mips.c (mips_elf64_size_info): Likewise.
* elf64-s390.c (s390_elf64_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2003-05-09 04:27:11 +02:00
|
|
|
|
64, 3,
|
2000-04-24 10:17:58 +02:00
|
|
|
|
ELFCLASS64, EV_CURRENT,
|
|
|
|
|
bfd_elf64_write_out_phdrs,
|
|
|
|
|
bfd_elf64_write_shdrs_and_ehdr,
|
|
|
|
|
bfd_elf64_write_relocs,
|
2002-06-05 15:32:02 +02:00
|
|
|
|
bfd_elf64_swap_symbol_in,
|
2000-04-24 10:17:58 +02:00
|
|
|
|
bfd_elf64_swap_symbol_out,
|
|
|
|
|
bfd_elf64_slurp_reloc_table,
|
|
|
|
|
bfd_elf64_slurp_symbol_table,
|
|
|
|
|
bfd_elf64_swap_dyn_in,
|
|
|
|
|
bfd_elf64_swap_dyn_out,
|
include/elf/ChangeLog
* internal.h (elf32_internal_ehdr, Elf32_Internal_Ehdr,
elf64_internal_ehdr, Elf64_Internal_Ehdr, elf32_internal_phdr,
Elf32_Internal_Phdr, elf64_internal_phdr, Elf64_Internal_Phdr,
elf32_internal_shdr, Elf32_Internal_Shdr, elf64_internal_shdr,
Elf64_Internal_Shdr, elf32_internal_sym, elf64_internal_sym,
Elf32_Internal_Sym, Elf64_Internal_Sym, Elf32_Internal_Note,
elf32_internal_note, elf32_internal_rel, Elf32_Internal_Rel,
elf64_internal_rel, Elf64_Internal_Rel, elf32_internal_rela,
elf64_internal_rela, Elf32_Internal_Rela, Elf64_Internal_Rela,
elf32_internal_dyn, elf64_internal_dyn, Elf32_Internal_Dyn,
Elf64_Internal_Dyn, elf32_internal_verdef, elf64_internal_verdef,
elf32_internal_verdaux, elf64_internal_verdaux, elf32_internal_verneed,
elf64_internal_verneed, elf32_internal_vernaux, elf64_internal_vernaux,
elf32_internal_versym, elf64_internal_versym, Elf32_Internal_Verdef,
Elf64_Internal_Verdef, Elf32_Internal_Verdaux, Elf64_Internal_Verdaux,
Elf32_Internal_Verneed, Elf64_Internal_Verneed, Elf32_Internal_Vernaux,
Elf64_Internal_Vernaux, Elf32_Internal_Versym, Elf64_Internal_Versym,
Elf32_Internal_Syminfo, Elf64_Internal_Syminfo): Delete.
(Elf_Internal_Rel): Delete.
bfd/ChangeLog
* elf-bfd.h: Replace occurrences of Elf32_Internal_* and
Elf64_Internal_* with Elf_Internal_*. Replace Elf_Internal_Rel
with Elf_Internal_Rela.
* elf-hppa.h, elf-m10200.c, elf-m10300.c, elf32-arc.c, elf32-arm.h,
elf32-avr.c, elf32-cris.c, elf32-d10v.c, elf32-d30v.c, elf32-dlx.c,
elf32-fr30.c, elf32-frv.c, elf32-gen.c, elf32-h8300.c, elf32-hppa.c,
elf32-i370.c, elf32-i386.c, elf32-i860.c, elf32-i960.c, elf32-ip2k.c,
elf32-m32r.c, elf32-m68hc11.c, elf32-m68hc12.c, elf32-m68k.c,
elf32-mcore.c, elf32-mips.c, elf32-openrisc.c, elf32-or32.c,
elf32-ppc.c, elf32-s390.c, elf32-sh.c, elf32-v850.c, elf32-vax.c,
elf32-xstormy16.c, elf64-alpha.c, elf64-gen.c, elf64-hppa.c,
elf64-mips.c, elf64-mmix.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c, elfarm-nabi.c, elfarm-oabi.c,
elfcode.h, elflink.h, elfn32-mips.c, elfxx-ia64.c, elfxx-mips.c: Ditto.
* elf-hppa.h (elf_hppa_internal_shdr): Delete. Use Elf_Internal_Shdr
throughout instead.
* elf.c (_bfd_elf_no_info_to_howto_rel): Delete.
* elfcode.h (elf_swap_reloca_in): Pass source operand as a bfd_byte *.
Remove INLINE keyword.
(elf_swap_reloc_in): Likewise. Also clear r_addend.
(elf_swap_reloc_out, elf_swap_reloca_out): Pass destination operand
as a bfd_byte *.
(elf_write_relocs): Consolidate REL and RELA code.
(elf_slurp_reloc_table_from_section): Simplify REL code.
(NAME(_bfd_elf,size_info)): Populate reloc swap entries.
* elf-bfd.h (MAX_INT_RELS_PER_EXT_REL): Define.
* elflink.h (elf_link_read_relocs_from_section): Consolidate REL and
RELA code.
(elf_link_adjust_relocs): Likewise. Don't malloc space for temp
reloc array, use a fixed size of MAX_INT_RELS_PER_EXT_REL.
(elf_link_output_relocs): Likewise.
(elf_reloc_link_order): Likewise.
(elf_finish_pointer_linker_section): Likewise.
(struct elf_link_sort_rela): Remove union.
(elf_link_sort_cmp1): Update to suit.
(elf_link_sort_cmp2): Here too.
(elf_link_sort_relocs): Consolidate REL and RELA code. Fix memory
over-allocation for int_rels_per_ext_rel != 1 case.
* elf32-arm.h: Update all bfd_elf32_swap_reloc_out calls.
* elf32-i386.c: Likewise.
* elf32-cris.c: Likewise for bfd_elf32_swap_reloca_out.
* elf32-hppa.c, elf32-i370.c, elf32-m68k.c, elf32-ppc.c, elf32-s390.c,
elf32-sh.c, elf32-vax.c, elfxx-mips.c: Likewise.
* elf64-alpha.c: Likewise for bfd_elf64_swap_reloca_out.
* elf64-hppa.c, elf64-mips.c, elf64-ppc.c, elf64-s390.c, elf64-sh64.c,
elf64-sparc.c, elf64-x86-64.c: Likewise.
* elfxx-ia64.c: Likewise for bfd_elfNN_swap_reloca_out.
* elfxx-mips.c (sort_dynamic_relocs): Likewise for
bfd_elf32_swap_reloc_in.
* elf32-arm.h: Update elf32_arm_info_to_howto calls.
* elf32-mips.c: Likewise for mips_info_to_howto_rel.
(mips_elf64_swap_reloc_in): Zero r_addend.
(mips_elf64_be_swap_reloc_in): Likewise.
(mips_elf64_slurp_one_reloc_table): Simplify.
* elf64-alpha.c (alpha_elf_size_info): Populate reloc swap entries.
* elf64-hppa.c (hppa64_elf_size_info): Likewise.
* elf64-sparc.c (sparc64_elf_size_info): Likewise.
2002-11-28 12:55:43 +01:00
|
|
|
|
bfd_elf64_swap_reloc_in,
|
|
|
|
|
bfd_elf64_swap_reloc_out,
|
|
|
|
|
bfd_elf64_swap_reloca_in,
|
|
|
|
|
bfd_elf64_swap_reloca_out
|
2000-04-24 10:17:58 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define TARGET_BIG_SYM bfd_elf64_hppa_vec
|
|
|
|
|
#define TARGET_BIG_NAME "elf64-hppa"
|
|
|
|
|
#define ELF_ARCH bfd_arch_hppa
|
|
|
|
|
#define ELF_MACHINE_CODE EM_PARISC
|
|
|
|
|
/* This is not strictly correct. The maximum page size for PA2.0 is
|
|
|
|
|
64M. But everything still uses 4k. */
|
|
|
|
|
#define ELF_MAXPAGESIZE 0x1000
|
|
|
|
|
#define bfd_elf64_bfd_reloc_type_lookup elf_hppa_reloc_type_lookup
|
|
|
|
|
#define bfd_elf64_bfd_is_local_label_name elf_hppa_is_local_label_name
|
|
|
|
|
#define elf_info_to_howto elf_hppa_info_to_howto
|
|
|
|
|
#define elf_info_to_howto_rel elf_hppa_info_to_howto_rel
|
|
|
|
|
|
|
|
|
|
#define elf_backend_section_from_shdr elf64_hppa_section_from_shdr
|
|
|
|
|
#define elf_backend_object_p elf64_hppa_object_p
|
|
|
|
|
#define elf_backend_final_write_processing \
|
|
|
|
|
elf_hppa_final_write_processing
|
2001-08-11 09:59:54 +02:00
|
|
|
|
#define elf_backend_fake_sections elf_hppa_fake_sections
|
2000-04-24 10:17:58 +02:00
|
|
|
|
#define elf_backend_add_symbol_hook elf_hppa_add_symbol_hook
|
|
|
|
|
|
2002-07-23 14:29:33 +02:00
|
|
|
|
#define elf_backend_relocate_section elf_hppa_relocate_section
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
#define bfd_elf64_bfd_final_link elf_hppa_final_link
|
|
|
|
|
|
|
|
|
|
#define elf_backend_create_dynamic_sections \
|
|
|
|
|
elf64_hppa_create_dynamic_sections
|
|
|
|
|
#define elf_backend_post_process_headers elf64_hppa_post_process_headers
|
|
|
|
|
|
|
|
|
|
#define elf_backend_adjust_dynamic_symbol \
|
|
|
|
|
elf64_hppa_adjust_dynamic_symbol
|
|
|
|
|
|
|
|
|
|
#define elf_backend_size_dynamic_sections \
|
|
|
|
|
elf64_hppa_size_dynamic_sections
|
|
|
|
|
|
|
|
|
|
#define elf_backend_finish_dynamic_symbol \
|
|
|
|
|
elf64_hppa_finish_dynamic_symbol
|
|
|
|
|
#define elf_backend_finish_dynamic_sections \
|
|
|
|
|
elf64_hppa_finish_dynamic_sections
|
|
|
|
|
|
|
|
|
|
/* Stuff for the BFD linker: */
|
|
|
|
|
#define bfd_elf64_bfd_link_hash_table_create \
|
|
|
|
|
elf64_hppa_hash_table_create
|
|
|
|
|
|
|
|
|
|
#define elf_backend_check_relocs \
|
|
|
|
|
elf64_hppa_check_relocs
|
|
|
|
|
|
|
|
|
|
#define elf_backend_size_info \
|
|
|
|
|
hppa64_elf_size_info
|
|
|
|
|
|
|
|
|
|
#define elf_backend_additional_program_headers \
|
|
|
|
|
elf64_hppa_additional_program_headers
|
|
|
|
|
|
|
|
|
|
#define elf_backend_modify_segment_map \
|
|
|
|
|
elf64_hppa_modify_segment_map
|
|
|
|
|
|
|
|
|
|
#define elf_backend_link_output_symbol_hook \
|
|
|
|
|
elf64_hppa_link_output_symbol_hook
|
|
|
|
|
|
|
|
|
|
#define elf_backend_want_got_plt 0
|
|
|
|
|
#define elf_backend_plt_readonly 0
|
|
|
|
|
#define elf_backend_want_plt_sym 0
|
|
|
|
|
#define elf_backend_got_header_size 0
|
|
|
|
|
#define elf_backend_plt_header_size 0
|
2002-11-30 09:39:46 +01:00
|
|
|
|
#define elf_backend_type_change_ok TRUE
|
|
|
|
|
#define elf_backend_get_symbol_type elf64_hppa_elf_get_symbol_type
|
|
|
|
|
#define elf_backend_reloc_type_class elf64_hppa_reloc_type_class
|
|
|
|
|
#define elf_backend_rela_normal 1
|
2003-07-25 16:35:56 +02:00
|
|
|
|
#define elf_backend_special_sections elf64_hppa_special_sections
|
2000-04-24 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
#include "elf64-target.h"
|
2001-01-14 12:12:53 +01:00
|
|
|
|
|
|
|
|
|
#undef TARGET_BIG_SYM
|
|
|
|
|
#define TARGET_BIG_SYM bfd_elf64_hppa_linux_vec
|
|
|
|
|
#undef TARGET_BIG_NAME
|
|
|
|
|
#define TARGET_BIG_NAME "elf64-hppa-linux"
|
|
|
|
|
|
2003-07-25 16:35:56 +02:00
|
|
|
|
#undef elf_backend_special_sections
|
|
|
|
|
|
2001-01-14 12:12:53 +01:00
|
|
|
|
#define INCLUDED_TARGET_FILE 1
|
|
|
|
|
#include "elf64-target.h"
|