Home | History | Annotate | Line # | Download | only in bfd
elf32-ppc.c revision 1.1
      1  1.1  christos /* PowerPC-specific support for 32-bit ELF
      2  1.1  christos    Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
      3  1.1  christos    2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
      4  1.1  christos    Free Software Foundation, Inc.
      5  1.1  christos    Written by Ian Lance Taylor, Cygnus Support.
      6  1.1  christos 
      7  1.1  christos    This file is part of BFD, the Binary File Descriptor library.
      8  1.1  christos 
      9  1.1  christos    This program is free software; you can redistribute it and/or modify
     10  1.1  christos    it under the terms of the GNU General Public License as published by
     11  1.1  christos    the Free Software Foundation; either version 3 of the License, or
     12  1.1  christos    (at your option) any later version.
     13  1.1  christos 
     14  1.1  christos    This program is distributed in the hope that it will be useful,
     15  1.1  christos    but WITHOUT ANY WARRANTY; without even the implied warranty of
     16  1.1  christos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     17  1.1  christos    GNU General Public License for more details.
     18  1.1  christos 
     19  1.1  christos    You should have received a copy of the GNU General Public License
     20  1.1  christos    along with this program; if not, write to the
     21  1.1  christos    Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
     22  1.1  christos    Boston, MA 02110-1301, USA.  */
     23  1.1  christos 
     24  1.1  christos 
     25  1.1  christos /* This file is based on a preliminary PowerPC ELF ABI.  The
     26  1.1  christos    information may not match the final PowerPC ELF ABI.  It includes
     27  1.1  christos    suggestions from the in-progress Embedded PowerPC ABI, and that
     28  1.1  christos    information may also not match.  */
     29  1.1  christos 
     30  1.1  christos #include "sysdep.h"
     31  1.1  christos #include <stdarg.h>
     32  1.1  christos #include "bfd.h"
     33  1.1  christos #include "bfdlink.h"
     34  1.1  christos #include "libbfd.h"
     35  1.1  christos #include "elf-bfd.h"
     36  1.1  christos #include "elf/ppc.h"
     37  1.1  christos #include "elf32-ppc.h"
     38  1.1  christos #include "elf-vxworks.h"
     39  1.1  christos #include "dwarf2.h"
     40  1.1  christos 
     41  1.1  christos typedef enum split16_format_type
     42  1.1  christos {
     43  1.1  christos   split16a_type = 0,
     44  1.1  christos   split16d_type
     45  1.1  christos }
     46  1.1  christos split16_format_type;
     47  1.1  christos 
     48  1.1  christos /* RELA relocations are used here.  */
     49  1.1  christos 
     50  1.1  christos static bfd_reloc_status_type ppc_elf_addr16_ha_reloc
     51  1.1  christos   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
     52  1.1  christos static bfd_reloc_status_type ppc_elf_unhandled_reloc
     53  1.1  christos   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
     54  1.1  christos static void ppc_elf_vle_split16
     55  1.1  christos   (bfd *, bfd_byte *, bfd_vma, bfd_vma, split16_format_type);
     56  1.1  christos 
     57  1.1  christos /* Branch prediction bit for branch taken relocs.  */
     58  1.1  christos #define BRANCH_PREDICT_BIT 0x200000
     59  1.1  christos /* Mask to set RA in memory instructions.  */
     60  1.1  christos #define RA_REGISTER_MASK 0x001f0000
     61  1.1  christos /* Value to shift register by to insert RA.  */
     62  1.1  christos #define RA_REGISTER_SHIFT 16
     63  1.1  christos 
     64  1.1  christos /* The name of the dynamic interpreter.  This is put in the .interp
     65  1.1  christos    section.  */
     66  1.1  christos #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
     67  1.1  christos 
     68  1.1  christos /* For old-style PLT.  */
     69  1.1  christos /* The number of single-slot PLT entries (the rest use two slots).  */
     70  1.1  christos #define PLT_NUM_SINGLE_ENTRIES 8192
     71  1.1  christos 
     72  1.1  christos /* For new-style .glink and .plt.  */
     73  1.1  christos #define GLINK_PLTRESOLVE 16*4
     74  1.1  christos #define GLINK_ENTRY_SIZE 4*4
     75  1.1  christos #define TLS_GET_ADDR_GLINK_SIZE 12*4
     76  1.1  christos 
     77  1.1  christos /* VxWorks uses its own plt layout, filled in by the static linker.  */
     78  1.1  christos 
     79  1.1  christos /* The standard VxWorks PLT entry.  */
     80  1.1  christos #define VXWORKS_PLT_ENTRY_SIZE 32
     81  1.1  christos static const bfd_vma ppc_elf_vxworks_plt_entry
     82  1.1  christos     [VXWORKS_PLT_ENTRY_SIZE / 4] =
     83  1.1  christos   {
     84  1.1  christos     0x3d800000, /* lis     r12,0                 */
     85  1.1  christos     0x818c0000, /* lwz     r12,0(r12)            */
     86  1.1  christos     0x7d8903a6, /* mtctr   r12                   */
     87  1.1  christos     0x4e800420, /* bctr                          */
     88  1.1  christos     0x39600000, /* li      r11,0                 */
     89  1.1  christos     0x48000000, /* b       14 <.PLT0resolve+0x4> */
     90  1.1  christos     0x60000000, /* nop                           */
     91  1.1  christos     0x60000000, /* nop                           */
     92  1.1  christos   };
     93  1.1  christos static const bfd_vma ppc_elf_vxworks_pic_plt_entry
     94  1.1  christos     [VXWORKS_PLT_ENTRY_SIZE / 4] =
     95  1.1  christos   {
     96  1.1  christos     0x3d9e0000, /* addis r12,r30,0 */
     97  1.1  christos     0x818c0000, /* lwz	 r12,0(r12) */
     98  1.1  christos     0x7d8903a6, /* mtctr r12 */
     99  1.1  christos     0x4e800420, /* bctr */
    100  1.1  christos     0x39600000, /* li	 r11,0 */
    101  1.1  christos     0x48000000, /* b	 14 <.PLT0resolve+0x4> 14: R_PPC_REL24 .PLTresolve */
    102  1.1  christos     0x60000000, /* nop */
    103  1.1  christos     0x60000000, /* nop */
    104  1.1  christos   };
    105  1.1  christos 
    106  1.1  christos /* The initial VxWorks PLT entry.  */
    107  1.1  christos #define VXWORKS_PLT_INITIAL_ENTRY_SIZE 32
    108  1.1  christos static const bfd_vma ppc_elf_vxworks_plt0_entry
    109  1.1  christos     [VXWORKS_PLT_INITIAL_ENTRY_SIZE / 4] =
    110  1.1  christos   {
    111  1.1  christos     0x3d800000, /* lis     r12,0        */
    112  1.1  christos     0x398c0000, /* addi    r12,r12,0    */
    113  1.1  christos     0x800c0008, /* lwz     r0,8(r12)    */
    114  1.1  christos     0x7c0903a6, /* mtctr   r0           */
    115  1.1  christos     0x818c0004, /* lwz     r12,4(r12)   */
    116  1.1  christos     0x4e800420, /* bctr                 */
    117  1.1  christos     0x60000000, /* nop                  */
    118  1.1  christos     0x60000000, /* nop                  */
    119  1.1  christos   };
    120  1.1  christos static const bfd_vma ppc_elf_vxworks_pic_plt0_entry
    121  1.1  christos     [VXWORKS_PLT_INITIAL_ENTRY_SIZE / 4] =
    122  1.1  christos   {
    123  1.1  christos     0x819e0008, /* lwz	 r12,8(r30) */
    124  1.1  christos     0x7d8903a6, /* mtctr r12        */
    125  1.1  christos     0x819e0004, /* lwz	 r12,4(r30) */
    126  1.1  christos     0x4e800420, /* bctr             */
    127  1.1  christos     0x60000000, /* nop              */
    128  1.1  christos     0x60000000, /* nop              */
    129  1.1  christos     0x60000000, /* nop              */
    130  1.1  christos     0x60000000, /* nop              */
    131  1.1  christos   };
    132  1.1  christos 
    133  1.1  christos /* For executables, we have some additional relocations in
    134  1.1  christos    .rela.plt.unloaded, for the kernel loader.  */
    135  1.1  christos 
    136  1.1  christos /* The number of non-JMP_SLOT relocations per PLT0 slot. */
    137  1.1  christos #define VXWORKS_PLT_NON_JMP_SLOT_RELOCS 3
    138  1.1  christos /* The number of relocations in the PLTResolve slot. */
    139  1.1  christos #define VXWORKS_PLTRESOLVE_RELOCS 2
    140  1.1  christos /* The number of relocations in the PLTResolve slot when when creating
    141  1.1  christos    a shared library. */
    142  1.1  christos #define VXWORKS_PLTRESOLVE_RELOCS_SHLIB 0
    143  1.1  christos 
    144  1.1  christos /* Some instructions.  */
    145  1.1  christos #define ADDIS_11_11	0x3d6b0000
    146  1.1  christos #define ADDIS_11_30	0x3d7e0000
    147  1.1  christos #define ADDIS_12_12	0x3d8c0000
    148  1.1  christos #define ADDI_11_11	0x396b0000
    149  1.1  christos #define ADD_0_11_11	0x7c0b5a14
    150  1.1  christos #define ADD_3_12_2	0x7c6c1214
    151  1.1  christos #define ADD_11_0_11	0x7d605a14
    152  1.1  christos #define B		0x48000000
    153  1.1  christos #define BCL_20_31	0x429f0005
    154  1.1  christos #define BCTR		0x4e800420
    155  1.1  christos #define BEQLR		0x4d820020
    156  1.1  christos #define CMPWI_11_0	0x2c0b0000
    157  1.1  christos #define LIS_11		0x3d600000
    158  1.1  christos #define LIS_12		0x3d800000
    159  1.1  christos #define LWZU_0_12	0x840c0000
    160  1.1  christos #define LWZ_0_12	0x800c0000
    161  1.1  christos #define LWZ_11_3	0x81630000
    162  1.1  christos #define LWZ_11_11	0x816b0000
    163  1.1  christos #define LWZ_11_30	0x817e0000
    164  1.1  christos #define LWZ_12_3	0x81830000
    165  1.1  christos #define LWZ_12_12	0x818c0000
    166  1.1  christos #define MR_0_3		0x7c601b78
    167  1.1  christos #define MR_3_0		0x7c030378
    168  1.1  christos #define MFLR_0		0x7c0802a6
    169  1.1  christos #define MFLR_12		0x7d8802a6
    170  1.1  christos #define MTCTR_0		0x7c0903a6
    171  1.1  christos #define MTCTR_11	0x7d6903a6
    172  1.1  christos #define MTLR_0		0x7c0803a6
    173  1.1  christos #define NOP		0x60000000
    174  1.1  christos #define SUB_11_11_12	0x7d6c5850
    175  1.1  christos 
    176  1.1  christos /* Offset of tp and dtp pointers from start of TLS block.  */
    177  1.1  christos #define TP_OFFSET	0x7000
    178  1.1  christos #define DTP_OFFSET	0x8000
    179  1.1  christos 
    180  1.1  christos /* The value of a defined global symbol.  */
    181  1.1  christos #define SYM_VAL(SYM) \
    182  1.1  christos   ((SYM)->root.u.def.section->output_section->vma	\
    183  1.1  christos    + (SYM)->root.u.def.section->output_offset		\
    184  1.1  christos    + (SYM)->root.u.def.value)
    185  1.1  christos 
    186  1.1  christos static reloc_howto_type *ppc_elf_howto_table[R_PPC_max];
    188  1.1  christos 
    189  1.1  christos static reloc_howto_type ppc_elf_howto_raw[] = {
    190  1.1  christos   /* This reloc does nothing.  */
    191  1.1  christos   HOWTO (R_PPC_NONE,		/* type */
    192  1.1  christos 	 0,			/* rightshift */
    193  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    194  1.1  christos 	 32,			/* bitsize */
    195  1.1  christos 	 FALSE,			/* pc_relative */
    196  1.1  christos 	 0,			/* bitpos */
    197  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    198  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    199  1.1  christos 	 "R_PPC_NONE",		/* name */
    200  1.1  christos 	 FALSE,			/* partial_inplace */
    201  1.1  christos 	 0,			/* src_mask */
    202  1.1  christos 	 0,			/* dst_mask */
    203  1.1  christos 	 FALSE),		/* pcrel_offset */
    204  1.1  christos 
    205  1.1  christos   /* A standard 32 bit relocation.  */
    206  1.1  christos   HOWTO (R_PPC_ADDR32,		/* type */
    207  1.1  christos 	 0,			/* rightshift */
    208  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    209  1.1  christos 	 32,			/* bitsize */
    210  1.1  christos 	 FALSE,			/* pc_relative */
    211  1.1  christos 	 0,			/* bitpos */
    212  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    213  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    214  1.1  christos 	 "R_PPC_ADDR32",	/* name */
    215  1.1  christos 	 FALSE,			/* partial_inplace */
    216  1.1  christos 	 0,			/* src_mask */
    217  1.1  christos 	 0xffffffff,		/* dst_mask */
    218  1.1  christos 	 FALSE),		/* pcrel_offset */
    219  1.1  christos 
    220  1.1  christos   /* An absolute 26 bit branch; the lower two bits must be zero.
    221  1.1  christos      FIXME: we don't check that, we just clear them.  */
    222  1.1  christos   HOWTO (R_PPC_ADDR24,		/* type */
    223  1.1  christos 	 0,			/* rightshift */
    224  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    225  1.1  christos 	 26,			/* bitsize */
    226  1.1  christos 	 FALSE,			/* pc_relative */
    227  1.1  christos 	 0,			/* bitpos */
    228  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    229  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    230  1.1  christos 	 "R_PPC_ADDR24",	/* name */
    231  1.1  christos 	 FALSE,			/* partial_inplace */
    232  1.1  christos 	 0,			/* src_mask */
    233  1.1  christos 	 0x3fffffc,		/* dst_mask */
    234  1.1  christos 	 FALSE),		/* pcrel_offset */
    235  1.1  christos 
    236  1.1  christos   /* A standard 16 bit relocation.  */
    237  1.1  christos   HOWTO (R_PPC_ADDR16,		/* type */
    238  1.1  christos 	 0,			/* rightshift */
    239  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    240  1.1  christos 	 16,			/* bitsize */
    241  1.1  christos 	 FALSE,			/* pc_relative */
    242  1.1  christos 	 0,			/* bitpos */
    243  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    244  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    245  1.1  christos 	 "R_PPC_ADDR16",	/* name */
    246  1.1  christos 	 FALSE,			/* partial_inplace */
    247  1.1  christos 	 0,			/* src_mask */
    248  1.1  christos 	 0xffff,		/* dst_mask */
    249  1.1  christos 	 FALSE),		/* pcrel_offset */
    250  1.1  christos 
    251  1.1  christos   /* A 16 bit relocation without overflow.  */
    252  1.1  christos   HOWTO (R_PPC_ADDR16_LO,	/* type */
    253  1.1  christos 	 0,			/* rightshift */
    254  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    255  1.1  christos 	 16,			/* bitsize */
    256  1.1  christos 	 FALSE,			/* pc_relative */
    257  1.1  christos 	 0,			/* bitpos */
    258  1.1  christos 	 complain_overflow_dont,/* complain_on_overflow */
    259  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    260  1.1  christos 	 "R_PPC_ADDR16_LO",	/* name */
    261  1.1  christos 	 FALSE,			/* partial_inplace */
    262  1.1  christos 	 0,			/* src_mask */
    263  1.1  christos 	 0xffff,		/* dst_mask */
    264  1.1  christos 	 FALSE),		/* pcrel_offset */
    265  1.1  christos 
    266  1.1  christos   /* The high order 16 bits of an address.  */
    267  1.1  christos   HOWTO (R_PPC_ADDR16_HI,	/* type */
    268  1.1  christos 	 16,			/* rightshift */
    269  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    270  1.1  christos 	 16,			/* bitsize */
    271  1.1  christos 	 FALSE,			/* pc_relative */
    272  1.1  christos 	 0,			/* bitpos */
    273  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    274  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    275  1.1  christos 	 "R_PPC_ADDR16_HI",	/* name */
    276  1.1  christos 	 FALSE,			/* partial_inplace */
    277  1.1  christos 	 0,			/* src_mask */
    278  1.1  christos 	 0xffff,		/* dst_mask */
    279  1.1  christos 	 FALSE),		/* pcrel_offset */
    280  1.1  christos 
    281  1.1  christos   /* The high order 16 bits of an address, plus 1 if the contents of
    282  1.1  christos      the low 16 bits, treated as a signed number, is negative.  */
    283  1.1  christos   HOWTO (R_PPC_ADDR16_HA,	/* type */
    284  1.1  christos 	 16,			/* rightshift */
    285  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    286  1.1  christos 	 16,			/* bitsize */
    287  1.1  christos 	 FALSE,			/* pc_relative */
    288  1.1  christos 	 0,			/* bitpos */
    289  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    290  1.1  christos 	 ppc_elf_addr16_ha_reloc, /* special_function */
    291  1.1  christos 	 "R_PPC_ADDR16_HA",	/* name */
    292  1.1  christos 	 FALSE,			/* partial_inplace */
    293  1.1  christos 	 0,			/* src_mask */
    294  1.1  christos 	 0xffff,		/* dst_mask */
    295  1.1  christos 	 FALSE),		/* pcrel_offset */
    296  1.1  christos 
    297  1.1  christos   /* An absolute 16 bit branch; the lower two bits must be zero.
    298  1.1  christos      FIXME: we don't check that, we just clear them.  */
    299  1.1  christos   HOWTO (R_PPC_ADDR14,		/* type */
    300  1.1  christos 	 0,			/* rightshift */
    301  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    302  1.1  christos 	 16,			/* bitsize */
    303  1.1  christos 	 FALSE,			/* pc_relative */
    304  1.1  christos 	 0,			/* bitpos */
    305  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    306  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    307  1.1  christos 	 "R_PPC_ADDR14",	/* name */
    308  1.1  christos 	 FALSE,			/* partial_inplace */
    309  1.1  christos 	 0,			/* src_mask */
    310  1.1  christos 	 0xfffc,		/* dst_mask */
    311  1.1  christos 	 FALSE),		/* pcrel_offset */
    312  1.1  christos 
    313  1.1  christos   /* An absolute 16 bit branch, for which bit 10 should be set to
    314  1.1  christos      indicate that the branch is expected to be taken.	The lower two
    315  1.1  christos      bits must be zero.  */
    316  1.1  christos   HOWTO (R_PPC_ADDR14_BRTAKEN,	/* type */
    317  1.1  christos 	 0,			/* rightshift */
    318  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    319  1.1  christos 	 16,			/* bitsize */
    320  1.1  christos 	 FALSE,			/* pc_relative */
    321  1.1  christos 	 0,			/* bitpos */
    322  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    323  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    324  1.1  christos 	 "R_PPC_ADDR14_BRTAKEN",/* name */
    325  1.1  christos 	 FALSE,			/* partial_inplace */
    326  1.1  christos 	 0,			/* src_mask */
    327  1.1  christos 	 0xfffc,		/* dst_mask */
    328  1.1  christos 	 FALSE),		/* pcrel_offset */
    329  1.1  christos 
    330  1.1  christos   /* An absolute 16 bit branch, for which bit 10 should be set to
    331  1.1  christos      indicate that the branch is not expected to be taken.  The lower
    332  1.1  christos      two bits must be zero.  */
    333  1.1  christos   HOWTO (R_PPC_ADDR14_BRNTAKEN, /* type */
    334  1.1  christos 	 0,			/* rightshift */
    335  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    336  1.1  christos 	 16,			/* bitsize */
    337  1.1  christos 	 FALSE,			/* pc_relative */
    338  1.1  christos 	 0,			/* bitpos */
    339  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    340  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    341  1.1  christos 	 "R_PPC_ADDR14_BRNTAKEN",/* name */
    342  1.1  christos 	 FALSE,			/* partial_inplace */
    343  1.1  christos 	 0,			/* src_mask */
    344  1.1  christos 	 0xfffc,		/* dst_mask */
    345  1.1  christos 	 FALSE),		/* pcrel_offset */
    346  1.1  christos 
    347  1.1  christos   /* A relative 26 bit branch; the lower two bits must be zero.  */
    348  1.1  christos   HOWTO (R_PPC_REL24,		/* type */
    349  1.1  christos 	 0,			/* rightshift */
    350  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    351  1.1  christos 	 26,			/* bitsize */
    352  1.1  christos 	 TRUE,			/* pc_relative */
    353  1.1  christos 	 0,			/* bitpos */
    354  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    355  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    356  1.1  christos 	 "R_PPC_REL24",		/* name */
    357  1.1  christos 	 FALSE,			/* partial_inplace */
    358  1.1  christos 	 0,			/* src_mask */
    359  1.1  christos 	 0x3fffffc,		/* dst_mask */
    360  1.1  christos 	 TRUE),			/* pcrel_offset */
    361  1.1  christos 
    362  1.1  christos   /* A relative 16 bit branch; the lower two bits must be zero.  */
    363  1.1  christos   HOWTO (R_PPC_REL14,		/* type */
    364  1.1  christos 	 0,			/* rightshift */
    365  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    366  1.1  christos 	 16,			/* bitsize */
    367  1.1  christos 	 TRUE,			/* pc_relative */
    368  1.1  christos 	 0,			/* bitpos */
    369  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    370  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    371  1.1  christos 	 "R_PPC_REL14",		/* name */
    372  1.1  christos 	 FALSE,			/* partial_inplace */
    373  1.1  christos 	 0,			/* src_mask */
    374  1.1  christos 	 0xfffc,		/* dst_mask */
    375  1.1  christos 	 TRUE),			/* pcrel_offset */
    376  1.1  christos 
    377  1.1  christos   /* A relative 16 bit branch.  Bit 10 should be set to indicate that
    378  1.1  christos      the branch is expected to be taken.  The lower two bits must be
    379  1.1  christos      zero.  */
    380  1.1  christos   HOWTO (R_PPC_REL14_BRTAKEN,	/* type */
    381  1.1  christos 	 0,			/* rightshift */
    382  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    383  1.1  christos 	 16,			/* bitsize */
    384  1.1  christos 	 TRUE,			/* pc_relative */
    385  1.1  christos 	 0,			/* bitpos */
    386  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    387  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    388  1.1  christos 	 "R_PPC_REL14_BRTAKEN",	/* name */
    389  1.1  christos 	 FALSE,			/* partial_inplace */
    390  1.1  christos 	 0,			/* src_mask */
    391  1.1  christos 	 0xfffc,		/* dst_mask */
    392  1.1  christos 	 TRUE),			/* pcrel_offset */
    393  1.1  christos 
    394  1.1  christos   /* A relative 16 bit branch.  Bit 10 should be set to indicate that
    395  1.1  christos      the branch is not expected to be taken.  The lower two bits must
    396  1.1  christos      be zero.  */
    397  1.1  christos   HOWTO (R_PPC_REL14_BRNTAKEN,	/* type */
    398  1.1  christos 	 0,			/* rightshift */
    399  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    400  1.1  christos 	 16,			/* bitsize */
    401  1.1  christos 	 TRUE,			/* pc_relative */
    402  1.1  christos 	 0,			/* bitpos */
    403  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    404  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    405  1.1  christos 	 "R_PPC_REL14_BRNTAKEN",/* name */
    406  1.1  christos 	 FALSE,			/* partial_inplace */
    407  1.1  christos 	 0,			/* src_mask */
    408  1.1  christos 	 0xfffc,		/* dst_mask */
    409  1.1  christos 	 TRUE),			/* pcrel_offset */
    410  1.1  christos 
    411  1.1  christos   /* Like R_PPC_ADDR16, but referring to the GOT table entry for the
    412  1.1  christos      symbol.  */
    413  1.1  christos   HOWTO (R_PPC_GOT16,		/* type */
    414  1.1  christos 	 0,			/* rightshift */
    415  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    416  1.1  christos 	 16,			/* bitsize */
    417  1.1  christos 	 FALSE,			/* pc_relative */
    418  1.1  christos 	 0,			/* bitpos */
    419  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    420  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    421  1.1  christos 	 "R_PPC_GOT16",		/* name */
    422  1.1  christos 	 FALSE,			/* partial_inplace */
    423  1.1  christos 	 0,			/* src_mask */
    424  1.1  christos 	 0xffff,		/* dst_mask */
    425  1.1  christos 	 FALSE),		/* pcrel_offset */
    426  1.1  christos 
    427  1.1  christos   /* Like R_PPC_ADDR16_LO, but referring to the GOT table entry for
    428  1.1  christos      the symbol.  */
    429  1.1  christos   HOWTO (R_PPC_GOT16_LO,	/* type */
    430  1.1  christos 	 0,			/* rightshift */
    431  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    432  1.1  christos 	 16,			/* bitsize */
    433  1.1  christos 	 FALSE,			/* pc_relative */
    434  1.1  christos 	 0,			/* bitpos */
    435  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    436  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    437  1.1  christos 	 "R_PPC_GOT16_LO",	/* name */
    438  1.1  christos 	 FALSE,			/* partial_inplace */
    439  1.1  christos 	 0,			/* src_mask */
    440  1.1  christos 	 0xffff,		/* dst_mask */
    441  1.1  christos 	 FALSE),		/* pcrel_offset */
    442  1.1  christos 
    443  1.1  christos   /* Like R_PPC_ADDR16_HI, but referring to the GOT table entry for
    444  1.1  christos      the symbol.  */
    445  1.1  christos   HOWTO (R_PPC_GOT16_HI,	/* type */
    446  1.1  christos 	 16,			/* rightshift */
    447  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    448  1.1  christos 	 16,			/* bitsize */
    449  1.1  christos 	 FALSE,			/* pc_relative */
    450  1.1  christos 	 0,			/* bitpos */
    451  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    452  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    453  1.1  christos 	 "R_PPC_GOT16_HI",	/* name */
    454  1.1  christos 	 FALSE,			/* partial_inplace */
    455  1.1  christos 	 0,			/* src_mask */
    456  1.1  christos 	 0xffff,		/* dst_mask */
    457  1.1  christos 	 FALSE),		 /* pcrel_offset */
    458  1.1  christos 
    459  1.1  christos   /* Like R_PPC_ADDR16_HA, but referring to the GOT table entry for
    460  1.1  christos      the symbol.  */
    461  1.1  christos   HOWTO (R_PPC_GOT16_HA,	/* type */
    462  1.1  christos 	 16,			/* rightshift */
    463  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    464  1.1  christos 	 16,			/* bitsize */
    465  1.1  christos 	 FALSE,			/* pc_relative */
    466  1.1  christos 	 0,			/* bitpos */
    467  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    468  1.1  christos 	 ppc_elf_addr16_ha_reloc, /* special_function */
    469  1.1  christos 	 "R_PPC_GOT16_HA",	/* name */
    470  1.1  christos 	 FALSE,			/* partial_inplace */
    471  1.1  christos 	 0,			/* src_mask */
    472  1.1  christos 	 0xffff,		/* dst_mask */
    473  1.1  christos 	 FALSE),		/* pcrel_offset */
    474  1.1  christos 
    475  1.1  christos   /* Like R_PPC_REL24, but referring to the procedure linkage table
    476  1.1  christos      entry for the symbol.  */
    477  1.1  christos   HOWTO (R_PPC_PLTREL24,	/* type */
    478  1.1  christos 	 0,			/* rightshift */
    479  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    480  1.1  christos 	 26,			/* bitsize */
    481  1.1  christos 	 TRUE,			/* pc_relative */
    482  1.1  christos 	 0,			/* bitpos */
    483  1.1  christos 	 complain_overflow_signed,  /* complain_on_overflow */
    484  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    485  1.1  christos 	 "R_PPC_PLTREL24",	/* name */
    486  1.1  christos 	 FALSE,			/* partial_inplace */
    487  1.1  christos 	 0,			/* src_mask */
    488  1.1  christos 	 0x3fffffc,		/* dst_mask */
    489  1.1  christos 	 TRUE),			/* pcrel_offset */
    490  1.1  christos 
    491  1.1  christos   /* This is used only by the dynamic linker.  The symbol should exist
    492  1.1  christos      both in the object being run and in some shared library.  The
    493  1.1  christos      dynamic linker copies the data addressed by the symbol from the
    494  1.1  christos      shared library into the object, because the object being
    495  1.1  christos      run has to have the data at some particular address.  */
    496  1.1  christos   HOWTO (R_PPC_COPY,		/* type */
    497  1.1  christos 	 0,			/* rightshift */
    498  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    499  1.1  christos 	 32,			/* bitsize */
    500  1.1  christos 	 FALSE,			/* pc_relative */
    501  1.1  christos 	 0,			/* bitpos */
    502  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    503  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
    504  1.1  christos 	 "R_PPC_COPY",		/* name */
    505  1.1  christos 	 FALSE,			/* partial_inplace */
    506  1.1  christos 	 0,			/* src_mask */
    507  1.1  christos 	 0,			/* dst_mask */
    508  1.1  christos 	 FALSE),		/* pcrel_offset */
    509  1.1  christos 
    510  1.1  christos   /* Like R_PPC_ADDR32, but used when setting global offset table
    511  1.1  christos      entries.  */
    512  1.1  christos   HOWTO (R_PPC_GLOB_DAT,	/* type */
    513  1.1  christos 	 0,			/* rightshift */
    514  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    515  1.1  christos 	 32,			/* bitsize */
    516  1.1  christos 	 FALSE,			/* pc_relative */
    517  1.1  christos 	 0,			/* bitpos */
    518  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    519  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
    520  1.1  christos 	 "R_PPC_GLOB_DAT",	/* name */
    521  1.1  christos 	 FALSE,			/* partial_inplace */
    522  1.1  christos 	 0,			/* src_mask */
    523  1.1  christos 	 0xffffffff,		/* dst_mask */
    524  1.1  christos 	 FALSE),		/* pcrel_offset */
    525  1.1  christos 
    526  1.1  christos   /* Marks a procedure linkage table entry for a symbol.  */
    527  1.1  christos   HOWTO (R_PPC_JMP_SLOT,	/* type */
    528  1.1  christos 	 0,			/* rightshift */
    529  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    530  1.1  christos 	 32,			/* bitsize */
    531  1.1  christos 	 FALSE,			/* pc_relative */
    532  1.1  christos 	 0,			/* bitpos */
    533  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    534  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
    535  1.1  christos 	 "R_PPC_JMP_SLOT",	/* name */
    536  1.1  christos 	 FALSE,			/* partial_inplace */
    537  1.1  christos 	 0,			/* src_mask */
    538  1.1  christos 	 0,			/* dst_mask */
    539  1.1  christos 	 FALSE),		/* pcrel_offset */
    540  1.1  christos 
    541  1.1  christos   /* Used only by the dynamic linker.  When the object is run, this
    542  1.1  christos      longword is set to the load address of the object, plus the
    543  1.1  christos      addend.  */
    544  1.1  christos   HOWTO (R_PPC_RELATIVE,	/* type */
    545  1.1  christos 	 0,			/* rightshift */
    546  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    547  1.1  christos 	 32,			/* bitsize */
    548  1.1  christos 	 FALSE,			/* pc_relative */
    549  1.1  christos 	 0,			/* bitpos */
    550  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    551  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
    552  1.1  christos 	 "R_PPC_RELATIVE",	/* name */
    553  1.1  christos 	 FALSE,			/* partial_inplace */
    554  1.1  christos 	 0,			/* src_mask */
    555  1.1  christos 	 0xffffffff,		/* dst_mask */
    556  1.1  christos 	 FALSE),		/* pcrel_offset */
    557  1.1  christos 
    558  1.1  christos   /* Like R_PPC_REL24, but uses the value of the symbol within the
    559  1.1  christos      object rather than the final value.  Normally used for
    560  1.1  christos      _GLOBAL_OFFSET_TABLE_.  */
    561  1.1  christos   HOWTO (R_PPC_LOCAL24PC,	/* type */
    562  1.1  christos 	 0,			/* rightshift */
    563  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    564  1.1  christos 	 26,			/* bitsize */
    565  1.1  christos 	 TRUE,			/* pc_relative */
    566  1.1  christos 	 0,			/* bitpos */
    567  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    568  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    569  1.1  christos 	 "R_PPC_LOCAL24PC",	/* name */
    570  1.1  christos 	 FALSE,			/* partial_inplace */
    571  1.1  christos 	 0,			/* src_mask */
    572  1.1  christos 	 0x3fffffc,		/* dst_mask */
    573  1.1  christos 	 TRUE),			/* pcrel_offset */
    574  1.1  christos 
    575  1.1  christos   /* Like R_PPC_ADDR32, but may be unaligned.  */
    576  1.1  christos   HOWTO (R_PPC_UADDR32,		/* type */
    577  1.1  christos 	 0,			/* rightshift */
    578  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    579  1.1  christos 	 32,			/* bitsize */
    580  1.1  christos 	 FALSE,			/* pc_relative */
    581  1.1  christos 	 0,			/* bitpos */
    582  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    583  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    584  1.1  christos 	 "R_PPC_UADDR32",	/* name */
    585  1.1  christos 	 FALSE,			/* partial_inplace */
    586  1.1  christos 	 0,			/* src_mask */
    587  1.1  christos 	 0xffffffff,		/* dst_mask */
    588  1.1  christos 	 FALSE),		/* pcrel_offset */
    589  1.1  christos 
    590  1.1  christos   /* Like R_PPC_ADDR16, but may be unaligned.  */
    591  1.1  christos   HOWTO (R_PPC_UADDR16,		/* type */
    592  1.1  christos 	 0,			/* rightshift */
    593  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    594  1.1  christos 	 16,			/* bitsize */
    595  1.1  christos 	 FALSE,			/* pc_relative */
    596  1.1  christos 	 0,			/* bitpos */
    597  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    598  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    599  1.1  christos 	 "R_PPC_UADDR16",	/* name */
    600  1.1  christos 	 FALSE,			/* partial_inplace */
    601  1.1  christos 	 0,			/* src_mask */
    602  1.1  christos 	 0xffff,		/* dst_mask */
    603  1.1  christos 	 FALSE),		/* pcrel_offset */
    604  1.1  christos 
    605  1.1  christos   /* 32-bit PC relative */
    606  1.1  christos   HOWTO (R_PPC_REL32,		/* type */
    607  1.1  christos 	 0,			/* rightshift */
    608  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    609  1.1  christos 	 32,			/* bitsize */
    610  1.1  christos 	 TRUE,			/* pc_relative */
    611  1.1  christos 	 0,			/* bitpos */
    612  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    613  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    614  1.1  christos 	 "R_PPC_REL32",		/* name */
    615  1.1  christos 	 FALSE,			/* partial_inplace */
    616  1.1  christos 	 0,			/* src_mask */
    617  1.1  christos 	 0xffffffff,		/* dst_mask */
    618  1.1  christos 	 TRUE),			/* pcrel_offset */
    619  1.1  christos 
    620  1.1  christos   /* 32-bit relocation to the symbol's procedure linkage table.
    621  1.1  christos      FIXME: not supported.  */
    622  1.1  christos   HOWTO (R_PPC_PLT32,		/* type */
    623  1.1  christos 	 0,			/* rightshift */
    624  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    625  1.1  christos 	 32,			/* bitsize */
    626  1.1  christos 	 FALSE,			/* pc_relative */
    627  1.1  christos 	 0,			/* bitpos */
    628  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    629  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    630  1.1  christos 	 "R_PPC_PLT32",		/* name */
    631  1.1  christos 	 FALSE,			/* partial_inplace */
    632  1.1  christos 	 0,			/* src_mask */
    633  1.1  christos 	 0,			/* dst_mask */
    634  1.1  christos 	 FALSE),		/* pcrel_offset */
    635  1.1  christos 
    636  1.1  christos   /* 32-bit PC relative relocation to the symbol's procedure linkage table.
    637  1.1  christos      FIXME: not supported.  */
    638  1.1  christos   HOWTO (R_PPC_PLTREL32,	/* type */
    639  1.1  christos 	 0,			/* rightshift */
    640  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    641  1.1  christos 	 32,			/* bitsize */
    642  1.1  christos 	 TRUE,			/* pc_relative */
    643  1.1  christos 	 0,			/* bitpos */
    644  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    645  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    646  1.1  christos 	 "R_PPC_PLTREL32",	/* name */
    647  1.1  christos 	 FALSE,			/* partial_inplace */
    648  1.1  christos 	 0,			/* src_mask */
    649  1.1  christos 	 0,			/* dst_mask */
    650  1.1  christos 	 TRUE),			/* pcrel_offset */
    651  1.1  christos 
    652  1.1  christos   /* Like R_PPC_ADDR16_LO, but referring to the PLT table entry for
    653  1.1  christos      the symbol.  */
    654  1.1  christos   HOWTO (R_PPC_PLT16_LO,	/* type */
    655  1.1  christos 	 0,			/* rightshift */
    656  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    657  1.1  christos 	 16,			/* bitsize */
    658  1.1  christos 	 FALSE,			/* pc_relative */
    659  1.1  christos 	 0,			/* bitpos */
    660  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    661  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    662  1.1  christos 	 "R_PPC_PLT16_LO",	/* name */
    663  1.1  christos 	 FALSE,			/* partial_inplace */
    664  1.1  christos 	 0,			/* src_mask */
    665  1.1  christos 	 0xffff,		/* dst_mask */
    666  1.1  christos 	 FALSE),		/* pcrel_offset */
    667  1.1  christos 
    668  1.1  christos   /* Like R_PPC_ADDR16_HI, but referring to the PLT table entry for
    669  1.1  christos      the symbol.  */
    670  1.1  christos   HOWTO (R_PPC_PLT16_HI,	/* type */
    671  1.1  christos 	 16,			/* rightshift */
    672  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    673  1.1  christos 	 16,			/* bitsize */
    674  1.1  christos 	 FALSE,			/* pc_relative */
    675  1.1  christos 	 0,			/* bitpos */
    676  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    677  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    678  1.1  christos 	 "R_PPC_PLT16_HI",	/* name */
    679  1.1  christos 	 FALSE,			/* partial_inplace */
    680  1.1  christos 	 0,			/* src_mask */
    681  1.1  christos 	 0xffff,		/* dst_mask */
    682  1.1  christos 	 FALSE),		 /* pcrel_offset */
    683  1.1  christos 
    684  1.1  christos   /* Like R_PPC_ADDR16_HA, but referring to the PLT table entry for
    685  1.1  christos      the symbol.  */
    686  1.1  christos   HOWTO (R_PPC_PLT16_HA,	/* type */
    687  1.1  christos 	 16,			/* rightshift */
    688  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    689  1.1  christos 	 16,			/* bitsize */
    690  1.1  christos 	 FALSE,			/* pc_relative */
    691  1.1  christos 	 0,			/* bitpos */
    692  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    693  1.1  christos 	 ppc_elf_addr16_ha_reloc, /* special_function */
    694  1.1  christos 	 "R_PPC_PLT16_HA",	/* name */
    695  1.1  christos 	 FALSE,			/* partial_inplace */
    696  1.1  christos 	 0,			/* src_mask */
    697  1.1  christos 	 0xffff,		/* dst_mask */
    698  1.1  christos 	 FALSE),		/* pcrel_offset */
    699  1.1  christos 
    700  1.1  christos   /* A sign-extended 16 bit value relative to _SDA_BASE_, for use with
    701  1.1  christos      small data items.  */
    702  1.1  christos   HOWTO (R_PPC_SDAREL16,	/* type */
    703  1.1  christos 	 0,			/* rightshift */
    704  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    705  1.1  christos 	 16,			/* bitsize */
    706  1.1  christos 	 FALSE,			/* pc_relative */
    707  1.1  christos 	 0,			/* bitpos */
    708  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    709  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    710  1.1  christos 	 "R_PPC_SDAREL16",	/* name */
    711  1.1  christos 	 FALSE,			/* partial_inplace */
    712  1.1  christos 	 0,			/* src_mask */
    713  1.1  christos 	 0xffff,		/* dst_mask */
    714  1.1  christos 	 FALSE),		/* pcrel_offset */
    715  1.1  christos 
    716  1.1  christos   /* 16-bit section relative relocation.  */
    717  1.1  christos   HOWTO (R_PPC_SECTOFF,		/* type */
    718  1.1  christos 	 0,			/* rightshift */
    719  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    720  1.1  christos 	 16,			/* bitsize */
    721  1.1  christos 	 FALSE,			/* pc_relative */
    722  1.1  christos 	 0,			/* bitpos */
    723  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    724  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    725  1.1  christos 	 "R_PPC_SECTOFF",	/* name */
    726  1.1  christos 	 FALSE,			/* partial_inplace */
    727  1.1  christos 	 0,			/* src_mask */
    728  1.1  christos 	 0xffff,		/* dst_mask */
    729  1.1  christos 	 FALSE),		/* pcrel_offset */
    730  1.1  christos 
    731  1.1  christos   /* 16-bit lower half section relative relocation.  */
    732  1.1  christos   HOWTO (R_PPC_SECTOFF_LO,	  /* type */
    733  1.1  christos 	 0,			/* rightshift */
    734  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    735  1.1  christos 	 16,			/* bitsize */
    736  1.1  christos 	 FALSE,			/* pc_relative */
    737  1.1  christos 	 0,			/* bitpos */
    738  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    739  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    740  1.1  christos 	 "R_PPC_SECTOFF_LO",	/* name */
    741  1.1  christos 	 FALSE,			/* partial_inplace */
    742  1.1  christos 	 0,			/* src_mask */
    743  1.1  christos 	 0xffff,		/* dst_mask */
    744  1.1  christos 	 FALSE),		/* pcrel_offset */
    745  1.1  christos 
    746  1.1  christos   /* 16-bit upper half section relative relocation.  */
    747  1.1  christos   HOWTO (R_PPC_SECTOFF_HI,	/* type */
    748  1.1  christos 	 16,			/* rightshift */
    749  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    750  1.1  christos 	 16,			/* bitsize */
    751  1.1  christos 	 FALSE,			/* pc_relative */
    752  1.1  christos 	 0,			/* bitpos */
    753  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    754  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    755  1.1  christos 	 "R_PPC_SECTOFF_HI",	/* name */
    756  1.1  christos 	 FALSE,			/* partial_inplace */
    757  1.1  christos 	 0,			/* src_mask */
    758  1.1  christos 	 0xffff,		/* dst_mask */
    759  1.1  christos 	 FALSE),		 /* pcrel_offset */
    760  1.1  christos 
    761  1.1  christos   /* 16-bit upper half adjusted section relative relocation.  */
    762  1.1  christos   HOWTO (R_PPC_SECTOFF_HA,	/* type */
    763  1.1  christos 	 16,			/* rightshift */
    764  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    765  1.1  christos 	 16,			/* bitsize */
    766  1.1  christos 	 FALSE,			/* pc_relative */
    767  1.1  christos 	 0,			/* bitpos */
    768  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
    769  1.1  christos 	 ppc_elf_addr16_ha_reloc, /* special_function */
    770  1.1  christos 	 "R_PPC_SECTOFF_HA",	/* name */
    771  1.1  christos 	 FALSE,			/* partial_inplace */
    772  1.1  christos 	 0,			/* src_mask */
    773  1.1  christos 	 0xffff,		/* dst_mask */
    774  1.1  christos 	 FALSE),		/* pcrel_offset */
    775  1.1  christos 
    776  1.1  christos   /* Marker relocs for TLS.  */
    777  1.1  christos   HOWTO (R_PPC_TLS,
    778  1.1  christos 	 0,			/* rightshift */
    779  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    780  1.1  christos 	 32,			/* bitsize */
    781  1.1  christos 	 FALSE,			/* pc_relative */
    782  1.1  christos 	 0,			/* bitpos */
    783  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    784  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
    785  1.1  christos 	 "R_PPC_TLS",		/* name */
    786  1.1  christos 	 FALSE,			/* partial_inplace */
    787  1.1  christos 	 0,			/* src_mask */
    788  1.1  christos 	 0,			/* dst_mask */
    789  1.1  christos 	 FALSE),		/* pcrel_offset */
    790  1.1  christos 
    791  1.1  christos   HOWTO (R_PPC_TLSGD,
    792  1.1  christos 	 0,			/* rightshift */
    793  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    794  1.1  christos 	 32,			/* bitsize */
    795  1.1  christos 	 FALSE,			/* pc_relative */
    796  1.1  christos 	 0,			/* bitpos */
    797  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    798  1.1  christos 	 bfd_elf_generic_reloc, /* special_function */
    799  1.1  christos 	 "R_PPC_TLSGD",		/* name */
    800  1.1  christos 	 FALSE,			/* partial_inplace */
    801  1.1  christos 	 0,			/* src_mask */
    802  1.1  christos 	 0,			/* dst_mask */
    803  1.1  christos 	 FALSE),		/* pcrel_offset */
    804  1.1  christos 
    805  1.1  christos   HOWTO (R_PPC_TLSLD,
    806  1.1  christos 	 0,			/* rightshift */
    807  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    808  1.1  christos 	 32,			/* bitsize */
    809  1.1  christos 	 FALSE,			/* pc_relative */
    810  1.1  christos 	 0,			/* bitpos */
    811  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    812  1.1  christos 	 bfd_elf_generic_reloc, /* special_function */
    813  1.1  christos 	 "R_PPC_TLSLD",		/* name */
    814  1.1  christos 	 FALSE,			/* partial_inplace */
    815  1.1  christos 	 0,			/* src_mask */
    816  1.1  christos 	 0,			/* dst_mask */
    817  1.1  christos 	 FALSE),		/* pcrel_offset */
    818  1.1  christos 
    819  1.1  christos   /* Computes the load module index of the load module that contains the
    820  1.1  christos      definition of its TLS sym.  */
    821  1.1  christos   HOWTO (R_PPC_DTPMOD32,
    822  1.1  christos 	 0,			/* rightshift */
    823  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    824  1.1  christos 	 32,			/* bitsize */
    825  1.1  christos 	 FALSE,			/* pc_relative */
    826  1.1  christos 	 0,			/* bitpos */
    827  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    828  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    829  1.1  christos 	 "R_PPC_DTPMOD32",	/* name */
    830  1.1  christos 	 FALSE,			/* partial_inplace */
    831  1.1  christos 	 0,			/* src_mask */
    832  1.1  christos 	 0xffffffff,		/* dst_mask */
    833  1.1  christos 	 FALSE),		/* pcrel_offset */
    834  1.1  christos 
    835  1.1  christos   /* Computes a dtv-relative displacement, the difference between the value
    836  1.1  christos      of sym+add and the base address of the thread-local storage block that
    837  1.1  christos      contains the definition of sym, minus 0x8000.  */
    838  1.1  christos   HOWTO (R_PPC_DTPREL32,
    839  1.1  christos 	 0,			/* rightshift */
    840  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    841  1.1  christos 	 32,			/* bitsize */
    842  1.1  christos 	 FALSE,			/* pc_relative */
    843  1.1  christos 	 0,			/* bitpos */
    844  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    845  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    846  1.1  christos 	 "R_PPC_DTPREL32",	/* name */
    847  1.1  christos 	 FALSE,			/* partial_inplace */
    848  1.1  christos 	 0,			/* src_mask */
    849  1.1  christos 	 0xffffffff,		/* dst_mask */
    850  1.1  christos 	 FALSE),		/* pcrel_offset */
    851  1.1  christos 
    852  1.1  christos   /* A 16 bit dtprel reloc.  */
    853  1.1  christos   HOWTO (R_PPC_DTPREL16,
    854  1.1  christos 	 0,			/* rightshift */
    855  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    856  1.1  christos 	 16,			/* bitsize */
    857  1.1  christos 	 FALSE,			/* pc_relative */
    858  1.1  christos 	 0,			/* bitpos */
    859  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    860  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    861  1.1  christos 	 "R_PPC_DTPREL16",	/* name */
    862  1.1  christos 	 FALSE,			/* partial_inplace */
    863  1.1  christos 	 0,			/* src_mask */
    864  1.1  christos 	 0xffff,		/* dst_mask */
    865  1.1  christos 	 FALSE),		/* pcrel_offset */
    866  1.1  christos 
    867  1.1  christos   /* Like DTPREL16, but no overflow.  */
    868  1.1  christos   HOWTO (R_PPC_DTPREL16_LO,
    869  1.1  christos 	 0,			/* rightshift */
    870  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    871  1.1  christos 	 16,			/* bitsize */
    872  1.1  christos 	 FALSE,			/* pc_relative */
    873  1.1  christos 	 0,			/* bitpos */
    874  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    875  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    876  1.1  christos 	 "R_PPC_DTPREL16_LO",	/* name */
    877  1.1  christos 	 FALSE,			/* partial_inplace */
    878  1.1  christos 	 0,			/* src_mask */
    879  1.1  christos 	 0xffff,		/* dst_mask */
    880  1.1  christos 	 FALSE),		/* pcrel_offset */
    881  1.1  christos 
    882  1.1  christos   /* Like DTPREL16_LO, but next higher group of 16 bits.  */
    883  1.1  christos   HOWTO (R_PPC_DTPREL16_HI,
    884  1.1  christos 	 16,			/* rightshift */
    885  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    886  1.1  christos 	 16,			/* bitsize */
    887  1.1  christos 	 FALSE,			/* pc_relative */
    888  1.1  christos 	 0,			/* bitpos */
    889  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    890  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    891  1.1  christos 	 "R_PPC_DTPREL16_HI",	/* name */
    892  1.1  christos 	 FALSE,			/* partial_inplace */
    893  1.1  christos 	 0,			/* src_mask */
    894  1.1  christos 	 0xffff,		/* dst_mask */
    895  1.1  christos 	 FALSE),		/* pcrel_offset */
    896  1.1  christos 
    897  1.1  christos   /* Like DTPREL16_HI, but adjust for low 16 bits.  */
    898  1.1  christos   HOWTO (R_PPC_DTPREL16_HA,
    899  1.1  christos 	 16,			/* rightshift */
    900  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    901  1.1  christos 	 16,			/* bitsize */
    902  1.1  christos 	 FALSE,			/* pc_relative */
    903  1.1  christos 	 0,			/* bitpos */
    904  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    905  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    906  1.1  christos 	 "R_PPC_DTPREL16_HA",	/* name */
    907  1.1  christos 	 FALSE,			/* partial_inplace */
    908  1.1  christos 	 0,			/* src_mask */
    909  1.1  christos 	 0xffff,		/* dst_mask */
    910  1.1  christos 	 FALSE),		/* pcrel_offset */
    911  1.1  christos 
    912  1.1  christos   /* Computes a tp-relative displacement, the difference between the value of
    913  1.1  christos      sym+add and the value of the thread pointer (r13).  */
    914  1.1  christos   HOWTO (R_PPC_TPREL32,
    915  1.1  christos 	 0,			/* rightshift */
    916  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
    917  1.1  christos 	 32,			/* bitsize */
    918  1.1  christos 	 FALSE,			/* pc_relative */
    919  1.1  christos 	 0,			/* bitpos */
    920  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    921  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    922  1.1  christos 	 "R_PPC_TPREL32",	/* name */
    923  1.1  christos 	 FALSE,			/* partial_inplace */
    924  1.1  christos 	 0,			/* src_mask */
    925  1.1  christos 	 0xffffffff,		/* dst_mask */
    926  1.1  christos 	 FALSE),		/* pcrel_offset */
    927  1.1  christos 
    928  1.1  christos   /* A 16 bit tprel reloc.  */
    929  1.1  christos   HOWTO (R_PPC_TPREL16,
    930  1.1  christos 	 0,			/* rightshift */
    931  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    932  1.1  christos 	 16,			/* bitsize */
    933  1.1  christos 	 FALSE,			/* pc_relative */
    934  1.1  christos 	 0,			/* bitpos */
    935  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    936  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    937  1.1  christos 	 "R_PPC_TPREL16",	/* name */
    938  1.1  christos 	 FALSE,			/* partial_inplace */
    939  1.1  christos 	 0,			/* src_mask */
    940  1.1  christos 	 0xffff,		/* dst_mask */
    941  1.1  christos 	 FALSE),		/* pcrel_offset */
    942  1.1  christos 
    943  1.1  christos   /* Like TPREL16, but no overflow.  */
    944  1.1  christos   HOWTO (R_PPC_TPREL16_LO,
    945  1.1  christos 	 0,			/* rightshift */
    946  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    947  1.1  christos 	 16,			/* bitsize */
    948  1.1  christos 	 FALSE,			/* pc_relative */
    949  1.1  christos 	 0,			/* bitpos */
    950  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    951  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    952  1.1  christos 	 "R_PPC_TPREL16_LO",	/* name */
    953  1.1  christos 	 FALSE,			/* partial_inplace */
    954  1.1  christos 	 0,			/* src_mask */
    955  1.1  christos 	 0xffff,		/* dst_mask */
    956  1.1  christos 	 FALSE),		/* pcrel_offset */
    957  1.1  christos 
    958  1.1  christos   /* Like TPREL16_LO, but next higher group of 16 bits.  */
    959  1.1  christos   HOWTO (R_PPC_TPREL16_HI,
    960  1.1  christos 	 16,			/* rightshift */
    961  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    962  1.1  christos 	 16,			/* bitsize */
    963  1.1  christos 	 FALSE,			/* pc_relative */
    964  1.1  christos 	 0,			/* bitpos */
    965  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    966  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    967  1.1  christos 	 "R_PPC_TPREL16_HI",	/* name */
    968  1.1  christos 	 FALSE,			/* partial_inplace */
    969  1.1  christos 	 0,			/* src_mask */
    970  1.1  christos 	 0xffff,		/* dst_mask */
    971  1.1  christos 	 FALSE),		/* pcrel_offset */
    972  1.1  christos 
    973  1.1  christos   /* Like TPREL16_HI, but adjust for low 16 bits.  */
    974  1.1  christos   HOWTO (R_PPC_TPREL16_HA,
    975  1.1  christos 	 16,			/* rightshift */
    976  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    977  1.1  christos 	 16,			/* bitsize */
    978  1.1  christos 	 FALSE,			/* pc_relative */
    979  1.1  christos 	 0,			/* bitpos */
    980  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
    981  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    982  1.1  christos 	 "R_PPC_TPREL16_HA",	/* name */
    983  1.1  christos 	 FALSE,			/* partial_inplace */
    984  1.1  christos 	 0,			/* src_mask */
    985  1.1  christos 	 0xffff,		/* dst_mask */
    986  1.1  christos 	 FALSE),		/* pcrel_offset */
    987  1.1  christos 
    988  1.1  christos   /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
    989  1.1  christos      with values (sym+add)@dtpmod and (sym+add)@dtprel, and computes the offset
    990  1.1  christos      to the first entry.  */
    991  1.1  christos   HOWTO (R_PPC_GOT_TLSGD16,
    992  1.1  christos 	 0,			/* rightshift */
    993  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
    994  1.1  christos 	 16,			/* bitsize */
    995  1.1  christos 	 FALSE,			/* pc_relative */
    996  1.1  christos 	 0,			/* bitpos */
    997  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
    998  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
    999  1.1  christos 	 "R_PPC_GOT_TLSGD16",	/* name */
   1000  1.1  christos 	 FALSE,			/* partial_inplace */
   1001  1.1  christos 	 0,			/* src_mask */
   1002  1.1  christos 	 0xffff,		/* dst_mask */
   1003  1.1  christos 	 FALSE),		/* pcrel_offset */
   1004  1.1  christos 
   1005  1.1  christos   /* Like GOT_TLSGD16, but no overflow.  */
   1006  1.1  christos   HOWTO (R_PPC_GOT_TLSGD16_LO,
   1007  1.1  christos 	 0,			/* rightshift */
   1008  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1009  1.1  christos 	 16,			/* bitsize */
   1010  1.1  christos 	 FALSE,			/* pc_relative */
   1011  1.1  christos 	 0,			/* bitpos */
   1012  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1013  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1014  1.1  christos 	 "R_PPC_GOT_TLSGD16_LO", /* name */
   1015  1.1  christos 	 FALSE,			/* partial_inplace */
   1016  1.1  christos 	 0,			/* src_mask */
   1017  1.1  christos 	 0xffff,		/* dst_mask */
   1018  1.1  christos 	 FALSE),		/* pcrel_offset */
   1019  1.1  christos 
   1020  1.1  christos   /* Like GOT_TLSGD16_LO, but next higher group of 16 bits.  */
   1021  1.1  christos   HOWTO (R_PPC_GOT_TLSGD16_HI,
   1022  1.1  christos 	 16,			/* rightshift */
   1023  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1024  1.1  christos 	 16,			/* bitsize */
   1025  1.1  christos 	 FALSE,			/* pc_relative */
   1026  1.1  christos 	 0,			/* bitpos */
   1027  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1028  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1029  1.1  christos 	 "R_PPC_GOT_TLSGD16_HI", /* name */
   1030  1.1  christos 	 FALSE,			/* partial_inplace */
   1031  1.1  christos 	 0,			/* src_mask */
   1032  1.1  christos 	 0xffff,		/* dst_mask */
   1033  1.1  christos 	 FALSE),		/* pcrel_offset */
   1034  1.1  christos 
   1035  1.1  christos   /* Like GOT_TLSGD16_HI, but adjust for low 16 bits.  */
   1036  1.1  christos   HOWTO (R_PPC_GOT_TLSGD16_HA,
   1037  1.1  christos 	 16,			/* rightshift */
   1038  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1039  1.1  christos 	 16,			/* bitsize */
   1040  1.1  christos 	 FALSE,			/* pc_relative */
   1041  1.1  christos 	 0,			/* bitpos */
   1042  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1043  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1044  1.1  christos 	 "R_PPC_GOT_TLSGD16_HA", /* name */
   1045  1.1  christos 	 FALSE,			/* partial_inplace */
   1046  1.1  christos 	 0,			/* src_mask */
   1047  1.1  christos 	 0xffff,		/* dst_mask */
   1048  1.1  christos 	 FALSE),		/* pcrel_offset */
   1049  1.1  christos 
   1050  1.1  christos   /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
   1051  1.1  christos      with values (sym+add)@dtpmod and zero, and computes the offset to the
   1052  1.1  christos      first entry.  */
   1053  1.1  christos   HOWTO (R_PPC_GOT_TLSLD16,
   1054  1.1  christos 	 0,			/* rightshift */
   1055  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1056  1.1  christos 	 16,			/* bitsize */
   1057  1.1  christos 	 FALSE,			/* pc_relative */
   1058  1.1  christos 	 0,			/* bitpos */
   1059  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1060  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1061  1.1  christos 	 "R_PPC_GOT_TLSLD16",	/* name */
   1062  1.1  christos 	 FALSE,			/* partial_inplace */
   1063  1.1  christos 	 0,			/* src_mask */
   1064  1.1  christos 	 0xffff,		/* dst_mask */
   1065  1.1  christos 	 FALSE),		/* pcrel_offset */
   1066  1.1  christos 
   1067  1.1  christos   /* Like GOT_TLSLD16, but no overflow.  */
   1068  1.1  christos   HOWTO (R_PPC_GOT_TLSLD16_LO,
   1069  1.1  christos 	 0,			/* rightshift */
   1070  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1071  1.1  christos 	 16,			/* bitsize */
   1072  1.1  christos 	 FALSE,			/* pc_relative */
   1073  1.1  christos 	 0,			/* bitpos */
   1074  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1075  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1076  1.1  christos 	 "R_PPC_GOT_TLSLD16_LO", /* name */
   1077  1.1  christos 	 FALSE,			/* partial_inplace */
   1078  1.1  christos 	 0,			/* src_mask */
   1079  1.1  christos 	 0xffff,		/* dst_mask */
   1080  1.1  christos 	 FALSE),		/* pcrel_offset */
   1081  1.1  christos 
   1082  1.1  christos   /* Like GOT_TLSLD16_LO, but next higher group of 16 bits.  */
   1083  1.1  christos   HOWTO (R_PPC_GOT_TLSLD16_HI,
   1084  1.1  christos 	 16,			/* rightshift */
   1085  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1086  1.1  christos 	 16,			/* bitsize */
   1087  1.1  christos 	 FALSE,			/* pc_relative */
   1088  1.1  christos 	 0,			/* bitpos */
   1089  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1090  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1091  1.1  christos 	 "R_PPC_GOT_TLSLD16_HI", /* name */
   1092  1.1  christos 	 FALSE,			/* partial_inplace */
   1093  1.1  christos 	 0,			/* src_mask */
   1094  1.1  christos 	 0xffff,		/* dst_mask */
   1095  1.1  christos 	 FALSE),		/* pcrel_offset */
   1096  1.1  christos 
   1097  1.1  christos   /* Like GOT_TLSLD16_HI, but adjust for low 16 bits.  */
   1098  1.1  christos   HOWTO (R_PPC_GOT_TLSLD16_HA,
   1099  1.1  christos 	 16,			/* rightshift */
   1100  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1101  1.1  christos 	 16,			/* bitsize */
   1102  1.1  christos 	 FALSE,			/* pc_relative */
   1103  1.1  christos 	 0,			/* bitpos */
   1104  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1105  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1106  1.1  christos 	 "R_PPC_GOT_TLSLD16_HA", /* name */
   1107  1.1  christos 	 FALSE,			/* partial_inplace */
   1108  1.1  christos 	 0,			/* src_mask */
   1109  1.1  christos 	 0xffff,		/* dst_mask */
   1110  1.1  christos 	 FALSE),		/* pcrel_offset */
   1111  1.1  christos 
   1112  1.1  christos   /* Allocates an entry in the GOT with value (sym+add)@dtprel, and computes
   1113  1.1  christos      the offset to the entry.  */
   1114  1.1  christos   HOWTO (R_PPC_GOT_DTPREL16,
   1115  1.1  christos 	 0,			/* rightshift */
   1116  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1117  1.1  christos 	 16,			/* bitsize */
   1118  1.1  christos 	 FALSE,			/* pc_relative */
   1119  1.1  christos 	 0,			/* bitpos */
   1120  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1121  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1122  1.1  christos 	 "R_PPC_GOT_DTPREL16",	/* name */
   1123  1.1  christos 	 FALSE,			/* partial_inplace */
   1124  1.1  christos 	 0,			/* src_mask */
   1125  1.1  christos 	 0xffff,		/* dst_mask */
   1126  1.1  christos 	 FALSE),		/* pcrel_offset */
   1127  1.1  christos 
   1128  1.1  christos   /* Like GOT_DTPREL16, but no overflow.  */
   1129  1.1  christos   HOWTO (R_PPC_GOT_DTPREL16_LO,
   1130  1.1  christos 	 0,			/* rightshift */
   1131  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1132  1.1  christos 	 16,			/* bitsize */
   1133  1.1  christos 	 FALSE,			/* pc_relative */
   1134  1.1  christos 	 0,			/* bitpos */
   1135  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1136  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1137  1.1  christos 	 "R_PPC_GOT_DTPREL16_LO", /* name */
   1138  1.1  christos 	 FALSE,			/* partial_inplace */
   1139  1.1  christos 	 0,			/* src_mask */
   1140  1.1  christos 	 0xffff,		/* dst_mask */
   1141  1.1  christos 	 FALSE),		/* pcrel_offset */
   1142  1.1  christos 
   1143  1.1  christos   /* Like GOT_DTPREL16_LO, but next higher group of 16 bits.  */
   1144  1.1  christos   HOWTO (R_PPC_GOT_DTPREL16_HI,
   1145  1.1  christos 	 16,			/* rightshift */
   1146  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1147  1.1  christos 	 16,			/* bitsize */
   1148  1.1  christos 	 FALSE,			/* pc_relative */
   1149  1.1  christos 	 0,			/* bitpos */
   1150  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1151  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1152  1.1  christos 	 "R_PPC_GOT_DTPREL16_HI", /* name */
   1153  1.1  christos 	 FALSE,			/* partial_inplace */
   1154  1.1  christos 	 0,			/* src_mask */
   1155  1.1  christos 	 0xffff,		/* dst_mask */
   1156  1.1  christos 	 FALSE),		/* pcrel_offset */
   1157  1.1  christos 
   1158  1.1  christos   /* Like GOT_DTPREL16_HI, but adjust for low 16 bits.  */
   1159  1.1  christos   HOWTO (R_PPC_GOT_DTPREL16_HA,
   1160  1.1  christos 	 16,			/* rightshift */
   1161  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1162  1.1  christos 	 16,			/* bitsize */
   1163  1.1  christos 	 FALSE,			/* pc_relative */
   1164  1.1  christos 	 0,			/* bitpos */
   1165  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1166  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1167  1.1  christos 	 "R_PPC_GOT_DTPREL16_HA", /* name */
   1168  1.1  christos 	 FALSE,			/* partial_inplace */
   1169  1.1  christos 	 0,			/* src_mask */
   1170  1.1  christos 	 0xffff,		/* dst_mask */
   1171  1.1  christos 	 FALSE),		/* pcrel_offset */
   1172  1.1  christos 
   1173  1.1  christos   /* Allocates an entry in the GOT with value (sym+add)@tprel, and computes the
   1174  1.1  christos      offset to the entry.  */
   1175  1.1  christos   HOWTO (R_PPC_GOT_TPREL16,
   1176  1.1  christos 	 0,			/* rightshift */
   1177  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1178  1.1  christos 	 16,			/* bitsize */
   1179  1.1  christos 	 FALSE,			/* pc_relative */
   1180  1.1  christos 	 0,			/* bitpos */
   1181  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1182  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1183  1.1  christos 	 "R_PPC_GOT_TPREL16",	/* name */
   1184  1.1  christos 	 FALSE,			/* partial_inplace */
   1185  1.1  christos 	 0,			/* src_mask */
   1186  1.1  christos 	 0xffff,		/* dst_mask */
   1187  1.1  christos 	 FALSE),		/* pcrel_offset */
   1188  1.1  christos 
   1189  1.1  christos   /* Like GOT_TPREL16, but no overflow.  */
   1190  1.1  christos   HOWTO (R_PPC_GOT_TPREL16_LO,
   1191  1.1  christos 	 0,			/* rightshift */
   1192  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1193  1.1  christos 	 16,			/* bitsize */
   1194  1.1  christos 	 FALSE,			/* pc_relative */
   1195  1.1  christos 	 0,			/* bitpos */
   1196  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1197  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1198  1.1  christos 	 "R_PPC_GOT_TPREL16_LO", /* name */
   1199  1.1  christos 	 FALSE,			/* partial_inplace */
   1200  1.1  christos 	 0,			/* src_mask */
   1201  1.1  christos 	 0xffff,		/* dst_mask */
   1202  1.1  christos 	 FALSE),		/* pcrel_offset */
   1203  1.1  christos 
   1204  1.1  christos   /* Like GOT_TPREL16_LO, but next higher group of 16 bits.  */
   1205  1.1  christos   HOWTO (R_PPC_GOT_TPREL16_HI,
   1206  1.1  christos 	 16,			/* rightshift */
   1207  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1208  1.1  christos 	 16,			/* bitsize */
   1209  1.1  christos 	 FALSE,			/* pc_relative */
   1210  1.1  christos 	 0,			/* bitpos */
   1211  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1212  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1213  1.1  christos 	 "R_PPC_GOT_TPREL16_HI", /* name */
   1214  1.1  christos 	 FALSE,			/* partial_inplace */
   1215  1.1  christos 	 0,			/* src_mask */
   1216  1.1  christos 	 0xffff,		/* dst_mask */
   1217  1.1  christos 	 FALSE),		/* pcrel_offset */
   1218  1.1  christos 
   1219  1.1  christos   /* Like GOT_TPREL16_HI, but adjust for low 16 bits.  */
   1220  1.1  christos   HOWTO (R_PPC_GOT_TPREL16_HA,
   1221  1.1  christos 	 16,			/* rightshift */
   1222  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1223  1.1  christos 	 16,			/* bitsize */
   1224  1.1  christos 	 FALSE,			/* pc_relative */
   1225  1.1  christos 	 0,			/* bitpos */
   1226  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1227  1.1  christos 	 ppc_elf_unhandled_reloc, /* special_function */
   1228  1.1  christos 	 "R_PPC_GOT_TPREL16_HA", /* name */
   1229  1.1  christos 	 FALSE,			/* partial_inplace */
   1230  1.1  christos 	 0,			/* src_mask */
   1231  1.1  christos 	 0xffff,		/* dst_mask */
   1232  1.1  christos 	 FALSE),		/* pcrel_offset */
   1233  1.1  christos 
   1234  1.1  christos   /* The remaining relocs are from the Embedded ELF ABI, and are not
   1235  1.1  christos      in the SVR4 ELF ABI.  */
   1236  1.1  christos 
   1237  1.1  christos   /* 32 bit value resulting from the addend minus the symbol.  */
   1238  1.1  christos   HOWTO (R_PPC_EMB_NADDR32,	/* type */
   1239  1.1  christos 	 0,			/* rightshift */
   1240  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1241  1.1  christos 	 32,			/* bitsize */
   1242  1.1  christos 	 FALSE,			/* pc_relative */
   1243  1.1  christos 	 0,			/* bitpos */
   1244  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1245  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1246  1.1  christos 	 "R_PPC_EMB_NADDR32",	/* name */
   1247  1.1  christos 	 FALSE,			/* partial_inplace */
   1248  1.1  christos 	 0,			/* src_mask */
   1249  1.1  christos 	 0xffffffff,		/* dst_mask */
   1250  1.1  christos 	 FALSE),		/* pcrel_offset */
   1251  1.1  christos 
   1252  1.1  christos   /* 16 bit value resulting from the addend minus the symbol.  */
   1253  1.1  christos   HOWTO (R_PPC_EMB_NADDR16,	/* type */
   1254  1.1  christos 	 0,			/* rightshift */
   1255  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1256  1.1  christos 	 16,			/* bitsize */
   1257  1.1  christos 	 FALSE,			/* pc_relative */
   1258  1.1  christos 	 0,			/* bitpos */
   1259  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1260  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1261  1.1  christos 	 "R_PPC_EMB_NADDR16",	/* name */
   1262  1.1  christos 	 FALSE,			/* partial_inplace */
   1263  1.1  christos 	 0,			/* src_mask */
   1264  1.1  christos 	 0xffff,		/* dst_mask */
   1265  1.1  christos 	 FALSE),		/* pcrel_offset */
   1266  1.1  christos 
   1267  1.1  christos   /* 16 bit value resulting from the addend minus the symbol.  */
   1268  1.1  christos   HOWTO (R_PPC_EMB_NADDR16_LO,	/* type */
   1269  1.1  christos 	 0,			/* rightshift */
   1270  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1271  1.1  christos 	 16,			/* bitsize */
   1272  1.1  christos 	 FALSE,			/* pc_relative */
   1273  1.1  christos 	 0,			/* bitpos */
   1274  1.1  christos 	 complain_overflow_dont,/* complain_on_overflow */
   1275  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1276  1.1  christos 	 "R_PPC_EMB_ADDR16_LO",	/* name */
   1277  1.1  christos 	 FALSE,			/* partial_inplace */
   1278  1.1  christos 	 0,			/* src_mask */
   1279  1.1  christos 	 0xffff,		/* dst_mask */
   1280  1.1  christos 	 FALSE),		/* pcrel_offset */
   1281  1.1  christos 
   1282  1.1  christos   /* The high order 16 bits of the addend minus the symbol.  */
   1283  1.1  christos   HOWTO (R_PPC_EMB_NADDR16_HI,	/* type */
   1284  1.1  christos 	 16,			/* rightshift */
   1285  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1286  1.1  christos 	 16,			/* bitsize */
   1287  1.1  christos 	 FALSE,			/* pc_relative */
   1288  1.1  christos 	 0,			/* bitpos */
   1289  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1290  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1291  1.1  christos 	 "R_PPC_EMB_NADDR16_HI", /* name */
   1292  1.1  christos 	 FALSE,			/* partial_inplace */
   1293  1.1  christos 	 0,			/* src_mask */
   1294  1.1  christos 	 0xffff,		/* dst_mask */
   1295  1.1  christos 	 FALSE),		/* pcrel_offset */
   1296  1.1  christos 
   1297  1.1  christos   /* The high order 16 bits of the result of the addend minus the address,
   1298  1.1  christos      plus 1 if the contents of the low 16 bits, treated as a signed number,
   1299  1.1  christos      is negative.  */
   1300  1.1  christos   HOWTO (R_PPC_EMB_NADDR16_HA,	/* type */
   1301  1.1  christos 	 16,			/* rightshift */
   1302  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1303  1.1  christos 	 16,			/* bitsize */
   1304  1.1  christos 	 FALSE,			/* pc_relative */
   1305  1.1  christos 	 0,			/* bitpos */
   1306  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1307  1.1  christos 	 ppc_elf_addr16_ha_reloc, /* special_function */
   1308  1.1  christos 	 "R_PPC_EMB_NADDR16_HA", /* name */
   1309  1.1  christos 	 FALSE,			/* partial_inplace */
   1310  1.1  christos 	 0,			/* src_mask */
   1311  1.1  christos 	 0xffff,		/* dst_mask */
   1312  1.1  christos 	 FALSE),		/* pcrel_offset */
   1313  1.1  christos 
   1314  1.1  christos   /* 16 bit value resulting from allocating a 4 byte word to hold an
   1315  1.1  christos      address in the .sdata section, and returning the offset from
   1316  1.1  christos      _SDA_BASE_ for that relocation.  */
   1317  1.1  christos   HOWTO (R_PPC_EMB_SDAI16,	/* type */
   1318  1.1  christos 	 0,			/* rightshift */
   1319  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1320  1.1  christos 	 16,			/* bitsize */
   1321  1.1  christos 	 FALSE,			/* pc_relative */
   1322  1.1  christos 	 0,			/* bitpos */
   1323  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1324  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1325  1.1  christos 	 "R_PPC_EMB_SDAI16",	/* name */
   1326  1.1  christos 	 FALSE,			/* partial_inplace */
   1327  1.1  christos 	 0,			/* src_mask */
   1328  1.1  christos 	 0xffff,		/* dst_mask */
   1329  1.1  christos 	 FALSE),		/* pcrel_offset */
   1330  1.1  christos 
   1331  1.1  christos   /* 16 bit value resulting from allocating a 4 byte word to hold an
   1332  1.1  christos      address in the .sdata2 section, and returning the offset from
   1333  1.1  christos      _SDA2_BASE_ for that relocation.  */
   1334  1.1  christos   HOWTO (R_PPC_EMB_SDA2I16,	/* type */
   1335  1.1  christos 	 0,			/* rightshift */
   1336  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1337  1.1  christos 	 16,			/* bitsize */
   1338  1.1  christos 	 FALSE,			/* pc_relative */
   1339  1.1  christos 	 0,			/* bitpos */
   1340  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1341  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1342  1.1  christos 	 "R_PPC_EMB_SDA2I16",	/* name */
   1343  1.1  christos 	 FALSE,			/* partial_inplace */
   1344  1.1  christos 	 0,			/* src_mask */
   1345  1.1  christos 	 0xffff,		/* dst_mask */
   1346  1.1  christos 	 FALSE),		/* pcrel_offset */
   1347  1.1  christos 
   1348  1.1  christos   /* A sign-extended 16 bit value relative to _SDA2_BASE_, for use with
   1349  1.1  christos      small data items.	 */
   1350  1.1  christos   HOWTO (R_PPC_EMB_SDA2REL,	/* type */
   1351  1.1  christos 	 0,			/* rightshift */
   1352  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1353  1.1  christos 	 16,			/* bitsize */
   1354  1.1  christos 	 FALSE,			/* pc_relative */
   1355  1.1  christos 	 0,			/* bitpos */
   1356  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1357  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1358  1.1  christos 	 "R_PPC_EMB_SDA2REL",	/* name */
   1359  1.1  christos 	 FALSE,			/* partial_inplace */
   1360  1.1  christos 	 0,			/* src_mask */
   1361  1.1  christos 	 0xffff,		/* dst_mask */
   1362  1.1  christos 	 FALSE),		/* pcrel_offset */
   1363  1.1  christos 
   1364  1.1  christos   /* Relocate against either _SDA_BASE_ or _SDA2_BASE_, filling in the 16 bit
   1365  1.1  christos      signed offset from the appropriate base, and filling in the register
   1366  1.1  christos      field with the appropriate register (0, 2, or 13).  */
   1367  1.1  christos   HOWTO (R_PPC_EMB_SDA21,	/* type */
   1368  1.1  christos 	 0,			/* rightshift */
   1369  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1370  1.1  christos 	 16,			/* bitsize */
   1371  1.1  christos 	 FALSE,			/* pc_relative */
   1372  1.1  christos 	 0,			/* bitpos */
   1373  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1374  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1375  1.1  christos 	 "R_PPC_EMB_SDA21",	/* name */
   1376  1.1  christos 	 FALSE,			/* partial_inplace */
   1377  1.1  christos 	 0,			/* src_mask */
   1378  1.1  christos 	 0xffff,		/* dst_mask */
   1379  1.1  christos 	 FALSE),		/* pcrel_offset */
   1380  1.1  christos 
   1381  1.1  christos   /* Relocation not handled: R_PPC_EMB_MRKREF */
   1382  1.1  christos   /* Relocation not handled: R_PPC_EMB_RELSEC16 */
   1383  1.1  christos   /* Relocation not handled: R_PPC_EMB_RELST_LO */
   1384  1.1  christos   /* Relocation not handled: R_PPC_EMB_RELST_HI */
   1385  1.1  christos   /* Relocation not handled: R_PPC_EMB_RELST_HA */
   1386  1.1  christos   /* Relocation not handled: R_PPC_EMB_BIT_FLD */
   1387  1.1  christos 
   1388  1.1  christos   /* PC relative relocation against either _SDA_BASE_ or _SDA2_BASE_, filling
   1389  1.1  christos      in the 16 bit signed offset from the appropriate base, and filling in the
   1390  1.1  christos      register field with the appropriate register (0, 2, or 13).  */
   1391  1.1  christos   HOWTO (R_PPC_EMB_RELSDA,	/* type */
   1392  1.1  christos 	 0,			/* rightshift */
   1393  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1394  1.1  christos 	 16,			/* bitsize */
   1395  1.1  christos 	 FALSE,			/* pc_relative */
   1396  1.1  christos 	 0,			/* bitpos */
   1397  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1398  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1399  1.1  christos 	 "R_PPC_EMB_RELSDA",	/* name */
   1400  1.1  christos 	 FALSE,			/* partial_inplace */
   1401  1.1  christos 	 0,			/* src_mask */
   1402  1.1  christos 	 0xffff,		/* dst_mask */
   1403  1.1  christos 	 FALSE),		/* pcrel_offset */
   1404  1.1  christos 
   1405  1.1  christos   /* A relative 8 bit branch.  */
   1406  1.1  christos   HOWTO (R_PPC_VLE_REL8,	/* type */
   1407  1.1  christos 	 1,			/* rightshift */
   1408  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1409  1.1  christos 	 8,			/* bitsize */
   1410  1.1  christos 	 TRUE,			/* pc_relative */
   1411  1.1  christos 	 0,			/* bitpos */
   1412  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1413  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1414  1.1  christos 	 "R_PPC_VLE_REL8",	/* name */
   1415  1.1  christos 	 FALSE,			/* partial_inplace */
   1416  1.1  christos 	 0,			/* src_mask */
   1417  1.1  christos 	 0xff,			/* dst_mask */
   1418  1.1  christos 	 TRUE),			/* pcrel_offset */
   1419  1.1  christos 
   1420  1.1  christos   /* A relative 15 bit branch.  */
   1421  1.1  christos   HOWTO (R_PPC_VLE_REL15,	/* type */
   1422  1.1  christos 	 1,			/* rightshift */
   1423  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1424  1.1  christos 	 15,			/* bitsize */
   1425  1.1  christos 	 TRUE,			/* pc_relative */
   1426  1.1  christos 	 1,			/* bitpos */
   1427  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1428  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1429  1.1  christos 	 "R_PPC_VLE_REL15",	/* name */
   1430  1.1  christos 	 FALSE,			/* partial_inplace */
   1431  1.1  christos 	 0,			/* src_mask */
   1432  1.1  christos 	 0xfe,			/* dst_mask */
   1433  1.1  christos 	 TRUE),			/* pcrel_offset */
   1434  1.1  christos 
   1435  1.1  christos   /* A relative 24 bit branch.  */
   1436  1.1  christos   HOWTO (R_PPC_VLE_REL24,	/* type */
   1437  1.1  christos 	 1,			/* rightshift */
   1438  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1439  1.1  christos 	 24,			/* bitsize */
   1440  1.1  christos 	 TRUE,			/* pc_relative */
   1441  1.1  christos 	 1,			/* bitpos */
   1442  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1443  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1444  1.1  christos 	 "R_PPC_VLE_REL24",	/* name */
   1445  1.1  christos 	 FALSE,			/* partial_inplace */
   1446  1.1  christos 	 0,			/* src_mask */
   1447  1.1  christos 	 0x1fffffe,		/* dst_mask */
   1448  1.1  christos 	 TRUE),			/* pcrel_offset */
   1449  1.1  christos 
   1450  1.1  christos   /* The 16 LSBS in split16a format.  */
   1451  1.1  christos   HOWTO (R_PPC_VLE_LO16A,	/* type */
   1452  1.1  christos 	 0,			/* rightshift */
   1453  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1454  1.1  christos 	 32,			/* bitsize */
   1455  1.1  christos 	 FALSE,			/* pc_relative */
   1456  1.1  christos 	 0,			/* bitpos */
   1457  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1458  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1459  1.1  christos 	 "R_PPC_VLE_LO16A",	/* name */
   1460  1.1  christos 	 FALSE,			/* partial_inplace */
   1461  1.1  christos 	 0,			/* src_mask */
   1462  1.1  christos 	 0x1f007ff,		/* dst_mask */
   1463  1.1  christos 	 FALSE),		/* pcrel_offset */
   1464  1.1  christos 
   1465  1.1  christos   /* The 16 LSBS in split16d format.  */
   1466  1.1  christos   HOWTO (R_PPC_VLE_LO16D,	/* type */
   1467  1.1  christos 	 0,			/* rightshift */
   1468  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1469  1.1  christos 	 32,			/* bitsize */
   1470  1.1  christos 	 FALSE,			/* pc_relative */
   1471  1.1  christos 	 0,			/* bitpos */
   1472  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1473  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1474  1.1  christos 	 "R_PPC_VLE_LO16D",		/* name */
   1475  1.1  christos 	 FALSE,			/* partial_inplace */
   1476  1.1  christos 	 0,			/* src_mask */
   1477  1.1  christos 	 0x1f07ff,		/* dst_mask */
   1478  1.1  christos 	 FALSE),		/* pcrel_offset */
   1479  1.1  christos 
   1480  1.1  christos   /* Bits 16-31 split16a format.  */
   1481  1.1  christos   HOWTO (R_PPC_VLE_HI16A,	/* type */
   1482  1.1  christos 	 0,			/* rightshift */
   1483  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1484  1.1  christos 	 32,			/* bitsize */
   1485  1.1  christos 	 FALSE,			/* pc_relative */
   1486  1.1  christos 	 0,			/* bitpos */
   1487  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1488  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1489  1.1  christos 	 "R_PPC_VLE_HI16A",		/* name */
   1490  1.1  christos 	 FALSE,			/* partial_inplace */
   1491  1.1  christos 	 0,			/* src_mask */
   1492  1.1  christos 	 0x1f007ff,		/* dst_mask */
   1493  1.1  christos 	 FALSE),		/* pcrel_offset */
   1494  1.1  christos 
   1495  1.1  christos   /* Bits 16-31 split16d format.  */
   1496  1.1  christos   HOWTO (R_PPC_VLE_HI16D,	/* type */
   1497  1.1  christos 	 0,			/* rightshift */
   1498  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1499  1.1  christos 	 32,			/* bitsize */
   1500  1.1  christos 	 FALSE,			/* pc_relative */
   1501  1.1  christos 	 0,			/* bitpos */
   1502  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1503  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1504  1.1  christos 	 "R_PPC_VLE_HI16D",		/* name */
   1505  1.1  christos 	 FALSE,			/* partial_inplace */
   1506  1.1  christos 	 0,			/* src_mask */
   1507  1.1  christos 	 0x1f07ff,		/* dst_mask */
   1508  1.1  christos 	 FALSE),		/* pcrel_offset */
   1509  1.1  christos 
   1510  1.1  christos   /* Bits 16-31 (High Adjusted) in split16a format.  */
   1511  1.1  christos   HOWTO (R_PPC_VLE_HA16A,	/* type */
   1512  1.1  christos 	 0,			/* rightshift */
   1513  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1514  1.1  christos 	 32,			/* bitsize */
   1515  1.1  christos 	 FALSE,			/* pc_relative */
   1516  1.1  christos 	 0,			/* bitpos */
   1517  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1518  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1519  1.1  christos 	 "R_PPC_VLE_HA16A",		/* name */
   1520  1.1  christos 	 FALSE,			/* partial_inplace */
   1521  1.1  christos 	 0,			/* src_mask */
   1522  1.1  christos 	 0x1f007ff,		/* dst_mask */
   1523  1.1  christos 	 FALSE),		/* pcrel_offset */
   1524  1.1  christos 
   1525  1.1  christos   /* Bits 16-31 (High Adjusted) in split16d format.  */
   1526  1.1  christos   HOWTO (R_PPC_VLE_HA16D,	/* type */
   1527  1.1  christos 	 0,			/* rightshift */
   1528  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1529  1.1  christos 	 32,			/* bitsize */
   1530  1.1  christos 	 FALSE,			/* pc_relative */
   1531  1.1  christos 	 0,			/* bitpos */
   1532  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1533  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1534  1.1  christos 	 "R_PPC_VLE_HA16D",		/* name */
   1535  1.1  christos 	 FALSE,			/* partial_inplace */
   1536  1.1  christos 	 0,			/* src_mask */
   1537  1.1  christos 	 0x1f07ff,		/* dst_mask */
   1538  1.1  christos 	 FALSE),		/* pcrel_offset */
   1539  1.1  christos 
   1540  1.1  christos   /* This reloc does nothing.  */
   1541  1.1  christos   HOWTO (R_PPC_VLE_SDA21,		/* type */
   1542  1.1  christos 	 0,			/* rightshift */
   1543  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1544  1.1  christos 	 32,			/* bitsize */
   1545  1.1  christos 	 FALSE,			/* pc_relative */
   1546  1.1  christos 	 0,			/* bitpos */
   1547  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1548  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1549  1.1  christos 	 "R_PPC_VLE_SDA21",		/* name */
   1550  1.1  christos 	 FALSE,			/* partial_inplace */
   1551  1.1  christos 	 0,			/* src_mask */
   1552  1.1  christos 	 0xffff,		/* dst_mask */
   1553  1.1  christos 	 FALSE),		/* pcrel_offset */
   1554  1.1  christos 
   1555  1.1  christos   /* This reloc does nothing.  */
   1556  1.1  christos   HOWTO (R_PPC_VLE_SDA21_LO,	/* type */
   1557  1.1  christos 	 0,			/* rightshift */
   1558  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1559  1.1  christos 	 32,			/* bitsize */
   1560  1.1  christos 	 FALSE,			/* pc_relative */
   1561  1.1  christos 	 0,			/* bitpos */
   1562  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1563  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1564  1.1  christos 	 "R_PPC_VLE_SDA21_LO",	/* name */
   1565  1.1  christos 	 FALSE,			/* partial_inplace */
   1566  1.1  christos 	 0,			/* src_mask */
   1567  1.1  christos 	 0,			/* dst_mask */
   1568  1.1  christos 	 FALSE),		/* pcrel_offset */
   1569  1.1  christos 
   1570  1.1  christos   /* The 16 LSBS relative to _SDA_BASE_ in split16a format.  */
   1571  1.1  christos   HOWTO (R_PPC_VLE_SDAREL_LO16A,/* type */
   1572  1.1  christos 	 0,			/* rightshift */
   1573  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1574  1.1  christos 	 32,			/* bitsize */
   1575  1.1  christos 	 FALSE,			/* pc_relative */
   1576  1.1  christos 	 0,			/* bitpos */
   1577  1.1  christos 	 complain_overflow_bitfield,	/* complain_on_overflow */
   1578  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1579  1.1  christos 	 "R_PPC_VLE_SDAREL_LO16A",	/* name */
   1580  1.1  christos 	 FALSE,			/* partial_inplace */
   1581  1.1  christos 	 0,			/* src_mask */
   1582  1.1  christos 	 0x1f007ff,		/* dst_mask */
   1583  1.1  christos 	 FALSE),		/* pcrel_offset */
   1584  1.1  christos 
   1585  1.1  christos   /* The 16 LSBS relative to _SDA_BASE_ in split16d format.  */
   1586  1.1  christos   /* This reloc does nothing.  */
   1587  1.1  christos   HOWTO (R_PPC_VLE_SDAREL_LO16D, /* type */
   1588  1.1  christos 	 0,			/* rightshift */
   1589  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1590  1.1  christos 	 32,			/* bitsize */
   1591  1.1  christos 	 FALSE,			/* pc_relative */
   1592  1.1  christos 	 0,			/* bitpos */
   1593  1.1  christos 	 complain_overflow_bitfield,	/* complain_on_overflow */
   1594  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1595  1.1  christos 	 "R_PPC_VLE_SDAREL_LO16D",		/* name */
   1596  1.1  christos 	 FALSE,			/* partial_inplace */
   1597  1.1  christos 	 0,			/* src_mask */
   1598  1.1  christos 	 0x1f07ff,		/* dst_mask */
   1599  1.1  christos 	 FALSE),		/* pcrel_offset */
   1600  1.1  christos 
   1601  1.1  christos   /* Bits 16-31 relative to _SDA_BASE_ in split16a format.  */
   1602  1.1  christos   HOWTO (R_PPC_VLE_SDAREL_HI16A,	/* type */
   1603  1.1  christos 	 0,			/* rightshift */
   1604  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1605  1.1  christos 	 32,			/* bitsize */
   1606  1.1  christos 	 FALSE,			/* pc_relative */
   1607  1.1  christos 	 0,			/* bitpos */
   1608  1.1  christos 	 complain_overflow_bitfield,	/* complain_on_overflow */
   1609  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1610  1.1  christos 	 "R_PPC_VLE_SDAREL_HI16A",	/* name */
   1611  1.1  christos 	 FALSE,			/* partial_inplace */
   1612  1.1  christos 	 0,			/* src_mask */
   1613  1.1  christos 	 0x1f007ff,		/* dst_mask */
   1614  1.1  christos 	 FALSE),		/* pcrel_offset */
   1615  1.1  christos 
   1616  1.1  christos   /* Bits 16-31 relative to _SDA_BASE_ in split16d format.  */
   1617  1.1  christos   HOWTO (R_PPC_VLE_SDAREL_HI16D,	/* type */
   1618  1.1  christos 	 0,			/* rightshift */
   1619  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1620  1.1  christos 	 32,			/* bitsize */
   1621  1.1  christos 	 FALSE,			/* pc_relative */
   1622  1.1  christos 	 0,			/* bitpos */
   1623  1.1  christos 	 complain_overflow_bitfield,	/* complain_on_overflow */
   1624  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1625  1.1  christos 	 "R_PPC_VLE_SDAREL_HI16D",	/* name */
   1626  1.1  christos 	 FALSE,			/* partial_inplace */
   1627  1.1  christos 	 0,			/* src_mask */
   1628  1.1  christos 	 0x1f07ff,		/* dst_mask */
   1629  1.1  christos 	 FALSE),		/* pcrel_offset */
   1630  1.1  christos 
   1631  1.1  christos   /* Bits 16-31 (HA) relative to _SDA_BASE split16a format.  */
   1632  1.1  christos   HOWTO (R_PPC_VLE_SDAREL_HA16A,	/* type */
   1633  1.1  christos 	 0,			/* rightshift */
   1634  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1635  1.1  christos 	 32,			/* bitsize */
   1636  1.1  christos 	 FALSE,			/* pc_relative */
   1637  1.1  christos 	 0,			/* bitpos */
   1638  1.1  christos 	 complain_overflow_bitfield,	/* complain_on_overflow */
   1639  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1640  1.1  christos 	 "R_PPC_VLE_SDAREL_HA16A",	/* name */
   1641  1.1  christos 	 FALSE,			/* partial_inplace */
   1642  1.1  christos 	 0,			/* src_mask */
   1643  1.1  christos 	 0x1f007ff,		/* dst_mask */
   1644  1.1  christos 	 FALSE),		/* pcrel_offset */
   1645  1.1  christos 
   1646  1.1  christos   /* Bits 16-31 (HA) relative to _SDA_BASE split16d format.  */
   1647  1.1  christos   HOWTO (R_PPC_VLE_SDAREL_HA16D,	/* type */
   1648  1.1  christos 	 0,			/* rightshift */
   1649  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1650  1.1  christos 	 32,			/* bitsize */
   1651  1.1  christos 	 FALSE,			/* pc_relative */
   1652  1.1  christos 	 0,			/* bitpos */
   1653  1.1  christos 	 complain_overflow_bitfield,	/* complain_on_overflow */
   1654  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1655  1.1  christos 	 "R_PPC_VLE_SDAREL_HA16D",	/* name */
   1656  1.1  christos 	 FALSE,			/* partial_inplace */
   1657  1.1  christos 	 0,			/* src_mask */
   1658  1.1  christos 	 0x1f07ff,		/* dst_mask */
   1659  1.1  christos 	 FALSE),		/* pcrel_offset */
   1660  1.1  christos 
   1661  1.1  christos   HOWTO (R_PPC_IRELATIVE,	/* type */
   1662  1.1  christos 	 0,			/* rightshift */
   1663  1.1  christos 	 2,			/* size (0 = byte, 1 = short, 2 = long) */
   1664  1.1  christos 	 32,			/* bitsize */
   1665  1.1  christos 	 FALSE,			/* pc_relative */
   1666  1.1  christos 	 0,			/* bitpos */
   1667  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1668  1.1  christos 	 bfd_elf_generic_reloc,	 /* special_function */
   1669  1.1  christos 	 "R_PPC_IRELATIVE",	/* name */
   1670  1.1  christos 	 FALSE,			/* partial_inplace */
   1671  1.1  christos 	 0,			/* src_mask */
   1672  1.1  christos 	 0xffffffff,		/* dst_mask */
   1673  1.1  christos 	 FALSE),		/* pcrel_offset */
   1674  1.1  christos 
   1675  1.1  christos   /* A 16 bit relative relocation.  */
   1676  1.1  christos   HOWTO (R_PPC_REL16,		/* type */
   1677  1.1  christos 	 0,			/* rightshift */
   1678  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1679  1.1  christos 	 16,			/* bitsize */
   1680  1.1  christos 	 TRUE,			/* pc_relative */
   1681  1.1  christos 	 0,			/* bitpos */
   1682  1.1  christos 	 complain_overflow_bitfield, /* complain_on_overflow */
   1683  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1684  1.1  christos 	 "R_PPC_REL16",		/* name */
   1685  1.1  christos 	 FALSE,			/* partial_inplace */
   1686  1.1  christos 	 0,			/* src_mask */
   1687  1.1  christos 	 0xffff,		/* dst_mask */
   1688  1.1  christos 	 TRUE),			/* pcrel_offset */
   1689  1.1  christos 
   1690  1.1  christos   /* A 16 bit relative relocation without overflow.  */
   1691  1.1  christos   HOWTO (R_PPC_REL16_LO,	/* type */
   1692  1.1  christos 	 0,			/* rightshift */
   1693  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1694  1.1  christos 	 16,			/* bitsize */
   1695  1.1  christos 	 TRUE,			/* pc_relative */
   1696  1.1  christos 	 0,			/* bitpos */
   1697  1.1  christos 	 complain_overflow_dont,/* complain_on_overflow */
   1698  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1699  1.1  christos 	 "R_PPC_REL16_LO",	/* name */
   1700  1.1  christos 	 FALSE,			/* partial_inplace */
   1701  1.1  christos 	 0,			/* src_mask */
   1702  1.1  christos 	 0xffff,		/* dst_mask */
   1703  1.1  christos 	 TRUE),			/* pcrel_offset */
   1704  1.1  christos 
   1705  1.1  christos   /* The high order 16 bits of a relative address.  */
   1706  1.1  christos   HOWTO (R_PPC_REL16_HI,	/* type */
   1707  1.1  christos 	 16,			/* rightshift */
   1708  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1709  1.1  christos 	 16,			/* bitsize */
   1710  1.1  christos 	 TRUE,			/* pc_relative */
   1711  1.1  christos 	 0,			/* bitpos */
   1712  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1713  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1714  1.1  christos 	 "R_PPC_REL16_HI",	/* name */
   1715  1.1  christos 	 FALSE,			/* partial_inplace */
   1716  1.1  christos 	 0,			/* src_mask */
   1717  1.1  christos 	 0xffff,		/* dst_mask */
   1718  1.1  christos 	 TRUE),			/* pcrel_offset */
   1719  1.1  christos 
   1720  1.1  christos   /* The high order 16 bits of a relative address, plus 1 if the contents of
   1721  1.1  christos      the low 16 bits, treated as a signed number, is negative.  */
   1722  1.1  christos   HOWTO (R_PPC_REL16_HA,	/* type */
   1723  1.1  christos 	 16,			/* rightshift */
   1724  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1725  1.1  christos 	 16,			/* bitsize */
   1726  1.1  christos 	 TRUE,			/* pc_relative */
   1727  1.1  christos 	 0,			/* bitpos */
   1728  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1729  1.1  christos 	 ppc_elf_addr16_ha_reloc, /* special_function */
   1730  1.1  christos 	 "R_PPC_REL16_HA",	/* name */
   1731  1.1  christos 	 FALSE,			/* partial_inplace */
   1732  1.1  christos 	 0,			/* src_mask */
   1733  1.1  christos 	 0xffff,		/* dst_mask */
   1734  1.1  christos 	 TRUE),			/* pcrel_offset */
   1735  1.1  christos 
   1736  1.1  christos   /* GNU extension to record C++ vtable hierarchy.  */
   1737  1.1  christos   HOWTO (R_PPC_GNU_VTINHERIT,	/* type */
   1738  1.1  christos 	 0,			/* rightshift */
   1739  1.1  christos 	 0,			/* size (0 = byte, 1 = short, 2 = long) */
   1740  1.1  christos 	 0,			/* bitsize */
   1741  1.1  christos 	 FALSE,			/* pc_relative */
   1742  1.1  christos 	 0,			/* bitpos */
   1743  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1744  1.1  christos 	 NULL,			/* special_function */
   1745  1.1  christos 	 "R_PPC_GNU_VTINHERIT",	/* name */
   1746  1.1  christos 	 FALSE,			/* partial_inplace */
   1747  1.1  christos 	 0,			/* src_mask */
   1748  1.1  christos 	 0,			/* dst_mask */
   1749  1.1  christos 	 FALSE),		/* pcrel_offset */
   1750  1.1  christos 
   1751  1.1  christos   /* GNU extension to record C++ vtable member usage.  */
   1752  1.1  christos   HOWTO (R_PPC_GNU_VTENTRY,	/* type */
   1753  1.1  christos 	 0,			/* rightshift */
   1754  1.1  christos 	 0,			/* size (0 = byte, 1 = short, 2 = long) */
   1755  1.1  christos 	 0,			/* bitsize */
   1756  1.1  christos 	 FALSE,			/* pc_relative */
   1757  1.1  christos 	 0,			/* bitpos */
   1758  1.1  christos 	 complain_overflow_dont, /* complain_on_overflow */
   1759  1.1  christos 	 NULL,			/* special_function */
   1760  1.1  christos 	 "R_PPC_GNU_VTENTRY",	/* name */
   1761  1.1  christos 	 FALSE,			/* partial_inplace */
   1762  1.1  christos 	 0,			/* src_mask */
   1763  1.1  christos 	 0,			/* dst_mask */
   1764  1.1  christos 	 FALSE),		/* pcrel_offset */
   1765  1.1  christos 
   1766  1.1  christos   /* Phony reloc to handle AIX style TOC entries.  */
   1767  1.1  christos   HOWTO (R_PPC_TOC16,		/* type */
   1768  1.1  christos 	 0,			/* rightshift */
   1769  1.1  christos 	 1,			/* size (0 = byte, 1 = short, 2 = long) */
   1770  1.1  christos 	 16,			/* bitsize */
   1771  1.1  christos 	 FALSE,			/* pc_relative */
   1772  1.1  christos 	 0,			/* bitpos */
   1773  1.1  christos 	 complain_overflow_signed, /* complain_on_overflow */
   1774  1.1  christos 	 bfd_elf_generic_reloc,	/* special_function */
   1775  1.1  christos 	 "R_PPC_TOC16",		/* name */
   1776  1.1  christos 	 FALSE,			/* partial_inplace */
   1777  1.1  christos 	 0,			/* src_mask */
   1778  1.1  christos 	 0xffff,		/* dst_mask */
   1779  1.1  christos 	 FALSE),		/* pcrel_offset */
   1780  1.1  christos };
   1781  1.1  christos 
   1782  1.1  christos /* Initialize the ppc_elf_howto_table, so that linear accesses can be done.  */
   1784  1.1  christos 
   1785  1.1  christos static void
   1786  1.1  christos ppc_elf_howto_init (void)
   1787  1.1  christos {
   1788  1.1  christos   unsigned int i, type;
   1789  1.1  christos 
   1790  1.1  christos   for (i = 0;
   1791  1.1  christos        i < sizeof (ppc_elf_howto_raw) / sizeof (ppc_elf_howto_raw[0]);
   1792  1.1  christos        i++)
   1793  1.1  christos     {
   1794  1.1  christos       type = ppc_elf_howto_raw[i].type;
   1795  1.1  christos       if (type >= (sizeof (ppc_elf_howto_table)
   1796  1.1  christos 		   / sizeof (ppc_elf_howto_table[0])))
   1797  1.1  christos 	abort ();
   1798  1.1  christos       ppc_elf_howto_table[type] = &ppc_elf_howto_raw[i];
   1799  1.1  christos     }
   1800  1.1  christos }
   1801  1.1  christos 
   1802  1.1  christos static reloc_howto_type *
   1803  1.1  christos ppc_elf_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
   1804  1.1  christos 			   bfd_reloc_code_real_type code)
   1805  1.1  christos {
   1806  1.1  christos   enum elf_ppc_reloc_type r;
   1807  1.1  christos 
   1808  1.1  christos   /* Initialize howto table if not already done.  */
   1809  1.1  christos   if (!ppc_elf_howto_table[R_PPC_ADDR32])
   1810  1.1  christos     ppc_elf_howto_init ();
   1811  1.1  christos 
   1812  1.1  christos   switch (code)
   1813  1.1  christos     {
   1814  1.1  christos     default:
   1815  1.1  christos       return NULL;
   1816  1.1  christos 
   1817  1.1  christos     case BFD_RELOC_NONE:		r = R_PPC_NONE;			break;
   1818  1.1  christos     case BFD_RELOC_32:			r = R_PPC_ADDR32;		break;
   1819  1.1  christos     case BFD_RELOC_PPC_BA26:		r = R_PPC_ADDR24;		break;
   1820  1.1  christos     case BFD_RELOC_PPC64_ADDR16_DS:
   1821  1.1  christos     case BFD_RELOC_16:			r = R_PPC_ADDR16;		break;
   1822  1.1  christos     case BFD_RELOC_PPC64_ADDR16_LO_DS:
   1823  1.1  christos     case BFD_RELOC_LO16:		r = R_PPC_ADDR16_LO;		break;
   1824  1.1  christos     case BFD_RELOC_HI16:		r = R_PPC_ADDR16_HI;		break;
   1825  1.1  christos     case BFD_RELOC_HI16_S:		r = R_PPC_ADDR16_HA;		break;
   1826  1.1  christos     case BFD_RELOC_PPC_BA16:		r = R_PPC_ADDR14;		break;
   1827  1.1  christos     case BFD_RELOC_PPC_BA16_BRTAKEN:	r = R_PPC_ADDR14_BRTAKEN;	break;
   1828  1.1  christos     case BFD_RELOC_PPC_BA16_BRNTAKEN:	r = R_PPC_ADDR14_BRNTAKEN;	break;
   1829  1.1  christos     case BFD_RELOC_PPC_B26:		r = R_PPC_REL24;		break;
   1830  1.1  christos     case BFD_RELOC_PPC_B16:		r = R_PPC_REL14;		break;
   1831  1.1  christos     case BFD_RELOC_PPC_B16_BRTAKEN:	r = R_PPC_REL14_BRTAKEN;	break;
   1832  1.1  christos     case BFD_RELOC_PPC_B16_BRNTAKEN:	r = R_PPC_REL14_BRNTAKEN;	break;
   1833  1.1  christos     case BFD_RELOC_PPC64_GOT16_DS:
   1834  1.1  christos     case BFD_RELOC_16_GOTOFF:		r = R_PPC_GOT16;		break;
   1835  1.1  christos     case BFD_RELOC_PPC64_GOT16_LO_DS:
   1836  1.1  christos     case BFD_RELOC_LO16_GOTOFF:		r = R_PPC_GOT16_LO;		break;
   1837  1.1  christos     case BFD_RELOC_HI16_GOTOFF:		r = R_PPC_GOT16_HI;		break;
   1838  1.1  christos     case BFD_RELOC_HI16_S_GOTOFF:	r = R_PPC_GOT16_HA;		break;
   1839  1.1  christos     case BFD_RELOC_24_PLT_PCREL:	r = R_PPC_PLTREL24;		break;
   1840  1.1  christos     case BFD_RELOC_PPC_COPY:		r = R_PPC_COPY;			break;
   1841  1.1  christos     case BFD_RELOC_PPC_GLOB_DAT:	r = R_PPC_GLOB_DAT;		break;
   1842  1.1  christos     case BFD_RELOC_PPC_LOCAL24PC:	r = R_PPC_LOCAL24PC;		break;
   1843  1.1  christos     case BFD_RELOC_32_PCREL:		r = R_PPC_REL32;		break;
   1844  1.1  christos     case BFD_RELOC_32_PLTOFF:		r = R_PPC_PLT32;		break;
   1845  1.1  christos     case BFD_RELOC_32_PLT_PCREL:	r = R_PPC_PLTREL32;		break;
   1846  1.1  christos     case BFD_RELOC_PPC64_PLT16_LO_DS:
   1847  1.1  christos     case BFD_RELOC_LO16_PLTOFF:		r = R_PPC_PLT16_LO;		break;
   1848  1.1  christos     case BFD_RELOC_HI16_PLTOFF:		r = R_PPC_PLT16_HI;		break;
   1849  1.1  christos     case BFD_RELOC_HI16_S_PLTOFF:	r = R_PPC_PLT16_HA;		break;
   1850  1.1  christos     case BFD_RELOC_GPREL16:		r = R_PPC_SDAREL16;		break;
   1851  1.1  christos     case BFD_RELOC_PPC64_SECTOFF_DS:
   1852  1.1  christos     case BFD_RELOC_16_BASEREL:		r = R_PPC_SECTOFF;		break;
   1853  1.1  christos     case BFD_RELOC_PPC64_SECTOFF_LO_DS:
   1854  1.1  christos     case BFD_RELOC_LO16_BASEREL:	r = R_PPC_SECTOFF_LO;		break;
   1855  1.1  christos     case BFD_RELOC_HI16_BASEREL:	r = R_PPC_SECTOFF_HI;		break;
   1856  1.1  christos     case BFD_RELOC_HI16_S_BASEREL:	r = R_PPC_SECTOFF_HA;		break;
   1857  1.1  christos     case BFD_RELOC_CTOR:		r = R_PPC_ADDR32;		break;
   1858  1.1  christos     case BFD_RELOC_PPC64_TOC16_DS:
   1859  1.1  christos     case BFD_RELOC_PPC_TOC16:		r = R_PPC_TOC16;		break;
   1860  1.1  christos     case BFD_RELOC_PPC_TLS:		r = R_PPC_TLS;			break;
   1861  1.1  christos     case BFD_RELOC_PPC_TLSGD:		r = R_PPC_TLSGD;		break;
   1862  1.1  christos     case BFD_RELOC_PPC_TLSLD:		r = R_PPC_TLSLD;		break;
   1863  1.1  christos     case BFD_RELOC_PPC_DTPMOD:		r = R_PPC_DTPMOD32;		break;
   1864  1.1  christos     case BFD_RELOC_PPC64_TPREL16_DS:
   1865  1.1  christos     case BFD_RELOC_PPC_TPREL16:		r = R_PPC_TPREL16;		break;
   1866  1.1  christos     case BFD_RELOC_PPC64_TPREL16_LO_DS:
   1867  1.1  christos     case BFD_RELOC_PPC_TPREL16_LO:	r = R_PPC_TPREL16_LO;		break;
   1868  1.1  christos     case BFD_RELOC_PPC_TPREL16_HI:	r = R_PPC_TPREL16_HI;		break;
   1869  1.1  christos     case BFD_RELOC_PPC_TPREL16_HA:	r = R_PPC_TPREL16_HA;		break;
   1870  1.1  christos     case BFD_RELOC_PPC_TPREL:		r = R_PPC_TPREL32;		break;
   1871  1.1  christos     case BFD_RELOC_PPC64_DTPREL16_DS:
   1872  1.1  christos     case BFD_RELOC_PPC_DTPREL16:	r = R_PPC_DTPREL16;		break;
   1873  1.1  christos     case BFD_RELOC_PPC64_DTPREL16_LO_DS:
   1874  1.1  christos     case BFD_RELOC_PPC_DTPREL16_LO:	r = R_PPC_DTPREL16_LO;		break;
   1875  1.1  christos     case BFD_RELOC_PPC_DTPREL16_HI:	r = R_PPC_DTPREL16_HI;		break;
   1876  1.1  christos     case BFD_RELOC_PPC_DTPREL16_HA:	r = R_PPC_DTPREL16_HA;		break;
   1877  1.1  christos     case BFD_RELOC_PPC_DTPREL:		r = R_PPC_DTPREL32;		break;
   1878  1.1  christos     case BFD_RELOC_PPC_GOT_TLSGD16:	r = R_PPC_GOT_TLSGD16;		break;
   1879  1.1  christos     case BFD_RELOC_PPC_GOT_TLSGD16_LO:	r = R_PPC_GOT_TLSGD16_LO;	break;
   1880  1.1  christos     case BFD_RELOC_PPC_GOT_TLSGD16_HI:	r = R_PPC_GOT_TLSGD16_HI;	break;
   1881  1.1  christos     case BFD_RELOC_PPC_GOT_TLSGD16_HA:	r = R_PPC_GOT_TLSGD16_HA;	break;
   1882  1.1  christos     case BFD_RELOC_PPC_GOT_TLSLD16:	r = R_PPC_GOT_TLSLD16;		break;
   1883  1.1  christos     case BFD_RELOC_PPC_GOT_TLSLD16_LO:	r = R_PPC_GOT_TLSLD16_LO;	break;
   1884  1.1  christos     case BFD_RELOC_PPC_GOT_TLSLD16_HI:	r = R_PPC_GOT_TLSLD16_HI;	break;
   1885  1.1  christos     case BFD_RELOC_PPC_GOT_TLSLD16_HA:	r = R_PPC_GOT_TLSLD16_HA;	break;
   1886  1.1  christos     case BFD_RELOC_PPC_GOT_TPREL16:	r = R_PPC_GOT_TPREL16;		break;
   1887  1.1  christos     case BFD_RELOC_PPC_GOT_TPREL16_LO:	r = R_PPC_GOT_TPREL16_LO;	break;
   1888  1.1  christos     case BFD_RELOC_PPC_GOT_TPREL16_HI:	r = R_PPC_GOT_TPREL16_HI;	break;
   1889  1.1  christos     case BFD_RELOC_PPC_GOT_TPREL16_HA:	r = R_PPC_GOT_TPREL16_HA;	break;
   1890  1.1  christos     case BFD_RELOC_PPC_GOT_DTPREL16:	r = R_PPC_GOT_DTPREL16;		break;
   1891  1.1  christos     case BFD_RELOC_PPC_GOT_DTPREL16_LO:	r = R_PPC_GOT_DTPREL16_LO;	break;
   1892  1.1  christos     case BFD_RELOC_PPC_GOT_DTPREL16_HI:	r = R_PPC_GOT_DTPREL16_HI;	break;
   1893  1.1  christos     case BFD_RELOC_PPC_GOT_DTPREL16_HA:	r = R_PPC_GOT_DTPREL16_HA;	break;
   1894  1.1  christos     case BFD_RELOC_PPC_EMB_NADDR32:	r = R_PPC_EMB_NADDR32;		break;
   1895  1.1  christos     case BFD_RELOC_PPC_EMB_NADDR16:	r = R_PPC_EMB_NADDR16;		break;
   1896  1.1  christos     case BFD_RELOC_PPC_EMB_NADDR16_LO:	r = R_PPC_EMB_NADDR16_LO;	break;
   1897  1.1  christos     case BFD_RELOC_PPC_EMB_NADDR16_HI:	r = R_PPC_EMB_NADDR16_HI;	break;
   1898  1.1  christos     case BFD_RELOC_PPC_EMB_NADDR16_HA:	r = R_PPC_EMB_NADDR16_HA;	break;
   1899  1.1  christos     case BFD_RELOC_PPC_EMB_SDAI16:	r = R_PPC_EMB_SDAI16;		break;
   1900  1.1  christos     case BFD_RELOC_PPC_EMB_SDA2I16:	r = R_PPC_EMB_SDA2I16;		break;
   1901  1.1  christos     case BFD_RELOC_PPC_EMB_SDA2REL:	r = R_PPC_EMB_SDA2REL;		break;
   1902  1.1  christos     case BFD_RELOC_PPC_EMB_SDA21:	r = R_PPC_EMB_SDA21;		break;
   1903  1.1  christos     case BFD_RELOC_PPC_EMB_MRKREF:	r = R_PPC_EMB_MRKREF;		break;
   1904  1.1  christos     case BFD_RELOC_PPC_EMB_RELSEC16:	r = R_PPC_EMB_RELSEC16;		break;
   1905  1.1  christos     case BFD_RELOC_PPC_EMB_RELST_LO:	r = R_PPC_EMB_RELST_LO;		break;
   1906  1.1  christos     case BFD_RELOC_PPC_EMB_RELST_HI:	r = R_PPC_EMB_RELST_HI;		break;
   1907  1.1  christos     case BFD_RELOC_PPC_EMB_RELST_HA:	r = R_PPC_EMB_RELST_HA;		break;
   1908  1.1  christos     case BFD_RELOC_PPC_EMB_BIT_FLD:	r = R_PPC_EMB_BIT_FLD;		break;
   1909  1.1  christos     case BFD_RELOC_PPC_EMB_RELSDA:	r = R_PPC_EMB_RELSDA;		break;
   1910  1.1  christos     case BFD_RELOC_PPC_VLE_REL8:	r = R_PPC_VLE_REL8;		break;
   1911  1.1  christos     case BFD_RELOC_PPC_VLE_REL15:	r = R_PPC_VLE_REL15;		break;
   1912  1.1  christos     case BFD_RELOC_PPC_VLE_REL24:	r = R_PPC_VLE_REL24;		break;
   1913  1.1  christos     case BFD_RELOC_PPC_VLE_LO16A:	r = R_PPC_VLE_LO16A;		break;
   1914  1.1  christos     case BFD_RELOC_PPC_VLE_LO16D:	r = R_PPC_VLE_LO16D;		break;
   1915  1.1  christos     case BFD_RELOC_PPC_VLE_HI16A:	r = R_PPC_VLE_HI16A;		break;
   1916  1.1  christos     case BFD_RELOC_PPC_VLE_HI16D:	r = R_PPC_VLE_HI16D;		break;
   1917  1.1  christos     case BFD_RELOC_PPC_VLE_HA16A:	r = R_PPC_VLE_HA16A;		break;
   1918  1.1  christos     case BFD_RELOC_PPC_VLE_HA16D:	r = R_PPC_VLE_HA16D;		break;
   1919  1.1  christos     case BFD_RELOC_PPC_VLE_SDA21:	r = R_PPC_VLE_SDA21;		break;
   1920  1.1  christos     case BFD_RELOC_PPC_VLE_SDA21_LO:	r = R_PPC_VLE_SDA21_LO;		break;
   1921  1.1  christos     case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
   1922  1.1  christos       r = R_PPC_VLE_SDAREL_LO16A;
   1923  1.1  christos       break;
   1924  1.1  christos     case BFD_RELOC_PPC_VLE_SDAREL_LO16D:
   1925  1.1  christos       r = R_PPC_VLE_SDAREL_LO16D;
   1926  1.1  christos       break;
   1927  1.1  christos     case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
   1928  1.1  christos       r = R_PPC_VLE_SDAREL_HI16A;
   1929  1.1  christos       break;
   1930  1.1  christos     case BFD_RELOC_PPC_VLE_SDAREL_HI16D:
   1931  1.1  christos       r = R_PPC_VLE_SDAREL_HI16D;
   1932  1.1  christos       break;
   1933  1.1  christos     case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
   1934  1.1  christos       r = R_PPC_VLE_SDAREL_HA16A;
   1935  1.1  christos       break;
   1936  1.1  christos     case BFD_RELOC_PPC_VLE_SDAREL_HA16D:
   1937  1.1  christos       r = R_PPC_VLE_SDAREL_HA16D;
   1938  1.1  christos       break;
   1939  1.1  christos     case BFD_RELOC_16_PCREL:		r = R_PPC_REL16;		break;
   1940  1.1  christos     case BFD_RELOC_LO16_PCREL:		r = R_PPC_REL16_LO;		break;
   1941  1.1  christos     case BFD_RELOC_HI16_PCREL:		r = R_PPC_REL16_HI;		break;
   1942  1.1  christos     case BFD_RELOC_HI16_S_PCREL:	r = R_PPC_REL16_HA;		break;
   1943  1.1  christos     case BFD_RELOC_VTABLE_INHERIT:	r = R_PPC_GNU_VTINHERIT;	break;
   1944  1.1  christos     case BFD_RELOC_VTABLE_ENTRY:	r = R_PPC_GNU_VTENTRY;		break;
   1945  1.1  christos     }
   1946  1.1  christos 
   1947  1.1  christos   return ppc_elf_howto_table[r];
   1948  1.1  christos };
   1949  1.1  christos 
   1950  1.1  christos static reloc_howto_type *
   1951  1.1  christos ppc_elf_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
   1952  1.1  christos 			   const char *r_name)
   1953  1.1  christos {
   1954  1.1  christos   unsigned int i;
   1955  1.1  christos 
   1956  1.1  christos   for (i = 0;
   1957  1.1  christos        i < sizeof (ppc_elf_howto_raw) / sizeof (ppc_elf_howto_raw[0]);
   1958  1.1  christos        i++)
   1959  1.1  christos     if (ppc_elf_howto_raw[i].name != NULL
   1960  1.1  christos 	&& strcasecmp (ppc_elf_howto_raw[i].name, r_name) == 0)
   1961  1.1  christos       return &ppc_elf_howto_raw[i];
   1962  1.1  christos 
   1963  1.1  christos   return NULL;
   1964  1.1  christos }
   1965  1.1  christos 
   1966  1.1  christos /* Set the howto pointer for a PowerPC ELF reloc.  */
   1967  1.1  christos 
   1968  1.1  christos static void
   1969  1.1  christos ppc_elf_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
   1970  1.1  christos 		       arelent *cache_ptr,
   1971  1.1  christos 		       Elf_Internal_Rela *dst)
   1972  1.1  christos {
   1973  1.1  christos   /* Initialize howto table if not already done.  */
   1974  1.1  christos   if (!ppc_elf_howto_table[R_PPC_ADDR32])
   1975  1.1  christos     ppc_elf_howto_init ();
   1976  1.1  christos 
   1977  1.1  christos   BFD_ASSERT (ELF32_R_TYPE (dst->r_info) < (unsigned int) R_PPC_max);
   1978  1.1  christos   cache_ptr->howto = ppc_elf_howto_table[ELF32_R_TYPE (dst->r_info)];
   1979  1.1  christos 
   1980  1.1  christos   /* Just because the above assert didn't trigger doesn't mean that
   1981  1.1  christos      ELF32_R_TYPE (dst->r_info) is necessarily a valid relocation.  */
   1982  1.1  christos   if (!cache_ptr->howto)
   1983  1.1  christos     {
   1984  1.1  christos       (*_bfd_error_handler) (_("%B: invalid relocation type %d"),
   1985  1.1  christos                              abfd, ELF32_R_TYPE (dst->r_info));
   1986  1.1  christos       bfd_set_error (bfd_error_bad_value);
   1987  1.1  christos 
   1988  1.1  christos       cache_ptr->howto = ppc_elf_howto_table[R_PPC_NONE];
   1989  1.1  christos     }
   1990  1.1  christos }
   1991  1.1  christos 
   1992  1.1  christos /* Handle the R_PPC_ADDR16_HA and R_PPC_REL16_HA relocs.  */
   1993  1.1  christos 
   1994  1.1  christos static bfd_reloc_status_type
   1995  1.1  christos ppc_elf_addr16_ha_reloc (bfd *abfd ATTRIBUTE_UNUSED,
   1996  1.1  christos 			 arelent *reloc_entry,
   1997  1.1  christos 			 asymbol *symbol,
   1998  1.1  christos 			 void *data ATTRIBUTE_UNUSED,
   1999  1.1  christos 			 asection *input_section,
   2000  1.1  christos 			 bfd *output_bfd,
   2001  1.1  christos 			 char **error_message ATTRIBUTE_UNUSED)
   2002  1.1  christos {
   2003  1.1  christos   bfd_vma relocation;
   2004  1.1  christos 
   2005  1.1  christos   if (output_bfd != NULL)
   2006  1.1  christos     {
   2007  1.1  christos       reloc_entry->address += input_section->output_offset;
   2008  1.1  christos       return bfd_reloc_ok;
   2009  1.1  christos     }
   2010  1.1  christos 
   2011  1.1  christos   if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
   2012  1.1  christos     return bfd_reloc_outofrange;
   2013  1.1  christos 
   2014  1.1  christos   if (bfd_is_com_section (symbol->section))
   2015  1.1  christos     relocation = 0;
   2016  1.1  christos   else
   2017  1.1  christos     relocation = symbol->value;
   2018  1.1  christos 
   2019  1.1  christos   relocation += symbol->section->output_section->vma;
   2020  1.1  christos   relocation += symbol->section->output_offset;
   2021  1.1  christos   relocation += reloc_entry->addend;
   2022  1.1  christos   if (reloc_entry->howto->pc_relative)
   2023  1.1  christos     relocation -= reloc_entry->address;
   2024  1.1  christos 
   2025  1.1  christos   reloc_entry->addend += (relocation & 0x8000) << 1;
   2026  1.1  christos 
   2027  1.1  christos   return bfd_reloc_continue;
   2028  1.1  christos }
   2029  1.1  christos 
   2030  1.1  christos static bfd_reloc_status_type
   2031  1.1  christos ppc_elf_unhandled_reloc (bfd *abfd,
   2032  1.1  christos 			 arelent *reloc_entry,
   2033  1.1  christos 			 asymbol *symbol,
   2034  1.1  christos 			 void *data,
   2035  1.1  christos 			 asection *input_section,
   2036  1.1  christos 			 bfd *output_bfd,
   2037  1.1  christos 			 char **error_message)
   2038  1.1  christos {
   2039  1.1  christos   /* If this is a relocatable link (output_bfd test tells us), just
   2040  1.1  christos      call the generic function.  Any adjustment will be done at final
   2041  1.1  christos      link time.  */
   2042  1.1  christos   if (output_bfd != NULL)
   2043  1.1  christos     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
   2044  1.1  christos 				  input_section, output_bfd, error_message);
   2045  1.1  christos 
   2046  1.1  christos   if (error_message != NULL)
   2047  1.1  christos     {
   2048  1.1  christos       static char buf[60];
   2049  1.1  christos       sprintf (buf, _("generic linker can't handle %s"),
   2050  1.1  christos 	       reloc_entry->howto->name);
   2051  1.1  christos       *error_message = buf;
   2052  1.1  christos     }
   2053  1.1  christos   return bfd_reloc_dangerous;
   2054  1.1  christos }
   2055  1.1  christos 
   2056  1.1  christos /* Sections created by the linker.  */
   2058  1.1  christos 
   2059  1.1  christos typedef struct elf_linker_section
   2060  1.1  christos {
   2061  1.1  christos   /* Pointer to the bfd section.  */
   2062  1.1  christos   asection *section;
   2063  1.1  christos   /* Section name.  */
   2064  1.1  christos   const char *name;
   2065  1.1  christos   /* Associated bss section name.  */
   2066  1.1  christos   const char *bss_name;
   2067  1.1  christos   /* Associated symbol name.  */
   2068  1.1  christos   const char *sym_name;
   2069  1.1  christos   /* Associated symbol.  */
   2070  1.1  christos   struct elf_link_hash_entry *sym;
   2071  1.1  christos } elf_linker_section_t;
   2072  1.1  christos 
   2073  1.1  christos /* Linked list of allocated pointer entries.  This hangs off of the
   2074  1.1  christos    symbol lists, and provides allows us to return different pointers,
   2075  1.1  christos    based on different addend's.  */
   2076  1.1  christos 
   2077  1.1  christos typedef struct elf_linker_section_pointers
   2078  1.1  christos {
   2079  1.1  christos   /* next allocated pointer for this symbol */
   2080  1.1  christos   struct elf_linker_section_pointers *next;
   2081  1.1  christos   /* offset of pointer from beginning of section */
   2082  1.1  christos   bfd_vma offset;
   2083  1.1  christos   /* addend used */
   2084  1.1  christos   bfd_vma addend;
   2085  1.1  christos   /* which linker section this is */
   2086  1.1  christos   elf_linker_section_t *lsect;
   2087  1.1  christos } elf_linker_section_pointers_t;
   2088  1.1  christos 
   2089  1.1  christos struct ppc_elf_obj_tdata
   2090  1.1  christos {
   2091  1.1  christos   struct elf_obj_tdata elf;
   2092  1.1  christos 
   2093  1.1  christos   /* A mapping from local symbols to offsets into the various linker
   2094  1.1  christos      sections added.  This is index by the symbol index.  */
   2095  1.1  christos   elf_linker_section_pointers_t **linker_section_pointers;
   2096  1.1  christos 
   2097  1.1  christos   /* Flags used to auto-detect plt type.  */
   2098  1.1  christos   unsigned int makes_plt_call : 1;
   2099  1.1  christos   unsigned int has_rel16 : 1;
   2100  1.1  christos };
   2101  1.1  christos 
   2102  1.1  christos #define ppc_elf_tdata(bfd) \
   2103  1.1  christos   ((struct ppc_elf_obj_tdata *) (bfd)->tdata.any)
   2104  1.1  christos 
   2105  1.1  christos #define elf_local_ptr_offsets(bfd) \
   2106  1.1  christos   (ppc_elf_tdata (bfd)->linker_section_pointers)
   2107  1.1  christos 
   2108  1.1  christos #define is_ppc_elf(bfd) \
   2109  1.1  christos   (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
   2110  1.1  christos    && elf_object_id (bfd) == PPC32_ELF_DATA)
   2111  1.1  christos 
   2112  1.1  christos /* Override the generic function because we store some extras.  */
   2113  1.1  christos 
   2114  1.1  christos static bfd_boolean
   2115  1.1  christos ppc_elf_mkobject (bfd *abfd)
   2116  1.1  christos {
   2117  1.1  christos   return bfd_elf_allocate_object (abfd, sizeof (struct ppc_elf_obj_tdata),
   2118  1.1  christos 				  PPC32_ELF_DATA);
   2119  1.1  christos }
   2120  1.1  christos 
   2121  1.1  christos /* Fix bad default arch selected for a 32 bit input bfd when the
   2122  1.1  christos    default is 64 bit.  */
   2123  1.1  christos 
   2124  1.1  christos static bfd_boolean
   2125  1.1  christos ppc_elf_object_p (bfd *abfd)
   2126  1.1  christos {
   2127  1.1  christos   if (abfd->arch_info->the_default && abfd->arch_info->bits_per_word == 64)
   2128  1.1  christos     {
   2129  1.1  christos       Elf_Internal_Ehdr *i_ehdr = elf_elfheader (abfd);
   2130  1.1  christos 
   2131  1.1  christos       if (i_ehdr->e_ident[EI_CLASS] == ELFCLASS32)
   2132  1.1  christos 	{
   2133  1.1  christos 	  /* Relies on arch after 64 bit default being 32 bit default.  */
   2134  1.1  christos 	  abfd->arch_info = abfd->arch_info->next;
   2135  1.1  christos 	  BFD_ASSERT (abfd->arch_info->bits_per_word == 32);
   2136  1.1  christos 	}
   2137  1.1  christos     }
   2138  1.1  christos   return TRUE;
   2139  1.1  christos }
   2140  1.1  christos 
   2141  1.1  christos /* Function to set whether a module needs the -mrelocatable bit set.  */
   2142  1.1  christos 
   2143  1.1  christos static bfd_boolean
   2144  1.1  christos ppc_elf_set_private_flags (bfd *abfd, flagword flags)
   2145  1.1  christos {
   2146  1.1  christos   BFD_ASSERT (!elf_flags_init (abfd)
   2147  1.1  christos 	      || elf_elfheader (abfd)->e_flags == flags);
   2148  1.1  christos 
   2149  1.1  christos   elf_elfheader (abfd)->e_flags = flags;
   2150  1.1  christos   elf_flags_init (abfd) = TRUE;
   2151  1.1  christos   return TRUE;
   2152  1.1  christos }
   2153  1.1  christos 
   2154  1.1  christos /* Support for core dump NOTE sections.  */
   2155  1.1  christos 
   2156  1.1  christos static bfd_boolean
   2157  1.1  christos ppc_elf_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
   2158  1.1  christos {
   2159  1.1  christos   int offset;
   2160  1.1  christos   unsigned int size;
   2161  1.1  christos 
   2162  1.1  christos   switch (note->descsz)
   2163  1.1  christos     {
   2164  1.1  christos     default:
   2165  1.1  christos       return FALSE;
   2166  1.1  christos 
   2167  1.1  christos     case 268:		/* Linux/PPC.  */
   2168  1.1  christos       /* pr_cursig */
   2169  1.1  christos       elf_tdata (abfd)->core_signal = bfd_get_16 (abfd, note->descdata + 12);
   2170  1.1  christos 
   2171  1.1  christos       /* pr_pid */
   2172  1.1  christos       elf_tdata (abfd)->core_lwpid = bfd_get_32 (abfd, note->descdata + 24);
   2173  1.1  christos 
   2174  1.1  christos       /* pr_reg */
   2175  1.1  christos       offset = 72;
   2176  1.1  christos       size = 192;
   2177  1.1  christos 
   2178  1.1  christos       break;
   2179  1.1  christos     }
   2180  1.1  christos 
   2181  1.1  christos   /* Make a ".reg/999" section.  */
   2182  1.1  christos   return _bfd_elfcore_make_pseudosection (abfd, ".reg",
   2183  1.1  christos 					  size, note->descpos + offset);
   2184  1.1  christos }
   2185  1.1  christos 
   2186  1.1  christos static bfd_boolean
   2187  1.1  christos ppc_elf_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
   2188  1.1  christos {
   2189  1.1  christos   switch (note->descsz)
   2190  1.1  christos     {
   2191  1.1  christos     default:
   2192  1.1  christos       return FALSE;
   2193  1.1  christos 
   2194  1.1  christos     case 128:		/* Linux/PPC elf_prpsinfo.  */
   2195  1.1  christos       elf_tdata (abfd)->core_pid
   2196  1.1  christos 	= bfd_get_32 (abfd, note->descdata + 16);
   2197  1.1  christos       elf_tdata (abfd)->core_program
   2198  1.1  christos 	= _bfd_elfcore_strndup (abfd, note->descdata + 32, 16);
   2199  1.1  christos       elf_tdata (abfd)->core_command
   2200  1.1  christos 	= _bfd_elfcore_strndup (abfd, note->descdata + 48, 80);
   2201  1.1  christos     }
   2202  1.1  christos 
   2203  1.1  christos   /* Note that for some reason, a spurious space is tacked
   2204  1.1  christos      onto the end of the args in some (at least one anyway)
   2205  1.1  christos      implementations, so strip it off if it exists.  */
   2206  1.1  christos 
   2207  1.1  christos   {
   2208  1.1  christos     char *command = elf_tdata (abfd)->core_command;
   2209  1.1  christos     int n = strlen (command);
   2210  1.1  christos 
   2211  1.1  christos     if (0 < n && command[n - 1] == ' ')
   2212  1.1  christos       command[n - 1] = '\0';
   2213  1.1  christos   }
   2214  1.1  christos 
   2215  1.1  christos   return TRUE;
   2216  1.1  christos }
   2217  1.1  christos 
   2218  1.1  christos static char *
   2219  1.1  christos ppc_elf_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type, ...)
   2220  1.1  christos {
   2221  1.1  christos   switch (note_type)
   2222  1.1  christos     {
   2223  1.1  christos     default:
   2224  1.1  christos       return NULL;
   2225  1.1  christos 
   2226  1.1  christos     case NT_PRPSINFO:
   2227  1.1  christos       {
   2228  1.1  christos 	char data[128];
   2229  1.1  christos 	va_list ap;
   2230  1.1  christos 
   2231  1.1  christos 	va_start (ap, note_type);
   2232  1.1  christos 	memset (data, 0, sizeof (data));
   2233  1.1  christos 	strncpy (data + 32, va_arg (ap, const char *), 16);
   2234  1.1  christos 	strncpy (data + 48, va_arg (ap, const char *), 80);
   2235  1.1  christos 	va_end (ap);
   2236  1.1  christos 	return elfcore_write_note (abfd, buf, bufsiz,
   2237  1.1  christos 				   "CORE", note_type, data, sizeof (data));
   2238  1.1  christos       }
   2239  1.1  christos 
   2240  1.1  christos     case NT_PRSTATUS:
   2241  1.1  christos       {
   2242  1.1  christos 	char data[268];
   2243  1.1  christos 	va_list ap;
   2244  1.1  christos 	long pid;
   2245  1.1  christos 	int cursig;
   2246  1.1  christos 	const void *greg;
   2247  1.1  christos 
   2248  1.1  christos 	va_start (ap, note_type);
   2249  1.1  christos 	memset (data, 0, 72);
   2250  1.1  christos 	pid = va_arg (ap, long);
   2251  1.1  christos 	bfd_put_32 (abfd, pid, data + 24);
   2252  1.1  christos 	cursig = va_arg (ap, int);
   2253  1.1  christos 	bfd_put_16 (abfd, cursig, data + 12);
   2254  1.1  christos 	greg = va_arg (ap, const void *);
   2255  1.1  christos 	memcpy (data + 72, greg, 192);
   2256  1.1  christos 	memset (data + 264, 0, 4);
   2257  1.1  christos 	va_end (ap);
   2258  1.1  christos 	return elfcore_write_note (abfd, buf, bufsiz,
   2259  1.1  christos 				   "CORE", note_type, data, sizeof (data));
   2260  1.1  christos       }
   2261  1.1  christos     }
   2262  1.1  christos }
   2263  1.1  christos 
   2264  1.1  christos static flagword
   2265  1.1  christos ppc_elf_lookup_section_flags (char *flag_name)
   2266  1.1  christos {
   2267  1.1  christos 
   2268  1.1  christos   if (!strcmp (flag_name, "SHF_PPC_VLE"))
   2269  1.1  christos     return SHF_PPC_VLE;
   2270  1.1  christos 
   2271  1.1  christos   return 0;
   2272  1.1  christos }
   2273  1.1  christos 
   2274  1.1  christos /* Add the VLE flag if required.  */
   2275  1.1  christos 
   2276  1.1  christos bfd_boolean
   2277  1.1  christos ppc_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *shdr)
   2278  1.1  christos {
   2279  1.1  christos   if (bfd_get_mach (abfd) == bfd_mach_ppc_vle
   2280  1.1  christos       && (shdr->sh_flags & SHF_EXECINSTR) != 0)
   2281  1.1  christos     shdr->sh_flags |= SHF_PPC_VLE;
   2282  1.1  christos 
   2283  1.1  christos   return TRUE;
   2284  1.1  christos }
   2285  1.1  christos 
   2286  1.1  christos /* Return address for Ith PLT stub in section PLT, for relocation REL
   2287  1.1  christos    or (bfd_vma) -1 if it should not be included.  */
   2288  1.1  christos 
   2289  1.1  christos static bfd_vma
   2290  1.1  christos ppc_elf_plt_sym_val (bfd_vma i ATTRIBUTE_UNUSED,
   2291  1.1  christos 		     const asection *plt ATTRIBUTE_UNUSED,
   2292  1.1  christos 		     const arelent *rel)
   2293  1.1  christos {
   2294  1.1  christos   return rel->address;
   2295  1.1  christos }
   2296  1.1  christos 
   2297  1.1  christos /* Handle a PowerPC specific section when reading an object file.  This
   2298  1.1  christos    is called when bfd_section_from_shdr finds a section with an unknown
   2299  1.1  christos    type.  */
   2300  1.1  christos 
   2301  1.1  christos static bfd_boolean
   2302  1.1  christos ppc_elf_section_from_shdr (bfd *abfd,
   2303  1.1  christos 			   Elf_Internal_Shdr *hdr,
   2304  1.1  christos 			   const char *name,
   2305  1.1  christos 			   int shindex)
   2306  1.1  christos {
   2307  1.1  christos   asection *newsect;
   2308  1.1  christos   flagword flags;
   2309  1.1  christos 
   2310  1.1  christos   if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
   2311  1.1  christos     return FALSE;
   2312  1.1  christos 
   2313  1.1  christos   newsect = hdr->bfd_section;
   2314  1.1  christos   flags = bfd_get_section_flags (abfd, newsect);
   2315  1.1  christos   if (hdr->sh_flags & SHF_EXCLUDE)
   2316  1.1  christos     flags |= SEC_EXCLUDE;
   2317  1.1  christos 
   2318  1.1  christos   if (hdr->sh_type == SHT_ORDERED)
   2319  1.1  christos     flags |= SEC_SORT_ENTRIES;
   2320  1.1  christos 
   2321  1.1  christos   bfd_set_section_flags (abfd, newsect, flags);
   2322  1.1  christos   return TRUE;
   2323  1.1  christos }
   2324  1.1  christos 
   2325  1.1  christos /* Set up any other section flags and such that may be necessary.  */
   2326  1.1  christos 
   2327  1.1  christos static bfd_boolean
   2328  1.1  christos ppc_elf_fake_sections (bfd *abfd ATTRIBUTE_UNUSED,
   2329  1.1  christos 		       Elf_Internal_Shdr *shdr,
   2330  1.1  christos 		       asection *asect)
   2331  1.1  christos {
   2332  1.1  christos   if ((asect->flags & SEC_SORT_ENTRIES) != 0)
   2333  1.1  christos     shdr->sh_type = SHT_ORDERED;
   2334  1.1  christos 
   2335  1.1  christos   return TRUE;
   2336  1.1  christos }
   2337  1.1  christos 
   2338  1.1  christos /* If we have .sbss2 or .PPC.EMB.sbss0 output sections, we
   2339  1.1  christos    need to bump up the number of section headers.  */
   2340  1.1  christos 
   2341  1.1  christos static int
   2342  1.1  christos ppc_elf_additional_program_headers (bfd *abfd,
   2343  1.1  christos 				    struct bfd_link_info *info ATTRIBUTE_UNUSED)
   2344  1.1  christos {
   2345  1.1  christos   asection *s;
   2346  1.1  christos   int ret = 0;
   2347  1.1  christos 
   2348  1.1  christos   s = bfd_get_section_by_name (abfd, ".sbss2");
   2349  1.1  christos   if (s != NULL && (s->flags & SEC_ALLOC) != 0)
   2350  1.1  christos     ++ret;
   2351  1.1  christos 
   2352  1.1  christos   s = bfd_get_section_by_name (abfd, ".PPC.EMB.sbss0");
   2353  1.1  christos   if (s != NULL && (s->flags & SEC_ALLOC) != 0)
   2354  1.1  christos     ++ret;
   2355  1.1  christos 
   2356  1.1  christos   return ret;
   2357  1.1  christos }
   2358  1.1  christos 
   2359  1.1  christos /* Modify the segment map for VLE executables.  */
   2360  1.1  christos 
   2361  1.1  christos bfd_boolean
   2362  1.1  christos ppc_elf_modify_segment_map (bfd *abfd,
   2363  1.1  christos 			    struct bfd_link_info *info ATTRIBUTE_UNUSED)
   2364  1.1  christos {
   2365  1.1  christos   struct elf_segment_map *m, *n;
   2366  1.1  christos   bfd_size_type amt;
   2367  1.1  christos   unsigned int j, k;
   2368  1.1  christos   bfd_boolean sect0_vle, sectj_vle;
   2369  1.1  christos 
   2370  1.1  christos   /* At this point in the link, output sections have already been sorted by
   2371  1.1  christos      LMA and assigned to segments.  All that is left to do is to ensure
   2372  1.1  christos      there is no mixing of VLE & non-VLE sections in a text segment.
   2373  1.1  christos      If we find that case, we split the segment.
   2374  1.1  christos      We maintain the original output section order.  */
   2375  1.1  christos 
   2376  1.1  christos   for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
   2377  1.1  christos     {
   2378  1.1  christos       if (m->count == 0)
   2379  1.1  christos 	continue;
   2380  1.1  christos 
   2381  1.1  christos       sect0_vle = (elf_section_flags (m->sections[0]) & SHF_PPC_VLE) != 0;
   2382  1.1  christos       for (j = 1; j < m->count; ++j)
   2383  1.1  christos 	{
   2384  1.1  christos 	  sectj_vle = (elf_section_flags (m->sections[j]) & SHF_PPC_VLE) != 0;
   2385  1.1  christos 
   2386  1.1  christos 	  if (sectj_vle != sect0_vle)
   2387  1.1  christos 	    break;
   2388  1.1  christos         }
   2389  1.1  christos       if (j >= m->count)
   2390  1.1  christos 	continue;
   2391  1.1  christos 
   2392  1.1  christos       /* sections 0..j-1 stay in this (current) segment,
   2393  1.1  christos 	 the remainder are put in a new segment.
   2394  1.1  christos 	 The scan resumes with the new segment.  */
   2395  1.1  christos 
   2396  1.1  christos       /* Fix the new segment.  */
   2397  1.1  christos       amt = sizeof (struct elf_segment_map);
   2398  1.1  christos       amt += (m->count - j - 1) * sizeof (asection *);
   2399  1.1  christos       n = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
   2400  1.1  christos       if (n == NULL)
   2401  1.1  christos         return FALSE;
   2402  1.1  christos 
   2403  1.1  christos       n->p_type = PT_LOAD;
   2404  1.1  christos       n->p_flags = PF_X | PF_R;
   2405  1.1  christos       if (sectj_vle)
   2406  1.1  christos         n->p_flags |= PF_PPC_VLE;
   2407  1.1  christos       n->count = m->count - j;
   2408  1.1  christos       for (k = 0; k < n->count; ++k)
   2409  1.1  christos         {
   2410  1.1  christos           n->sections[k] = m->sections[j+k];
   2411  1.1  christos           m->sections[j+k] = NULL;
   2412  1.1  christos 	}
   2413  1.1  christos       n->next = m->next;
   2414  1.1  christos       m->next = n;
   2415  1.1  christos 
   2416  1.1  christos       /* Fix the current segment  */
   2417  1.1  christos       m->count = j;
   2418  1.1  christos     }
   2419  1.1  christos 
   2420  1.1  christos   return TRUE;
   2421  1.1  christos }
   2422  1.1  christos 
   2423  1.1  christos /* Add extra PPC sections -- Note, for now, make .sbss2 and
   2424  1.1  christos    .PPC.EMB.sbss0 a normal section, and not a bss section so
   2425  1.1  christos    that the linker doesn't crater when trying to make more than
   2426  1.1  christos    2 sections.  */
   2427  1.1  christos 
   2428  1.1  christos static const struct bfd_elf_special_section ppc_elf_special_sections[] =
   2429  1.1  christos {
   2430  1.1  christos   { STRING_COMMA_LEN (".plt"),             0, SHT_NOBITS,   SHF_ALLOC + SHF_EXECINSTR },
   2431  1.1  christos   { STRING_COMMA_LEN (".sbss"),           -2, SHT_NOBITS,   SHF_ALLOC + SHF_WRITE },
   2432  1.1  christos   { STRING_COMMA_LEN (".sbss2"),          -2, SHT_PROGBITS, SHF_ALLOC },
   2433  1.1  christos   { STRING_COMMA_LEN (".sdata"),          -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
   2434  1.1  christos   { STRING_COMMA_LEN (".sdata2"),         -2, SHT_PROGBITS, SHF_ALLOC },
   2435  1.1  christos   { STRING_COMMA_LEN (".tags"),            0, SHT_ORDERED,  SHF_ALLOC },
   2436  1.1  christos   { STRING_COMMA_LEN (".PPC.EMB.apuinfo"), 0, SHT_NOTE,     0 },
   2437  1.1  christos   { STRING_COMMA_LEN (".PPC.EMB.sbss0"),   0, SHT_PROGBITS, SHF_ALLOC },
   2438  1.1  christos   { STRING_COMMA_LEN (".PPC.EMB.sdata0"),  0, SHT_PROGBITS, SHF_ALLOC },
   2439  1.1  christos   { NULL,                              0,  0, 0,            0 }
   2440  1.1  christos };
   2441  1.1  christos 
   2442  1.1  christos /* This is what we want for new plt/got.  */
   2443  1.1  christos static struct bfd_elf_special_section ppc_alt_plt =
   2444  1.1  christos   { STRING_COMMA_LEN (".plt"),             0, SHT_PROGBITS, SHF_ALLOC };
   2445  1.1  christos 
   2446  1.1  christos static const struct bfd_elf_special_section *
   2447  1.1  christos ppc_elf_get_sec_type_attr (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
   2448  1.1  christos {
   2449  1.1  christos   const struct bfd_elf_special_section *ssect;
   2450  1.1  christos 
   2451  1.1  christos   /* See if this is one of the special sections.  */
   2452  1.1  christos   if (sec->name == NULL)
   2453  1.1  christos     return NULL;
   2454  1.1  christos 
   2455  1.1  christos   ssect = _bfd_elf_get_special_section (sec->name, ppc_elf_special_sections,
   2456  1.1  christos 					sec->use_rela_p);
   2457  1.1  christos   if (ssect != NULL)
   2458  1.1  christos     {
   2459  1.1  christos       if (ssect == ppc_elf_special_sections && (sec->flags & SEC_LOAD) != 0)
   2460  1.1  christos 	ssect = &ppc_alt_plt;
   2461  1.1  christos       return ssect;
   2462  1.1  christos     }
   2463  1.1  christos 
   2464  1.1  christos   return _bfd_elf_get_sec_type_attr (abfd, sec);
   2465  1.1  christos }
   2466  1.1  christos 
   2467  1.1  christos /* Very simple linked list structure for recording apuinfo values.  */
   2469  1.1  christos typedef struct apuinfo_list
   2470  1.1  christos {
   2471  1.1  christos   struct apuinfo_list *next;
   2472  1.1  christos   unsigned long value;
   2473  1.1  christos }
   2474  1.1  christos apuinfo_list;
   2475  1.1  christos 
   2476  1.1  christos static apuinfo_list *head;
   2477  1.1  christos static bfd_boolean apuinfo_set;
   2478  1.1  christos 
   2479  1.1  christos static void
   2480  1.1  christos apuinfo_list_init (void)
   2481  1.1  christos {
   2482  1.1  christos   head = NULL;
   2483  1.1  christos   apuinfo_set = FALSE;
   2484  1.1  christos }
   2485  1.1  christos 
   2486  1.1  christos static void
   2487  1.1  christos apuinfo_list_add (unsigned long value)
   2488  1.1  christos {
   2489  1.1  christos   apuinfo_list *entry = head;
   2490  1.1  christos 
   2491  1.1  christos   while (entry != NULL)
   2492  1.1  christos     {
   2493  1.1  christos       if (entry->value == value)
   2494  1.1  christos 	return;
   2495  1.1  christos       entry = entry->next;
   2496  1.1  christos     }
   2497  1.1  christos 
   2498  1.1  christos   entry = bfd_malloc (sizeof (* entry));
   2499  1.1  christos   if (entry == NULL)
   2500  1.1  christos     return;
   2501  1.1  christos 
   2502  1.1  christos   entry->value = value;
   2503  1.1  christos   entry->next  = head;
   2504  1.1  christos   head = entry;
   2505  1.1  christos }
   2506  1.1  christos 
   2507  1.1  christos static unsigned
   2508  1.1  christos apuinfo_list_length (void)
   2509  1.1  christos {
   2510  1.1  christos   apuinfo_list *entry;
   2511  1.1  christos   unsigned long count;
   2512  1.1  christos 
   2513  1.1  christos   for (entry = head, count = 0;
   2514  1.1  christos        entry;
   2515  1.1  christos        entry = entry->next)
   2516  1.1  christos     ++ count;
   2517  1.1  christos 
   2518  1.1  christos   return count;
   2519  1.1  christos }
   2520  1.1  christos 
   2521  1.1  christos static inline unsigned long
   2522  1.1  christos apuinfo_list_element (unsigned long number)
   2523  1.1  christos {
   2524  1.1  christos   apuinfo_list * entry;
   2525  1.1  christos 
   2526  1.1  christos   for (entry = head;
   2527  1.1  christos        entry && number --;
   2528  1.1  christos        entry = entry->next)
   2529  1.1  christos     ;
   2530  1.1  christos 
   2531  1.1  christos   return entry ? entry->value : 0;
   2532  1.1  christos }
   2533  1.1  christos 
   2534  1.1  christos static void
   2535  1.1  christos apuinfo_list_finish (void)
   2536  1.1  christos {
   2537  1.1  christos   apuinfo_list *entry;
   2538  1.1  christos 
   2539  1.1  christos   for (entry = head; entry;)
   2540  1.1  christos     {
   2541  1.1  christos       apuinfo_list *next = entry->next;
   2542  1.1  christos       free (entry);
   2543  1.1  christos       entry = next;
   2544  1.1  christos     }
   2545  1.1  christos 
   2546  1.1  christos   head = NULL;
   2547  1.1  christos }
   2548  1.1  christos 
   2549  1.1  christos #define APUINFO_SECTION_NAME	".PPC.EMB.apuinfo"
   2550  1.1  christos #define APUINFO_LABEL		"APUinfo"
   2551  1.1  christos 
   2552  1.1  christos /* Scan the input BFDs and create a linked list of
   2553  1.1  christos    the APUinfo values that will need to be emitted.  */
   2554  1.1  christos 
   2555  1.1  christos static void
   2556  1.1  christos ppc_elf_begin_write_processing (bfd *abfd, struct bfd_link_info *link_info)
   2557  1.1  christos {
   2558  1.1  christos   bfd *ibfd;
   2559  1.1  christos   asection *asec;
   2560  1.1  christos   char *buffer = NULL;
   2561  1.1  christos   bfd_size_type largest_input_size = 0;
   2562  1.1  christos   unsigned i;
   2563  1.1  christos   unsigned long length;
   2564  1.1  christos   const char *error_message = NULL;
   2565  1.1  christos 
   2566  1.1  christos   if (link_info == NULL)
   2567  1.1  christos     return;
   2568  1.1  christos 
   2569  1.1  christos   apuinfo_list_init ();
   2570  1.1  christos 
   2571  1.1  christos   /* Read in the input sections contents.  */
   2572  1.1  christos   for (ibfd = link_info->input_bfds; ibfd; ibfd = ibfd->link_next)
   2573  1.1  christos     {
   2574  1.1  christos       unsigned long datum;
   2575  1.1  christos 
   2576  1.1  christos       asec = bfd_get_section_by_name (ibfd, APUINFO_SECTION_NAME);
   2577  1.1  christos       if (asec == NULL)
   2578  1.1  christos 	continue;
   2579  1.1  christos 
   2580  1.1  christos       error_message = _("corrupt %s section in %B");
   2581  1.1  christos       length = asec->size;
   2582  1.1  christos       if (length < 20)
   2583  1.1  christos 	goto fail;
   2584  1.1  christos 
   2585  1.1  christos       apuinfo_set = TRUE;
   2586  1.1  christos       if (largest_input_size < asec->size)
   2587  1.1  christos 	{
   2588  1.1  christos 	  if (buffer)
   2589  1.1  christos 	    free (buffer);
   2590  1.1  christos 	  largest_input_size = asec->size;
   2591  1.1  christos 	  buffer = bfd_malloc (largest_input_size);
   2592  1.1  christos 	  if (!buffer)
   2593  1.1  christos 	    return;
   2594  1.1  christos 	}
   2595  1.1  christos 
   2596  1.1  christos       if (bfd_seek (ibfd, asec->filepos, SEEK_SET) != 0
   2597  1.1  christos 	  || (bfd_bread (buffer, length, ibfd) != length))
   2598  1.1  christos 	{
   2599  1.1  christos 	  error_message = _("unable to read in %s section from %B");
   2600  1.1  christos 	  goto fail;
   2601  1.1  christos 	}
   2602  1.1  christos 
   2603  1.1  christos       /* Verify the contents of the header.  Note - we have to
   2604  1.1  christos 	 extract the values this way in order to allow for a
   2605  1.1  christos 	 host whose endian-ness is different from the target.  */
   2606  1.1  christos       datum = bfd_get_32 (ibfd, buffer);
   2607  1.1  christos       if (datum != sizeof APUINFO_LABEL)
   2608  1.1  christos 	goto fail;
   2609  1.1  christos 
   2610  1.1  christos       datum = bfd_get_32 (ibfd, buffer + 8);
   2611  1.1  christos       if (datum != 0x2)
   2612  1.1  christos 	goto fail;
   2613  1.1  christos 
   2614  1.1  christos       if (strcmp (buffer + 12, APUINFO_LABEL) != 0)
   2615  1.1  christos 	goto fail;
   2616  1.1  christos 
   2617  1.1  christos       /* Get the number of bytes used for apuinfo entries.  */
   2618  1.1  christos       datum = bfd_get_32 (ibfd, buffer + 4);
   2619  1.1  christos       if (datum + 20 != length)
   2620  1.1  christos 	goto fail;
   2621  1.1  christos 
   2622  1.1  christos       /* Scan the apuinfo section, building a list of apuinfo numbers.  */
   2623  1.1  christos       for (i = 0; i < datum; i += 4)
   2624  1.1  christos 	apuinfo_list_add (bfd_get_32 (ibfd, buffer + 20 + i));
   2625  1.1  christos     }
   2626  1.1  christos 
   2627  1.1  christos   error_message = NULL;
   2628  1.1  christos 
   2629  1.1  christos   if (apuinfo_set)
   2630  1.1  christos     {
   2631  1.1  christos       /* Compute the size of the output section.  */
   2632  1.1  christos       unsigned num_entries = apuinfo_list_length ();
   2633  1.1  christos 
   2634  1.1  christos       /* Set the output section size, if it exists.  */
   2635  1.1  christos       asec = bfd_get_section_by_name (abfd, APUINFO_SECTION_NAME);
   2636  1.1  christos 
   2637  1.1  christos       if (asec && ! bfd_set_section_size (abfd, asec, 20 + num_entries * 4))
   2638  1.1  christos 	{
   2639  1.1  christos 	  ibfd = abfd;
   2640  1.1  christos 	  error_message = _("warning: unable to set size of %s section in %B");
   2641  1.1  christos 	}
   2642  1.1  christos     }
   2643  1.1  christos 
   2644  1.1  christos  fail:
   2645  1.1  christos   if (buffer)
   2646  1.1  christos     free (buffer);
   2647  1.1  christos 
   2648  1.1  christos   if (error_message)
   2649  1.1  christos     (*_bfd_error_handler) (error_message, ibfd, APUINFO_SECTION_NAME);
   2650  1.1  christos }
   2651  1.1  christos 
   2652  1.1  christos /* Prevent the output section from accumulating the input sections'
   2653  1.1  christos    contents.  We have already stored this in our linked list structure.  */
   2654  1.1  christos 
   2655  1.1  christos static bfd_boolean
   2656  1.1  christos ppc_elf_write_section (bfd *abfd ATTRIBUTE_UNUSED,
   2657  1.1  christos 		       struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
   2658  1.1  christos 		       asection *asec,
   2659  1.1  christos 		       bfd_byte *contents ATTRIBUTE_UNUSED)
   2660  1.1  christos {
   2661  1.1  christos   return apuinfo_set && strcmp (asec->name, APUINFO_SECTION_NAME) == 0;
   2662  1.1  christos }
   2663  1.1  christos 
   2664  1.1  christos /* Finally we can generate the output section.  */
   2665  1.1  christos 
   2666  1.1  christos static void
   2667  1.1  christos ppc_elf_final_write_processing (bfd *abfd, bfd_boolean linker ATTRIBUTE_UNUSED)
   2668  1.1  christos {
   2669  1.1  christos   bfd_byte *buffer;
   2670  1.1  christos   asection *asec;
   2671  1.1  christos   unsigned i;
   2672  1.1  christos   unsigned num_entries;
   2673  1.1  christos   bfd_size_type length;
   2674  1.1  christos 
   2675  1.1  christos   asec = bfd_get_section_by_name (abfd, APUINFO_SECTION_NAME);
   2676  1.1  christos   if (asec == NULL)
   2677  1.1  christos     return;
   2678  1.1  christos 
   2679  1.1  christos   if (!apuinfo_set)
   2680  1.1  christos     return;
   2681  1.1  christos 
   2682  1.1  christos   length = asec->size;
   2683  1.1  christos   if (length < 20)
   2684  1.1  christos     return;
   2685  1.1  christos 
   2686  1.1  christos   buffer = bfd_malloc (length);
   2687  1.1  christos   if (buffer == NULL)
   2688  1.1  christos     {
   2689  1.1  christos       (*_bfd_error_handler)
   2690  1.1  christos 	(_("failed to allocate space for new APUinfo section."));
   2691  1.1  christos       return;
   2692  1.1  christos     }
   2693  1.1  christos 
   2694  1.1  christos   /* Create the apuinfo header.  */
   2695  1.1  christos   num_entries = apuinfo_list_length ();
   2696  1.1  christos   bfd_put_32 (abfd, sizeof APUINFO_LABEL, buffer);
   2697  1.1  christos   bfd_put_32 (abfd, num_entries * 4, buffer + 4);
   2698  1.1  christos   bfd_put_32 (abfd, 0x2, buffer + 8);
   2699  1.1  christos   strcpy ((char *) buffer + 12, APUINFO_LABEL);
   2700  1.1  christos 
   2701  1.1  christos   length = 20;
   2702  1.1  christos   for (i = 0; i < num_entries; i++)
   2703  1.1  christos     {
   2704  1.1  christos       bfd_put_32 (abfd, apuinfo_list_element (i), buffer + length);
   2705  1.1  christos       length += 4;
   2706  1.1  christos     }
   2707  1.1  christos 
   2708  1.1  christos   if (length != asec->size)
   2709  1.1  christos     (*_bfd_error_handler) (_("failed to compute new APUinfo section."));
   2710  1.1  christos 
   2711  1.1  christos   if (! bfd_set_section_contents (abfd, asec, buffer, (file_ptr) 0, length))
   2712  1.1  christos     (*_bfd_error_handler) (_("failed to install new APUinfo section."));
   2713  1.1  christos 
   2714  1.1  christos   free (buffer);
   2715  1.1  christos 
   2716  1.1  christos   apuinfo_list_finish ();
   2717  1.1  christos }
   2718  1.1  christos 
   2719  1.1  christos static bfd_boolean
   2721  1.1  christos is_nonpic_glink_stub (bfd *abfd, asection *glink, bfd_vma off)
   2722  1.1  christos {
   2723  1.1  christos   bfd_byte buf[GLINK_ENTRY_SIZE];
   2724  1.1  christos 
   2725  1.1  christos   if (!bfd_get_section_contents (abfd, glink, buf, off, GLINK_ENTRY_SIZE))
   2726  1.1  christos     return FALSE;
   2727  1.1  christos 
   2728  1.1  christos   return ((bfd_get_32 (abfd, buf + 0) & 0xffff0000) == LIS_11
   2729  1.1  christos 	  && (bfd_get_32 (abfd, buf + 4) & 0xffff0000) == LWZ_11_11
   2730  1.1  christos 	  && bfd_get_32 (abfd, buf + 8) == MTCTR_11
   2731  1.1  christos 	  && bfd_get_32 (abfd, buf + 12) == BCTR);
   2732  1.1  christos }
   2733  1.1  christos 
   2734  1.1  christos static bfd_boolean
   2735  1.1  christos section_covers_vma (bfd *abfd ATTRIBUTE_UNUSED, asection *section, void *ptr)
   2736  1.1  christos {
   2737  1.1  christos   bfd_vma vma = *(bfd_vma *) ptr;
   2738  1.1  christos   return ((section->flags & SEC_ALLOC) != 0
   2739  1.1  christos 	  && section->vma <= vma
   2740  1.1  christos 	  && vma < section->vma + section->size);
   2741  1.1  christos }
   2742  1.1  christos 
   2743  1.1  christos static long
   2744  1.1  christos ppc_elf_get_synthetic_symtab (bfd *abfd, long symcount, asymbol **syms,
   2745  1.1  christos 			      long dynsymcount, asymbol **dynsyms,
   2746  1.1  christos 			      asymbol **ret)
   2747  1.1  christos {
   2748  1.1  christos   bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
   2749  1.1  christos   asection *plt, *relplt, *dynamic, *glink;
   2750  1.1  christos   bfd_vma glink_vma = 0;
   2751  1.1  christos   bfd_vma resolv_vma = 0;
   2752  1.1  christos   bfd_vma stub_vma;
   2753  1.1  christos   asymbol *s;
   2754  1.1  christos   arelent *p;
   2755  1.1  christos   long count, i;
   2756  1.1  christos   size_t size;
   2757  1.1  christos   char *names;
   2758  1.1  christos   bfd_byte buf[4];
   2759  1.1  christos 
   2760  1.1  christos   *ret = NULL;
   2761  1.1  christos 
   2762  1.1  christos   if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
   2763  1.1  christos     return 0;
   2764  1.1  christos 
   2765  1.1  christos   if (dynsymcount <= 0)
   2766  1.1  christos     return 0;
   2767  1.1  christos 
   2768  1.1  christos   relplt = bfd_get_section_by_name (abfd, ".rela.plt");
   2769  1.1  christos   if (relplt == NULL)
   2770  1.1  christos     return 0;
   2771  1.1  christos 
   2772  1.1  christos   plt = bfd_get_section_by_name (abfd, ".plt");
   2773  1.1  christos   if (plt == NULL)
   2774  1.1  christos     return 0;
   2775  1.1  christos 
   2776  1.1  christos   /* Call common code to handle old-style executable PLTs.  */
   2777  1.1  christos   if (elf_section_flags (plt) & SHF_EXECINSTR)
   2778  1.1  christos     return _bfd_elf_get_synthetic_symtab (abfd, symcount, syms,
   2779  1.1  christos 					  dynsymcount, dynsyms, ret);
   2780  1.1  christos 
   2781  1.1  christos   /* If this object was prelinked, the prelinker stored the address
   2782  1.1  christos      of .glink at got[1].  If it wasn't prelinked, got[1] will be zero.  */
   2783  1.1  christos   dynamic = bfd_get_section_by_name (abfd, ".dynamic");
   2784  1.1  christos   if (dynamic != NULL)
   2785  1.1  christos     {
   2786  1.1  christos       bfd_byte *dynbuf, *extdyn, *extdynend;
   2787  1.1  christos       size_t extdynsize;
   2788  1.1  christos       void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
   2789  1.1  christos 
   2790  1.1  christos       if (!bfd_malloc_and_get_section (abfd, dynamic, &dynbuf))
   2791  1.1  christos 	return -1;
   2792  1.1  christos 
   2793  1.1  christos       extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
   2794  1.1  christos       swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
   2795  1.1  christos 
   2796  1.1  christos       extdyn = dynbuf;
   2797  1.1  christos       extdynend = extdyn + dynamic->size;
   2798  1.1  christos       for (; extdyn < extdynend; extdyn += extdynsize)
   2799  1.1  christos 	{
   2800  1.1  christos 	  Elf_Internal_Dyn dyn;
   2801  1.1  christos 	  (*swap_dyn_in) (abfd, extdyn, &dyn);
   2802  1.1  christos 
   2803  1.1  christos 	  if (dyn.d_tag == DT_NULL)
   2804  1.1  christos 	    break;
   2805  1.1  christos 
   2806  1.1  christos 	  if (dyn.d_tag == DT_PPC_GOT)
   2807  1.1  christos 	    {
   2808  1.1  christos 	      unsigned int g_o_t = dyn.d_un.d_val;
   2809  1.1  christos 	      asection *got = bfd_get_section_by_name (abfd, ".got");
   2810  1.1  christos 	      if (got != NULL
   2811  1.1  christos 		  && bfd_get_section_contents (abfd, got, buf,
   2812  1.1  christos 					       g_o_t - got->vma + 4, 4))
   2813  1.1  christos 		glink_vma = bfd_get_32 (abfd, buf);
   2814  1.1  christos 	      break;
   2815  1.1  christos 	    }
   2816  1.1  christos 	}
   2817  1.1  christos       free (dynbuf);
   2818  1.1  christos     }
   2819  1.1  christos 
   2820  1.1  christos   /* Otherwise we read the first plt entry.  */
   2821  1.1  christos   if (glink_vma == 0)
   2822  1.1  christos     {
   2823  1.1  christos       if (bfd_get_section_contents (abfd, plt, buf, 0, 4))
   2824  1.1  christos 	glink_vma = bfd_get_32 (abfd, buf);
   2825  1.1  christos     }
   2826  1.1  christos 
   2827  1.1  christos   if (glink_vma == 0)
   2828  1.1  christos     return 0;
   2829  1.1  christos 
   2830  1.1  christos   /* The .glink section usually does not survive the final
   2831  1.1  christos      link; search for the section (usually .text) where the
   2832  1.1  christos      glink stubs now reside.  */
   2833  1.1  christos   glink = bfd_sections_find_if (abfd, section_covers_vma, &glink_vma);
   2834  1.1  christos   if (glink == NULL)
   2835  1.1  christos     return 0;
   2836  1.1  christos 
   2837  1.1  christos   /* Determine glink PLT resolver by reading the relative branch
   2838  1.1  christos      from the first glink stub.  */
   2839  1.1  christos   if (bfd_get_section_contents (abfd, glink, buf,
   2840  1.1  christos 				glink_vma - glink->vma, 4))
   2841  1.1  christos     {
   2842  1.1  christos       unsigned int insn = bfd_get_32 (abfd, buf);
   2843  1.1  christos 
   2844  1.1  christos       /* The first glink stub may either branch to the resolver ...  */
   2845  1.1  christos       insn ^= B;
   2846  1.1  christos       if ((insn & ~0x3fffffc) == 0)
   2847  1.1  christos 	resolv_vma = glink_vma + (insn ^ 0x2000000) - 0x2000000;
   2848  1.1  christos 
   2849  1.1  christos       /* ... or fall through a bunch of NOPs.  */
   2850  1.1  christos       else if ((insn ^ B ^ NOP) == 0)
   2851  1.1  christos 	for (i = 4;
   2852  1.1  christos 	     bfd_get_section_contents (abfd, glink, buf,
   2853  1.1  christos 				       glink_vma - glink->vma + i, 4);
   2854  1.1  christos 	     i += 4)
   2855  1.1  christos 	  if (bfd_get_32 (abfd, buf) != NOP)
   2856  1.1  christos 	    {
   2857  1.1  christos 	      resolv_vma = glink_vma + i;
   2858  1.1  christos 	      break;
   2859  1.1  christos 	    }
   2860  1.1  christos     }
   2861  1.1  christos 
   2862  1.1  christos   count = relplt->size / sizeof (Elf32_External_Rela);
   2863  1.1  christos   stub_vma = glink_vma - (bfd_vma) count * 16;
   2864  1.1  christos   /* If the stubs are those for -shared/-pie then we might have
   2865  1.1  christos      multiple stubs for each plt entry.  If that is the case then
   2866  1.1  christos      there is no way to associate stubs with their plt entries short
   2867  1.1  christos      of figuring out the GOT pointer value used in the stub.  */
   2868  1.1  christos   if (!is_nonpic_glink_stub (abfd, glink,
   2869  1.1  christos 			     glink_vma - GLINK_ENTRY_SIZE - glink->vma))
   2870  1.1  christos     return 0;
   2871  1.1  christos 
   2872  1.1  christos   slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
   2873  1.1  christos   if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
   2874  1.1  christos     return -1;
   2875  1.1  christos 
   2876  1.1  christos   size = count * sizeof (asymbol);
   2877  1.1  christos   p = relplt->relocation;
   2878  1.1  christos   for (i = 0; i < count; i++, p++)
   2879  1.1  christos     {
   2880  1.1  christos       size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
   2881  1.1  christos       if (p->addend != 0)
   2882  1.1  christos 	size += sizeof ("+0x") - 1 + 8;
   2883  1.1  christos     }
   2884  1.1  christos 
   2885  1.1  christos   size += sizeof (asymbol) + sizeof ("__glink");
   2886  1.1  christos 
   2887  1.1  christos   if (resolv_vma)
   2888  1.1  christos     size += sizeof (asymbol) + sizeof ("__glink_PLTresolve");
   2889  1.1  christos 
   2890  1.1  christos   s = *ret = bfd_malloc (size);
   2891  1.1  christos   if (s == NULL)
   2892  1.1  christos     return -1;
   2893  1.1  christos 
   2894  1.1  christos   names = (char *) (s + count + 1 + (resolv_vma != 0));
   2895  1.1  christos   p = relplt->relocation;
   2896  1.1  christos   for (i = 0; i < count; i++, p++)
   2897  1.1  christos     {
   2898  1.1  christos       size_t len;
   2899  1.1  christos 
   2900  1.1  christos       *s = **p->sym_ptr_ptr;
   2901  1.1  christos       /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set.  Since
   2902  1.1  christos 	 we are defining a symbol, ensure one of them is set.  */
   2903  1.1  christos       if ((s->flags & BSF_LOCAL) == 0)
   2904  1.1  christos 	s->flags |= BSF_GLOBAL;
   2905  1.1  christos       s->flags |= BSF_SYNTHETIC;
   2906  1.1  christos       s->section = glink;
   2907  1.1  christos       s->value = stub_vma - glink->vma;
   2908  1.1  christos       s->name = names;
   2909  1.1  christos       s->udata.p = NULL;
   2910  1.1  christos       len = strlen ((*p->sym_ptr_ptr)->name);
   2911  1.1  christos       memcpy (names, (*p->sym_ptr_ptr)->name, len);
   2912  1.1  christos       names += len;
   2913  1.1  christos       if (p->addend != 0)
   2914  1.1  christos 	{
   2915  1.1  christos 	  memcpy (names, "+0x", sizeof ("+0x") - 1);
   2916  1.1  christos 	  names += sizeof ("+0x") - 1;
   2917  1.1  christos 	  bfd_sprintf_vma (abfd, names, p->addend);
   2918  1.1  christos 	  names += strlen (names);
   2919  1.1  christos 	}
   2920  1.1  christos       memcpy (names, "@plt", sizeof ("@plt"));
   2921  1.1  christos       names += sizeof ("@plt");
   2922  1.1  christos       ++s;
   2923  1.1  christos       stub_vma += 16;
   2924  1.1  christos     }
   2925  1.1  christos 
   2926  1.1  christos   /* Add a symbol at the start of the glink branch table.  */
   2927  1.1  christos   memset (s, 0, sizeof *s);
   2928  1.1  christos   s->the_bfd = abfd;
   2929  1.1  christos   s->flags = BSF_GLOBAL | BSF_SYNTHETIC;
   2930  1.1  christos   s->section = glink;
   2931  1.1  christos   s->value = glink_vma - glink->vma;
   2932  1.1  christos   s->name = names;
   2933  1.1  christos   memcpy (names, "__glink", sizeof ("__glink"));
   2934  1.1  christos   names += sizeof ("__glink");
   2935  1.1  christos   s++;
   2936  1.1  christos   count++;
   2937  1.1  christos 
   2938  1.1  christos   if (resolv_vma)
   2939  1.1  christos     {
   2940  1.1  christos       /* Add a symbol for the glink PLT resolver.  */
   2941  1.1  christos       memset (s, 0, sizeof *s);
   2942  1.1  christos       s->the_bfd = abfd;
   2943  1.1  christos       s->flags = BSF_GLOBAL | BSF_SYNTHETIC;
   2944  1.1  christos       s->section = glink;
   2945  1.1  christos       s->value = resolv_vma - glink->vma;
   2946  1.1  christos       s->name = names;
   2947  1.1  christos       memcpy (names, "__glink_PLTresolve", sizeof ("__glink_PLTresolve"));
   2948  1.1  christos       names += sizeof ("__glink_PLTresolve");
   2949  1.1  christos       s++;
   2950  1.1  christos       count++;
   2951  1.1  christos     }
   2952  1.1  christos 
   2953  1.1  christos   return count;
   2954  1.1  christos }
   2955  1.1  christos 
   2956  1.1  christos /* The following functions are specific to the ELF linker, while
   2958  1.1  christos    functions above are used generally.  They appear in this file more
   2959  1.1  christos    or less in the order in which they are called.  eg.
   2960  1.1  christos    ppc_elf_check_relocs is called early in the link process,
   2961  1.1  christos    ppc_elf_finish_dynamic_sections is one of the last functions
   2962  1.1  christos    called.  */
   2963  1.1  christos 
   2964  1.1  christos /* Track PLT entries needed for a given symbol.  We might need more
   2965  1.1  christos    than one glink entry per symbol when generating a pic binary.  */
   2966  1.1  christos struct plt_entry
   2967  1.1  christos {
   2968  1.1  christos   struct plt_entry *next;
   2969  1.1  christos 
   2970  1.1  christos   /* -fPIC uses multiple GOT sections, one per file, called ".got2".
   2971  1.1  christos      This field stores the offset into .got2 used to initialise the
   2972  1.1  christos      GOT pointer reg.  It will always be at least 32768.  (Current
   2973  1.1  christos      gcc always uses an offset of 32768, but ld -r will pack .got2
   2974  1.1  christos      sections together resulting in larger offsets).  */
   2975  1.1  christos   bfd_vma addend;
   2976  1.1  christos 
   2977  1.1  christos   /* The .got2 section.  */
   2978  1.1  christos   asection *sec;
   2979  1.1  christos 
   2980  1.1  christos   /* PLT refcount or offset.  */
   2981  1.1  christos   union
   2982  1.1  christos     {
   2983  1.1  christos       bfd_signed_vma refcount;
   2984  1.1  christos       bfd_vma offset;
   2985  1.1  christos     } plt;
   2986  1.1  christos 
   2987  1.1  christos   /* .glink stub offset.  */
   2988  1.1  christos   bfd_vma glink_offset;
   2989  1.1  christos };
   2990  1.1  christos 
   2991  1.1  christos /* Of those relocs that might be copied as dynamic relocs, this function
   2992  1.1  christos    selects those that must be copied when linking a shared library,
   2993  1.1  christos    even when the symbol is local.  */
   2994  1.1  christos 
   2995  1.1  christos static int
   2996  1.1  christos must_be_dyn_reloc (struct bfd_link_info *info,
   2997  1.1  christos 		   enum elf_ppc_reloc_type r_type)
   2998  1.1  christos {
   2999  1.1  christos   switch (r_type)
   3000  1.1  christos     {
   3001  1.1  christos     default:
   3002  1.1  christos       return 1;
   3003  1.1  christos 
   3004  1.1  christos     case R_PPC_REL24:
   3005  1.1  christos     case R_PPC_REL14:
   3006  1.1  christos     case R_PPC_REL14_BRTAKEN:
   3007  1.1  christos     case R_PPC_REL14_BRNTAKEN:
   3008  1.1  christos     case R_PPC_REL32:
   3009  1.1  christos       return 0;
   3010  1.1  christos 
   3011  1.1  christos     case R_PPC_TPREL32:
   3012  1.1  christos     case R_PPC_TPREL16:
   3013  1.1  christos     case R_PPC_TPREL16_LO:
   3014  1.1  christos     case R_PPC_TPREL16_HI:
   3015  1.1  christos     case R_PPC_TPREL16_HA:
   3016  1.1  christos       return !info->executable;
   3017  1.1  christos     }
   3018  1.1  christos }
   3019  1.1  christos 
   3020  1.1  christos /* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
   3021  1.1  christos    copying dynamic variables from a shared lib into an app's dynbss
   3022  1.1  christos    section, and instead use a dynamic relocation to point into the
   3023  1.1  christos    shared lib.  */
   3024  1.1  christos #define ELIMINATE_COPY_RELOCS 1
   3025  1.1  christos 
   3026  1.1  christos /* PPC ELF linker hash entry.  */
   3027  1.1  christos 
   3028  1.1  christos struct ppc_elf_link_hash_entry
   3029  1.1  christos {
   3030  1.1  christos   struct elf_link_hash_entry elf;
   3031  1.1  christos 
   3032  1.1  christos   /* If this symbol is used in the linker created sections, the processor
   3033  1.1  christos      specific backend uses this field to map the field into the offset
   3034  1.1  christos      from the beginning of the section.  */
   3035  1.1  christos   elf_linker_section_pointers_t *linker_section_pointer;
   3036  1.1  christos 
   3037  1.1  christos   /* Track dynamic relocs copied for this symbol.  */
   3038  1.1  christos   struct elf_dyn_relocs *dyn_relocs;
   3039  1.1  christos 
   3040  1.1  christos   /* Contexts in which symbol is used in the GOT (or TOC).
   3041  1.1  christos      TLS_GD .. TLS_TLS bits are or'd into the mask as the
   3042  1.1  christos      corresponding relocs are encountered during check_relocs.
   3043  1.1  christos      tls_optimize clears TLS_GD .. TLS_TPREL when optimizing to
   3044  1.1  christos      indicate the corresponding GOT entry type is not needed.  */
   3045  1.1  christos #define TLS_GD		 1	/* GD reloc. */
   3046  1.1  christos #define TLS_LD		 2	/* LD reloc. */
   3047  1.1  christos #define TLS_TPREL	 4	/* TPREL reloc, => IE. */
   3048  1.1  christos #define TLS_DTPREL	 8	/* DTPREL reloc, => LD. */
   3049  1.1  christos #define TLS_TLS		16	/* Any TLS reloc.  */
   3050  1.1  christos #define TLS_TPRELGD	32	/* TPREL reloc resulting from GD->IE. */
   3051  1.1  christos #define PLT_IFUNC	64	/* STT_GNU_IFUNC.  */
   3052  1.1  christos   char tls_mask;
   3053  1.1  christos 
   3054  1.1  christos   /* Nonzero if we have seen a small data relocation referring to this
   3055  1.1  christos      symbol.  */
   3056  1.1  christos   unsigned char has_sda_refs;
   3057  1.1  christos };
   3058  1.1  christos 
   3059  1.1  christos #define ppc_elf_hash_entry(ent) ((struct ppc_elf_link_hash_entry *) (ent))
   3060  1.1  christos 
   3061  1.1  christos /* PPC ELF linker hash table.  */
   3062  1.1  christos 
   3063  1.1  christos struct ppc_elf_link_hash_table
   3064  1.1  christos {
   3065  1.1  christos   struct elf_link_hash_table elf;
   3066  1.1  christos 
   3067  1.1  christos   /* Short-cuts to get to dynamic linker sections.  */
   3068  1.1  christos   asection *got;
   3069  1.1  christos   asection *relgot;
   3070  1.1  christos   asection *glink;
   3071  1.1  christos   asection *plt;
   3072  1.1  christos   asection *relplt;
   3073  1.1  christos   asection *iplt;
   3074  1.1  christos   asection *reliplt;
   3075  1.1  christos   asection *dynbss;
   3076  1.1  christos   asection *relbss;
   3077  1.1  christos   asection *dynsbss;
   3078  1.1  christos   asection *relsbss;
   3079  1.1  christos   elf_linker_section_t sdata[2];
   3080  1.1  christos   asection *sbss;
   3081  1.1  christos   asection *glink_eh_frame;
   3082  1.1  christos 
   3083  1.1  christos   /* The (unloaded but important) .rela.plt.unloaded on VxWorks.  */
   3084  1.1  christos   asection *srelplt2;
   3085  1.1  christos 
   3086  1.1  christos   /* The .got.plt section (VxWorks only)*/
   3087  1.1  christos   asection *sgotplt;
   3088  1.1  christos 
   3089  1.1  christos   /* Shortcut to __tls_get_addr.  */
   3090  1.1  christos   struct elf_link_hash_entry *tls_get_addr;
   3091  1.1  christos 
   3092  1.1  christos   /* The bfd that forced an old-style PLT.  */
   3093  1.1  christos   bfd *old_bfd;
   3094  1.1  christos 
   3095  1.1  christos   /* TLS local dynamic got entry handling.  */
   3096  1.1  christos   union {
   3097  1.1  christos     bfd_signed_vma refcount;
   3098  1.1  christos     bfd_vma offset;
   3099  1.1  christos   } tlsld_got;
   3100  1.1  christos 
   3101  1.1  christos   /* Offset of branch table to PltResolve function in glink.  */
   3102  1.1  christos   bfd_vma glink_pltresolve;
   3103  1.1  christos 
   3104  1.1  christos   /* Size of reserved GOT entries.  */
   3105  1.1  christos   unsigned int got_header_size;
   3106  1.1  christos   /* Non-zero if allocating the header left a gap.  */
   3107  1.1  christos   unsigned int got_gap;
   3108  1.1  christos 
   3109  1.1  christos   /* The type of PLT we have chosen to use.  */
   3110  1.1  christos   enum ppc_elf_plt_type plt_type;
   3111  1.1  christos 
   3112  1.1  christos   /* Set if we should emit symbols for stubs.  */
   3113  1.1  christos   unsigned int emit_stub_syms:1;
   3114  1.1  christos 
   3115  1.1  christos   /* Set if __tls_get_addr optimization should not be done.  */
   3116  1.1  christos   unsigned int no_tls_get_addr_opt:1;
   3117  1.1  christos 
   3118  1.1  christos   /* True if the target system is VxWorks.  */
   3119  1.1  christos   unsigned int is_vxworks:1;
   3120  1.1  christos 
   3121  1.1  christos   /* The size of PLT entries.  */
   3122  1.1  christos   int plt_entry_size;
   3123  1.1  christos   /* The distance between adjacent PLT slots.  */
   3124  1.1  christos   int plt_slot_size;
   3125  1.1  christos   /* The size of the first PLT entry.  */
   3126  1.1  christos   int plt_initial_entry_size;
   3127  1.1  christos 
   3128  1.1  christos   /* Small local sym cache.  */
   3129  1.1  christos   struct sym_cache sym_cache;
   3130  1.1  christos };
   3131  1.1  christos 
   3132  1.1  christos /* Rename some of the generic section flags to better document how they
   3133  1.1  christos    are used for ppc32.  The flags are only valid for ppc32 elf objects.  */
   3134  1.1  christos 
   3135  1.1  christos /* Nonzero if this section has TLS related relocations.  */
   3136  1.1  christos #define has_tls_reloc sec_flg0
   3137  1.1  christos 
   3138  1.1  christos /* Nonzero if this section has a call to __tls_get_addr.  */
   3139  1.1  christos #define has_tls_get_addr_call sec_flg1
   3140  1.1  christos 
   3141  1.1  christos /* Get the PPC ELF linker hash table from a link_info structure.  */
   3142  1.1  christos 
   3143  1.1  christos #define ppc_elf_hash_table(p) \
   3144  1.1  christos   (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
   3145  1.1  christos   == PPC32_ELF_DATA ? ((struct ppc_elf_link_hash_table *) ((p)->hash)) : NULL)
   3146  1.1  christos 
   3147  1.1  christos /* Create an entry in a PPC ELF linker hash table.  */
   3148  1.1  christos 
   3149  1.1  christos static struct bfd_hash_entry *
   3150  1.1  christos ppc_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
   3151  1.1  christos 			   struct bfd_hash_table *table,
   3152  1.1  christos 			   const char *string)
   3153  1.1  christos {
   3154  1.1  christos   /* Allocate the structure if it has not already been allocated by a
   3155  1.1  christos      subclass.  */
   3156  1.1  christos   if (entry == NULL)
   3157  1.1  christos     {
   3158  1.1  christos       entry = bfd_hash_allocate (table,
   3159  1.1  christos 				 sizeof (struct ppc_elf_link_hash_entry));
   3160  1.1  christos       if (entry == NULL)
   3161  1.1  christos 	return entry;
   3162  1.1  christos     }
   3163  1.1  christos 
   3164  1.1  christos   /* Call the allocation method of the superclass.  */
   3165  1.1  christos   entry = _bfd_elf_link_hash_newfunc (entry, table, string);
   3166  1.1  christos   if (entry != NULL)
   3167  1.1  christos     {
   3168  1.1  christos       ppc_elf_hash_entry (entry)->linker_section_pointer = NULL;
   3169  1.1  christos       ppc_elf_hash_entry (entry)->dyn_relocs = NULL;
   3170  1.1  christos       ppc_elf_hash_entry (entry)->tls_mask = 0;
   3171  1.1  christos       ppc_elf_hash_entry (entry)->has_sda_refs = 0;
   3172  1.1  christos     }
   3173  1.1  christos 
   3174  1.1  christos   return entry;
   3175  1.1  christos }
   3176  1.1  christos 
   3177  1.1  christos /* Create a PPC ELF linker hash table.  */
   3178  1.1  christos 
   3179  1.1  christos static struct bfd_link_hash_table *
   3180  1.1  christos ppc_elf_link_hash_table_create (bfd *abfd)
   3181  1.1  christos {
   3182  1.1  christos   struct ppc_elf_link_hash_table *ret;
   3183  1.1  christos 
   3184  1.1  christos   ret = bfd_zmalloc (sizeof (struct ppc_elf_link_hash_table));
   3185  1.1  christos   if (ret == NULL)
   3186  1.1  christos     return NULL;
   3187  1.1  christos 
   3188  1.1  christos   if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd,
   3189  1.1  christos 				      ppc_elf_link_hash_newfunc,
   3190  1.1  christos 				      sizeof (struct ppc_elf_link_hash_entry),
   3191  1.1  christos 				      PPC32_ELF_DATA))
   3192  1.1  christos     {
   3193  1.1  christos       free (ret);
   3194  1.1  christos       return NULL;
   3195  1.1  christos     }
   3196  1.1  christos 
   3197  1.1  christos   ret->elf.init_plt_refcount.refcount = 0;
   3198  1.1  christos   ret->elf.init_plt_refcount.glist = NULL;
   3199  1.1  christos   ret->elf.init_plt_offset.offset = 0;
   3200  1.1  christos   ret->elf.init_plt_offset.glist = NULL;
   3201  1.1  christos 
   3202  1.1  christos   ret->sdata[0].name = ".sdata";
   3203  1.1  christos   ret->sdata[0].sym_name = "_SDA_BASE_";
   3204  1.1  christos   ret->sdata[0].bss_name = ".sbss";
   3205  1.1  christos 
   3206  1.1  christos   ret->sdata[1].name = ".sdata2";
   3207  1.1  christos   ret->sdata[1].sym_name = "_SDA2_BASE_";
   3208  1.1  christos   ret->sdata[1].bss_name = ".sbss2";
   3209  1.1  christos 
   3210  1.1  christos   ret->plt_entry_size = 12;
   3211  1.1  christos   ret->plt_slot_size = 8;
   3212  1.1  christos   ret->plt_initial_entry_size = 72;
   3213  1.1  christos 
   3214  1.1  christos   return &ret->elf.root;
   3215  1.1  christos }
   3216  1.1  christos 
   3217  1.1  christos /* Create .got and the related sections.  */
   3218  1.1  christos 
   3219  1.1  christos static bfd_boolean
   3220  1.1  christos ppc_elf_create_got (bfd *abfd, struct bfd_link_info *info)
   3221  1.1  christos {
   3222  1.1  christos   struct ppc_elf_link_hash_table *htab;
   3223  1.1  christos   asection *s;
   3224  1.1  christos   flagword flags;
   3225  1.1  christos 
   3226  1.1  christos   if (!_bfd_elf_create_got_section (abfd, info))
   3227  1.1  christos     return FALSE;
   3228  1.1  christos 
   3229  1.1  christos   htab = ppc_elf_hash_table (info);
   3230  1.1  christos   htab->got = s = bfd_get_linker_section (abfd, ".got");
   3231  1.1  christos   if (s == NULL)
   3232  1.1  christos     abort ();
   3233  1.1  christos 
   3234  1.1  christos   if (htab->is_vxworks)
   3235  1.1  christos     {
   3236  1.1  christos       htab->sgotplt = bfd_get_linker_section (abfd, ".got.plt");
   3237  1.1  christos       if (!htab->sgotplt)
   3238  1.1  christos 	abort ();
   3239  1.1  christos     }
   3240  1.1  christos   else
   3241  1.1  christos     {
   3242  1.1  christos       /* The powerpc .got has a blrl instruction in it.  Mark it
   3243  1.1  christos 	 executable.  */
   3244  1.1  christos       flags = (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS
   3245  1.1  christos 	       | SEC_IN_MEMORY | SEC_LINKER_CREATED);
   3246  1.1  christos       if (!bfd_set_section_flags (abfd, s, flags))
   3247  1.1  christos 	return FALSE;
   3248  1.1  christos     }
   3249  1.1  christos 
   3250  1.1  christos   htab->relgot = bfd_get_linker_section (abfd, ".rela.got");
   3251  1.1  christos   if (!htab->relgot)
   3252  1.1  christos     abort ();
   3253  1.1  christos 
   3254  1.1  christos   return TRUE;
   3255  1.1  christos }
   3256  1.1  christos 
   3257  1.1  christos static bfd_boolean
   3258  1.1  christos ppc_elf_create_glink (bfd *abfd, struct bfd_link_info *info)
   3259  1.1  christos {
   3260  1.1  christos   struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
   3261  1.1  christos   asection *s;
   3262  1.1  christos   flagword flags;
   3263  1.1  christos 
   3264  1.1  christos   flags = (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY | SEC_HAS_CONTENTS
   3265  1.1  christos 	   | SEC_IN_MEMORY | SEC_LINKER_CREATED);
   3266  1.1  christos   s = bfd_make_section_anyway_with_flags (abfd, ".glink", flags);
   3267  1.1  christos   htab->glink = s;
   3268  1.1  christos   if (s == NULL
   3269  1.1  christos       || !bfd_set_section_alignment (abfd, s, 4))
   3270  1.1  christos     return FALSE;
   3271  1.1  christos 
   3272  1.1  christos   if (!info->no_ld_generated_unwind_info)
   3273  1.1  christos     {
   3274  1.1  christos       flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS
   3275  1.1  christos 	       | SEC_IN_MEMORY | SEC_LINKER_CREATED);
   3276  1.1  christos       s = bfd_make_section_anyway_with_flags (abfd, ".eh_frame", flags);
   3277  1.1  christos       htab->glink_eh_frame = s;
   3278  1.1  christos       if (s == NULL
   3279  1.1  christos 	  || !bfd_set_section_alignment (abfd, s, 2))
   3280  1.1  christos 	return FALSE;
   3281  1.1  christos     }
   3282  1.1  christos 
   3283  1.1  christos   flags = SEC_ALLOC | SEC_LINKER_CREATED;
   3284  1.1  christos   s = bfd_make_section_anyway_with_flags (abfd, ".iplt", flags);
   3285  1.1  christos   htab->iplt = s;
   3286  1.1  christos   if (s == NULL
   3287  1.1  christos       || !bfd_set_section_alignment (abfd, s, 4))
   3288  1.1  christos     return FALSE;
   3289  1.1  christos 
   3290  1.1  christos   flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS
   3291  1.1  christos 	   | SEC_IN_MEMORY | SEC_LINKER_CREATED);
   3292  1.1  christos   s = bfd_make_section_anyway_with_flags (abfd, ".rela.iplt", flags);
   3293  1.1  christos   htab->reliplt = s;
   3294  1.1  christos   if (s == NULL
   3295  1.1  christos       || ! bfd_set_section_alignment (abfd, s, 2))
   3296  1.1  christos     return FALSE;
   3297  1.1  christos   return TRUE;
   3298  1.1  christos }
   3299  1.1  christos 
   3300  1.1  christos /* We have to create .dynsbss and .rela.sbss here so that they get mapped
   3301  1.1  christos    to output sections (just like _bfd_elf_create_dynamic_sections has
   3302  1.1  christos    to create .dynbss and .rela.bss).  */
   3303  1.1  christos 
   3304  1.1  christos static bfd_boolean
   3305  1.1  christos ppc_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
   3306  1.1  christos {
   3307  1.1  christos   struct ppc_elf_link_hash_table *htab;
   3308  1.1  christos   asection *s;
   3309  1.1  christos   flagword flags;
   3310  1.1  christos 
   3311  1.1  christos   htab = ppc_elf_hash_table (info);
   3312  1.1  christos 
   3313  1.1  christos   if (htab->got == NULL
   3314  1.1  christos       && !ppc_elf_create_got (abfd, info))
   3315  1.1  christos     return FALSE;
   3316  1.1  christos 
   3317  1.1  christos   if (!_bfd_elf_create_dynamic_sections (abfd, info))
   3318  1.1  christos     return FALSE;
   3319  1.1  christos 
   3320  1.1  christos   if (htab->glink == NULL
   3321  1.1  christos       && !ppc_elf_create_glink (abfd, info))
   3322  1.1  christos     return FALSE;
   3323  1.1  christos 
   3324  1.1  christos   htab->dynbss = bfd_get_linker_section (abfd, ".dynbss");
   3325  1.1  christos   s = bfd_make_section_anyway_with_flags (abfd, ".dynsbss",
   3326  1.1  christos 					  SEC_ALLOC | SEC_LINKER_CREATED);
   3327  1.1  christos   htab->dynsbss = s;
   3328  1.1  christos   if (s == NULL)
   3329  1.1  christos     return FALSE;
   3330  1.1  christos 
   3331  1.1  christos   if (! info->shared)
   3332  1.1  christos     {
   3333  1.1  christos       htab->relbss = bfd_get_linker_section (abfd, ".rela.bss");
   3334  1.1  christos       flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS
   3335  1.1  christos 	       | SEC_IN_MEMORY | SEC_LINKER_CREATED);
   3336  1.1  christos       s = bfd_make_section_anyway_with_flags (abfd, ".rela.sbss", flags);
   3337  1.1  christos       htab->relsbss = s;
   3338  1.1  christos       if (s == NULL
   3339  1.1  christos 	  || ! bfd_set_section_alignment (abfd, s, 2))
   3340  1.1  christos 	return FALSE;
   3341  1.1  christos     }
   3342  1.1  christos 
   3343  1.1  christos   if (htab->is_vxworks
   3344  1.1  christos       && !elf_vxworks_create_dynamic_sections (abfd, info, &htab->srelplt2))
   3345  1.1  christos     return FALSE;
   3346  1.1  christos 
   3347  1.1  christos   htab->relplt = bfd_get_linker_section (abfd, ".rela.plt");
   3348  1.1  christos   htab->plt = s = bfd_get_linker_section (abfd, ".plt");
   3349  1.1  christos   if (s == NULL)
   3350  1.1  christos     abort ();
   3351  1.1  christos 
   3352  1.1  christos   flags = SEC_ALLOC | SEC_CODE | SEC_LINKER_CREATED;
   3353  1.1  christos   if (htab->plt_type == PLT_VXWORKS)
   3354  1.1  christos     /* The VxWorks PLT is a loaded section with contents.  */
   3355  1.1  christos     flags |= SEC_HAS_CONTENTS | SEC_LOAD | SEC_READONLY;
   3356  1.1  christos   return bfd_set_section_flags (abfd, s, flags);
   3357  1.1  christos }
   3358  1.1  christos 
   3359  1.1  christos /* Copy the extra info we tack onto an elf_link_hash_entry.  */
   3360  1.1  christos 
   3361  1.1  christos static void
   3362  1.1  christos ppc_elf_copy_indirect_symbol (struct bfd_link_info *info,
   3363  1.1  christos 			      struct elf_link_hash_entry *dir,
   3364  1.1  christos 			      struct elf_link_hash_entry *ind)
   3365  1.1  christos {
   3366  1.1  christos   struct ppc_elf_link_hash_entry *edir, *eind;
   3367  1.1  christos 
   3368  1.1  christos   edir = (struct ppc_elf_link_hash_entry *) dir;
   3369  1.1  christos   eind = (struct ppc_elf_link_hash_entry *) ind;
   3370  1.1  christos 
   3371  1.1  christos   edir->tls_mask |= eind->tls_mask;
   3372  1.1  christos   edir->has_sda_refs |= eind->has_sda_refs;
   3373  1.1  christos 
   3374  1.1  christos   /* If called to transfer flags for a weakdef during processing
   3375  1.1  christos      of elf_adjust_dynamic_symbol, don't copy non_got_ref.
   3376  1.1  christos      We clear it ourselves for ELIMINATE_COPY_RELOCS.  */
   3377  1.1  christos   if (!(ELIMINATE_COPY_RELOCS
   3378  1.1  christos 	&& eind->elf.root.type != bfd_link_hash_indirect
   3379  1.1  christos 	&& edir->elf.dynamic_adjusted))
   3380  1.1  christos     edir->elf.non_got_ref |= eind->elf.non_got_ref;
   3381  1.1  christos 
   3382  1.1  christos   edir->elf.ref_dynamic |= eind->elf.ref_dynamic;
   3383  1.1  christos   edir->elf.ref_regular |= eind->elf.ref_regular;
   3384  1.1  christos   edir->elf.ref_regular_nonweak |= eind->elf.ref_regular_nonweak;
   3385  1.1  christos   edir->elf.needs_plt |= eind->elf.needs_plt;
   3386  1.1  christos   edir->elf.pointer_equality_needed |= eind->elf.pointer_equality_needed;
   3387  1.1  christos 
   3388  1.1  christos   if (eind->dyn_relocs != NULL)
   3389  1.1  christos     {
   3390  1.1  christos       if (edir->dyn_relocs != NULL)
   3391  1.1  christos 	{
   3392  1.1  christos 	  struct elf_dyn_relocs **pp;
   3393  1.1  christos 	  struct elf_dyn_relocs *p;
   3394  1.1  christos 
   3395  1.1  christos 	  /* Add reloc counts against the indirect sym to the direct sym
   3396  1.1  christos 	     list.  Merge any entries against the same section.  */
   3397  1.1  christos 	  for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
   3398  1.1  christos 	    {
   3399  1.1  christos 	      struct elf_dyn_relocs *q;
   3400  1.1  christos 
   3401  1.1  christos 	      for (q = edir->dyn_relocs; q != NULL; q = q->next)
   3402  1.1  christos 		if (q->sec == p->sec)
   3403  1.1  christos 		  {
   3404  1.1  christos 		    q->pc_count += p->pc_count;
   3405  1.1  christos 		    q->count += p->count;
   3406  1.1  christos 		    *pp = p->next;
   3407  1.1  christos 		    break;
   3408  1.1  christos 		  }
   3409  1.1  christos 	      if (q == NULL)
   3410  1.1  christos 		pp = &p->next;
   3411  1.1  christos 	    }
   3412  1.1  christos 	  *pp = edir->dyn_relocs;
   3413  1.1  christos 	}
   3414  1.1  christos 
   3415  1.1  christos       edir->dyn_relocs = eind->dyn_relocs;
   3416  1.1  christos       eind->dyn_relocs = NULL;
   3417  1.1  christos     }
   3418  1.1  christos 
   3419  1.1  christos   /* If we were called to copy over info for a weak sym, that's all.
   3420  1.1  christos      You might think dyn_relocs need not be copied over;  After all,
   3421  1.1  christos      both syms will be dynamic or both non-dynamic so we're just
   3422  1.1  christos      moving reloc accounting around.  However, ELIMINATE_COPY_RELOCS
   3423  1.1  christos      code in ppc_elf_adjust_dynamic_symbol needs to check for
   3424  1.1  christos      dyn_relocs in read-only sections, and it does so on what is the
   3425  1.1  christos      DIR sym here.  */
   3426  1.1  christos   if (eind->elf.root.type != bfd_link_hash_indirect)
   3427  1.1  christos     return;
   3428  1.1  christos 
   3429  1.1  christos   /* Copy over the GOT refcount entries that we may have already seen to
   3430  1.1  christos      the symbol which just became indirect.  */
   3431  1.1  christos   edir->elf.got.refcount += eind->elf.got.refcount;
   3432  1.1  christos   eind->elf.got.refcount = 0;
   3433  1.1  christos 
   3434  1.1  christos   /* And plt entries.  */
   3435  1.1  christos   if (eind->elf.plt.plist != NULL)
   3436  1.1  christos     {
   3437  1.1  christos       if (edir->elf.plt.plist != NULL)
   3438  1.1  christos 	{
   3439  1.1  christos 	  struct plt_entry **entp;
   3440  1.1  christos 	  struct plt_entry *ent;
   3441  1.1  christos 
   3442  1.1  christos 	  for (entp = &eind->elf.plt.plist; (ent = *entp) != NULL; )
   3443  1.1  christos 	    {
   3444  1.1  christos 	      struct plt_entry *dent;
   3445  1.1  christos 
   3446  1.1  christos 	      for (dent = edir->elf.plt.plist; dent != NULL; dent = dent->next)
   3447  1.1  christos 		if (dent->sec == ent->sec && dent->addend == ent->addend)
   3448  1.1  christos 		  {
   3449  1.1  christos 		    dent->plt.refcount += ent->plt.refcount;
   3450  1.1  christos 		    *entp = ent->next;
   3451  1.1  christos 		    break;
   3452  1.1  christos 		  }
   3453  1.1  christos 	      if (dent == NULL)
   3454  1.1  christos 		entp = &ent->next;
   3455  1.1  christos 	    }
   3456  1.1  christos 	  *entp = edir->elf.plt.plist;
   3457  1.1  christos 	}
   3458  1.1  christos 
   3459  1.1  christos       edir->elf.plt.plist = eind->elf.plt.plist;
   3460  1.1  christos       eind->elf.plt.plist = NULL;
   3461  1.1  christos     }
   3462  1.1  christos 
   3463  1.1  christos   if (eind->elf.dynindx != -1)
   3464  1.1  christos     {
   3465  1.1  christos       if (edir->elf.dynindx != -1)
   3466  1.1  christos 	_bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
   3467  1.1  christos 				edir->elf.dynstr_index);
   3468  1.1  christos       edir->elf.dynindx = eind->elf.dynindx;
   3469  1.1  christos       edir->elf.dynstr_index = eind->elf.dynstr_index;
   3470  1.1  christos       eind->elf.dynindx = -1;
   3471  1.1  christos       eind->elf.dynstr_index = 0;
   3472  1.1  christos     }
   3473  1.1  christos }
   3474  1.1  christos 
   3475  1.1  christos /* Hook called by the linker routine which adds symbols from an object
   3476  1.1  christos    file.  We use it to put .comm items in .sbss, and not .bss.  */
   3477  1.1  christos 
   3478  1.1  christos static bfd_boolean
   3479  1.1  christos ppc_elf_add_symbol_hook (bfd *abfd,
   3480  1.1  christos 			 struct bfd_link_info *info,
   3481  1.1  christos 			 Elf_Internal_Sym *sym,
   3482  1.1  christos 			 const char **namep ATTRIBUTE_UNUSED,
   3483  1.1  christos 			 flagword *flagsp ATTRIBUTE_UNUSED,
   3484  1.1  christos 			 asection **secp,
   3485  1.1  christos 			 bfd_vma *valp)
   3486  1.1  christos {
   3487  1.1  christos   if (sym->st_shndx == SHN_COMMON
   3488  1.1  christos       && !info->relocatable
   3489  1.1  christos       && is_ppc_elf (info->output_bfd)
   3490  1.1  christos       && sym->st_size <= elf_gp_size (abfd))
   3491  1.1  christos     {
   3492  1.1  christos       /* Common symbols less than or equal to -G nn bytes are automatically
   3493  1.1  christos 	 put into .sbss.  */
   3494  1.1  christos       struct ppc_elf_link_hash_table *htab;
   3495  1.1  christos 
   3496  1.1  christos       htab = ppc_elf_hash_table (info);
   3497  1.1  christos       if (htab->sbss == NULL)
   3498  1.1  christos 	{
   3499  1.1  christos 	  flagword flags = SEC_IS_COMMON | SEC_LINKER_CREATED;
   3500  1.1  christos 
   3501  1.1  christos 	  if (!htab->elf.dynobj)
   3502  1.1  christos 	    htab->elf.dynobj = abfd;
   3503  1.1  christos 
   3504  1.1  christos 	  htab->sbss = bfd_make_section_anyway_with_flags (htab->elf.dynobj,
   3505  1.1  christos 							   ".sbss",
   3506  1.1  christos 							   flags);
   3507  1.1  christos 	  if (htab->sbss == NULL)
   3508  1.1  christos 	    return FALSE;
   3509  1.1  christos 	}
   3510  1.1  christos 
   3511  1.1  christos       *secp = htab->sbss;
   3512  1.1  christos       *valp = sym->st_size;
   3513  1.1  christos     }
   3514  1.1  christos 
   3515  1.1  christos   if ((abfd->flags & DYNAMIC) == 0
   3516  1.1  christos       && (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC
   3517  1.1  christos 	  || ELF_ST_BIND (sym->st_info) == STB_GNU_UNIQUE))
   3518  1.1  christos     elf_tdata (info->output_bfd)->has_gnu_symbols = TRUE;
   3519  1.1  christos 
   3520  1.1  christos   return TRUE;
   3521  1.1  christos }
   3522  1.1  christos 
   3523  1.1  christos static bfd_boolean
   3525  1.1  christos create_sdata_sym (struct bfd_link_info *info, elf_linker_section_t *lsect)
   3526  1.1  christos {
   3527  1.1  christos   struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
   3528  1.1  christos 
   3529  1.1  christos   lsect->sym = elf_link_hash_lookup (&htab->elf, lsect->sym_name,
   3530  1.1  christos 				     TRUE, FALSE, TRUE);
   3531  1.1  christos   if (lsect->sym == NULL)
   3532  1.1  christos     return FALSE;
   3533  1.1  christos   if (lsect->sym->root.type == bfd_link_hash_new)
   3534  1.1  christos     lsect->sym->non_elf = 0;
   3535  1.1  christos   lsect->sym->ref_regular = 1;
   3536  1.1  christos   _bfd_elf_link_hash_hide_symbol (info, lsect->sym, TRUE);
   3537  1.1  christos   return TRUE;
   3538  1.1  christos }
   3539  1.1  christos 
   3540  1.1  christos /* Create a special linker section.  */
   3541  1.1  christos 
   3542  1.1  christos static bfd_boolean
   3543  1.1  christos ppc_elf_create_linker_section (bfd *abfd,
   3544  1.1  christos 			       struct bfd_link_info *info,
   3545  1.1  christos 			       flagword flags,
   3546  1.1  christos 			       elf_linker_section_t *lsect)
   3547  1.1  christos {
   3548  1.1  christos   struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
   3549  1.1  christos   asection *s;
   3550  1.1  christos 
   3551  1.1  christos   flags |= (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
   3552  1.1  christos 	    | SEC_LINKER_CREATED);
   3553  1.1  christos 
   3554  1.1  christos   /* Record the first bfd that needs the special sections.  */
   3555  1.1  christos   if (!htab->elf.dynobj)
   3556  1.1  christos     htab->elf.dynobj = abfd;
   3557  1.1  christos 
   3558  1.1  christos   s = bfd_make_section_anyway_with_flags (htab->elf.dynobj,
   3559  1.1  christos 					  lsect->name,
   3560  1.1  christos 					  flags);
   3561  1.1  christos   if (s == NULL
   3562  1.1  christos       || !bfd_set_section_alignment (htab->elf.dynobj, s, 2))
   3563  1.1  christos     return FALSE;
   3564  1.1  christos   lsect->section = s;
   3565  1.1  christos 
   3566  1.1  christos   return create_sdata_sym (info, lsect);
   3567  1.1  christos }
   3568  1.1  christos 
   3569  1.1  christos /* Find a linker generated pointer with a given addend and type.  */
   3570  1.1  christos 
   3571  1.1  christos static elf_linker_section_pointers_t *
   3572  1.1  christos elf_find_pointer_linker_section
   3573  1.1  christos   (elf_linker_section_pointers_t *linker_pointers,
   3574  1.1  christos    bfd_vma addend,
   3575  1.1  christos    elf_linker_section_t *lsect)
   3576  1.1  christos {
   3577  1.1  christos   for ( ; linker_pointers != NULL; linker_pointers = linker_pointers->next)
   3578  1.1  christos     if (lsect == linker_pointers->lsect && addend == linker_pointers->addend)
   3579  1.1  christos       return linker_pointers;
   3580  1.1  christos 
   3581  1.1  christos   return NULL;
   3582  1.1  christos }
   3583  1.1  christos 
   3584  1.1  christos /* Allocate a pointer to live in a linker created section.  */
   3585  1.1  christos 
   3586  1.1  christos static bfd_boolean
   3587  1.1  christos elf_create_pointer_linker_section (bfd *abfd,
   3588  1.1  christos 				   elf_linker_section_t *lsect,
   3589  1.1  christos 				   struct elf_link_hash_entry *h,
   3590  1.1  christos 				   const Elf_Internal_Rela *rel)
   3591  1.1  christos {
   3592  1.1  christos   elf_linker_section_pointers_t **ptr_linker_section_ptr = NULL;
   3593  1.1  christos   elf_linker_section_pointers_t *linker_section_ptr;
   3594  1.1  christos   unsigned long r_symndx = ELF32_R_SYM (rel->r_info);
   3595  1.1  christos   bfd_size_type amt;
   3596  1.1  christos 
   3597  1.1  christos   BFD_ASSERT (lsect != NULL);
   3598  1.1  christos 
   3599  1.1  christos   /* Is this a global symbol?  */
   3600  1.1  christos   if (h != NULL)
   3601  1.1  christos     {
   3602  1.1  christos       struct ppc_elf_link_hash_entry *eh;
   3603  1.1  christos 
   3604  1.1  christos       /* Has this symbol already been allocated?  If so, our work is done.  */
   3605  1.1  christos       eh = (struct ppc_elf_link_hash_entry *) h;
   3606  1.1  christos       if (elf_find_pointer_linker_section (eh->linker_section_pointer,
   3607  1.1  christos 					   rel->r_addend,
   3608  1.1  christos 					   lsect))
   3609  1.1  christos 	return TRUE;
   3610  1.1  christos 
   3611  1.1  christos       ptr_linker_section_ptr = &eh->linker_section_pointer;
   3612  1.1  christos     }
   3613  1.1  christos   else
   3614  1.1  christos     {
   3615  1.1  christos       BFD_ASSERT (is_ppc_elf (abfd));
   3616  1.1  christos 
   3617  1.1  christos       /* Allocation of a pointer to a local symbol.  */
   3618  1.1  christos       elf_linker_section_pointers_t **ptr = elf_local_ptr_offsets (abfd);
   3619  1.1  christos 
   3620  1.1  christos       /* Allocate a table to hold the local symbols if first time.  */
   3621  1.1  christos       if (!ptr)
   3622  1.1  christos 	{
   3623  1.1  christos 	  unsigned int num_symbols = elf_symtab_hdr (abfd).sh_info;
   3624  1.1  christos 
   3625  1.1  christos 	  amt = num_symbols;
   3626  1.1  christos 	  amt *= sizeof (elf_linker_section_pointers_t *);
   3627  1.1  christos 	  ptr = bfd_zalloc (abfd, amt);
   3628  1.1  christos 
   3629  1.1  christos 	  if (!ptr)
   3630  1.1  christos 	    return FALSE;
   3631  1.1  christos 
   3632  1.1  christos 	  elf_local_ptr_offsets (abfd) = ptr;
   3633  1.1  christos 	}
   3634  1.1  christos 
   3635  1.1  christos       /* Has this symbol already been allocated?  If so, our work is done.  */
   3636  1.1  christos       if (elf_find_pointer_linker_section (ptr[r_symndx],
   3637  1.1  christos 					   rel->r_addend,
   3638  1.1  christos 					   lsect))
   3639  1.1  christos 	return TRUE;
   3640  1.1  christos 
   3641  1.1  christos       ptr_linker_section_ptr = &ptr[r_symndx];
   3642  1.1  christos     }
   3643  1.1  christos 
   3644  1.1  christos   /* Allocate space for a pointer in the linker section, and allocate
   3645  1.1  christos      a new pointer record from internal memory.  */
   3646  1.1  christos   BFD_ASSERT (ptr_linker_section_ptr != NULL);
   3647  1.1  christos   amt = sizeof (elf_linker_section_pointers_t);
   3648  1.1  christos   linker_section_ptr = bfd_alloc (abfd, amt);
   3649  1.1  christos 
   3650  1.1  christos   if (!linker_section_ptr)
   3651  1.1  christos     return FALSE;
   3652  1.1  christos 
   3653  1.1  christos   linker_section_ptr->next = *ptr_linker_section_ptr;
   3654  1.1  christos   linker_section_ptr->addend = rel->r_addend;
   3655  1.1  christos   linker_section_ptr->lsect = lsect;
   3656  1.1  christos   *ptr_linker_section_ptr = linker_section_ptr;
   3657  1.1  christos 
   3658  1.1  christos   linker_section_ptr->offset = lsect->section->size;
   3659  1.1  christos   lsect->section->size += 4;
   3660  1.1  christos 
   3661  1.1  christos #ifdef DEBUG
   3662  1.1  christos   fprintf (stderr,
   3663  1.1  christos 	   "Create pointer in linker section %s, offset = %ld, section size = %ld\n",
   3664  1.1  christos 	   lsect->name, (long) linker_section_ptr->offset,
   3665  1.1  christos 	   (long) lsect->section->size);
   3666  1.1  christos #endif
   3667  1.1  christos 
   3668  1.1  christos   return TRUE;
   3669  1.1  christos }
   3670  1.1  christos 
   3671  1.1  christos static struct plt_entry **
   3672  1.1  christos update_local_sym_info (bfd *abfd,
   3673  1.1  christos 		       Elf_Internal_Shdr *symtab_hdr,
   3674  1.1  christos 		       unsigned long r_symndx,
   3675  1.1  christos 		       int tls_type)
   3676  1.1  christos {
   3677  1.1  christos   bfd_signed_vma *local_got_refcounts = elf_local_got_refcounts (abfd);
   3678  1.1  christos   struct plt_entry **local_plt;
   3679  1.1  christos   char *local_got_tls_masks;
   3680  1.1  christos 
   3681  1.1  christos   if (local_got_refcounts == NULL)
   3682  1.1  christos     {
   3683  1.1  christos       bfd_size_type size = symtab_hdr->sh_info;
   3684  1.1  christos 
   3685  1.1  christos       size *= (sizeof (*local_got_refcounts)
   3686  1.1  christos 	       + sizeof (*local_plt)
   3687  1.1  christos 	       + sizeof (*local_got_tls_masks));
   3688  1.1  christos       local_got_refcounts = bfd_zalloc (abfd, size);
   3689  1.1  christos       if (local_got_refcounts == NULL)
   3690  1.1  christos 	return NULL;
   3691  1.1  christos       elf_local_got_refcounts (abfd) = local_got_refcounts;
   3692  1.1  christos     }
   3693  1.1  christos 
   3694  1.1  christos   local_plt = (struct plt_entry **) (local_got_refcounts + symtab_hdr->sh_info);
   3695  1.1  christos   local_got_tls_masks = (char *) (local_plt + symtab_hdr->sh_info);
   3696  1.1  christos   local_got_tls_masks[r_symndx] |= tls_type;
   3697  1.1  christos   if (tls_type != PLT_IFUNC)
   3698  1.1  christos     local_got_refcounts[r_symndx] += 1;
   3699  1.1  christos   return local_plt + r_symndx;
   3700  1.1  christos }
   3701  1.1  christos 
   3702  1.1  christos static bfd_boolean
   3703  1.1  christos update_plt_info (bfd *abfd, struct plt_entry **plist,
   3704  1.1  christos 		 asection *sec, bfd_vma addend)
   3705  1.1  christos {
   3706  1.1  christos   struct plt_entry *ent;
   3707  1.1  christos 
   3708  1.1  christos   if (addend < 32768)
   3709  1.1  christos     sec = NULL;
   3710  1.1  christos   for (ent = *plist; ent != NULL; ent = ent->next)
   3711  1.1  christos     if (ent->sec == sec && ent->addend == addend)
   3712  1.1  christos       break;
   3713  1.1  christos   if (ent == NULL)
   3714  1.1  christos     {
   3715  1.1  christos       bfd_size_type amt = sizeof (*ent);
   3716  1.1  christos       ent = bfd_alloc (abfd, amt);
   3717  1.1  christos       if (ent == NULL)
   3718  1.1  christos 	return FALSE;
   3719  1.1  christos       ent->next = *plist;
   3720  1.1  christos       ent->sec = sec;
   3721  1.1  christos       ent->addend = addend;
   3722  1.1  christos       ent->plt.refcount = 0;
   3723  1.1  christos       *plist = ent;
   3724  1.1  christos     }
   3725  1.1  christos   ent->plt.refcount += 1;
   3726  1.1  christos   return TRUE;
   3727  1.1  christos }
   3728  1.1  christos 
   3729  1.1  christos static struct plt_entry *
   3730  1.1  christos find_plt_ent (struct plt_entry **plist, asection *sec, bfd_vma addend)
   3731  1.1  christos {
   3732  1.1  christos   struct plt_entry *ent;
   3733  1.1  christos 
   3734  1.1  christos   if (addend < 32768)
   3735  1.1  christos     sec = NULL;
   3736  1.1  christos   for (ent = *plist; ent != NULL; ent = ent->next)
   3737  1.1  christos     if (ent->sec == sec && ent->addend == addend)
   3738  1.1  christos       break;
   3739  1.1  christos   return ent;
   3740  1.1  christos }
   3741  1.1  christos 
   3742  1.1  christos static bfd_boolean
   3743  1.1  christos is_branch_reloc (enum elf_ppc_reloc_type r_type)
   3744  1.1  christos {
   3745  1.1  christos   return (r_type == R_PPC_PLTREL24
   3746  1.1  christos 	  || r_type == R_PPC_LOCAL24PC
   3747  1.1  christos 	  || r_type == R_PPC_REL24
   3748  1.1  christos 	  || r_type == R_PPC_REL14
   3749  1.1  christos 	  || r_type == R_PPC_REL14_BRTAKEN
   3750  1.1  christos 	  || r_type == R_PPC_REL14_BRNTAKEN
   3751  1.1  christos 	  || r_type == R_PPC_ADDR24
   3752  1.1  christos 	  || r_type == R_PPC_ADDR14
   3753  1.1  christos 	  || r_type == R_PPC_ADDR14_BRTAKEN
   3754  1.1  christos 	  || r_type == R_PPC_ADDR14_BRNTAKEN);
   3755  1.1  christos }
   3756  1.1  christos 
   3757  1.1  christos static void
   3758  1.1  christos bad_shared_reloc (bfd *abfd, enum elf_ppc_reloc_type r_type)
   3759  1.1  christos {
   3760  1.1  christos   (*_bfd_error_handler)
   3761  1.1  christos     (_("%B: relocation %s cannot be used when making a shared object"),
   3762  1.1  christos      abfd,
   3763  1.1  christos      ppc_elf_howto_table[r_type]->name);
   3764  1.1  christos   bfd_set_error (bfd_error_bad_value);
   3765  1.1  christos }
   3766  1.1  christos 
   3767  1.1  christos /* Look through the relocs for a section during the first phase, and
   3768  1.1  christos    allocate space in the global offset table or procedure linkage
   3769  1.1  christos    table.  */
   3770  1.1  christos 
   3771  1.1  christos static bfd_boolean
   3772  1.1  christos ppc_elf_check_relocs (bfd *abfd,
   3773  1.1  christos 		      struct bfd_link_info *info,
   3774  1.1  christos 		      asection *sec,
   3775  1.1  christos 		      const Elf_Internal_Rela *relocs)
   3776  1.1  christos {
   3777  1.1  christos   struct ppc_elf_link_hash_table *htab;
   3778  1.1  christos   Elf_Internal_Shdr *symtab_hdr;
   3779  1.1  christos   struct elf_link_hash_entry **sym_hashes;
   3780  1.1  christos   const Elf_Internal_Rela *rel;
   3781  1.1  christos   const Elf_Internal_Rela *rel_end;
   3782  1.1  christos   asection *got2, *sreloc;
   3783  1.1  christos   struct elf_link_hash_entry *tga;
   3784  1.1  christos 
   3785  1.1  christos   if (info->relocatable)
   3786  1.1  christos     return TRUE;
   3787  1.1  christos 
   3788  1.1  christos   /* Don't do anything special with non-loaded, non-alloced sections.
   3789  1.1  christos      In particular, any relocs in such sections should not affect GOT
   3790  1.1  christos      and PLT reference counting (ie. we don't allow them to create GOT
   3791  1.1  christos      or PLT entries), there's no possibility or desire to optimize TLS
   3792  1.1  christos      relocs, and there's not much point in propagating relocs to shared
   3793  1.1  christos      libs that the dynamic linker won't relocate.  */
   3794  1.1  christos   if ((sec->flags & SEC_ALLOC) == 0)
   3795  1.1  christos     return TRUE;
   3796  1.1  christos 
   3797  1.1  christos #ifdef DEBUG
   3798  1.1  christos   _bfd_error_handler ("ppc_elf_check_relocs called for section %A in %B",
   3799  1.1  christos 		      sec, abfd);
   3800  1.1  christos #endif
   3801  1.1  christos 
   3802  1.1  christos   BFD_ASSERT (is_ppc_elf (abfd));
   3803  1.1  christos 
   3804  1.1  christos   /* Initialize howto table if not already done.  */
   3805  1.1  christos   if (!ppc_elf_howto_table[R_PPC_ADDR32])
   3806  1.1  christos     ppc_elf_howto_init ();
   3807  1.1  christos 
   3808  1.1  christos   htab = ppc_elf_hash_table (info);
   3809  1.1  christos   if (htab->glink == NULL)
   3810  1.1  christos     {
   3811  1.1  christos       if (htab->elf.dynobj == NULL)
   3812  1.1  christos 	htab->elf.dynobj = abfd;
   3813  1.1  christos       if (!ppc_elf_create_glink (htab->elf.dynobj, info))
   3814  1.1  christos 	return FALSE;
   3815  1.1  christos     }
   3816  1.1  christos   tga = elf_link_hash_lookup (&htab->elf, "__tls_get_addr",
   3817  1.1  christos 			      FALSE, FALSE, TRUE);
   3818  1.1  christos   symtab_hdr = &elf_symtab_hdr (abfd);
   3819  1.1  christos   sym_hashes = elf_sym_hashes (abfd);
   3820  1.1  christos   got2 = bfd_get_section_by_name (abfd, ".got2");
   3821  1.1  christos   sreloc = NULL;
   3822  1.1  christos 
   3823  1.1  christos   rel_end = relocs + sec->reloc_count;
   3824  1.1  christos   for (rel = relocs; rel < rel_end; rel++)
   3825  1.1  christos     {
   3826  1.1  christos       unsigned long r_symndx;
   3827  1.1  christos       enum elf_ppc_reloc_type r_type;
   3828  1.1  christos       struct elf_link_hash_entry *h;
   3829  1.1  christos       int tls_type;
   3830  1.1  christos 
   3831  1.1  christos       r_symndx = ELF32_R_SYM (rel->r_info);
   3832  1.1  christos       if (r_symndx < symtab_hdr->sh_info)
   3833  1.1  christos 	h = NULL;
   3834  1.1  christos       else
   3835  1.1  christos 	{
   3836  1.1  christos 	  h = sym_hashes[r_symndx - symtab_hdr->sh_info];
   3837  1.1  christos 	  while (h->root.type == bfd_link_hash_indirect
   3838  1.1  christos 		 || h->root.type == bfd_link_hash_warning)
   3839  1.1  christos 	    h = (struct elf_link_hash_entry *) h->root.u.i.link;
   3840  1.1  christos 	}
   3841  1.1  christos 
   3842  1.1  christos       /* If a relocation refers to _GLOBAL_OFFSET_TABLE_, create the .got.
   3843  1.1  christos 	 This shows up in particular in an R_PPC_ADDR32 in the eabi
   3844  1.1  christos 	 startup code.  */
   3845  1.1  christos       if (h != NULL
   3846  1.1  christos 	  && htab->got == NULL
   3847  1.1  christos 	  && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
   3848  1.1  christos 	{
   3849  1.1  christos 	  if (htab->elf.dynobj == NULL)
   3850  1.1  christos 	    htab->elf.dynobj = abfd;
   3851  1.1  christos 	  if (!ppc_elf_create_got (htab->elf.dynobj, info))
   3852  1.1  christos 	    return FALSE;
   3853  1.1  christos 	  BFD_ASSERT (h == htab->elf.hgot);
   3854  1.1  christos 	}
   3855  1.1  christos 
   3856  1.1  christos       tls_type = 0;
   3857  1.1  christos       r_type = ELF32_R_TYPE (rel->r_info);
   3858  1.1  christos       if (h == NULL && !htab->is_vxworks)
   3859  1.1  christos 	{
   3860  1.1  christos 	  Elf_Internal_Sym *isym = bfd_sym_from_r_symndx (&htab->sym_cache,
   3861  1.1  christos 							  abfd, r_symndx);
   3862  1.1  christos 	  if (isym == NULL)
   3863  1.1  christos 	    return FALSE;
   3864  1.1  christos 
   3865  1.1  christos 	  if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC
   3866  1.1  christos 	      && (!info->shared
   3867  1.1  christos 		  || is_branch_reloc (r_type)))
   3868  1.1  christos 	    {
   3869  1.1  christos 	      struct plt_entry **ifunc;
   3870  1.1  christos 	      bfd_vma addend;
   3871  1.1  christos 
   3872  1.1  christos 	      ifunc = update_local_sym_info (abfd, symtab_hdr, r_symndx,
   3873  1.1  christos 					     PLT_IFUNC);
   3874  1.1  christos 	      if (ifunc == NULL)
   3875  1.1  christos 		return FALSE;
   3876  1.1  christos 
   3877  1.1  christos 	      /* STT_GNU_IFUNC symbols must have a PLT entry;
   3878  1.1  christos 		 In a non-pie executable even when there are
   3879  1.1  christos 		 no plt calls.  */
   3880  1.1  christos 	      addend = 0;
   3881  1.1  christos 	      if (r_type == R_PPC_PLTREL24)
   3882  1.1  christos 		{
   3883  1.1  christos 		  ppc_elf_tdata (abfd)->makes_plt_call = 1;
   3884  1.1  christos 		  if (info->shared)
   3885  1.1  christos 		    addend = rel->r_addend;
   3886  1.1  christos 		}
   3887  1.1  christos 	      if (!update_plt_info (abfd, ifunc, got2, addend))
   3888  1.1  christos 		return FALSE;
   3889  1.1  christos 	    }
   3890  1.1  christos 	}
   3891  1.1  christos 
   3892  1.1  christos       if (!htab->is_vxworks
   3893  1.1  christos 	  && is_branch_reloc (r_type)
   3894  1.1  christos 	  && h != NULL
   3895  1.1  christos 	  && h == tga)
   3896  1.1  christos 	{
   3897  1.1  christos 	  if (rel != relocs
   3898  1.1  christos 	      && (ELF32_R_TYPE (rel[-1].r_info) == R_PPC_TLSGD
   3899  1.1  christos 		  || ELF32_R_TYPE (rel[-1].r_info) == R_PPC_TLSLD))
   3900  1.1  christos 	    /* We have a new-style __tls_get_addr call with a marker
   3901  1.1  christos 	       reloc.  */
   3902  1.1  christos 	    ;
   3903  1.1  christos 	  else
   3904  1.1  christos 	    /* Mark this section as having an old-style call.  */
   3905  1.1  christos 	    sec->has_tls_get_addr_call = 1;
   3906  1.1  christos 	}
   3907  1.1  christos 
   3908  1.1  christos       switch ((int)r_type)
   3909  1.1  christos 	{
   3910  1.1  christos 	case R_PPC_TLSGD:
   3911  1.1  christos 	case R_PPC_TLSLD:
   3912  1.1  christos 	  /* These special tls relocs tie a call to __tls_get_addr with
   3913  1.1  christos 	     its parameter symbol.  */
   3914  1.1  christos 	  break;
   3915  1.1  christos 
   3916  1.1  christos 	case R_PPC_GOT_TLSLD16:
   3917  1.1  christos 	case R_PPC_GOT_TLSLD16_LO:
   3918  1.1  christos 	case R_PPC_GOT_TLSLD16_HI:
   3919  1.1  christos 	case R_PPC_GOT_TLSLD16_HA:
   3920  1.1  christos 	  tls_type = TLS_TLS | TLS_LD;
   3921  1.1  christos 	  goto dogottls;
   3922  1.1  christos 
   3923  1.1  christos 	case R_PPC_GOT_TLSGD16:
   3924  1.1  christos 	case R_PPC_GOT_TLSGD16_LO:
   3925  1.1  christos 	case R_PPC_GOT_TLSGD16_HI:
   3926  1.1  christos 	case R_PPC_GOT_TLSGD16_HA:
   3927  1.1  christos 	  tls_type = TLS_TLS | TLS_GD;
   3928  1.1  christos 	  goto dogottls;
   3929  1.1  christos 
   3930  1.1  christos 	case R_PPC_GOT_TPREL16:
   3931  1.1  christos 	case R_PPC_GOT_TPREL16_LO:
   3932  1.1  christos 	case R_PPC_GOT_TPREL16_HI:
   3933  1.1  christos 	case R_PPC_GOT_TPREL16_HA:
   3934  1.1  christos 	  if (!info->executable)
   3935  1.1  christos 	    info->flags |= DF_STATIC_TLS;
   3936  1.1  christos 	  tls_type = TLS_TLS | TLS_TPREL;
   3937  1.1  christos 	  goto dogottls;
   3938  1.1  christos 
   3939  1.1  christos 	case R_PPC_GOT_DTPREL16:
   3940  1.1  christos 	case R_PPC_GOT_DTPREL16_LO:
   3941  1.1  christos 	case R_PPC_GOT_DTPREL16_HI:
   3942  1.1  christos 	case R_PPC_GOT_DTPREL16_HA:
   3943  1.1  christos 	  tls_type = TLS_TLS | TLS_DTPREL;
   3944  1.1  christos 	dogottls:
   3945  1.1  christos 	  sec->has_tls_reloc = 1;
   3946  1.1  christos 	  /* Fall thru */
   3947  1.1  christos 
   3948  1.1  christos 	  /* GOT16 relocations */
   3949  1.1  christos 	case R_PPC_GOT16:
   3950  1.1  christos 	case R_PPC_GOT16_LO:
   3951  1.1  christos 	case R_PPC_GOT16_HI:
   3952  1.1  christos 	case R_PPC_GOT16_HA:
   3953  1.1  christos 	  /* This symbol requires a global offset table entry.  */
   3954  1.1  christos 	  if (htab->got == NULL)
   3955  1.1  christos 	    {
   3956  1.1  christos 	      if (htab->elf.dynobj == NULL)
   3957  1.1  christos 		htab->elf.dynobj = abfd;
   3958  1.1  christos 	      if (!ppc_elf_create_got (htab->elf.dynobj, info))
   3959  1.1  christos 		return FALSE;
   3960  1.1  christos 	    }
   3961  1.1  christos 	  if (h != NULL)
   3962  1.1  christos 	    {
   3963  1.1  christos 	      h->got.refcount += 1;
   3964  1.1  christos 	      ppc_elf_hash_entry (h)->tls_mask |= tls_type;
   3965  1.1  christos 	    }
   3966  1.1  christos 	  else
   3967  1.1  christos 	    /* This is a global offset table entry for a local symbol.  */
   3968  1.1  christos 	    if (!update_local_sym_info (abfd, symtab_hdr, r_symndx, tls_type))
   3969  1.1  christos 	      return FALSE;
   3970  1.1  christos 
   3971  1.1  christos 	  /* We may also need a plt entry if the symbol turns out to be
   3972  1.1  christos 	     an ifunc.  */
   3973  1.1  christos 	  if (h != NULL && !info->shared)
   3974  1.1  christos 	    {
   3975  1.1  christos 	      if (!update_plt_info (abfd, &h->plt.plist, NULL, 0))
   3976  1.1  christos 		return FALSE;
   3977  1.1  christos 	    }
   3978  1.1  christos 	  break;
   3979  1.1  christos 
   3980  1.1  christos 	  /* Indirect .sdata relocation.  */
   3981  1.1  christos 	case R_PPC_EMB_SDAI16:
   3982  1.1  christos 	  if (info->shared)
   3983  1.1  christos 	    {
   3984  1.1  christos 	      bad_shared_reloc (abfd, r_type);
   3985  1.1  christos 	      return FALSE;
   3986  1.1  christos 	    }
   3987  1.1  christos 	  if (htab->sdata[0].section == NULL
   3988  1.1  christos 	      && !ppc_elf_create_linker_section (abfd, info, 0,
   3989  1.1  christos 						 &htab->sdata[0]))
   3990  1.1  christos 	    return FALSE;
   3991  1.1  christos 	  if (!elf_create_pointer_linker_section (abfd, &htab->sdata[0],
   3992  1.1  christos 						  h, rel))
   3993  1.1  christos 	    return FALSE;
   3994  1.1  christos 	  if (h != NULL)
   3995  1.1  christos 	    {
   3996  1.1  christos 	      ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
   3997  1.1  christos 	      h->non_got_ref = TRUE;
   3998  1.1  christos 	    }
   3999  1.1  christos 	  break;
   4000  1.1  christos 
   4001  1.1  christos 	  /* Indirect .sdata2 relocation.  */
   4002  1.1  christos 	case R_PPC_EMB_SDA2I16:
   4003  1.1  christos 	  if (info->shared)
   4004  1.1  christos 	    {
   4005  1.1  christos 	      bad_shared_reloc (abfd, r_type);
   4006  1.1  christos 	      return FALSE;
   4007  1.1  christos 	    }
   4008  1.1  christos 	  if (htab->sdata[1].section == NULL
   4009  1.1  christos 	      && !ppc_elf_create_linker_section (abfd, info, SEC_READONLY,
   4010  1.1  christos 						 &htab->sdata[1]))
   4011  1.1  christos 	    return FALSE;
   4012  1.1  christos 	  if (!elf_create_pointer_linker_section (abfd, &htab->sdata[1],
   4013  1.1  christos 						  h, rel))
   4014  1.1  christos 	    return FALSE;
   4015  1.1  christos 	  if (h != NULL)
   4016  1.1  christos 	    {
   4017  1.1  christos 	      ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
   4018  1.1  christos 	      h->non_got_ref = TRUE;
   4019  1.1  christos 	    }
   4020  1.1  christos 	  break;
   4021  1.1  christos 
   4022  1.1  christos 	case R_PPC_VLE_SDAREL_LO16A:
   4023  1.1  christos 	case R_PPC_VLE_SDAREL_LO16D:
   4024  1.1  christos 	case R_PPC_VLE_SDAREL_HI16A:
   4025  1.1  christos 	case R_PPC_VLE_SDAREL_HI16D:
   4026  1.1  christos 	case R_PPC_VLE_SDAREL_HA16A:
   4027  1.1  christos 	case R_PPC_VLE_SDAREL_HA16D:
   4028  1.1  christos 	case R_PPC_SDAREL16:
   4029  1.1  christos 	  if (htab->sdata[0].sym == NULL
   4030  1.1  christos 	      && !create_sdata_sym (info, &htab->sdata[0]))
   4031  1.1  christos 	    return FALSE;
   4032  1.1  christos 
   4033  1.1  christos 	  if (htab->sdata[1].sym == NULL
   4034  1.1  christos 	      && !create_sdata_sym (info, &htab->sdata[1]))
   4035  1.1  christos 	    return FALSE;
   4036  1.1  christos 
   4037  1.1  christos 	  if (h != NULL)
   4038  1.1  christos 	    {
   4039  1.1  christos 	      ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
   4040  1.1  christos 	      h->non_got_ref = TRUE;
   4041  1.1  christos 	    }
   4042  1.1  christos 	  break;
   4043  1.1  christos 
   4044  1.1  christos 	case R_PPC_VLE_REL8:
   4045  1.1  christos 	case R_PPC_VLE_REL15:
   4046  1.1  christos 	case R_PPC_VLE_REL24:
   4047  1.1  christos 	case R_PPC_VLE_LO16A:
   4048  1.1  christos 	case R_PPC_VLE_LO16D:
   4049  1.1  christos 	case R_PPC_VLE_HI16A:
   4050  1.1  christos 	case R_PPC_VLE_HI16D:
   4051  1.1  christos 	case R_PPC_VLE_HA16A:
   4052  1.1  christos 	case R_PPC_VLE_HA16D:
   4053  1.1  christos 	  break;
   4054  1.1  christos 
   4055  1.1  christos 	case R_PPC_EMB_SDA2REL:
   4056  1.1  christos 	  if (info->shared)
   4057  1.1  christos 	    {
   4058  1.1  christos 	      bad_shared_reloc (abfd, r_type);
   4059  1.1  christos 	      return FALSE;
   4060  1.1  christos 	    }
   4061  1.1  christos 	  if (htab->sdata[1].sym == NULL
   4062  1.1  christos 	      && !create_sdata_sym (info, &htab->sdata[1]))
   4063  1.1  christos 	    return FALSE;
   4064  1.1  christos 	  if (h != NULL)
   4065  1.1  christos 	    {
   4066  1.1  christos 	      ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
   4067  1.1  christos 	      h->non_got_ref = TRUE;
   4068  1.1  christos 	    }
   4069  1.1  christos 	  break;
   4070  1.1  christos 
   4071  1.1  christos 	case R_PPC_VLE_SDA21_LO:
   4072  1.1  christos 	case R_PPC_VLE_SDA21:
   4073  1.1  christos 	case R_PPC_EMB_SDA21:
   4074  1.1  christos 	case R_PPC_EMB_RELSDA:
   4075  1.1  christos 	  if (info->shared)
   4076  1.1  christos 	    {
   4077  1.1  christos 	      bad_shared_reloc (abfd, r_type);
   4078  1.1  christos 	      return FALSE;
   4079  1.1  christos 	    }
   4080  1.1  christos 	  if (htab->sdata[0].sym == NULL
   4081  1.1  christos 	      && !create_sdata_sym (info, &htab->sdata[0]))
   4082  1.1  christos 	    return FALSE;
   4083  1.1  christos 	  if (htab->sdata[1].sym == NULL
   4084  1.1  christos 	      && !create_sdata_sym (info, &htab->sdata[1]))
   4085  1.1  christos 	    return FALSE;
   4086  1.1  christos 	  if (h != NULL)
   4087  1.1  christos 	    {
   4088  1.1  christos 	      ppc_elf_hash_entry (h)->has_sda_refs = TRUE;
   4089  1.1  christos 	      h->non_got_ref = TRUE;
   4090  1.1  christos 	    }
   4091  1.1  christos 	  break;
   4092  1.1  christos 
   4093  1.1  christos 	case R_PPC_EMB_NADDR32:
   4094  1.1  christos 	case R_PPC_EMB_NADDR16:
   4095  1.1  christos 	case R_PPC_EMB_NADDR16_LO:
   4096  1.1  christos 	case R_PPC_EMB_NADDR16_HI:
   4097  1.1  christos 	case R_PPC_EMB_NADDR16_HA:
   4098  1.1  christos 	  if (info->shared)
   4099  1.1  christos 	    {
   4100  1.1  christos 	      bad_shared_reloc (abfd, r_type);
   4101  1.1  christos 	      return FALSE;
   4102  1.1  christos 	    }
   4103  1.1  christos 	  if (h != NULL)
   4104  1.1  christos 	    h->non_got_ref = TRUE;
   4105  1.1  christos 	  break;
   4106  1.1  christos 
   4107  1.1  christos 	case R_PPC_PLTREL24:
   4108  1.1  christos 	  if (h == NULL)
   4109  1.1  christos 	    break;
   4110  1.1  christos 	  /* Fall through */
   4111  1.1  christos 	case R_PPC_PLT32:
   4112  1.1  christos 	case R_PPC_PLTREL32:
   4113  1.1  christos 	case R_PPC_PLT16_LO:
   4114  1.1  christos 	case R_PPC_PLT16_HI:
   4115  1.1  christos 	case R_PPC_PLT16_HA:
   4116  1.1  christos #ifdef DEBUG
   4117  1.1  christos 	  fprintf (stderr, "Reloc requires a PLT entry\n");
   4118  1.1  christos #endif
   4119  1.1  christos 	  /* This symbol requires a procedure linkage table entry.  We
   4120  1.1  christos 	     actually build the entry in finish_dynamic_symbol,
   4121  1.1  christos 	     because this might be a case of linking PIC code without
   4122  1.1  christos 	     linking in any dynamic objects, in which case we don't
   4123  1.1  christos 	     need to generate a procedure linkage table after all.  */
   4124  1.1  christos 
   4125  1.1  christos 	  if (h == NULL)
   4126  1.1  christos 	    {
   4127  1.1  christos 	      /* It does not make sense to have a procedure linkage
   4128  1.1  christos 		 table entry for a local symbol.  */
   4129  1.1  christos 	      info->callbacks->einfo (_("%P: %H: %s reloc against local symbol\n"),
   4130  1.1  christos 				      abfd, sec, rel->r_offset,
   4131  1.1  christos 				      ppc_elf_howto_table[r_type]->name);
   4132  1.1  christos 	      bfd_set_error (bfd_error_bad_value);
   4133  1.1  christos 	      return FALSE;
   4134  1.1  christos 	    }
   4135  1.1  christos 	  else
   4136  1.1  christos 	    {
   4137  1.1  christos 	      bfd_vma addend = 0;
   4138  1.1  christos 
   4139  1.1  christos 	      if (r_type == R_PPC_PLTREL24)
   4140  1.1  christos 		{
   4141  1.1  christos 		  ppc_elf_tdata (abfd)->makes_plt_call = 1;
   4142  1.1  christos 		  if (info->shared)
   4143  1.1  christos 		    addend = rel->r_addend;
   4144  1.1  christos 		}
   4145  1.1  christos 	      h->needs_plt = 1;
   4146  1.1  christos 	      if (!update_plt_info (abfd, &h->plt.plist, got2, addend))
   4147  1.1  christos 		return FALSE;
   4148  1.1  christos 	    }
   4149  1.1  christos 	  break;
   4150  1.1  christos 
   4151  1.1  christos 	  /* The following relocations don't need to propagate the
   4152  1.1  christos 	     relocation if linking a shared object since they are
   4153  1.1  christos 	     section relative.  */
   4154  1.1  christos 	case R_PPC_SECTOFF:
   4155  1.1  christos 	case R_PPC_SECTOFF_LO:
   4156  1.1  christos 	case R_PPC_SECTOFF_HI:
   4157  1.1  christos 	case R_PPC_SECTOFF_HA:
   4158  1.1  christos 	case R_PPC_DTPREL16:
   4159  1.1  christos 	case R_PPC_DTPREL16_LO:
   4160  1.1  christos 	case R_PPC_DTPREL16_HI:
   4161  1.1  christos 	case R_PPC_DTPREL16_HA:
   4162  1.1  christos 	case R_PPC_TOC16:
   4163  1.1  christos 	  break;
   4164  1.1  christos 
   4165  1.1  christos 	case R_PPC_REL16:
   4166  1.1  christos 	case R_PPC_REL16_LO:
   4167  1.1  christos 	case R_PPC_REL16_HI:
   4168  1.1  christos 	case R_PPC_REL16_HA:
   4169  1.1  christos 	  ppc_elf_tdata (abfd)->has_rel16 = 1;
   4170  1.1  christos 	  break;
   4171  1.1  christos 
   4172  1.1  christos 	  /* These are just markers.  */
   4173  1.1  christos 	case R_PPC_TLS:
   4174  1.1  christos 	case R_PPC_EMB_MRKREF:
   4175  1.1  christos 	case R_PPC_NONE:
   4176  1.1  christos 	case R_PPC_max:
   4177  1.1  christos 	case R_PPC_RELAX:
   4178  1.1  christos 	case R_PPC_RELAX_PLT:
   4179  1.1  christos 	case R_PPC_RELAX_PLTREL24:
   4180  1.1  christos 	  break;
   4181  1.1  christos 
   4182  1.1  christos 	  /* These should only appear in dynamic objects.  */
   4183  1.1  christos 	case R_PPC_COPY:
   4184  1.1  christos 	case R_PPC_GLOB_DAT:
   4185  1.1  christos 	case R_PPC_JMP_SLOT:
   4186  1.1  christos 	case R_PPC_RELATIVE:
   4187  1.1  christos 	case R_PPC_IRELATIVE:
   4188  1.1  christos 	  break;
   4189  1.1  christos 
   4190  1.1  christos 	  /* These aren't handled yet.  We'll report an error later.  */
   4191  1.1  christos 	case R_PPC_ADDR30:
   4192  1.1  christos 	case R_PPC_EMB_RELSEC16:
   4193  1.1  christos 	case R_PPC_EMB_RELST_LO:
   4194  1.1  christos 	case R_PPC_EMB_RELST_HI:
   4195  1.1  christos 	case R_PPC_EMB_RELST_HA:
   4196  1.1  christos 	case R_PPC_EMB_BIT_FLD:
   4197  1.1  christos 	  break;
   4198  1.1  christos 
   4199  1.1  christos 	  /* This refers only to functions defined in the shared library.  */
   4200  1.1  christos 	case R_PPC_LOCAL24PC:
   4201  1.1  christos 	  if (h != NULL && h == htab->elf.hgot && htab->plt_type == PLT_UNSET)
   4202  1.1  christos 	    {
   4203  1.1  christos 	      htab->plt_type = PLT_OLD;
   4204  1.1  christos 	      htab->old_bfd = abfd;
   4205  1.1  christos 	    }
   4206  1.1  christos 	  break;
   4207  1.1  christos 
   4208  1.1  christos 	  /* This relocation describes the C++ object vtable hierarchy.
   4209  1.1  christos 	     Reconstruct it for later use during GC.  */
   4210  1.1  christos 	case R_PPC_GNU_VTINHERIT:
   4211  1.1  christos 	  if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
   4212  1.1  christos 	    return FALSE;
   4213  1.1  christos 	  break;
   4214  1.1  christos 
   4215  1.1  christos 	  /* This relocation describes which C++ vtable entries are actually
   4216  1.1  christos 	     used.  Record for later use during GC.  */
   4217  1.1  christos 	case R_PPC_GNU_VTENTRY:
   4218  1.1  christos 	  BFD_ASSERT (h != NULL);
   4219  1.1  christos 	  if (h != NULL
   4220  1.1  christos 	      && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
   4221  1.1  christos 	    return FALSE;
   4222  1.1  christos 	  break;
   4223  1.1  christos 
   4224  1.1  christos 	  /* We shouldn't really be seeing these.  */
   4225  1.1  christos 	case R_PPC_TPREL32:
   4226  1.1  christos 	case R_PPC_TPREL16:
   4227  1.1  christos 	case R_PPC_TPREL16_LO:
   4228  1.1  christos 	case R_PPC_TPREL16_HI:
   4229  1.1  christos 	case R_PPC_TPREL16_HA:
   4230  1.1  christos 	  if (!info->executable)
   4231  1.1  christos 	    info->flags |= DF_STATIC_TLS;
   4232  1.1  christos 	  goto dodyn;
   4233  1.1  christos 
   4234  1.1  christos 	  /* Nor these.  */
   4235  1.1  christos 	case R_PPC_DTPMOD32:
   4236  1.1  christos 	case R_PPC_DTPREL32:
   4237  1.1  christos 	  goto dodyn;
   4238  1.1  christos 
   4239  1.1  christos 	case R_PPC_REL32:
   4240  1.1  christos 	  if (h == NULL
   4241  1.1  christos 	      && got2 != NULL
   4242  1.1  christos 	      && (sec->flags & SEC_CODE) != 0
   4243  1.1  christos 	      && info->shared
   4244  1.1  christos 	      && htab->plt_type == PLT_UNSET)
   4245  1.1  christos 	    {
   4246  1.1  christos 	      /* Old -fPIC gcc code has .long LCTOC1-LCFx just before
   4247  1.1  christos 		 the start of a function, which assembles to a REL32
   4248  1.1  christos 		 reference to .got2.  If we detect one of these, then
   4249  1.1  christos 		 force the old PLT layout because the linker cannot
   4250  1.1  christos 		 reliably deduce the GOT pointer value needed for
   4251  1.1  christos 		 PLT call stubs.  */
   4252  1.1  christos 	      asection *s;
   4253  1.1  christos 	      Elf_Internal_Sym *isym;
   4254  1.1  christos 
   4255  1.1  christos 	      isym = bfd_sym_from_r_symndx (&htab->sym_cache,
   4256  1.1  christos 					    abfd, r_symndx);
   4257  1.1  christos 	      if (isym == NULL)
   4258  1.1  christos 		return FALSE;
   4259  1.1  christos 
   4260  1.1  christos 	      s = bfd_section_from_elf_index (abfd, isym->st_shndx);
   4261  1.1  christos 	      if (s == got2)
   4262  1.1  christos 		{
   4263  1.1  christos 		  htab->plt_type = PLT_OLD;
   4264  1.1  christos 		  htab->old_bfd = abfd;
   4265  1.1  christos 		}
   4266  1.1  christos 	    }
   4267  1.1  christos 	  if (h == NULL || h == htab->elf.hgot)
   4268  1.1  christos 	    break;
   4269  1.1  christos 	  /* fall through */
   4270  1.1  christos 
   4271  1.1  christos 	case R_PPC_ADDR32:
   4272  1.1  christos 	case R_PPC_ADDR16:
   4273  1.1  christos 	case R_PPC_ADDR16_LO:
   4274  1.1  christos 	case R_PPC_ADDR16_HI:
   4275  1.1  christos 	case R_PPC_ADDR16_HA:
   4276  1.1  christos 	case R_PPC_UADDR32:
   4277  1.1  christos 	case R_PPC_UADDR16:
   4278  1.1  christos 	  if (h != NULL && !info->shared)
   4279  1.1  christos 	    {
   4280  1.1  christos 	      /* We may need a plt entry if the symbol turns out to be
   4281  1.1  christos 		 a function defined in a dynamic object.  */
   4282  1.1  christos 	      if (!update_plt_info (abfd, &h->plt.plist, NULL, 0))
   4283  1.1  christos 		return FALSE;
   4284  1.1  christos 
   4285  1.1  christos 	      /* We may need a copy reloc too.  */
   4286  1.1  christos 	      h->non_got_ref = 1;
   4287  1.1  christos 	      h->pointer_equality_needed = 1;
   4288  1.1  christos 	    }
   4289  1.1  christos 	  goto dodyn;
   4290  1.1  christos 
   4291  1.1  christos 	case R_PPC_REL24:
   4292  1.1  christos 	case R_PPC_REL14:
   4293  1.1  christos 	case R_PPC_REL14_BRTAKEN:
   4294  1.1  christos 	case R_PPC_REL14_BRNTAKEN:
   4295  1.1  christos 	  if (h == NULL)
   4296  1.1  christos 	    break;
   4297  1.1  christos 	  if (h == htab->elf.hgot)
   4298  1.1  christos 	    {
   4299  1.1  christos 	      if (htab->plt_type == PLT_UNSET)
   4300  1.1  christos 		{
   4301  1.1  christos 		  htab->plt_type = PLT_OLD;
   4302  1.1  christos 		  htab->old_bfd = abfd;
   4303  1.1  christos 		}
   4304  1.1  christos 	      break;
   4305  1.1  christos 	    }
   4306  1.1  christos 	  /* fall through */
   4307  1.1  christos 
   4308  1.1  christos 	case R_PPC_ADDR24:
   4309  1.1  christos 	case R_PPC_ADDR14:
   4310  1.1  christos 	case R_PPC_ADDR14_BRTAKEN:
   4311  1.1  christos 	case R_PPC_ADDR14_BRNTAKEN:
   4312  1.1  christos 	  if (h != NULL && !info->shared)
   4313  1.1  christos 	    {
   4314  1.1  christos 	      /* We may need a plt entry if the symbol turns out to be
   4315  1.1  christos 		 a function defined in a dynamic object.  */
   4316  1.1  christos 	      h->needs_plt = 1;
   4317  1.1  christos 	      if (!update_plt_info (abfd, &h->plt.plist, NULL, 0))
   4318  1.1  christos 		return FALSE;
   4319  1.1  christos 	      break;
   4320  1.1  christos 	    }
   4321  1.1  christos 
   4322  1.1  christos 	dodyn:
   4323  1.1  christos 	  /* If we are creating a shared library, and this is a reloc
   4324  1.1  christos 	     against a global symbol, or a non PC relative reloc
   4325  1.1  christos 	     against a local symbol, then we need to copy the reloc
   4326  1.1  christos 	     into the shared library.  However, if we are linking with
   4327  1.1  christos 	     -Bsymbolic, we do not need to copy a reloc against a
   4328  1.1  christos 	     global symbol which is defined in an object we are
   4329  1.1  christos 	     including in the link (i.e., DEF_REGULAR is set).  At
   4330  1.1  christos 	     this point we have not seen all the input files, so it is
   4331  1.1  christos 	     possible that DEF_REGULAR is not set now but will be set
   4332  1.1  christos 	     later (it is never cleared).  In case of a weak definition,
   4333  1.1  christos 	     DEF_REGULAR may be cleared later by a strong definition in
   4334  1.1  christos 	     a shared library.  We account for that possibility below by
   4335  1.1  christos 	     storing information in the dyn_relocs field of the hash
   4336  1.1  christos 	     table entry.  A similar situation occurs when creating
   4337  1.1  christos 	     shared libraries and symbol visibility changes render the
   4338  1.1  christos 	     symbol local.
   4339  1.1  christos 
   4340  1.1  christos 	     If on the other hand, we are creating an executable, we
   4341  1.1  christos 	     may need to keep relocations for symbols satisfied by a
   4342  1.1  christos 	     dynamic library if we manage to avoid copy relocs for the
   4343  1.1  christos 	     symbol.  */
   4344  1.1  christos 	  if ((info->shared
   4345  1.1  christos 	       && (must_be_dyn_reloc (info, r_type)
   4346  1.1  christos 		   || (h != NULL
   4347  1.1  christos 		       && (! info->symbolic
   4348  1.1  christos 			   || h->root.type == bfd_link_hash_defweak
   4349  1.1  christos 			   || !h->def_regular))))
   4350  1.1  christos 	      || (ELIMINATE_COPY_RELOCS
   4351  1.1  christos 		  && !info->shared
   4352  1.1  christos 		  && h != NULL
   4353  1.1  christos 		  && (h->root.type == bfd_link_hash_defweak
   4354  1.1  christos 		      || !h->def_regular)))
   4355  1.1  christos 	    {
   4356  1.1  christos 	      struct elf_dyn_relocs *p;
   4357  1.1  christos 	      struct elf_dyn_relocs **rel_head;
   4358  1.1  christos 
   4359  1.1  christos #ifdef DEBUG
   4360  1.1  christos 	      fprintf (stderr,
   4361  1.1  christos 		       "ppc_elf_check_relocs needs to "
   4362  1.1  christos 		       "create relocation for %s\n",
   4363  1.1  christos 		       (h && h->root.root.string
   4364  1.1  christos 			? h->root.root.string : "<unknown>"));
   4365  1.1  christos #endif
   4366  1.1  christos 	      if (sreloc == NULL)
   4367  1.1  christos 		{
   4368  1.1  christos 		  if (htab->elf.dynobj == NULL)
   4369  1.1  christos 		    htab->elf.dynobj = abfd;
   4370  1.1  christos 
   4371  1.1  christos 		  sreloc = _bfd_elf_make_dynamic_reloc_section
   4372  1.1  christos 		    (sec, htab->elf.dynobj, 2, abfd, /*rela?*/ TRUE);
   4373  1.1  christos 
   4374  1.1  christos 		  if (sreloc == NULL)
   4375  1.1  christos 		    return FALSE;
   4376  1.1  christos 		}
   4377  1.1  christos 
   4378  1.1  christos 	      /* If this is a global symbol, we count the number of
   4379  1.1  christos 		 relocations we need for this symbol.  */
   4380  1.1  christos 	      if (h != NULL)
   4381  1.1  christos 		{
   4382  1.1  christos 		  rel_head = &ppc_elf_hash_entry (h)->dyn_relocs;
   4383  1.1  christos 		}
   4384  1.1  christos 	      else
   4385  1.1  christos 		{
   4386  1.1  christos 		  /* Track dynamic relocs needed for local syms too.
   4387  1.1  christos 		     We really need local syms available to do this
   4388  1.1  christos 		     easily.  Oh well.  */
   4389  1.1  christos 		  asection *s;
   4390  1.1  christos 		  void *vpp;
   4391  1.1  christos 		  Elf_Internal_Sym *isym;
   4392  1.1  christos 
   4393  1.1  christos 		  isym = bfd_sym_from_r_symndx (&htab->sym_cache,
   4394  1.1  christos 						abfd, r_symndx);
   4395  1.1  christos 		  if (isym == NULL)
   4396  1.1  christos 		    return FALSE;
   4397  1.1  christos 
   4398  1.1  christos 		  s = bfd_section_from_elf_index (abfd, isym->st_shndx);
   4399  1.1  christos 		  if (s == NULL)
   4400  1.1  christos 		    s = sec;
   4401  1.1  christos 
   4402  1.1  christos 		  vpp = &elf_section_data (s)->local_dynrel;
   4403  1.1  christos 		  rel_head = (struct elf_dyn_relocs **) vpp;
   4404  1.1  christos 		}
   4405  1.1  christos 
   4406  1.1  christos 	      p = *rel_head;
   4407  1.1  christos 	      if (p == NULL || p->sec != sec)
   4408  1.1  christos 		{
   4409  1.1  christos 		  p = bfd_alloc (htab->elf.dynobj, sizeof *p);
   4410  1.1  christos 		  if (p == NULL)
   4411  1.1  christos 		    return FALSE;
   4412  1.1  christos 		  p->next = *rel_head;
   4413  1.1  christos 		  *rel_head = p;
   4414  1.1  christos 		  p->sec = sec;
   4415  1.1  christos 		  p->count = 0;
   4416  1.1  christos 		  p->pc_count = 0;
   4417  1.1  christos 		}
   4418  1.1  christos 
   4419  1.1  christos 	      p->count += 1;
   4420  1.1  christos 	      if (!must_be_dyn_reloc (info, r_type))
   4421  1.1  christos 		p->pc_count += 1;
   4422  1.1  christos 	    }
   4423  1.1  christos 
   4424  1.1  christos 	  break;
   4425  1.1  christos 	}
   4426  1.1  christos     }
   4427  1.1  christos 
   4428  1.1  christos   return TRUE;
   4429  1.1  christos }
   4430  1.1  christos 
   4431  1.1  christos 
   4433  1.1  christos /* Merge object attributes from IBFD into OBFD.  Raise an error if
   4434  1.1  christos    there are conflicting attributes.  */
   4435  1.1  christos static bfd_boolean
   4436  1.1  christos ppc_elf_merge_obj_attributes (bfd *ibfd, bfd *obfd)
   4437  1.1  christos {
   4438  1.1  christos   obj_attribute *in_attr, *in_attrs;
   4439  1.1  christos   obj_attribute *out_attr, *out_attrs;
   4440  1.1  christos 
   4441  1.1  christos   if (!elf_known_obj_attributes_proc (obfd)[0].i)
   4442  1.1  christos     {
   4443  1.1  christos       /* This is the first object.  Copy the attributes.  */
   4444  1.1  christos       _bfd_elf_copy_obj_attributes (ibfd, obfd);
   4445  1.1  christos 
   4446  1.1  christos       /* Use the Tag_null value to indicate the attributes have been
   4447  1.1  christos 	 initialized.  */
   4448  1.1  christos       elf_known_obj_attributes_proc (obfd)[0].i = 1;
   4449  1.1  christos 
   4450  1.1  christos       return TRUE;
   4451  1.1  christos     }
   4452  1.1  christos 
   4453  1.1  christos   in_attrs = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
   4454  1.1  christos   out_attrs = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
   4455  1.1  christos 
   4456  1.1  christos   /* Check for conflicting Tag_GNU_Power_ABI_FP attributes and merge
   4457  1.1  christos      non-conflicting ones.  */
   4458  1.1  christos   in_attr = &in_attrs[Tag_GNU_Power_ABI_FP];
   4459  1.1  christos   out_attr = &out_attrs[Tag_GNU_Power_ABI_FP];
   4460  1.1  christos   if (in_attr->i != out_attr->i)
   4461  1.1  christos     {
   4462  1.1  christos       out_attr->type = 1;
   4463  1.1  christos       if (out_attr->i == 0)
   4464  1.1  christos 	out_attr->i = in_attr->i;
   4465  1.1  christos       else if (in_attr->i == 0)
   4466  1.1  christos 	;
   4467  1.1  christos       else if (out_attr->i == 1 && in_attr->i == 2)
   4468  1.1  christos 	_bfd_error_handler
   4469  1.1  christos 	  (_("Warning: %B uses hard float, %B uses soft float"), obfd, ibfd);
   4470  1.1  christos       else if (out_attr->i == 1 && in_attr->i == 3)
   4471  1.1  christos 	_bfd_error_handler
   4472  1.1  christos 	  (_("Warning: %B uses double-precision hard float, %B uses single-precision hard float"),
   4473  1.1  christos 	  obfd, ibfd);
   4474  1.1  christos       else if (out_attr->i == 3 && in_attr->i == 1)
   4475  1.1  christos 	_bfd_error_handler
   4476  1.1  christos 	  (_("Warning: %B uses double-precision hard float, %B uses single-precision hard float"),
   4477  1.1  christos 	  ibfd, obfd);
   4478  1.1  christos       else if (out_attr->i == 3 && in_attr->i == 2)
   4479  1.1  christos 	_bfd_error_handler
   4480  1.1  christos 	  (_("Warning: %B uses soft float, %B uses single-precision hard float"),
   4481  1.1  christos 	  ibfd, obfd);
   4482  1.1  christos       else if (out_attr->i == 2 && (in_attr->i == 1 || in_attr->i == 3))
   4483  1.1  christos 	_bfd_error_handler
   4484  1.1  christos 	  (_("Warning: %B uses hard float, %B uses soft float"), ibfd, obfd);
   4485  1.1  christos       else if (in_attr->i > 3)
   4486  1.1  christos 	_bfd_error_handler
   4487  1.1  christos 	  (_("Warning: %B uses unknown floating point ABI %d"), ibfd,
   4488  1.1  christos 	   in_attr->i);
   4489  1.1  christos       else
   4490  1.1  christos 	_bfd_error_handler
   4491  1.1  christos 	  (_("Warning: %B uses unknown floating point ABI %d"), obfd,
   4492  1.1  christos 	   out_attr->i);
   4493  1.1  christos     }
   4494  1.1  christos 
   4495  1.1  christos   /* Check for conflicting Tag_GNU_Power_ABI_Vector attributes and
   4496  1.1  christos      merge non-conflicting ones.  */
   4497  1.1  christos   in_attr = &in_attrs[Tag_GNU_Power_ABI_Vector];
   4498  1.1  christos   out_attr = &out_attrs[Tag_GNU_Power_ABI_Vector];
   4499  1.1  christos   if (in_attr->i != out_attr->i)
   4500  1.1  christos     {
   4501  1.1  christos       const char *in_abi = NULL, *out_abi = NULL;
   4502  1.1  christos 
   4503  1.1  christos       switch (in_attr->i)
   4504  1.1  christos 	{
   4505  1.1  christos 	case 1: in_abi = "generic"; break;
   4506  1.1  christos 	case 2: in_abi = "AltiVec"; break;
   4507  1.1  christos 	case 3: in_abi = "SPE"; break;
   4508  1.1  christos 	}
   4509  1.1  christos 
   4510  1.1  christos       switch (out_attr->i)
   4511  1.1  christos 	{
   4512  1.1  christos 	case 1: out_abi = "generic"; break;
   4513  1.1  christos 	case 2: out_abi = "AltiVec"; break;
   4514  1.1  christos 	case 3: out_abi = "SPE"; break;
   4515  1.1  christos 	}
   4516  1.1  christos 
   4517  1.1  christos       out_attr->type = 1;
   4518  1.1  christos       if (out_attr->i == 0)
   4519  1.1  christos 	out_attr->i = in_attr->i;
   4520  1.1  christos       else if (in_attr->i == 0)
   4521  1.1  christos 	;
   4522  1.1  christos       /* For now, allow generic to transition to AltiVec or SPE
   4523  1.1  christos 	 without a warning.  If GCC marked files with their stack
   4524  1.1  christos 	 alignment and used don't-care markings for files which are
   4525  1.1  christos 	 not affected by the vector ABI, we could warn about this
   4526  1.1  christos 	 case too.  */
   4527  1.1  christos       else if (out_attr->i == 1)
   4528  1.1  christos 	out_attr->i = in_attr->i;
   4529  1.1  christos       else if (in_attr->i == 1)
   4530  1.1  christos 	;
   4531  1.1  christos       else if (in_abi == NULL)
   4532  1.1  christos 	_bfd_error_handler
   4533  1.1  christos 	  (_("Warning: %B uses unknown vector ABI %d"), ibfd,
   4534  1.1  christos 	   in_attr->i);
   4535  1.1  christos       else if (out_abi == NULL)
   4536  1.1  christos 	_bfd_error_handler
   4537  1.1  christos 	  (_("Warning: %B uses unknown vector ABI %d"), obfd,
   4538  1.1  christos 	   in_attr->i);
   4539  1.1  christos       else
   4540  1.1  christos 	_bfd_error_handler
   4541  1.1  christos 	  (_("Warning: %B uses vector ABI \"%s\", %B uses \"%s\""),
   4542  1.1  christos 	   ibfd, obfd, in_abi, out_abi);
   4543  1.1  christos     }
   4544  1.1  christos 
   4545  1.1  christos   /* Check for conflicting Tag_GNU_Power_ABI_Struct_Return attributes
   4546  1.1  christos      and merge non-conflicting ones.  */
   4547  1.1  christos   in_attr = &in_attrs[Tag_GNU_Power_ABI_Struct_Return];
   4548  1.1  christos   out_attr = &out_attrs[Tag_GNU_Power_ABI_Struct_Return];
   4549  1.1  christos   if (in_attr->i != out_attr->i)
   4550  1.1  christos     {
   4551  1.1  christos       out_attr->type = 1;
   4552  1.1  christos       if (out_attr->i == 0)
   4553  1.1  christos        out_attr->i = in_attr->i;
   4554  1.1  christos       else if (in_attr->i == 0)
   4555  1.1  christos        ;
   4556  1.1  christos       else if (out_attr->i == 1 && in_attr->i == 2)
   4557  1.1  christos        _bfd_error_handler
   4558  1.1  christos          (_("Warning: %B uses r3/r4 for small structure returns, %B uses memory"), obfd, ibfd);
   4559  1.1  christos       else if (out_attr->i == 2 && in_attr->i == 1)
   4560  1.1  christos        _bfd_error_handler
   4561  1.1  christos          (_("Warning: %B uses r3/r4 for small structure returns, %B uses memory"), ibfd, obfd);
   4562  1.1  christos       else if (in_attr->i > 2)
   4563  1.1  christos        _bfd_error_handler
   4564  1.1  christos          (_("Warning: %B uses unknown small structure return convention %d"), ibfd,
   4565  1.1  christos           in_attr->i);
   4566  1.1  christos       else
   4567  1.1  christos        _bfd_error_handler
   4568  1.1  christos          (_("Warning: %B uses unknown small structure return convention %d"), obfd,
   4569  1.1  christos           out_attr->i);
   4570  1.1  christos     }
   4571  1.1  christos 
   4572  1.1  christos   /* Merge Tag_compatibility attributes and any common GNU ones.  */
   4573  1.1  christos   _bfd_elf_merge_object_attributes (ibfd, obfd);
   4574  1.1  christos 
   4575  1.1  christos   return TRUE;
   4576  1.1  christos }
   4577  1.1  christos 
   4578  1.1  christos /* Merge backend specific data from an object file to the output
   4579  1.1  christos    object file when linking.  */
   4580  1.1  christos 
   4581  1.1  christos static bfd_boolean
   4582  1.1  christos ppc_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
   4583  1.1  christos {
   4584  1.1  christos   flagword old_flags;
   4585  1.1  christos   flagword new_flags;
   4586  1.1  christos   bfd_boolean error;
   4587  1.1  christos 
   4588  1.1  christos   if (!is_ppc_elf (ibfd) || !is_ppc_elf (obfd))
   4589  1.1  christos     return TRUE;
   4590  1.1  christos 
   4591  1.1  christos   /* Check if we have the same endianness.  */
   4592  1.1  christos   if (! _bfd_generic_verify_endian_match (ibfd, obfd))
   4593  1.1  christos     return FALSE;
   4594  1.1  christos 
   4595  1.1  christos   if (!ppc_elf_merge_obj_attributes (ibfd, obfd))
   4596  1.1  christos     return FALSE;
   4597  1.1  christos 
   4598  1.1  christos   new_flags = elf_elfheader (ibfd)->e_flags;
   4599  1.1  christos   old_flags = elf_elfheader (obfd)->e_flags;
   4600  1.1  christos   if (!elf_flags_init (obfd))
   4601  1.1  christos     {
   4602  1.1  christos       /* First call, no flags set.  */
   4603  1.1  christos       elf_flags_init (obfd) = TRUE;
   4604  1.1  christos       elf_elfheader (obfd)->e_flags = new_flags;
   4605  1.1  christos     }
   4606  1.1  christos 
   4607  1.1  christos   /* Compatible flags are ok.  */
   4608  1.1  christos   else if (new_flags == old_flags)
   4609  1.1  christos     ;
   4610  1.1  christos 
   4611  1.1  christos   /* Incompatible flags.  */
   4612  1.1  christos   else
   4613  1.1  christos     {
   4614  1.1  christos       /* Warn about -mrelocatable mismatch.  Allow -mrelocatable-lib
   4615  1.1  christos 	 to be linked with either.  */
   4616  1.1  christos       error = FALSE;
   4617  1.1  christos       if ((new_flags & EF_PPC_RELOCATABLE) != 0
   4618  1.1  christos 	  && (old_flags & (EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB)) == 0)
   4619  1.1  christos 	{
   4620  1.1  christos 	  error = TRUE;
   4621  1.1  christos 	  (*_bfd_error_handler)
   4622  1.1  christos 	    (_("%B: compiled with -mrelocatable and linked with "
   4623  1.1  christos 	       "modules compiled normally"), ibfd);
   4624  1.1  christos 	}
   4625  1.1  christos       else if ((new_flags & (EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB)) == 0
   4626  1.1  christos 	       && (old_flags & EF_PPC_RELOCATABLE) != 0)
   4627  1.1  christos 	{
   4628  1.1  christos 	  error = TRUE;
   4629  1.1  christos 	  (*_bfd_error_handler)
   4630  1.1  christos 	    (_("%B: compiled normally and linked with "
   4631  1.1  christos 	       "modules compiled with -mrelocatable"), ibfd);
   4632  1.1  christos 	}
   4633  1.1  christos 
   4634  1.1  christos       /* The output is -mrelocatable-lib iff both the input files are.  */
   4635  1.1  christos       if (! (new_flags & EF_PPC_RELOCATABLE_LIB))
   4636  1.1  christos 	elf_elfheader (obfd)->e_flags &= ~EF_PPC_RELOCATABLE_LIB;
   4637  1.1  christos 
   4638  1.1  christos       /* The output is -mrelocatable iff it can't be -mrelocatable-lib,
   4639  1.1  christos 	 but each input file is either -mrelocatable or -mrelocatable-lib.  */
   4640  1.1  christos       if (! (elf_elfheader (obfd)->e_flags & EF_PPC_RELOCATABLE_LIB)
   4641  1.1  christos 	  && (new_flags & (EF_PPC_RELOCATABLE_LIB | EF_PPC_RELOCATABLE))
   4642  1.1  christos 	  && (old_flags & (EF_PPC_RELOCATABLE_LIB | EF_PPC_RELOCATABLE)))
   4643  1.1  christos 	elf_elfheader (obfd)->e_flags |= EF_PPC_RELOCATABLE;
   4644  1.1  christos 
   4645  1.1  christos       /* Do not warn about eabi vs. V.4 mismatch, just or in the bit if
   4646  1.1  christos 	 any module uses it.  */
   4647  1.1  christos       elf_elfheader (obfd)->e_flags |= (new_flags & EF_PPC_EMB);
   4648  1.1  christos 
   4649  1.1  christos       new_flags &= ~(EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB | EF_PPC_EMB);
   4650  1.1  christos       old_flags &= ~(EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB | EF_PPC_EMB);
   4651  1.1  christos 
   4652  1.1  christos       /* Warn about any other mismatches.  */
   4653  1.1  christos       if (new_flags != old_flags)
   4654  1.1  christos 	{
   4655  1.1  christos 	  error = TRUE;
   4656  1.1  christos 	  (*_bfd_error_handler)
   4657  1.1  christos 	    (_("%B: uses different e_flags (0x%lx) fields "
   4658  1.1  christos 	       "than previous modules (0x%lx)"),
   4659  1.1  christos 	     ibfd, (long) new_flags, (long) old_flags);
   4660  1.1  christos 	}
   4661  1.1  christos 
   4662  1.1  christos       if (error)
   4663  1.1  christos 	{
   4664  1.1  christos 	  bfd_set_error (bfd_error_bad_value);
   4665  1.1  christos 	  return FALSE;
   4666  1.1  christos 	}
   4667  1.1  christos     }
   4668  1.1  christos 
   4669  1.1  christos   return TRUE;
   4670  1.1  christos }
   4671  1.1  christos 
   4672  1.1  christos static void
   4673  1.1  christos ppc_elf_vle_split16 (bfd *output_bfd, bfd_byte *contents,
   4674  1.1  christos                  bfd_vma offset, bfd_vma relocation,
   4675  1.1  christos 		 split16_format_type split16_format)
   4676  1.1  christos 
   4677  1.1  christos {
   4678  1.1  christos   bfd_vma insn, top5, bottom11;
   4679  1.1  christos 
   4680  1.1  christos   insn = bfd_get_32 (output_bfd, contents + offset);
   4681  1.1  christos   top5 = relocation >> 11;
   4682  1.1  christos   top5 = top5 << (split16_format == split16a_type ? 20 : 16);
   4683  1.1  christos   bottom11 = relocation & 0x7ff;
   4684  1.1  christos   insn |= top5;
   4685  1.1  christos   insn |= bottom11;
   4686  1.1  christos   bfd_put_32 (output_bfd, insn, contents + offset);
   4687  1.1  christos }
   4688  1.1  christos 
   4689  1.1  christos 
   4690  1.1  christos /* Choose which PLT scheme to use, and set .plt flags appropriately.
   4692  1.1  christos    Returns -1 on error, 0 for old PLT, 1 for new PLT.  */
   4693  1.1  christos int
   4694  1.1  christos ppc_elf_select_plt_layout (bfd *output_bfd ATTRIBUTE_UNUSED,
   4695  1.1  christos 			   struct bfd_link_info *info,
   4696  1.1  christos 			   enum ppc_elf_plt_type plt_style,
   4697  1.1  christos 			   int emit_stub_syms)
   4698  1.1  christos {
   4699  1.1  christos   struct ppc_elf_link_hash_table *htab;
   4700  1.1  christos   flagword flags;
   4701  1.1  christos 
   4702  1.1  christos   htab = ppc_elf_hash_table (info);
   4703  1.1  christos 
   4704  1.1  christos   htab->emit_stub_syms = emit_stub_syms;
   4705  1.1  christos 
   4706  1.1  christos   if (htab->plt_type == PLT_UNSET)
   4707  1.1  christos     {
   4708  1.1  christos       struct elf_link_hash_entry *h;
   4709  1.1  christos 
   4710  1.1  christos       if (plt_style == PLT_OLD)
   4711  1.1  christos 	htab->plt_type = PLT_OLD;
   4712  1.1  christos       else if (info->shared
   4713  1.1  christos 	       && htab->elf.dynamic_sections_created
   4714  1.1  christos 	       && (h = elf_link_hash_lookup (&htab->elf, "_mcount",
   4715  1.1  christos 					     FALSE, FALSE, TRUE)) != NULL
   4716  1.1  christos 	       && (h->type == STT_FUNC
   4717  1.1  christos 		   || h->needs_plt)
   4718  1.1  christos 	       && h->ref_regular
   4719  1.1  christos 	       && !(SYMBOL_CALLS_LOCAL (info, h)
   4720  1.1  christos 		    || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
   4721  1.1  christos 			&& h->root.type == bfd_link_hash_undefweak)))
   4722  1.1  christos 	{
   4723  1.1  christos 	  /* Profiling of shared libs (and pies) is not supported with
   4724  1.1  christos 	     secure plt, because ppc32 does profiling before a
   4725  1.1  christos 	     function prologue and a secure plt pic call stubs needs
   4726  1.1  christos 	     r30 to be set up.  */
   4727  1.1  christos 	  htab->plt_type = PLT_OLD;
   4728  1.1  christos 	}
   4729  1.1  christos       else
   4730  1.1  christos 	{
   4731  1.1  christos 	  bfd *ibfd;
   4732  1.1  christos 	  enum ppc_elf_plt_type plt_type = plt_style;
   4733  1.1  christos 
   4734  1.1  christos 	  /* Look through the reloc flags left by ppc_elf_check_relocs.
   4735  1.1  christos 	     Use the old style bss plt if a file makes plt calls
   4736  1.1  christos 	     without using the new relocs, and if ld isn't given
   4737  1.1  christos 	     --secure-plt and we never see REL16 relocs.  */
   4738  1.1  christos 	  if (plt_type == PLT_UNSET)
   4739  1.1  christos 	    plt_type = PLT_OLD;
   4740  1.1  christos 	  for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link_next)
   4741  1.1  christos 	    if (is_ppc_elf (ibfd))
   4742  1.1  christos 	      {
   4743  1.1  christos 		if (ppc_elf_tdata (ibfd)->has_rel16)
   4744  1.1  christos 		  plt_type = PLT_NEW;
   4745  1.1  christos 		else if (ppc_elf_tdata (ibfd)->makes_plt_call)
   4746  1.1  christos 		  {
   4747  1.1  christos 		    plt_type = PLT_OLD;
   4748  1.1  christos 		    htab->old_bfd = ibfd;
   4749  1.1  christos 		    break;
   4750  1.1  christos 		  }
   4751  1.1  christos 	      }
   4752  1.1  christos 	  htab->plt_type = plt_type;
   4753  1.1  christos 	}
   4754  1.1  christos     }
   4755  1.1  christos   if (htab->plt_type == PLT_OLD && plt_style == PLT_NEW)
   4756  1.1  christos     {
   4757  1.1  christos       if (htab->old_bfd != NULL)
   4758  1.1  christos 	info->callbacks->einfo (_("%P: bss-plt forced due to %B\n"),
   4759  1.1  christos 				htab->old_bfd);
   4760  1.1  christos       else
   4761  1.1  christos 	info->callbacks->einfo (_("%P: bss-plt forced by profiling\n"));
   4762  1.1  christos     }
   4763  1.1  christos 
   4764  1.1  christos   BFD_ASSERT (htab->plt_type != PLT_VXWORKS);
   4765  1.1  christos 
   4766  1.1  christos   if (htab->plt_type == PLT_NEW)
   4767  1.1  christos     {
   4768  1.1  christos       flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
   4769  1.1  christos 	       | SEC_IN_MEMORY | SEC_LINKER_CREATED);
   4770  1.1  christos 
   4771  1.1  christos       /* The new PLT is a loaded section.  */
   4772  1.1  christos       if (htab->plt != NULL
   4773  1.1  christos 	  && !bfd_set_section_flags (htab->elf.dynobj, htab->plt, flags))
   4774  1.1  christos 	return -1;
   4775  1.1  christos 
   4776  1.1  christos       /* The new GOT is not executable.  */
   4777  1.1  christos       if (htab->got != NULL
   4778  1.1  christos 	  && !bfd_set_section_flags (htab->elf.dynobj, htab->got, flags))
   4779  1.1  christos 	return -1;
   4780  1.1  christos     }
   4781  1.1  christos   else
   4782  1.1  christos     {
   4783  1.1  christos       /* Stop an unused .glink section from affecting .text alignment.  */
   4784  1.1  christos       if (htab->glink != NULL
   4785  1.1  christos 	  && !bfd_set_section_alignment (htab->elf.dynobj, htab->glink, 0))
   4786  1.1  christos 	return -1;
   4787  1.1  christos     }
   4788  1.1  christos   return htab->plt_type == PLT_NEW;
   4789  1.1  christos }
   4790  1.1  christos 
   4791  1.1  christos /* Return the section that should be marked against GC for a given
   4793  1.1  christos    relocation.  */
   4794  1.1  christos 
   4795  1.1  christos static asection *
   4796  1.1  christos ppc_elf_gc_mark_hook (asection *sec,
   4797  1.1  christos 		      struct bfd_link_info *info,
   4798  1.1  christos 		      Elf_Internal_Rela *rel,
   4799  1.1  christos 		      struct elf_link_hash_entry *h,
   4800  1.1  christos 		      Elf_Internal_Sym *sym)
   4801  1.1  christos {
   4802  1.1  christos   if (h != NULL)
   4803  1.1  christos     switch (ELF32_R_TYPE (rel->r_info))
   4804  1.1  christos       {
   4805  1.1  christos       case R_PPC_GNU_VTINHERIT:
   4806  1.1  christos       case R_PPC_GNU_VTENTRY:
   4807  1.1  christos 	return NULL;
   4808  1.1  christos       }
   4809  1.1  christos 
   4810  1.1  christos   return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
   4811  1.1  christos }
   4812  1.1  christos 
   4813  1.1  christos /* Update the got, plt and dynamic reloc reference counts for the
   4814  1.1  christos    section being removed.  */
   4815  1.1  christos 
   4816  1.1  christos static bfd_boolean
   4817  1.1  christos ppc_elf_gc_sweep_hook (bfd *abfd,
   4818  1.1  christos 		       struct bfd_link_info *info,
   4819  1.1  christos 		       asection *sec,
   4820  1.1  christos 		       const Elf_Internal_Rela *relocs)
   4821  1.1  christos {
   4822  1.1  christos   struct ppc_elf_link_hash_table *htab;
   4823  1.1  christos   Elf_Internal_Shdr *symtab_hdr;
   4824  1.1  christos   struct elf_link_hash_entry **sym_hashes;
   4825  1.1  christos   bfd_signed_vma *local_got_refcounts;
   4826  1.1  christos   const Elf_Internal_Rela *rel, *relend;
   4827  1.1  christos   asection *got2;
   4828  1.1  christos 
   4829  1.1  christos   if (info->relocatable)
   4830  1.1  christos     return TRUE;
   4831  1.1  christos 
   4832  1.1  christos   if ((sec->flags & SEC_ALLOC) == 0)
   4833  1.1  christos     return TRUE;
   4834  1.1  christos 
   4835  1.1  christos   elf_section_data (sec)->local_dynrel = NULL;
   4836  1.1  christos 
   4837  1.1  christos   htab = ppc_elf_hash_table (info);
   4838  1.1  christos   symtab_hdr = &elf_symtab_hdr (abfd);
   4839  1.1  christos   sym_hashes = elf_sym_hashes (abfd);
   4840  1.1  christos   local_got_refcounts = elf_local_got_refcounts (abfd);
   4841  1.1  christos   got2 = bfd_get_section_by_name (abfd, ".got2");
   4842  1.1  christos 
   4843  1.1  christos   relend = relocs + sec->reloc_count;
   4844  1.1  christos   for (rel = relocs; rel < relend; rel++)
   4845  1.1  christos     {
   4846  1.1  christos       unsigned long r_symndx;
   4847  1.1  christos       enum elf_ppc_reloc_type r_type;
   4848  1.1  christos       struct elf_link_hash_entry *h = NULL;
   4849  1.1  christos 
   4850  1.1  christos       r_symndx = ELF32_R_SYM (rel->r_info);
   4851  1.1  christos       if (r_symndx >= symtab_hdr->sh_info)
   4852  1.1  christos 	{
   4853  1.1  christos 	  struct elf_dyn_relocs **pp, *p;
   4854  1.1  christos 	  struct ppc_elf_link_hash_entry *eh;
   4855  1.1  christos 
   4856  1.1  christos 	  h = sym_hashes[r_symndx - symtab_hdr->sh_info];
   4857  1.1  christos 	  while (h->root.type == bfd_link_hash_indirect
   4858  1.1  christos 		 || h->root.type == bfd_link_hash_warning)
   4859  1.1  christos 	    h = (struct elf_link_hash_entry *) h->root.u.i.link;
   4860  1.1  christos 	  eh = (struct ppc_elf_link_hash_entry *) h;
   4861  1.1  christos 
   4862  1.1  christos 	  for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
   4863  1.1  christos 	    if (p->sec == sec)
   4864  1.1  christos 	      {
   4865  1.1  christos 		/* Everything must go for SEC.  */
   4866  1.1  christos 		*pp = p->next;
   4867  1.1  christos 		break;
   4868  1.1  christos 	      }
   4869  1.1  christos 	}
   4870  1.1  christos 
   4871  1.1  christos       r_type = ELF32_R_TYPE (rel->r_info);
   4872  1.1  christos       if (!htab->is_vxworks
   4873  1.1  christos 	  && h == NULL
   4874  1.1  christos 	  && local_got_refcounts != NULL
   4875  1.1  christos 	  && (!info->shared
   4876  1.1  christos 	      || is_branch_reloc (r_type)))
   4877  1.1  christos 	{
   4878  1.1  christos 	  struct plt_entry **local_plt = (struct plt_entry **)
   4879  1.1  christos 	    (local_got_refcounts + symtab_hdr->sh_info);
   4880  1.1  christos 	  char *local_got_tls_masks = (char *)
   4881  1.1  christos 	    (local_plt + symtab_hdr->sh_info);
   4882  1.1  christos 	  if ((local_got_tls_masks[r_symndx] & PLT_IFUNC) != 0)
   4883  1.1  christos 	    {
   4884  1.1  christos 	      struct plt_entry **ifunc = local_plt + r_symndx;
   4885  1.1  christos 	      bfd_vma addend = 0;
   4886  1.1  christos 	      struct plt_entry *ent;
   4887  1.1  christos 
   4888  1.1  christos 	      if (r_type == R_PPC_PLTREL24 && info->shared)
   4889  1.1  christos 		addend = rel->r_addend;
   4890  1.1  christos 	      ent = find_plt_ent (ifunc, got2, addend);
   4891  1.1  christos 	      if (ent->plt.refcount > 0)
   4892  1.1  christos 		ent->plt.refcount -= 1;
   4893  1.1  christos 	      continue;
   4894  1.1  christos 	    }
   4895  1.1  christos 	}
   4896  1.1  christos 
   4897  1.1  christos       switch (r_type)
   4898  1.1  christos 	{
   4899  1.1  christos 	case R_PPC_GOT_TLSLD16:
   4900  1.1  christos 	case R_PPC_GOT_TLSLD16_LO:
   4901  1.1  christos 	case R_PPC_GOT_TLSLD16_HI:
   4902  1.1  christos 	case R_PPC_GOT_TLSLD16_HA:
   4903  1.1  christos 	case R_PPC_GOT_TLSGD16:
   4904  1.1  christos 	case R_PPC_GOT_TLSGD16_LO:
   4905  1.1  christos 	case R_PPC_GOT_TLSGD16_HI:
   4906  1.1  christos 	case R_PPC_GOT_TLSGD16_HA:
   4907  1.1  christos 	case R_PPC_GOT_TPREL16:
   4908  1.1  christos 	case R_PPC_GOT_TPREL16_LO:
   4909  1.1  christos 	case R_PPC_GOT_TPREL16_HI:
   4910  1.1  christos 	case R_PPC_GOT_TPREL16_HA:
   4911  1.1  christos 	case R_PPC_GOT_DTPREL16:
   4912  1.1  christos 	case R_PPC_GOT_DTPREL16_LO:
   4913  1.1  christos 	case R_PPC_GOT_DTPREL16_HI:
   4914  1.1  christos 	case R_PPC_GOT_DTPREL16_HA:
   4915  1.1  christos 	case R_PPC_GOT16:
   4916  1.1  christos 	case R_PPC_GOT16_LO:
   4917  1.1  christos 	case R_PPC_GOT16_HI:
   4918  1.1  christos 	case R_PPC_GOT16_HA:
   4919  1.1  christos 	  if (h != NULL)
   4920  1.1  christos 	    {
   4921  1.1  christos 	      if (h->got.refcount > 0)
   4922  1.1  christos 		h->got.refcount--;
   4923  1.1  christos 	      if (!info->shared)
   4924  1.1  christos 		{
   4925  1.1  christos 		  struct plt_entry *ent;
   4926  1.1  christos 
   4927  1.1  christos 		  ent = find_plt_ent (&h->plt.plist, NULL, 0);
   4928  1.1  christos 		  if (ent != NULL && ent->plt.refcount > 0)
   4929  1.1  christos 		    ent->plt.refcount -= 1;
   4930  1.1  christos 		}
   4931  1.1  christos 	    }
   4932  1.1  christos 	  else if (local_got_refcounts != NULL)
   4933  1.1  christos 	    {
   4934  1.1  christos 	      if (local_got_refcounts[r_symndx] > 0)
   4935  1.1  christos 		local_got_refcounts[r_symndx]--;
   4936  1.1  christos 	    }
   4937  1.1  christos 	  break;
   4938  1.1  christos 
   4939  1.1  christos 	case R_PPC_REL24:
   4940  1.1  christos 	case R_PPC_REL14:
   4941  1.1  christos 	case R_PPC_REL14_BRTAKEN:
   4942  1.1  christos 	case R_PPC_REL14_BRNTAKEN:
   4943  1.1  christos 	case R_PPC_REL32:
   4944  1.1  christos 	  if (h == NULL || h == htab->elf.hgot)
   4945  1.1  christos 	    break;
   4946  1.1  christos 	  /* Fall thru */
   4947  1.1  christos 
   4948  1.1  christos 	case R_PPC_ADDR32:
   4949  1.1  christos 	case R_PPC_ADDR24:
   4950  1.1  christos 	case R_PPC_ADDR16:
   4951  1.1  christos 	case R_PPC_ADDR16_LO:
   4952  1.1  christos 	case R_PPC_ADDR16_HI:
   4953  1.1  christos 	case R_PPC_ADDR16_HA:
   4954  1.1  christos 	case R_PPC_ADDR14:
   4955  1.1  christos 	case R_PPC_ADDR14_BRTAKEN:
   4956  1.1  christos 	case R_PPC_ADDR14_BRNTAKEN:
   4957  1.1  christos 	case R_PPC_UADDR32:
   4958  1.1  christos 	case R_PPC_UADDR16:
   4959  1.1  christos 	  if (info->shared)
   4960  1.1  christos 	    break;
   4961  1.1  christos 
   4962  1.1  christos 	case R_PPC_PLT32:
   4963  1.1  christos 	case R_PPC_PLTREL24:
   4964  1.1  christos 	case R_PPC_PLTREL32:
   4965  1.1  christos 	case R_PPC_PLT16_LO:
   4966  1.1  christos 	case R_PPC_PLT16_HI:
   4967  1.1  christos 	case R_PPC_PLT16_HA:
   4968  1.1  christos 	  if (h != NULL)
   4969  1.1  christos 	    {
   4970  1.1  christos 	      bfd_vma addend = 0;
   4971  1.1  christos 	      struct plt_entry *ent;
   4972  1.1  christos 
   4973  1.1  christos 	      if (r_type == R_PPC_PLTREL24 && info->shared)
   4974  1.1  christos 		addend = rel->r_addend;
   4975  1.1  christos 	      ent = find_plt_ent (&h->plt.plist, got2, addend);
   4976  1.1  christos 	      if (ent != NULL && ent->plt.refcount > 0)
   4977  1.1  christos 		ent->plt.refcount -= 1;
   4978  1.1  christos 	    }
   4979  1.1  christos 	  break;
   4980  1.1  christos 
   4981  1.1  christos 	default:
   4982  1.1  christos 	  break;
   4983  1.1  christos 	}
   4984  1.1  christos     }
   4985  1.1  christos   return TRUE;
   4986  1.1  christos }
   4987  1.1  christos 
   4988  1.1  christos /* Set plt output section type, htab->tls_get_addr, and call the
   4990  1.1  christos    generic ELF tls_setup function.  */
   4991  1.1  christos 
   4992  1.1  christos asection *
   4993  1.1  christos ppc_elf_tls_setup (bfd *obfd,
   4994  1.1  christos 		   struct bfd_link_info *info,
   4995  1.1  christos 		   int no_tls_get_addr_opt)
   4996  1.1  christos {
   4997  1.1  christos   struct ppc_elf_link_hash_table *htab;
   4998  1.1  christos 
   4999  1.1  christos   htab = ppc_elf_hash_table (info);
   5000  1.1  christos   htab->tls_get_addr = elf_link_hash_lookup (&htab->elf, "__tls_get_addr",
   5001  1.1  christos 					     FALSE, FALSE, TRUE);
   5002  1.1  christos   if (!no_tls_get_addr_opt)
   5003  1.1  christos     {
   5004  1.1  christos       struct elf_link_hash_entry *opt, *tga;
   5005  1.1  christos       opt = elf_link_hash_lookup (&htab->elf, "__tls_get_addr_opt",
   5006  1.1  christos 				  FALSE, FALSE, TRUE);
   5007  1.1  christos       if (opt != NULL
   5008  1.1  christos 	  && (opt->root.type == bfd_link_hash_defined
   5009  1.1  christos 	      || opt->root.type == bfd_link_hash_defweak))
   5010  1.1  christos 	{
   5011  1.1  christos 	  /* If glibc supports an optimized __tls_get_addr call stub,
   5012  1.1  christos 	     signalled by the presence of __tls_get_addr_opt, and we'll
   5013  1.1  christos 	     be calling __tls_get_addr via a plt call stub, then
   5014  1.1  christos 	     make __tls_get_addr point to __tls_get_addr_opt.  */
   5015  1.1  christos 	  tga = htab->tls_get_addr;
   5016  1.1  christos 	  if (htab->elf.dynamic_sections_created
   5017  1.1  christos 	      && tga != NULL
   5018  1.1  christos 	      && (tga->type == STT_FUNC
   5019  1.1  christos 		  || tga->needs_plt)
   5020  1.1  christos 	      && !(SYMBOL_CALLS_LOCAL (info, tga)
   5021  1.1  christos 		   || (ELF_ST_VISIBILITY (tga->other) != STV_DEFAULT
   5022  1.1  christos 		       && tga->root.type == bfd_link_hash_undefweak)))
   5023  1.1  christos 	    {
   5024  1.1  christos 	      struct plt_entry *ent;
   5025  1.1  christos 	      for (ent = tga->plt.plist; ent != NULL; ent = ent->next)
   5026  1.1  christos 		if (ent->plt.refcount > 0)
   5027  1.1  christos 		  break;
   5028  1.1  christos 	      if (ent != NULL)
   5029  1.1  christos 		{
   5030  1.1  christos 		  tga->root.type = bfd_link_hash_indirect;
   5031  1.1  christos 		  tga->root.u.i.link = &opt->root;
   5032  1.1  christos 		  ppc_elf_copy_indirect_symbol (info, opt, tga);
   5033  1.1  christos 		  if (opt->dynindx != -1)
   5034  1.1  christos 		    {
   5035  1.1  christos 		      /* Use __tls_get_addr_opt in dynamic relocations.  */
   5036  1.1  christos 		      opt->dynindx = -1;
   5037  1.1  christos 		      _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
   5038  1.1  christos 					      opt->dynstr_index);
   5039  1.1  christos 		      if (!bfd_elf_link_record_dynamic_symbol (info, opt))
   5040  1.1  christos 			return FALSE;
   5041  1.1  christos 		    }
   5042  1.1  christos 		  htab->tls_get_addr = opt;
   5043  1.1  christos 		}
   5044  1.1  christos 	    }
   5045  1.1  christos 	}
   5046  1.1  christos       else
   5047  1.1  christos 	no_tls_get_addr_opt = TRUE;
   5048  1.1  christos     }
   5049  1.1  christos   htab->no_tls_get_addr_opt = no_tls_get_addr_opt;
   5050  1.1  christos   if (htab->plt_type == PLT_NEW
   5051  1.1  christos       && htab->plt != NULL
   5052  1.1  christos       && htab->plt->output_section != NULL)
   5053  1.1  christos     {
   5054  1.1  christos       elf_section_type (htab->plt->output_section) = SHT_PROGBITS;
   5055  1.1  christos       elf_section_flags (htab->plt->output_section) = SHF_ALLOC + SHF_WRITE;
   5056  1.1  christos     }
   5057  1.1  christos 
   5058  1.1  christos   return _bfd_elf_tls_setup (obfd, info);
   5059  1.1  christos }
   5060  1.1  christos 
   5061  1.1  christos /* Return TRUE iff REL is a branch reloc with a global symbol matching
   5062  1.1  christos    HASH.  */
   5063  1.1  christos 
   5064  1.1  christos static bfd_boolean
   5065  1.1  christos branch_reloc_hash_match (const bfd *ibfd,
   5066  1.1  christos 			 const Elf_Internal_Rela *rel,
   5067  1.1  christos 			 const struct elf_link_hash_entry *hash)
   5068  1.1  christos {
   5069  1.1  christos   Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (ibfd);
   5070  1.1  christos   enum elf_ppc_reloc_type r_type = ELF32_R_TYPE (rel->r_info);
   5071  1.1  christos   unsigned int r_symndx = ELF32_R_SYM (rel->r_info);
   5072  1.1  christos 
   5073  1.1  christos   if (r_symndx >= symtab_hdr->sh_info && is_branch_reloc (r_type))
   5074  1.1  christos     {
   5075  1.1  christos       struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (ibfd);
   5076  1.1  christos       struct elf_link_hash_entry *h;
   5077  1.1  christos 
   5078  1.1  christos       h = sym_hashes[r_symndx - symtab_hdr->sh_info];
   5079  1.1  christos       while (h->root.type == bfd_link_hash_indirect
   5080  1.1  christos 	     || h->root.type == bfd_link_hash_warning)
   5081  1.1  christos 	h = (struct elf_link_hash_entry *) h->root.u.i.link;
   5082  1.1  christos       if (h == hash)
   5083  1.1  christos 	return TRUE;
   5084  1.1  christos     }
   5085  1.1  christos   return FALSE;
   5086  1.1  christos }
   5087  1.1  christos 
   5088  1.1  christos /* Run through all the TLS relocs looking for optimization
   5089  1.1  christos    opportunities.  */
   5090  1.1  christos 
   5091  1.1  christos bfd_boolean
   5092  1.1  christos ppc_elf_tls_optimize (bfd *obfd ATTRIBUTE_UNUSED,
   5093  1.1  christos 		      struct bfd_link_info *info)
   5094  1.1  christos {
   5095  1.1  christos   bfd *ibfd;
   5096  1.1  christos   asection *sec;
   5097  1.1  christos   struct ppc_elf_link_hash_table *htab;
   5098  1.1  christos   int pass;
   5099  1.1  christos 
   5100  1.1  christos   if (info->relocatable || !info->executable)
   5101  1.1  christos     return TRUE;
   5102  1.1  christos 
   5103  1.1  christos   htab = ppc_elf_hash_table (info);
   5104  1.1  christos   if (htab == NULL)
   5105  1.1  christos     return FALSE;
   5106  1.1  christos 
   5107  1.1  christos   /* Make two passes through the relocs.  First time check that tls
   5108  1.1  christos      relocs involved in setting up a tls_get_addr call are indeed
   5109  1.1  christos      followed by such a call.  If they are not, don't do any tls
   5110  1.1  christos      optimization.  On the second pass twiddle tls_mask flags to
   5111  1.1  christos      notify relocate_section that optimization can be done, and
   5112  1.1  christos      adjust got and plt refcounts.  */
   5113  1.1  christos   for (pass = 0; pass < 2; ++pass)
   5114  1.1  christos     for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   5115  1.1  christos       {
   5116  1.1  christos 	Elf_Internal_Sym *locsyms = NULL;
   5117  1.1  christos 	Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (ibfd);
   5118  1.1  christos 	asection *got2 = bfd_get_section_by_name (ibfd, ".got2");
   5119  1.1  christos 
   5120  1.1  christos 	for (sec = ibfd->sections; sec != NULL; sec = sec->next)
   5121  1.1  christos 	  if (sec->has_tls_reloc && !bfd_is_abs_section (sec->output_section))
   5122  1.1  christos 	    {
   5123  1.1  christos 	      Elf_Internal_Rela *relstart, *rel, *relend;
   5124  1.1  christos 	      int expecting_tls_get_addr = 0;
   5125  1.1  christos 
   5126  1.1  christos 	      /* Read the relocations.  */
   5127  1.1  christos 	      relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
   5128  1.1  christos 						    info->keep_memory);
   5129  1.1  christos 	      if (relstart == NULL)
   5130  1.1  christos 		return FALSE;
   5131  1.1  christos 
   5132  1.1  christos 	      relend = relstart + sec->reloc_count;
   5133  1.1  christos 	      for (rel = relstart; rel < relend; rel++)
   5134  1.1  christos 		{
   5135  1.1  christos 		  enum elf_ppc_reloc_type r_type;
   5136  1.1  christos 		  unsigned long r_symndx;
   5137  1.1  christos 		  struct elf_link_hash_entry *h = NULL;
   5138  1.1  christos 		  char *tls_mask;
   5139  1.1  christos 		  char tls_set, tls_clear;
   5140  1.1  christos 		  bfd_boolean is_local;
   5141  1.1  christos 		  bfd_signed_vma *got_count;
   5142  1.1  christos 
   5143  1.1  christos 		  r_symndx = ELF32_R_SYM (rel->r_info);
   5144  1.1  christos 		  if (r_symndx >= symtab_hdr->sh_info)
   5145  1.1  christos 		    {
   5146  1.1  christos 		      struct elf_link_hash_entry **sym_hashes;
   5147  1.1  christos 
   5148  1.1  christos 		      sym_hashes = elf_sym_hashes (ibfd);
   5149  1.1  christos 		      h = sym_hashes[r_symndx - symtab_hdr->sh_info];
   5150  1.1  christos 		      while (h->root.type == bfd_link_hash_indirect
   5151  1.1  christos 			     || h->root.type == bfd_link_hash_warning)
   5152  1.1  christos 			h = (struct elf_link_hash_entry *) h->root.u.i.link;
   5153  1.1  christos 		    }
   5154  1.1  christos 
   5155  1.1  christos 		  is_local = FALSE;
   5156  1.1  christos 		  if (h == NULL
   5157  1.1  christos 		      || !h->def_dynamic)
   5158  1.1  christos 		    is_local = TRUE;
   5159  1.1  christos 
   5160  1.1  christos 		  r_type = ELF32_R_TYPE (rel->r_info);
   5161  1.1  christos 		  /* If this section has old-style __tls_get_addr calls
   5162  1.1  christos 		     without marker relocs, then check that each
   5163  1.1  christos 		     __tls_get_addr call reloc is preceded by a reloc
   5164  1.1  christos 		     that conceivably belongs to the __tls_get_addr arg
   5165  1.1  christos 		     setup insn.  If we don't find matching arg setup
   5166  1.1  christos 		     relocs, don't do any tls optimization.  */
   5167  1.1  christos 		  if (pass == 0
   5168  1.1  christos 		      && sec->has_tls_get_addr_call
   5169  1.1  christos 		      && h != NULL
   5170  1.1  christos 		      && h == htab->tls_get_addr
   5171  1.1  christos 		      && !expecting_tls_get_addr
   5172  1.1  christos 		      && is_branch_reloc (r_type))
   5173  1.1  christos 		    {
   5174  1.1  christos 		      info->callbacks->minfo ("%H __tls_get_addr lost arg, "
   5175  1.1  christos 					      "TLS optimization disabled\n",
   5176  1.1  christos 					      ibfd, sec, rel->r_offset);
   5177  1.1  christos 		      if (elf_section_data (sec)->relocs != relstart)
   5178  1.1  christos 			free (relstart);
   5179  1.1  christos 		      return TRUE;
   5180  1.1  christos 		    }
   5181  1.1  christos 
   5182  1.1  christos 		  expecting_tls_get_addr = 0;
   5183  1.1  christos 		  switch (r_type)
   5184  1.1  christos 		    {
   5185  1.1  christos 		    case R_PPC_GOT_TLSLD16:
   5186  1.1  christos 		    case R_PPC_GOT_TLSLD16_LO:
   5187  1.1  christos 		      expecting_tls_get_addr = 1;
   5188  1.1  christos 		      /* Fall thru */
   5189  1.1  christos 
   5190  1.1  christos 		    case R_PPC_GOT_TLSLD16_HI:
   5191  1.1  christos 		    case R_PPC_GOT_TLSLD16_HA:
   5192  1.1  christos 		      /* These relocs should never be against a symbol
   5193  1.1  christos 			 defined in a shared lib.  Leave them alone if
   5194  1.1  christos 			 that turns out to be the case.  */
   5195  1.1  christos 		      if (!is_local)
   5196  1.1  christos 			continue;
   5197  1.1  christos 
   5198  1.1  christos 		      /* LD -> LE */
   5199  1.1  christos 		      tls_set = 0;
   5200  1.1  christos 		      tls_clear = TLS_LD;
   5201  1.1  christos 		      break;
   5202  1.1  christos 
   5203  1.1  christos 		    case R_PPC_GOT_TLSGD16:
   5204  1.1  christos 		    case R_PPC_GOT_TLSGD16_LO:
   5205  1.1  christos 		      expecting_tls_get_addr = 1;
   5206  1.1  christos 		      /* Fall thru */
   5207  1.1  christos 
   5208  1.1  christos 		    case R_PPC_GOT_TLSGD16_HI:
   5209  1.1  christos 		    case R_PPC_GOT_TLSGD16_HA:
   5210  1.1  christos 		      if (is_local)
   5211  1.1  christos 			/* GD -> LE */
   5212  1.1  christos 			tls_set = 0;
   5213  1.1  christos 		      else
   5214  1.1  christos 			/* GD -> IE */
   5215  1.1  christos 			tls_set = TLS_TLS | TLS_TPRELGD;
   5216  1.1  christos 		      tls_clear = TLS_GD;
   5217  1.1  christos 		      break;
   5218  1.1  christos 
   5219  1.1  christos 		    case R_PPC_GOT_TPREL16:
   5220  1.1  christos 		    case R_PPC_GOT_TPREL16_LO:
   5221  1.1  christos 		    case R_PPC_GOT_TPREL16_HI:
   5222  1.1  christos 		    case R_PPC_GOT_TPREL16_HA:
   5223  1.1  christos 		      if (is_local)
   5224  1.1  christos 			{
   5225  1.1  christos 			  /* IE -> LE */
   5226  1.1  christos 			  tls_set = 0;
   5227  1.1  christos 			  tls_clear = TLS_TPREL;
   5228  1.1  christos 			  break;
   5229  1.1  christos 			}
   5230  1.1  christos 		      else
   5231  1.1  christos 			continue;
   5232  1.1  christos 
   5233  1.1  christos 		    case R_PPC_TLSGD:
   5234  1.1  christos 		    case R_PPC_TLSLD:
   5235  1.1  christos 		      expecting_tls_get_addr = 2;
   5236  1.1  christos 		      tls_set = 0;
   5237  1.1  christos 		      tls_clear = 0;
   5238  1.1  christos 		      break;
   5239  1.1  christos 
   5240  1.1  christos 		    default:
   5241  1.1  christos 		      continue;
   5242  1.1  christos 		    }
   5243  1.1  christos 
   5244  1.1  christos 		  if (pass == 0)
   5245  1.1  christos 		    {
   5246  1.1  christos 		      if (!expecting_tls_get_addr
   5247  1.1  christos 			  || (expecting_tls_get_addr == 1
   5248  1.1  christos 			      && !sec->has_tls_get_addr_call))
   5249  1.1  christos 			continue;
   5250  1.1  christos 
   5251  1.1  christos 		      if (rel + 1 < relend
   5252  1.1  christos 			  && branch_reloc_hash_match (ibfd, rel + 1,
   5253  1.1  christos 						      htab->tls_get_addr))
   5254  1.1  christos 			continue;
   5255  1.1  christos 
   5256  1.1  christos 		      /* Uh oh, we didn't find the expected call.  We
   5257  1.1  christos 			 could just mark this symbol to exclude it
   5258  1.1  christos 			 from tls optimization but it's safer to skip
   5259  1.1  christos 			 the entire optimization.  */
   5260  1.1  christos 		      info->callbacks->minfo (_("%H arg lost __tls_get_addr, "
   5261  1.1  christos 						"TLS optimization disabled\n"),
   5262  1.1  christos 					      ibfd, sec, rel->r_offset);
   5263  1.1  christos 		      if (elf_section_data (sec)->relocs != relstart)
   5264  1.1  christos 			free (relstart);
   5265  1.1  christos 		      return TRUE;
   5266  1.1  christos 		    }
   5267  1.1  christos 
   5268  1.1  christos 		  if (expecting_tls_get_addr)
   5269  1.1  christos 		    {
   5270  1.1  christos 		      struct plt_entry *ent;
   5271  1.1  christos 		      bfd_vma addend = 0;
   5272  1.1  christos 
   5273  1.1  christos 		      if (info->shared
   5274  1.1  christos 			  && ELF32_R_TYPE (rel[1].r_info) == R_PPC_PLTREL24)
   5275  1.1  christos 			addend = rel[1].r_addend;
   5276  1.1  christos 		      ent = find_plt_ent (&htab->tls_get_addr->plt.plist,
   5277  1.1  christos 					  got2, addend);
   5278  1.1  christos 		      if (ent != NULL && ent->plt.refcount > 0)
   5279  1.1  christos 			ent->plt.refcount -= 1;
   5280  1.1  christos 
   5281  1.1  christos 		      if (expecting_tls_get_addr == 2)
   5282  1.1  christos 			continue;
   5283  1.1  christos 		    }
   5284  1.1  christos 
   5285  1.1  christos 		  if (h != NULL)
   5286  1.1  christos 		    {
   5287  1.1  christos 		      tls_mask = &ppc_elf_hash_entry (h)->tls_mask;
   5288  1.1  christos 		      got_count = &h->got.refcount;
   5289  1.1  christos 		    }
   5290  1.1  christos 		  else
   5291  1.1  christos 		    {
   5292  1.1  christos 		      bfd_signed_vma *lgot_refs;
   5293  1.1  christos 		      struct plt_entry **local_plt;
   5294  1.1  christos 		      char *lgot_masks;
   5295  1.1  christos 
   5296  1.1  christos 		      if (locsyms == NULL)
   5297  1.1  christos 			{
   5298  1.1  christos 			  locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
   5299  1.1  christos 			  if (locsyms == NULL)
   5300  1.1  christos 			    locsyms = bfd_elf_get_elf_syms (ibfd, symtab_hdr,
   5301  1.1  christos 							    symtab_hdr->sh_info,
   5302  1.1  christos 							    0, NULL, NULL, NULL);
   5303  1.1  christos 			  if (locsyms == NULL)
   5304  1.1  christos 			    {
   5305  1.1  christos 			      if (elf_section_data (sec)->relocs != relstart)
   5306  1.1  christos 				free (relstart);
   5307  1.1  christos 			      return FALSE;
   5308  1.1  christos 			    }
   5309  1.1  christos 			}
   5310  1.1  christos 		      lgot_refs = elf_local_got_refcounts (ibfd);
   5311  1.1  christos 		      if (lgot_refs == NULL)
   5312  1.1  christos 			abort ();
   5313  1.1  christos 		      local_plt = (struct plt_entry **)
   5314  1.1  christos 			(lgot_refs + symtab_hdr->sh_info);
   5315  1.1  christos 		      lgot_masks = (char *) (local_plt + symtab_hdr->sh_info);
   5316  1.1  christos 		      tls_mask = &lgot_masks[r_symndx];
   5317  1.1  christos 		      got_count = &lgot_refs[r_symndx];
   5318  1.1  christos 		    }
   5319  1.1  christos 
   5320  1.1  christos 		  if (tls_set == 0)
   5321  1.1  christos 		    {
   5322  1.1  christos 		      /* We managed to get rid of a got entry.  */
   5323  1.1  christos 		      if (*got_count > 0)
   5324  1.1  christos 			*got_count -= 1;
   5325  1.1  christos 		    }
   5326  1.1  christos 
   5327  1.1  christos 		  *tls_mask |= tls_set;
   5328  1.1  christos 		  *tls_mask &= ~tls_clear;
   5329  1.1  christos 		}
   5330  1.1  christos 
   5331  1.1  christos 	      if (elf_section_data (sec)->relocs != relstart)
   5332  1.1  christos 		free (relstart);
   5333  1.1  christos 	    }
   5334  1.1  christos 
   5335  1.1  christos 	if (locsyms != NULL
   5336  1.1  christos 	    && (symtab_hdr->contents != (unsigned char *) locsyms))
   5337  1.1  christos 	  {
   5338  1.1  christos 	    if (!info->keep_memory)
   5339  1.1  christos 	      free (locsyms);
   5340  1.1  christos 	    else
   5341  1.1  christos 	      symtab_hdr->contents = (unsigned char *) locsyms;
   5342  1.1  christos 	  }
   5343  1.1  christos       }
   5344  1.1  christos   return TRUE;
   5345  1.1  christos }
   5346  1.1  christos 
   5347  1.1  christos /* Return true if we have dynamic relocs that apply to read-only sections.  */
   5349  1.1  christos 
   5350  1.1  christos static bfd_boolean
   5351  1.1  christos readonly_dynrelocs (struct elf_link_hash_entry *h)
   5352  1.1  christos {
   5353  1.1  christos   struct elf_dyn_relocs *p;
   5354  1.1  christos 
   5355  1.1  christos   for (p = ppc_elf_hash_entry (h)->dyn_relocs; p != NULL; p = p->next)
   5356  1.1  christos     {
   5357  1.1  christos       asection *s = p->sec->output_section;
   5358  1.1  christos 
   5359  1.1  christos       if (s != NULL
   5360  1.1  christos 	  && ((s->flags & (SEC_READONLY | SEC_ALLOC))
   5361  1.1  christos 	      == (SEC_READONLY | SEC_ALLOC)))
   5362  1.1  christos 	return TRUE;
   5363  1.1  christos     }
   5364  1.1  christos   return FALSE;
   5365  1.1  christos }
   5366  1.1  christos 
   5367  1.1  christos /* Adjust a symbol defined by a dynamic object and referenced by a
   5368  1.1  christos    regular object.  The current definition is in some section of the
   5369  1.1  christos    dynamic object, but we're not including those sections.  We have to
   5370  1.1  christos    change the definition to something the rest of the link can
   5371  1.1  christos    understand.  */
   5372  1.1  christos 
   5373  1.1  christos static bfd_boolean
   5374  1.1  christos ppc_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
   5375  1.1  christos 			       struct elf_link_hash_entry *h)
   5376  1.1  christos {
   5377  1.1  christos   struct ppc_elf_link_hash_table *htab;
   5378  1.1  christos   asection *s;
   5379  1.1  christos 
   5380  1.1  christos #ifdef DEBUG
   5381  1.1  christos   fprintf (stderr, "ppc_elf_adjust_dynamic_symbol called for %s\n",
   5382  1.1  christos 	   h->root.root.string);
   5383  1.1  christos #endif
   5384  1.1  christos 
   5385  1.1  christos   /* Make sure we know what is going on here.  */
   5386  1.1  christos   htab = ppc_elf_hash_table (info);
   5387  1.1  christos   BFD_ASSERT (htab->elf.dynobj != NULL
   5388  1.1  christos 	      && (h->needs_plt
   5389  1.1  christos 		  || h->type == STT_GNU_IFUNC
   5390  1.1  christos 		  || h->u.weakdef != NULL
   5391  1.1  christos 		  || (h->def_dynamic
   5392  1.1  christos 		      && h->ref_regular
   5393  1.1  christos 		      && !h->def_regular)));
   5394  1.1  christos 
   5395  1.1  christos   /* Deal with function syms.  */
   5396  1.1  christos   if (h->type == STT_FUNC
   5397  1.1  christos       || h->type == STT_GNU_IFUNC
   5398  1.1  christos       || h->needs_plt)
   5399  1.1  christos     {
   5400  1.1  christos       /* Clear procedure linkage table information for any symbol that
   5401  1.1  christos 	 won't need a .plt entry.  */
   5402  1.1  christos       struct plt_entry *ent;
   5403  1.1  christos       for (ent = h->plt.plist; ent != NULL; ent = ent->next)
   5404  1.1  christos 	if (ent->plt.refcount > 0)
   5405  1.1  christos 	  break;
   5406  1.1  christos       if (ent == NULL
   5407  1.1  christos 	  || (h->type != STT_GNU_IFUNC
   5408  1.1  christos 	      && (SYMBOL_CALLS_LOCAL (info, h)
   5409  1.1  christos 		  || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
   5410  1.1  christos 		      && h->root.type == bfd_link_hash_undefweak))))
   5411  1.1  christos 	{
   5412  1.1  christos 	  /* A PLT entry is not required/allowed when:
   5413  1.1  christos 
   5414  1.1  christos 	     1. We are not using ld.so; because then the PLT entry
   5415  1.1  christos 	     can't be set up, so we can't use one.  In this case,
   5416  1.1  christos 	     ppc_elf_adjust_dynamic_symbol won't even be called.
   5417  1.1  christos 
   5418  1.1  christos 	     2. GC has rendered the entry unused.
   5419  1.1  christos 
   5420  1.1  christos 	     3. We know for certain that a call to this symbol
   5421  1.1  christos 	     will go to this object, or will remain undefined.  */
   5422  1.1  christos 	  h->plt.plist = NULL;
   5423  1.1  christos 	  h->needs_plt = 0;
   5424  1.1  christos 	}
   5425  1.1  christos       else
   5426  1.1  christos 	{
   5427  1.1  christos 	  /* After adjust_dynamic_symbol, non_got_ref set in the
   5428  1.1  christos 	     non-shared case means that we have allocated space in
   5429  1.1  christos 	     .dynbss for the symbol and thus dyn_relocs for this
   5430  1.1  christos 	     symbol should be discarded.
   5431  1.1  christos 	     If we get here we know we are making a PLT entry for this
   5432  1.1  christos 	     symbol, and in an executable we'd normally resolve
   5433  1.1  christos 	     relocations against this symbol to the PLT entry.  Allow
   5434  1.1  christos 	     dynamic relocs if the reference is weak, and the dynamic
   5435  1.1  christos 	     relocs will not cause text relocation.  */
   5436  1.1  christos 	  if (!h->ref_regular_nonweak
   5437  1.1  christos 	      && h->non_got_ref
   5438  1.1  christos 	      && h->type != STT_GNU_IFUNC
   5439  1.1  christos 	      && !htab->is_vxworks
   5440  1.1  christos 	      && !ppc_elf_hash_entry (h)->has_sda_refs
   5441  1.1  christos 	      && !readonly_dynrelocs (h))
   5442  1.1  christos 	    h->non_got_ref = 0;
   5443  1.1  christos 	}
   5444  1.1  christos       return TRUE;
   5445  1.1  christos     }
   5446  1.1  christos   else
   5447  1.1  christos     h->plt.plist = NULL;
   5448  1.1  christos 
   5449  1.1  christos   /* If this is a weak symbol, and there is a real definition, the
   5450  1.1  christos      processor independent code will have arranged for us to see the
   5451  1.1  christos      real definition first, and we can just use the same value.  */
   5452  1.1  christos   if (h->u.weakdef != NULL)
   5453  1.1  christos     {
   5454  1.1  christos       BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
   5455  1.1  christos 		  || h->u.weakdef->root.type == bfd_link_hash_defweak);
   5456  1.1  christos       h->root.u.def.section = h->u.weakdef->root.u.def.section;
   5457  1.1  christos       h->root.u.def.value = h->u.weakdef->root.u.def.value;
   5458  1.1  christos       if (ELIMINATE_COPY_RELOCS)
   5459  1.1  christos 	h->non_got_ref = h->u.weakdef->non_got_ref;
   5460  1.1  christos       return TRUE;
   5461  1.1  christos     }
   5462  1.1  christos 
   5463  1.1  christos   /* This is a reference to a symbol defined by a dynamic object which
   5464  1.1  christos      is not a function.  */
   5465  1.1  christos 
   5466  1.1  christos   /* If we are creating a shared library, we must presume that the
   5467  1.1  christos      only references to the symbol are via the global offset table.
   5468  1.1  christos      For such cases we need not do anything here; the relocations will
   5469  1.1  christos      be handled correctly by relocate_section.  */
   5470  1.1  christos   if (info->shared)
   5471  1.1  christos     return TRUE;
   5472  1.1  christos 
   5473  1.1  christos   /* If there are no references to this symbol that do not use the
   5474  1.1  christos      GOT, we don't need to generate a copy reloc.  */
   5475  1.1  christos   if (!h->non_got_ref)
   5476  1.1  christos     return TRUE;
   5477  1.1  christos 
   5478  1.1  christos    /* If we didn't find any dynamic relocs in read-only sections, then
   5479  1.1  christos       we'll be keeping the dynamic relocs and avoiding the copy reloc.
   5480  1.1  christos       We can't do this if there are any small data relocations.  This
   5481  1.1  christos       doesn't work on VxWorks, where we can not have dynamic
   5482  1.1  christos       relocations (other than copy and jump slot relocations) in an
   5483  1.1  christos       executable.  */
   5484  1.1  christos   if (ELIMINATE_COPY_RELOCS
   5485  1.1  christos       && !ppc_elf_hash_entry (h)->has_sda_refs
   5486  1.1  christos       && !htab->is_vxworks
   5487  1.1  christos       && !h->def_regular
   5488  1.1  christos       && !readonly_dynrelocs (h))
   5489  1.1  christos     {
   5490  1.1  christos       h->non_got_ref = 0;
   5491  1.1  christos       return TRUE;
   5492  1.1  christos     }
   5493  1.1  christos 
   5494  1.1  christos   /* We must allocate the symbol in our .dynbss section, which will
   5495  1.1  christos      become part of the .bss section of the executable.  There will be
   5496  1.1  christos      an entry for this symbol in the .dynsym section.  The dynamic
   5497  1.1  christos      object will contain position independent code, so all references
   5498  1.1  christos      from the dynamic object to this symbol will go through the global
   5499  1.1  christos      offset table.  The dynamic linker will use the .dynsym entry to
   5500  1.1  christos      determine the address it must put in the global offset table, so
   5501  1.1  christos      both the dynamic object and the regular object will refer to the
   5502  1.1  christos      same memory location for the variable.
   5503  1.1  christos 
   5504  1.1  christos      Of course, if the symbol is referenced using SDAREL relocs, we
   5505  1.1  christos      must instead allocate it in .sbss.  */
   5506  1.1  christos 
   5507  1.1  christos   if (ppc_elf_hash_entry (h)->has_sda_refs)
   5508  1.1  christos     s = htab->dynsbss;
   5509  1.1  christos   else
   5510  1.1  christos     s = htab->dynbss;
   5511  1.1  christos   BFD_ASSERT (s != NULL);
   5512  1.1  christos 
   5513  1.1  christos   /* We must generate a R_PPC_COPY reloc to tell the dynamic linker to
   5514  1.1  christos      copy the initial value out of the dynamic object and into the
   5515  1.1  christos      runtime process image.  We need to remember the offset into the
   5516  1.1  christos      .rela.bss section we are going to use.  */
   5517  1.1  christos   if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
   5518  1.1  christos     {
   5519  1.1  christos       asection *srel;
   5520  1.1  christos 
   5521  1.1  christos       if (ppc_elf_hash_entry (h)->has_sda_refs)
   5522  1.1  christos 	srel = htab->relsbss;
   5523  1.1  christos       else
   5524  1.1  christos 	srel = htab->relbss;
   5525  1.1  christos       BFD_ASSERT (srel != NULL);
   5526  1.1  christos       srel->size += sizeof (Elf32_External_Rela);
   5527  1.1  christos       h->needs_copy = 1;
   5528  1.1  christos     }
   5529  1.1  christos 
   5530  1.1  christos   return _bfd_elf_adjust_dynamic_copy (h, s);
   5531  1.1  christos }
   5532  1.1  christos 
   5533  1.1  christos /* Generate a symbol to mark plt call stubs.  For non-PIC code the sym is
   5535  1.1  christos    xxxxxxxx.plt_call32.<callee> where xxxxxxxx is a hex number, usually 0,
   5536  1.1  christos    specifying the addend on the plt relocation.  For -fpic code, the sym
   5537  1.1  christos    is xxxxxxxx.plt_pic32.<callee>, and for -fPIC
   5538  1.1  christos    xxxxxxxx.got2.plt_pic32.<callee>.  */
   5539  1.1  christos 
   5540  1.1  christos static bfd_boolean
   5541  1.1  christos add_stub_sym (struct plt_entry *ent,
   5542  1.1  christos 	      struct elf_link_hash_entry *h,
   5543  1.1  christos 	      struct bfd_link_info *info)
   5544  1.1  christos {
   5545  1.1  christos   struct elf_link_hash_entry *sh;
   5546  1.1  christos   size_t len1, len2, len3;
   5547  1.1  christos   char *name;
   5548  1.1  christos   const char *stub;
   5549  1.1  christos   struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
   5550  1.1  christos 
   5551  1.1  christos   if (info->shared)
   5552  1.1  christos     stub = ".plt_pic32.";
   5553  1.1  christos   else
   5554  1.1  christos     stub = ".plt_call32.";
   5555  1.1  christos 
   5556  1.1  christos   len1 = strlen (h->root.root.string);
   5557  1.1  christos   len2 = strlen (stub);
   5558  1.1  christos   len3 = 0;
   5559  1.1  christos   if (ent->sec)
   5560  1.1  christos     len3 = strlen (ent->sec->name);
   5561  1.1  christos   name = bfd_malloc (len1 + len2 + len3 + 9);
   5562  1.1  christos   if (name == NULL)
   5563  1.1  christos     return FALSE;
   5564  1.1  christos   sprintf (name, "%08x", (unsigned) ent->addend & 0xffffffff);
   5565  1.1  christos   if (ent->sec)
   5566  1.1  christos     memcpy (name + 8, ent->sec->name, len3);
   5567  1.1  christos   memcpy (name + 8 + len3, stub, len2);
   5568  1.1  christos   memcpy (name + 8 + len3 + len2, h->root.root.string, len1 + 1);
   5569  1.1  christos   sh = elf_link_hash_lookup (&htab->elf, name, TRUE, FALSE, FALSE);
   5570  1.1  christos   if (sh == NULL)
   5571  1.1  christos     return FALSE;
   5572  1.1  christos   if (sh->root.type == bfd_link_hash_new)
   5573  1.1  christos     {
   5574  1.1  christos       sh->root.type = bfd_link_hash_defined;
   5575  1.1  christos       sh->root.u.def.section = htab->glink;
   5576  1.1  christos       sh->root.u.def.value = ent->glink_offset;
   5577  1.1  christos       sh->ref_regular = 1;
   5578  1.1  christos       sh->def_regular = 1;
   5579  1.1  christos       sh->ref_regular_nonweak = 1;
   5580  1.1  christos       sh->forced_local = 1;
   5581  1.1  christos       sh->non_elf = 0;
   5582  1.1  christos     }
   5583  1.1  christos   return TRUE;
   5584  1.1  christos }
   5585  1.1  christos 
   5586  1.1  christos /* Allocate NEED contiguous space in .got, and return the offset.
   5587  1.1  christos    Handles allocation of the got header when crossing 32k.  */
   5588  1.1  christos 
   5589  1.1  christos static bfd_vma
   5590  1.1  christos allocate_got (struct ppc_elf_link_hash_table *htab, unsigned int need)
   5591  1.1  christos {
   5592  1.1  christos   bfd_vma where;
   5593  1.1  christos   unsigned int max_before_header;
   5594  1.1  christos 
   5595  1.1  christos   if (htab->plt_type == PLT_VXWORKS)
   5596  1.1  christos     {
   5597  1.1  christos       where = htab->got->size;
   5598  1.1  christos       htab->got->size += need;
   5599  1.1  christos     }
   5600  1.1  christos   else
   5601  1.1  christos     {
   5602  1.1  christos       max_before_header = htab->plt_type == PLT_NEW ? 32768 : 32764;
   5603  1.1  christos       if (need <= htab->got_gap)
   5604  1.1  christos 	{
   5605  1.1  christos 	  where = max_before_header - htab->got_gap;
   5606  1.1  christos 	  htab->got_gap -= need;
   5607  1.1  christos 	}
   5608  1.1  christos       else
   5609  1.1  christos 	{
   5610  1.1  christos 	  if (htab->got->size + need > max_before_header
   5611  1.1  christos 	      && htab->got->size <= max_before_header)
   5612  1.1  christos 	    {
   5613  1.1  christos 	      htab->got_gap = max_before_header - htab->got->size;
   5614  1.1  christos 	      htab->got->size = max_before_header + htab->got_header_size;
   5615  1.1  christos 	    }
   5616  1.1  christos 	  where = htab->got->size;
   5617  1.1  christos 	  htab->got->size += need;
   5618  1.1  christos 	}
   5619  1.1  christos     }
   5620  1.1  christos   return where;
   5621  1.1  christos }
   5622  1.1  christos 
   5623  1.1  christos /* Allocate space in associated reloc sections for dynamic relocs.  */
   5624  1.1  christos 
   5625  1.1  christos static bfd_boolean
   5626  1.1  christos allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
   5627  1.1  christos {
   5628  1.1  christos   struct bfd_link_info *info = inf;
   5629  1.1  christos   struct ppc_elf_link_hash_entry *eh;
   5630  1.1  christos   struct ppc_elf_link_hash_table *htab;
   5631  1.1  christos   struct elf_dyn_relocs *p;
   5632  1.1  christos 
   5633  1.1  christos   if (h->root.type == bfd_link_hash_indirect)
   5634  1.1  christos     return TRUE;
   5635  1.1  christos 
   5636  1.1  christos   htab = ppc_elf_hash_table (info);
   5637  1.1  christos   if (htab->elf.dynamic_sections_created
   5638  1.1  christos       || h->type == STT_GNU_IFUNC)
   5639  1.1  christos     {
   5640  1.1  christos       struct plt_entry *ent;
   5641  1.1  christos       bfd_boolean doneone = FALSE;
   5642  1.1  christos       bfd_vma plt_offset = 0, glink_offset = 0;
   5643  1.1  christos       bfd_boolean dyn;
   5644  1.1  christos 
   5645  1.1  christos       for (ent = h->plt.plist; ent != NULL; ent = ent->next)
   5646  1.1  christos 	if (ent->plt.refcount > 0)
   5647  1.1  christos 	  {
   5648  1.1  christos 	    /* Make sure this symbol is output as a dynamic symbol.  */
   5649  1.1  christos 	    if (h->dynindx == -1
   5650  1.1  christos 		&& !h->forced_local
   5651  1.1  christos 		&& !h->def_regular
   5652  1.1  christos 		&& htab->elf.dynamic_sections_created)
   5653  1.1  christos 	      {
   5654  1.1  christos 		if (! bfd_elf_link_record_dynamic_symbol (info, h))
   5655  1.1  christos 		  return FALSE;
   5656  1.1  christos 	      }
   5657  1.1  christos 
   5658  1.1  christos 	    dyn = htab->elf.dynamic_sections_created;
   5659  1.1  christos 	    if (info->shared
   5660  1.1  christos 		|| h->type == STT_GNU_IFUNC
   5661  1.1  christos 		|| WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h))
   5662  1.1  christos 	      {
   5663  1.1  christos 		asection *s = htab->plt;
   5664  1.1  christos 		if (!dyn || h->dynindx == -1)
   5665  1.1  christos 		  s = htab->iplt;
   5666  1.1  christos 
   5667  1.1  christos 		if (htab->plt_type == PLT_NEW || !dyn || h->dynindx == -1)
   5668  1.1  christos 		  {
   5669  1.1  christos 		    if (!doneone)
   5670  1.1  christos 		      {
   5671  1.1  christos 			plt_offset = s->size;
   5672  1.1  christos 			s->size += 4;
   5673  1.1  christos 		      }
   5674  1.1  christos 		    ent->plt.offset = plt_offset;
   5675  1.1  christos 
   5676  1.1  christos 		    s = htab->glink;
   5677  1.1  christos 		    if (!doneone || info->shared)
   5678  1.1  christos 		      {
   5679  1.1  christos 			glink_offset = s->size;
   5680  1.1  christos 			s->size += GLINK_ENTRY_SIZE;
   5681  1.1  christos 			if (h == htab->tls_get_addr
   5682  1.1  christos 			    && !htab->no_tls_get_addr_opt)
   5683  1.1  christos 			  s->size += TLS_GET_ADDR_GLINK_SIZE - GLINK_ENTRY_SIZE;
   5684  1.1  christos 		      }
   5685  1.1  christos 		    if (!doneone
   5686  1.1  christos 			&& !info->shared
   5687  1.1  christos 			&& h->def_dynamic
   5688  1.1  christos 			&& !h->def_regular)
   5689  1.1  christos 		      {
   5690  1.1  christos 			h->root.u.def.section = s;
   5691  1.1  christos 			h->root.u.def.value = glink_offset;
   5692  1.1  christos 		      }
   5693  1.1  christos 		    ent->glink_offset = glink_offset;
   5694  1.1  christos 
   5695  1.1  christos 		    if (htab->emit_stub_syms
   5696  1.1  christos 			&& !add_stub_sym (ent, h, info))
   5697  1.1  christos 		      return FALSE;
   5698  1.1  christos 		  }
   5699  1.1  christos 		else
   5700  1.1  christos 		  {
   5701  1.1  christos 		    if (!doneone)
   5702  1.1  christos 		      {
   5703  1.1  christos 			/* If this is the first .plt entry, make room
   5704  1.1  christos 			   for the special first entry.  */
   5705  1.1  christos 			if (s->size == 0)
   5706  1.1  christos 			  s->size += htab->plt_initial_entry_size;
   5707  1.1  christos 
   5708  1.1  christos 			/* The PowerPC PLT is actually composed of two
   5709  1.1  christos 			   parts, the first part is 2 words (for a load
   5710  1.1  christos 			   and a jump), and then there is a remaining
   5711  1.1  christos 			   word available at the end.  */
   5712  1.1  christos 			plt_offset = (htab->plt_initial_entry_size
   5713  1.1  christos 				      + (htab->plt_slot_size
   5714  1.1  christos 					 * ((s->size
   5715  1.1  christos 					     - htab->plt_initial_entry_size)
   5716  1.1  christos 					    / htab->plt_entry_size)));
   5717  1.1  christos 
   5718  1.1  christos 			/* If this symbol is not defined in a regular
   5719  1.1  christos 			   file, and we are not generating a shared
   5720  1.1  christos 			   library, then set the symbol to this location
   5721  1.1  christos 			   in the .plt.  This is to avoid text
   5722  1.1  christos 			   relocations, and is required to make
   5723  1.1  christos 			   function pointers compare as equal between
   5724  1.1  christos 			   the normal executable and the shared library.  */
   5725  1.1  christos 			if (! info->shared
   5726  1.1  christos 			    && h->def_dynamic
   5727  1.1  christos 			    && !h->def_regular)
   5728  1.1  christos 			  {
   5729  1.1  christos 			    h->root.u.def.section = s;
   5730  1.1  christos 			    h->root.u.def.value = plt_offset;
   5731  1.1  christos 			  }
   5732  1.1  christos 
   5733  1.1  christos 			/* Make room for this entry.  */
   5734  1.1  christos 			s->size += htab->plt_entry_size;
   5735  1.1  christos 			/* After the 8192nd entry, room for two entries
   5736  1.1  christos 			   is allocated.  */
   5737  1.1  christos 			if (htab->plt_type == PLT_OLD
   5738  1.1  christos 			    && (s->size - htab->plt_initial_entry_size)
   5739  1.1  christos 				/ htab->plt_entry_size
   5740  1.1  christos 			       > PLT_NUM_SINGLE_ENTRIES)
   5741  1.1  christos 			  s->size += htab->plt_entry_size;
   5742  1.1  christos 		      }
   5743  1.1  christos 		    ent->plt.offset = plt_offset;
   5744  1.1  christos 		  }
   5745  1.1  christos 
   5746  1.1  christos 		/* We also need to make an entry in the .rela.plt section.  */
   5747  1.1  christos 		if (!doneone)
   5748  1.1  christos 		  {
   5749  1.1  christos 		    if (!htab->elf.dynamic_sections_created
   5750  1.1  christos 			|| h->dynindx == -1)
   5751  1.1  christos 		      htab->reliplt->size += sizeof (Elf32_External_Rela);
   5752  1.1  christos 		    else
   5753  1.1  christos 		      {
   5754  1.1  christos 			htab->relplt->size += sizeof (Elf32_External_Rela);
   5755  1.1  christos 
   5756  1.1  christos 			if (htab->plt_type == PLT_VXWORKS)
   5757  1.1  christos 			  {
   5758  1.1  christos 			    /* Allocate space for the unloaded relocations.  */
   5759  1.1  christos 			    if (!info->shared
   5760  1.1  christos 				&& htab->elf.dynamic_sections_created)
   5761  1.1  christos 			      {
   5762  1.1  christos 				if (ent->plt.offset
   5763  1.1  christos 				    == (bfd_vma) htab->plt_initial_entry_size)
   5764  1.1  christos 				  {
   5765  1.1  christos 				    htab->srelplt2->size
   5766  1.1  christos 				      += (sizeof (Elf32_External_Rela)
   5767  1.1  christos 					  * VXWORKS_PLTRESOLVE_RELOCS);
   5768  1.1  christos 				  }
   5769  1.1  christos 
   5770  1.1  christos 				htab->srelplt2->size
   5771  1.1  christos 				  += (sizeof (Elf32_External_Rela)
   5772  1.1  christos 				      * VXWORKS_PLT_NON_JMP_SLOT_RELOCS);
   5773  1.1  christos 			      }
   5774  1.1  christos 
   5775  1.1  christos 			    /* Every PLT entry has an associated GOT entry in
   5776  1.1  christos 			       .got.plt.  */
   5777  1.1  christos 			    htab->sgotplt->size += 4;
   5778  1.1  christos 			  }
   5779  1.1  christos 		      }
   5780  1.1  christos 		    doneone = TRUE;
   5781  1.1  christos 		  }
   5782  1.1  christos 	      }
   5783  1.1  christos 	    else
   5784  1.1  christos 	      ent->plt.offset = (bfd_vma) -1;
   5785  1.1  christos 	  }
   5786  1.1  christos 	else
   5787  1.1  christos 	  ent->plt.offset = (bfd_vma) -1;
   5788  1.1  christos 
   5789  1.1  christos       if (!doneone)
   5790  1.1  christos 	{
   5791  1.1  christos 	  h->plt.plist = NULL;
   5792  1.1  christos 	  h->needs_plt = 0;
   5793  1.1  christos 	}
   5794  1.1  christos     }
   5795  1.1  christos   else
   5796  1.1  christos     {
   5797  1.1  christos       h->plt.plist = NULL;
   5798  1.1  christos       h->needs_plt = 0;
   5799  1.1  christos     }
   5800  1.1  christos 
   5801  1.1  christos   eh = (struct ppc_elf_link_hash_entry *) h;
   5802  1.1  christos   if (eh->elf.got.refcount > 0)
   5803  1.1  christos     {
   5804  1.1  christos       bfd_boolean dyn;
   5805  1.1  christos       unsigned int need;
   5806  1.1  christos 
   5807  1.1  christos       /* Make sure this symbol is output as a dynamic symbol.  */
   5808  1.1  christos       if (eh->elf.dynindx == -1
   5809  1.1  christos 	  && !eh->elf.forced_local
   5810  1.1  christos 	  && eh->elf.type != STT_GNU_IFUNC
   5811  1.1  christos 	  && htab->elf.dynamic_sections_created)
   5812  1.1  christos 	{
   5813  1.1  christos 	  if (!bfd_elf_link_record_dynamic_symbol (info, &eh->elf))
   5814  1.1  christos 	    return FALSE;
   5815  1.1  christos 	}
   5816  1.1  christos 
   5817  1.1  christos       need = 0;
   5818  1.1  christos       if ((eh->tls_mask & TLS_TLS) != 0)
   5819  1.1  christos 	{
   5820  1.1  christos 	  if ((eh->tls_mask & TLS_LD) != 0)
   5821  1.1  christos 	    {
   5822  1.1  christos 	      if (!eh->elf.def_dynamic)
   5823  1.1  christos 		/* We'll just use htab->tlsld_got.offset.  This should
   5824  1.1  christos 		   always be the case.  It's a little odd if we have
   5825  1.1  christos 		   a local dynamic reloc against a non-local symbol.  */
   5826  1.1  christos 		htab->tlsld_got.refcount += 1;
   5827  1.1  christos 	      else
   5828  1.1  christos 		need += 8;
   5829  1.1  christos 	    }
   5830  1.1  christos 	  if ((eh->tls_mask & TLS_GD) != 0)
   5831  1.1  christos 	    need += 8;
   5832  1.1  christos 	  if ((eh->tls_mask & (TLS_TPREL | TLS_TPRELGD)) != 0)
   5833  1.1  christos 	    need += 4;
   5834  1.1  christos 	  if ((eh->tls_mask & TLS_DTPREL) != 0)
   5835  1.1  christos 	    need += 4;
   5836  1.1  christos 	}
   5837  1.1  christos       else
   5838  1.1  christos 	need += 4;
   5839  1.1  christos       if (need == 0)
   5840  1.1  christos 	eh->elf.got.offset = (bfd_vma) -1;
   5841  1.1  christos       else
   5842  1.1  christos 	{
   5843  1.1  christos 	  eh->elf.got.offset = allocate_got (htab, need);
   5844  1.1  christos 	  dyn = htab->elf.dynamic_sections_created;
   5845  1.1  christos 	  if ((info->shared
   5846  1.1  christos 	       || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, &eh->elf))
   5847  1.1  christos 	      && (ELF_ST_VISIBILITY (eh->elf.other) == STV_DEFAULT
   5848  1.1  christos 		  || eh->elf.root.type != bfd_link_hash_undefweak))
   5849  1.1  christos 	    {
   5850  1.1  christos 	      asection *rsec = htab->relgot;
   5851  1.1  christos 	      /* All the entries we allocated need relocs.
   5852  1.1  christos 		 Except LD only needs one.  */
   5853  1.1  christos 	      if ((eh->tls_mask & TLS_LD) != 0
   5854  1.1  christos 		  && eh->elf.def_dynamic)
   5855  1.1  christos 		need -= 4;
   5856  1.1  christos 	      rsec->size += need * (sizeof (Elf32_External_Rela) / 4);
   5857  1.1  christos 	    }
   5858  1.1  christos 	}
   5859  1.1  christos     }
   5860  1.1  christos   else
   5861  1.1  christos     eh->elf.got.offset = (bfd_vma) -1;
   5862  1.1  christos 
   5863  1.1  christos   if (eh->dyn_relocs == NULL
   5864  1.1  christos       || !htab->elf.dynamic_sections_created)
   5865  1.1  christos     return TRUE;
   5866  1.1  christos 
   5867  1.1  christos   /* In the shared -Bsymbolic case, discard space allocated for
   5868  1.1  christos      dynamic pc-relative relocs against symbols which turn out to be
   5869  1.1  christos      defined in regular objects.  For the normal shared case, discard
   5870  1.1  christos      space for relocs that have become local due to symbol visibility
   5871  1.1  christos      changes.  */
   5872  1.1  christos 
   5873  1.1  christos   if (info->shared)
   5874  1.1  christos     {
   5875  1.1  christos       /* Relocs that use pc_count are those that appear on a call insn,
   5876  1.1  christos 	 or certain REL relocs (see must_be_dyn_reloc) that can be
   5877  1.1  christos 	 generated via assembly.  We want calls to protected symbols to
   5878  1.1  christos 	 resolve directly to the function rather than going via the plt.
   5879  1.1  christos 	 If people want function pointer comparisons to work as expected
   5880  1.1  christos 	 then they should avoid writing weird assembly.  */
   5881  1.1  christos       if (SYMBOL_CALLS_LOCAL (info, h))
   5882  1.1  christos 	{
   5883  1.1  christos 	  struct elf_dyn_relocs **pp;
   5884  1.1  christos 
   5885  1.1  christos 	  for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
   5886  1.1  christos 	    {
   5887  1.1  christos 	      p->count -= p->pc_count;
   5888  1.1  christos 	      p->pc_count = 0;
   5889  1.1  christos 	      if (p->count == 0)
   5890  1.1  christos 		*pp = p->next;
   5891  1.1  christos 	      else
   5892  1.1  christos 		pp = &p->next;
   5893  1.1  christos 	    }
   5894  1.1  christos 	}
   5895  1.1  christos 
   5896  1.1  christos       if (htab->is_vxworks)
   5897  1.1  christos 	{
   5898  1.1  christos 	  struct elf_dyn_relocs **pp;
   5899  1.1  christos 
   5900  1.1  christos 	  for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
   5901  1.1  christos 	    {
   5902  1.1  christos 	      if (strcmp (p->sec->output_section->name, ".tls_vars") == 0)
   5903  1.1  christos 		*pp = p->next;
   5904  1.1  christos 	      else
   5905  1.1  christos 		pp = &p->next;
   5906  1.1  christos 	    }
   5907  1.1  christos 	}
   5908  1.1  christos 
   5909  1.1  christos       /* Discard relocs on undefined symbols that must be local.  */
   5910  1.1  christos       if (eh->dyn_relocs != NULL
   5911  1.1  christos 	  && h->root.type == bfd_link_hash_undefined
   5912  1.1  christos 	  && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
   5913  1.1  christos 	      || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
   5914  1.1  christos 	eh->dyn_relocs = NULL;
   5915  1.1  christos 
   5916  1.1  christos       /* Also discard relocs on undefined weak syms with non-default
   5917  1.1  christos 	 visibility.  */
   5918  1.1  christos       if (eh->dyn_relocs != NULL
   5919  1.1  christos 	  && h->root.type == bfd_link_hash_undefweak)
   5920  1.1  christos 	{
   5921  1.1  christos 	  if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
   5922  1.1  christos 	    eh->dyn_relocs = NULL;
   5923  1.1  christos 
   5924  1.1  christos 	  /* Make sure undefined weak symbols are output as a dynamic
   5925  1.1  christos 	     symbol in PIEs.  */
   5926  1.1  christos 	  else if (h->dynindx == -1
   5927  1.1  christos 		   && !h->forced_local
   5928  1.1  christos 		   && !h->def_regular)
   5929  1.1  christos 	    {
   5930  1.1  christos 	      if (! bfd_elf_link_record_dynamic_symbol (info, h))
   5931  1.1  christos 		return FALSE;
   5932  1.1  christos 	    }
   5933  1.1  christos 	}
   5934  1.1  christos     }
   5935  1.1  christos   else if (ELIMINATE_COPY_RELOCS)
   5936  1.1  christos     {
   5937  1.1  christos       /* For the non-shared case, discard space for relocs against
   5938  1.1  christos 	 symbols which turn out to need copy relocs or are not
   5939  1.1  christos 	 dynamic.  */
   5940  1.1  christos 
   5941  1.1  christos       if (!h->non_got_ref
   5942  1.1  christos 	  && !h->def_regular)
   5943  1.1  christos 	{
   5944  1.1  christos 	  /* Make sure this symbol is output as a dynamic symbol.
   5945  1.1  christos 	     Undefined weak syms won't yet be marked as dynamic.  */
   5946  1.1  christos 	  if (h->dynindx == -1
   5947  1.1  christos 	      && !h->forced_local)
   5948  1.1  christos 	    {
   5949  1.1  christos 	      if (! bfd_elf_link_record_dynamic_symbol (info, h))
   5950  1.1  christos 		return FALSE;
   5951  1.1  christos 	    }
   5952  1.1  christos 
   5953  1.1  christos 	  /* If that succeeded, we know we'll be keeping all the
   5954  1.1  christos 	     relocs.  */
   5955  1.1  christos 	  if (h->dynindx != -1)
   5956  1.1  christos 	    goto keep;
   5957  1.1  christos 	}
   5958  1.1  christos 
   5959  1.1  christos       eh->dyn_relocs = NULL;
   5960  1.1  christos 
   5961  1.1  christos     keep: ;
   5962  1.1  christos     }
   5963  1.1  christos 
   5964  1.1  christos   /* Finally, allocate space.  */
   5965  1.1  christos   for (p = eh->dyn_relocs; p != NULL; p = p->next)
   5966  1.1  christos     {
   5967  1.1  christos       asection *sreloc = elf_section_data (p->sec)->sreloc;
   5968  1.1  christos       if (!htab->elf.dynamic_sections_created)
   5969  1.1  christos 	sreloc = htab->reliplt;
   5970  1.1  christos       sreloc->size += p->count * sizeof (Elf32_External_Rela);
   5971  1.1  christos     }
   5972  1.1  christos 
   5973  1.1  christos   return TRUE;
   5974  1.1  christos }
   5975  1.1  christos 
   5976  1.1  christos /* Set DF_TEXTREL if we find any dynamic relocs that apply to
   5977  1.1  christos    read-only sections.  */
   5978  1.1  christos 
   5979  1.1  christos static bfd_boolean
   5980  1.1  christos maybe_set_textrel (struct elf_link_hash_entry *h, void *info)
   5981  1.1  christos {
   5982  1.1  christos   if (h->root.type == bfd_link_hash_indirect)
   5983  1.1  christos     return TRUE;
   5984  1.1  christos 
   5985  1.1  christos   if (readonly_dynrelocs (h))
   5986  1.1  christos     {
   5987  1.1  christos       ((struct bfd_link_info *) info)->flags |= DF_TEXTREL;
   5988  1.1  christos 
   5989  1.1  christos       /* Not an error, just cut short the traversal.  */
   5990  1.1  christos       return FALSE;
   5991  1.1  christos     }
   5992  1.1  christos   return TRUE;
   5993  1.1  christos }
   5994  1.1  christos 
   5995  1.1  christos static const unsigned char glink_eh_frame_cie[] =
   5996  1.1  christos {
   5997  1.1  christos   0, 0, 0, 16,				/* length.  */
   5998  1.1  christos   0, 0, 0, 0,				/* id.  */
   5999  1.1  christos   1,					/* CIE version.  */
   6000  1.1  christos   'z', 'R', 0,				/* Augmentation string.  */
   6001  1.1  christos   4,					/* Code alignment.  */
   6002  1.1  christos   0x7c,					/* Data alignment.  */
   6003  1.1  christos   65,					/* RA reg.  */
   6004  1.1  christos   1,					/* Augmentation size.  */
   6005  1.1  christos   DW_EH_PE_pcrel | DW_EH_PE_sdata4,	/* FDE encoding.  */
   6006  1.1  christos   DW_CFA_def_cfa, 1, 0			/* def_cfa: r1 offset 0.  */
   6007  1.1  christos };
   6008  1.1  christos 
   6009  1.1  christos /* Set the sizes of the dynamic sections.  */
   6010  1.1  christos 
   6011  1.1  christos static bfd_boolean
   6012  1.1  christos ppc_elf_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
   6013  1.1  christos 			       struct bfd_link_info *info)
   6014  1.1  christos {
   6015  1.1  christos   struct ppc_elf_link_hash_table *htab;
   6016  1.1  christos   asection *s;
   6017  1.1  christos   bfd_boolean relocs;
   6018  1.1  christos   bfd *ibfd;
   6019  1.1  christos 
   6020  1.1  christos #ifdef DEBUG
   6021  1.1  christos   fprintf (stderr, "ppc_elf_size_dynamic_sections called\n");
   6022  1.1  christos #endif
   6023  1.1  christos 
   6024  1.1  christos   htab = ppc_elf_hash_table (info);
   6025  1.1  christos   BFD_ASSERT (htab->elf.dynobj != NULL);
   6026  1.1  christos 
   6027  1.1  christos   if (elf_hash_table (info)->dynamic_sections_created)
   6028  1.1  christos     {
   6029  1.1  christos       /* Set the contents of the .interp section to the interpreter.  */
   6030  1.1  christos       if (info->executable)
   6031  1.1  christos 	{
   6032  1.1  christos 	  s = bfd_get_linker_section (htab->elf.dynobj, ".interp");
   6033  1.1  christos 	  BFD_ASSERT (s != NULL);
   6034  1.1  christos 	  s->size = sizeof ELF_DYNAMIC_INTERPRETER;
   6035  1.1  christos 	  s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
   6036  1.1  christos 	}
   6037  1.1  christos     }
   6038  1.1  christos 
   6039  1.1  christos   if (htab->plt_type == PLT_OLD)
   6040  1.1  christos     htab->got_header_size = 16;
   6041  1.1  christos   else if (htab->plt_type == PLT_NEW)
   6042  1.1  christos     htab->got_header_size = 12;
   6043  1.1  christos 
   6044  1.1  christos   /* Set up .got offsets for local syms, and space for local dynamic
   6045  1.1  christos      relocs.  */
   6046  1.1  christos   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   6047  1.1  christos     {
   6048  1.1  christos       bfd_signed_vma *local_got;
   6049  1.1  christos       bfd_signed_vma *end_local_got;
   6050  1.1  christos       struct plt_entry **local_plt;
   6051  1.1  christos       struct plt_entry **end_local_plt;
   6052  1.1  christos       char *lgot_masks;
   6053  1.1  christos       bfd_size_type locsymcount;
   6054  1.1  christos       Elf_Internal_Shdr *symtab_hdr;
   6055  1.1  christos 
   6056  1.1  christos       if (!is_ppc_elf (ibfd))
   6057  1.1  christos 	continue;
   6058  1.1  christos 
   6059  1.1  christos       for (s = ibfd->sections; s != NULL; s = s->next)
   6060  1.1  christos 	{
   6061  1.1  christos 	  struct elf_dyn_relocs *p;
   6062  1.1  christos 
   6063  1.1  christos 	  for (p = ((struct elf_dyn_relocs *)
   6064  1.1  christos 		    elf_section_data (s)->local_dynrel);
   6065  1.1  christos 	       p != NULL;
   6066  1.1  christos 	       p = p->next)
   6067  1.1  christos 	    {
   6068  1.1  christos 	      if (!bfd_is_abs_section (p->sec)
   6069  1.1  christos 		  && bfd_is_abs_section (p->sec->output_section))
   6070  1.1  christos 		{
   6071  1.1  christos 		  /* Input section has been discarded, either because
   6072  1.1  christos 		     it is a copy of a linkonce section or due to
   6073  1.1  christos 		     linker script /DISCARD/, so we'll be discarding
   6074  1.1  christos 		     the relocs too.  */
   6075  1.1  christos 		}
   6076  1.1  christos 	      else if (htab->is_vxworks
   6077  1.1  christos 		       && strcmp (p->sec->output_section->name,
   6078  1.1  christos 				  ".tls_vars") == 0)
   6079  1.1  christos 		{
   6080  1.1  christos 		  /* Relocations in vxworks .tls_vars sections are
   6081  1.1  christos 		     handled specially by the loader.  */
   6082  1.1  christos 		}
   6083  1.1  christos 	      else if (p->count != 0)
   6084  1.1  christos 		{
   6085  1.1  christos 		  asection *sreloc = elf_section_data (p->sec)->sreloc;
   6086  1.1  christos 		  if (!htab->elf.dynamic_sections_created)
   6087  1.1  christos 		    sreloc = htab->reliplt;
   6088  1.1  christos 		  sreloc->size += p->count * sizeof (Elf32_External_Rela);
   6089  1.1  christos 		  if ((p->sec->output_section->flags
   6090  1.1  christos 		       & (SEC_READONLY | SEC_ALLOC))
   6091  1.1  christos 		      == (SEC_READONLY | SEC_ALLOC))
   6092  1.1  christos 		    info->flags |= DF_TEXTREL;
   6093  1.1  christos 		}
   6094  1.1  christos 	    }
   6095  1.1  christos 	}
   6096  1.1  christos 
   6097  1.1  christos       local_got = elf_local_got_refcounts (ibfd);
   6098  1.1  christos       if (!local_got)
   6099  1.1  christos 	continue;
   6100  1.1  christos 
   6101  1.1  christos       symtab_hdr = &elf_symtab_hdr (ibfd);
   6102  1.1  christos       locsymcount = symtab_hdr->sh_info;
   6103  1.1  christos       end_local_got = local_got + locsymcount;
   6104  1.1  christos       local_plt = (struct plt_entry **) end_local_got;
   6105  1.1  christos       end_local_plt = local_plt + locsymcount;
   6106  1.1  christos       lgot_masks = (char *) end_local_plt;
   6107  1.1  christos 
   6108  1.1  christos       for (; local_got < end_local_got; ++local_got, ++lgot_masks)
   6109  1.1  christos 	if (*local_got > 0)
   6110  1.1  christos 	  {
   6111  1.1  christos 	    unsigned int need = 0;
   6112  1.1  christos 	    if ((*lgot_masks & TLS_TLS) != 0)
   6113  1.1  christos 	      {
   6114  1.1  christos 		if ((*lgot_masks & TLS_GD) != 0)
   6115  1.1  christos 		  need += 8;
   6116  1.1  christos 		if ((*lgot_masks & TLS_LD) != 0)
   6117  1.1  christos 		  htab->tlsld_got.refcount += 1;
   6118  1.1  christos 		if ((*lgot_masks & (TLS_TPREL | TLS_TPRELGD)) != 0)
   6119  1.1  christos 		  need += 4;
   6120  1.1  christos 		if ((*lgot_masks & TLS_DTPREL) != 0)
   6121  1.1  christos 		  need += 4;
   6122  1.1  christos 	      }
   6123  1.1  christos 	    else
   6124  1.1  christos 	      need += 4;
   6125  1.1  christos 	    if (need == 0)
   6126  1.1  christos 	      *local_got = (bfd_vma) -1;
   6127  1.1  christos 	    else
   6128  1.1  christos 	      {
   6129  1.1  christos 		*local_got = allocate_got (htab, need);
   6130  1.1  christos 		if (info->shared)
   6131  1.1  christos 		  htab->relgot->size += (need
   6132  1.1  christos 					 * (sizeof (Elf32_External_Rela) / 4));
   6133  1.1  christos 	      }
   6134  1.1  christos 	  }
   6135  1.1  christos 	else
   6136  1.1  christos 	  *local_got = (bfd_vma) -1;
   6137  1.1  christos 
   6138  1.1  christos       if (htab->is_vxworks)
   6139  1.1  christos 	continue;
   6140  1.1  christos 
   6141  1.1  christos       /* Allocate space for calls to local STT_GNU_IFUNC syms in .iplt.  */
   6142  1.1  christos       for (; local_plt < end_local_plt; ++local_plt)
   6143  1.1  christos 	{
   6144  1.1  christos 	  struct plt_entry *ent;
   6145  1.1  christos 	  bfd_boolean doneone = FALSE;
   6146  1.1  christos 	  bfd_vma plt_offset = 0, glink_offset = 0;
   6147  1.1  christos 
   6148  1.1  christos 	  for (ent = *local_plt; ent != NULL; ent = ent->next)
   6149  1.1  christos 	    if (ent->plt.refcount > 0)
   6150  1.1  christos 	      {
   6151  1.1  christos 		s = htab->iplt;
   6152  1.1  christos 
   6153  1.1  christos 		if (!doneone)
   6154  1.1  christos 		  {
   6155  1.1  christos 		    plt_offset = s->size;
   6156  1.1  christos 		    s->size += 4;
   6157  1.1  christos 		  }
   6158  1.1  christos 		ent->plt.offset = plt_offset;
   6159  1.1  christos 
   6160  1.1  christos 		s = htab->glink;
   6161  1.1  christos 		if (!doneone || info->shared)
   6162  1.1  christos 		  {
   6163  1.1  christos 		    glink_offset = s->size;
   6164  1.1  christos 		    s->size += GLINK_ENTRY_SIZE;
   6165  1.1  christos 		  }
   6166  1.1  christos 		ent->glink_offset = glink_offset;
   6167  1.1  christos 
   6168  1.1  christos 		if (!doneone)
   6169  1.1  christos 		  {
   6170  1.1  christos 		    htab->reliplt->size += sizeof (Elf32_External_Rela);
   6171  1.1  christos 		    doneone = TRUE;
   6172  1.1  christos 		  }
   6173  1.1  christos 	      }
   6174  1.1  christos 	    else
   6175  1.1  christos 	      ent->plt.offset = (bfd_vma) -1;
   6176  1.1  christos 	}
   6177  1.1  christos     }
   6178  1.1  christos 
   6179  1.1  christos   /* Allocate space for global sym dynamic relocs.  */
   6180  1.1  christos   elf_link_hash_traverse (elf_hash_table (info), allocate_dynrelocs, info);
   6181  1.1  christos 
   6182  1.1  christos   if (htab->tlsld_got.refcount > 0)
   6183  1.1  christos     {
   6184  1.1  christos       htab->tlsld_got.offset = allocate_got (htab, 8);
   6185  1.1  christos       if (info->shared)
   6186  1.1  christos 	htab->relgot->size += sizeof (Elf32_External_Rela);
   6187  1.1  christos     }
   6188  1.1  christos   else
   6189  1.1  christos     htab->tlsld_got.offset = (bfd_vma) -1;
   6190  1.1  christos 
   6191  1.1  christos   if (htab->got != NULL && htab->plt_type != PLT_VXWORKS)
   6192  1.1  christos     {
   6193  1.1  christos       unsigned int g_o_t = 32768;
   6194  1.1  christos 
   6195  1.1  christos       /* If we haven't allocated the header, do so now.  When we get here,
   6196  1.1  christos 	 for old plt/got the got size will be 0 to 32764 (not allocated),
   6197  1.1  christos 	 or 32780 to 65536 (header allocated).  For new plt/got, the
   6198  1.1  christos 	 corresponding ranges are 0 to 32768 and 32780 to 65536.  */
   6199  1.1  christos       if (htab->got->size <= 32768)
   6200  1.1  christos 	{
   6201  1.1  christos 	  g_o_t = htab->got->size;
   6202  1.1  christos 	  if (htab->plt_type == PLT_OLD)
   6203  1.1  christos 	    g_o_t += 4;
   6204  1.1  christos 	  htab->got->size += htab->got_header_size;
   6205  1.1  christos 	}
   6206  1.1  christos 
   6207  1.1  christos       htab->elf.hgot->root.u.def.value = g_o_t;
   6208  1.1  christos     }
   6209  1.1  christos   if (info->shared)
   6210  1.1  christos     {
   6211  1.1  christos       struct elf_link_hash_entry *sda = htab->sdata[0].sym;
   6212  1.1  christos       if (sda != NULL
   6213  1.1  christos 	  && !(sda->root.type == bfd_link_hash_defined
   6214  1.1  christos 	       || sda->root.type == bfd_link_hash_defweak))
   6215  1.1  christos 	{
   6216  1.1  christos 	  sda->root.type = bfd_link_hash_defined;
   6217  1.1  christos 	  sda->root.u.def.section = htab->elf.hgot->root.u.def.section;
   6218  1.1  christos 	  sda->root.u.def.value = htab->elf.hgot->root.u.def.value;
   6219  1.1  christos 	}
   6220  1.1  christos     }
   6221  1.1  christos 
   6222  1.1  christos   if (htab->glink != NULL
   6223  1.1  christos       && htab->glink->size != 0
   6224  1.1  christos       && htab->elf.dynamic_sections_created)
   6225  1.1  christos     {
   6226  1.1  christos       htab->glink_pltresolve = htab->glink->size;
   6227  1.1  christos       /* Space for the branch table.  */
   6228  1.1  christos       htab->glink->size += htab->glink->size / (GLINK_ENTRY_SIZE / 4) - 4;
   6229  1.1  christos       /* Pad out to align the start of PLTresolve.  */
   6230  1.1  christos       htab->glink->size += -htab->glink->size & 15;
   6231  1.1  christos       htab->glink->size += GLINK_PLTRESOLVE;
   6232  1.1  christos 
   6233  1.1  christos       if (htab->emit_stub_syms)
   6234  1.1  christos 	{
   6235  1.1  christos 	  struct elf_link_hash_entry *sh;
   6236  1.1  christos 	  sh = elf_link_hash_lookup (&htab->elf, "__glink",
   6237  1.1  christos 				     TRUE, FALSE, FALSE);
   6238  1.1  christos 	  if (sh == NULL)
   6239  1.1  christos 	    return FALSE;
   6240  1.1  christos 	  if (sh->root.type == bfd_link_hash_new)
   6241  1.1  christos 	    {
   6242  1.1  christos 	      sh->root.type = bfd_link_hash_defined;
   6243  1.1  christos 	      sh->root.u.def.section = htab->glink;
   6244  1.1  christos 	      sh->root.u.def.value = htab->glink_pltresolve;
   6245  1.1  christos 	      sh->ref_regular = 1;
   6246  1.1  christos 	      sh->def_regular = 1;
   6247  1.1  christos 	      sh->ref_regular_nonweak = 1;
   6248  1.1  christos 	      sh->forced_local = 1;
   6249  1.1  christos 	      sh->non_elf = 0;
   6250  1.1  christos 	    }
   6251  1.1  christos 	  sh = elf_link_hash_lookup (&htab->elf, "__glink_PLTresolve",
   6252  1.1  christos 				     TRUE, FALSE, FALSE);
   6253  1.1  christos 	  if (sh == NULL)
   6254  1.1  christos 	    return FALSE;
   6255  1.1  christos 	  if (sh->root.type == bfd_link_hash_new)
   6256  1.1  christos 	    {
   6257  1.1  christos 	      sh->root.type = bfd_link_hash_defined;
   6258  1.1  christos 	      sh->root.u.def.section = htab->glink;
   6259  1.1  christos 	      sh->root.u.def.value = htab->glink->size - GLINK_PLTRESOLVE;
   6260  1.1  christos 	      sh->ref_regular = 1;
   6261  1.1  christos 	      sh->def_regular = 1;
   6262  1.1  christos 	      sh->ref_regular_nonweak = 1;
   6263  1.1  christos 	      sh->forced_local = 1;
   6264  1.1  christos 	      sh->non_elf = 0;
   6265  1.1  christos 	    }
   6266  1.1  christos 	}
   6267  1.1  christos     }
   6268  1.1  christos 
   6269  1.1  christos   if (htab->glink != NULL
   6270  1.1  christos       && htab->glink->size != 0
   6271  1.1  christos       && htab->glink_eh_frame != NULL
   6272  1.1  christos       && !bfd_is_abs_section (htab->glink_eh_frame->output_section)
   6273  1.1  christos       && _bfd_elf_eh_frame_present (info))
   6274  1.1  christos     {
   6275  1.1  christos       s = htab->glink_eh_frame;
   6276  1.1  christos       s->size = sizeof (glink_eh_frame_cie) + 20;
   6277  1.1  christos       if (info->shared)
   6278  1.1  christos 	{
   6279  1.1  christos 	  s->size += 4;
   6280  1.1  christos 	  if (htab->glink->size - GLINK_PLTRESOLVE + 8 >= 256)
   6281  1.1  christos 	    s->size += 4;
   6282  1.1  christos 	}
   6283  1.1  christos     }
   6284  1.1  christos 
   6285  1.1  christos   /* We've now determined the sizes of the various dynamic sections.
   6286  1.1  christos      Allocate memory for them.  */
   6287  1.1  christos   relocs = FALSE;
   6288  1.1  christos   for (s = htab->elf.dynobj->sections; s != NULL; s = s->next)
   6289  1.1  christos     {
   6290  1.1  christos       bfd_boolean strip_section = TRUE;
   6291  1.1  christos 
   6292  1.1  christos       if ((s->flags & SEC_LINKER_CREATED) == 0)
   6293  1.1  christos 	continue;
   6294  1.1  christos 
   6295  1.1  christos       if (s == htab->plt
   6296  1.1  christos 	  || s == htab->got)
   6297  1.1  christos 	{
   6298  1.1  christos 	  /* We'd like to strip these sections if they aren't needed, but if
   6299  1.1  christos 	     we've exported dynamic symbols from them we must leave them.
   6300  1.1  christos 	     It's too late to tell BFD to get rid of the symbols.  */
   6301  1.1  christos 	  if (htab->elf.hplt != NULL)
   6302  1.1  christos 	    strip_section = FALSE;
   6303  1.1  christos 	  /* Strip this section if we don't need it; see the
   6304  1.1  christos 	     comment below.  */
   6305  1.1  christos 	}
   6306  1.1  christos       else if (s == htab->iplt
   6307  1.1  christos 	       || s == htab->glink
   6308  1.1  christos 	       || s == htab->glink_eh_frame
   6309  1.1  christos 	       || s == htab->sgotplt
   6310  1.1  christos 	       || s == htab->sbss
   6311  1.1  christos 	       || s == htab->dynbss
   6312  1.1  christos 	       || s == htab->dynsbss
   6313  1.1  christos 	       || s == htab->sdata[0].section
   6314  1.1  christos 	       || s == htab->sdata[1].section)
   6315  1.1  christos 	{
   6316  1.1  christos 	  /* Strip these too.  */
   6317  1.1  christos 	}
   6318  1.1  christos       else if (CONST_STRNEQ (bfd_get_section_name (htab->elf.dynobj, s),
   6319  1.1  christos 			     ".rela"))
   6320  1.1  christos 	{
   6321  1.1  christos 	  if (s->size != 0)
   6322  1.1  christos 	    {
   6323  1.1  christos 	      /* Remember whether there are any relocation sections.  */
   6324  1.1  christos 	      relocs = TRUE;
   6325  1.1  christos 
   6326  1.1  christos 	      /* We use the reloc_count field as a counter if we need
   6327  1.1  christos 		 to copy relocs into the output file.  */
   6328  1.1  christos 	      s->reloc_count = 0;
   6329  1.1  christos 	    }
   6330  1.1  christos 	}
   6331  1.1  christos       else
   6332  1.1  christos 	{
   6333  1.1  christos 	  /* It's not one of our sections, so don't allocate space.  */
   6334  1.1  christos 	  continue;
   6335  1.1  christos 	}
   6336  1.1  christos 
   6337  1.1  christos       if (s->size == 0 && strip_section)
   6338  1.1  christos 	{
   6339  1.1  christos 	  /* If we don't need this section, strip it from the
   6340  1.1  christos 	     output file.  This is mostly to handle .rela.bss and
   6341  1.1  christos 	     .rela.plt.  We must create both sections in
   6342  1.1  christos 	     create_dynamic_sections, because they must be created
   6343  1.1  christos 	     before the linker maps input sections to output
   6344  1.1  christos 	     sections.  The linker does that before
   6345  1.1  christos 	     adjust_dynamic_symbol is called, and it is that
   6346  1.1  christos 	     function which decides whether anything needs to go
   6347  1.1  christos 	     into these sections.  */
   6348  1.1  christos 	  s->flags |= SEC_EXCLUDE;
   6349  1.1  christos 	  continue;
   6350  1.1  christos 	}
   6351  1.1  christos 
   6352  1.1  christos       if ((s->flags & SEC_HAS_CONTENTS) == 0)
   6353  1.1  christos 	continue;
   6354  1.1  christos 
   6355  1.1  christos       /* Allocate memory for the section contents.  */
   6356  1.1  christos       s->contents = bfd_zalloc (htab->elf.dynobj, s->size);
   6357  1.1  christos       if (s->contents == NULL)
   6358  1.1  christos 	return FALSE;
   6359  1.1  christos     }
   6360  1.1  christos 
   6361  1.1  christos   if (htab->elf.dynamic_sections_created)
   6362  1.1  christos     {
   6363  1.1  christos       /* Add some entries to the .dynamic section.  We fill in the
   6364  1.1  christos 	 values later, in ppc_elf_finish_dynamic_sections, but we
   6365  1.1  christos 	 must add the entries now so that we get the correct size for
   6366  1.1  christos 	 the .dynamic section.  The DT_DEBUG entry is filled in by the
   6367  1.1  christos 	 dynamic linker and used by the debugger.  */
   6368  1.1  christos #define add_dynamic_entry(TAG, VAL) \
   6369  1.1  christos   _bfd_elf_add_dynamic_entry (info, TAG, VAL)
   6370  1.1  christos 
   6371  1.1  christos       if (info->executable)
   6372  1.1  christos 	{
   6373  1.1  christos 	  if (!add_dynamic_entry (DT_DEBUG, 0))
   6374  1.1  christos 	    return FALSE;
   6375  1.1  christos 	}
   6376  1.1  christos 
   6377  1.1  christos       if (htab->plt != NULL && htab->plt->size != 0)
   6378  1.1  christos 	{
   6379  1.1  christos 	  if (!add_dynamic_entry (DT_PLTGOT, 0)
   6380  1.1  christos 	      || !add_dynamic_entry (DT_PLTRELSZ, 0)
   6381  1.1  christos 	      || !add_dynamic_entry (DT_PLTREL, DT_RELA)
   6382  1.1  christos 	      || !add_dynamic_entry (DT_JMPREL, 0))
   6383  1.1  christos 	    return FALSE;
   6384  1.1  christos 	}
   6385  1.1  christos 
   6386  1.1  christos       if (htab->glink != NULL && htab->glink->size != 0)
   6387  1.1  christos 	{
   6388  1.1  christos 	  if (!add_dynamic_entry (DT_PPC_GOT, 0))
   6389  1.1  christos 	    return FALSE;
   6390  1.1  christos 	  if (!htab->no_tls_get_addr_opt
   6391  1.1  christos 	      && htab->tls_get_addr != NULL
   6392  1.1  christos 	      && htab->tls_get_addr->plt.plist != NULL
   6393  1.1  christos 	      && !add_dynamic_entry (DT_PPC_TLSOPT, 0))
   6394  1.1  christos 	    return FALSE;
   6395  1.1  christos 	}
   6396  1.1  christos 
   6397  1.1  christos       if (relocs)
   6398  1.1  christos 	{
   6399  1.1  christos 	  if (!add_dynamic_entry (DT_RELA, 0)
   6400  1.1  christos 	      || !add_dynamic_entry (DT_RELASZ, 0)
   6401  1.1  christos 	      || !add_dynamic_entry (DT_RELAENT, sizeof (Elf32_External_Rela)))
   6402  1.1  christos 	    return FALSE;
   6403  1.1  christos 	}
   6404  1.1  christos 
   6405  1.1  christos       /* If any dynamic relocs apply to a read-only section, then we
   6406  1.1  christos 	 need a DT_TEXTREL entry.  */
   6407  1.1  christos       if ((info->flags & DF_TEXTREL) == 0)
   6408  1.1  christos 	elf_link_hash_traverse (elf_hash_table (info), maybe_set_textrel,
   6409  1.1  christos 				info);
   6410  1.1  christos 
   6411  1.1  christos       if ((info->flags & DF_TEXTREL) != 0)
   6412  1.1  christos 	{
   6413  1.1  christos 	  if (!add_dynamic_entry (DT_TEXTREL, 0))
   6414  1.1  christos 	    return FALSE;
   6415  1.1  christos 	}
   6416  1.1  christos       if (htab->is_vxworks
   6417  1.1  christos 	  && !elf_vxworks_add_dynamic_entries (output_bfd, info))
   6418  1.1  christos 	return FALSE;
   6419  1.1  christos    }
   6420  1.1  christos #undef add_dynamic_entry
   6421  1.1  christos 
   6422  1.1  christos   if (htab->glink_eh_frame != NULL
   6423  1.1  christos       && htab->glink_eh_frame->contents != NULL)
   6424  1.1  christos     {
   6425  1.1  christos       unsigned char *p = htab->glink_eh_frame->contents;
   6426  1.1  christos       bfd_vma val;
   6427  1.1  christos 
   6428  1.1  christos       memcpy (p, glink_eh_frame_cie, sizeof (glink_eh_frame_cie));
   6429  1.1  christos       /* CIE length (rewrite in case little-endian).  */
   6430  1.1  christos       bfd_put_32 (htab->elf.dynobj, sizeof (glink_eh_frame_cie) - 4, p);
   6431  1.1  christos       p += sizeof (glink_eh_frame_cie);
   6432  1.1  christos       /* FDE length.  */
   6433  1.1  christos       val = htab->glink_eh_frame->size - 4 - sizeof (glink_eh_frame_cie);
   6434  1.1  christos       bfd_put_32 (htab->elf.dynobj, val, p);
   6435  1.1  christos       p += 4;
   6436  1.1  christos       /* CIE pointer.  */
   6437  1.1  christos       val = p - htab->glink_eh_frame->contents;
   6438  1.1  christos       bfd_put_32 (htab->elf.dynobj, val, p);
   6439  1.1  christos       p += 4;
   6440  1.1  christos       /* Offset to .glink.  Set later.  */
   6441  1.1  christos       p += 4;
   6442  1.1  christos       /* .glink size.  */
   6443  1.1  christos       bfd_put_32 (htab->elf.dynobj, htab->glink->size, p);
   6444  1.1  christos       p += 4;
   6445  1.1  christos       /* Augmentation.  */
   6446  1.1  christos       p += 1;
   6447  1.1  christos 
   6448  1.1  christos       if (info->shared
   6449  1.1  christos 	  && htab->elf.dynamic_sections_created)
   6450  1.1  christos 	{
   6451  1.1  christos 	  bfd_vma adv = (htab->glink->size - GLINK_PLTRESOLVE + 8) >> 2;
   6452  1.1  christos 	  if (adv < 64)
   6453  1.1  christos 	    *p++ = DW_CFA_advance_loc + adv;
   6454  1.1  christos 	  else if (adv < 256)
   6455  1.1  christos 	    {
   6456  1.1  christos 	      *p++ = DW_CFA_advance_loc1;
   6457  1.1  christos 	      *p++ = adv;
   6458  1.1  christos 	    }
   6459  1.1  christos 	  else if (adv < 65536)
   6460  1.1  christos 	    {
   6461  1.1  christos 	      *p++ = DW_CFA_advance_loc2;
   6462  1.1  christos 	      bfd_put_16 (htab->elf.dynobj, adv, p);
   6463  1.1  christos 	      p += 2;
   6464  1.1  christos 	    }
   6465  1.1  christos 	  else
   6466  1.1  christos 	    {
   6467  1.1  christos 	      *p++ = DW_CFA_advance_loc4;
   6468  1.1  christos 	      bfd_put_32 (htab->elf.dynobj, adv, p);
   6469  1.1  christos 	      p += 4;
   6470  1.1  christos 	    }
   6471  1.1  christos 	  *p++ = DW_CFA_register;
   6472  1.1  christos 	  *p++ = 65;
   6473  1.1  christos 	  p++;
   6474  1.1  christos 	  *p++ = DW_CFA_advance_loc + 4;
   6475  1.1  christos 	  *p++ = DW_CFA_restore_extended;
   6476  1.1  christos 	  *p++ = 65;
   6477  1.1  christos 	}
   6478  1.1  christos       BFD_ASSERT ((bfd_vma) ((p + 3 - htab->glink_eh_frame->contents) & -4)
   6479  1.1  christos 		  == htab->glink_eh_frame->size);
   6480  1.1  christos     }
   6481  1.1  christos 
   6482  1.1  christos   return TRUE;
   6483  1.1  christos }
   6484  1.1  christos 
   6485  1.1  christos /* Return TRUE if symbol should be hashed in the `.gnu.hash' section.  */
   6486  1.1  christos 
   6487  1.1  christos static bfd_boolean
   6488  1.1  christos ppc_elf_hash_symbol (struct elf_link_hash_entry *h)
   6489  1.1  christos {
   6490  1.1  christos   if (h->plt.plist != NULL
   6491  1.1  christos       && !h->def_regular
   6492  1.1  christos       && (!h->pointer_equality_needed
   6493  1.1  christos 	  || !h->ref_regular_nonweak))
   6494  1.1  christos     return FALSE;
   6495  1.1  christos 
   6496  1.1  christos   return _bfd_elf_hash_symbol (h);
   6497  1.1  christos }
   6498  1.1  christos 
   6499  1.1  christos #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
   6501  1.1  christos 
   6502  1.1  christos /* Relaxation trampolines.  r12 is available for clobbering (r11, is
   6503  1.1  christos    used for some functions that are allowed to break the ABI).  */
   6504  1.1  christos static const int shared_stub_entry[] =
   6505  1.1  christos   {
   6506  1.1  christos     0x7c0802a6, /* mflr 0 */
   6507  1.1  christos     0x429f0005, /* bcl 20, 31, .Lxxx */
   6508  1.1  christos     0x7d8802a6, /* mflr 12 */
   6509  1.1  christos     0x3d8c0000, /* addis 12, 12, (xxx-.Lxxx)@ha */
   6510  1.1  christos     0x398c0008, /* addi 12, 12, (xxx-.Lxxx)@l */
   6511  1.1  christos     0x7c0803a6, /* mtlr 0 */
   6512  1.1  christos     0x7d8903a6, /* mtctr 12 */
   6513  1.1  christos     0x4e800420, /* bctr */
   6514  1.1  christos   };
   6515  1.1  christos 
   6516  1.1  christos static const int stub_entry[] =
   6517  1.1  christos   {
   6518  1.1  christos     0x3d800000, /* lis 12,xxx@ha */
   6519  1.1  christos     0x398c0000, /* addi 12,12,xxx@l */
   6520  1.1  christos     0x7d8903a6, /* mtctr 12 */
   6521  1.1  christos     0x4e800420, /* bctr */
   6522  1.1  christos   };
   6523  1.1  christos 
   6524  1.1  christos static bfd_boolean
   6525  1.1  christos ppc_elf_relax_section (bfd *abfd,
   6526  1.1  christos 		       asection *isec,
   6527  1.1  christos 		       struct bfd_link_info *link_info,
   6528  1.1  christos 		       bfd_boolean *again)
   6529  1.1  christos {
   6530  1.1  christos   struct one_fixup
   6531  1.1  christos   {
   6532  1.1  christos     struct one_fixup *next;
   6533  1.1  christos     asection *tsec;
   6534  1.1  christos     /* Final link, can use the symbol offset.  For a
   6535  1.1  christos        relocatable link we use the symbol's index.  */
   6536  1.1  christos     bfd_vma toff;
   6537  1.1  christos     bfd_vma trampoff;
   6538  1.1  christos   };
   6539  1.1  christos 
   6540  1.1  christos   Elf_Internal_Shdr *symtab_hdr;
   6541  1.1  christos   bfd_byte *contents = NULL;
   6542  1.1  christos   Elf_Internal_Sym *isymbuf = NULL;
   6543  1.1  christos   Elf_Internal_Rela *internal_relocs = NULL;
   6544  1.1  christos   Elf_Internal_Rela *irel, *irelend;
   6545  1.1  christos   struct one_fixup *fixups = NULL;
   6546  1.1  christos   unsigned changes = 0;
   6547  1.1  christos   struct ppc_elf_link_hash_table *htab;
   6548  1.1  christos   bfd_size_type trampoff;
   6549  1.1  christos   asection *got2;
   6550  1.1  christos   bfd_boolean maybe_pasted;
   6551  1.1  christos 
   6552  1.1  christos   *again = FALSE;
   6553  1.1  christos 
   6554  1.1  christos   /* Nothing to do if there are no relocations, and no need to do
   6555  1.1  christos      anything with non-alloc or non-code sections.  */
   6556  1.1  christos   if ((isec->flags & SEC_ALLOC) == 0
   6557  1.1  christos       || (isec->flags & SEC_CODE) == 0
   6558  1.1  christos       || (isec->flags & SEC_RELOC) == 0
   6559  1.1  christos       || isec->reloc_count == 0)
   6560  1.1  christos     return TRUE;
   6561  1.1  christos 
   6562  1.1  christos   /* We cannot represent the required PIC relocs in the output, so don't
   6563  1.1  christos      do anything.  The linker doesn't support mixing -shared and -r
   6564  1.1  christos      anyway.  */
   6565  1.1  christos   if (link_info->relocatable && link_info->shared)
   6566  1.1  christos      return TRUE;
   6567  1.1  christos 
   6568  1.1  christos   trampoff = (isec->size + 3) & (bfd_vma) -4;
   6569  1.1  christos   maybe_pasted = (strcmp (isec->output_section->name, ".init") == 0
   6570  1.1  christos 		  || strcmp (isec->output_section->name, ".fini") == 0);
   6571  1.1  christos   /* Space for a branch around any trampolines.  */
   6572  1.1  christos   if (maybe_pasted)
   6573  1.1  christos     trampoff += 4;
   6574  1.1  christos 
   6575  1.1  christos   symtab_hdr = &elf_symtab_hdr (abfd);
   6576  1.1  christos 
   6577  1.1  christos   /* Get a copy of the native relocations.  */
   6578  1.1  christos   internal_relocs = _bfd_elf_link_read_relocs (abfd, isec, NULL, NULL,
   6579  1.1  christos 					       link_info->keep_memory);
   6580  1.1  christos   if (internal_relocs == NULL)
   6581  1.1  christos     goto error_return;
   6582  1.1  christos 
   6583  1.1  christos   htab = ppc_elf_hash_table (link_info);
   6584  1.1  christos   got2 = bfd_get_section_by_name (abfd, ".got2");
   6585  1.1  christos 
   6586  1.1  christos   irelend = internal_relocs + isec->reloc_count;
   6587  1.1  christos   for (irel = internal_relocs; irel < irelend; irel++)
   6588  1.1  christos     {
   6589  1.1  christos       unsigned long r_type = ELF32_R_TYPE (irel->r_info);
   6590  1.1  christos       bfd_vma toff, roff;
   6591  1.1  christos       asection *tsec;
   6592  1.1  christos       struct one_fixup *f;
   6593  1.1  christos       size_t insn_offset = 0;
   6594  1.1  christos       bfd_vma max_branch_offset, val;
   6595  1.1  christos       bfd_byte *hit_addr;
   6596  1.1  christos       unsigned long t0;
   6597  1.1  christos       struct elf_link_hash_entry *h;
   6598  1.1  christos       struct plt_entry **plist;
   6599  1.1  christos       unsigned char sym_type;
   6600  1.1  christos 
   6601  1.1  christos       switch (r_type)
   6602  1.1  christos 	{
   6603  1.1  christos 	case R_PPC_REL24:
   6604  1.1  christos 	case R_PPC_LOCAL24PC:
   6605  1.1  christos 	case R_PPC_PLTREL24:
   6606  1.1  christos 	  max_branch_offset = 1 << 25;
   6607  1.1  christos 	  break;
   6608  1.1  christos 
   6609  1.1  christos 	case R_PPC_REL14:
   6610  1.1  christos 	case R_PPC_REL14_BRTAKEN:
   6611  1.1  christos 	case R_PPC_REL14_BRNTAKEN:
   6612  1.1  christos 	  max_branch_offset = 1 << 15;
   6613  1.1  christos 	  break;
   6614  1.1  christos 
   6615  1.1  christos 	default:
   6616  1.1  christos 	  continue;
   6617  1.1  christos 	}
   6618  1.1  christos 
   6619  1.1  christos       /* Get the value of the symbol referred to by the reloc.  */
   6620  1.1  christos       h = NULL;
   6621  1.1  christos       if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
   6622  1.1  christos 	{
   6623  1.1  christos 	  /* A local symbol.  */
   6624  1.1  christos 	  Elf_Internal_Sym *isym;
   6625  1.1  christos 
   6626  1.1  christos 	  /* Read this BFD's local symbols.  */
   6627  1.1  christos 	  if (isymbuf == NULL)
   6628  1.1  christos 	    {
   6629  1.1  christos 	      isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
   6630  1.1  christos 	      if (isymbuf == NULL)
   6631  1.1  christos 		isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
   6632  1.1  christos 						symtab_hdr->sh_info, 0,
   6633  1.1  christos 						NULL, NULL, NULL);
   6634  1.1  christos 	      if (isymbuf == 0)
   6635  1.1  christos 		goto error_return;
   6636  1.1  christos 	    }
   6637  1.1  christos 	  isym = isymbuf + ELF32_R_SYM (irel->r_info);
   6638  1.1  christos 	  if (isym->st_shndx == SHN_UNDEF)
   6639  1.1  christos 	    tsec = bfd_und_section_ptr;
   6640  1.1  christos 	  else if (isym->st_shndx == SHN_ABS)
   6641  1.1  christos 	    tsec = bfd_abs_section_ptr;
   6642  1.1  christos 	  else if (isym->st_shndx == SHN_COMMON)
   6643  1.1  christos 	    tsec = bfd_com_section_ptr;
   6644  1.1  christos 	  else
   6645  1.1  christos 	    tsec = bfd_section_from_elf_index (abfd, isym->st_shndx);
   6646  1.1  christos 
   6647  1.1  christos 	  toff = isym->st_value;
   6648  1.1  christos 	  sym_type = ELF_ST_TYPE (isym->st_info);
   6649  1.1  christos 	}
   6650  1.1  christos       else
   6651  1.1  christos 	{
   6652  1.1  christos 	  /* Global symbol handling.  */
   6653  1.1  christos 	  unsigned long indx;
   6654  1.1  christos 
   6655  1.1  christos 	  indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
   6656  1.1  christos 	  h = elf_sym_hashes (abfd)[indx];
   6657  1.1  christos 
   6658  1.1  christos 	  while (h->root.type == bfd_link_hash_indirect
   6659  1.1  christos 		 || h->root.type == bfd_link_hash_warning)
   6660  1.1  christos 	    h = (struct elf_link_hash_entry *) h->root.u.i.link;
   6661  1.1  christos 
   6662  1.1  christos 	  if (h->root.type == bfd_link_hash_defined
   6663  1.1  christos 	      || h->root.type == bfd_link_hash_defweak)
   6664  1.1  christos 	    {
   6665  1.1  christos 	      tsec = h->root.u.def.section;
   6666  1.1  christos 	      toff = h->root.u.def.value;
   6667  1.1  christos 	    }
   6668  1.1  christos 	  else if (h->root.type == bfd_link_hash_undefined
   6669  1.1  christos 		   || h->root.type == bfd_link_hash_undefweak)
   6670  1.1  christos 	    {
   6671  1.1  christos 	      tsec = bfd_und_section_ptr;
   6672  1.1  christos 	      toff = link_info->relocatable ? indx : 0;
   6673  1.1  christos 	    }
   6674  1.1  christos 	  else
   6675  1.1  christos 	    continue;
   6676  1.1  christos 
   6677  1.1  christos 	  sym_type = h->type;
   6678  1.1  christos 	}
   6679  1.1  christos 
   6680  1.1  christos       /* The condition here under which we call find_plt_ent must
   6681  1.1  christos 	 match that in relocate_section.  If we call find_plt_ent here
   6682  1.1  christos 	 but not in relocate_section, or vice versa, then the branch
   6683  1.1  christos 	 destination used here may be incorrect.  */
   6684  1.1  christos       plist = NULL;
   6685  1.1  christos       if (h != NULL)
   6686  1.1  christos 	{
   6687  1.1  christos 	  /* We know is_branch_reloc (r_type) is true.  */
   6688  1.1  christos 	  if (h->type == STT_GNU_IFUNC
   6689  1.1  christos 	      || r_type == R_PPC_PLTREL24)
   6690  1.1  christos 	    plist = &h->plt.plist;
   6691  1.1  christos 	}
   6692  1.1  christos       else if (sym_type == STT_GNU_IFUNC
   6693  1.1  christos 	       && elf_local_got_offsets (abfd) != NULL)
   6694  1.1  christos 	{
   6695  1.1  christos 	  bfd_vma *local_got_offsets = elf_local_got_offsets (abfd);
   6696  1.1  christos 	  struct plt_entry **local_plt = (struct plt_entry **)
   6697  1.1  christos 	    (local_got_offsets + symtab_hdr->sh_info);
   6698  1.1  christos 	  plist = local_plt + ELF32_R_SYM (irel->r_info);
   6699  1.1  christos 	}
   6700  1.1  christos       if (plist != NULL)
   6701  1.1  christos 	{
   6702  1.1  christos 	  bfd_vma addend = 0;
   6703  1.1  christos 	  struct plt_entry *ent;
   6704  1.1  christos 
   6705  1.1  christos 	  if (r_type == R_PPC_PLTREL24 && link_info->shared)
   6706  1.1  christos 	    addend = irel->r_addend;
   6707  1.1  christos 	  ent = find_plt_ent (plist, got2, addend);
   6708  1.1  christos 	  if (ent != NULL)
   6709  1.1  christos 	    {
   6710  1.1  christos 	      if (htab->plt_type == PLT_NEW
   6711  1.1  christos 		  || h == NULL
   6712  1.1  christos 		  || !htab->elf.dynamic_sections_created
   6713  1.1  christos 		  || h->dynindx == -1)
   6714  1.1  christos 		{
   6715  1.1  christos 		  tsec = htab->glink;
   6716  1.1  christos 		  toff = ent->glink_offset;
   6717  1.1  christos 		}
   6718  1.1  christos 	      else
   6719  1.1  christos 		{
   6720  1.1  christos 		  tsec = htab->plt;
   6721  1.1  christos 		  toff = ent->plt.offset;
   6722  1.1  christos 		}
   6723  1.1  christos 	    }
   6724  1.1  christos 	}
   6725  1.1  christos 
   6726  1.1  christos       /* If the branch and target are in the same section, you have
   6727  1.1  christos 	 no hope of adding stubs.  We'll error out later should the
   6728  1.1  christos 	 branch overflow.  */
   6729  1.1  christos       if (tsec == isec)
   6730  1.1  christos 	continue;
   6731  1.1  christos 
   6732  1.1  christos       /* There probably isn't any reason to handle symbols in
   6733  1.1  christos 	 SEC_MERGE sections;  SEC_MERGE doesn't seem a likely
   6734  1.1  christos 	 attribute for a code section, and we are only looking at
   6735  1.1  christos 	 branches.  However, implement it correctly here as a
   6736  1.1  christos 	 reference for other target relax_section functions.  */
   6737  1.1  christos       if (0 && tsec->sec_info_type == SEC_INFO_TYPE_MERGE)
   6738  1.1  christos 	{
   6739  1.1  christos 	  /* At this stage in linking, no SEC_MERGE symbol has been
   6740  1.1  christos 	     adjusted, so all references to such symbols need to be
   6741  1.1  christos 	     passed through _bfd_merged_section_offset.  (Later, in
   6742  1.1  christos 	     relocate_section, all SEC_MERGE symbols *except* for
   6743  1.1  christos 	     section symbols have been adjusted.)
   6744  1.1  christos 
   6745  1.1  christos 	     gas may reduce relocations against symbols in SEC_MERGE
   6746  1.1  christos 	     sections to a relocation against the section symbol when
   6747  1.1  christos 	     the original addend was zero.  When the reloc is against
   6748  1.1  christos 	     a section symbol we should include the addend in the
   6749  1.1  christos 	     offset passed to _bfd_merged_section_offset, since the
   6750  1.1  christos 	     location of interest is the original symbol.  On the
   6751  1.1  christos 	     other hand, an access to "sym+addend" where "sym" is not
   6752  1.1  christos 	     a section symbol should not include the addend;  Such an
   6753  1.1  christos 	     access is presumed to be an offset from "sym";  The
   6754  1.1  christos 	     location of interest is just "sym".  */
   6755  1.1  christos 	  if (sym_type == STT_SECTION)
   6756  1.1  christos 	    toff += irel->r_addend;
   6757  1.1  christos 
   6758  1.1  christos 	  toff = _bfd_merged_section_offset (abfd, &tsec,
   6759  1.1  christos 					     elf_section_data (tsec)->sec_info,
   6760  1.1  christos 					     toff);
   6761  1.1  christos 
   6762  1.1  christos 	  if (sym_type != STT_SECTION)
   6763  1.1  christos 	    toff += irel->r_addend;
   6764  1.1  christos 	}
   6765  1.1  christos       /* PLTREL24 addends are special.  */
   6766  1.1  christos       else if (r_type != R_PPC_PLTREL24)
   6767  1.1  christos 	toff += irel->r_addend;
   6768  1.1  christos 
   6769  1.1  christos       /* Attempted -shared link of non-pic code loses.  */
   6770  1.1  christos       if (tsec->output_section == NULL)
   6771  1.1  christos 	continue;
   6772  1.1  christos 
   6773  1.1  christos       roff = irel->r_offset;
   6774  1.1  christos 
   6775  1.1  christos       /* If the branch is in range, no need to do anything.  */
   6776  1.1  christos       if (tsec != bfd_und_section_ptr
   6777  1.1  christos 	  && (!link_info->relocatable
   6778  1.1  christos 	      /* A relocatable link may have sections moved during
   6779  1.1  christos 		 final link, so do not presume they remain in range.  */
   6780  1.1  christos 	      || tsec->output_section == isec->output_section))
   6781  1.1  christos 	{
   6782  1.1  christos 	  bfd_vma symaddr, reladdr;
   6783  1.1  christos 
   6784  1.1  christos 	  symaddr = tsec->output_section->vma + tsec->output_offset + toff;
   6785  1.1  christos 	  reladdr = isec->output_section->vma + isec->output_offset + roff;
   6786  1.1  christos 	  if (symaddr - reladdr + max_branch_offset < 2 * max_branch_offset)
   6787  1.1  christos 	    continue;
   6788  1.1  christos 	}
   6789  1.1  christos 
   6790  1.1  christos       /* Look for an existing fixup to this address.  */
   6791  1.1  christos       for (f = fixups; f ; f = f->next)
   6792  1.1  christos 	if (f->tsec == tsec && f->toff == toff)
   6793  1.1  christos 	  break;
   6794  1.1  christos 
   6795  1.1  christos       if (f == NULL)
   6796  1.1  christos 	{
   6797  1.1  christos 	  size_t size;
   6798  1.1  christos 	  unsigned long stub_rtype;
   6799  1.1  christos 
   6800  1.1  christos 	  val = trampoff - roff;
   6801  1.1  christos 	  if (val >= max_branch_offset)
   6802  1.1  christos 	    /* Oh dear, we can't reach a trampoline.  Don't try to add
   6803  1.1  christos 	       one.  We'll report an error later.  */
   6804  1.1  christos 	    continue;
   6805  1.1  christos 
   6806  1.1  christos 	  if (link_info->shared)
   6807  1.1  christos 	    {
   6808  1.1  christos 	      size = 4 * ARRAY_SIZE (shared_stub_entry);
   6809  1.1  christos 	      insn_offset = 12;
   6810  1.1  christos 	    }
   6811  1.1  christos 	  else
   6812  1.1  christos 	    {
   6813  1.1  christos 	      size = 4 * ARRAY_SIZE (stub_entry);
   6814  1.1  christos 	      insn_offset = 0;
   6815  1.1  christos 	    }
   6816  1.1  christos 	  stub_rtype = R_PPC_RELAX;
   6817  1.1  christos 	  if (tsec == htab->plt
   6818  1.1  christos 	      || tsec == htab->glink)
   6819  1.1  christos 	    {
   6820  1.1  christos 	      stub_rtype = R_PPC_RELAX_PLT;
   6821  1.1  christos 	      if (r_type == R_PPC_PLTREL24)
   6822  1.1  christos 		stub_rtype = R_PPC_RELAX_PLTREL24;
   6823  1.1  christos 	    }
   6824  1.1  christos 
   6825  1.1  christos 	  /* Hijack the old relocation.  Since we need two
   6826  1.1  christos 	     relocations for this use a "composite" reloc.  */
   6827  1.1  christos 	  irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
   6828  1.1  christos 				       stub_rtype);
   6829  1.1  christos 	  irel->r_offset = trampoff + insn_offset;
   6830  1.1  christos 	  if (r_type == R_PPC_PLTREL24
   6831  1.1  christos 	      && stub_rtype != R_PPC_RELAX_PLTREL24)
   6832  1.1  christos 	    irel->r_addend = 0;
   6833  1.1  christos 
   6834  1.1  christos 	  /* Record the fixup so we don't do it again this section.  */
   6835  1.1  christos 	  f = bfd_malloc (sizeof (*f));
   6836  1.1  christos 	  f->next = fixups;
   6837  1.1  christos 	  f->tsec = tsec;
   6838  1.1  christos 	  f->toff = toff;
   6839  1.1  christos 	  f->trampoff = trampoff;
   6840  1.1  christos 	  fixups = f;
   6841  1.1  christos 
   6842  1.1  christos 	  trampoff += size;
   6843  1.1  christos 	  changes++;
   6844  1.1  christos 	}
   6845  1.1  christos       else
   6846  1.1  christos 	{
   6847  1.1  christos 	  val = f->trampoff - roff;
   6848  1.1  christos 	  if (val >= max_branch_offset)
   6849  1.1  christos 	    continue;
   6850  1.1  christos 
   6851  1.1  christos 	  /* Nop out the reloc, since we're finalizing things here.  */
   6852  1.1  christos 	  irel->r_info = ELF32_R_INFO (0, R_PPC_NONE);
   6853  1.1  christos 	}
   6854  1.1  christos 
   6855  1.1  christos       /* Get the section contents.  */
   6856  1.1  christos       if (contents == NULL)
   6857  1.1  christos 	{
   6858  1.1  christos 	  /* Get cached copy if it exists.  */
   6859  1.1  christos 	  if (elf_section_data (isec)->this_hdr.contents != NULL)
   6860  1.1  christos 	    contents = elf_section_data (isec)->this_hdr.contents;
   6861  1.1  christos 	  else
   6862  1.1  christos 	    {
   6863  1.1  christos 	      /* Go get them off disk.  */
   6864  1.1  christos 	      if (!bfd_malloc_and_get_section (abfd, isec, &contents))
   6865  1.1  christos 		goto error_return;
   6866  1.1  christos 	    }
   6867  1.1  christos 	}
   6868  1.1  christos 
   6869  1.1  christos       /* Fix up the existing branch to hit the trampoline.  */
   6870  1.1  christos       hit_addr = contents + roff;
   6871  1.1  christos       switch (r_type)
   6872  1.1  christos 	{
   6873  1.1  christos 	case R_PPC_REL24:
   6874  1.1  christos 	case R_PPC_LOCAL24PC:
   6875  1.1  christos 	case R_PPC_PLTREL24:
   6876  1.1  christos 	  t0 = bfd_get_32 (abfd, hit_addr);
   6877  1.1  christos 	  t0 &= ~0x3fffffc;
   6878  1.1  christos 	  t0 |= val & 0x3fffffc;
   6879  1.1  christos 	  bfd_put_32 (abfd, t0, hit_addr);
   6880  1.1  christos 	  break;
   6881  1.1  christos 
   6882  1.1  christos 	case R_PPC_REL14:
   6883  1.1  christos 	case R_PPC_REL14_BRTAKEN:
   6884  1.1  christos 	case R_PPC_REL14_BRNTAKEN:
   6885  1.1  christos 	  t0 = bfd_get_32 (abfd, hit_addr);
   6886  1.1  christos 	  t0 &= ~0xfffc;
   6887  1.1  christos 	  t0 |= val & 0xfffc;
   6888  1.1  christos 	  bfd_put_32 (abfd, t0, hit_addr);
   6889  1.1  christos 	  break;
   6890  1.1  christos 	}
   6891  1.1  christos     }
   6892  1.1  christos 
   6893  1.1  christos   /* Write out the trampolines.  */
   6894  1.1  christos   if (fixups != NULL)
   6895  1.1  christos     {
   6896  1.1  christos       const int *stub;
   6897  1.1  christos       bfd_byte *dest;
   6898  1.1  christos       int i, size;
   6899  1.1  christos 
   6900  1.1  christos       do
   6901  1.1  christos 	{
   6902  1.1  christos 	  struct one_fixup *f = fixups;
   6903  1.1  christos 	  fixups = fixups->next;
   6904  1.1  christos 	  free (f);
   6905  1.1  christos 	}
   6906  1.1  christos       while (fixups);
   6907  1.1  christos 
   6908  1.1  christos       contents = bfd_realloc_or_free (contents, trampoff);
   6909  1.1  christos       if (contents == NULL)
   6910  1.1  christos 	goto error_return;
   6911  1.1  christos 
   6912  1.1  christos       isec->size = (isec->size + 3) & (bfd_vma) -4;
   6913  1.1  christos       dest = contents + isec->size;
   6914  1.1  christos       /* Branch around the trampolines.  */
   6915  1.1  christos       if (maybe_pasted)
   6916  1.1  christos 	{
   6917  1.1  christos 	  bfd_vma val = B + trampoff - isec->size;
   6918  1.1  christos 	  bfd_put_32 (abfd, val, dest);
   6919  1.1  christos 	  dest += 4;
   6920  1.1  christos 	}
   6921  1.1  christos       isec->size = trampoff;
   6922  1.1  christos 
   6923  1.1  christos       if (link_info->shared)
   6924  1.1  christos 	{
   6925  1.1  christos 	  stub = shared_stub_entry;
   6926  1.1  christos 	  size = ARRAY_SIZE (shared_stub_entry);
   6927  1.1  christos 	}
   6928  1.1  christos       else
   6929  1.1  christos 	{
   6930  1.1  christos 	  stub = stub_entry;
   6931  1.1  christos 	  size = ARRAY_SIZE (stub_entry);
   6932  1.1  christos 	}
   6933  1.1  christos 
   6934  1.1  christos       i = 0;
   6935  1.1  christos       while (dest < contents + trampoff)
   6936  1.1  christos 	{
   6937  1.1  christos 	  bfd_put_32 (abfd, stub[i], dest);
   6938  1.1  christos 	  i++;
   6939  1.1  christos 	  if (i == size)
   6940  1.1  christos 	    i = 0;
   6941  1.1  christos 	  dest += 4;
   6942  1.1  christos 	}
   6943  1.1  christos       BFD_ASSERT (i == 0);
   6944  1.1  christos     }
   6945  1.1  christos 
   6946  1.1  christos   if (isymbuf != NULL
   6947  1.1  christos       && symtab_hdr->contents != (unsigned char *) isymbuf)
   6948  1.1  christos     {
   6949  1.1  christos       if (! link_info->keep_memory)
   6950  1.1  christos 	free (isymbuf);
   6951  1.1  christos       else
   6952  1.1  christos 	{
   6953  1.1  christos 	  /* Cache the symbols for elf_link_input_bfd.  */
   6954  1.1  christos 	  symtab_hdr->contents = (unsigned char *) isymbuf;
   6955  1.1  christos 	}
   6956  1.1  christos     }
   6957  1.1  christos 
   6958  1.1  christos   if (contents != NULL
   6959  1.1  christos       && elf_section_data (isec)->this_hdr.contents != contents)
   6960  1.1  christos     {
   6961  1.1  christos       if (!changes && !link_info->keep_memory)
   6962  1.1  christos 	free (contents);
   6963  1.1  christos       else
   6964  1.1  christos 	{
   6965  1.1  christos 	  /* Cache the section contents for elf_link_input_bfd.  */
   6966  1.1  christos 	  elf_section_data (isec)->this_hdr.contents = contents;
   6967  1.1  christos 	}
   6968  1.1  christos     }
   6969  1.1  christos 
   6970  1.1  christos   if (changes != 0)
   6971  1.1  christos     {
   6972  1.1  christos       /* Append sufficient NOP relocs so we can write out relocation
   6973  1.1  christos 	 information for the trampolines.  */
   6974  1.1  christos       Elf_Internal_Shdr *rel_hdr;
   6975  1.1  christos       Elf_Internal_Rela *new_relocs = bfd_malloc ((changes + isec->reloc_count)
   6976  1.1  christos 						  * sizeof (*new_relocs));
   6977  1.1  christos       unsigned ix;
   6978  1.1  christos 
   6979  1.1  christos       if (!new_relocs)
   6980  1.1  christos 	goto error_return;
   6981  1.1  christos       memcpy (new_relocs, internal_relocs,
   6982  1.1  christos 	      isec->reloc_count * sizeof (*new_relocs));
   6983  1.1  christos       for (ix = changes; ix--;)
   6984  1.1  christos 	{
   6985  1.1  christos 	  irel = new_relocs + ix + isec->reloc_count;
   6986  1.1  christos 
   6987  1.1  christos 	  irel->r_info = ELF32_R_INFO (0, R_PPC_NONE);
   6988  1.1  christos 	}
   6989  1.1  christos       if (internal_relocs != elf_section_data (isec)->relocs)
   6990  1.1  christos 	free (internal_relocs);
   6991  1.1  christos       elf_section_data (isec)->relocs = new_relocs;
   6992  1.1  christos       isec->reloc_count += changes;
   6993  1.1  christos       rel_hdr = _bfd_elf_single_rel_hdr (isec);
   6994  1.1  christos       rel_hdr->sh_size += changes * rel_hdr->sh_entsize;
   6995  1.1  christos     }
   6996  1.1  christos   else if (elf_section_data (isec)->relocs != internal_relocs)
   6997  1.1  christos     free (internal_relocs);
   6998  1.1  christos 
   6999  1.1  christos   *again = changes != 0;
   7000  1.1  christos   if (!*again && link_info->relocatable)
   7001  1.1  christos     {
   7002  1.1  christos       /* Convert the internal relax relocs to external form.  */
   7003  1.1  christos       for (irel = internal_relocs; irel < irelend; irel++)
   7004  1.1  christos 	if (ELF32_R_TYPE (irel->r_info) == R_PPC_RELAX)
   7005  1.1  christos 	  {
   7006  1.1  christos 	    unsigned long r_symndx = ELF32_R_SYM (irel->r_info);
   7007  1.1  christos 
   7008  1.1  christos 	    /* Rewrite the reloc and convert one of the trailing nop
   7009  1.1  christos 	       relocs to describe this relocation.  */
   7010  1.1  christos 	    BFD_ASSERT (ELF32_R_TYPE (irelend[-1].r_info) == R_PPC_NONE);
   7011  1.1  christos 	    /* The relocs are at the bottom 2 bytes */
   7012  1.1  christos 	    irel[0].r_offset += 2;
   7013  1.1  christos 	    memmove (irel + 1, irel, (irelend - irel - 1) * sizeof (*irel));
   7014  1.1  christos 	    irel[0].r_info = ELF32_R_INFO (r_symndx, R_PPC_ADDR16_HA);
   7015  1.1  christos 	    irel[1].r_offset += 4;
   7016  1.1  christos 	    irel[1].r_info = ELF32_R_INFO (r_symndx, R_PPC_ADDR16_LO);
   7017  1.1  christos 	    irel++;
   7018  1.1  christos 	  }
   7019  1.1  christos     }
   7020  1.1  christos 
   7021  1.1  christos   return TRUE;
   7022  1.1  christos 
   7023  1.1  christos  error_return:
   7024  1.1  christos   if (isymbuf != NULL && (unsigned char *) isymbuf != symtab_hdr->contents)
   7025  1.1  christos     free (isymbuf);
   7026  1.1  christos   if (contents != NULL
   7027  1.1  christos       && elf_section_data (isec)->this_hdr.contents != contents)
   7028  1.1  christos     free (contents);
   7029  1.1  christos   if (internal_relocs != NULL
   7030  1.1  christos       && elf_section_data (isec)->relocs != internal_relocs)
   7031  1.1  christos     free (internal_relocs);
   7032  1.1  christos   return FALSE;
   7033  1.1  christos }
   7034  1.1  christos 
   7035  1.1  christos /* What to do when ld finds relocations against symbols defined in
   7037  1.1  christos    discarded sections.  */
   7038  1.1  christos 
   7039  1.1  christos static unsigned int
   7040  1.1  christos ppc_elf_action_discarded (asection *sec)
   7041  1.1  christos {
   7042  1.1  christos   if (strcmp (".fixup", sec->name) == 0)
   7043  1.1  christos     return 0;
   7044  1.1  christos 
   7045  1.1  christos   if (strcmp (".got2", sec->name) == 0)
   7046  1.1  christos     return 0;
   7047  1.1  christos 
   7048  1.1  christos   return _bfd_elf_default_action_discarded (sec);
   7049  1.1  christos }
   7050  1.1  christos 
   7051  1.1  christos /* Fill in the address for a pointer generated in a linker section.  */
   7053  1.1  christos 
   7054  1.1  christos static bfd_vma
   7055  1.1  christos elf_finish_pointer_linker_section (bfd *input_bfd,
   7056  1.1  christos 				   elf_linker_section_t *lsect,
   7057  1.1  christos 				   struct elf_link_hash_entry *h,
   7058  1.1  christos 				   bfd_vma relocation,
   7059  1.1  christos 				   const Elf_Internal_Rela *rel)
   7060  1.1  christos {
   7061  1.1  christos   elf_linker_section_pointers_t *linker_section_ptr;
   7062  1.1  christos 
   7063  1.1  christos   BFD_ASSERT (lsect != NULL);
   7064  1.1  christos 
   7065  1.1  christos   if (h != NULL)
   7066  1.1  christos     {
   7067  1.1  christos       /* Handle global symbol.  */
   7068  1.1  christos       struct ppc_elf_link_hash_entry *eh;
   7069  1.1  christos 
   7070  1.1  christos       eh = (struct ppc_elf_link_hash_entry *) h;
   7071  1.1  christos       BFD_ASSERT (eh->elf.def_regular);
   7072  1.1  christos       linker_section_ptr = eh->linker_section_pointer;
   7073  1.1  christos     }
   7074  1.1  christos   else
   7075  1.1  christos     {
   7076  1.1  christos       /* Handle local symbol.  */
   7077  1.1  christos       unsigned long r_symndx = ELF32_R_SYM (rel->r_info);
   7078  1.1  christos 
   7079  1.1  christos       BFD_ASSERT (is_ppc_elf (input_bfd));
   7080  1.1  christos       BFD_ASSERT (elf_local_ptr_offsets (input_bfd) != NULL);
   7081  1.1  christos       linker_section_ptr = elf_local_ptr_offsets (input_bfd)[r_symndx];
   7082  1.1  christos     }
   7083  1.1  christos 
   7084  1.1  christos   linker_section_ptr = elf_find_pointer_linker_section (linker_section_ptr,
   7085  1.1  christos 							rel->r_addend,
   7086  1.1  christos 							lsect);
   7087  1.1  christos   BFD_ASSERT (linker_section_ptr != NULL);
   7088  1.1  christos 
   7089  1.1  christos   /* Offset will always be a multiple of four, so use the bottom bit
   7090  1.1  christos      as a "written" flag.  */
   7091  1.1  christos   if ((linker_section_ptr->offset & 1) == 0)
   7092  1.1  christos     {
   7093  1.1  christos       bfd_put_32 (lsect->section->owner,
   7094  1.1  christos 		  relocation + linker_section_ptr->addend,
   7095  1.1  christos 		  lsect->section->contents + linker_section_ptr->offset);
   7096  1.1  christos       linker_section_ptr->offset += 1;
   7097  1.1  christos     }
   7098  1.1  christos 
   7099  1.1  christos   relocation = (lsect->section->output_section->vma
   7100  1.1  christos 		+ lsect->section->output_offset
   7101  1.1  christos 		+ linker_section_ptr->offset - 1
   7102  1.1  christos 		- SYM_VAL (lsect->sym));
   7103  1.1  christos 
   7104  1.1  christos #ifdef DEBUG
   7105  1.1  christos   fprintf (stderr,
   7106  1.1  christos 	   "Finish pointer in linker section %s, offset = %ld (0x%lx)\n",
   7107  1.1  christos 	   lsect->name, (long) relocation, (long) relocation);
   7108  1.1  christos #endif
   7109  1.1  christos 
   7110  1.1  christos   return relocation;
   7111  1.1  christos }
   7112  1.1  christos 
   7113  1.1  christos #define PPC_LO(v) ((v) & 0xffff)
   7114  1.1  christos #define PPC_HI(v) (((v) >> 16) & 0xffff)
   7115  1.1  christos #define PPC_HA(v) PPC_HI ((v) + 0x8000)
   7116  1.1  christos 
   7117  1.1  christos static void
   7118  1.1  christos write_glink_stub (struct plt_entry *ent, asection *plt_sec, unsigned char *p,
   7119  1.1  christos 		  struct bfd_link_info *info)
   7120  1.1  christos {
   7121  1.1  christos   struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
   7122  1.1  christos   bfd *output_bfd = info->output_bfd;
   7123  1.1  christos   bfd_vma plt;
   7124  1.1  christos 
   7125  1.1  christos   plt = ((ent->plt.offset & ~1)
   7126  1.1  christos 	 + plt_sec->output_section->vma
   7127  1.1  christos 	 + plt_sec->output_offset);
   7128  1.1  christos 
   7129  1.1  christos   if (info->shared)
   7130  1.1  christos     {
   7131  1.1  christos       bfd_vma got = 0;
   7132  1.1  christos 
   7133  1.1  christos       if (ent->addend >= 32768)
   7134  1.1  christos 	got = (ent->addend
   7135  1.1  christos 	       + ent->sec->output_section->vma
   7136  1.1  christos 	       + ent->sec->output_offset);
   7137  1.1  christos       else if (htab->elf.hgot != NULL)
   7138  1.1  christos 	got = SYM_VAL (htab->elf.hgot);
   7139  1.1  christos 
   7140  1.1  christos       plt -= got;
   7141  1.1  christos 
   7142  1.1  christos       if (plt + 0x8000 < 0x10000)
   7143  1.1  christos 	{
   7144  1.1  christos 	  bfd_put_32 (output_bfd, LWZ_11_30 + PPC_LO (plt), p);
   7145  1.1  christos 	  p += 4;
   7146  1.1  christos 	  bfd_put_32 (output_bfd, MTCTR_11, p);
   7147  1.1  christos 	  p += 4;
   7148  1.1  christos 	  bfd_put_32 (output_bfd, BCTR, p);
   7149  1.1  christos 	  p += 4;
   7150  1.1  christos 	  bfd_put_32 (output_bfd, NOP, p);
   7151  1.1  christos 	  p += 4;
   7152  1.1  christos 	}
   7153  1.1  christos       else
   7154  1.1  christos 	{
   7155  1.1  christos 	  bfd_put_32 (output_bfd, ADDIS_11_30 + PPC_HA (plt), p);
   7156  1.1  christos 	  p += 4;
   7157  1.1  christos 	  bfd_put_32 (output_bfd, LWZ_11_11 + PPC_LO (plt), p);
   7158  1.1  christos 	  p += 4;
   7159  1.1  christos 	  bfd_put_32 (output_bfd, MTCTR_11, p);
   7160  1.1  christos 	  p += 4;
   7161  1.1  christos 	  bfd_put_32 (output_bfd, BCTR, p);
   7162  1.1  christos 	  p += 4;
   7163  1.1  christos 	}
   7164  1.1  christos     }
   7165  1.1  christos   else
   7166  1.1  christos     {
   7167  1.1  christos       bfd_put_32 (output_bfd, LIS_11 + PPC_HA (plt), p);
   7168  1.1  christos       p += 4;
   7169  1.1  christos       bfd_put_32 (output_bfd, LWZ_11_11 + PPC_LO (plt), p);
   7170  1.1  christos       p += 4;
   7171  1.1  christos       bfd_put_32 (output_bfd, MTCTR_11, p);
   7172  1.1  christos       p += 4;
   7173  1.1  christos       bfd_put_32 (output_bfd, BCTR, p);
   7174  1.1  christos       p += 4;
   7175  1.1  christos     }
   7176  1.1  christos }
   7177  1.1  christos 
   7178  1.1  christos /* Return true if symbol is defined statically.  */
   7179  1.1  christos 
   7180  1.1  christos static bfd_boolean
   7181  1.1  christos is_static_defined (struct elf_link_hash_entry *h)
   7182  1.1  christos {
   7183  1.1  christos   return ((h->root.type == bfd_link_hash_defined
   7184  1.1  christos 	   || h->root.type == bfd_link_hash_defweak)
   7185  1.1  christos 	  && h->root.u.def.section != NULL
   7186  1.1  christos 	  && h->root.u.def.section->output_section != NULL);
   7187  1.1  christos }
   7188  1.1  christos 
   7189  1.1  christos /* If INSN is an opcode that may be used with an @tls operand, return
   7190  1.1  christos    the transformed insn for TLS optimisation, otherwise return 0.  If
   7191  1.1  christos    REG is non-zero only match an insn with RB or RA equal to REG.  */
   7192  1.1  christos 
   7193  1.1  christos unsigned int
   7194  1.1  christos _bfd_elf_ppc_at_tls_transform (unsigned int insn, unsigned int reg)
   7195  1.1  christos {
   7196  1.1  christos   unsigned int rtra;
   7197  1.1  christos 
   7198  1.1  christos   if ((insn & (0x3f << 26)) != 31 << 26)
   7199  1.1  christos     return 0;
   7200  1.1  christos 
   7201  1.1  christos   if (reg == 0 || ((insn >> 11) & 0x1f) == reg)
   7202  1.1  christos     rtra = insn & ((1 << 26) - (1 << 16));
   7203  1.1  christos   else if (((insn >> 16) & 0x1f) == reg)
   7204  1.1  christos     rtra = (insn & (0x1f << 21)) | ((insn & (0x1f << 11)) << 5);
   7205  1.1  christos   else
   7206  1.1  christos     return 0;
   7207  1.1  christos 
   7208  1.1  christos   if ((insn & (0x3ff << 1)) == 266 << 1)
   7209  1.1  christos     /* add -> addi.  */
   7210  1.1  christos     insn = 14 << 26;
   7211  1.1  christos   else if ((insn & (0x1f << 1)) == 23 << 1
   7212  1.1  christos 	   && ((insn & (0x1f << 6)) < 14 << 6
   7213  1.1  christos 	       || ((insn & (0x1f << 6)) >= 16 << 6
   7214  1.1  christos 		   && (insn & (0x1f << 6)) < 24 << 6)))
   7215  1.1  christos     /* load and store indexed -> dform.  */
   7216  1.1  christos     insn = (32 | ((insn >> 6) & 0x1f)) << 26;
   7217  1.1  christos   else if ((insn & (((0x1a << 5) | 0x1f) << 1)) == 21 << 1)
   7218  1.1  christos     /* ldx, ldux, stdx, stdux -> ld, ldu, std, stdu.  */
   7219  1.1  christos     insn = ((58 | ((insn >> 6) & 4)) << 26) | ((insn >> 6) & 1);
   7220  1.1  christos   else if ((insn & (((0x1f << 5) | 0x1f) << 1)) == 341 << 1)
   7221  1.1  christos     /* lwax -> lwa.  */
   7222  1.1  christos     insn = (58 << 26) | 2;
   7223  1.1  christos   else
   7224  1.1  christos     return 0;
   7225  1.1  christos   insn |= rtra;
   7226  1.1  christos   return insn;
   7227  1.1  christos }
   7228  1.1  christos 
   7229  1.1  christos /* If INSN is an opcode that may be used with an @tprel operand, return
   7230  1.1  christos    the transformed insn for an undefined weak symbol, ie. with the
   7231  1.1  christos    thread pointer REG operand removed.  Otherwise return 0.  */
   7232  1.1  christos 
   7233  1.1  christos unsigned int
   7234  1.1  christos _bfd_elf_ppc_at_tprel_transform (unsigned int insn, unsigned int reg)
   7235  1.1  christos {
   7236  1.1  christos   if ((insn & (0x1f << 16)) == reg << 16
   7237  1.1  christos       && ((insn & (0x3f << 26)) == 14u << 26 /* addi */
   7238  1.1  christos 	  || (insn & (0x3f << 26)) == 15u << 26 /* addis */
   7239  1.1  christos 	  || (insn & (0x3f << 26)) == 32u << 26 /* lwz */
   7240  1.1  christos 	  || (insn & (0x3f << 26)) == 34u << 26 /* lbz */
   7241  1.1  christos 	  || (insn & (0x3f << 26)) == 36u << 26 /* stw */
   7242  1.1  christos 	  || (insn & (0x3f << 26)) == 38u << 26 /* stb */
   7243  1.1  christos 	  || (insn & (0x3f << 26)) == 40u << 26 /* lhz */
   7244  1.1  christos 	  || (insn & (0x3f << 26)) == 42u << 26 /* lha */
   7245  1.1  christos 	  || (insn & (0x3f << 26)) == 44u << 26 /* sth */
   7246  1.1  christos 	  || (insn & (0x3f << 26)) == 46u << 26 /* lmw */
   7247  1.1  christos 	  || (insn & (0x3f << 26)) == 47u << 26 /* stmw */
   7248  1.1  christos 	  || (insn & (0x3f << 26)) == 48u << 26 /* lfs */
   7249  1.1  christos 	  || (insn & (0x3f << 26)) == 50u << 26 /* lfd */
   7250  1.1  christos 	  || (insn & (0x3f << 26)) == 52u << 26 /* stfs */
   7251  1.1  christos 	  || (insn & (0x3f << 26)) == 54u << 26 /* stfd */
   7252  1.1  christos 	  || ((insn & (0x3f << 26)) == 58u << 26 /* lwa,ld,lmd */
   7253  1.1  christos 	      && (insn & 3) != 1)
   7254  1.1  christos 	  || ((insn & (0x3f << 26)) == 62u << 26 /* std, stmd */
   7255  1.1  christos 	      && ((insn & 3) == 0 || (insn & 3) == 3))))
   7256  1.1  christos     {
   7257  1.1  christos       insn &= ~(0x1f << 16);
   7258  1.1  christos     }
   7259  1.1  christos   else if ((insn & (0x1f << 21)) == reg << 21
   7260  1.1  christos 	   && ((insn & (0x3e << 26)) == 24u << 26 /* ori, oris */
   7261  1.1  christos 	       || (insn & (0x3e << 26)) == 26u << 26 /* xori,xoris */
   7262  1.1  christos 	       || (insn & (0x3e << 26)) == 28u << 26 /* andi,andis */))
   7263  1.1  christos     {
   7264  1.1  christos       insn &= ~(0x1f << 21);
   7265  1.1  christos       insn |= (insn & (0x1f << 16)) << 5;
   7266  1.1  christos       if ((insn & (0x3e << 26)) == 26 << 26 /* xori,xoris */)
   7267  1.1  christos 	insn -= 2 >> 26;  /* convert to ori,oris */
   7268  1.1  christos     }
   7269  1.1  christos   else
   7270  1.1  christos     insn = 0;
   7271  1.1  christos   return insn;
   7272  1.1  christos }
   7273  1.1  christos 
   7274  1.1  christos static bfd_boolean
   7275  1.1  christos is_insn_ds_form (unsigned int insn)
   7276  1.1  christos {
   7277  1.1  christos   return ((insn & (0x3f << 26)) == 58u << 26 /* ld,ldu,lwa */
   7278  1.1  christos 	  || (insn & (0x3f << 26)) == 62u << 26 /* std,stdu,stq */
   7279  1.1  christos 	  || (insn & (0x3f << 26)) == 57u << 26 /* lfdp */
   7280  1.1  christos 	  || (insn & (0x3f << 26)) == 61u << 26 /* stfdp */);
   7281  1.1  christos }
   7282  1.1  christos 
   7283  1.1  christos static bfd_boolean
   7284  1.1  christos is_insn_dq_form (unsigned int insn)
   7285  1.1  christos {
   7286  1.1  christos   return (insn & (0x3f << 26)) == 56u << 26; /* lq */
   7287  1.1  christos }
   7288  1.1  christos 
   7289  1.1  christos /* The RELOCATE_SECTION function is called by the ELF backend linker
   7290  1.1  christos    to handle the relocations for a section.
   7291  1.1  christos 
   7292  1.1  christos    The relocs are always passed as Rela structures; if the section
   7293  1.1  christos    actually uses Rel structures, the r_addend field will always be
   7294  1.1  christos    zero.
   7295  1.1  christos 
   7296  1.1  christos    This function is responsible for adjust the section contents as
   7297  1.1  christos    necessary, and (if using Rela relocs and generating a
   7298  1.1  christos    relocatable output file) adjusting the reloc addend as
   7299  1.1  christos    necessary.
   7300  1.1  christos 
   7301  1.1  christos    This function does not have to worry about setting the reloc
   7302  1.1  christos    address or the reloc symbol index.
   7303  1.1  christos 
   7304  1.1  christos    LOCAL_SYMS is a pointer to the swapped in local symbols.
   7305  1.1  christos 
   7306  1.1  christos    LOCAL_SECTIONS is an array giving the section in the input file
   7307  1.1  christos    corresponding to the st_shndx field of each local symbol.
   7308  1.1  christos 
   7309  1.1  christos    The global hash table entry for the global symbols can be found
   7310  1.1  christos    via elf_sym_hashes (input_bfd).
   7311  1.1  christos 
   7312  1.1  christos    When generating relocatable output, this function must handle
   7313  1.1  christos    STB_LOCAL/STT_SECTION symbols specially.  The output symbol is
   7314  1.1  christos    going to be the section symbol corresponding to the output
   7315  1.1  christos    section, which means that the addend must be adjusted
   7316  1.1  christos    accordingly.  */
   7317  1.1  christos 
   7318  1.1  christos static bfd_boolean
   7319  1.1  christos ppc_elf_relocate_section (bfd *output_bfd,
   7320  1.1  christos 			  struct bfd_link_info *info,
   7321  1.1  christos 			  bfd *input_bfd,
   7322  1.1  christos 			  asection *input_section,
   7323  1.1  christos 			  bfd_byte *contents,
   7324  1.1  christos 			  Elf_Internal_Rela *relocs,
   7325  1.1  christos 			  Elf_Internal_Sym *local_syms,
   7326  1.1  christos 			  asection **local_sections)
   7327  1.1  christos {
   7328  1.1  christos   Elf_Internal_Shdr *symtab_hdr;
   7329  1.1  christos   struct elf_link_hash_entry **sym_hashes;
   7330  1.1  christos   struct ppc_elf_link_hash_table *htab;
   7331  1.1  christos   Elf_Internal_Rela *rel;
   7332  1.1  christos   Elf_Internal_Rela *relend;
   7333  1.1  christos   Elf_Internal_Rela outrel;
   7334  1.1  christos   asection *got2, *sreloc = NULL;
   7335  1.1  christos   bfd_vma *local_got_offsets;
   7336  1.1  christos   bfd_boolean ret = TRUE;
   7337  1.1  christos   bfd_vma d_offset = (bfd_big_endian (output_bfd) ? 2 : 0);
   7338  1.1  christos   bfd_boolean is_vxworks_tls;
   7339  1.1  christos 
   7340  1.1  christos #ifdef DEBUG
   7341  1.1  christos   _bfd_error_handler ("ppc_elf_relocate_section called for %B section %A, "
   7342  1.1  christos 		      "%ld relocations%s",
   7343  1.1  christos 		      input_bfd, input_section,
   7344  1.1  christos 		      (long) input_section->reloc_count,
   7345  1.1  christos 		      (info->relocatable) ? " (relocatable)" : "");
   7346  1.1  christos #endif
   7347  1.1  christos 
   7348  1.1  christos   got2 = bfd_get_section_by_name (input_bfd, ".got2");
   7349  1.1  christos 
   7350  1.1  christos   /* Initialize howto table if not already done.  */
   7351  1.1  christos   if (!ppc_elf_howto_table[R_PPC_ADDR32])
   7352  1.1  christos     ppc_elf_howto_init ();
   7353  1.1  christos 
   7354  1.1  christos   htab = ppc_elf_hash_table (info);
   7355  1.1  christos   local_got_offsets = elf_local_got_offsets (input_bfd);
   7356  1.1  christos   symtab_hdr = &elf_symtab_hdr (input_bfd);
   7357  1.1  christos   sym_hashes = elf_sym_hashes (input_bfd);
   7358  1.1  christos   /* We have to handle relocations in vxworks .tls_vars sections
   7359  1.1  christos      specially, because the dynamic loader is 'weird'.  */
   7360  1.1  christos   is_vxworks_tls = (htab->is_vxworks && info->shared
   7361  1.1  christos 		    && !strcmp (input_section->output_section->name,
   7362  1.1  christos 				".tls_vars"));
   7363  1.1  christos   rel = relocs;
   7364  1.1  christos   relend = relocs + input_section->reloc_count;
   7365  1.1  christos   for (; rel < relend; rel++)
   7366  1.1  christos     {
   7367  1.1  christos       enum elf_ppc_reloc_type r_type;
   7368  1.1  christos       bfd_vma addend;
   7369  1.1  christos       bfd_reloc_status_type r;
   7370  1.1  christos       Elf_Internal_Sym *sym;
   7371  1.1  christos       asection *sec;
   7372  1.1  christos       struct elf_link_hash_entry *h;
   7373  1.1  christos       const char *sym_name;
   7374  1.1  christos       reloc_howto_type *howto;
   7375  1.1  christos       unsigned long r_symndx;
   7376  1.1  christos       bfd_vma relocation;
   7377  1.1  christos       bfd_vma branch_bit, from;
   7378  1.1  christos       bfd_boolean unresolved_reloc;
   7379  1.1  christos       bfd_boolean warned;
   7380  1.1  christos       unsigned int tls_type, tls_mask, tls_gd;
   7381  1.1  christos       struct plt_entry **ifunc;
   7382  1.1  christos 
   7383  1.1  christos       r_type = ELF32_R_TYPE (rel->r_info);
   7384  1.1  christos       sym = NULL;
   7385  1.1  christos       sec = NULL;
   7386  1.1  christos       h = NULL;
   7387  1.1  christos       unresolved_reloc = FALSE;
   7388  1.1  christos       warned = FALSE;
   7389  1.1  christos       r_symndx = ELF32_R_SYM (rel->r_info);
   7390  1.1  christos 
   7391  1.1  christos       if (r_symndx < symtab_hdr->sh_info)
   7392  1.1  christos 	{
   7393  1.1  christos 	  sym = local_syms + r_symndx;
   7394  1.1  christos 	  sec = local_sections[r_symndx];
   7395  1.1  christos 	  sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym, sec);
   7396  1.1  christos 
   7397  1.1  christos 	  relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
   7398  1.1  christos 	}
   7399  1.1  christos       else
   7400  1.1  christos 	{
   7401  1.1  christos 	  RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
   7402  1.1  christos 				   r_symndx, symtab_hdr, sym_hashes,
   7403  1.1  christos 				   h, sec, relocation,
   7404  1.1  christos 				   unresolved_reloc, warned);
   7405  1.1  christos 
   7406  1.1  christos 	  sym_name = h->root.root.string;
   7407  1.1  christos 	}
   7408  1.1  christos 
   7409  1.1  christos       if (sec != NULL && discarded_section (sec))
   7410  1.1  christos 	{
   7411  1.1  christos 	  /* For relocs against symbols from removed linkonce sections,
   7412  1.1  christos 	     or sections discarded by a linker script, we just want the
   7413  1.1  christos 	     section contents zeroed.  Avoid any special processing.  */
   7414  1.1  christos 	  howto = NULL;
   7415  1.1  christos 	  if (r_type < R_PPC_max)
   7416  1.1  christos 	    howto = ppc_elf_howto_table[r_type];
   7417  1.1  christos 	  RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
   7418  1.1  christos 					   rel, 1, relend, howto, 0, contents);
   7419  1.1  christos 	}
   7420  1.1  christos 
   7421  1.1  christos       if (info->relocatable)
   7422  1.1  christos 	{
   7423  1.1  christos 	  if (got2 != NULL
   7424  1.1  christos 	      && r_type == R_PPC_PLTREL24
   7425  1.1  christos 	      && rel->r_addend != 0)
   7426  1.1  christos 	    {
   7427  1.1  christos 	      /* R_PPC_PLTREL24 is rather special.  If non-zero, the
   7428  1.1  christos 		 addend specifies the GOT pointer offset within .got2.  */
   7429  1.1  christos 	      rel->r_addend += got2->output_offset;
   7430  1.1  christos 	    }
   7431  1.1  christos 	  continue;
   7432  1.1  christos 	}
   7433  1.1  christos 
   7434  1.1  christos       /* TLS optimizations.  Replace instruction sequences and relocs
   7435  1.1  christos 	 based on information we collected in tls_optimize.  We edit
   7436  1.1  christos 	 RELOCS so that --emit-relocs will output something sensible
   7437  1.1  christos 	 for the final instruction stream.  */
   7438  1.1  christos       tls_mask = 0;
   7439  1.1  christos       tls_gd = 0;
   7440  1.1  christos       if (h != NULL)
   7441  1.1  christos 	tls_mask = ((struct ppc_elf_link_hash_entry *) h)->tls_mask;
   7442  1.1  christos       else if (local_got_offsets != NULL)
   7443  1.1  christos 	{
   7444  1.1  christos 	  struct plt_entry **local_plt;
   7445  1.1  christos 	  char *lgot_masks;
   7446  1.1  christos 	  local_plt
   7447  1.1  christos 	    = (struct plt_entry **) (local_got_offsets + symtab_hdr->sh_info);
   7448  1.1  christos 	  lgot_masks = (char *) (local_plt + symtab_hdr->sh_info);
   7449  1.1  christos 	  tls_mask = lgot_masks[r_symndx];
   7450  1.1  christos 	}
   7451  1.1  christos 
   7452  1.1  christos       /* Ensure reloc mapping code below stays sane.  */
   7453  1.1  christos       if ((R_PPC_GOT_TLSLD16 & 3)    != (R_PPC_GOT_TLSGD16 & 3)
   7454  1.1  christos 	  || (R_PPC_GOT_TLSLD16_LO & 3) != (R_PPC_GOT_TLSGD16_LO & 3)
   7455  1.1  christos 	  || (R_PPC_GOT_TLSLD16_HI & 3) != (R_PPC_GOT_TLSGD16_HI & 3)
   7456  1.1  christos 	  || (R_PPC_GOT_TLSLD16_HA & 3) != (R_PPC_GOT_TLSGD16_HA & 3)
   7457  1.1  christos 	  || (R_PPC_GOT_TLSLD16 & 3)    != (R_PPC_GOT_TPREL16 & 3)
   7458  1.1  christos 	  || (R_PPC_GOT_TLSLD16_LO & 3) != (R_PPC_GOT_TPREL16_LO & 3)
   7459  1.1  christos 	  || (R_PPC_GOT_TLSLD16_HI & 3) != (R_PPC_GOT_TPREL16_HI & 3)
   7460  1.1  christos 	  || (R_PPC_GOT_TLSLD16_HA & 3) != (R_PPC_GOT_TPREL16_HA & 3))
   7461  1.1  christos 	abort ();
   7462  1.1  christos       switch (r_type)
   7463  1.1  christos 	{
   7464  1.1  christos 	default:
   7465  1.1  christos 	  break;
   7466  1.1  christos 
   7467  1.1  christos 	case R_PPC_GOT_TPREL16:
   7468  1.1  christos 	case R_PPC_GOT_TPREL16_LO:
   7469  1.1  christos 	  if ((tls_mask & TLS_TLS) != 0
   7470  1.1  christos 	      && (tls_mask & TLS_TPREL) == 0)
   7471  1.1  christos 	    {
   7472  1.1  christos 	      bfd_vma insn;
   7473  1.1  christos 
   7474  1.1  christos 	      insn = bfd_get_32 (output_bfd, contents + rel->r_offset - d_offset);
   7475  1.1  christos 	      insn &= 31 << 21;
   7476  1.1  christos 	      insn |= 0x3c020000;	/* addis 0,2,0 */
   7477  1.1  christos 	      bfd_put_32 (output_bfd, insn, contents + rel->r_offset - d_offset);
   7478  1.1  christos 	      r_type = R_PPC_TPREL16_HA;
   7479  1.1  christos 	      rel->r_info = ELF32_R_INFO (r_symndx, r_type);
   7480  1.1  christos 	    }
   7481  1.1  christos 	  break;
   7482  1.1  christos 
   7483  1.1  christos 	case R_PPC_TLS:
   7484  1.1  christos 	  if ((tls_mask & TLS_TLS) != 0
   7485  1.1  christos 	      && (tls_mask & TLS_TPREL) == 0)
   7486  1.1  christos 	    {
   7487  1.1  christos 	      bfd_vma insn;
   7488  1.1  christos 
   7489  1.1  christos 	      insn = bfd_get_32 (output_bfd, contents + rel->r_offset);
   7490  1.1  christos 	      insn = _bfd_elf_ppc_at_tls_transform (insn, 2);
   7491  1.1  christos 	      if (insn == 0)
   7492  1.1  christos 		abort ();
   7493  1.1  christos 	      bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
   7494  1.1  christos 	      r_type = R_PPC_TPREL16_LO;
   7495  1.1  christos 	      rel->r_info = ELF32_R_INFO (r_symndx, r_type);
   7496  1.1  christos 
   7497  1.1  christos 	      /* Was PPC_TLS which sits on insn boundary, now
   7498  1.1  christos 		 PPC_TPREL16_LO which is at low-order half-word.  */
   7499  1.1  christos 	      rel->r_offset += d_offset;
   7500  1.1  christos 	    }
   7501  1.1  christos 	  break;
   7502  1.1  christos 
   7503  1.1  christos 	case R_PPC_GOT_TLSGD16_HI:
   7504  1.1  christos 	case R_PPC_GOT_TLSGD16_HA:
   7505  1.1  christos 	  tls_gd = TLS_TPRELGD;
   7506  1.1  christos 	  if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_GD) == 0)
   7507  1.1  christos 	    goto tls_gdld_hi;
   7508  1.1  christos 	  break;
   7509  1.1  christos 
   7510  1.1  christos 	case R_PPC_GOT_TLSLD16_HI:
   7511  1.1  christos 	case R_PPC_GOT_TLSLD16_HA:
   7512  1.1  christos 	  if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_LD) == 0)
   7513  1.1  christos 	    {
   7514  1.1  christos 	    tls_gdld_hi:
   7515  1.1  christos 	      if ((tls_mask & tls_gd) != 0)
   7516  1.1  christos 		r_type = (((r_type - (R_PPC_GOT_TLSGD16 & 3)) & 3)
   7517  1.1  christos 			  + R_PPC_GOT_TPREL16);
   7518  1.1  christos 	      else
   7519  1.1  christos 		{
   7520  1.1  christos 		  bfd_put_32 (output_bfd, NOP, contents + rel->r_offset);
   7521  1.1  christos 		  rel->r_offset -= d_offset;
   7522  1.1  christos 		  r_type = R_PPC_NONE;
   7523  1.1  christos 		}
   7524  1.1  christos 	      rel->r_info = ELF32_R_INFO (r_symndx, r_type);
   7525  1.1  christos 	    }
   7526  1.1  christos 	  break;
   7527  1.1  christos 
   7528  1.1  christos 	case R_PPC_GOT_TLSGD16:
   7529  1.1  christos 	case R_PPC_GOT_TLSGD16_LO:
   7530  1.1  christos 	  tls_gd = TLS_TPRELGD;
   7531  1.1  christos 	  if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_GD) == 0)
   7532  1.1  christos 	    goto tls_ldgd_opt;
   7533  1.1  christos 	  break;
   7534  1.1  christos 
   7535  1.1  christos 	case R_PPC_GOT_TLSLD16:
   7536  1.1  christos 	case R_PPC_GOT_TLSLD16_LO:
   7537  1.1  christos 	  if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_LD) == 0)
   7538  1.1  christos 	    {
   7539  1.1  christos 	      unsigned int insn1, insn2;
   7540  1.1  christos 	      bfd_vma offset;
   7541  1.1  christos 
   7542  1.1  christos 	    tls_ldgd_opt:
   7543  1.1  christos 	      offset = (bfd_vma) -1;
   7544  1.1  christos 	      /* If not using the newer R_PPC_TLSGD/LD to mark
   7545  1.1  christos 		 __tls_get_addr calls, we must trust that the call
   7546  1.1  christos 		 stays with its arg setup insns, ie. that the next
   7547  1.1  christos 		 reloc is the __tls_get_addr call associated with
   7548  1.1  christos 		 the current reloc.  Edit both insns.  */
   7549  1.1  christos 	      if (input_section->has_tls_get_addr_call
   7550  1.1  christos 		  && rel + 1 < relend
   7551  1.1  christos 		  && branch_reloc_hash_match (input_bfd, rel + 1,
   7552  1.1  christos 					      htab->tls_get_addr))
   7553  1.1  christos 		offset = rel[1].r_offset;
   7554  1.1  christos 	      if ((tls_mask & tls_gd) != 0)
   7555  1.1  christos 		{
   7556  1.1  christos 		  /* IE */
   7557  1.1  christos 		  insn1 = bfd_get_32 (output_bfd,
   7558  1.1  christos 				      contents + rel->r_offset - d_offset);
   7559  1.1  christos 		  insn1 &= (1 << 26) - 1;
   7560  1.1  christos 		  insn1 |= 32 << 26;	/* lwz */
   7561  1.1  christos 		  if (offset != (bfd_vma) -1)
   7562  1.1  christos 		    {
   7563  1.1  christos 		      rel[1].r_info = ELF32_R_INFO (STN_UNDEF, R_PPC_NONE);
   7564  1.1  christos 		      insn2 = 0x7c631214;	/* add 3,3,2 */
   7565  1.1  christos 		      bfd_put_32 (output_bfd, insn2, contents + offset);
   7566  1.1  christos 		    }
   7567  1.1  christos 		  r_type = (((r_type - (R_PPC_GOT_TLSGD16 & 3)) & 3)
   7568  1.1  christos 			    + R_PPC_GOT_TPREL16);
   7569  1.1  christos 		  rel->r_info = ELF32_R_INFO (r_symndx, r_type);
   7570  1.1  christos 		}
   7571  1.1  christos 	      else
   7572  1.1  christos 		{
   7573  1.1  christos 		  /* LE */
   7574  1.1  christos 		  insn1 = 0x3c620000;	/* addis 3,2,0 */
   7575  1.1  christos 		  if (tls_gd == 0)
   7576  1.1  christos 		    {
   7577  1.1  christos 		      /* Was an LD reloc.  */
   7578  1.1  christos 		      for (r_symndx = 0;
   7579  1.1  christos 			   r_symndx < symtab_hdr->sh_info;
   7580  1.1  christos 			   r_symndx++)
   7581  1.1  christos 			if (local_sections[r_symndx] == sec)
   7582  1.1  christos 			  break;
   7583  1.1  christos 		      if (r_symndx >= symtab_hdr->sh_info)
   7584  1.1  christos 			r_symndx = STN_UNDEF;
   7585  1.1  christos 		      rel->r_addend = htab->elf.tls_sec->vma + DTP_OFFSET;
   7586  1.1  christos 		      if (r_symndx != STN_UNDEF)
   7587  1.1  christos 			rel->r_addend -= (local_syms[r_symndx].st_value
   7588  1.1  christos 					  + sec->output_offset
   7589  1.1  christos 					  + sec->output_section->vma);
   7590  1.1  christos 		    }
   7591  1.1  christos 		  r_type = R_PPC_TPREL16_HA;
   7592  1.1  christos 		  rel->r_info = ELF32_R_INFO (r_symndx, r_type);
   7593  1.1  christos 		  if (offset != (bfd_vma) -1)
   7594  1.1  christos 		    {
   7595  1.1  christos 		      rel[1].r_info = ELF32_R_INFO (r_symndx, R_PPC_TPREL16_LO);
   7596  1.1  christos 		      rel[1].r_offset = offset + d_offset;
   7597  1.1  christos 		      rel[1].r_addend = rel->r_addend;
   7598  1.1  christos 		      insn2 = 0x38630000;	/* addi 3,3,0 */
   7599  1.1  christos 		      bfd_put_32 (output_bfd, insn2, contents + offset);
   7600  1.1  christos 		    }
   7601  1.1  christos 		}
   7602  1.1  christos 	      bfd_put_32 (output_bfd, insn1,
   7603  1.1  christos 			  contents + rel->r_offset - d_offset);
   7604  1.1  christos 	      if (tls_gd == 0)
   7605  1.1  christos 		{
   7606  1.1  christos 		  /* We changed the symbol on an LD reloc.  Start over
   7607  1.1  christos 		     in order to get h, sym, sec etc. right.  */
   7608  1.1  christos 		  rel--;
   7609  1.1  christos 		  continue;
   7610  1.1  christos 		}
   7611  1.1  christos 	    }
   7612  1.1  christos 	  break;
   7613  1.1  christos 
   7614  1.1  christos 	case R_PPC_TLSGD:
   7615  1.1  christos 	  if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_GD) == 0)
   7616  1.1  christos 	    {
   7617  1.1  christos 	      unsigned int insn2;
   7618  1.1  christos 	      bfd_vma offset = rel->r_offset;
   7619  1.1  christos 
   7620  1.1  christos 	      if ((tls_mask & TLS_TPRELGD) != 0)
   7621  1.1  christos 		{
   7622  1.1  christos 		  /* IE */
   7623  1.1  christos 		  r_type = R_PPC_NONE;
   7624  1.1  christos 		  insn2 = 0x7c631214;	/* add 3,3,2 */
   7625  1.1  christos 		}
   7626  1.1  christos 	      else
   7627  1.1  christos 		{
   7628  1.1  christos 		  /* LE */
   7629  1.1  christos 		  r_type = R_PPC_TPREL16_LO;
   7630  1.1  christos 		  rel->r_offset += d_offset;
   7631  1.1  christos 		  insn2 = 0x38630000;	/* addi 3,3,0 */
   7632  1.1  christos 		}
   7633  1.1  christos 	      rel->r_info = ELF32_R_INFO (r_symndx, r_type);
   7634  1.1  christos 	      bfd_put_32 (output_bfd, insn2, contents + offset);
   7635  1.1  christos 	      /* Zap the reloc on the _tls_get_addr call too.  */
   7636  1.1  christos 	      BFD_ASSERT (offset == rel[1].r_offset);
   7637  1.1  christos 	      rel[1].r_info = ELF32_R_INFO (STN_UNDEF, R_PPC_NONE);
   7638  1.1  christos 	    }
   7639  1.1  christos 	  break;
   7640  1.1  christos 
   7641  1.1  christos 	case R_PPC_TLSLD:
   7642  1.1  christos 	  if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_LD) == 0)
   7643  1.1  christos 	    {
   7644  1.1  christos 	      unsigned int insn2;
   7645  1.1  christos 
   7646  1.1  christos 	      for (r_symndx = 0;
   7647  1.1  christos 		   r_symndx < symtab_hdr->sh_info;
   7648  1.1  christos 		   r_symndx++)
   7649  1.1  christos 		if (local_sections[r_symndx] == sec)
   7650  1.1  christos 		  break;
   7651  1.1  christos 	      if (r_symndx >= symtab_hdr->sh_info)
   7652  1.1  christos 		r_symndx = STN_UNDEF;
   7653  1.1  christos 	      rel->r_addend = htab->elf.tls_sec->vma + DTP_OFFSET;
   7654  1.1  christos 	      if (r_symndx != STN_UNDEF)
   7655  1.1  christos 		rel->r_addend -= (local_syms[r_symndx].st_value
   7656  1.1  christos 				  + sec->output_offset
   7657  1.1  christos 				  + sec->output_section->vma);
   7658  1.1  christos 
   7659  1.1  christos 	      rel->r_info = ELF32_R_INFO (r_symndx, R_PPC_TPREL16_LO);
   7660  1.1  christos 	      rel->r_offset += d_offset;
   7661  1.1  christos 	      insn2 = 0x38630000;	/* addi 3,3,0 */
   7662  1.1  christos 	      bfd_put_32 (output_bfd, insn2,
   7663  1.1  christos 			  contents + rel->r_offset - d_offset);
   7664  1.1  christos 	      /* Zap the reloc on the _tls_get_addr call too.  */
   7665  1.1  christos 	      BFD_ASSERT (rel->r_offset - d_offset == rel[1].r_offset);
   7666  1.1  christos 	      rel[1].r_info = ELF32_R_INFO (STN_UNDEF, R_PPC_NONE);
   7667  1.1  christos 	      rel--;
   7668  1.1  christos 	      continue;
   7669  1.1  christos 	    }
   7670  1.1  christos 	  break;
   7671  1.1  christos 	}
   7672  1.1  christos 
   7673  1.1  christos       /* Handle other relocations that tweak non-addend part of insn.  */
   7674  1.1  christos       branch_bit = 0;
   7675  1.1  christos       switch (r_type)
   7676  1.1  christos 	{
   7677  1.1  christos 	default:
   7678  1.1  christos 	  break;
   7679  1.1  christos 
   7680  1.1  christos 	  /* Branch taken prediction relocations.  */
   7681  1.1  christos 	case R_PPC_ADDR14_BRTAKEN:
   7682  1.1  christos 	case R_PPC_REL14_BRTAKEN:
   7683  1.1  christos 	  branch_bit = BRANCH_PREDICT_BIT;
   7684  1.1  christos 	  /* Fall thru */
   7685  1.1  christos 
   7686  1.1  christos 	  /* Branch not taken prediction relocations.  */
   7687  1.1  christos 	case R_PPC_ADDR14_BRNTAKEN:
   7688  1.1  christos 	case R_PPC_REL14_BRNTAKEN:
   7689  1.1  christos 	  {
   7690  1.1  christos 	    bfd_vma insn;
   7691  1.1  christos 
   7692  1.1  christos 	    insn = bfd_get_32 (output_bfd, contents + rel->r_offset);
   7693  1.1  christos 	    insn &= ~BRANCH_PREDICT_BIT;
   7694  1.1  christos 	    insn |= branch_bit;
   7695  1.1  christos 
   7696  1.1  christos 	    from = (rel->r_offset
   7697  1.1  christos 		    + input_section->output_offset
   7698  1.1  christos 		    + input_section->output_section->vma);
   7699  1.1  christos 
   7700  1.1  christos 	    /* Invert 'y' bit if not the default.  */
   7701  1.1  christos 	    if ((bfd_signed_vma) (relocation + rel->r_addend - from) < 0)
   7702  1.1  christos 	      insn ^= BRANCH_PREDICT_BIT;
   7703  1.1  christos 
   7704  1.1  christos 	    bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
   7705  1.1  christos 	    break;
   7706  1.1  christos 	  }
   7707  1.1  christos 	}
   7708  1.1  christos 
   7709  1.1  christos       ifunc = NULL;
   7710  1.1  christos       if (!htab->is_vxworks)
   7711  1.1  christos 	{
   7712  1.1  christos 	  struct plt_entry *ent;
   7713  1.1  christos 
   7714  1.1  christos 	  if (h != NULL)
   7715  1.1  christos 	    {
   7716  1.1  christos 	      if (h->type == STT_GNU_IFUNC)
   7717  1.1  christos 		ifunc = &h->plt.plist;
   7718  1.1  christos 	    }
   7719  1.1  christos 	  else if (local_got_offsets != NULL
   7720  1.1  christos 		   && ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
   7721  1.1  christos 	    {
   7722  1.1  christos 	      struct plt_entry **local_plt;
   7723  1.1  christos 
   7724  1.1  christos 	      local_plt = (struct plt_entry **) (local_got_offsets
   7725  1.1  christos 						 + symtab_hdr->sh_info);
   7726  1.1  christos 	      ifunc = local_plt + r_symndx;
   7727  1.1  christos 	    }
   7728  1.1  christos 
   7729  1.1  christos 	  ent = NULL;
   7730  1.1  christos 	  if (ifunc != NULL
   7731  1.1  christos 	      && (!info->shared
   7732  1.1  christos 		  || is_branch_reloc (r_type)))
   7733  1.1  christos 	    {
   7734  1.1  christos 	      addend = 0;
   7735  1.1  christos 	      if (r_type == R_PPC_PLTREL24 && info->shared)
   7736  1.1  christos 		addend = rel->r_addend;
   7737  1.1  christos 	      ent = find_plt_ent (ifunc, got2, addend);
   7738  1.1  christos 	    }
   7739  1.1  christos 	  if (ent != NULL)
   7740  1.1  christos 	    {
   7741  1.1  christos 	      if (h == NULL && (ent->plt.offset & 1) == 0)
   7742  1.1  christos 		{
   7743  1.1  christos 		  Elf_Internal_Rela rela;
   7744  1.1  christos 		  bfd_byte *loc;
   7745  1.1  christos 
   7746  1.1  christos 		  rela.r_offset = (htab->iplt->output_section->vma
   7747  1.1  christos 				   + htab->iplt->output_offset
   7748  1.1  christos 				   + ent->plt.offset);
   7749  1.1  christos 		  rela.r_info = ELF32_R_INFO (0, R_PPC_IRELATIVE);
   7750  1.1  christos 		  rela.r_addend = relocation;
   7751  1.1  christos 		  loc = htab->reliplt->contents;
   7752  1.1  christos 		  loc += (htab->reliplt->reloc_count++
   7753  1.1  christos 			  * sizeof (Elf32_External_Rela));
   7754  1.1  christos 		  bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
   7755  1.1  christos 
   7756  1.1  christos 		  ent->plt.offset |= 1;
   7757  1.1  christos 		}
   7758  1.1  christos 	      if (h == NULL && (ent->glink_offset & 1) == 0)
   7759  1.1  christos 		{
   7760  1.1  christos 		  unsigned char *p = ((unsigned char *) htab->glink->contents
   7761  1.1  christos 				      + ent->glink_offset);
   7762  1.1  christos 		  write_glink_stub (ent, htab->iplt, p, info);
   7763  1.1  christos 		  ent->glink_offset |= 1;
   7764  1.1  christos 		}
   7765  1.1  christos 
   7766  1.1  christos 	      unresolved_reloc = FALSE;
   7767  1.1  christos 	      if (htab->plt_type == PLT_NEW
   7768  1.1  christos 		  || !htab->elf.dynamic_sections_created
   7769  1.1  christos 		  || h == NULL)
   7770  1.1  christos 		relocation = (htab->glink->output_section->vma
   7771  1.1  christos 			      + htab->glink->output_offset
   7772  1.1  christos 			      + (ent->glink_offset & ~1));
   7773  1.1  christos 	      else
   7774  1.1  christos 		relocation = (htab->plt->output_section->vma
   7775  1.1  christos 			      + htab->plt->output_offset
   7776  1.1  christos 			      + ent->plt.offset);
   7777  1.1  christos 	    }
   7778  1.1  christos 	}
   7779  1.1  christos 
   7780  1.1  christos       addend = rel->r_addend;
   7781  1.1  christos       tls_type = 0;
   7782  1.1  christos       howto = NULL;
   7783  1.1  christos       if (r_type < R_PPC_max)
   7784  1.1  christos 	howto = ppc_elf_howto_table[r_type];
   7785  1.1  christos       switch ((int)r_type)
   7786  1.1  christos 	{
   7787  1.1  christos 	default:
   7788  1.1  christos 	  info->callbacks->einfo
   7789  1.1  christos 	    (_("%P: %B: unknown relocation type %d for symbol %s\n"),
   7790  1.1  christos 	     input_bfd, (int) r_type, sym_name);
   7791  1.1  christos 
   7792  1.1  christos 	  bfd_set_error (bfd_error_bad_value);
   7793  1.1  christos 	  ret = FALSE;
   7794  1.1  christos 	  continue;
   7795  1.1  christos 
   7796  1.1  christos 	case R_PPC_NONE:
   7797  1.1  christos 	case R_PPC_TLS:
   7798  1.1  christos 	case R_PPC_TLSGD:
   7799  1.1  christos 	case R_PPC_TLSLD:
   7800  1.1  christos 	case R_PPC_EMB_MRKREF:
   7801  1.1  christos 	case R_PPC_GNU_VTINHERIT:
   7802  1.1  christos 	case R_PPC_GNU_VTENTRY:
   7803  1.1  christos 	  continue;
   7804  1.1  christos 
   7805  1.1  christos 	  /* GOT16 relocations.  Like an ADDR16 using the symbol's
   7806  1.1  christos 	     address in the GOT as relocation value instead of the
   7807  1.1  christos 	     symbol's value itself.  Also, create a GOT entry for the
   7808  1.1  christos 	     symbol and put the symbol value there.  */
   7809  1.1  christos 	case R_PPC_GOT_TLSGD16:
   7810  1.1  christos 	case R_PPC_GOT_TLSGD16_LO:
   7811  1.1  christos 	case R_PPC_GOT_TLSGD16_HI:
   7812  1.1  christos 	case R_PPC_GOT_TLSGD16_HA:
   7813  1.1  christos 	  tls_type = TLS_TLS | TLS_GD;
   7814  1.1  christos 	  goto dogot;
   7815  1.1  christos 
   7816  1.1  christos 	case R_PPC_GOT_TLSLD16:
   7817  1.1  christos 	case R_PPC_GOT_TLSLD16_LO:
   7818  1.1  christos 	case R_PPC_GOT_TLSLD16_HI:
   7819  1.1  christos 	case R_PPC_GOT_TLSLD16_HA:
   7820  1.1  christos 	  tls_type = TLS_TLS | TLS_LD;
   7821  1.1  christos 	  goto dogot;
   7822  1.1  christos 
   7823  1.1  christos 	case R_PPC_GOT_TPREL16:
   7824  1.1  christos 	case R_PPC_GOT_TPREL16_LO:
   7825  1.1  christos 	case R_PPC_GOT_TPREL16_HI:
   7826  1.1  christos 	case R_PPC_GOT_TPREL16_HA:
   7827  1.1  christos 	  tls_type = TLS_TLS | TLS_TPREL;
   7828  1.1  christos 	  goto dogot;
   7829  1.1  christos 
   7830  1.1  christos 	case R_PPC_GOT_DTPREL16:
   7831  1.1  christos 	case R_PPC_GOT_DTPREL16_LO:
   7832  1.1  christos 	case R_PPC_GOT_DTPREL16_HI:
   7833  1.1  christos 	case R_PPC_GOT_DTPREL16_HA:
   7834  1.1  christos 	  tls_type = TLS_TLS | TLS_DTPREL;
   7835  1.1  christos 	  goto dogot;
   7836  1.1  christos 
   7837  1.1  christos 	case R_PPC_GOT16:
   7838  1.1  christos 	case R_PPC_GOT16_LO:
   7839  1.1  christos 	case R_PPC_GOT16_HI:
   7840  1.1  christos 	case R_PPC_GOT16_HA:
   7841  1.1  christos 	  tls_mask = 0;
   7842  1.1  christos 	dogot:
   7843  1.1  christos 	  {
   7844  1.1  christos 	    /* Relocation is to the entry for this symbol in the global
   7845  1.1  christos 	       offset table.  */
   7846  1.1  christos 	    bfd_vma off;
   7847  1.1  christos 	    bfd_vma *offp;
   7848  1.1  christos 	    unsigned long indx;
   7849  1.1  christos 
   7850  1.1  christos 	    if (htab->got == NULL)
   7851  1.1  christos 	      abort ();
   7852  1.1  christos 
   7853  1.1  christos 	    indx = 0;
   7854  1.1  christos 	    if (tls_type == (TLS_TLS | TLS_LD)
   7855  1.1  christos 		&& (h == NULL
   7856  1.1  christos 		    || !h->def_dynamic))
   7857  1.1  christos 	      offp = &htab->tlsld_got.offset;
   7858  1.1  christos 	    else if (h != NULL)
   7859  1.1  christos 	      {
   7860  1.1  christos 		bfd_boolean dyn;
   7861  1.1  christos 		dyn = htab->elf.dynamic_sections_created;
   7862  1.1  christos 		if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
   7863  1.1  christos 		    || (info->shared
   7864  1.1  christos 			&& SYMBOL_REFERENCES_LOCAL (info, h)))
   7865  1.1  christos 		  /* This is actually a static link, or it is a
   7866  1.1  christos 		     -Bsymbolic link and the symbol is defined
   7867  1.1  christos 		     locally, or the symbol was forced to be local
   7868  1.1  christos 		     because of a version file.  */
   7869  1.1  christos 		  ;
   7870  1.1  christos 		else
   7871  1.1  christos 		  {
   7872  1.1  christos 		    BFD_ASSERT (h->dynindx != -1);
   7873  1.1  christos 		    indx = h->dynindx;
   7874  1.1  christos 		    unresolved_reloc = FALSE;
   7875  1.1  christos 		  }
   7876  1.1  christos 		offp = &h->got.offset;
   7877  1.1  christos 	      }
   7878  1.1  christos 	    else
   7879  1.1  christos 	      {
   7880  1.1  christos 		if (local_got_offsets == NULL)
   7881  1.1  christos 		  abort ();
   7882  1.1  christos 		offp = &local_got_offsets[r_symndx];
   7883  1.1  christos 	      }
   7884  1.1  christos 
   7885  1.1  christos 	    /* The offset must always be a multiple of 4.  We use the
   7886  1.1  christos 	       least significant bit to record whether we have already
   7887  1.1  christos 	       processed this entry.  */
   7888  1.1  christos 	    off = *offp;
   7889  1.1  christos 	    if ((off & 1) != 0)
   7890  1.1  christos 	      off &= ~1;
   7891  1.1  christos 	    else
   7892  1.1  christos 	      {
   7893  1.1  christos 		unsigned int tls_m = (tls_mask
   7894  1.1  christos 				      & (TLS_LD | TLS_GD | TLS_DTPREL
   7895  1.1  christos 					 | TLS_TPREL | TLS_TPRELGD));
   7896  1.1  christos 
   7897  1.1  christos 		if (offp == &htab->tlsld_got.offset)
   7898  1.1  christos 		  tls_m = TLS_LD;
   7899  1.1  christos 		else if (h == NULL
   7900  1.1  christos 			 || !h->def_dynamic)
   7901  1.1  christos 		  tls_m &= ~TLS_LD;
   7902  1.1  christos 
   7903  1.1  christos 		/* We might have multiple got entries for this sym.
   7904  1.1  christos 		   Initialize them all.  */
   7905  1.1  christos 		do
   7906  1.1  christos 		  {
   7907  1.1  christos 		    int tls_ty = 0;
   7908  1.1  christos 
   7909  1.1  christos 		    if ((tls_m & TLS_LD) != 0)
   7910  1.1  christos 		      {
   7911  1.1  christos 			tls_ty = TLS_TLS | TLS_LD;
   7912  1.1  christos 			tls_m &= ~TLS_LD;
   7913  1.1  christos 		      }
   7914  1.1  christos 		    else if ((tls_m & TLS_GD) != 0)
   7915  1.1  christos 		      {
   7916  1.1  christos 			tls_ty = TLS_TLS | TLS_GD;
   7917  1.1  christos 			tls_m &= ~TLS_GD;
   7918  1.1  christos 		      }
   7919  1.1  christos 		    else if ((tls_m & TLS_DTPREL) != 0)
   7920  1.1  christos 		      {
   7921  1.1  christos 			tls_ty = TLS_TLS | TLS_DTPREL;
   7922  1.1  christos 			tls_m &= ~TLS_DTPREL;
   7923  1.1  christos 		      }
   7924  1.1  christos 		    else if ((tls_m & (TLS_TPREL | TLS_TPRELGD)) != 0)
   7925  1.1  christos 		      {
   7926  1.1  christos 			tls_ty = TLS_TLS | TLS_TPREL;
   7927  1.1  christos 			tls_m = 0;
   7928  1.1  christos 		      }
   7929  1.1  christos 
   7930  1.1  christos 		    /* Generate relocs for the dynamic linker.  */
   7931  1.1  christos 		    if ((info->shared || indx != 0)
   7932  1.1  christos 			&& (offp == &htab->tlsld_got.offset
   7933  1.1  christos 			    || h == NULL
   7934  1.1  christos 			    || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
   7935  1.1  christos 			    || h->root.type != bfd_link_hash_undefweak))
   7936  1.1  christos 		      {
   7937  1.1  christos 			asection *rsec = htab->relgot;
   7938  1.1  christos 			bfd_byte * loc;
   7939  1.1  christos 
   7940  1.1  christos 			outrel.r_offset = (htab->got->output_section->vma
   7941  1.1  christos 					   + htab->got->output_offset
   7942  1.1  christos 					   + off);
   7943  1.1  christos 			outrel.r_addend = 0;
   7944  1.1  christos 			if (tls_ty & (TLS_LD | TLS_GD))
   7945  1.1  christos 			  {
   7946  1.1  christos 			    outrel.r_info = ELF32_R_INFO (indx, R_PPC_DTPMOD32);
   7947  1.1  christos 			    if (tls_ty == (TLS_TLS | TLS_GD))
   7948  1.1  christos 			      {
   7949  1.1  christos 				loc = rsec->contents;
   7950  1.1  christos 				loc += (rsec->reloc_count++
   7951  1.1  christos 					* sizeof (Elf32_External_Rela));
   7952  1.1  christos 				bfd_elf32_swap_reloca_out (output_bfd,
   7953  1.1  christos 							   &outrel, loc);
   7954  1.1  christos 				outrel.r_offset += 4;
   7955  1.1  christos 				outrel.r_info
   7956  1.1  christos 				  = ELF32_R_INFO (indx, R_PPC_DTPREL32);
   7957  1.1  christos 			      }
   7958  1.1  christos 			  }
   7959  1.1  christos 			else if (tls_ty == (TLS_TLS | TLS_DTPREL))
   7960  1.1  christos 			  outrel.r_info = ELF32_R_INFO (indx, R_PPC_DTPREL32);
   7961  1.1  christos 			else if (tls_ty == (TLS_TLS | TLS_TPREL))
   7962  1.1  christos 			  outrel.r_info = ELF32_R_INFO (indx, R_PPC_TPREL32);
   7963  1.1  christos 			else if (indx != 0)
   7964  1.1  christos 			  outrel.r_info = ELF32_R_INFO (indx, R_PPC_GLOB_DAT);
   7965  1.1  christos 			else if (ifunc != NULL)
   7966  1.1  christos 			  outrel.r_info = ELF32_R_INFO (0, R_PPC_IRELATIVE);
   7967  1.1  christos 			else
   7968  1.1  christos 			  outrel.r_info = ELF32_R_INFO (0, R_PPC_RELATIVE);
   7969  1.1  christos 			if (indx == 0 && tls_ty != (TLS_TLS | TLS_LD))
   7970  1.1  christos 			  {
   7971  1.1  christos 			    outrel.r_addend += relocation;
   7972  1.1  christos 			    if (tls_ty & (TLS_GD | TLS_DTPREL | TLS_TPREL))
   7973  1.1  christos 			      outrel.r_addend -= htab->elf.tls_sec->vma;
   7974  1.1  christos 			  }
   7975  1.1  christos 			loc = rsec->contents;
   7976  1.1  christos 			loc += (rsec->reloc_count++
   7977  1.1  christos 				* sizeof (Elf32_External_Rela));
   7978  1.1  christos 			bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
   7979  1.1  christos 		      }
   7980  1.1  christos 
   7981  1.1  christos 		    /* Init the .got section contents if we're not
   7982  1.1  christos 		       emitting a reloc.  */
   7983  1.1  christos 		    else
   7984  1.1  christos 		      {
   7985  1.1  christos 			bfd_vma value = relocation;
   7986  1.1  christos 
   7987  1.1  christos 			if (tls_ty == (TLS_TLS | TLS_LD))
   7988  1.1  christos 			  value = 1;
   7989  1.1  christos 			else if (tls_ty != 0)
   7990  1.1  christos 			  {
   7991  1.1  christos 			    value -= htab->elf.tls_sec->vma + DTP_OFFSET;
   7992  1.1  christos 			    if (tls_ty == (TLS_TLS | TLS_TPREL))
   7993  1.1  christos 			      value += DTP_OFFSET - TP_OFFSET;
   7994  1.1  christos 
   7995  1.1  christos 			    if (tls_ty == (TLS_TLS | TLS_GD))
   7996  1.1  christos 			      {
   7997  1.1  christos 				bfd_put_32 (output_bfd, value,
   7998  1.1  christos 					    htab->got->contents + off + 4);
   7999  1.1  christos 				value = 1;
   8000  1.1  christos 			      }
   8001  1.1  christos 			  }
   8002  1.1  christos 			bfd_put_32 (output_bfd, value,
   8003  1.1  christos 				    htab->got->contents + off);
   8004  1.1  christos 		      }
   8005  1.1  christos 
   8006  1.1  christos 		    off += 4;
   8007  1.1  christos 		    if (tls_ty & (TLS_LD | TLS_GD))
   8008  1.1  christos 		      off += 4;
   8009  1.1  christos 		  }
   8010  1.1  christos 		while (tls_m != 0);
   8011  1.1  christos 
   8012  1.1  christos 		off = *offp;
   8013  1.1  christos 		*offp = off | 1;
   8014  1.1  christos 	      }
   8015  1.1  christos 
   8016  1.1  christos 	    if (off >= (bfd_vma) -2)
   8017  1.1  christos 	      abort ();
   8018  1.1  christos 
   8019  1.1  christos 	    if ((tls_type & TLS_TLS) != 0)
   8020  1.1  christos 	      {
   8021  1.1  christos 		if (tls_type != (TLS_TLS | TLS_LD))
   8022  1.1  christos 		  {
   8023  1.1  christos 		    if ((tls_mask & TLS_LD) != 0
   8024  1.1  christos 			&& !(h == NULL
   8025  1.1  christos 			     || !h->def_dynamic))
   8026  1.1  christos 		      off += 8;
   8027  1.1  christos 		    if (tls_type != (TLS_TLS | TLS_GD))
   8028  1.1  christos 		      {
   8029  1.1  christos 			if ((tls_mask & TLS_GD) != 0)
   8030  1.1  christos 			  off += 8;
   8031  1.1  christos 			if (tls_type != (TLS_TLS | TLS_DTPREL))
   8032  1.1  christos 			  {
   8033  1.1  christos 			    if ((tls_mask & TLS_DTPREL) != 0)
   8034  1.1  christos 			      off += 4;
   8035  1.1  christos 			  }
   8036  1.1  christos 		      }
   8037  1.1  christos 		  }
   8038  1.1  christos 	      }
   8039  1.1  christos 
   8040  1.1  christos 	    relocation = (htab->got->output_section->vma
   8041  1.1  christos 			  + htab->got->output_offset
   8042  1.1  christos 			  + off
   8043  1.1  christos 			  - SYM_VAL (htab->elf.hgot));
   8044  1.1  christos 
   8045  1.1  christos 	    /* Addends on got relocations don't make much sense.
   8046  1.1  christos 	       x+off@got is actually x@got+off, and since the got is
   8047  1.1  christos 	       generated by a hash table traversal, the value in the
   8048  1.1  christos 	       got at entry m+n bears little relation to the entry m.  */
   8049  1.1  christos 	    if (addend != 0)
   8050  1.1  christos 	      info->callbacks->einfo
   8051  1.1  christos 		(_("%P: %H: non-zero addend on %s reloc against `%s'\n"),
   8052  1.1  christos 		 input_bfd, input_section, rel->r_offset,
   8053  1.1  christos 		 howto->name,
   8054  1.1  christos 		 sym_name);
   8055  1.1  christos 	  }
   8056  1.1  christos 	break;
   8057  1.1  christos 
   8058  1.1  christos 	/* Relocations that need no special processing.  */
   8059  1.1  christos 	case R_PPC_LOCAL24PC:
   8060  1.1  christos 	  /* It makes no sense to point a local relocation
   8061  1.1  christos 	     at a symbol not in this object.  */
   8062  1.1  christos 	  if (unresolved_reloc)
   8063  1.1  christos 	    {
   8064  1.1  christos 	      if (! (*info->callbacks->undefined_symbol) (info,
   8065  1.1  christos 							  h->root.root.string,
   8066  1.1  christos 							  input_bfd,
   8067  1.1  christos 							  input_section,
   8068  1.1  christos 							  rel->r_offset,
   8069  1.1  christos 							  TRUE))
   8070  1.1  christos 		return FALSE;
   8071  1.1  christos 	      continue;
   8072  1.1  christos 	    }
   8073  1.1  christos 	  break;
   8074  1.1  christos 
   8075  1.1  christos 	case R_PPC_DTPREL16:
   8076  1.1  christos 	case R_PPC_DTPREL16_LO:
   8077  1.1  christos 	case R_PPC_DTPREL16_HI:
   8078  1.1  christos 	case R_PPC_DTPREL16_HA:
   8079  1.1  christos 	  addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
   8080  1.1  christos 	  break;
   8081  1.1  christos 
   8082  1.1  christos 	  /* Relocations that may need to be propagated if this is a shared
   8083  1.1  christos 	     object.  */
   8084  1.1  christos 	case R_PPC_TPREL16:
   8085  1.1  christos 	case R_PPC_TPREL16_LO:
   8086  1.1  christos 	case R_PPC_TPREL16_HI:
   8087  1.1  christos 	case R_PPC_TPREL16_HA:
   8088  1.1  christos 	  if (h != NULL
   8089  1.1  christos 	      && h->root.type == bfd_link_hash_undefweak
   8090  1.1  christos 	      && h->dynindx == -1)
   8091  1.1  christos 	    {
   8092  1.1  christos 	      /* Make this relocation against an undefined weak symbol
   8093  1.1  christos 		 resolve to zero.  This is really just a tweak, since
   8094  1.1  christos 		 code using weak externs ought to check that they are
   8095  1.1  christos 		 defined before using them.  */
   8096  1.1  christos 	      bfd_byte *p = contents + rel->r_offset - d_offset;
   8097  1.1  christos 	      unsigned int insn = bfd_get_32 (output_bfd, p);
   8098  1.1  christos 	      insn = _bfd_elf_ppc_at_tprel_transform (insn, 2);
   8099  1.1  christos 	      if (insn != 0)
   8100  1.1  christos 		bfd_put_32 (output_bfd, insn, p);
   8101  1.1  christos 	      break;
   8102  1.1  christos 	    }
   8103  1.1  christos 	  addend -= htab->elf.tls_sec->vma + TP_OFFSET;
   8104  1.1  christos 	  /* The TPREL16 relocs shouldn't really be used in shared
   8105  1.1  christos 	     libs as they will result in DT_TEXTREL being set, but
   8106  1.1  christos 	     support them anyway.  */
   8107  1.1  christos 	  goto dodyn;
   8108  1.1  christos 
   8109  1.1  christos 	case R_PPC_TPREL32:
   8110  1.1  christos 	  addend -= htab->elf.tls_sec->vma + TP_OFFSET;
   8111  1.1  christos 	  goto dodyn;
   8112  1.1  christos 
   8113  1.1  christos 	case R_PPC_DTPREL32:
   8114  1.1  christos 	  addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
   8115  1.1  christos 	  goto dodyn;
   8116  1.1  christos 
   8117  1.1  christos 	case R_PPC_DTPMOD32:
   8118  1.1  christos 	  relocation = 1;
   8119  1.1  christos 	  addend = 0;
   8120  1.1  christos 	  goto dodyn;
   8121  1.1  christos 
   8122  1.1  christos 	case R_PPC_REL16:
   8123  1.1  christos 	case R_PPC_REL16_LO:
   8124  1.1  christos 	case R_PPC_REL16_HI:
   8125  1.1  christos 	case R_PPC_REL16_HA:
   8126  1.1  christos 	  break;
   8127  1.1  christos 
   8128  1.1  christos 	case R_PPC_REL32:
   8129  1.1  christos 	  if (h == NULL || h == htab->elf.hgot)
   8130  1.1  christos 	    break;
   8131  1.1  christos 	  /* fall through */
   8132  1.1  christos 
   8133  1.1  christos 	case R_PPC_ADDR32:
   8134  1.1  christos 	case R_PPC_ADDR16:
   8135  1.1  christos 	case R_PPC_ADDR16_LO:
   8136  1.1  christos 	case R_PPC_ADDR16_HI:
   8137  1.1  christos 	case R_PPC_ADDR16_HA:
   8138  1.1  christos 	case R_PPC_UADDR32:
   8139  1.1  christos 	case R_PPC_UADDR16:
   8140  1.1  christos 	  goto dodyn;
   8141  1.1  christos 
   8142  1.1  christos 	case R_PPC_VLE_REL8:
   8143  1.1  christos 	case R_PPC_VLE_REL15:
   8144  1.1  christos 	case R_PPC_VLE_REL24:
   8145  1.1  christos 	case R_PPC_REL24:
   8146  1.1  christos 	case R_PPC_REL14:
   8147  1.1  christos 	case R_PPC_REL14_BRTAKEN:
   8148  1.1  christos 	case R_PPC_REL14_BRNTAKEN:
   8149  1.1  christos 	  /* If these relocations are not to a named symbol, they can be
   8150  1.1  christos 	     handled right here, no need to bother the dynamic linker.  */
   8151  1.1  christos 	  if (SYMBOL_CALLS_LOCAL (info, h)
   8152  1.1  christos 	      || h == htab->elf.hgot)
   8153  1.1  christos 	    break;
   8154  1.1  christos 	  /* fall through */
   8155  1.1  christos 
   8156  1.1  christos 	case R_PPC_ADDR24:
   8157  1.1  christos 	case R_PPC_ADDR14:
   8158  1.1  christos 	case R_PPC_ADDR14_BRTAKEN:
   8159  1.1  christos 	case R_PPC_ADDR14_BRNTAKEN:
   8160  1.1  christos 	  if (h != NULL && !info->shared)
   8161  1.1  christos 	    break;
   8162  1.1  christos 	  /* fall through */
   8163  1.1  christos 
   8164  1.1  christos 	dodyn:
   8165  1.1  christos 	  if ((input_section->flags & SEC_ALLOC) == 0
   8166  1.1  christos 	      || is_vxworks_tls)
   8167  1.1  christos 	    break;
   8168  1.1  christos 
   8169  1.1  christos 	  if ((info->shared
   8170  1.1  christos 	       && !(h != NULL
   8171  1.1  christos 		    && ((h->root.type == bfd_link_hash_undefined
   8172  1.1  christos 			 && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
   8173  1.1  christos 			     || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
   8174  1.1  christos 			|| (h->root.type == bfd_link_hash_undefweak
   8175  1.1  christos 			    && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)))
   8176  1.1  christos 	       && (must_be_dyn_reloc (info, r_type)
   8177  1.1  christos 		   || !SYMBOL_CALLS_LOCAL (info, h)))
   8178  1.1  christos 	      || (ELIMINATE_COPY_RELOCS
   8179  1.1  christos 		  && !info->shared
   8180  1.1  christos 		  && h != NULL
   8181  1.1  christos 		  && h->dynindx != -1
   8182  1.1  christos 		  && !h->non_got_ref
   8183  1.1  christos 		  && !h->def_regular))
   8184  1.1  christos 	    {
   8185  1.1  christos 	      int skip;
   8186  1.1  christos 	      bfd_byte * loc;
   8187  1.1  christos #ifdef DEBUG
   8188  1.1  christos 	      fprintf (stderr, "ppc_elf_relocate_section needs to "
   8189  1.1  christos 		       "create relocation for %s\n",
   8190  1.1  christos 		       (h && h->root.root.string
   8191  1.1  christos 			? h->root.root.string : "<unknown>"));
   8192  1.1  christos #endif
   8193  1.1  christos 
   8194  1.1  christos 	      /* When generating a shared object, these relocations
   8195  1.1  christos 		 are copied into the output file to be resolved at run
   8196  1.1  christos 		 time.  */
   8197  1.1  christos 	      if (sreloc == NULL)
   8198  1.1  christos 		{
   8199  1.1  christos 		  sreloc = elf_section_data (input_section)->sreloc;
   8200  1.1  christos 		  if (!htab->elf.dynamic_sections_created)
   8201  1.1  christos 		    sreloc = htab->reliplt;
   8202  1.1  christos 		  if (sreloc == NULL)
   8203  1.1  christos 		    return FALSE;
   8204  1.1  christos 		}
   8205  1.1  christos 
   8206  1.1  christos 	      skip = 0;
   8207  1.1  christos 	      outrel.r_offset = _bfd_elf_section_offset (output_bfd, info,
   8208  1.1  christos 							 input_section,
   8209  1.1  christos 							 rel->r_offset);
   8210  1.1  christos 	      if (outrel.r_offset == (bfd_vma) -1
   8211  1.1  christos 		  || outrel.r_offset == (bfd_vma) -2)
   8212  1.1  christos 		skip = (int) outrel.r_offset;
   8213  1.1  christos 	      outrel.r_offset += (input_section->output_section->vma
   8214  1.1  christos 				  + input_section->output_offset);
   8215  1.1  christos 
   8216  1.1  christos 	      if (skip)
   8217  1.1  christos 		memset (&outrel, 0, sizeof outrel);
   8218  1.1  christos 	      else if ((h != NULL
   8219  1.1  christos 			&& (h->root.type == bfd_link_hash_undefined
   8220  1.1  christos 			    || h->root.type == bfd_link_hash_undefweak))
   8221  1.1  christos 		       || !SYMBOL_REFERENCES_LOCAL (info, h))
   8222  1.1  christos 		{
   8223  1.1  christos 		  BFD_ASSERT (h->dynindx != -1);
   8224  1.1  christos 		  unresolved_reloc = FALSE;
   8225  1.1  christos 		  outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
   8226  1.1  christos 		  outrel.r_addend = rel->r_addend;
   8227  1.1  christos 		}
   8228  1.1  christos 	      else
   8229  1.1  christos 		{
   8230  1.1  christos 		  outrel.r_addend = relocation + rel->r_addend;
   8231  1.1  christos 
   8232  1.1  christos 		  if (r_type != R_PPC_ADDR32)
   8233  1.1  christos 		    {
   8234  1.1  christos 		      long indx = 0;
   8235  1.1  christos 
   8236  1.1  christos 		      if (ifunc != NULL)
   8237  1.1  christos 			{
   8238  1.1  christos 			  /* If we get here when building a static
   8239  1.1  christos 			     executable, then the libc startup function
   8240  1.1  christos 			     responsible for applying indirect function
   8241  1.1  christos 			     relocations is going to complain about
   8242  1.1  christos 			     the reloc type.
   8243  1.1  christos 			     If we get here when building a dynamic
   8244  1.1  christos 			     executable, it will be because we have
   8245  1.1  christos 			     a text relocation.  The dynamic loader
   8246  1.1  christos 			     will set the text segment writable and
   8247  1.1  christos 			     non-executable to apply text relocations.
   8248  1.1  christos 			     So we'll segfault when trying to run the
   8249  1.1  christos 			     indirection function to resolve the reloc.  */
   8250  1.1  christos 			  info->callbacks->einfo
   8251  1.1  christos 			    (_("%P: %H: relocation %s for indirect "
   8252  1.1  christos 			       "function %s unsupported\n"),
   8253  1.1  christos 			     input_bfd, input_section, rel->r_offset,
   8254  1.1  christos 			     howto->name,
   8255  1.1  christos 			     sym_name);
   8256  1.1  christos 			  ret = FALSE;
   8257  1.1  christos 			}
   8258  1.1  christos 		      else if (r_symndx == STN_UNDEF || bfd_is_abs_section (sec))
   8259  1.1  christos 			;
   8260  1.1  christos 		      else if (sec == NULL || sec->owner == NULL)
   8261  1.1  christos 			{
   8262  1.1  christos 			  bfd_set_error (bfd_error_bad_value);
   8263  1.1  christos 			  ret = FALSE;
   8264  1.1  christos 			}
   8265  1.1  christos 		      else
   8266  1.1  christos 			{
   8267  1.1  christos 			  asection *osec;
   8268  1.1  christos 
   8269  1.1  christos 			  /* We are turning this relocation into one
   8270  1.1  christos 			     against a section symbol.  It would be
   8271  1.1  christos 			     proper to subtract the symbol's value,
   8272  1.1  christos 			     osec->vma, from the emitted reloc addend,
   8273  1.1  christos 			     but ld.so expects buggy relocs.
   8274  1.1  christos 			     FIXME: Why not always use a zero index?  */
   8275  1.1  christos 			  osec = sec->output_section;
   8276  1.1  christos 			  indx = elf_section_data (osec)->dynindx;
   8277  1.1  christos 			  if (indx == 0)
   8278  1.1  christos 			    {
   8279  1.1  christos 			      osec = htab->elf.text_index_section;
   8280  1.1  christos 			      indx = elf_section_data (osec)->dynindx;
   8281  1.1  christos 			    }
   8282  1.1  christos 			  BFD_ASSERT (indx != 0);
   8283  1.1  christos #ifdef DEBUG
   8284  1.1  christos 			  if (indx == 0)
   8285  1.1  christos 			    printf ("indx=%ld section=%s flags=%08x name=%s\n",
   8286  1.1  christos 				    indx, osec->name, osec->flags,
   8287  1.1  christos 				    h->root.root.string);
   8288  1.1  christos #endif
   8289  1.1  christos 			}
   8290  1.1  christos 
   8291  1.1  christos 		      outrel.r_info = ELF32_R_INFO (indx, r_type);
   8292  1.1  christos 		    }
   8293  1.1  christos 		  else if (ifunc != NULL)
   8294  1.1  christos 		    outrel.r_info = ELF32_R_INFO (0, R_PPC_IRELATIVE);
   8295  1.1  christos 		  else
   8296  1.1  christos 		    outrel.r_info = ELF32_R_INFO (0, R_PPC_RELATIVE);
   8297  1.1  christos 		}
   8298  1.1  christos 
   8299  1.1  christos 	      loc = sreloc->contents;
   8300  1.1  christos 	      loc += sreloc->reloc_count++ * sizeof (Elf32_External_Rela);
   8301  1.1  christos 	      bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
   8302  1.1  christos 
   8303  1.1  christos 	      if (skip == -1)
   8304  1.1  christos 		continue;
   8305  1.1  christos 
   8306  1.1  christos 	      /* This reloc will be computed at runtime.  We clear the memory
   8307  1.1  christos 		 so that it contains predictable value.  */
   8308  1.1  christos 	      if (! skip
   8309  1.1  christos 		  && ((input_section->flags & SEC_ALLOC) != 0
   8310  1.1  christos 		      || ELF32_R_TYPE (outrel.r_info) != R_PPC_RELATIVE))
   8311  1.1  christos 		{
   8312  1.1  christos 		  relocation = howto->pc_relative ? outrel.r_offset : 0;
   8313  1.1  christos 		  addend = 0;
   8314  1.1  christos 		  break;
   8315  1.1  christos 		}
   8316  1.1  christos 	    }
   8317  1.1  christos 	  break;
   8318  1.1  christos 
   8319  1.1  christos 	case R_PPC_RELAX_PLT:
   8320  1.1  christos 	case R_PPC_RELAX_PLTREL24:
   8321  1.1  christos 	  if (h != NULL)
   8322  1.1  christos 	    {
   8323  1.1  christos 	      struct plt_entry *ent;
   8324  1.1  christos 	      bfd_vma got2_addend = 0;
   8325  1.1  christos 
   8326  1.1  christos 	      if (r_type == R_PPC_RELAX_PLTREL24)
   8327  1.1  christos 		{
   8328  1.1  christos 		  if (info->shared)
   8329  1.1  christos 		    got2_addend = addend;
   8330  1.1  christos 		  addend = 0;
   8331  1.1  christos 		}
   8332  1.1  christos 	      ent = find_plt_ent (&h->plt.plist, got2, got2_addend);
   8333  1.1  christos 	      if (htab->plt_type == PLT_NEW)
   8334  1.1  christos 		relocation = (htab->glink->output_section->vma
   8335  1.1  christos 			      + htab->glink->output_offset
   8336  1.1  christos 			      + ent->glink_offset);
   8337  1.1  christos 	      else
   8338  1.1  christos 		relocation = (htab->plt->output_section->vma
   8339  1.1  christos 			      + htab->plt->output_offset
   8340  1.1  christos 			      + ent->plt.offset);
   8341  1.1  christos 	    }
   8342  1.1  christos 	  /* Fall thru */
   8343  1.1  christos 
   8344  1.1  christos 	case R_PPC_RELAX:
   8345  1.1  christos 	  if (info->shared)
   8346  1.1  christos 	    relocation -= (input_section->output_section->vma
   8347  1.1  christos 			   + input_section->output_offset
   8348  1.1  christos 			   + rel->r_offset - 4);
   8349  1.1  christos 
   8350  1.1  christos 	  {
   8351  1.1  christos 	    unsigned long t0;
   8352  1.1  christos 	    unsigned long t1;
   8353  1.1  christos 
   8354  1.1  christos 	    t0 = bfd_get_32 (output_bfd, contents + rel->r_offset);
   8355  1.1  christos 	    t1 = bfd_get_32 (output_bfd, contents + rel->r_offset + 4);
   8356  1.1  christos 
   8357  1.1  christos 	    /* We're clearing the bits for R_PPC_ADDR16_HA
   8358  1.1  christos 	       and R_PPC_ADDR16_LO here.  */
   8359  1.1  christos 	    t0 &= ~0xffff;
   8360  1.1  christos 	    t1 &= ~0xffff;
   8361  1.1  christos 
   8362  1.1  christos 	    /* t0 is HA, t1 is LO */
   8363  1.1  christos 	    relocation += addend;
   8364  1.1  christos 	    t0 |= ((relocation + 0x8000) >> 16) & 0xffff;
   8365  1.1  christos 	    t1 |= relocation & 0xffff;
   8366  1.1  christos 
   8367  1.1  christos 	    bfd_put_32 (output_bfd, t0, contents + rel->r_offset);
   8368  1.1  christos 	    bfd_put_32 (output_bfd, t1, contents + rel->r_offset + 4);
   8369  1.1  christos 
   8370  1.1  christos 	    /* Rewrite the reloc and convert one of the trailing nop
   8371  1.1  christos 	       relocs to describe this relocation.  */
   8372  1.1  christos 	    BFD_ASSERT (ELF32_R_TYPE (relend[-1].r_info) == R_PPC_NONE);
   8373  1.1  christos 	    /* The relocs are at the bottom 2 bytes */
   8374  1.1  christos 	    rel[0].r_offset += 2;
   8375  1.1  christos 	    memmove (rel + 1, rel, (relend - rel - 1) * sizeof (*rel));
   8376  1.1  christos 	    rel[0].r_info = ELF32_R_INFO (r_symndx, R_PPC_ADDR16_HA);
   8377  1.1  christos 	    rel[1].r_offset += 4;
   8378  1.1  christos 	    rel[1].r_info = ELF32_R_INFO (r_symndx, R_PPC_ADDR16_LO);
   8379  1.1  christos 	    rel++;
   8380  1.1  christos 	  }
   8381  1.1  christos 	  continue;
   8382  1.1  christos 
   8383  1.1  christos 	  /* Indirect .sdata relocation.  */
   8384  1.1  christos 	case R_PPC_EMB_SDAI16:
   8385  1.1  christos 	  BFD_ASSERT (htab->sdata[0].section != NULL);
   8386  1.1  christos 	  if (!is_static_defined (htab->sdata[0].sym))
   8387  1.1  christos 	    {
   8388  1.1  christos 	      unresolved_reloc = TRUE;
   8389  1.1  christos 	      break;
   8390  1.1  christos 	    }
   8391  1.1  christos 	  relocation
   8392  1.1  christos 	    = elf_finish_pointer_linker_section (input_bfd, &htab->sdata[0],
   8393  1.1  christos 						 h, relocation, rel);
   8394  1.1  christos 	  addend = 0;
   8395  1.1  christos 	  break;
   8396  1.1  christos 
   8397  1.1  christos 	  /* Indirect .sdata2 relocation.  */
   8398  1.1  christos 	case R_PPC_EMB_SDA2I16:
   8399  1.1  christos 	  BFD_ASSERT (htab->sdata[1].section != NULL);
   8400  1.1  christos 	  if (!is_static_defined (htab->sdata[1].sym))
   8401  1.1  christos 	    {
   8402  1.1  christos 	      unresolved_reloc = TRUE;
   8403  1.1  christos 	      break;
   8404  1.1  christos 	    }
   8405  1.1  christos 	  relocation
   8406  1.1  christos 	    = elf_finish_pointer_linker_section (input_bfd, &htab->sdata[1],
   8407  1.1  christos 						 h, relocation, rel);
   8408  1.1  christos 	  addend = 0;
   8409  1.1  christos 	  break;
   8410  1.1  christos 
   8411  1.1  christos 	  /* Handle the TOC16 reloc.  We want to use the offset within the .got
   8412  1.1  christos 	     section, not the actual VMA.  This is appropriate when generating
   8413  1.1  christos 	     an embedded ELF object, for which the .got section acts like the
   8414  1.1  christos 	     AIX .toc section.  */
   8415  1.1  christos 	case R_PPC_TOC16:			/* phony GOT16 relocations */
   8416  1.1  christos 	  if (sec == NULL || sec->output_section == NULL)
   8417  1.1  christos 	    {
   8418  1.1  christos 	      unresolved_reloc = TRUE;
   8419  1.1  christos 	      break;
   8420  1.1  christos 	    }
   8421  1.1  christos 	  BFD_ASSERT (strcmp (bfd_get_section_name (sec->owner, sec),
   8422  1.1  christos 			      ".got") == 0
   8423  1.1  christos 		      || strcmp (bfd_get_section_name (sec->owner, sec),
   8424  1.1  christos 				 ".cgot") == 0);
   8425  1.1  christos 
   8426  1.1  christos 	  addend -= sec->output_section->vma + sec->output_offset + 0x8000;
   8427  1.1  christos 	  break;
   8428  1.1  christos 
   8429  1.1  christos 	case R_PPC_PLTREL24:
   8430  1.1  christos 	  if (h != NULL && ifunc == NULL)
   8431  1.1  christos 	    {
   8432  1.1  christos 	      struct plt_entry *ent = find_plt_ent (&h->plt.plist, got2,
   8433  1.1  christos 						    info->shared ? addend : 0);
   8434  1.1  christos 	      if (ent == NULL
   8435  1.1  christos 		  || htab->plt == NULL)
   8436  1.1  christos 		{
   8437  1.1  christos 		  /* We didn't make a PLT entry for this symbol.  This
   8438  1.1  christos 		     happens when statically linking PIC code, or when
   8439  1.1  christos 		     using -Bsymbolic.  */
   8440  1.1  christos 		}
   8441  1.1  christos 	      else
   8442  1.1  christos 		{
   8443  1.1  christos 		  /* Relocation is to the entry for this symbol in the
   8444  1.1  christos 		     procedure linkage table.  */
   8445  1.1  christos 		  unresolved_reloc = FALSE;
   8446  1.1  christos 		  if (htab->plt_type == PLT_NEW)
   8447  1.1  christos 		    relocation = (htab->glink->output_section->vma
   8448  1.1  christos 				  + htab->glink->output_offset
   8449  1.1  christos 				  + ent->glink_offset);
   8450  1.1  christos 		  else
   8451  1.1  christos 		    relocation = (htab->plt->output_section->vma
   8452  1.1  christos 				  + htab->plt->output_offset
   8453  1.1  christos 				  + ent->plt.offset);
   8454  1.1  christos 		}
   8455  1.1  christos 	    }
   8456  1.1  christos 
   8457  1.1  christos 	  /* R_PPC_PLTREL24 is rather special.  If non-zero, the
   8458  1.1  christos 	     addend specifies the GOT pointer offset within .got2.
   8459  1.1  christos 	     Don't apply it to the relocation field.  */
   8460  1.1  christos 	  addend = 0;
   8461  1.1  christos 	  break;
   8462  1.1  christos 
   8463  1.1  christos 	  /* Relocate against _SDA_BASE_.  */
   8464  1.1  christos 	case R_PPC_SDAREL16:
   8465  1.1  christos 	  {
   8466  1.1  christos 	    const char *name;
   8467  1.1  christos 	    struct elf_link_hash_entry *sda = htab->sdata[0].sym;
   8468  1.1  christos 
   8469  1.1  christos 	    if (sec == NULL
   8470  1.1  christos 		|| sec->output_section == NULL
   8471  1.1  christos 		|| !is_static_defined (sda))
   8472  1.1  christos 	      {
   8473  1.1  christos 		unresolved_reloc = TRUE;
   8474  1.1  christos 		break;
   8475  1.1  christos 	      }
   8476  1.1  christos 	    addend -= SYM_VAL (sda);
   8477  1.1  christos 
   8478  1.1  christos 	    name = bfd_get_section_name (output_bfd, sec->output_section);
   8479  1.1  christos 	    if (! ((CONST_STRNEQ (name, ".sdata")
   8480  1.1  christos 		    && (name[6] == 0 || name[6] == '.'))
   8481  1.1  christos 		   || (CONST_STRNEQ (name, ".sbss")
   8482  1.1  christos 		       && (name[5] == 0 || name[5] == '.'))))
   8483  1.1  christos 	      {
   8484  1.1  christos 		info->callbacks->einfo
   8485  1.1  christos 		  (_("%P: %B: the target (%s) of a %s relocation is "
   8486  1.1  christos 		     "in the wrong output section (%s)\n"),
   8487  1.1  christos 		   input_bfd,
   8488  1.1  christos 		   sym_name,
   8489  1.1  christos 		   howto->name,
   8490  1.1  christos 		   name);
   8491  1.1  christos 	      }
   8492  1.1  christos 	  }
   8493  1.1  christos 	  break;
   8494  1.1  christos 
   8495  1.1  christos 	  /* Relocate against _SDA2_BASE_.  */
   8496  1.1  christos 	case R_PPC_EMB_SDA2REL:
   8497  1.1  christos 	  {
   8498  1.1  christos 	    const char *name;
   8499  1.1  christos 	    struct elf_link_hash_entry *sda = htab->sdata[1].sym;
   8500  1.1  christos 
   8501  1.1  christos 	    if (sec == NULL
   8502  1.1  christos 		|| sec->output_section == NULL
   8503  1.1  christos 		|| !is_static_defined (sda))
   8504  1.1  christos 	      {
   8505  1.1  christos 		unresolved_reloc = TRUE;
   8506  1.1  christos 		break;
   8507  1.1  christos 	      }
   8508  1.1  christos 	    addend -= SYM_VAL (sda);
   8509  1.1  christos 
   8510  1.1  christos 	    name = bfd_get_section_name (output_bfd, sec->output_section);
   8511  1.1  christos 	    if (! (CONST_STRNEQ (name, ".sdata2")
   8512  1.1  christos 		   || CONST_STRNEQ (name, ".sbss2")))
   8513  1.1  christos 	      {
   8514  1.1  christos 		info->callbacks->einfo
   8515  1.1  christos 		  (_("%P: %B: the target (%s) of a %s relocation is "
   8516  1.1  christos 		     "in the wrong output section (%s)\n"),
   8517  1.1  christos 		   input_bfd,
   8518  1.1  christos 		   sym_name,
   8519  1.1  christos 		   howto->name,
   8520  1.1  christos 		   name);
   8521  1.1  christos 	      }
   8522  1.1  christos 	  }
   8523  1.1  christos 	  break;
   8524  1.1  christos 
   8525  1.1  christos 	case R_PPC_VLE_LO16A:
   8526  1.1  christos 	  relocation = (relocation + addend) & 0xffff;
   8527  1.1  christos 	  ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8528  1.1  christos                                relocation, split16a_type);
   8529  1.1  christos 	  continue;
   8530  1.1  christos 
   8531  1.1  christos 	case R_PPC_VLE_LO16D:
   8532  1.1  christos 	  relocation = (relocation + addend) & 0xffff;
   8533  1.1  christos 	  ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8534  1.1  christos                                relocation, split16d_type);
   8535  1.1  christos 	  continue;
   8536  1.1  christos 
   8537  1.1  christos 	case R_PPC_VLE_HI16A:
   8538  1.1  christos 	  relocation = ((relocation + addend) >> 16) & 0xffff;
   8539  1.1  christos 	  ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8540  1.1  christos                                relocation, split16a_type);
   8541  1.1  christos 	  continue;
   8542  1.1  christos 
   8543  1.1  christos 	case R_PPC_VLE_HI16D:
   8544  1.1  christos 	  relocation = ((relocation + addend) >> 16) & 0xffff;
   8545  1.1  christos 	  ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8546  1.1  christos                                relocation, split16d_type);
   8547  1.1  christos 	  continue;
   8548  1.1  christos 
   8549  1.1  christos 	case R_PPC_VLE_HA16A:
   8550  1.1  christos 	  {
   8551  1.1  christos 	    bfd_vma value = relocation + addend;
   8552  1.1  christos 	    value = (((value >> 16) + ((value & 0x8000) ? 1 : 0)) & 0xffff);
   8553  1.1  christos 	    ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8554  1.1  christos                                  value, split16a_type);
   8555  1.1  christos 	  }
   8556  1.1  christos 	  continue;
   8557  1.1  christos 
   8558  1.1  christos 	case R_PPC_VLE_HA16D:
   8559  1.1  christos 	  {
   8560  1.1  christos 	    bfd_vma value = relocation + addend;
   8561  1.1  christos 	    value = (((value >> 16) + ((value & 0x8000) ? 1 : 0)) & 0xffff);
   8562  1.1  christos 	    ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8563  1.1  christos                                  value, split16d_type);
   8564  1.1  christos 	  }
   8565  1.1  christos 	  continue;
   8566  1.1  christos 
   8567  1.1  christos 	  /* Relocate against either _SDA_BASE_, _SDA2_BASE_, or 0.  */
   8568  1.1  christos 	case R_PPC_EMB_SDA21:
   8569  1.1  christos 	case R_PPC_VLE_SDA21:
   8570  1.1  christos 	case R_PPC_EMB_RELSDA:
   8571  1.1  christos 	case R_PPC_VLE_SDA21_LO:
   8572  1.1  christos 	  {
   8573  1.1  christos 	    const char *name;
   8574  1.1  christos 	    int reg;
   8575  1.1  christos 	    struct elf_link_hash_entry *sda = NULL;
   8576  1.1  christos 
   8577  1.1  christos 	    if (sec == NULL || sec->output_section == NULL)
   8578  1.1  christos 	      {
   8579  1.1  christos 		unresolved_reloc = TRUE;
   8580  1.1  christos 		break;
   8581  1.1  christos 	      }
   8582  1.1  christos 
   8583  1.1  christos 	    name = bfd_get_section_name (output_bfd, sec->output_section);
   8584  1.1  christos 	    if (((CONST_STRNEQ (name, ".sdata")
   8585  1.1  christos 		  && (name[6] == 0 || name[6] == '.'))
   8586  1.1  christos 		 || (CONST_STRNEQ (name, ".sbss")
   8587  1.1  christos 		     && (name[5] == 0 || name[5] == '.'))))
   8588  1.1  christos 	      {
   8589  1.1  christos 		reg = 13;
   8590  1.1  christos 		sda = htab->sdata[0].sym;
   8591  1.1  christos 	      }
   8592  1.1  christos 	    else if (CONST_STRNEQ (name, ".sdata2")
   8593  1.1  christos 		     || CONST_STRNEQ (name, ".sbss2"))
   8594  1.1  christos 	      {
   8595  1.1  christos 		reg = 2;
   8596  1.1  christos 		sda = htab->sdata[1].sym;
   8597  1.1  christos 	      }
   8598  1.1  christos 	    else if (strcmp (name, ".PPC.EMB.sdata0") == 0
   8599  1.1  christos 		     || strcmp (name, ".PPC.EMB.sbss0") == 0)
   8600  1.1  christos 	      {
   8601  1.1  christos 		reg = 0;
   8602  1.1  christos 	      }
   8603  1.1  christos 	    else
   8604  1.1  christos 	      {
   8605  1.1  christos 		info->callbacks->einfo
   8606  1.1  christos 		  (_("%P: %B: the target (%s) of a %s relocation is "
   8607  1.1  christos 		     "in the wrong output section (%s)\n"),
   8608  1.1  christos 		   input_bfd,
   8609  1.1  christos 		   sym_name,
   8610  1.1  christos 		   howto->name,
   8611  1.1  christos 		   name);
   8612  1.1  christos 
   8613  1.1  christos 		bfd_set_error (bfd_error_bad_value);
   8614  1.1  christos 		ret = FALSE;
   8615  1.1  christos 		continue;
   8616  1.1  christos 	      }
   8617  1.1  christos 
   8618  1.1  christos 	    if (sda != NULL)
   8619  1.1  christos 	      {
   8620  1.1  christos 		if (!is_static_defined (sda))
   8621  1.1  christos 		  {
   8622  1.1  christos 		    unresolved_reloc = TRUE;
   8623  1.1  christos 		    break;
   8624  1.1  christos 		  }
   8625  1.1  christos 		addend -= SYM_VAL (sda);
   8626  1.1  christos 	      }
   8627  1.1  christos 
   8628  1.1  christos 	    if (reg == 0
   8629  1.1  christos 		&& (r_type == R_PPC_VLE_SDA21
   8630  1.1  christos 		    || r_type == R_PPC_VLE_SDA21_LO))
   8631  1.1  christos 	      {
   8632  1.1  christos 		/* Use the split20 format.  */
   8633  1.1  christos 		bfd_vma insn, bits12to15, bits21to31;
   8634  1.1  christos 		bfd_vma value  = (relocation + rel->r_offset) & 0xffff;
   8635  1.1  christos 		/* Propagate sign bit, if necessary.  */
   8636  1.1  christos 		insn = (value & 0x8000) ? 0x70107800 : 0x70000000;
   8637  1.1  christos 		bits12to15 = value & 0x700;
   8638  1.1  christos 		bits21to31 = value & 0x7ff;
   8639  1.1  christos 		insn |= bits12to15;
   8640  1.1  christos 		insn |= bits21to31;
   8641  1.1  christos   		bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
   8642  1.1  christos 		continue;
   8643  1.1  christos 	      }
   8644  1.1  christos 	    else if (r_type == R_PPC_EMB_SDA21
   8645  1.1  christos 		     || r_type == R_PPC_VLE_SDA21
   8646  1.1  christos 		     || r_type == R_PPC_VLE_SDA21_LO)
   8647  1.1  christos 	      {
   8648  1.1  christos 		bfd_vma insn;  /* Fill in register field.  */
   8649  1.1  christos 
   8650  1.1  christos 		insn = bfd_get_32 (output_bfd, contents + rel->r_offset);
   8651  1.1  christos 		insn = (insn & ~RA_REGISTER_MASK) | (reg << RA_REGISTER_SHIFT);
   8652  1.1  christos 		bfd_put_32 (output_bfd, insn, contents + rel->r_offset);
   8653  1.1  christos 	      }
   8654  1.1  christos 	  }
   8655  1.1  christos 	  break;
   8656  1.1  christos 
   8657  1.1  christos 	case R_PPC_VLE_SDAREL_LO16A:
   8658  1.1  christos 	case R_PPC_VLE_SDAREL_LO16D:
   8659  1.1  christos 	case R_PPC_VLE_SDAREL_HI16A:
   8660  1.1  christos 	case R_PPC_VLE_SDAREL_HI16D:
   8661  1.1  christos 	case R_PPC_VLE_SDAREL_HA16A:
   8662  1.1  christos 	case R_PPC_VLE_SDAREL_HA16D:
   8663  1.1  christos 	  {
   8664  1.1  christos 	    bfd_vma value;
   8665  1.1  christos 	    const char *name;
   8666  1.1  christos 	    //int reg;
   8667  1.1  christos 	    struct elf_link_hash_entry *sda = NULL;
   8668  1.1  christos 
   8669  1.1  christos 	    if (sec == NULL || sec->output_section == NULL)
   8670  1.1  christos 	      {
   8671  1.1  christos 		unresolved_reloc = TRUE;
   8672  1.1  christos 		break;
   8673  1.1  christos 	      }
   8674  1.1  christos 
   8675  1.1  christos 	    name = bfd_get_section_name (output_bfd, sec->output_section);
   8676  1.1  christos 	    if (((CONST_STRNEQ (name, ".sdata")
   8677  1.1  christos 		  && (name[6] == 0 || name[6] == '.'))
   8678  1.1  christos 		 || (CONST_STRNEQ (name, ".sbss")
   8679  1.1  christos 		     && (name[5] == 0 || name[5] == '.'))))
   8680  1.1  christos 	      {
   8681  1.1  christos 		//reg = 13;
   8682  1.1  christos 		sda = htab->sdata[0].sym;
   8683  1.1  christos 	      }
   8684  1.1  christos 	    else if (CONST_STRNEQ (name, ".sdata2")
   8685  1.1  christos 		     || CONST_STRNEQ (name, ".sbss2"))
   8686  1.1  christos 	      {
   8687  1.1  christos 		//reg = 2;
   8688  1.1  christos 		sda = htab->sdata[1].sym;
   8689  1.1  christos 	      }
   8690  1.1  christos 	    else
   8691  1.1  christos 	      {
   8692  1.1  christos 		(*_bfd_error_handler)
   8693  1.1  christos 		  (_("%B: the target (%s) of a %s relocation is "
   8694  1.1  christos 		     "in the wrong output section (%s)"),
   8695  1.1  christos 		   input_bfd,
   8696  1.1  christos 		   sym_name,
   8697  1.1  christos 		   howto->name,
   8698  1.1  christos 		   name);
   8699  1.1  christos 
   8700  1.1  christos 		bfd_set_error (bfd_error_bad_value);
   8701  1.1  christos 		ret = FALSE;
   8702  1.1  christos 		continue;
   8703  1.1  christos 	      }
   8704  1.1  christos 
   8705  1.1  christos 	    if (sda != NULL)
   8706  1.1  christos 	      {
   8707  1.1  christos 		if (!is_static_defined (sda))
   8708  1.1  christos 		  {
   8709  1.1  christos 		    unresolved_reloc = TRUE;
   8710  1.1  christos 		    break;
   8711  1.1  christos 		  }
   8712  1.1  christos 	      }
   8713  1.1  christos 
   8714  1.1  christos 	   value = sda->root.u.def.section->output_section->vma
   8715  1.1  christos    		   + sda->root.u.def.section->output_offset;
   8716  1.1  christos 
   8717  1.1  christos 	   if (r_type == R_PPC_VLE_SDAREL_LO16A)
   8718  1.1  christos 	      {
   8719  1.1  christos 		value = (value + addend) & 0xffff;
   8720  1.1  christos 	        ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8721  1.1  christos                                      value, split16a_type);
   8722  1.1  christos 	      }
   8723  1.1  christos 	   else if (r_type == R_PPC_VLE_SDAREL_LO16D)
   8724  1.1  christos 	      {
   8725  1.1  christos 		value = (value + addend) & 0xffff;
   8726  1.1  christos 	        ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8727  1.1  christos                                      value, split16d_type);
   8728  1.1  christos 	      }
   8729  1.1  christos 	   else if (r_type == R_PPC_VLE_SDAREL_HI16A)
   8730  1.1  christos 	      {
   8731  1.1  christos 		value = ((value + addend) >> 16) & 0xffff;
   8732  1.1  christos 	        ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8733  1.1  christos                                      value, split16a_type);
   8734  1.1  christos 	      }
   8735  1.1  christos 	   else if (r_type == R_PPC_VLE_SDAREL_HI16D)
   8736  1.1  christos 	      {
   8737  1.1  christos 		value = ((value + addend) >> 16) & 0xffff;
   8738  1.1  christos 	        ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8739  1.1  christos                                      value, split16d_type);
   8740  1.1  christos 	      }
   8741  1.1  christos 	   else if (r_type == R_PPC_VLE_SDAREL_HA16A)
   8742  1.1  christos 	      {
   8743  1.1  christos 		value += addend;
   8744  1.1  christos 		value = (((value >> 16) + ((value & 0x8000) ? 1 : 0)) & 0xffff);
   8745  1.1  christos 	        ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8746  1.1  christos                                      value, split16a_type);
   8747  1.1  christos 	      }
   8748  1.1  christos 	   else if (r_type == R_PPC_VLE_SDAREL_HA16D)
   8749  1.1  christos 	      {
   8750  1.1  christos 		value += addend;
   8751  1.1  christos 		value = (((value >> 16) + ((value & 0x8000) ? 1 : 0)) & 0xffff);
   8752  1.1  christos 	        ppc_elf_vle_split16 (output_bfd, contents, rel->r_offset,
   8753  1.1  christos                                      value, split16d_type);
   8754  1.1  christos 	      }
   8755  1.1  christos 	  }
   8756  1.1  christos 	  continue;
   8757  1.1  christos 
   8758  1.1  christos 	  /* Relocate against the beginning of the section.  */
   8759  1.1  christos 	case R_PPC_SECTOFF:
   8760  1.1  christos 	case R_PPC_SECTOFF_LO:
   8761  1.1  christos 	case R_PPC_SECTOFF_HI:
   8762  1.1  christos 	case R_PPC_SECTOFF_HA:
   8763  1.1  christos 	  if (sec == NULL || sec->output_section == NULL)
   8764  1.1  christos 	    {
   8765  1.1  christos 	      unresolved_reloc = TRUE;
   8766  1.1  christos 	      break;
   8767  1.1  christos 	    }
   8768  1.1  christos 	  addend -= sec->output_section->vma;
   8769  1.1  christos 	  break;
   8770  1.1  christos 
   8771  1.1  christos 	  /* Negative relocations.  */
   8772  1.1  christos 	case R_PPC_EMB_NADDR32:
   8773  1.1  christos 	case R_PPC_EMB_NADDR16:
   8774  1.1  christos 	case R_PPC_EMB_NADDR16_LO:
   8775  1.1  christos 	case R_PPC_EMB_NADDR16_HI:
   8776  1.1  christos 	case R_PPC_EMB_NADDR16_HA:
   8777  1.1  christos 	  addend -= 2 * relocation;
   8778  1.1  christos 	  break;
   8779  1.1  christos 
   8780  1.1  christos 	case R_PPC_COPY:
   8781  1.1  christos 	case R_PPC_GLOB_DAT:
   8782  1.1  christos 	case R_PPC_JMP_SLOT:
   8783  1.1  christos 	case R_PPC_RELATIVE:
   8784  1.1  christos 	case R_PPC_IRELATIVE:
   8785  1.1  christos 	case R_PPC_PLT32:
   8786  1.1  christos 	case R_PPC_PLTREL32:
   8787  1.1  christos 	case R_PPC_PLT16_LO:
   8788  1.1  christos 	case R_PPC_PLT16_HI:
   8789  1.1  christos 	case R_PPC_PLT16_HA:
   8790  1.1  christos 	case R_PPC_ADDR30:
   8791  1.1  christos 	case R_PPC_EMB_RELSEC16:
   8792  1.1  christos 	case R_PPC_EMB_RELST_LO:
   8793  1.1  christos 	case R_PPC_EMB_RELST_HI:
   8794  1.1  christos 	case R_PPC_EMB_RELST_HA:
   8795  1.1  christos 	case R_PPC_EMB_BIT_FLD:
   8796  1.1  christos 	  info->callbacks->einfo
   8797  1.1  christos 	    (_("%P: %B: relocation %s is not yet supported for symbol %s\n"),
   8798  1.1  christos 	     input_bfd,
   8799  1.1  christos 	     howto->name,
   8800  1.1  christos 	     sym_name);
   8801  1.1  christos 
   8802  1.1  christos 	  bfd_set_error (bfd_error_invalid_operation);
   8803  1.1  christos 	  ret = FALSE;
   8804  1.1  christos 	  continue;
   8805  1.1  christos 	}
   8806  1.1  christos 
   8807  1.1  christos       /* Do any further special processing.  */
   8808  1.1  christos       switch (r_type)
   8809  1.1  christos 	{
   8810  1.1  christos 	default:
   8811  1.1  christos 	  break;
   8812  1.1  christos 
   8813  1.1  christos 	case R_PPC_ADDR16_HA:
   8814  1.1  christos 	case R_PPC_REL16_HA:
   8815  1.1  christos 	case R_PPC_SECTOFF_HA:
   8816  1.1  christos 	case R_PPC_TPREL16_HA:
   8817  1.1  christos 	case R_PPC_DTPREL16_HA:
   8818  1.1  christos 	case R_PPC_EMB_NADDR16_HA:
   8819  1.1  christos 	case R_PPC_EMB_RELST_HA:
   8820  1.1  christos 	  /* It's just possible that this symbol is a weak symbol
   8821  1.1  christos 	     that's not actually defined anywhere.  In that case,
   8822  1.1  christos 	     'sec' would be NULL, and we should leave the symbol
   8823  1.1  christos 	     alone (it will be set to zero elsewhere in the link).  */
   8824  1.1  christos 	  if (sec == NULL)
   8825  1.1  christos 	    break;
   8826  1.1  christos 	  /* Fall thru */
   8827  1.1  christos 
   8828  1.1  christos 	case R_PPC_PLT16_HA:
   8829  1.1  christos 	case R_PPC_GOT16_HA:
   8830  1.1  christos 	case R_PPC_GOT_TLSGD16_HA:
   8831  1.1  christos 	case R_PPC_GOT_TLSLD16_HA:
   8832  1.1  christos 	case R_PPC_GOT_TPREL16_HA:
   8833  1.1  christos 	case R_PPC_GOT_DTPREL16_HA:
   8834  1.1  christos 	  /* Add 0x10000 if sign bit in 0:15 is set.
   8835  1.1  christos 	     Bits 0:15 are not used.  */
   8836  1.1  christos 	  addend += 0x8000;
   8837  1.1  christos 	  break;
   8838  1.1  christos 
   8839  1.1  christos 	case R_PPC_ADDR16:
   8840  1.1  christos 	case R_PPC_ADDR16_LO:
   8841  1.1  christos 	case R_PPC_GOT16:
   8842  1.1  christos 	case R_PPC_GOT16_LO:
   8843  1.1  christos 	case R_PPC_SDAREL16:
   8844  1.1  christos 	case R_PPC_SECTOFF:
   8845  1.1  christos 	case R_PPC_SECTOFF_LO:
   8846  1.1  christos 	case R_PPC_DTPREL16:
   8847  1.1  christos 	case R_PPC_DTPREL16_LO:
   8848  1.1  christos 	case R_PPC_TPREL16:
   8849  1.1  christos 	case R_PPC_TPREL16_LO:
   8850  1.1  christos 	case R_PPC_GOT_TLSGD16:
   8851  1.1  christos 	case R_PPC_GOT_TLSGD16_LO:
   8852  1.1  christos 	case R_PPC_GOT_TLSLD16:
   8853  1.1  christos 	case R_PPC_GOT_TLSLD16_LO:
   8854  1.1  christos 	case R_PPC_GOT_DTPREL16:
   8855  1.1  christos 	case R_PPC_GOT_DTPREL16_LO:
   8856  1.1  christos 	case R_PPC_GOT_TPREL16:
   8857  1.1  christos 	case R_PPC_GOT_TPREL16_LO:
   8858  1.1  christos 	  {
   8859  1.1  christos 	    /* The 32-bit ABI lacks proper relocations to deal with
   8860  1.1  christos 	       certain 64-bit instructions.  Prevent damage to bits
   8861  1.1  christos 	       that make up part of the insn opcode.  */
   8862  1.1  christos 	    unsigned int insn, mask, lobit;
   8863  1.1  christos 
   8864  1.1  christos 	    insn = bfd_get_32 (output_bfd, contents + rel->r_offset - d_offset);
   8865  1.1  christos 	    mask = 0;
   8866  1.1  christos 	    if (is_insn_ds_form (insn))
   8867  1.1  christos 	      mask = 3;
   8868  1.1  christos 	    else if (is_insn_dq_form (insn))
   8869  1.1  christos 	      mask = 15;
   8870  1.1  christos 	    else
   8871  1.1  christos 	      break;
   8872  1.1  christos 	    lobit = mask & (relocation + addend);
   8873  1.1  christos 	    if (lobit != 0)
   8874  1.1  christos 	      {
   8875  1.1  christos 		addend -= lobit;
   8876  1.1  christos 		info->callbacks->einfo
   8877  1.1  christos 		  (_("%P: %H: error: %s against `%s' not a multiple of %u\n"),
   8878  1.1  christos 		   input_bfd, input_section, rel->r_offset,
   8879  1.1  christos 		   howto->name, sym_name, mask + 1);
   8880  1.1  christos 		bfd_set_error (bfd_error_bad_value);
   8881  1.1  christos 		ret = FALSE;
   8882  1.1  christos 	      }
   8883  1.1  christos 	    addend += insn & mask;
   8884  1.1  christos 	  }
   8885  1.1  christos 	  break;
   8886  1.1  christos 	}
   8887  1.1  christos 
   8888  1.1  christos #ifdef DEBUG
   8889  1.1  christos       fprintf (stderr, "\ttype = %s (%d), name = %s, symbol index = %ld, "
   8890  1.1  christos 	       "offset = %ld, addend = %ld\n",
   8891  1.1  christos 	       howto->name,
   8892  1.1  christos 	       (int) r_type,
   8893  1.1  christos 	       sym_name,
   8894  1.1  christos 	       r_symndx,
   8895  1.1  christos 	       (long) rel->r_offset,
   8896  1.1  christos 	       (long) addend);
   8897  1.1  christos #endif
   8898  1.1  christos 
   8899  1.1  christos       if (unresolved_reloc
   8900  1.1  christos 	  && !((input_section->flags & SEC_DEBUGGING) != 0
   8901  1.1  christos 	       && h->def_dynamic)
   8902  1.1  christos 	  && _bfd_elf_section_offset (output_bfd, info, input_section,
   8903  1.1  christos 				      rel->r_offset) != (bfd_vma) -1)
   8904  1.1  christos 	{
   8905  1.1  christos 	  info->callbacks->einfo
   8906  1.1  christos 	    (_("%P: %H: unresolvable %s relocation against symbol `%s'\n"),
   8907  1.1  christos 	     input_bfd, input_section, rel->r_offset,
   8908  1.1  christos 	     howto->name,
   8909  1.1  christos 	     sym_name);
   8910  1.1  christos 	  ret = FALSE;
   8911  1.1  christos 	}
   8912  1.1  christos 
   8913  1.1  christos       r = _bfd_final_link_relocate (howto,
   8914  1.1  christos 				    input_bfd,
   8915  1.1  christos 				    input_section,
   8916  1.1  christos 				    contents,
   8917  1.1  christos 				    rel->r_offset,
   8918  1.1  christos 				    relocation,
   8919  1.1  christos 				    addend);
   8920  1.1  christos 
   8921  1.1  christos       if (r != bfd_reloc_ok)
   8922  1.1  christos 	{
   8923  1.1  christos 	  if (r == bfd_reloc_overflow)
   8924  1.1  christos 	    {
   8925  1.1  christos 	      if (warned)
   8926  1.1  christos 		continue;
   8927  1.1  christos 	      if (h != NULL
   8928  1.1  christos 		  && h->root.type == bfd_link_hash_undefweak
   8929  1.1  christos 		  && howto->pc_relative)
   8930  1.1  christos 		{
   8931  1.1  christos 		  /* Assume this is a call protected by other code that
   8932  1.1  christos 		     detect the symbol is undefined.  If this is the case,
   8933  1.1  christos 		     we can safely ignore the overflow.  If not, the
   8934  1.1  christos 		     program is hosed anyway, and a little warning isn't
   8935  1.1  christos 		     going to help.  */
   8936  1.1  christos 
   8937  1.1  christos 		  continue;
   8938  1.1  christos 		}
   8939  1.1  christos 
   8940  1.1  christos 	      if (! (*info->callbacks->reloc_overflow) (info,
   8941  1.1  christos 							(h ? &h->root : NULL),
   8942  1.1  christos 							sym_name,
   8943  1.1  christos 							howto->name,
   8944  1.1  christos 							rel->r_addend,
   8945  1.1  christos 							input_bfd,
   8946  1.1  christos 							input_section,
   8947  1.1  christos 							rel->r_offset))
   8948  1.1  christos 		return FALSE;
   8949  1.1  christos 	    }
   8950  1.1  christos 	  else
   8951  1.1  christos 	    {
   8952  1.1  christos 	      info->callbacks->einfo
   8953  1.1  christos 		(_("%P: %H: %s reloc against `%s': error %d\n"),
   8954  1.1  christos 		 input_bfd, input_section, rel->r_offset,
   8955  1.1  christos 		 howto->name, sym_name, (int) r);
   8956  1.1  christos 	      ret = FALSE;
   8957  1.1  christos 	    }
   8958  1.1  christos 	}
   8959  1.1  christos     }
   8960  1.1  christos 
   8961  1.1  christos #ifdef DEBUG
   8962  1.1  christos   fprintf (stderr, "\n");
   8963  1.1  christos #endif
   8964  1.1  christos 
   8965  1.1  christos   return ret;
   8966  1.1  christos }
   8967  1.1  christos 
   8968  1.1  christos /* Finish up dynamic symbol handling.  We set the contents of various
   8970  1.1  christos    dynamic sections here.  */
   8971  1.1  christos 
   8972  1.1  christos static bfd_boolean
   8973  1.1  christos ppc_elf_finish_dynamic_symbol (bfd *output_bfd,
   8974  1.1  christos 			       struct bfd_link_info *info,
   8975  1.1  christos 			       struct elf_link_hash_entry *h,
   8976  1.1  christos 			       Elf_Internal_Sym *sym)
   8977  1.1  christos {
   8978  1.1  christos   struct ppc_elf_link_hash_table *htab;
   8979  1.1  christos   struct plt_entry *ent;
   8980  1.1  christos   bfd_boolean doneone;
   8981  1.1  christos 
   8982  1.1  christos #ifdef DEBUG
   8983  1.1  christos   fprintf (stderr, "ppc_elf_finish_dynamic_symbol called for %s",
   8984  1.1  christos 	   h->root.root.string);
   8985  1.1  christos #endif
   8986  1.1  christos 
   8987  1.1  christos   htab = ppc_elf_hash_table (info);
   8988  1.1  christos   BFD_ASSERT (htab->elf.dynobj != NULL);
   8989  1.1  christos 
   8990  1.1  christos   doneone = FALSE;
   8991  1.1  christos   for (ent = h->plt.plist; ent != NULL; ent = ent->next)
   8992  1.1  christos     if (ent->plt.offset != (bfd_vma) -1)
   8993  1.1  christos       {
   8994  1.1  christos 	if (!doneone)
   8995  1.1  christos 	  {
   8996  1.1  christos 	    Elf_Internal_Rela rela;
   8997  1.1  christos 	    bfd_byte *loc;
   8998  1.1  christos 	    bfd_vma reloc_index;
   8999  1.1  christos 
   9000  1.1  christos 	    if (htab->plt_type == PLT_NEW
   9001  1.1  christos 		|| !htab->elf.dynamic_sections_created
   9002  1.1  christos 		|| h->dynindx == -1)
   9003  1.1  christos 	      reloc_index = ent->plt.offset / 4;
   9004  1.1  christos 	    else
   9005  1.1  christos 	      {
   9006  1.1  christos 		reloc_index = ((ent->plt.offset - htab->plt_initial_entry_size)
   9007  1.1  christos 			       / htab->plt_slot_size);
   9008  1.1  christos 		if (reloc_index > PLT_NUM_SINGLE_ENTRIES
   9009  1.1  christos 		    && htab->plt_type == PLT_OLD)
   9010  1.1  christos 		  reloc_index -= (reloc_index - PLT_NUM_SINGLE_ENTRIES) / 2;
   9011  1.1  christos 	      }
   9012  1.1  christos 
   9013  1.1  christos 	    /* This symbol has an entry in the procedure linkage table.
   9014  1.1  christos 	       Set it up.  */
   9015  1.1  christos 	    if (htab->plt_type == PLT_VXWORKS
   9016  1.1  christos 		&& htab->elf.dynamic_sections_created
   9017  1.1  christos 		&& h->dynindx != -1)
   9018  1.1  christos 	      {
   9019  1.1  christos 		bfd_vma got_offset;
   9020  1.1  christos 		const bfd_vma *plt_entry;
   9021  1.1  christos 
   9022  1.1  christos 		/* The first three entries in .got.plt are reserved.  */
   9023  1.1  christos 		got_offset = (reloc_index + 3) * 4;
   9024  1.1  christos 
   9025  1.1  christos 		/* Use the right PLT. */
   9026  1.1  christos 		plt_entry = info->shared ? ppc_elf_vxworks_pic_plt_entry
   9027  1.1  christos 			    : ppc_elf_vxworks_plt_entry;
   9028  1.1  christos 
   9029  1.1  christos 		/* Fill in the .plt on VxWorks.  */
   9030  1.1  christos 		if (info->shared)
   9031  1.1  christos 		  {
   9032  1.1  christos 		    bfd_put_32 (output_bfd,
   9033  1.1  christos 				plt_entry[0] | PPC_HA (got_offset),
   9034  1.1  christos 				htab->plt->contents + ent->plt.offset + 0);
   9035  1.1  christos 		    bfd_put_32 (output_bfd,
   9036  1.1  christos 				plt_entry[1] | PPC_LO (got_offset),
   9037  1.1  christos 				htab->plt->contents + ent->plt.offset + 4);
   9038  1.1  christos 		  }
   9039  1.1  christos 		else
   9040  1.1  christos 		  {
   9041  1.1  christos 		    bfd_vma got_loc = got_offset + SYM_VAL (htab->elf.hgot);
   9042  1.1  christos 
   9043  1.1  christos 		    bfd_put_32 (output_bfd,
   9044  1.1  christos 				plt_entry[0] | PPC_HA (got_loc),
   9045  1.1  christos 				htab->plt->contents + ent->plt.offset + 0);
   9046  1.1  christos 		    bfd_put_32 (output_bfd,
   9047  1.1  christos 				plt_entry[1] | PPC_LO (got_loc),
   9048  1.1  christos 				htab->plt->contents + ent->plt.offset + 4);
   9049  1.1  christos 		  }
   9050  1.1  christos 
   9051  1.1  christos 		bfd_put_32 (output_bfd, plt_entry[2],
   9052  1.1  christos 			    htab->plt->contents + ent->plt.offset + 8);
   9053  1.1  christos 		bfd_put_32 (output_bfd, plt_entry[3],
   9054  1.1  christos 			    htab->plt->contents + ent->plt.offset + 12);
   9055  1.1  christos 
   9056  1.1  christos 		/* This instruction is an immediate load.  The value loaded is
   9057  1.1  christos 		   the byte offset of the R_PPC_JMP_SLOT relocation from the
   9058  1.1  christos 		   start of the .rela.plt section.  The value is stored in the
   9059  1.1  christos 		   low-order 16 bits of the load instruction.  */
   9060  1.1  christos 		/* NOTE: It appears that this is now an index rather than a
   9061  1.1  christos 		   prescaled offset.  */
   9062  1.1  christos 		bfd_put_32 (output_bfd,
   9063  1.1  christos 			    plt_entry[4] | reloc_index,
   9064  1.1  christos 			    htab->plt->contents + ent->plt.offset + 16);
   9065  1.1  christos 		/* This instruction is a PC-relative branch whose target is
   9066  1.1  christos 		   the start of the PLT section.  The address of this branch
   9067  1.1  christos 		   instruction is 20 bytes beyond the start of this PLT entry.
   9068  1.1  christos 		   The address is encoded in bits 6-29, inclusive.  The value
   9069  1.1  christos 		   stored is right-shifted by two bits, permitting a 26-bit
   9070  1.1  christos 		   offset.  */
   9071  1.1  christos 		bfd_put_32 (output_bfd,
   9072  1.1  christos 			    (plt_entry[5]
   9073  1.1  christos 			     | (-(ent->plt.offset + 20) & 0x03fffffc)),
   9074  1.1  christos 			    htab->plt->contents + ent->plt.offset + 20);
   9075  1.1  christos 		bfd_put_32 (output_bfd, plt_entry[6],
   9076  1.1  christos 			    htab->plt->contents + ent->plt.offset + 24);
   9077  1.1  christos 		bfd_put_32 (output_bfd, plt_entry[7],
   9078  1.1  christos 			    htab->plt->contents + ent->plt.offset + 28);
   9079  1.1  christos 
   9080  1.1  christos 		/* Fill in the GOT entry corresponding to this PLT slot with
   9081  1.1  christos 		   the address immediately after the "bctr" instruction
   9082  1.1  christos 		   in this PLT entry.  */
   9083  1.1  christos 		bfd_put_32 (output_bfd, (htab->plt->output_section->vma
   9084  1.1  christos 					 + htab->plt->output_offset
   9085  1.1  christos 					 + ent->plt.offset + 16),
   9086  1.1  christos 			    htab->sgotplt->contents + got_offset);
   9087  1.1  christos 
   9088  1.1  christos 		if (!info->shared)
   9089  1.1  christos 		  {
   9090  1.1  christos 		    /* Fill in a couple of entries in .rela.plt.unloaded.  */
   9091  1.1  christos 		    loc = htab->srelplt2->contents
   9092  1.1  christos 		      + ((VXWORKS_PLTRESOLVE_RELOCS + reloc_index
   9093  1.1  christos 			  * VXWORKS_PLT_NON_JMP_SLOT_RELOCS)
   9094  1.1  christos 			 * sizeof (Elf32_External_Rela));
   9095  1.1  christos 
   9096  1.1  christos 		    /* Provide the @ha relocation for the first instruction.  */
   9097  1.1  christos 		    rela.r_offset = (htab->plt->output_section->vma
   9098  1.1  christos 				     + htab->plt->output_offset
   9099  1.1  christos 				     + ent->plt.offset + 2);
   9100  1.1  christos 		    rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx,
   9101  1.1  christos 						R_PPC_ADDR16_HA);
   9102  1.1  christos 		    rela.r_addend = got_offset;
   9103  1.1  christos 		    bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
   9104  1.1  christos 		    loc += sizeof (Elf32_External_Rela);
   9105  1.1  christos 
   9106  1.1  christos 		    /* Provide the @l relocation for the second instruction.  */
   9107  1.1  christos 		    rela.r_offset = (htab->plt->output_section->vma
   9108  1.1  christos 				     + htab->plt->output_offset
   9109  1.1  christos 				     + ent->plt.offset + 6);
   9110  1.1  christos 		    rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx,
   9111  1.1  christos 						R_PPC_ADDR16_LO);
   9112  1.1  christos 		    rela.r_addend = got_offset;
   9113  1.1  christos 		    bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
   9114  1.1  christos 		    loc += sizeof (Elf32_External_Rela);
   9115  1.1  christos 
   9116  1.1  christos 		    /* Provide a relocation for the GOT entry corresponding to this
   9117  1.1  christos 		       PLT slot.  Point it at the middle of the .plt entry.  */
   9118  1.1  christos 		    rela.r_offset = (htab->sgotplt->output_section->vma
   9119  1.1  christos 				     + htab->sgotplt->output_offset
   9120  1.1  christos 				     + got_offset);
   9121  1.1  christos 		    rela.r_info = ELF32_R_INFO (htab->elf.hplt->indx,
   9122  1.1  christos 						R_PPC_ADDR32);
   9123  1.1  christos 		    rela.r_addend = ent->plt.offset + 16;
   9124  1.1  christos 		    bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
   9125  1.1  christos 		  }
   9126  1.1  christos 
   9127  1.1  christos 		/* VxWorks uses non-standard semantics for R_PPC_JMP_SLOT.
   9128  1.1  christos 		   In particular, the offset for the relocation is not the
   9129  1.1  christos 		   address of the PLT entry for this function, as specified
   9130  1.1  christos 		   by the ABI.  Instead, the offset is set to the address of
   9131  1.1  christos 		   the GOT slot for this function.  See EABI 4.4.4.1.  */
   9132  1.1  christos 		rela.r_offset = (htab->sgotplt->output_section->vma
   9133  1.1  christos 				 + htab->sgotplt->output_offset
   9134  1.1  christos 				 + got_offset);
   9135  1.1  christos 
   9136  1.1  christos 	      }
   9137  1.1  christos 	    else
   9138  1.1  christos 	      {
   9139  1.1  christos 		asection *splt = htab->plt;
   9140  1.1  christos 		if (!htab->elf.dynamic_sections_created
   9141  1.1  christos 		    || h->dynindx == -1)
   9142  1.1  christos 		  splt = htab->iplt;
   9143  1.1  christos 
   9144  1.1  christos 		rela.r_offset = (splt->output_section->vma
   9145  1.1  christos 				 + splt->output_offset
   9146  1.1  christos 				 + ent->plt.offset);
   9147  1.1  christos 		if (htab->plt_type == PLT_OLD
   9148  1.1  christos 		    || !htab->elf.dynamic_sections_created
   9149  1.1  christos 		    || h->dynindx == -1)
   9150  1.1  christos 		  {
   9151  1.1  christos 		    /* We don't need to fill in the .plt.  The ppc dynamic
   9152  1.1  christos 		       linker will fill it in.  */
   9153  1.1  christos 		  }
   9154  1.1  christos 		else
   9155  1.1  christos 		  {
   9156  1.1  christos 		    bfd_vma val = (htab->glink_pltresolve + ent->plt.offset
   9157  1.1  christos 				   + htab->glink->output_section->vma
   9158  1.1  christos 				   + htab->glink->output_offset);
   9159  1.1  christos 		    bfd_put_32 (output_bfd, val,
   9160  1.1  christos 				splt->contents + ent->plt.offset);
   9161  1.1  christos 		  }
   9162  1.1  christos 	      }
   9163  1.1  christos 
   9164  1.1  christos 	    /* Fill in the entry in the .rela.plt section.  */
   9165  1.1  christos 	    rela.r_addend = 0;
   9166  1.1  christos 	    if (!htab->elf.dynamic_sections_created
   9167  1.1  christos 		|| h->dynindx == -1)
   9168  1.1  christos 	      {
   9169  1.1  christos 		BFD_ASSERT (h->type == STT_GNU_IFUNC
   9170  1.1  christos 			    && h->def_regular
   9171  1.1  christos 			    && (h->root.type == bfd_link_hash_defined
   9172  1.1  christos 				|| h->root.type == bfd_link_hash_defweak));
   9173  1.1  christos 		rela.r_info = ELF32_R_INFO (0, R_PPC_IRELATIVE);
   9174  1.1  christos 		rela.r_addend = SYM_VAL (h);
   9175  1.1  christos 	      }
   9176  1.1  christos 	    else
   9177  1.1  christos 	      rela.r_info = ELF32_R_INFO (h->dynindx, R_PPC_JMP_SLOT);
   9178  1.1  christos 
   9179  1.1  christos 	    if (!htab->elf.dynamic_sections_created
   9180  1.1  christos 		|| h->dynindx == -1)
   9181  1.1  christos 	      loc = (htab->reliplt->contents
   9182  1.1  christos 		     + (htab->reliplt->reloc_count++
   9183  1.1  christos 			* sizeof (Elf32_External_Rela)));
   9184  1.1  christos 	    else
   9185  1.1  christos 	      loc = (htab->relplt->contents
   9186  1.1  christos 		     + reloc_index * sizeof (Elf32_External_Rela));
   9187  1.1  christos 	    bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
   9188  1.1  christos 
   9189  1.1  christos 	    if (!h->def_regular)
   9190  1.1  christos 	      {
   9191  1.1  christos 		/* Mark the symbol as undefined, rather than as
   9192  1.1  christos 		   defined in the .plt section.  Leave the value if
   9193  1.1  christos 		   there were any relocations where pointer equality
   9194  1.1  christos 		   matters (this is a clue for the dynamic linker, to
   9195  1.1  christos 		   make function pointer comparisons work between an
   9196  1.1  christos 		   application and shared library), otherwise set it
   9197  1.1  christos 		   to zero.  */
   9198  1.1  christos 		sym->st_shndx = SHN_UNDEF;
   9199  1.1  christos 		if (!h->pointer_equality_needed)
   9200  1.1  christos 		  sym->st_value = 0;
   9201  1.1  christos 		else if (!h->ref_regular_nonweak)
   9202  1.1  christos 		  {
   9203  1.1  christos 		    /* This breaks function pointer comparisons, but
   9204  1.1  christos 		       that is better than breaking tests for a NULL
   9205  1.1  christos 		       function pointer.  */
   9206  1.1  christos 		    sym->st_value = 0;
   9207  1.1  christos 		  }
   9208  1.1  christos 	      }
   9209  1.1  christos 	    else if (h->type == STT_GNU_IFUNC
   9210  1.1  christos 		     && !info->shared)
   9211  1.1  christos 	      {
   9212  1.1  christos 		/* Set the value of ifunc symbols in a non-pie
   9213  1.1  christos 		   executable to the glink entry.  This is to avoid
   9214  1.1  christos 		   text relocations.  We can't do this for ifunc in
   9215  1.1  christos 		   allocate_dynrelocs, as we do for normal dynamic
   9216  1.1  christos 		   function symbols with plt entries, because we need
   9217  1.1  christos 		   to keep the original value around for the ifunc
   9218  1.1  christos 		   relocation.  */
   9219  1.1  christos 		sym->st_shndx = (_bfd_elf_section_from_bfd_section
   9220  1.1  christos 				 (output_bfd, htab->glink->output_section));
   9221  1.1  christos 		sym->st_value = (ent->glink_offset
   9222  1.1  christos 				 + htab->glink->output_offset
   9223  1.1  christos 				 + htab->glink->output_section->vma);
   9224  1.1  christos 	      }
   9225  1.1  christos 	    doneone = TRUE;
   9226  1.1  christos 	  }
   9227  1.1  christos 
   9228  1.1  christos 	if (htab->plt_type == PLT_NEW
   9229  1.1  christos 	    || !htab->elf.dynamic_sections_created
   9230  1.1  christos 	    || h->dynindx == -1)
   9231  1.1  christos 	  {
   9232  1.1  christos 	    unsigned char *p;
   9233  1.1  christos 	    asection *splt = htab->plt;
   9234  1.1  christos 	    if (!htab->elf.dynamic_sections_created
   9235  1.1  christos 		|| h->dynindx == -1)
   9236  1.1  christos 	      splt = htab->iplt;
   9237  1.1  christos 
   9238  1.1  christos 	    p = (unsigned char *) htab->glink->contents + ent->glink_offset;
   9239  1.1  christos 
   9240  1.1  christos 	    if (h == htab->tls_get_addr && !htab->no_tls_get_addr_opt)
   9241  1.1  christos 	      {
   9242  1.1  christos 		bfd_put_32 (output_bfd, LWZ_11_3, p);
   9243  1.1  christos 		p += 4;
   9244  1.1  christos 		bfd_put_32 (output_bfd, LWZ_12_3 + 4, p);
   9245  1.1  christos 		p += 4;
   9246  1.1  christos 		bfd_put_32 (output_bfd, MR_0_3, p);
   9247  1.1  christos 		p += 4;
   9248  1.1  christos 		bfd_put_32 (output_bfd, CMPWI_11_0, p);
   9249  1.1  christos 		p += 4;
   9250  1.1  christos 		bfd_put_32 (output_bfd, ADD_3_12_2, p);
   9251  1.1  christos 		p += 4;
   9252  1.1  christos 		bfd_put_32 (output_bfd, BEQLR, p);
   9253  1.1  christos 		p += 4;
   9254  1.1  christos 		bfd_put_32 (output_bfd, MR_3_0, p);
   9255  1.1  christos 		p += 4;
   9256  1.1  christos 		bfd_put_32 (output_bfd, NOP, p);
   9257  1.1  christos 		p += 4;
   9258  1.1  christos 	      }
   9259  1.1  christos 
   9260  1.1  christos 	    write_glink_stub (ent, splt, p, info);
   9261  1.1  christos 
   9262  1.1  christos 	    if (!info->shared)
   9263  1.1  christos 	      /* We only need one non-PIC glink stub.  */
   9264  1.1  christos 	      break;
   9265  1.1  christos 	  }
   9266  1.1  christos 	else
   9267  1.1  christos 	  break;
   9268  1.1  christos       }
   9269  1.1  christos 
   9270  1.1  christos   if (h->needs_copy)
   9271  1.1  christos     {
   9272  1.1  christos       asection *s;
   9273  1.1  christos       Elf_Internal_Rela rela;
   9274  1.1  christos       bfd_byte *loc;
   9275  1.1  christos 
   9276  1.1  christos       /* This symbols needs a copy reloc.  Set it up.  */
   9277  1.1  christos 
   9278  1.1  christos #ifdef DEBUG
   9279  1.1  christos       fprintf (stderr, ", copy");
   9280  1.1  christos #endif
   9281  1.1  christos 
   9282  1.1  christos       BFD_ASSERT (h->dynindx != -1);
   9283  1.1  christos 
   9284  1.1  christos       if (ppc_elf_hash_entry (h)->has_sda_refs)
   9285  1.1  christos 	s = htab->relsbss;
   9286  1.1  christos       else
   9287  1.1  christos 	s = htab->relbss;
   9288  1.1  christos       BFD_ASSERT (s != NULL);
   9289  1.1  christos 
   9290  1.1  christos       rela.r_offset = SYM_VAL (h);
   9291  1.1  christos       rela.r_info = ELF32_R_INFO (h->dynindx, R_PPC_COPY);
   9292  1.1  christos       rela.r_addend = 0;
   9293  1.1  christos       loc = s->contents + s->reloc_count++ * sizeof (Elf32_External_Rela);
   9294  1.1  christos       bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
   9295  1.1  christos     }
   9296  1.1  christos 
   9297  1.1  christos #ifdef DEBUG
   9298  1.1  christos   fprintf (stderr, "\n");
   9299  1.1  christos #endif
   9300  1.1  christos 
   9301  1.1  christos   return TRUE;
   9302  1.1  christos }
   9303  1.1  christos 
   9304  1.1  christos static enum elf_reloc_type_class
   9306  1.1  christos ppc_elf_reloc_type_class (const Elf_Internal_Rela *rela)
   9307  1.1  christos {
   9308  1.1  christos   switch (ELF32_R_TYPE (rela->r_info))
   9309  1.1  christos     {
   9310  1.1  christos     case R_PPC_RELATIVE:
   9311  1.1  christos       return reloc_class_relative;
   9312  1.1  christos     case R_PPC_REL24:
   9313  1.1  christos     case R_PPC_ADDR24:
   9314  1.1  christos     case R_PPC_JMP_SLOT:
   9315  1.1  christos       return reloc_class_plt;
   9316  1.1  christos     case R_PPC_COPY:
   9317  1.1  christos       return reloc_class_copy;
   9318  1.1  christos     default:
   9319  1.1  christos       return reloc_class_normal;
   9320  1.1  christos     }
   9321  1.1  christos }
   9322  1.1  christos 
   9323  1.1  christos /* Finish up the dynamic sections.  */
   9325  1.1  christos 
   9326  1.1  christos static bfd_boolean
   9327  1.1  christos ppc_elf_finish_dynamic_sections (bfd *output_bfd,
   9328  1.1  christos 				 struct bfd_link_info *info)
   9329  1.1  christos {
   9330  1.1  christos   asection *sdyn;
   9331  1.1  christos   asection *splt;
   9332  1.1  christos   struct ppc_elf_link_hash_table *htab;
   9333  1.1  christos   bfd_vma got;
   9334  1.1  christos   bfd *dynobj;
   9335  1.1  christos   bfd_boolean ret = TRUE;
   9336  1.1  christos 
   9337  1.1  christos #ifdef DEBUG
   9338  1.1  christos   fprintf (stderr, "ppc_elf_finish_dynamic_sections called\n");
   9339  1.1  christos #endif
   9340  1.1  christos 
   9341  1.1  christos   htab = ppc_elf_hash_table (info);
   9342  1.1  christos   dynobj = elf_hash_table (info)->dynobj;
   9343  1.1  christos   sdyn = bfd_get_linker_section (dynobj, ".dynamic");
   9344  1.1  christos   if (htab->is_vxworks)
   9345  1.1  christos     splt = bfd_get_linker_section (dynobj, ".plt");
   9346  1.1  christos   else
   9347  1.1  christos     splt = NULL;
   9348  1.1  christos 
   9349  1.1  christos   got = 0;
   9350  1.1  christos   if (htab->elf.hgot != NULL)
   9351  1.1  christos     got = SYM_VAL (htab->elf.hgot);
   9352  1.1  christos 
   9353  1.1  christos   if (htab->elf.dynamic_sections_created)
   9354  1.1  christos     {
   9355  1.1  christos       Elf32_External_Dyn *dyncon, *dynconend;
   9356  1.1  christos 
   9357  1.1  christos       BFD_ASSERT (htab->plt != NULL && sdyn != NULL);
   9358  1.1  christos 
   9359  1.1  christos       dyncon = (Elf32_External_Dyn *) sdyn->contents;
   9360  1.1  christos       dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
   9361  1.1  christos       for (; dyncon < dynconend; dyncon++)
   9362  1.1  christos 	{
   9363  1.1  christos 	  Elf_Internal_Dyn dyn;
   9364  1.1  christos 	  asection *s;
   9365  1.1  christos 
   9366  1.1  christos 	  bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
   9367  1.1  christos 
   9368  1.1  christos 	  switch (dyn.d_tag)
   9369  1.1  christos 	    {
   9370  1.1  christos 	    case DT_PLTGOT:
   9371  1.1  christos 	      if (htab->is_vxworks)
   9372  1.1  christos 		s = htab->sgotplt;
   9373  1.1  christos 	      else
   9374  1.1  christos 		s = htab->plt;
   9375  1.1  christos 	      dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
   9376  1.1  christos 	      break;
   9377  1.1  christos 
   9378  1.1  christos 	    case DT_PLTRELSZ:
   9379  1.1  christos 	      dyn.d_un.d_val = htab->relplt->size;
   9380  1.1  christos 	      break;
   9381  1.1  christos 
   9382  1.1  christos 	    case DT_JMPREL:
   9383  1.1  christos 	      s = htab->relplt;
   9384  1.1  christos 	      dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
   9385  1.1  christos 	      break;
   9386  1.1  christos 
   9387  1.1  christos 	    case DT_PPC_GOT:
   9388  1.1  christos 	      dyn.d_un.d_ptr = got;
   9389  1.1  christos 	      break;
   9390  1.1  christos 
   9391  1.1  christos 	    case DT_RELASZ:
   9392  1.1  christos 	      if (htab->is_vxworks)
   9393  1.1  christos 		{
   9394  1.1  christos 		  if (htab->relplt)
   9395  1.1  christos 		    dyn.d_un.d_ptr -= htab->relplt->size;
   9396  1.1  christos 		  break;
   9397  1.1  christos 		}
   9398  1.1  christos 	      continue;
   9399  1.1  christos 
   9400  1.1  christos 	    default:
   9401  1.1  christos 	      if (htab->is_vxworks
   9402  1.1  christos 		  && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
   9403  1.1  christos 		break;
   9404  1.1  christos 	      continue;
   9405  1.1  christos 	    }
   9406  1.1  christos 
   9407  1.1  christos 	  bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
   9408  1.1  christos 	}
   9409  1.1  christos     }
   9410  1.1  christos 
   9411  1.1  christos   if (htab->got != NULL)
   9412  1.1  christos     {
   9413  1.1  christos       if (htab->elf.hgot->root.u.def.section == htab->got
   9414  1.1  christos 	  || htab->elf.hgot->root.u.def.section == htab->sgotplt)
   9415  1.1  christos 	{
   9416  1.1  christos 	  unsigned char *p = htab->elf.hgot->root.u.def.section->contents;
   9417  1.1  christos 
   9418  1.1  christos 	  p += htab->elf.hgot->root.u.def.value;
   9419  1.1  christos 	  if (htab->plt_type == PLT_OLD)
   9420  1.1  christos 	    {
   9421  1.1  christos 	      /* Add a blrl instruction at _GLOBAL_OFFSET_TABLE_-4
   9422  1.1  christos 		 so that a function can easily find the address of
   9423  1.1  christos 		 _GLOBAL_OFFSET_TABLE_.  */
   9424  1.1  christos 	      BFD_ASSERT (htab->elf.hgot->root.u.def.value - 4
   9425  1.1  christos 			  < htab->elf.hgot->root.u.def.section->size);
   9426  1.1  christos 	      bfd_put_32 (output_bfd, 0x4e800021, p - 4);
   9427  1.1  christos 	    }
   9428  1.1  christos 
   9429  1.1  christos 	  if (sdyn != NULL)
   9430  1.1  christos 	    {
   9431  1.1  christos 	      bfd_vma val = sdyn->output_section->vma + sdyn->output_offset;
   9432  1.1  christos 	      BFD_ASSERT (htab->elf.hgot->root.u.def.value
   9433  1.1  christos 			  < htab->elf.hgot->root.u.def.section->size);
   9434  1.1  christos 	      bfd_put_32 (output_bfd, val, p);
   9435  1.1  christos 	    }
   9436  1.1  christos 	}
   9437  1.1  christos       else
   9438  1.1  christos 	{
   9439  1.1  christos 	  info->callbacks->einfo (_("%P: %s not defined in linker created %s\n"),
   9440  1.1  christos 				  htab->elf.hgot->root.root.string,
   9441  1.1  christos 				  (htab->sgotplt != NULL
   9442  1.1  christos 				   ? htab->sgotplt->name : htab->got->name));
   9443  1.1  christos 	  bfd_set_error (bfd_error_bad_value);
   9444  1.1  christos 	  ret = FALSE;
   9445  1.1  christos 	}
   9446  1.1  christos 
   9447  1.1  christos       elf_section_data (htab->got->output_section)->this_hdr.sh_entsize = 4;
   9448  1.1  christos     }
   9449  1.1  christos 
   9450  1.1  christos   /* Fill in the first entry in the VxWorks procedure linkage table.  */
   9451  1.1  christos   if (splt && splt->size > 0)
   9452  1.1  christos     {
   9453  1.1  christos       /* Use the right PLT. */
   9454  1.1  christos       const bfd_vma *plt_entry = (info->shared
   9455  1.1  christos 				  ? ppc_elf_vxworks_pic_plt0_entry
   9456  1.1  christos 				  : ppc_elf_vxworks_plt0_entry);
   9457  1.1  christos 
   9458  1.1  christos       if (!info->shared)
   9459  1.1  christos 	{
   9460  1.1  christos 	  bfd_vma got_value = SYM_VAL (htab->elf.hgot);
   9461  1.1  christos 
   9462  1.1  christos 	  bfd_put_32 (output_bfd, plt_entry[0] | PPC_HA (got_value),
   9463  1.1  christos 		      splt->contents +  0);
   9464  1.1  christos 	  bfd_put_32 (output_bfd, plt_entry[1] | PPC_LO (got_value),
   9465  1.1  christos 		      splt->contents +  4);
   9466  1.1  christos 	}
   9467  1.1  christos       else
   9468  1.1  christos 	{
   9469  1.1  christos 	  bfd_put_32 (output_bfd, plt_entry[0], splt->contents +  0);
   9470  1.1  christos 	  bfd_put_32 (output_bfd, plt_entry[1], splt->contents +  4);
   9471  1.1  christos 	}
   9472  1.1  christos       bfd_put_32 (output_bfd, plt_entry[2], splt->contents +  8);
   9473  1.1  christos       bfd_put_32 (output_bfd, plt_entry[3], splt->contents + 12);
   9474  1.1  christos       bfd_put_32 (output_bfd, plt_entry[4], splt->contents + 16);
   9475  1.1  christos       bfd_put_32 (output_bfd, plt_entry[5], splt->contents + 20);
   9476  1.1  christos       bfd_put_32 (output_bfd, plt_entry[6], splt->contents + 24);
   9477  1.1  christos       bfd_put_32 (output_bfd, plt_entry[7], splt->contents + 28);
   9478  1.1  christos 
   9479  1.1  christos       if (! info->shared)
   9480  1.1  christos 	{
   9481  1.1  christos 	  Elf_Internal_Rela rela;
   9482  1.1  christos 	  bfd_byte *loc;
   9483  1.1  christos 
   9484  1.1  christos 	  loc = htab->srelplt2->contents;
   9485  1.1  christos 
   9486  1.1  christos 	  /* Output the @ha relocation for the first instruction.  */
   9487  1.1  christos 	  rela.r_offset = (htab->plt->output_section->vma
   9488  1.1  christos 			   + htab->plt->output_offset
   9489  1.1  christos 			   + 2);
   9490  1.1  christos 	  rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_HA);
   9491  1.1  christos 	  rela.r_addend = 0;
   9492  1.1  christos 	  bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
   9493  1.1  christos 	  loc += sizeof (Elf32_External_Rela);
   9494  1.1  christos 
   9495  1.1  christos 	  /* Output the @l relocation for the second instruction.  */
   9496  1.1  christos 	  rela.r_offset = (htab->plt->output_section->vma
   9497  1.1  christos 			   + htab->plt->output_offset
   9498  1.1  christos 			   + 6);
   9499  1.1  christos 	  rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_LO);
   9500  1.1  christos 	  rela.r_addend = 0;
   9501  1.1  christos 	  bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
   9502  1.1  christos 	  loc += sizeof (Elf32_External_Rela);
   9503  1.1  christos 
   9504  1.1  christos 	  /* Fix up the remaining relocations.  They may have the wrong
   9505  1.1  christos 	     symbol index for _G_O_T_ or _P_L_T_ depending on the order
   9506  1.1  christos 	     in which symbols were output.  */
   9507  1.1  christos 	  while (loc < htab->srelplt2->contents + htab->srelplt2->size)
   9508  1.1  christos 	    {
   9509  1.1  christos 	      Elf_Internal_Rela rel;
   9510  1.1  christos 
   9511  1.1  christos 	      bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
   9512  1.1  christos 	      rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_HA);
   9513  1.1  christos 	      bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
   9514  1.1  christos 	      loc += sizeof (Elf32_External_Rela);
   9515  1.1  christos 
   9516  1.1  christos 	      bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
   9517  1.1  christos 	      rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_LO);
   9518  1.1  christos 	      bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
   9519  1.1  christos 	      loc += sizeof (Elf32_External_Rela);
   9520  1.1  christos 
   9521  1.1  christos 	      bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
   9522  1.1  christos 	      rel.r_info = ELF32_R_INFO (htab->elf.hplt->indx, R_PPC_ADDR32);
   9523  1.1  christos 	      bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
   9524  1.1  christos 	      loc += sizeof (Elf32_External_Rela);
   9525  1.1  christos 	    }
   9526  1.1  christos 	}
   9527  1.1  christos     }
   9528  1.1  christos 
   9529  1.1  christos   if (htab->glink != NULL
   9530  1.1  christos       && htab->glink->contents != NULL
   9531  1.1  christos       && htab->elf.dynamic_sections_created)
   9532  1.1  christos     {
   9533  1.1  christos       unsigned char *p;
   9534  1.1  christos       unsigned char *endp;
   9535  1.1  christos       bfd_vma res0;
   9536  1.1  christos       unsigned int i;
   9537  1.1  christos 
   9538  1.1  christos       /*
   9539  1.1  christos        * PIC glink code is the following:
   9540  1.1  christos        *
   9541  1.1  christos        * # ith PLT code stub.
   9542  1.1  christos        *   addis 11,30,(plt+(i-1)*4-got)@ha
   9543  1.1  christos        *   lwz 11,(plt+(i-1)*4-got)@l(11)
   9544  1.1  christos        *   mtctr 11
   9545  1.1  christos        *   bctr
   9546  1.1  christos        *
   9547  1.1  christos        * # A table of branches, one for each plt entry.
   9548  1.1  christos        * # The idea is that the plt call stub loads ctr and r11 with these
   9549  1.1  christos        * # addresses, so (r11 - res_0) gives the plt index * 4.
   9550  1.1  christos        * res_0:	b PLTresolve
   9551  1.1  christos        * res_1:	b PLTresolve
   9552  1.1  christos        * .
   9553  1.1  christos        * # Some number of entries towards the end can be nops
   9554  1.1  christos        * res_n_m3: nop
   9555  1.1  christos        * res_n_m2: nop
   9556  1.1  christos        * res_n_m1:
   9557  1.1  christos        *
   9558  1.1  christos        * PLTresolve:
   9559  1.1  christos        *    addis 11,11,(1f-res_0)@ha
   9560  1.1  christos        *    mflr 0
   9561  1.1  christos        *    bcl 20,31,1f
   9562  1.1  christos        * 1: addi 11,11,(1b-res_0)@l
   9563  1.1  christos        *    mflr 12
   9564  1.1  christos        *    mtlr 0
   9565  1.1  christos        *    sub 11,11,12                # r11 = index * 4
   9566  1.1  christos        *    addis 12,12,(got+4-1b)@ha
   9567  1.1  christos        *    lwz 0,(got+4-1b)@l(12)      # got[1] address of dl_runtime_resolve
   9568  1.1  christos        *    lwz 12,(got+8-1b)@l(12)     # got[2] contains the map address
   9569  1.1  christos        *    mtctr 0
   9570  1.1  christos        *    add 0,11,11
   9571  1.1  christos        *    add 11,0,11                 # r11 = index * 12 = reloc offset.
   9572  1.1  christos        *    bctr
   9573  1.1  christos        */
   9574  1.1  christos       static const unsigned int pic_plt_resolve[] =
   9575  1.1  christos 	{
   9576  1.1  christos 	  ADDIS_11_11,
   9577  1.1  christos 	  MFLR_0,
   9578  1.1  christos 	  BCL_20_31,
   9579  1.1  christos 	  ADDI_11_11,
   9580  1.1  christos 	  MFLR_12,
   9581  1.1  christos 	  MTLR_0,
   9582  1.1  christos 	  SUB_11_11_12,
   9583  1.1  christos 	  ADDIS_12_12,
   9584  1.1  christos 	  LWZ_0_12,
   9585  1.1  christos 	  LWZ_12_12,
   9586  1.1  christos 	  MTCTR_0,
   9587  1.1  christos 	  ADD_0_11_11,
   9588  1.1  christos 	  ADD_11_0_11,
   9589  1.1  christos 	  BCTR,
   9590  1.1  christos 	  NOP,
   9591  1.1  christos 	  NOP
   9592  1.1  christos 	};
   9593  1.1  christos 
   9594  1.1  christos       /*
   9595  1.1  christos        * Non-PIC glink code is a little simpler.
   9596  1.1  christos        *
   9597  1.1  christos        * # ith PLT code stub.
   9598  1.1  christos        *   lis 11,(plt+(i-1)*4)@ha
   9599  1.1  christos        *   lwz 11,(plt+(i-1)*4)@l(11)
   9600  1.1  christos        *   mtctr 11
   9601  1.1  christos        *   bctr
   9602  1.1  christos        *
   9603  1.1  christos        * The branch table is the same, then comes
   9604  1.1  christos        *
   9605  1.1  christos        * PLTresolve:
   9606  1.1  christos        *    lis 12,(got+4)@ha
   9607  1.1  christos        *    addis 11,11,(-res_0)@ha
   9608  1.1  christos        *    lwz 0,(got+4)@l(12)         # got[1] address of dl_runtime_resolve
   9609  1.1  christos        *    addi 11,11,(-res_0)@l       # r11 = index * 4
   9610  1.1  christos        *    mtctr 0
   9611  1.1  christos        *    add 0,11,11
   9612  1.1  christos        *    lwz 12,(got+8)@l(12)        # got[2] contains the map address
   9613  1.1  christos        *    add 11,0,11                 # r11 = index * 12 = reloc offset.
   9614  1.1  christos        *    bctr
   9615  1.1  christos        */
   9616  1.1  christos       static const unsigned int plt_resolve[] =
   9617  1.1  christos 	{
   9618  1.1  christos 	  LIS_12,
   9619  1.1  christos 	  ADDIS_11_11,
   9620  1.1  christos 	  LWZ_0_12,
   9621  1.1  christos 	  ADDI_11_11,
   9622  1.1  christos 	  MTCTR_0,
   9623  1.1  christos 	  ADD_0_11_11,
   9624  1.1  christos 	  LWZ_12_12,
   9625  1.1  christos 	  ADD_11_0_11,
   9626  1.1  christos 	  BCTR,
   9627  1.1  christos 	  NOP,
   9628  1.1  christos 	  NOP,
   9629  1.1  christos 	  NOP,
   9630  1.1  christos 	  NOP,
   9631  1.1  christos 	  NOP,
   9632  1.1  christos 	  NOP,
   9633  1.1  christos 	  NOP
   9634  1.1  christos 	};
   9635  1.1  christos 
   9636  1.1  christos       if (ARRAY_SIZE (pic_plt_resolve) != GLINK_PLTRESOLVE / 4)
   9637  1.1  christos 	abort ();
   9638  1.1  christos       if (ARRAY_SIZE (plt_resolve) != GLINK_PLTRESOLVE / 4)
   9639  1.1  christos 	abort ();
   9640  1.1  christos 
   9641  1.1  christos       /* Build the branch table, one for each plt entry (less one),
   9642  1.1  christos 	 and perhaps some padding.  */
   9643  1.1  christos       p = htab->glink->contents;
   9644  1.1  christos       p += htab->glink_pltresolve;
   9645  1.1  christos       endp = htab->glink->contents;
   9646  1.1  christos       endp += htab->glink->size - GLINK_PLTRESOLVE;
   9647  1.1  christos       while (p < endp - 8 * 4)
   9648  1.1  christos 	{
   9649  1.1  christos 	  bfd_put_32 (output_bfd, B + endp - p, p);
   9650  1.1  christos 	  p += 4;
   9651  1.1  christos 	}
   9652  1.1  christos       while (p < endp)
   9653  1.1  christos 	{
   9654  1.1  christos 	  bfd_put_32 (output_bfd, NOP, p);
   9655  1.1  christos 	  p += 4;
   9656  1.1  christos 	}
   9657  1.1  christos 
   9658  1.1  christos       res0 = (htab->glink_pltresolve
   9659  1.1  christos 	      + htab->glink->output_section->vma
   9660  1.1  christos 	      + htab->glink->output_offset);
   9661  1.1  christos 
   9662  1.1  christos       /* Last comes the PLTresolve stub.  */
   9663  1.1  christos       if (info->shared)
   9664  1.1  christos 	{
   9665  1.1  christos 	  bfd_vma bcl;
   9666  1.1  christos 
   9667  1.1  christos 	  for (i = 0; i < ARRAY_SIZE (pic_plt_resolve); i++)
   9668  1.1  christos 	    {
   9669  1.1  christos 	      bfd_put_32 (output_bfd, pic_plt_resolve[i], p);
   9670  1.1  christos 	      p += 4;
   9671  1.1  christos 	    }
   9672  1.1  christos 	  p -= 4 * ARRAY_SIZE (pic_plt_resolve);
   9673  1.1  christos 
   9674  1.1  christos 	  bcl = (htab->glink->size - GLINK_PLTRESOLVE + 3*4
   9675  1.1  christos 		 + htab->glink->output_section->vma
   9676  1.1  christos 		 + htab->glink->output_offset);
   9677  1.1  christos 
   9678  1.1  christos 	  bfd_put_32 (output_bfd,
   9679  1.1  christos 		      ADDIS_11_11 + PPC_HA (bcl - res0), p + 0*4);
   9680  1.1  christos 	  bfd_put_32 (output_bfd,
   9681  1.1  christos 		      ADDI_11_11 + PPC_LO (bcl - res0), p + 3*4);
   9682  1.1  christos 	  bfd_put_32 (output_bfd,
   9683  1.1  christos 		      ADDIS_12_12 + PPC_HA (got + 4 - bcl), p + 7*4);
   9684  1.1  christos 	  if (PPC_HA (got + 4 - bcl) == PPC_HA (got + 8 - bcl))
   9685  1.1  christos 	    {
   9686  1.1  christos 	      bfd_put_32 (output_bfd,
   9687  1.1  christos 			  LWZ_0_12 + PPC_LO (got + 4 - bcl), p + 8*4);
   9688  1.1  christos 	      bfd_put_32 (output_bfd,
   9689  1.1  christos 			  LWZ_12_12 + PPC_LO (got + 8 - bcl), p + 9*4);
   9690  1.1  christos 	    }
   9691  1.1  christos 	  else
   9692  1.1  christos 	    {
   9693  1.1  christos 	      bfd_put_32 (output_bfd,
   9694  1.1  christos 			  LWZU_0_12 + PPC_LO (got + 4 - bcl), p + 8*4);
   9695  1.1  christos 	      bfd_put_32 (output_bfd,
   9696  1.1  christos 			  LWZ_12_12 + 4, p + 9*4);
   9697  1.1  christos 	    }
   9698  1.1  christos 	}
   9699  1.1  christos       else
   9700  1.1  christos 	{
   9701  1.1  christos 	  for (i = 0; i < ARRAY_SIZE (plt_resolve); i++)
   9702  1.1  christos 	    {
   9703  1.1  christos 	      bfd_put_32 (output_bfd, plt_resolve[i], p);
   9704  1.1  christos 	      p += 4;
   9705  1.1  christos 	    }
   9706  1.1  christos 	  p -= 4 * ARRAY_SIZE (plt_resolve);
   9707  1.1  christos 
   9708  1.1  christos 	  bfd_put_32 (output_bfd,
   9709  1.1  christos 		      LIS_12 + PPC_HA (got + 4), p + 0*4);
   9710  1.1  christos 	  bfd_put_32 (output_bfd,
   9711  1.1  christos 		      ADDIS_11_11 + PPC_HA (-res0), p + 1*4);
   9712  1.1  christos 	  bfd_put_32 (output_bfd,
   9713  1.1  christos 		      ADDI_11_11 + PPC_LO (-res0), p + 3*4);
   9714  1.1  christos 	  if (PPC_HA (got + 4) == PPC_HA (got + 8))
   9715  1.1  christos 	    {
   9716  1.1  christos 	      bfd_put_32 (output_bfd,
   9717  1.1  christos 			  LWZ_0_12 + PPC_LO (got + 4), p + 2*4);
   9718  1.1  christos 	      bfd_put_32 (output_bfd,
   9719  1.1  christos 			  LWZ_12_12 + PPC_LO (got + 8), p + 6*4);
   9720  1.1  christos 	    }
   9721  1.1  christos 	  else
   9722  1.1  christos 	    {
   9723  1.1  christos 	      bfd_put_32 (output_bfd,
   9724  1.1  christos 			  LWZU_0_12 + PPC_LO (got + 4), p + 2*4);
   9725  1.1  christos 	      bfd_put_32 (output_bfd,
   9726  1.1  christos 			  LWZ_12_12 + 4, p + 6*4);
   9727  1.1  christos 	    }
   9728  1.1  christos 	}
   9729  1.1  christos     }
   9730  1.1  christos 
   9731  1.1  christos   if (htab->glink_eh_frame != NULL
   9732  1.1  christos       && htab->glink_eh_frame->contents != NULL)
   9733  1.1  christos     {
   9734  1.1  christos       unsigned char *p = htab->glink_eh_frame->contents;
   9735  1.1  christos       bfd_vma val;
   9736  1.1  christos 
   9737  1.1  christos       p += sizeof (glink_eh_frame_cie);
   9738  1.1  christos       /* FDE length.  */
   9739  1.1  christos       p += 4;
   9740  1.1  christos       /* CIE pointer.  */
   9741  1.1  christos       p += 4;
   9742  1.1  christos       /* Offset to .glink.  */
   9743  1.1  christos       val = (htab->glink->output_section->vma
   9744  1.1  christos 	     + htab->glink->output_offset);
   9745  1.1  christos       val -= (htab->glink_eh_frame->output_section->vma
   9746  1.1  christos 	      + htab->glink_eh_frame->output_offset);
   9747  1.1  christos       val -= p - htab->glink_eh_frame->contents;
   9748  1.1  christos       bfd_put_32 (htab->elf.dynobj, val, p);
   9749  1.1  christos 
   9750  1.1  christos       if (htab->glink_eh_frame->sec_info_type == SEC_INFO_TYPE_EH_FRAME
   9751  1.1  christos 	  && !_bfd_elf_write_section_eh_frame (output_bfd, info,
   9752  1.1  christos 					       htab->glink_eh_frame,
   9753  1.1  christos 					       htab->glink_eh_frame->contents))
   9754  1.1  christos 	return FALSE;
   9755  1.1  christos     }
   9756  1.1  christos 
   9757  1.1  christos   return ret;
   9758  1.1  christos }
   9759  1.1  christos 
   9760  1.1  christos #define TARGET_LITTLE_SYM	bfd_elf32_powerpcle_vec
   9762  1.1  christos #define TARGET_LITTLE_NAME	"elf32-powerpcle"
   9763  1.1  christos #define TARGET_BIG_SYM		bfd_elf32_powerpc_vec
   9764  1.1  christos #define TARGET_BIG_NAME		"elf32-powerpc"
   9765  1.1  christos #define ELF_ARCH		bfd_arch_powerpc
   9766  1.1  christos #define ELF_TARGET_ID		PPC32_ELF_DATA
   9767  1.1  christos #define ELF_MACHINE_CODE	EM_PPC
   9768  1.1  christos #ifdef __QNXTARGET__
   9769  1.1  christos #define ELF_MAXPAGESIZE		0x1000
   9770  1.1  christos #else
   9771  1.1  christos #define ELF_MAXPAGESIZE		0x10000
   9772  1.1  christos #endif
   9773  1.1  christos #define ELF_MINPAGESIZE		0x1000
   9774  1.1  christos #define ELF_COMMONPAGESIZE	0x1000
   9775  1.1  christos #define elf_info_to_howto	ppc_elf_info_to_howto
   9776  1.1  christos 
   9777  1.1  christos #ifdef  EM_CYGNUS_POWERPC
   9778  1.1  christos #define ELF_MACHINE_ALT1	EM_CYGNUS_POWERPC
   9779  1.1  christos #endif
   9780  1.1  christos 
   9781  1.1  christos #ifdef EM_PPC_OLD
   9782  1.1  christos #define ELF_MACHINE_ALT2	EM_PPC_OLD
   9783  1.1  christos #endif
   9784  1.1  christos 
   9785  1.1  christos #define elf_backend_plt_not_loaded	1
   9786  1.1  christos #define elf_backend_can_gc_sections	1
   9787  1.1  christos #define elf_backend_can_refcount	1
   9788  1.1  christos #define elf_backend_rela_normal		1
   9789  1.1  christos 
   9790  1.1  christos #define bfd_elf32_mkobject			ppc_elf_mkobject
   9791  1.1  christos #define bfd_elf32_bfd_merge_private_bfd_data	ppc_elf_merge_private_bfd_data
   9792  1.1  christos #define bfd_elf32_bfd_relax_section		ppc_elf_relax_section
   9793  1.1  christos #define bfd_elf32_bfd_reloc_type_lookup		ppc_elf_reloc_type_lookup
   9794  1.1  christos #define bfd_elf32_bfd_reloc_name_lookup		ppc_elf_reloc_name_lookup
   9795  1.1  christos #define bfd_elf32_bfd_set_private_flags		ppc_elf_set_private_flags
   9796  1.1  christos #define bfd_elf32_bfd_link_hash_table_create	ppc_elf_link_hash_table_create
   9797  1.1  christos #define bfd_elf32_get_synthetic_symtab		ppc_elf_get_synthetic_symtab
   9798  1.1  christos 
   9799  1.1  christos #define elf_backend_object_p			ppc_elf_object_p
   9800  1.1  christos #define elf_backend_gc_mark_hook		ppc_elf_gc_mark_hook
   9801  1.1  christos #define elf_backend_gc_sweep_hook		ppc_elf_gc_sweep_hook
   9802  1.1  christos #define elf_backend_section_from_shdr		ppc_elf_section_from_shdr
   9803  1.1  christos #define elf_backend_relocate_section		ppc_elf_relocate_section
   9804  1.1  christos #define elf_backend_create_dynamic_sections	ppc_elf_create_dynamic_sections
   9805  1.1  christos #define elf_backend_check_relocs		ppc_elf_check_relocs
   9806  1.1  christos #define elf_backend_copy_indirect_symbol	ppc_elf_copy_indirect_symbol
   9807  1.1  christos #define elf_backend_adjust_dynamic_symbol	ppc_elf_adjust_dynamic_symbol
   9808  1.1  christos #define elf_backend_add_symbol_hook		ppc_elf_add_symbol_hook
   9809  1.1  christos #define elf_backend_size_dynamic_sections	ppc_elf_size_dynamic_sections
   9810  1.1  christos #define elf_backend_hash_symbol			ppc_elf_hash_symbol
   9811  1.1  christos #define elf_backend_finish_dynamic_symbol	ppc_elf_finish_dynamic_symbol
   9812  1.1  christos #define elf_backend_finish_dynamic_sections	ppc_elf_finish_dynamic_sections
   9813  1.1  christos #define elf_backend_fake_sections		ppc_elf_fake_sections
   9814  1.1  christos #define elf_backend_additional_program_headers	ppc_elf_additional_program_headers
   9815  1.1  christos #define elf_backend_modify_segment_map     	ppc_elf_modify_segment_map
   9816  1.1  christos #define elf_backend_grok_prstatus		ppc_elf_grok_prstatus
   9817  1.1  christos #define elf_backend_grok_psinfo			ppc_elf_grok_psinfo
   9818  1.1  christos #define elf_backend_write_core_note		ppc_elf_write_core_note
   9819  1.1  christos #define elf_backend_reloc_type_class		ppc_elf_reloc_type_class
   9820  1.1  christos #define elf_backend_begin_write_processing	ppc_elf_begin_write_processing
   9821  1.1  christos #define elf_backend_final_write_processing	ppc_elf_final_write_processing
   9822  1.1  christos #define elf_backend_write_section		ppc_elf_write_section
   9823  1.1  christos #define elf_backend_get_sec_type_attr		ppc_elf_get_sec_type_attr
   9824  1.1  christos #define elf_backend_plt_sym_val			ppc_elf_plt_sym_val
   9825  1.1  christos #define elf_backend_action_discarded		ppc_elf_action_discarded
   9826  1.1  christos #define elf_backend_init_index_section		_bfd_elf_init_1_index_section
   9827  1.1  christos #define elf_backend_post_process_headers	_bfd_elf_set_osabi
   9828  1.1  christos #define elf_backend_lookup_section_flags_hook	ppc_elf_lookup_section_flags
   9829  1.1  christos #define elf_backend_section_processing		ppc_elf_section_processing
   9830  1.1  christos 
   9831  1.1  christos #include "elf32-target.h"
   9832  1.1  christos 
   9833  1.1  christos /* FreeBSD Target */
   9834  1.1  christos 
   9835  1.1  christos #undef  TARGET_LITTLE_SYM
   9836  1.1  christos #undef  TARGET_LITTLE_NAME
   9837  1.1  christos 
   9838  1.1  christos #undef  TARGET_BIG_SYM
   9839  1.1  christos #define TARGET_BIG_SYM  bfd_elf32_powerpc_freebsd_vec
   9840  1.1  christos #undef  TARGET_BIG_NAME
   9841  1.1  christos #define TARGET_BIG_NAME "elf32-powerpc-freebsd"
   9842  1.1  christos 
   9843  1.1  christos #undef  ELF_OSABI
   9844  1.1  christos #define ELF_OSABI	ELFOSABI_FREEBSD
   9845  1.1  christos 
   9846  1.1  christos #undef  elf32_bed
   9847  1.1  christos #define elf32_bed	elf32_powerpc_fbsd_bed
   9848  1.1  christos 
   9849  1.1  christos #include "elf32-target.h"
   9850  1.1  christos 
   9851  1.1  christos /* VxWorks Target */
   9852  1.1  christos 
   9853  1.1  christos #undef TARGET_LITTLE_SYM
   9854  1.1  christos #undef TARGET_LITTLE_NAME
   9855  1.1  christos 
   9856  1.1  christos #undef TARGET_BIG_SYM
   9857  1.1  christos #define TARGET_BIG_SYM		bfd_elf32_powerpc_vxworks_vec
   9858  1.1  christos #undef TARGET_BIG_NAME
   9859  1.1  christos #define TARGET_BIG_NAME		"elf32-powerpc-vxworks"
   9860  1.1  christos 
   9861  1.1  christos #undef  ELF_OSABI
   9862  1.1  christos 
   9863  1.1  christos /* VxWorks uses the elf default section flags for .plt.  */
   9864  1.1  christos static const struct bfd_elf_special_section *
   9865  1.1  christos ppc_elf_vxworks_get_sec_type_attr (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
   9866  1.1  christos {
   9867  1.1  christos   if (sec->name == NULL)
   9868  1.1  christos     return NULL;
   9869  1.1  christos 
   9870  1.1  christos   if (strcmp (sec->name, ".plt") == 0)
   9871  1.1  christos     return _bfd_elf_get_sec_type_attr (abfd, sec);
   9872  1.1  christos 
   9873  1.1  christos   return ppc_elf_get_sec_type_attr (abfd, sec);
   9874  1.1  christos }
   9875  1.1  christos 
   9876  1.1  christos /* Like ppc_elf_link_hash_table_create, but overrides
   9877  1.1  christos    appropriately for VxWorks.  */
   9878  1.1  christos static struct bfd_link_hash_table *
   9879  1.1  christos ppc_elf_vxworks_link_hash_table_create (bfd *abfd)
   9880  1.1  christos {
   9881  1.1  christos   struct bfd_link_hash_table *ret;
   9882  1.1  christos 
   9883  1.1  christos   ret = ppc_elf_link_hash_table_create (abfd);
   9884  1.1  christos   if (ret)
   9885  1.1  christos     {
   9886  1.1  christos       struct ppc_elf_link_hash_table *htab
   9887  1.1  christos         = (struct ppc_elf_link_hash_table *)ret;
   9888  1.1  christos       htab->is_vxworks = 1;
   9889  1.1  christos       htab->plt_type = PLT_VXWORKS;
   9890  1.1  christos       htab->plt_entry_size = VXWORKS_PLT_ENTRY_SIZE;
   9891  1.1  christos       htab->plt_slot_size = VXWORKS_PLT_ENTRY_SIZE;
   9892  1.1  christos       htab->plt_initial_entry_size = VXWORKS_PLT_INITIAL_ENTRY_SIZE;
   9893  1.1  christos     }
   9894  1.1  christos   return ret;
   9895  1.1  christos }
   9896  1.1  christos 
   9897  1.1  christos /* Tweak magic VxWorks symbols as they are loaded.  */
   9898  1.1  christos static bfd_boolean
   9899  1.1  christos ppc_elf_vxworks_add_symbol_hook (bfd *abfd,
   9900  1.1  christos 				 struct bfd_link_info *info,
   9901  1.1  christos 				 Elf_Internal_Sym *sym,
   9902  1.1  christos 				 const char **namep ATTRIBUTE_UNUSED,
   9903  1.1  christos 				 flagword *flagsp ATTRIBUTE_UNUSED,
   9904  1.1  christos 				 asection **secp,
   9905  1.1  christos 				 bfd_vma *valp)
   9906  1.1  christos {
   9907  1.1  christos   if (!elf_vxworks_add_symbol_hook(abfd, info, sym,namep, flagsp, secp,
   9908  1.1  christos 				   valp))
   9909  1.1  christos     return FALSE;
   9910  1.1  christos 
   9911  1.1  christos   return ppc_elf_add_symbol_hook(abfd, info, sym,namep, flagsp, secp, valp);
   9912  1.1  christos }
   9913  1.1  christos 
   9914  1.1  christos static void
   9915  1.1  christos ppc_elf_vxworks_final_write_processing (bfd *abfd, bfd_boolean linker)
   9916  1.1  christos {
   9917  1.1  christos   ppc_elf_final_write_processing(abfd, linker);
   9918  1.1  christos   elf_vxworks_final_write_processing(abfd, linker);
   9919  1.1  christos }
   9920  1.1  christos 
   9921  1.1  christos /* On VxWorks, we emit relocations against _PROCEDURE_LINKAGE_TABLE_, so
   9922  1.1  christos    define it.  */
   9923  1.1  christos #undef elf_backend_want_plt_sym
   9924  1.1  christos #define elf_backend_want_plt_sym		1
   9925  1.1  christos #undef elf_backend_want_got_plt
   9926  1.1  christos #define elf_backend_want_got_plt		1
   9927  1.1  christos #undef elf_backend_got_symbol_offset
   9928  1.1  christos #define elf_backend_got_symbol_offset		0
   9929  1.1  christos #undef elf_backend_plt_not_loaded
   9930  1.1  christos #define elf_backend_plt_not_loaded		0
   9931  1.1  christos #undef elf_backend_plt_readonly
   9932  1.1  christos #define elf_backend_plt_readonly		1
   9933  1.1  christos #undef elf_backend_got_header_size
   9934  1.1  christos #define elf_backend_got_header_size		12
   9935  1.1  christos 
   9936  1.1  christos #undef bfd_elf32_get_synthetic_symtab
   9937  1.1  christos 
   9938  1.1  christos #undef bfd_elf32_bfd_link_hash_table_create
   9939  1.1  christos #define bfd_elf32_bfd_link_hash_table_create \
   9940  1.1  christos   ppc_elf_vxworks_link_hash_table_create
   9941  1.1  christos #undef elf_backend_add_symbol_hook
   9942                #define elf_backend_add_symbol_hook \
   9943                  ppc_elf_vxworks_add_symbol_hook
   9944                #undef elf_backend_link_output_symbol_hook
   9945                #define elf_backend_link_output_symbol_hook \
   9946                  elf_vxworks_link_output_symbol_hook
   9947                #undef elf_backend_final_write_processing
   9948                #define elf_backend_final_write_processing \
   9949                  ppc_elf_vxworks_final_write_processing
   9950                #undef elf_backend_get_sec_type_attr
   9951                #define elf_backend_get_sec_type_attr \
   9952                  ppc_elf_vxworks_get_sec_type_attr
   9953                #undef elf_backend_emit_relocs
   9954                #define elf_backend_emit_relocs \
   9955                  elf_vxworks_emit_relocs
   9956                
   9957                #undef elf32_bed
   9958                #define elf32_bed				ppc_elf_vxworks_bed
   9959                #undef elf_backend_post_process_headers
   9960                
   9961                #include "elf32-target.h"
   9962