1999-06-22 14:20:30 +02:00
|
|
|
/* Common code for PA ELF implementations.
|
2002-02-12 12:08:27 +01:00
|
|
|
Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
1999-06-22 14:20:30 +02:00
|
|
|
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
#define ELF_HOWTO_TABLE_SIZE R_PARISC_UNIMPLEMENTED + 1
|
|
|
|
|
1999-09-01 21:42:17 +02:00
|
|
|
/* This file is included by multiple PA ELF BFD backends with different
|
|
|
|
sizes.
|
|
|
|
|
|
|
|
Most of the routines are written to be size independent, but sometimes
|
|
|
|
external constraints require 32 or 64 bit specific code. We remap
|
|
|
|
the definitions/functions as necessary here. */
|
1999-06-22 14:20:30 +02:00
|
|
|
#if ARCH_SIZE == 64
|
|
|
|
#define ELF_R_TYPE(X) ELF64_R_TYPE(X)
|
1999-09-01 21:42:17 +02:00
|
|
|
#define ELF_R_SYM(X) ELF64_R_SYM(X)
|
2000-05-02 02:12:52 +02:00
|
|
|
#define elf_hppa_internal_shdr Elf64_Internal_Shdr
|
2002-02-12 12:08:27 +01:00
|
|
|
#define elf_hppa_reloc_final_type elf64_hppa_reloc_final_type
|
1999-06-22 14:20:30 +02:00
|
|
|
#define _bfd_elf_hppa_gen_reloc_type _bfd_elf64_hppa_gen_reloc_type
|
1999-09-01 21:42:17 +02:00
|
|
|
#define elf_hppa_relocate_section elf64_hppa_relocate_section
|
|
|
|
#define bfd_elf_bfd_final_link bfd_elf64_bfd_final_link
|
|
|
|
#define elf_hppa_final_link elf64_hppa_final_link
|
1999-06-22 14:20:30 +02:00
|
|
|
#endif
|
|
|
|
#if ARCH_SIZE == 32
|
|
|
|
#define ELF_R_TYPE(X) ELF32_R_TYPE(X)
|
1999-09-01 21:42:17 +02:00
|
|
|
#define ELF_R_SYM(X) ELF32_R_SYM(X)
|
2000-05-02 02:12:52 +02:00
|
|
|
#define elf_hppa_internal_shdr Elf32_Internal_Shdr
|
2002-02-12 12:08:27 +01:00
|
|
|
#define elf_hppa_reloc_final_type elf32_hppa_reloc_final_type
|
1999-06-22 14:20:30 +02:00
|
|
|
#define _bfd_elf_hppa_gen_reloc_type _bfd_elf32_hppa_gen_reloc_type
|
1999-09-01 21:42:17 +02:00
|
|
|
#define elf_hppa_relocate_section elf32_hppa_relocate_section
|
|
|
|
#define bfd_elf_bfd_final_link bfd_elf32_bfd_final_link
|
|
|
|
#define elf_hppa_final_link elf32_hppa_final_link
|
1999-06-22 14:20:30 +02:00
|
|
|
#endif
|
|
|
|
|
2000-05-02 02:12:52 +02:00
|
|
|
static void elf_hppa_info_to_howto
|
|
|
|
PARAMS ((bfd *, arelent *, Elf_Internal_Rela *));
|
|
|
|
|
|
|
|
static void elf_hppa_info_to_howto_rel
|
|
|
|
PARAMS ((bfd *, arelent *, Elf_Internal_Rel *));
|
|
|
|
|
|
|
|
static reloc_howto_type * elf_hppa_reloc_type_lookup
|
|
|
|
PARAMS ((bfd *, bfd_reloc_code_real_type));
|
1999-09-01 21:42:17 +02:00
|
|
|
|
2000-05-02 02:12:52 +02:00
|
|
|
static boolean elf_hppa_is_local_label_name
|
|
|
|
PARAMS ((bfd *, const char *));
|
|
|
|
|
|
|
|
static boolean elf_hppa_fake_sections
|
|
|
|
PARAMS ((bfd *abfd, elf_hppa_internal_shdr *, asection *));
|
|
|
|
|
|
|
|
static void elf_hppa_final_write_processing
|
|
|
|
PARAMS ((bfd *, boolean));
|
1999-09-01 21:42:17 +02:00
|
|
|
|
2002-04-08 13:01:43 +02:00
|
|
|
static int hppa_unwind_entry_compare
|
|
|
|
PARAMS ((const PTR, const PTR));
|
|
|
|
|
|
|
|
static boolean elf_hppa_sort_unwind
|
|
|
|
PARAMS ((bfd *));
|
|
|
|
|
2000-09-05 04:23:23 +02:00
|
|
|
#if ARCH_SIZE == 64
|
1999-09-01 21:42:17 +02:00
|
|
|
static boolean elf_hppa_add_symbol_hook
|
1999-09-01 22:06:15 +02:00
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, const Elf_Internal_Sym *,
|
1999-09-01 21:42:17 +02:00
|
|
|
const char **, flagword *, asection **, bfd_vma *));
|
|
|
|
|
1999-09-10 08:38:05 +02:00
|
|
|
static boolean elf_hppa_unmark_useless_dynamic_symbols
|
|
|
|
PARAMS ((struct elf_link_hash_entry *, PTR));
|
|
|
|
|
|
|
|
static boolean elf_hppa_remark_useless_dynamic_symbols
|
|
|
|
PARAMS ((struct elf_link_hash_entry *, PTR));
|
|
|
|
|
2002-03-05 18:55:55 +01:00
|
|
|
static boolean elf_hppa_is_dynamic_loader_symbol
|
|
|
|
PARAMS ((const char *));
|
|
|
|
|
1999-09-14 05:44:43 +02:00
|
|
|
static void elf_hppa_record_segment_addrs
|
|
|
|
PARAMS ((bfd *, asection *, PTR));
|
|
|
|
|
2000-05-02 02:12:52 +02:00
|
|
|
static boolean elf_hppa_final_link
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *));
|
|
|
|
|
|
|
|
static boolean elf_hppa_relocate_section
|
|
|
|
PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *,
|
2002-04-08 13:01:43 +02:00
|
|
|
bfd_byte *, Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
|
2000-05-02 02:12:52 +02:00
|
|
|
|
|
|
|
static bfd_reloc_status_type elf_hppa_final_link_relocate
|
|
|
|
PARAMS ((Elf_Internal_Rela *, bfd *, bfd *, asection *,
|
2002-04-08 13:01:43 +02:00
|
|
|
bfd_byte *, bfd_vma, struct bfd_link_info *,
|
|
|
|
asection *, struct elf_link_hash_entry *,
|
2000-05-02 02:12:52 +02:00
|
|
|
struct elf64_hppa_dyn_hash_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
|
|
|
static int elf_hppa_relocate_insn
|
|
|
|
PARAMS ((int, int, unsigned int));
|
2000-05-02 02:12:52 +02:00
|
|
|
#endif
|
|
|
|
|
1999-06-22 14:20:30 +02:00
|
|
|
/* ELF/PA relocation howto entries. */
|
|
|
|
|
|
|
|
static reloc_howto_type elf_hppa_howto_table[ELF_HOWTO_TABLE_SIZE] =
|
|
|
|
{
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_NONE, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_NONE", false, 0, 0, false },
|
1999-06-22 14:20:30 +02:00
|
|
|
|
|
|
|
/* The values in DIR32 are to placate the check in
|
|
|
|
_bfd_stab_section_find_nearest_line. */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_DIR32, 0, 2, 32, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR32", false, 0, 0xffffffff, false },
|
|
|
|
{ R_PARISC_DIR21L, 0, 0, 21, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR21L", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DIR17R, 0, 0, 17, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR17R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DIR17F, 0, 0, 17, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR17F", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DIR14R, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR14R", false, 0, 0, false },
|
2000-09-27 19:30:19 +02:00
|
|
|
{ R_PARISC_DIR14F, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR14F", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 8 */
|
|
|
|
{ R_PARISC_PCREL12F, 0, 0, 12, true, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL12F", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_PCREL32, 0, 0, 32, true, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL32", false, 0, 0, false },
|
|
|
|
{ R_PARISC_PCREL21L, 0, 0, 21, true, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL21L", false, 0, 0, false },
|
|
|
|
{ R_PARISC_PCREL17R, 0, 0, 17, true, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL17R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_PCREL17F, 0, 0, 17, true, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL17F", false, 0, 0, false },
|
|
|
|
{ R_PARISC_PCREL17C, 0, 0, 17, true, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL17C", false, 0, 0, false },
|
|
|
|
{ R_PARISC_PCREL14R, 0, 0, 14, true, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL14R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_PCREL14F, 0, 0, 14, true, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL14F", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 16 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DPREL21L, 0, 0, 21, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DPREL21L", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DPREL14WR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DPREL14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DPREL14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DPREL14DR", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DPREL14R, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DPREL14R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DPREL14F, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DPREL14F", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 24 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DLTREL21L, 0, 0, 21, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTREL21L", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DLTREL14R, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTREL14R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DLTREL14F, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTREL14F", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 32 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DLTIND21L, 0, 0, 21, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTIND21L", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DLTIND14R, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTIND14R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DLTIND14F, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTIND14F", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 40 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_SETBASE, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_SETBASE", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_SECREL32, 0, 0, 32, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_SECREL32", false, 0, 0, false },
|
|
|
|
{ R_PARISC_BASEREL21L, 0, 0, 21, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_BASEREL21L", false, 0, 0, false },
|
|
|
|
{ R_PARISC_BASEREL17R, 0, 0, 17, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_BASEREL17R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_BASEREL17F, 0, 0, 17, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_BASEREL17F", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_BASEREL14R, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_BASEREL14R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_BASEREL14F, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_BASEREL14F", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 48 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_SEGBASE, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_SEGBASE", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_SEGREL32, 0, 0, 32, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_SEGREL32", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PLTOFF21L, 0, 0, 21, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLTOFF21L", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PLTOFF14R, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLTOFF14R", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PLTOFF14F, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLTOFF14F", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 56 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_FPTR32, 0, 0, 32, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_FPTR32", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_FPTR21L, 0, 0, 21, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_FPTR21L", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_FPTR14R, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_FPTR14R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 64 */
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_FPTR64, 0, 0, 64, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_FPTR64", false, 0, 0, false },
|
|
|
|
{ R_PARISC_PLABEL32, 0, 0, 32, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLABEL32", false, 0, 0, false },
|
|
|
|
{ R_PARISC_PLABEL21L, 0, 0, 21, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLABEL21L", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_PLABEL14R, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLABEL14R", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 72 */
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PCREL64, 0, 0, 64, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL64", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PCREL22C, 0, 0, 22, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL22C", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PCREL22F, 0, 0, 22, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL22F", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PCREL14WR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PCREL14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL14DR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PCREL16F, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL16F", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PCREL16WF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL16WF", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PCREL16DF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PCREL16DF", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 80 */
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DIR64, 0, 0, 64, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR64", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_DIR14WR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DIR14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR14DR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DIR16F, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR16F", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DIR16WF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR16WF", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DIR16DF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DIR16DF", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 88 */
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_GPREL64, 0, 0, 64, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_GPREL64", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DLTREL14WR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTREL14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DLTREL14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTREL14DR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_GPREL16F, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_GPREL16F", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_GPREL16WF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_GPREL16WF", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_GPREL16DF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_GPREL16DF", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 96 */
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF64, 0, 0, 64, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF64", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DLTIND14WR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTIND14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_DLTIND14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_DLTIND14DR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF16F, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF16F", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF16WF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF16DF", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF16DF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF16DF", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 104 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_BASEREL14WR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_BASEREL14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_BASEREL14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_BASEREL14DR", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 112 */
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_SEGREL64, 0, 0, 64, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_SEGREL64", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PLTOFF14WR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLTOFF14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PLTOFF14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLTOFF14DR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PLTOFF16F, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLTOFF16F", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PLTOFF16WF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLTOFF16WF", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_PLTOFF16DF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_PLTOFF16DF", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 120 */
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_FPTR64, 0, 0, 64, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_FPTR14WR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_FPTR14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_FPTR14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_FPTR14DR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_FPTR16F, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_FPTR16F", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_FPTR16WF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_FPTR16WF", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_FPTR16DF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 128 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_COPY, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_COPY", false, 0, 0, false },
|
|
|
|
{ R_PARISC_IPLT, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_IPLT", false, 0, 0, false },
|
|
|
|
{ R_PARISC_EPLT, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_EPLT", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 136 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 144 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
/* 152 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_TPREL32, 0, 0, 32, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_TPREL32", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_TPREL21L, 0, 0, 21, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_TPREL21L", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_TPREL14R, 0, 0, 14, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_TPREL14R", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
/* 160 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_TP21L, 0, 0, 21, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_TP21L", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_TP14R, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_TP14F, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_TP14F", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 168 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 176 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 184 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
/* 192 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 200 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 208 */
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-05-02 02:12:52 +02:00
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 216 */
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_TPREL64, 0, 0, 64, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_TPREL64", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_TPREL14WR, 0, 0, 14, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_TPREL14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_TPREL14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_TPREL14DR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_TPREL16F, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_TPREL16F", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_TPREL16WF, 0, 0, 16, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_TPREL16WF", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_TPREL16DF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_TPREL16DF", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 224 */
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_TP64, 0, 0, 64, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_TP64", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
|
|
|
{ R_PARISC_UNIMPLEMENTED, 0, 0, 0, false, 0, complain_overflow_bitfield,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_UNIMPLEMENTED", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_TP14WR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_TP14WR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_TP14DR, 0, 0, 14, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_TP14DR", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_TP16F, 0, 0, 16, false, 0, complain_overflow_dont,
|
2000-09-05 04:23:23 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_TP16F", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_TP16WF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_TP16WF", false, 0, 0, false },
|
2001-01-14 08:03:49 +01:00
|
|
|
{ R_PARISC_LTOFF_TP16DF, 0, 0, 16, false, 0, complain_overflow_bitfield,
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd_elf_generic_reloc, "R_PARISC_LTOFF_TP16DF", false, 0, 0, false },
|
2000-09-05 04:23:23 +02:00
|
|
|
/* 232 */
|
|
|
|
{ R_PARISC_GNU_VTENTRY, 0, 0, 0, false, 0, complain_overflow_dont,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_GNU_VTENTRY", false, 0, 0, false },
|
|
|
|
{ R_PARISC_GNU_VTINHERIT, 0, 0, 0, false, 0, complain_overflow_dont,
|
|
|
|
bfd_elf_generic_reloc, "R_PARISC_GNU_VTINHERIT", false, 0, 0, false },
|
1999-06-22 14:20:30 +02:00
|
|
|
};
|
|
|
|
|
1999-07-15 04:06:03 +02:00
|
|
|
#define OFFSET_14R_FROM_21L 4
|
|
|
|
#define OFFSET_14F_FROM_21L 5
|
|
|
|
|
2002-02-12 12:08:27 +01:00
|
|
|
/* Return the final relocation type for the given base type, instruction
|
|
|
|
format, and field selector. */
|
1999-06-22 14:20:30 +02:00
|
|
|
|
2002-02-12 12:08:27 +01:00
|
|
|
elf_hppa_reloc_type
|
|
|
|
elf_hppa_reloc_final_type (abfd, base_type, format, field)
|
1999-06-22 14:20:30 +02:00
|
|
|
bfd *abfd;
|
|
|
|
elf_hppa_reloc_type base_type;
|
|
|
|
int format;
|
2000-07-09 09:23:07 +02:00
|
|
|
unsigned int field;
|
1999-06-22 14:20:30 +02:00
|
|
|
{
|
2002-02-12 12:08:27 +01:00
|
|
|
elf_hppa_reloc_type final_type = base_type;
|
1999-06-22 14:20:30 +02:00
|
|
|
|
|
|
|
/* Just a tangle of nested switch statements to deal with the braindamage
|
|
|
|
that a different field selector means a completely different relocation
|
|
|
|
for PA ELF. */
|
|
|
|
switch (base_type)
|
|
|
|
{
|
1999-08-30 23:30:36 +02:00
|
|
|
/* We have been using generic relocation types. However, that may not
|
|
|
|
really make sense. Anyway, we need to support both R_PARISC_DIR64
|
|
|
|
and R_PARISC_DIR32 here. */
|
|
|
|
case R_PARISC_DIR32:
|
|
|
|
case R_PARISC_DIR64:
|
1999-06-22 14:20:30 +02:00
|
|
|
case R_HPPA_ABS_CALL:
|
|
|
|
switch (format)
|
|
|
|
{
|
|
|
|
case 14:
|
|
|
|
switch (field)
|
|
|
|
{
|
2000-09-27 19:30:19 +02:00
|
|
|
case e_fsel:
|
|
|
|
final_type = R_PARISC_DIR14F;
|
|
|
|
break;
|
1999-06-22 14:20:30 +02:00
|
|
|
case e_rsel:
|
|
|
|
case e_rrsel:
|
2000-09-27 19:30:19 +02:00
|
|
|
case e_rdsel:
|
1999-06-22 14:20:30 +02:00
|
|
|
final_type = R_PARISC_DIR14R;
|
|
|
|
break;
|
|
|
|
case e_rtsel:
|
1999-07-06 11:27:18 +02:00
|
|
|
final_type = R_PARISC_DLTIND14R;
|
1999-06-22 14:20:30 +02:00
|
|
|
break;
|
1999-08-05 02:12:22 +02:00
|
|
|
case e_rtpsel:
|
|
|
|
final_type = R_PARISC_LTOFF_FPTR14DR;
|
|
|
|
break;
|
1999-06-22 14:20:30 +02:00
|
|
|
case e_tsel:
|
1999-07-06 11:27:18 +02:00
|
|
|
final_type = R_PARISC_DLTIND14F;
|
1999-06-22 14:20:30 +02:00
|
|
|
break;
|
|
|
|
case e_rpsel:
|
|
|
|
final_type = R_PARISC_PLABEL14R;
|
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 17:
|
|
|
|
switch (field)
|
|
|
|
{
|
|
|
|
case e_fsel:
|
|
|
|
final_type = R_PARISC_DIR17F;
|
|
|
|
break;
|
|
|
|
case e_rsel:
|
|
|
|
case e_rrsel:
|
2000-09-27 19:30:19 +02:00
|
|
|
case e_rdsel:
|
1999-06-22 14:20:30 +02:00
|
|
|
final_type = R_PARISC_DIR17R;
|
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 21:
|
|
|
|
switch (field)
|
|
|
|
{
|
|
|
|
case e_lsel:
|
|
|
|
case e_lrsel:
|
2000-09-27 19:30:19 +02:00
|
|
|
case e_ldsel:
|
2000-07-09 09:23:07 +02:00
|
|
|
case e_nlsel:
|
|
|
|
case e_nlrsel:
|
1999-06-22 14:20:30 +02:00
|
|
|
final_type = R_PARISC_DIR21L;
|
|
|
|
break;
|
|
|
|
case e_ltsel:
|
1999-07-06 11:27:18 +02:00
|
|
|
final_type = R_PARISC_DLTIND21L;
|
1999-06-22 14:20:30 +02:00
|
|
|
break;
|
1999-08-05 02:12:22 +02:00
|
|
|
case e_ltpsel:
|
|
|
|
final_type = R_PARISC_LTOFF_FPTR21L;
|
|
|
|
break;
|
1999-06-22 14:20:30 +02:00
|
|
|
case e_lpsel:
|
|
|
|
final_type = R_PARISC_PLABEL21L;
|
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 32:
|
|
|
|
switch (field)
|
|
|
|
{
|
|
|
|
case e_fsel:
|
|
|
|
final_type = R_PARISC_DIR32;
|
1999-08-10 01:47:04 +02:00
|
|
|
/* When in 64bit mode, a 32bit relocation is supposed to
|
|
|
|
be a section relative relocation. Dwarf2 (for example)
|
|
|
|
uses 32bit section relative relocations. */
|
|
|
|
if (bfd_get_arch_info (abfd)->bits_per_address != 32)
|
2002-04-08 13:01:43 +02:00
|
|
|
final_type = R_PARISC_SECREL32;
|
1999-06-22 14:20:30 +02:00
|
|
|
break;
|
|
|
|
case e_psel:
|
|
|
|
final_type = R_PARISC_PLABEL32;
|
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1999-07-15 04:06:03 +02:00
|
|
|
case 64:
|
|
|
|
switch (field)
|
|
|
|
{
|
|
|
|
case e_fsel:
|
|
|
|
final_type = R_PARISC_DIR64;
|
|
|
|
break;
|
|
|
|
case e_psel:
|
1999-08-05 02:12:22 +02:00
|
|
|
final_type = R_PARISC_FPTR64;
|
|
|
|
break;
|
1999-07-15 04:06:03 +02:00
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-07-15 04:06:03 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1999-06-22 14:20:30 +02:00
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_HPPA_GOTOFF:
|
|
|
|
switch (format)
|
|
|
|
{
|
|
|
|
case 14:
|
|
|
|
switch (field)
|
|
|
|
{
|
|
|
|
case e_rsel:
|
|
|
|
case e_rrsel:
|
2000-09-27 19:30:19 +02:00
|
|
|
case e_rdsel:
|
2000-07-09 09:23:07 +02:00
|
|
|
/* R_PARISC_DLTREL14R for elf64, R_PARISC_DPREL14R for elf32 */
|
1999-07-15 04:06:03 +02:00
|
|
|
final_type = base_type + OFFSET_14R_FROM_21L;
|
1999-06-22 14:20:30 +02:00
|
|
|
break;
|
|
|
|
case e_fsel:
|
2000-07-09 09:23:07 +02:00
|
|
|
/* R_PARISC_DLTREL14F for elf64, R_PARISC_DPREL14F for elf32 */
|
1999-07-15 04:06:03 +02:00
|
|
|
final_type = base_type + OFFSET_14F_FROM_21L;
|
1999-06-22 14:20:30 +02:00
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 21:
|
|
|
|
switch (field)
|
|
|
|
{
|
|
|
|
case e_lsel:
|
2000-07-09 09:23:07 +02:00
|
|
|
case e_lrsel:
|
2000-09-27 19:30:19 +02:00
|
|
|
case e_ldsel:
|
2000-07-09 09:23:07 +02:00
|
|
|
case e_nlsel:
|
|
|
|
case e_nlrsel:
|
|
|
|
/* R_PARISC_DLTREL21L for elf64, R_PARISC_DPREL21L for elf32 */
|
1999-07-15 04:06:03 +02:00
|
|
|
final_type = base_type;
|
1999-06-22 14:20:30 +02:00
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_HPPA_PCREL_CALL:
|
|
|
|
switch (format)
|
|
|
|
{
|
2000-09-05 04:23:23 +02:00
|
|
|
case 12:
|
|
|
|
switch (field)
|
|
|
|
{
|
|
|
|
case e_fsel:
|
|
|
|
final_type = R_PARISC_PCREL12F;
|
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
2000-09-05 04:23:23 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1999-06-22 14:20:30 +02:00
|
|
|
case 14:
|
2000-09-05 04:23:23 +02:00
|
|
|
/* Contrary to appearances, these are not calls of any sort.
|
|
|
|
Rather, they are loads/stores with a pcrel reloc. */
|
1999-06-22 14:20:30 +02:00
|
|
|
switch (field)
|
|
|
|
{
|
|
|
|
case e_rsel:
|
|
|
|
case e_rrsel:
|
2000-09-27 19:30:19 +02:00
|
|
|
case e_rdsel:
|
1999-06-22 14:20:30 +02:00
|
|
|
final_type = R_PARISC_PCREL14R;
|
|
|
|
break;
|
|
|
|
case e_fsel:
|
2002-07-16 04:26:30 +02:00
|
|
|
if (bfd_get_mach (abfd) < 25)
|
|
|
|
final_type = R_PARISC_PCREL14F;
|
|
|
|
else
|
|
|
|
final_type = R_PARISC_PCREL16F;
|
1999-06-22 14:20:30 +02:00
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 17:
|
|
|
|
switch (field)
|
|
|
|
{
|
|
|
|
case e_rsel:
|
|
|
|
case e_rrsel:
|
2000-09-27 19:30:19 +02:00
|
|
|
case e_rdsel:
|
1999-06-22 14:20:30 +02:00
|
|
|
final_type = R_PARISC_PCREL17R;
|
|
|
|
break;
|
|
|
|
case e_fsel:
|
|
|
|
final_type = R_PARISC_PCREL17F;
|
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-07-09 09:23:07 +02:00
|
|
|
case 21:
|
1999-07-01 15:02:50 +02:00
|
|
|
switch (field)
|
|
|
|
{
|
2000-07-09 09:23:07 +02:00
|
|
|
case e_lsel:
|
|
|
|
case e_lrsel:
|
2000-09-27 19:30:19 +02:00
|
|
|
case e_ldsel:
|
2000-07-09 09:23:07 +02:00
|
|
|
case e_nlsel:
|
|
|
|
case e_nlrsel:
|
|
|
|
final_type = R_PARISC_PCREL21L;
|
1999-07-01 15:02:50 +02:00
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-07-01 15:02:50 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-07-09 09:23:07 +02:00
|
|
|
case 22:
|
1999-06-22 14:20:30 +02:00
|
|
|
switch (field)
|
|
|
|
{
|
2000-07-09 09:23:07 +02:00
|
|
|
case e_fsel:
|
|
|
|
final_type = R_PARISC_PCREL22F;
|
1999-06-22 14:20:30 +02:00
|
|
|
break;
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-09-05 04:23:23 +02:00
|
|
|
case R_PARISC_GNU_VTENTRY:
|
|
|
|
case R_PARISC_GNU_VTINHERIT:
|
1999-08-10 20:51:53 +02:00
|
|
|
case R_PARISC_SEGREL32:
|
|
|
|
case R_PARISC_SEGBASE:
|
|
|
|
/* The defaults are fine for these cases. */
|
|
|
|
break;
|
|
|
|
|
1999-06-22 14:20:30 +02:00
|
|
|
default:
|
2002-02-12 12:08:27 +01:00
|
|
|
return R_PARISC_NONE;
|
1999-06-22 14:20:30 +02:00
|
|
|
}
|
|
|
|
|
2002-02-12 12:08:27 +01:00
|
|
|
return final_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return one (or more) BFD relocations which implement the base
|
|
|
|
relocation with modifications based on format and field. */
|
|
|
|
|
|
|
|
elf_hppa_reloc_type **
|
|
|
|
_bfd_elf_hppa_gen_reloc_type (abfd, base_type, format, field, ignore, sym)
|
|
|
|
bfd *abfd;
|
|
|
|
elf_hppa_reloc_type base_type;
|
|
|
|
int format;
|
|
|
|
unsigned int field;
|
|
|
|
int ignore ATTRIBUTE_UNUSED;
|
|
|
|
asymbol *sym ATTRIBUTE_UNUSED;
|
|
|
|
{
|
|
|
|
elf_hppa_reloc_type *finaltype;
|
|
|
|
elf_hppa_reloc_type **final_types;
|
|
|
|
bfd_size_type amt = sizeof (elf_hppa_reloc_type *) * 2;
|
|
|
|
|
|
|
|
/* Allocate slots for the BFD relocation. */
|
|
|
|
final_types = (elf_hppa_reloc_type **) bfd_alloc (abfd, amt);
|
|
|
|
if (final_types == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Allocate space for the relocation itself. */
|
|
|
|
amt = sizeof (elf_hppa_reloc_type);
|
|
|
|
finaltype = (elf_hppa_reloc_type *) bfd_alloc (abfd, amt);
|
|
|
|
if (finaltype == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Some reasonable defaults. */
|
|
|
|
final_types[0] = finaltype;
|
|
|
|
final_types[1] = NULL;
|
|
|
|
|
|
|
|
*finaltype = elf_hppa_reloc_final_type (abfd, base_type, format, field);
|
|
|
|
|
1999-06-22 14:20:30 +02:00
|
|
|
return final_types;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Translate from an elf into field into a howto relocation pointer. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
elf_hppa_info_to_howto (abfd, bfd_reloc, elf_reloc)
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-06-22 14:20:30 +02:00
|
|
|
arelent *bfd_reloc;
|
|
|
|
Elf_Internal_Rela *elf_reloc;
|
|
|
|
{
|
|
|
|
BFD_ASSERT (ELF_R_TYPE(elf_reloc->r_info)
|
|
|
|
< (unsigned int) R_PARISC_UNIMPLEMENTED);
|
|
|
|
bfd_reloc->howto = &elf_hppa_howto_table[ELF_R_TYPE (elf_reloc->r_info)];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Translate from an elf into field into a howto relocation pointer. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
elf_hppa_info_to_howto_rel (abfd, bfd_reloc, elf_reloc)
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-06-22 14:20:30 +02:00
|
|
|
arelent *bfd_reloc;
|
|
|
|
Elf_Internal_Rel *elf_reloc;
|
|
|
|
{
|
|
|
|
BFD_ASSERT (ELF_R_TYPE(elf_reloc->r_info)
|
|
|
|
< (unsigned int) R_PARISC_UNIMPLEMENTED);
|
|
|
|
bfd_reloc->howto = &elf_hppa_howto_table[ELF_R_TYPE (elf_reloc->r_info)];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the address of the howto table entry to perform the CODE
|
|
|
|
relocation for an ARCH machine. */
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
|
|
|
elf_hppa_reloc_type_lookup (abfd, code)
|
2000-05-02 02:12:52 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-06-22 14:20:30 +02:00
|
|
|
bfd_reloc_code_real_type code;
|
|
|
|
{
|
|
|
|
if ((int) code < (int) R_PARISC_UNIMPLEMENTED)
|
|
|
|
{
|
|
|
|
BFD_ASSERT ((int) elf_hppa_howto_table[(int) code].type == (int) code);
|
|
|
|
return &elf_hppa_howto_table[(int) code];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-06-24 22:01:43 +02:00
|
|
|
|
1999-08-10 01:47:04 +02:00
|
|
|
/* Return true if SYM represents a local label symbol. */
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
elf_hppa_is_local_label_name (abfd, name)
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
const char *name;
|
|
|
|
{
|
2000-09-05 04:23:23 +02:00
|
|
|
if (name[0] == 'L' && name[1] == '$')
|
|
|
|
return 1;
|
|
|
|
return _bfd_elf_is_local_label_name (abfd, name);
|
1999-08-10 01:47:04 +02:00
|
|
|
}
|
|
|
|
|
1999-08-11 11:30:20 +02:00
|
|
|
/* Set the correct type for an ELF section. We do this by the
|
|
|
|
section name, which is a hack, but ought to work. */
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
elf_hppa_fake_sections (abfd, hdr, sec)
|
|
|
|
bfd *abfd;
|
2000-05-02 02:12:52 +02:00
|
|
|
elf_hppa_internal_shdr *hdr;
|
1999-08-11 11:30:20 +02:00
|
|
|
asection *sec;
|
|
|
|
{
|
|
|
|
register const char *name;
|
|
|
|
|
|
|
|
name = bfd_get_section_name (abfd, sec);
|
|
|
|
|
|
|
|
if (strcmp (name, ".PARISC.unwind") == 0)
|
|
|
|
{
|
1999-08-21 01:03:04 +02:00
|
|
|
int indx;
|
2000-07-09 09:23:07 +02:00
|
|
|
asection *asec;
|
2000-05-02 02:12:52 +02:00
|
|
|
#if ARCH_SIZE == 64
|
1999-08-11 11:30:20 +02:00
|
|
|
hdr->sh_type = SHT_LOPROC + 1;
|
2000-05-02 02:12:52 +02:00
|
|
|
#else
|
|
|
|
hdr->sh_type = 1;
|
|
|
|
#endif
|
1999-08-11 11:30:20 +02:00
|
|
|
/* ?!? How are unwinds supposed to work for symbols in arbitrary
|
|
|
|
sections? Or what if we have multiple .text sections in a single
|
1999-09-09 14:01:24 +02:00
|
|
|
.o file? HP really messed up on this one.
|
1999-08-11 11:30:20 +02:00
|
|
|
|
1999-08-21 01:03:04 +02:00
|
|
|
Ugh. We can not use elf_section_data (sec)->this_idx at this
|
|
|
|
point because it is not initialized yet.
|
|
|
|
|
|
|
|
So we (gasp) recompute it here. Hopefully nobody ever changes the
|
|
|
|
way sections are numbered in elf.c! */
|
2000-07-09 09:23:07 +02:00
|
|
|
for (asec = abfd->sections, indx = 1; asec; asec = asec->next, indx++)
|
1999-08-21 01:03:04 +02:00
|
|
|
{
|
2000-07-09 09:23:07 +02:00
|
|
|
if (asec->name && strcmp (asec->name, ".text") == 0)
|
1999-08-21 01:03:04 +02:00
|
|
|
{
|
|
|
|
hdr->sh_info = indx;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-09-09 14:01:24 +02:00
|
|
|
|
1999-08-11 11:30:20 +02:00
|
|
|
/* I have no idea if this is really necessary or what it means. */
|
|
|
|
hdr->sh_entsize = 4;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-05-02 02:12:52 +02:00
|
|
|
static void
|
|
|
|
elf_hppa_final_write_processing (abfd, linker)
|
|
|
|
bfd *abfd;
|
2000-07-09 09:23:07 +02:00
|
|
|
boolean linker ATTRIBUTE_UNUSED;
|
2000-05-02 02:12:52 +02:00
|
|
|
{
|
|
|
|
int mach = bfd_get_mach (abfd);
|
|
|
|
|
|
|
|
elf_elfheader (abfd)->e_flags &= ~(EF_PARISC_ARCH | EF_PARISC_TRAPNIL
|
|
|
|
| EF_PARISC_EXT | EF_PARISC_LSB
|
|
|
|
| EF_PARISC_WIDE | EF_PARISC_NO_KABP
|
|
|
|
| EF_PARISC_LAZYSWAP);
|
|
|
|
|
|
|
|
if (mach == 10)
|
|
|
|
elf_elfheader (abfd)->e_flags |= EFA_PARISC_1_0;
|
|
|
|
else if (mach == 11)
|
|
|
|
elf_elfheader (abfd)->e_flags |= EFA_PARISC_1_1;
|
|
|
|
else if (mach == 20)
|
|
|
|
elf_elfheader (abfd)->e_flags |= EFA_PARISC_2_0;
|
|
|
|
else if (mach == 25)
|
|
|
|
elf_elfheader (abfd)->e_flags |= (EF_PARISC_WIDE
|
|
|
|
| EFA_PARISC_2_0
|
|
|
|
/* The GNU tools have trapped without
|
|
|
|
option since 1993, so need to take
|
|
|
|
a step backwards with the ELF
|
|
|
|
based toolchains. */
|
|
|
|
| EF_PARISC_TRAPNIL);
|
|
|
|
}
|
|
|
|
|
2002-04-08 13:01:43 +02:00
|
|
|
/* Comparison function for qsort to sort unwind section during a
|
|
|
|
final link. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
hppa_unwind_entry_compare (a, b)
|
|
|
|
const PTR a;
|
|
|
|
const PTR b;
|
|
|
|
{
|
|
|
|
const bfd_byte *ap, *bp;
|
|
|
|
unsigned long av, bv;
|
|
|
|
|
|
|
|
ap = (const bfd_byte *) a;
|
|
|
|
av = (unsigned long) ap[0] << 24;
|
|
|
|
av |= (unsigned long) ap[1] << 16;
|
|
|
|
av |= (unsigned long) ap[2] << 8;
|
|
|
|
av |= (unsigned long) ap[3];
|
|
|
|
|
|
|
|
bp = (const bfd_byte *) b;
|
|
|
|
bv = (unsigned long) bp[0] << 24;
|
|
|
|
bv |= (unsigned long) bp[1] << 16;
|
|
|
|
bv |= (unsigned long) bp[2] << 8;
|
|
|
|
bv |= (unsigned long) bp[3];
|
|
|
|
|
|
|
|
return av < bv ? -1 : av > bv ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static boolean elf_hppa_sort_unwind (abfd)
|
|
|
|
bfd *abfd;
|
|
|
|
{
|
|
|
|
asection *s;
|
|
|
|
|
|
|
|
/* Magic section names, but this is much safer than having
|
|
|
|
relocate_section remember where SEGREL32 relocs occurred.
|
|
|
|
Consider what happens if someone inept creates a linker script
|
|
|
|
that puts unwind information in .text. */
|
|
|
|
s = bfd_get_section_by_name (abfd, ".PARISC.unwind");
|
|
|
|
if (s != NULL)
|
|
|
|
{
|
|
|
|
bfd_size_type size;
|
|
|
|
char *contents;
|
|
|
|
|
|
|
|
size = s->_raw_size;
|
|
|
|
contents = bfd_malloc (size);
|
|
|
|
if (contents == NULL)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (! bfd_get_section_contents (abfd, s, contents, (file_ptr) 0, size))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
qsort (contents, (size_t) (size / 16), 16, hppa_unwind_entry_compare);
|
|
|
|
|
|
|
|
if (! bfd_set_section_contents (abfd, s, contents, (file_ptr) 0, size))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-09-05 04:23:23 +02:00
|
|
|
#if ARCH_SIZE == 64
|
1999-09-01 21:42:17 +02:00
|
|
|
/* Hook called by the linker routine which adds symbols from an object
|
|
|
|
file. HP's libraries define symbols with HP specific section
|
|
|
|
indices, which we have to handle. */
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
elf_hppa_add_symbol_hook (abfd, info, sym, namep, flagsp, secp, valp)
|
|
|
|
bfd *abfd;
|
|
|
|
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
|
|
|
const Elf_Internal_Sym *sym;
|
|
|
|
const char **namep ATTRIBUTE_UNUSED;
|
|
|
|
flagword *flagsp ATTRIBUTE_UNUSED;
|
|
|
|
asection **secp;
|
|
|
|
bfd_vma *valp;
|
|
|
|
{
|
|
|
|
int index = sym->st_shndx;
|
1999-09-09 14:01:24 +02:00
|
|
|
|
1999-09-01 21:42:17 +02:00
|
|
|
switch (index)
|
|
|
|
{
|
|
|
|
case SHN_PARISC_ANSI_COMMON:
|
|
|
|
*secp = bfd_make_section_old_way (abfd, ".PARISC.ansi.common");
|
|
|
|
(*secp)->flags |= SEC_IS_COMMON;
|
|
|
|
*valp = sym->st_size;
|
|
|
|
break;
|
1999-09-09 14:01:24 +02:00
|
|
|
|
1999-09-01 21:42:17 +02:00
|
|
|
case SHN_PARISC_HUGE_COMMON:
|
|
|
|
*secp = bfd_make_section_old_way (abfd, ".PARISC.huge.common");
|
|
|
|
(*secp)->flags |= SEC_IS_COMMON;
|
|
|
|
*valp = sym->st_size;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
1999-09-10 08:38:05 +02:00
|
|
|
static boolean
|
|
|
|
elf_hppa_unmark_useless_dynamic_symbols (h, data)
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
PTR data;
|
|
|
|
{
|
|
|
|
struct bfd_link_info *info = (struct bfd_link_info *)data;
|
|
|
|
|
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;
|
|
|
|
|
1999-09-10 08:38:05 +02:00
|
|
|
/* If we are not creating a shared library, and this symbol is
|
|
|
|
referenced by a shared library but is not defined anywhere, then
|
|
|
|
the generic code will warn that it is undefined.
|
|
|
|
|
|
|
|
This behavior is undesirable on HPs since the standard shared
|
2000-05-02 02:12:52 +02:00
|
|
|
libraries contain references to undefined symbols.
|
1999-09-10 08:38:05 +02:00
|
|
|
|
|
|
|
So we twiddle the flags associated with such symbols so that they
|
2000-05-02 02:12:52 +02:00
|
|
|
will not trigger the warning. ?!? FIXME. This is horribly fragile.
|
1999-09-10 08:38:05 +02:00
|
|
|
|
|
|
|
Ultimately we should have better controls over the generic ELF BFD
|
|
|
|
linker code. */
|
|
|
|
if (! info->relocateable
|
|
|
|
&& ! (info->shared
|
|
|
|
&& !info->no_undefined)
|
|
|
|
&& h->root.type == bfd_link_hash_undefined
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) != 0
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR) == 0)
|
|
|
|
{
|
|
|
|
h->elf_link_hash_flags &= ~ELF_LINK_HASH_REF_DYNAMIC;
|
|
|
|
h->elf_link_hash_flags |= 0x8000;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
elf_hppa_remark_useless_dynamic_symbols (h, data)
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
PTR data;
|
|
|
|
{
|
|
|
|
struct bfd_link_info *info = (struct bfd_link_info *)data;
|
|
|
|
|
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;
|
|
|
|
|
1999-09-10 08:38:05 +02:00
|
|
|
/* If we are not creating a shared library, and this symbol is
|
|
|
|
referenced by a shared library but is not defined anywhere, then
|
|
|
|
the generic code will warn that it is undefined.
|
|
|
|
|
|
|
|
This behavior is undesirable on HPs since the standard shared
|
|
|
|
libraries contain reerences to undefined symbols.
|
|
|
|
|
|
|
|
So we twiddle the flags associated with such symbols so that they
|
1999-09-13 07:51:32 +02:00
|
|
|
will not trigger the warning. ?!? FIXME. This is horribly fragile.
|
1999-09-10 08:38:05 +02:00
|
|
|
|
|
|
|
Ultimately we should have better controls over the generic ELF BFD
|
|
|
|
linker code. */
|
|
|
|
if (! info->relocateable
|
|
|
|
&& ! (info->shared
|
|
|
|
&& !info->no_undefined)
|
|
|
|
&& h->root.type == bfd_link_hash_undefined
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) == 0
|
|
|
|
&& (h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR) == 0
|
|
|
|
&& (h->elf_link_hash_flags & 0x8000) != 0)
|
|
|
|
{
|
|
|
|
h->elf_link_hash_flags |= ELF_LINK_HASH_REF_DYNAMIC;
|
|
|
|
h->elf_link_hash_flags &= ~0x8000;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-03-05 18:55:55 +01:00
|
|
|
static boolean
|
|
|
|
elf_hppa_is_dynamic_loader_symbol (name)
|
|
|
|
const char * name;
|
|
|
|
{
|
|
|
|
return (! strcmp (name, "__CPU_REVISION")
|
|
|
|
|| ! strcmp (name, "__CPU_KEYBITS_1")
|
|
|
|
|| ! strcmp (name, "__SYSTEM_ID_D")
|
|
|
|
|| ! strcmp (name, "__FPU_MODEL")
|
|
|
|
|| ! strcmp (name, "__FPU_REVISION")
|
|
|
|
|| ! strcmp (name, "__ARGC")
|
|
|
|
|| ! strcmp (name, "__ARGV")
|
|
|
|
|| ! strcmp (name, "__ENVP")
|
|
|
|
|| ! strcmp (name, "__TLS_SIZE_D")
|
|
|
|
|| ! strcmp (name, "__LOAD_INFO")
|
|
|
|
|| ! strcmp (name, "__systab"));
|
|
|
|
}
|
|
|
|
|
1999-09-14 05:44:43 +02:00
|
|
|
/* Record the lowest address for the data and text segments. */
|
|
|
|
static void
|
|
|
|
elf_hppa_record_segment_addrs (abfd, section, data)
|
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
asection *section;
|
|
|
|
PTR data;
|
|
|
|
{
|
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
bfd_vma value;
|
2000-12-03 21:44:04 +01:00
|
|
|
|
1999-09-14 05:44:43 +02:00
|
|
|
hppa_info = (struct elf64_hppa_link_hash_table *)data;
|
|
|
|
|
|
|
|
value = section->vma - section->filepos;
|
|
|
|
|
2000-07-09 09:23:07 +02:00
|
|
|
if (((section->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
|
1999-09-14 05:44:43 +02:00
|
|
|
== (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
|
|
|
|
&& value < hppa_info->text_segment_base)
|
|
|
|
hppa_info->text_segment_base = value;
|
2000-07-09 09:23:07 +02:00
|
|
|
else if (((section->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
|
|
|
|
== (SEC_ALLOC | SEC_LOAD))
|
|
|
|
&& value < hppa_info->data_segment_base)
|
1999-09-14 05:44:43 +02:00
|
|
|
hppa_info->data_segment_base = value;
|
|
|
|
}
|
|
|
|
|
1999-09-01 21:42:17 +02:00
|
|
|
/* Called after we have seen all the input files/sections, but before
|
|
|
|
final symbol resolution and section placement has been determined.
|
|
|
|
|
|
|
|
We use this hook to (possibly) provide a value for __gp, then we
|
|
|
|
fall back to the generic ELF final link routine. */
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
elf_hppa_final_link (abfd, info)
|
|
|
|
bfd *abfd;
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
{
|
1999-09-10 08:38:05 +02:00
|
|
|
boolean retval;
|
2000-07-09 09:23:07 +02:00
|
|
|
struct elf64_hppa_link_hash_table *hppa_info = elf64_hppa_hash_table (info);
|
1999-09-10 08:38:05 +02:00
|
|
|
|
1999-09-15 10:51:45 +02:00
|
|
|
if (! info->relocateable)
|
1999-09-01 21:42:17 +02:00
|
|
|
{
|
|
|
|
struct elf_link_hash_entry *gp;
|
1999-09-15 10:51:45 +02:00
|
|
|
bfd_vma gp_val;
|
1999-09-16 22:39:10 +02:00
|
|
|
|
|
|
|
/* The linker script defines a value for __gp iff it was referenced
|
|
|
|
by one of the objects being linked. First try to find the symbol
|
|
|
|
in the hash table. If that fails, just compute the value __gp
|
|
|
|
should have had. */
|
1999-09-15 10:51:45 +02:00
|
|
|
gp = elf_link_hash_lookup (elf_hash_table (info), "__gp", false,
|
|
|
|
false, false);
|
1999-09-01 21:42:17 +02:00
|
|
|
|
1999-09-16 22:39:10 +02:00
|
|
|
if (gp)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Adjust the value of __gp as we may want to slide it into the
|
|
|
|
.plt section so that the stubs can access PLT entries without
|
|
|
|
using an addil sequence. */
|
2000-07-09 09:23:07 +02:00
|
|
|
gp->root.u.def.value += hppa_info->gp_offset;
|
1999-09-16 22:39:10 +02:00
|
|
|
|
|
|
|
gp_val = (gp->root.u.def.section->output_section->vma
|
|
|
|
+ gp->root.u.def.section->output_offset
|
|
|
|
+ gp->root.u.def.value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
asection *sec;
|
|
|
|
|
|
|
|
/* First look for a .plt section. If found, then __gp is the
|
|
|
|
address of the .plt + gp_offset.
|
|
|
|
|
|
|
|
If no .plt is found, then look for .dlt, .opd and .data (in
|
2002-06-16 17:32:08 +02:00
|
|
|
that order) and set __gp to the base address of whichever
|
|
|
|
section is found first. */
|
1999-09-16 22:39:10 +02:00
|
|
|
|
|
|
|
sec = hppa_info->plt_sec;
|
2002-06-16 17:32:08 +02:00
|
|
|
if (sec && ! (sec->flags & SEC_EXCLUDE))
|
1999-09-16 22:39:10 +02:00
|
|
|
gp_val = (sec->output_offset
|
|
|
|
+ sec->output_section->vma
|
|
|
|
+ hppa_info->gp_offset);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sec = hppa_info->dlt_sec;
|
2002-06-16 17:32:08 +02:00
|
|
|
if (!sec || (sec->flags & SEC_EXCLUDE))
|
1999-09-16 22:39:10 +02:00
|
|
|
sec = hppa_info->opd_sec;
|
2002-06-16 17:32:08 +02:00
|
|
|
if (!sec || (sec->flags & SEC_EXCLUDE))
|
1999-09-16 22:39:10 +02:00
|
|
|
sec = bfd_get_section_by_name (abfd, ".data");
|
2002-06-16 17:32:08 +02:00
|
|
|
if (!sec || (sec->flags & SEC_EXCLUDE))
|
1999-09-16 22:39:10 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
gp_val = sec->output_offset + sec->output_section->vma;
|
|
|
|
}
|
|
|
|
}
|
1999-09-01 21:42:17 +02:00
|
|
|
|
1999-09-16 22:39:10 +02:00
|
|
|
/* Install whatever value we found/computed for __gp. */
|
1999-09-01 21:42:17 +02:00
|
|
|
_bfd_set_gp_value (abfd, gp_val);
|
|
|
|
}
|
|
|
|
|
1999-09-14 05:44:43 +02:00
|
|
|
/* We need to know the base of the text and data segments so that we
|
2000-07-09 09:23:07 +02:00
|
|
|
can perform SEGREL relocations. We will record the base addresses
|
1999-09-14 05:44:43 +02:00
|
|
|
when we encounter the first SEGREL relocation. */
|
2000-07-09 09:23:07 +02:00
|
|
|
hppa_info->text_segment_base = (bfd_vma)-1;
|
|
|
|
hppa_info->data_segment_base = (bfd_vma)-1;
|
1999-09-14 05:44:43 +02:00
|
|
|
|
1999-09-10 08:38:05 +02:00
|
|
|
/* HP's shared libraries have references to symbols that are not
|
|
|
|
defined anywhere. The generic ELF BFD linker code will complaim
|
|
|
|
about such symbols.
|
|
|
|
|
|
|
|
So we detect the losing case and arrange for the flags on the symbol
|
|
|
|
to indicate that it was never referenced. This keeps the generic
|
|
|
|
ELF BFD link code happy and appears to not create any secondary
|
|
|
|
problems. Ultimately we need a way to control the behavior of the
|
|
|
|
generic ELF BFD link code better. */
|
|
|
|
elf_link_hash_traverse (elf_hash_table (info),
|
|
|
|
elf_hppa_unmark_useless_dynamic_symbols,
|
|
|
|
info);
|
|
|
|
|
1999-09-01 21:42:17 +02:00
|
|
|
/* Invoke the regular ELF backend linker to do all the work. */
|
1999-09-10 08:38:05 +02:00
|
|
|
retval = bfd_elf_bfd_final_link (abfd, info);
|
|
|
|
|
|
|
|
elf_link_hash_traverse (elf_hash_table (info),
|
|
|
|
elf_hppa_remark_useless_dynamic_symbols,
|
|
|
|
info);
|
|
|
|
|
2002-04-08 13:01:43 +02:00
|
|
|
/* If we're producing a final executable, sort the contents of the
|
|
|
|
unwind section. */
|
|
|
|
if (retval)
|
|
|
|
retval = elf_hppa_sort_unwind (abfd);
|
|
|
|
|
1999-09-10 08:38:05 +02:00
|
|
|
return retval;
|
1999-09-01 21:42:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Relocate an HPPA ELF section. */
|
|
|
|
|
|
|
|
static boolean
|
|
|
|
elf_hppa_relocate_section (output_bfd, info, input_bfd, input_section,
|
|
|
|
contents, relocs, local_syms, local_sections)
|
|
|
|
bfd *output_bfd;
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
bfd *input_bfd;
|
|
|
|
asection *input_section;
|
|
|
|
bfd_byte *contents;
|
|
|
|
Elf_Internal_Rela *relocs;
|
|
|
|
Elf_Internal_Sym *local_syms;
|
|
|
|
asection **local_sections;
|
|
|
|
{
|
|
|
|
Elf_Internal_Shdr *symtab_hdr;
|
|
|
|
Elf_Internal_Rela *rel;
|
|
|
|
Elf_Internal_Rela *relend;
|
2002-07-23 14:29:33 +02:00
|
|
|
struct elf64_hppa_link_hash_table *hppa_info;
|
|
|
|
|
|
|
|
if (info->relocateable)
|
|
|
|
return true;
|
1999-09-01 21:42:17 +02:00
|
|
|
|
2002-07-23 14:29:33 +02:00
|
|
|
hppa_info = elf64_hppa_hash_table (info);
|
1999-09-01 21:42:17 +02:00
|
|
|
symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
|
|
|
|
|
|
|
|
rel = relocs;
|
|
|
|
relend = relocs + input_section->reloc_count;
|
|
|
|
for (; rel < relend; rel++)
|
|
|
|
{
|
|
|
|
int r_type;
|
1999-09-14 04:03:58 +02:00
|
|
|
reloc_howto_type *howto = elf_hppa_howto_table + ELF_R_TYPE (rel->r_info);
|
1999-09-01 21:42:17 +02:00
|
|
|
unsigned long r_symndx;
|
|
|
|
struct elf_link_hash_entry *h;
|
|
|
|
Elf_Internal_Sym *sym;
|
|
|
|
asection *sym_sec;
|
|
|
|
bfd_vma relocation;
|
|
|
|
bfd_reloc_status_type r;
|
|
|
|
const char *sym_name;
|
2000-07-09 09:23:07 +02:00
|
|
|
const char *dyn_name;
|
1999-09-09 14:01:24 +02:00
|
|
|
char *dynh_buf = NULL;
|
|
|
|
size_t dynh_buflen = 0;
|
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h = NULL;
|
1999-09-01 21:42:17 +02:00
|
|
|
|
|
|
|
r_type = ELF_R_TYPE (rel->r_info);
|
|
|
|
if (r_type < 0 || r_type >= (int) R_PARISC_UNIMPLEMENTED)
|
|
|
|
{
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is a final link. */
|
2002-07-23 14:29:33 +02:00
|
|
|
r_symndx = ELF_R_SYM (rel->r_info);
|
1999-09-01 21:42:17 +02:00
|
|
|
h = NULL;
|
|
|
|
sym = NULL;
|
|
|
|
sym_sec = NULL;
|
|
|
|
if (r_symndx < symtab_hdr->sh_info)
|
|
|
|
{
|
1999-09-09 14:01:24 +02:00
|
|
|
/* This is a local symbol. */
|
1999-09-01 21:42:17 +02:00
|
|
|
sym = local_syms + r_symndx;
|
|
|
|
sym_sec = local_sections[r_symndx];
|
2001-11-23 13:17:21 +01:00
|
|
|
relocation = _bfd_elf_rela_local_sym (output_bfd, sym, sym_sec, rel);
|
1999-09-09 14:01:24 +02:00
|
|
|
|
|
|
|
/* If this symbol has an entry in the PA64 dynamic hash
|
|
|
|
table, then get it. */
|
2000-07-12 07:03:01 +02:00
|
|
|
dyn_name = get_dyn_name (input_section, h, rel,
|
1999-09-09 14:01:24 +02:00
|
|
|
&dynh_buf, &dynh_buflen);
|
|
|
|
dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
|
|
|
|
dyn_name, false, false);
|
|
|
|
|
1999-09-01 21:42:17 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-09-09 14:01:24 +02:00
|
|
|
/* This is not a local symbol. */
|
1999-09-01 21:42:17 +02:00
|
|
|
long indx;
|
|
|
|
|
|
|
|
indx = r_symndx - symtab_hdr->sh_info;
|
|
|
|
h = elf_sym_hashes (input_bfd)[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;
|
|
|
|
if (h->root.type == bfd_link_hash_defined
|
|
|
|
|| h->root.type == bfd_link_hash_defweak)
|
|
|
|
{
|
|
|
|
sym_sec = h->root.u.def.section;
|
1999-09-09 14:01:24 +02:00
|
|
|
|
|
|
|
/* If this symbol has an entry in the PA64 dynamic hash
|
|
|
|
table, then get it. */
|
2000-07-12 07:03:01 +02:00
|
|
|
dyn_name = get_dyn_name (input_section, h, rel,
|
1999-09-09 14:01:24 +02:00
|
|
|
&dynh_buf, &dynh_buflen);
|
|
|
|
dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
|
|
|
|
dyn_name, false, false);
|
|
|
|
|
|
|
|
/* If we have a relocation against a symbol defined in a
|
|
|
|
shared library and we have not created an entry in the
|
|
|
|
PA64 dynamic symbol hash table for it, then we lose. */
|
|
|
|
if (sym_sec->output_section == NULL && dyn_h == NULL)
|
|
|
|
{
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
(_("%s: warning: unresolvable relocation against symbol `%s' from %s section"),
|
2001-09-21 01:30:37 +02:00
|
|
|
bfd_archive_filename (input_bfd), h->root.root.string,
|
1999-09-09 14:01:24 +02:00
|
|
|
bfd_get_section_name (input_bfd, input_section));
|
|
|
|
relocation = 0;
|
|
|
|
}
|
|
|
|
else if (sym_sec->output_section)
|
|
|
|
relocation = (h->root.u.def.value
|
|
|
|
+ sym_sec->output_offset
|
|
|
|
+ sym_sec->output_section->vma);
|
|
|
|
/* Value will be provided via one of the offsets in the
|
|
|
|
dyn_h hash table entry. */
|
|
|
|
else
|
|
|
|
relocation = 0;
|
1999-09-01 21:42:17 +02:00
|
|
|
}
|
1999-09-16 18:51:34 +02:00
|
|
|
/* Allow undefined symbols in shared libraries. */
|
2002-04-08 13:01:43 +02:00
|
|
|
else if (info->shared && !info->no_undefined
|
2000-05-23 16:05:50 +02:00
|
|
|
&& ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
|
1999-09-16 18:51:34 +02:00
|
|
|
{
|
2000-03-01 20:40:54 +01:00
|
|
|
if (info->symbolic)
|
|
|
|
(*info->callbacks->undefined_symbol)
|
|
|
|
(info, h->root.root.string, input_bfd,
|
|
|
|
input_section, rel->r_offset, false);
|
|
|
|
|
1999-09-16 18:51:34 +02:00
|
|
|
/* If this symbol has an entry in the PA64 dynamic hash
|
|
|
|
table, then get it. */
|
2000-07-12 07:03:01 +02:00
|
|
|
dyn_name = get_dyn_name (input_section, h, rel,
|
1999-09-16 18:51:34 +02:00
|
|
|
&dynh_buf, &dynh_buflen);
|
|
|
|
dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
|
|
|
|
dyn_name, false, false);
|
|
|
|
|
|
|
|
if (dyn_h == NULL)
|
|
|
|
{
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
(_("%s: warning: unresolvable relocation against symbol `%s' from %s section"),
|
2001-09-21 01:30:37 +02:00
|
|
|
bfd_archive_filename (input_bfd), h->root.root.string,
|
1999-09-16 18:51:34 +02:00
|
|
|
bfd_get_section_name (input_bfd, input_section));
|
|
|
|
relocation = 0;
|
|
|
|
}
|
|
|
|
relocation = 0;
|
|
|
|
}
|
1999-09-01 21:42:17 +02:00
|
|
|
else if (h->root.type == bfd_link_hash_undefweak)
|
|
|
|
relocation = 0;
|
|
|
|
else
|
|
|
|
{
|
2002-03-05 18:55:55 +01:00
|
|
|
/* Ignore dynamic loader defined symbols. */
|
|
|
|
if (elf_hppa_is_dynamic_loader_symbol (h->root.root.string))
|
|
|
|
relocation = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!((*info->callbacks->undefined_symbol)
|
|
|
|
(info, h->root.root.string, input_bfd,
|
|
|
|
input_section, rel->r_offset, true)))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
1999-09-01 21:42:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (h != NULL)
|
|
|
|
sym_name = h->root.root.string;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sym_name = bfd_elf_string_from_elf_section (input_bfd,
|
|
|
|
symtab_hdr->sh_link,
|
|
|
|
sym->st_name);
|
|
|
|
if (sym_name == NULL)
|
|
|
|
return false;
|
|
|
|
if (*sym_name == '\0')
|
|
|
|
sym_name = bfd_section_name (input_bfd, sym_sec);
|
|
|
|
}
|
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
r = elf_hppa_final_link_relocate (rel, input_bfd, output_bfd,
|
1999-09-01 21:42:17 +02:00
|
|
|
input_section, contents,
|
1999-09-09 14:01:24 +02:00
|
|
|
relocation, info, sym_sec,
|
|
|
|
h, dyn_h);
|
1999-09-01 21:42:17 +02:00
|
|
|
|
|
|
|
if (r != bfd_reloc_ok)
|
|
|
|
{
|
|
|
|
switch (r)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
case bfd_reloc_overflow:
|
|
|
|
{
|
|
|
|
if (!((*info->callbacks->reloc_overflow)
|
|
|
|
(info, sym_name, howto->name, (bfd_vma) 0,
|
|
|
|
input_bfd, input_section, rel->r_offset)))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* Compute the value for a relocation (REL) during a final link stage,
|
2000-12-03 21:44:04 +01:00
|
|
|
then insert the value into the proper location in CONTENTS.
|
1999-09-09 14:01:24 +02:00
|
|
|
|
|
|
|
VALUE is a tentative value for the relocation and may be overridden
|
|
|
|
and modified here based on the specific relocation to be performed.
|
|
|
|
|
|
|
|
For example we do conversions for PC-relative branches in this routine
|
2000-12-03 21:44:04 +01:00
|
|
|
or redirection of calls to external routines to stubs.
|
1999-09-09 14:01:24 +02:00
|
|
|
|
|
|
|
The work of actually applying the relocation is left to a helper
|
|
|
|
routine in an attempt to reduce the complexity and size of this
|
|
|
|
function. */
|
1999-09-01 21:42:17 +02:00
|
|
|
|
|
|
|
static bfd_reloc_status_type
|
1999-09-09 14:01:24 +02:00
|
|
|
elf_hppa_final_link_relocate (rel, input_bfd, output_bfd,
|
|
|
|
input_section, contents, value,
|
|
|
|
info, sym_sec, h, dyn_h)
|
|
|
|
Elf_Internal_Rela *rel;
|
1999-09-01 21:42:17 +02:00
|
|
|
bfd *input_bfd;
|
1999-09-09 14:01:24 +02:00
|
|
|
bfd *output_bfd;
|
1999-09-01 21:42:17 +02:00
|
|
|
asection *input_section;
|
|
|
|
bfd_byte *contents;
|
|
|
|
bfd_vma value;
|
|
|
|
struct bfd_link_info *info;
|
|
|
|
asection *sym_sec;
|
2000-07-09 09:23:07 +02:00
|
|
|
struct elf_link_hash_entry *h ATTRIBUTE_UNUSED;
|
1999-09-09 14:01:24 +02:00
|
|
|
struct elf64_hppa_dyn_hash_entry *dyn_h;
|
1999-09-01 21:42:17 +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
|
|
|
int insn;
|
1999-09-09 14:01:24 +02:00
|
|
|
bfd_vma offset = rel->r_offset;
|
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_signed_vma addend = rel->r_addend;
|
1999-09-09 14:01:24 +02:00
|
|
|
reloc_howto_type *howto = elf_hppa_howto_table + ELF_R_TYPE (rel->r_info);
|
2000-05-02 02:12:52 +02:00
|
|
|
unsigned int r_type = howto->type;
|
1999-09-01 21:42:17 +02:00
|
|
|
bfd_byte *hit_data = contents + offset;
|
1999-09-09 14:01:24 +02:00
|
|
|
struct elf64_hppa_link_hash_table *hppa_info = elf64_hppa_hash_table (info);
|
1999-09-01 21:42:17 +02:00
|
|
|
|
|
|
|
insn = bfd_get_32 (input_bfd, hit_data);
|
|
|
|
|
|
|
|
switch (r_type)
|
|
|
|
{
|
|
|
|
case R_PARISC_NONE:
|
|
|
|
break;
|
|
|
|
|
2002-07-16 04:26:30 +02:00
|
|
|
/* Basic function call support.
|
2000-05-02 02:12:52 +02:00
|
|
|
|
|
|
|
Note for a call to a function defined in another dynamic library
|
|
|
|
we want to redirect the call to a stub. */
|
|
|
|
|
1999-09-09 15:32:38 +02:00
|
|
|
/* Random PC relative relocs. */
|
1999-09-09 15:55:46 +02:00
|
|
|
case R_PARISC_PCREL21L:
|
|
|
|
case R_PARISC_PCREL14R:
|
|
|
|
case R_PARISC_PCREL14F:
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_PCREL14WR:
|
|
|
|
case R_PARISC_PCREL14DR:
|
|
|
|
case R_PARISC_PCREL16F:
|
|
|
|
case R_PARISC_PCREL16WF:
|
|
|
|
case R_PARISC_PCREL16DF:
|
|
|
|
{
|
|
|
|
/* If this is a call to a function defined in another dynamic
|
|
|
|
library, then redirect the call to the local stub for this
|
|
|
|
function. */
|
1999-09-16 18:51:34 +02:00
|
|
|
if (sym_sec == NULL || sym_sec->output_section == NULL)
|
|
|
|
value = (dyn_h->stub_offset + hppa_info->stub_sec->output_offset
|
|
|
|
+ hppa_info->stub_sec->output_section->vma);
|
2000-12-03 21:44:04 +01:00
|
|
|
|
1999-09-09 15:32:38 +02:00
|
|
|
/* Turn VALUE into a proper PC relative address. */
|
|
|
|
value -= (offset + input_section->output_offset
|
|
|
|
+ input_section->output_section->vma);
|
|
|
|
|
|
|
|
/* Adjust for any field selectors. */
|
2000-05-02 02:12:52 +02:00
|
|
|
if (r_type == R_PARISC_PCREL21L)
|
|
|
|
value = hppa_field_adjust (value, -8 + addend, e_lsel);
|
|
|
|
else if (r_type == R_PARISC_PCREL14F
|
|
|
|
|| r_type == R_PARISC_PCREL16F
|
|
|
|
|| r_type == R_PARISC_PCREL16WF
|
|
|
|
|| r_type == R_PARISC_PCREL16DF)
|
|
|
|
value = hppa_field_adjust (value, -8 + addend, e_fsel);
|
|
|
|
else
|
|
|
|
value = hppa_field_adjust (value, -8 + addend, e_rsel);
|
1999-09-09 15:32:38 +02:00
|
|
|
|
|
|
|
/* Apply the relocation to the given instruction. */
|
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 = elf_hppa_relocate_insn (insn, (int) value, r_type);
|
1999-09-09 15:32:38 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-09-05 04:23:23 +02:00
|
|
|
case R_PARISC_PCREL12F:
|
1999-09-01 21:42:17 +02:00
|
|
|
case R_PARISC_PCREL22F:
|
|
|
|
case R_PARISC_PCREL17F:
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_PCREL22C:
|
|
|
|
case R_PARISC_PCREL17C:
|
|
|
|
case R_PARISC_PCREL17R:
|
1999-09-01 21:42:17 +02:00
|
|
|
{
|
1999-09-09 14:01:24 +02:00
|
|
|
/* If this is a call to a function defined in another dynamic
|
|
|
|
library, then redirect the call to the local stub for this
|
|
|
|
function. */
|
1999-09-16 18:51:34 +02:00
|
|
|
if (sym_sec == NULL || sym_sec->output_section == NULL)
|
1999-09-10 16:05:36 +02:00
|
|
|
value = (dyn_h->stub_offset + hppa_info->stub_sec->output_offset
|
|
|
|
+ hppa_info->stub_sec->output_section->vma);
|
2000-12-03 21:44:04 +01:00
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* Turn VALUE into a proper PC relative address. */
|
|
|
|
value -= (offset + input_section->output_offset
|
|
|
|
+ input_section->output_section->vma);
|
|
|
|
|
|
|
|
/* Adjust for any field selectors. */
|
2000-05-31 11:00:00 +02:00
|
|
|
if (r_type == R_PARISC_PCREL17R)
|
|
|
|
value = hppa_field_adjust (value, -8 + addend, e_rsel);
|
|
|
|
else
|
|
|
|
value = hppa_field_adjust (value, -8 + addend, e_fsel);
|
1999-09-01 21:42:17 +02:00
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* All branches are implicitly shifted by 2 places. */
|
|
|
|
value >>= 2;
|
1999-09-01 21:42:17 +02:00
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* Apply the relocation to the given instruction. */
|
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 = elf_hppa_relocate_insn (insn, (int) value, r_type);
|
1999-09-01 21:42:17 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* Indirect references to data through the DLT. */
|
|
|
|
case R_PARISC_DLTIND14R:
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_DLTIND14F:
|
1999-09-09 14:01:24 +02:00
|
|
|
case R_PARISC_DLTIND14DR:
|
|
|
|
case R_PARISC_DLTIND14WR:
|
|
|
|
case R_PARISC_DLTIND21L:
|
1999-09-09 15:01:11 +02:00
|
|
|
case R_PARISC_LTOFF_FPTR14R:
|
|
|
|
case R_PARISC_LTOFF_FPTR14DR:
|
|
|
|
case R_PARISC_LTOFF_FPTR14WR:
|
|
|
|
case R_PARISC_LTOFF_FPTR21L:
|
|
|
|
case R_PARISC_LTOFF_FPTR16F:
|
|
|
|
case R_PARISC_LTOFF_FPTR16WF:
|
|
|
|
case R_PARISC_LTOFF_FPTR16DF:
|
1999-09-09 15:55:46 +02:00
|
|
|
case R_PARISC_LTOFF_TP21L:
|
|
|
|
case R_PARISC_LTOFF_TP14R:
|
|
|
|
case R_PARISC_LTOFF_TP14F:
|
|
|
|
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:
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_LTOFF16F:
|
|
|
|
case R_PARISC_LTOFF16WF:
|
|
|
|
case R_PARISC_LTOFF16DF:
|
1999-09-08 02:09:52 +02:00
|
|
|
{
|
1999-09-10 16:05:36 +02:00
|
|
|
/* If this relocation was against a local symbol, then we still
|
2000-07-09 09:23:07 +02:00
|
|
|
have not set up the DLT entry (it's not convenient to do so
|
1999-09-10 16:05:36 +02:00
|
|
|
in the "finalize_dlt" routine because it is difficult to get
|
|
|
|
to the local symbol's value).
|
|
|
|
|
|
|
|
So, if this is a local symbol (h == NULL), then we need to
|
2000-12-03 21:44:04 +01:00
|
|
|
fill in its DLT entry.
|
1999-09-10 17:46:37 +02:00
|
|
|
|
|
|
|
Similarly we may still need to set up an entry in .opd for
|
|
|
|
a local function which had its address taken. */
|
1999-09-10 16:05:36 +02:00
|
|
|
if (dyn_h->h == NULL)
|
|
|
|
{
|
2002-03-05 18:55:55 +01:00
|
|
|
/* Now do .opd creation if needed. */
|
1999-09-10 17:46:37 +02:00
|
|
|
if (r_type == R_PARISC_LTOFF_FPTR14R
|
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR14DR
|
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR14WR
|
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR21L
|
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR16F
|
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR16WF
|
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR16DF)
|
|
|
|
{
|
|
|
|
/* The first two words of an .opd entry are zero. */
|
|
|
|
memset (hppa_info->opd_sec->contents + dyn_h->opd_offset,
|
|
|
|
0, 16);
|
|
|
|
|
|
|
|
/* The next word is the address of the function. */
|
2002-03-05 18:55:55 +01:00
|
|
|
bfd_put_64 (hppa_info->opd_sec->owner, value + addend,
|
1999-09-10 17:46:37 +02:00
|
|
|
(hppa_info->opd_sec->contents
|
|
|
|
+ dyn_h->opd_offset + 16));
|
|
|
|
|
|
|
|
/* The last word is our local __gp value. */
|
|
|
|
value = _bfd_get_gp_value
|
|
|
|
(hppa_info->opd_sec->output_section->owner);
|
|
|
|
bfd_put_64 (hppa_info->opd_sec->owner, value,
|
|
|
|
(hppa_info->opd_sec->contents
|
|
|
|
+ dyn_h->opd_offset + 24));
|
2002-03-05 18:55:55 +01:00
|
|
|
|
|
|
|
/* The DLT value is the address of the .opd entry. */
|
|
|
|
value = (dyn_h->opd_offset
|
|
|
|
+ hppa_info->opd_sec->output_offset
|
|
|
|
+ hppa_info->opd_sec->output_section->vma);
|
|
|
|
addend = 0;
|
1999-09-10 17:46:37 +02:00
|
|
|
}
|
2002-03-05 18:55:55 +01:00
|
|
|
|
|
|
|
bfd_put_64 (hppa_info->dlt_sec->owner,
|
|
|
|
value + addend,
|
|
|
|
hppa_info->dlt_sec->contents + dyn_h->dlt_offset);
|
1999-09-10 16:05:36 +02:00
|
|
|
}
|
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* We want the value of the DLT offset for this symbol, not
|
1999-09-15 10:51:45 +02:00
|
|
|
the symbol's actual address. Note that __gp may not point
|
|
|
|
to the start of the DLT, so we have to compute the absolute
|
|
|
|
address, then subtract out the value of __gp. */
|
|
|
|
value = (dyn_h->dlt_offset
|
|
|
|
+ hppa_info->dlt_sec->output_offset
|
|
|
|
+ hppa_info->dlt_sec->output_section->vma);
|
|
|
|
value -= _bfd_get_gp_value (output_bfd);
|
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* All DLTIND relocations are basically the same at this point,
|
|
|
|
except that we need different field selectors for the 21bit
|
|
|
|
version vs the 14bit versions. */
|
1999-09-09 15:01:11 +02:00
|
|
|
if (r_type == R_PARISC_DLTIND21L
|
1999-09-09 15:55:46 +02:00
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR21L
|
|
|
|
|| r_type == R_PARISC_LTOFF_TP21L)
|
2002-03-05 18:55:55 +01:00
|
|
|
value = hppa_field_adjust (value, 0, e_lsel);
|
1999-09-09 15:32:38 +02:00
|
|
|
else if (r_type == R_PARISC_DLTIND14F
|
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR16F
|
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR16WF
|
1999-09-09 15:55:46 +02:00
|
|
|
|| r_type == R_PARISC_LTOFF_FPTR16DF
|
1999-09-09 16:51:33 +02:00
|
|
|
|| r_type == R_PARISC_LTOFF16F
|
|
|
|
|| r_type == R_PARISC_LTOFF16DF
|
|
|
|
|| r_type == R_PARISC_LTOFF16WF
|
1999-09-09 15:55:46 +02:00
|
|
|
|| r_type == R_PARISC_LTOFF_TP16F
|
|
|
|
|| r_type == R_PARISC_LTOFF_TP16WF
|
|
|
|
|| r_type == R_PARISC_LTOFF_TP16DF)
|
2002-03-05 18:55:55 +01:00
|
|
|
value = hppa_field_adjust (value, 0, e_fsel);
|
1999-09-09 14:01:24 +02:00
|
|
|
else
|
2002-03-05 18:55:55 +01:00
|
|
|
value = hppa_field_adjust (value, 0, e_rsel);
|
1999-09-09 14:01:24 +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
|
|
|
insn = elf_hppa_relocate_insn (insn, (int) value, r_type);
|
1999-09-08 02:09:52 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
case R_PARISC_DLTREL14R:
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_DLTREL14F:
|
1999-09-09 14:01:24 +02:00
|
|
|
case R_PARISC_DLTREL14DR:
|
|
|
|
case R_PARISC_DLTREL14WR:
|
1999-09-08 02:09:52 +02:00
|
|
|
case R_PARISC_DLTREL21L:
|
1999-09-09 16:10:24 +02:00
|
|
|
case R_PARISC_DPREL21L:
|
|
|
|
case R_PARISC_DPREL14WR:
|
|
|
|
case R_PARISC_DPREL14DR:
|
|
|
|
case R_PARISC_DPREL14R:
|
|
|
|
case R_PARISC_DPREL14F:
|
|
|
|
case R_PARISC_GPREL16F:
|
|
|
|
case R_PARISC_GPREL16WF:
|
|
|
|
case R_PARISC_GPREL16DF:
|
1999-09-08 02:09:52 +02:00
|
|
|
{
|
1999-09-09 14:01:24 +02:00
|
|
|
/* Subtract out the global pointer value to make value a DLT
|
|
|
|
relative address. */
|
|
|
|
value -= _bfd_get_gp_value (output_bfd);
|
|
|
|
|
|
|
|
/* All DLTREL relocations are basically the same at this point,
|
|
|
|
except that we need different field selectors for the 21bit
|
|
|
|
version vs the 14bit versions. */
|
1999-09-09 16:10:24 +02:00
|
|
|
if (r_type == R_PARISC_DLTREL21L
|
|
|
|
|| r_type == R_PARISC_DPREL21L)
|
1999-09-09 14:01:24 +02:00
|
|
|
value = hppa_field_adjust (value, addend, e_lrsel);
|
1999-09-09 16:10:24 +02:00
|
|
|
else if (r_type == R_PARISC_DLTREL14F
|
|
|
|
|| r_type == R_PARISC_DPREL14F
|
|
|
|
|| r_type == R_PARISC_GPREL16F
|
|
|
|
|| r_type == R_PARISC_GPREL16WF
|
|
|
|
|| r_type == R_PARISC_GPREL16DF)
|
1999-09-09 15:32:38 +02:00
|
|
|
value = hppa_field_adjust (value, addend, e_fsel);
|
1999-09-09 14:01:24 +02:00
|
|
|
else
|
|
|
|
value = hppa_field_adjust (value, addend, e_rrsel);
|
|
|
|
|
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 = elf_hppa_relocate_insn (insn, (int) value, r_type);
|
1999-09-08 02:09:52 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_DIR21L:
|
|
|
|
case R_PARISC_DIR17R:
|
|
|
|
case R_PARISC_DIR17F:
|
|
|
|
case R_PARISC_DIR14R:
|
2000-09-27 19:30:19 +02:00
|
|
|
case R_PARISC_DIR14F:
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_DIR14WR:
|
|
|
|
case R_PARISC_DIR14DR:
|
|
|
|
case R_PARISC_DIR16F:
|
|
|
|
case R_PARISC_DIR16WF:
|
|
|
|
case R_PARISC_DIR16DF:
|
|
|
|
{
|
|
|
|
/* All DIR relocations are basically the same at this point,
|
2000-05-31 11:00:00 +02:00
|
|
|
except that branch offsets need to be divided by four, and
|
|
|
|
we need different field selectors. Note that we don't
|
|
|
|
redirect absolute calls to local stubs. */
|
2000-05-02 02:12:52 +02:00
|
|
|
|
1999-09-09 16:51:33 +02:00
|
|
|
if (r_type == R_PARISC_DIR21L)
|
|
|
|
value = hppa_field_adjust (value, addend, e_lrsel);
|
|
|
|
else if (r_type == R_PARISC_DIR17F
|
|
|
|
|| r_type == R_PARISC_DIR16F
|
|
|
|
|| r_type == R_PARISC_DIR16WF
|
2000-09-27 19:30:19 +02:00
|
|
|
|| r_type == R_PARISC_DIR16DF
|
|
|
|
|| r_type == R_PARISC_DIR14F)
|
1999-09-09 16:51:33 +02:00
|
|
|
value = hppa_field_adjust (value, addend, e_fsel);
|
|
|
|
else
|
|
|
|
value = hppa_field_adjust (value, addend, e_rrsel);
|
|
|
|
|
2000-05-31 11:00:00 +02:00
|
|
|
if (r_type == R_PARISC_DIR17R || r_type == R_PARISC_DIR17F)
|
|
|
|
{
|
|
|
|
/* All branches are implicitly shifted by 2 places. */
|
|
|
|
value >>= 2;
|
|
|
|
}
|
|
|
|
|
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 = elf_hppa_relocate_insn (insn, (int) value, r_type);
|
1999-09-09 16:51:33 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-09-09 16:20:18 +02:00
|
|
|
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:
|
|
|
|
{
|
|
|
|
/* We want the value of the PLT offset for this symbol, not
|
1999-09-15 10:51:45 +02:00
|
|
|
the symbol's actual address. Note that __gp may not point
|
|
|
|
to the start of the DLT, so we have to compute the absolute
|
|
|
|
address, then subtract out the value of __gp. */
|
|
|
|
value = (dyn_h->plt_offset
|
|
|
|
+ hppa_info->plt_sec->output_offset
|
|
|
|
+ hppa_info->plt_sec->output_section->vma);
|
|
|
|
value -= _bfd_get_gp_value (output_bfd);
|
1999-09-09 16:20:18 +02:00
|
|
|
|
|
|
|
/* All PLTOFF relocations are basically the same at this point,
|
|
|
|
except that we need different field selectors for the 21bit
|
|
|
|
version vs the 14bit versions. */
|
|
|
|
if (r_type == R_PARISC_PLTOFF21L)
|
|
|
|
value = hppa_field_adjust (value, addend, e_lrsel);
|
|
|
|
else if (r_type == R_PARISC_PLTOFF14F
|
|
|
|
|| r_type == R_PARISC_PLTOFF16F
|
|
|
|
|| r_type == R_PARISC_PLTOFF16WF
|
|
|
|
|| r_type == R_PARISC_PLTOFF16DF)
|
|
|
|
value = hppa_field_adjust (value, addend, e_fsel);
|
|
|
|
else
|
|
|
|
value = hppa_field_adjust (value, addend, e_rrsel);
|
|
|
|
|
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 = elf_hppa_relocate_insn (insn, (int) value, r_type);
|
1999-09-09 16:20:18 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-09-09 15:01:11 +02:00
|
|
|
case R_PARISC_LTOFF_FPTR32:
|
|
|
|
{
|
1999-09-10 17:46:37 +02:00
|
|
|
/* We may still need to create the FPTR itself if it was for
|
|
|
|
a local symbol. */
|
|
|
|
if (dyn_h->h == NULL)
|
|
|
|
{
|
|
|
|
/* The first two words of an .opd entry are zero. */
|
|
|
|
memset (hppa_info->opd_sec->contents + dyn_h->opd_offset, 0, 16);
|
|
|
|
|
|
|
|
/* The next word is the address of the function. */
|
2002-03-05 18:55:55 +01:00
|
|
|
bfd_put_64 (hppa_info->opd_sec->owner, value + addend,
|
1999-09-10 17:46:37 +02:00
|
|
|
(hppa_info->opd_sec->contents
|
|
|
|
+ dyn_h->opd_offset + 16));
|
|
|
|
|
|
|
|
/* The last word is our local __gp value. */
|
|
|
|
value = _bfd_get_gp_value
|
|
|
|
(hppa_info->opd_sec->output_section->owner);
|
|
|
|
bfd_put_64 (hppa_info->opd_sec->owner, value,
|
|
|
|
hppa_info->opd_sec->contents + dyn_h->opd_offset + 24);
|
2002-03-05 18:55:55 +01:00
|
|
|
|
|
|
|
/* The DLT value is the address of the .opd entry. */
|
|
|
|
value = (dyn_h->opd_offset
|
|
|
|
+ hppa_info->opd_sec->output_offset
|
|
|
|
+ hppa_info->opd_sec->output_section->vma);
|
|
|
|
|
|
|
|
bfd_put_64 (hppa_info->dlt_sec->owner,
|
|
|
|
value,
|
|
|
|
hppa_info->dlt_sec->contents + dyn_h->dlt_offset);
|
1999-09-10 17:46:37 +02:00
|
|
|
}
|
|
|
|
|
1999-09-09 15:01:11 +02:00
|
|
|
/* We want the value of the DLT offset for this symbol, not
|
1999-09-15 10:51:45 +02:00
|
|
|
the symbol's actual address. Note that __gp may not point
|
|
|
|
to the start of the DLT, so we have to compute the absolute
|
|
|
|
address, then subtract out the value of __gp. */
|
|
|
|
value = (dyn_h->dlt_offset
|
|
|
|
+ hppa_info->dlt_sec->output_offset
|
|
|
|
+ hppa_info->dlt_sec->output_section->vma);
|
|
|
|
value -= _bfd_get_gp_value (output_bfd);
|
1999-09-09 15:01:11 +02:00
|
|
|
bfd_put_32 (input_bfd, value, hit_data);
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
case R_PARISC_LTOFF_FPTR64:
|
1999-09-09 15:55:46 +02:00
|
|
|
case R_PARISC_LTOFF_TP64:
|
1999-09-09 15:01:11 +02:00
|
|
|
{
|
1999-09-10 17:46:37 +02:00
|
|
|
/* We may still need to create the FPTR itself if it was for
|
|
|
|
a local symbol. */
|
|
|
|
if (dyn_h->h == NULL && r_type == R_PARISC_LTOFF_FPTR64)
|
|
|
|
{
|
|
|
|
/* The first two words of an .opd entry are zero. */
|
|
|
|
memset (hppa_info->opd_sec->contents + dyn_h->opd_offset, 0, 16);
|
|
|
|
|
|
|
|
/* The next word is the address of the function. */
|
2002-03-05 18:55:55 +01:00
|
|
|
bfd_put_64 (hppa_info->opd_sec->owner, value + addend,
|
1999-09-10 17:46:37 +02:00
|
|
|
(hppa_info->opd_sec->contents
|
|
|
|
+ dyn_h->opd_offset + 16));
|
|
|
|
|
|
|
|
/* The last word is our local __gp value. */
|
|
|
|
value = _bfd_get_gp_value
|
|
|
|
(hppa_info->opd_sec->output_section->owner);
|
|
|
|
bfd_put_64 (hppa_info->opd_sec->owner, value,
|
|
|
|
hppa_info->opd_sec->contents + dyn_h->opd_offset + 24);
|
2002-03-05 18:55:55 +01:00
|
|
|
|
|
|
|
/* The DLT value is the address of the .opd entry. */
|
|
|
|
value = (dyn_h->opd_offset
|
|
|
|
+ hppa_info->opd_sec->output_offset
|
|
|
|
+ hppa_info->opd_sec->output_section->vma);
|
|
|
|
|
|
|
|
bfd_put_64 (hppa_info->dlt_sec->owner,
|
|
|
|
value,
|
|
|
|
hppa_info->dlt_sec->contents + dyn_h->dlt_offset);
|
1999-09-10 17:46:37 +02:00
|
|
|
}
|
|
|
|
|
1999-09-09 15:01:11 +02:00
|
|
|
/* We want the value of the DLT offset for this symbol, not
|
1999-09-15 10:51:45 +02:00
|
|
|
the symbol's actual address. Note that __gp may not point
|
|
|
|
to the start of the DLT, so we have to compute the absolute
|
|
|
|
address, then subtract out the value of __gp. */
|
|
|
|
value = (dyn_h->dlt_offset
|
|
|
|
+ hppa_info->dlt_sec->output_offset
|
|
|
|
+ hppa_info->dlt_sec->output_section->vma);
|
|
|
|
value -= _bfd_get_gp_value (output_bfd);
|
1999-09-09 15:01:11 +02:00
|
|
|
bfd_put_64 (input_bfd, value, hit_data);
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
case R_PARISC_DIR32:
|
1999-09-09 15:32:38 +02:00
|
|
|
bfd_put_32 (input_bfd, value + addend, hit_data);
|
1999-09-09 15:01:11 +02:00
|
|
|
return bfd_reloc_ok;
|
|
|
|
|
|
|
|
case R_PARISC_DIR64:
|
1999-09-09 15:32:38 +02:00
|
|
|
bfd_put_64 (input_bfd, value + addend, hit_data);
|
1999-09-09 15:01:11 +02:00
|
|
|
return bfd_reloc_ok;
|
|
|
|
|
1999-09-09 16:10:24 +02:00
|
|
|
case R_PARISC_GPREL64:
|
|
|
|
/* Subtract out the global pointer value to make value a DLT
|
|
|
|
relative address. */
|
|
|
|
value -= _bfd_get_gp_value (output_bfd);
|
|
|
|
|
|
|
|
bfd_put_64 (input_bfd, value + addend, hit_data);
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_LTOFF64:
|
1999-09-15 10:51:45 +02:00
|
|
|
/* We want the value of the DLT offset for this symbol, not
|
|
|
|
the symbol's actual address. Note that __gp may not point
|
|
|
|
to the start of the DLT, so we have to compute the absolute
|
|
|
|
address, then subtract out the value of __gp. */
|
|
|
|
value = (dyn_h->dlt_offset
|
|
|
|
+ hppa_info->dlt_sec->output_offset
|
|
|
|
+ hppa_info->dlt_sec->output_section->vma);
|
|
|
|
value -= _bfd_get_gp_value (output_bfd);
|
1999-09-09 16:51:33 +02:00
|
|
|
|
|
|
|
bfd_put_64 (input_bfd, value + addend, hit_data);
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_PCREL32:
|
|
|
|
{
|
|
|
|
/* If this is a call to a function defined in another dynamic
|
|
|
|
library, then redirect the call to the local stub for this
|
|
|
|
function. */
|
1999-09-16 18:51:34 +02:00
|
|
|
if (sym_sec == NULL || sym_sec->output_section == NULL)
|
|
|
|
value = (dyn_h->stub_offset + hppa_info->stub_sec->output_offset
|
|
|
|
+ hppa_info->stub_sec->output_section->vma);
|
2000-12-03 21:44:04 +01:00
|
|
|
|
1999-09-09 15:32:38 +02:00
|
|
|
/* Turn VALUE into a proper PC relative address. */
|
|
|
|
value -= (offset + input_section->output_offset
|
|
|
|
+ input_section->output_section->vma);
|
|
|
|
|
1999-09-09 15:55:46 +02:00
|
|
|
value += addend;
|
1999-09-09 15:32:38 +02:00
|
|
|
value -= 8;
|
2000-07-09 09:23:07 +02:00
|
|
|
bfd_put_32 (input_bfd, value, hit_data);
|
1999-09-09 15:32:38 +02:00
|
|
|
return bfd_reloc_ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
case R_PARISC_PCREL64:
|
|
|
|
{
|
|
|
|
/* If this is a call to a function defined in another dynamic
|
|
|
|
library, then redirect the call to the local stub for this
|
|
|
|
function. */
|
1999-09-16 18:51:34 +02:00
|
|
|
if (sym_sec == NULL || sym_sec->output_section == NULL)
|
|
|
|
value = (dyn_h->stub_offset + hppa_info->stub_sec->output_offset
|
|
|
|
+ hppa_info->stub_sec->output_section->vma);
|
2000-12-03 21:44:04 +01:00
|
|
|
|
1999-09-09 15:32:38 +02:00
|
|
|
/* Turn VALUE into a proper PC relative address. */
|
|
|
|
value -= (offset + input_section->output_offset
|
|
|
|
+ input_section->output_section->vma);
|
|
|
|
|
1999-09-09 15:55:46 +02:00
|
|
|
value += addend;
|
1999-09-09 15:32:38 +02:00
|
|
|
value -= 8;
|
|
|
|
bfd_put_64 (input_bfd, value, hit_data);
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
}
|
|
|
|
|
1999-09-09 15:01:11 +02:00
|
|
|
case R_PARISC_FPTR64:
|
1999-09-10 17:46:37 +02:00
|
|
|
{
|
|
|
|
/* We may still need to create the FPTR itself if it was for
|
|
|
|
a local symbol. */
|
|
|
|
if (dyn_h->h == NULL)
|
|
|
|
{
|
|
|
|
/* The first two words of an .opd entry are zero. */
|
|
|
|
memset (hppa_info->opd_sec->contents + dyn_h->opd_offset, 0, 16);
|
|
|
|
|
|
|
|
/* The next word is the address of the function. */
|
2002-03-05 18:55:55 +01:00
|
|
|
bfd_put_64 (hppa_info->opd_sec->owner, value + addend,
|
1999-09-10 17:46:37 +02:00
|
|
|
(hppa_info->opd_sec->contents
|
|
|
|
+ dyn_h->opd_offset + 16));
|
|
|
|
|
|
|
|
/* The last word is our local __gp value. */
|
|
|
|
value = _bfd_get_gp_value
|
|
|
|
(hppa_info->opd_sec->output_section->owner);
|
|
|
|
bfd_put_64 (hppa_info->opd_sec->owner, value,
|
|
|
|
hppa_info->opd_sec->contents + dyn_h->opd_offset + 24);
|
|
|
|
}
|
|
|
|
|
2002-06-16 17:32:08 +02:00
|
|
|
if (dyn_h->want_opd)
|
|
|
|
/* We want the value of the OPD offset for this symbol. */
|
|
|
|
value = (dyn_h->opd_offset
|
|
|
|
+ hppa_info->opd_sec->output_offset
|
|
|
|
+ hppa_info->opd_sec->output_section->vma);
|
|
|
|
else
|
|
|
|
/* We want the address of the symbol. */
|
|
|
|
value += addend;
|
2000-12-03 21:44:04 +01:00
|
|
|
|
2002-03-05 18:55:55 +01:00
|
|
|
bfd_put_64 (input_bfd, value, hit_data);
|
1999-09-10 17:46:37 +02:00
|
|
|
return bfd_reloc_ok;
|
|
|
|
}
|
1999-09-09 15:01:11 +02:00
|
|
|
|
1999-09-13 07:51:32 +02:00
|
|
|
case R_PARISC_SECREL32:
|
|
|
|
bfd_put_32 (input_bfd,
|
2000-07-09 09:23:07 +02:00
|
|
|
value + addend - sym_sec->output_section->vma,
|
1999-09-13 07:51:32 +02:00
|
|
|
hit_data);
|
|
|
|
return bfd_reloc_ok;
|
|
|
|
|
|
|
|
case R_PARISC_SEGREL32:
|
1999-09-14 05:44:43 +02:00
|
|
|
case R_PARISC_SEGREL64:
|
|
|
|
{
|
|
|
|
/* If this is the first SEGREL relocation, then initialize
|
|
|
|
the segment base values. */
|
|
|
|
if (hppa_info->text_segment_base == (bfd_vma) -1)
|
|
|
|
bfd_map_over_sections (output_bfd, elf_hppa_record_segment_addrs,
|
2000-07-09 09:23:07 +02:00
|
|
|
hppa_info);
|
1999-09-14 05:44:43 +02:00
|
|
|
|
|
|
|
/* VALUE holds the absolute address. We want to include the
|
|
|
|
addend, then turn it into a segment relative address.
|
|
|
|
|
|
|
|
The segment is derived from SYM_SEC. We assume that there are
|
|
|
|
only two segments of note in the resulting executable/shlib.
|
|
|
|
A readonly segment (.text) and a readwrite segment (.data). */
|
|
|
|
value += addend;
|
|
|
|
|
|
|
|
if (sym_sec->flags & SEC_CODE)
|
|
|
|
value -= hppa_info->text_segment_base;
|
|
|
|
else
|
|
|
|
value -= hppa_info->data_segment_base;
|
|
|
|
|
|
|
|
if (r_type == R_PARISC_SEGREL32)
|
|
|
|
bfd_put_32 (input_bfd, value, hit_data);
|
|
|
|
else
|
|
|
|
bfd_put_64 (input_bfd, value, hit_data);
|
2002-04-08 13:01:43 +02:00
|
|
|
return bfd_reloc_ok;
|
1999-09-14 05:44:43 +02:00
|
|
|
}
|
1999-09-13 07:51:32 +02:00
|
|
|
|
1999-09-01 21:42:17 +02:00
|
|
|
/* Something we don't know how to handle. */
|
|
|
|
default:
|
1999-09-13 07:51:32 +02:00
|
|
|
return bfd_reloc_notsupported;
|
1999-09-01 21:42:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update the instruction word. */
|
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 (input_bfd, (bfd_vma) insn, hit_data);
|
2000-07-09 09:23:07 +02:00
|
|
|
return bfd_reloc_ok;
|
1999-09-01 21:42:17 +02:00
|
|
|
}
|
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* Relocate the given INSN. VALUE should be the actual value we want
|
|
|
|
to insert into the instruction, ie by this point we should not be
|
|
|
|
concerned with computing an offset relative to the DLT, PC, etc.
|
|
|
|
Instead this routine is meant to handle the bit manipulations needed
|
|
|
|
to insert the relocation into the given instruction. */
|
1999-09-01 21:42:17 +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
|
|
|
static int
|
1999-09-09 14:01:24 +02:00
|
|
|
elf_hppa_relocate_insn (insn, sym_value, r_type)
|
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
|
|
|
int insn;
|
|
|
|
int sym_value;
|
2000-05-02 02:12:52 +02:00
|
|
|
unsigned int r_type;
|
1999-09-01 21:42:17 +02:00
|
|
|
{
|
1999-09-08 02:09:52 +02:00
|
|
|
switch (r_type)
|
1999-09-01 21:42:17 +02:00
|
|
|
{
|
2000-09-05 04:23:23 +02:00
|
|
|
/* This is any 22 bit branch. In PA2.0 syntax it corresponds to
|
1999-09-09 14:01:24 +02:00
|
|
|
the "B" instruction. */
|
1999-09-08 02:09:52 +02:00
|
|
|
case R_PARISC_PCREL22F:
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_PCREL22C:
|
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
|
|
|
return (insn & ~0x3ff1ffd) | re_assemble_22 (sym_value);
|
1999-09-01 21:42:17 +02:00
|
|
|
|
2000-09-05 04:23:23 +02:00
|
|
|
/* This is any 12 bit branch. */
|
|
|
|
case R_PARISC_PCREL12F:
|
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
|
|
|
return (insn & ~0x1ffd) | re_assemble_12 (sym_value);
|
2000-09-05 04:23:23 +02:00
|
|
|
|
|
|
|
/* This is any 17 bit branch. In PA2.0 syntax it also corresponds
|
|
|
|
to the "B" instruction as well as BE. */
|
1999-09-09 14:01:24 +02:00
|
|
|
case R_PARISC_PCREL17F:
|
1999-09-08 02:09:52 +02:00
|
|
|
case R_PARISC_DIR17F:
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_DIR17R:
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_PCREL17C:
|
|
|
|
case R_PARISC_PCREL17R:
|
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
|
|
|
return (insn & ~0x1f1ffd) | re_assemble_17 (sym_value);
|
1999-09-01 21:42:17 +02:00
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* ADDIL or LDIL instructions. */
|
1999-09-08 02:09:52 +02:00
|
|
|
case R_PARISC_DLTREL21L:
|
1999-09-09 14:01:24 +02:00
|
|
|
case R_PARISC_DLTIND21L:
|
1999-09-09 15:01:11 +02:00
|
|
|
case R_PARISC_LTOFF_FPTR21L:
|
1999-09-09 15:55:46 +02:00
|
|
|
case R_PARISC_PCREL21L:
|
|
|
|
case R_PARISC_LTOFF_TP21L:
|
1999-09-09 16:10:24 +02:00
|
|
|
case R_PARISC_DPREL21L:
|
1999-09-09 16:20:18 +02:00
|
|
|
case R_PARISC_PLTOFF21L:
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_DIR21L:
|
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
|
|
|
return (insn & ~0x1fffff) | re_assemble_21 (sym_value);
|
1999-09-09 14:01:24 +02:00
|
|
|
|
2000-09-05 04:23:23 +02:00
|
|
|
/* LDO and integer loads/stores with 14 bit displacements. */
|
1999-09-08 02:09:52 +02:00
|
|
|
case R_PARISC_DLTREL14R:
|
1999-09-08 03:00:12 +02:00
|
|
|
case R_PARISC_DLTREL14F:
|
1999-09-09 14:01:24 +02:00
|
|
|
case R_PARISC_DLTIND14R:
|
|
|
|
case R_PARISC_DLTIND14F:
|
1999-09-09 15:01:11 +02:00
|
|
|
case R_PARISC_LTOFF_FPTR14R:
|
1999-09-09 15:55:46 +02:00
|
|
|
case R_PARISC_PCREL14R:
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_PCREL14F:
|
1999-09-09 15:55:46 +02:00
|
|
|
case R_PARISC_LTOFF_TP14R:
|
|
|
|
case R_PARISC_LTOFF_TP14F:
|
1999-09-09 16:10:24 +02:00
|
|
|
case R_PARISC_DPREL14R:
|
|
|
|
case R_PARISC_DPREL14F:
|
1999-09-09 16:20:18 +02:00
|
|
|
case R_PARISC_PLTOFF14R:
|
|
|
|
case R_PARISC_PLTOFF14F:
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_DIR14R:
|
2000-09-27 19:30:19 +02:00
|
|
|
case R_PARISC_DIR14F:
|
2002-07-16 04:26:30 +02:00
|
|
|
return (insn & ~0x3fff) | low_sign_unext (sym_value, 14);
|
|
|
|
|
|
|
|
/* PA2.0W LDO and integer loads/stores with 16 bit displacements. */
|
|
|
|
case R_PARISC_LTOFF_FPTR16F:
|
|
|
|
case R_PARISC_PCREL16F:
|
|
|
|
case R_PARISC_LTOFF_TP16F:
|
|
|
|
case R_PARISC_GPREL16F:
|
|
|
|
case R_PARISC_PLTOFF16F:
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_DIR16F:
|
|
|
|
case R_PARISC_LTOFF16F:
|
2002-07-16 04:26:30 +02:00
|
|
|
return (insn & ~0xffff) | re_assemble_16 (sym_value);
|
1999-09-09 14:01:24 +02:00
|
|
|
|
2000-09-05 04:23:23 +02:00
|
|
|
/* Doubleword loads and stores with a 14 bit displacement. */
|
1999-09-08 02:50:50 +02:00
|
|
|
case R_PARISC_DLTREL14DR:
|
1999-09-09 14:01:24 +02:00
|
|
|
case R_PARISC_DLTIND14DR:
|
1999-09-09 15:01:11 +02:00
|
|
|
case R_PARISC_LTOFF_FPTR14DR:
|
|
|
|
case R_PARISC_LTOFF_FPTR16DF:
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_PCREL14DR:
|
|
|
|
case R_PARISC_PCREL16DF:
|
1999-09-09 15:55:46 +02:00
|
|
|
case R_PARISC_LTOFF_TP14DR:
|
|
|
|
case R_PARISC_LTOFF_TP16DF:
|
1999-09-09 16:10:24 +02:00
|
|
|
case R_PARISC_DPREL14DR:
|
|
|
|
case R_PARISC_GPREL16DF:
|
1999-09-09 16:20:18 +02:00
|
|
|
case R_PARISC_PLTOFF14DR:
|
|
|
|
case R_PARISC_PLTOFF16DF:
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_DIR14DR:
|
|
|
|
case R_PARISC_DIR16DF:
|
|
|
|
case R_PARISC_LTOFF16DF:
|
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
|
|
|
return (insn & ~0x3ff1) | (((sym_value & 0x2000) >> 13)
|
|
|
|
| ((sym_value & 0x1ff8) << 1));
|
1999-09-08 02:50:50 +02:00
|
|
|
|
1999-09-09 14:01:24 +02:00
|
|
|
/* Floating point single word load/store instructions. */
|
1999-09-08 02:50:50 +02:00
|
|
|
case R_PARISC_DLTREL14WR:
|
1999-09-09 14:01:24 +02:00
|
|
|
case R_PARISC_DLTIND14WR:
|
1999-09-09 15:01:11 +02:00
|
|
|
case R_PARISC_LTOFF_FPTR14WR:
|
|
|
|
case R_PARISC_LTOFF_FPTR16WF:
|
1999-09-09 15:32:38 +02:00
|
|
|
case R_PARISC_PCREL14WR:
|
|
|
|
case R_PARISC_PCREL16WF:
|
1999-09-09 15:55:46 +02:00
|
|
|
case R_PARISC_LTOFF_TP14WR:
|
|
|
|
case R_PARISC_LTOFF_TP16WF:
|
1999-09-09 16:10:24 +02:00
|
|
|
case R_PARISC_DPREL14WR:
|
|
|
|
case R_PARISC_GPREL16WF:
|
1999-09-09 16:20:18 +02:00
|
|
|
case R_PARISC_PLTOFF14WR:
|
|
|
|
case R_PARISC_PLTOFF16WF:
|
1999-09-09 16:51:33 +02:00
|
|
|
case R_PARISC_DIR16WF:
|
|
|
|
case R_PARISC_DIR14WR:
|
|
|
|
case R_PARISC_LTOFF16WF:
|
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
|
|
|
return (insn & ~0x3ff9) | (((sym_value & 0x2000) >> 13)
|
|
|
|
| ((sym_value & 0x1ffc) << 1));
|
1999-09-09 14:01:24 +02:00
|
|
|
|
1999-09-01 21:42:17 +02:00
|
|
|
default:
|
|
|
|
return insn;
|
|
|
|
}
|
|
|
|
}
|
2000-05-02 02:12:52 +02:00
|
|
|
#endif
|